forked from Absolight/pkcs11-proxy
-
Notifications
You must be signed in to change notification settings - Fork 48
/
gck-rpc-daemon-standalone.c
358 lines (300 loc) · 9.46 KB
/
gck-rpc-daemon-standalone.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* gck-rpc-daemon-standalone.c - A sample daemon.
Copyright (C) 2008, Stef Walter
The Gnome Keyring Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The Gnome Keyring Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the Gnome Library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
Author: Stef Walter <[email protected]>
*/
#include "config.h"
#include "pkcs11/pkcs11.h"
#include "gck-rpc-layer.h"
#include "gck-rpc-tls-psk.h"
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <dlfcn.h>
#include <pthread.h>
#include <syslog.h>
#ifdef __MINGW32__
# include <winsock2.h>
#endif
#define SOCKET_PATH "tcp://127.0.0.1"
#ifdef SECCOMP
#include <seccomp.h>
//#include "seccomp-bpf.h"
#ifdef DEBUG_SECCOMP
# include "syscall-reporter.h"
#endif /* DEBUG_SECCOMP */
#include <fcntl.h> /* for seccomp init */
#endif /* SECCOMP */
static int install_syscall_filter(const int sock, const char *tls_psk_keyfile, const char *path)
{
#ifdef SECCOMP
int rc = -1;
scmp_filter_ctx ctx;
#ifdef DEBUG_SECCOMP
ctx = seccomp_init(SCMP_ACT_TRAP);
#else
ctx = seccomp_init(SCMP_ACT_KILL);
#endif /* DEBUG_SECCOMP */
if (ctx == NULL)
goto failure_scmp;
/*
* These are the basic syscalls needed to be able to use
* the syscall-reporter to figure out the rest
*/
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(write), 0);
#ifdef DEBUG_SECCOMP
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(rt_sigreturn), 0);
# ifdef __NR_sigreturn
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(sigreturn), 0);
# endif
#endif /* DEBUG_SECCOMP */
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(exit), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(exit_group), 0);
/*
* Network related syscalls.
*/
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(read), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(select), 0);
if (sock)
/* Allow accept() only for the listening socket */
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(accept), 1,
SCMP_A0(SCMP_CMP_EQ, sock));
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(sendto), 0);
if (path[0] &&
strncmp(path, "tcp://", strlen("tcp://")) == 0) {
/* TCP socket - not needed for TLS */
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(recvfrom), 0);
}
/*
* These are probably pthreads-related.
*/
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(mmap), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(munmap), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(mprotect), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(clone), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(set_robust_list), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(madvise), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(munlock), 0);
/*
* Both pthreads (? file is "/sys/devices/system/cpu/online") and TLS-PSK open files.
*/
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(open), 1,
SCMP_A1(SCMP_CMP_EQ, O_RDONLY | O_CLOEXEC));
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(close), 0);
/*
* UNIX domain socket
*/
if (path[0] &&
strncmp(path, "tcp://", strlen("tcp://")) != 0 &&
strncmp(path, "tls://", strlen("tls://")) != 0) {
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(unlink), 0);
}
/*
* Allow spawned threads to initialize a new seccomp policy (subset of this).
*/
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(prctl), 0);
/*
* SoftHSM 1.3.0 required syscalls
*/
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(getcwd), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(stat), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(open), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(fcntl), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(fstat), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(lseek), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(access), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(fsync), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(unlink), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(ftruncate), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(select), 0);
seccomp_rule_add(ctx,SCMP_ACT_ALLOW, SCMP_SYS(futex), 0);
#ifdef DEBUG_SECCOMP
/* Dumps the generated BPF rules in sort-of human readable syntax. */
seccomp_export_pfc(ctx,STDERR_FILENO);
/* Print the name of syscalls stopped by seccomp. Should not be used in production. */
if (install_syscall_reporter())
return 1;
#endif /* DEBUG_SECCOMP */
rc = seccomp_load(ctx);
if (rc < 0)
goto failure_scmp;
seccomp_release(ctx);
return 0;
failure_scmp:
errno = -rc;
fprintf(stderr, "Seccomp filter initialization failed, errno = %u\n", errno);
return errno;
#else /* SECCOMP */
return 0;
#endif /* SECCOMP */
}
#if 0
/* Sample configuration for loading NSS remotely */
static CK_C_INITIALIZE_ARGS p11_init_args = {
NULL,
NULL,
NULL,
NULL,
CKF_OS_LOCKING_OK,
"init-string = configdir='/tmp' certPrefix='' keyPrefix='' secmod='/tmp/secmod.db' flags="
};
#endif
static int is_running = 1;
static int usage(void)
{
fprintf(stderr, "usage: pkcs11-daemon pkcs11-module [<socket>|\"-\"]\n\tUsing \"-\" results in a single-thread inetd-type daemon\n");
exit(2);
}
void termination_handler (int signum)
{
is_running = 0;
}
enum {
/* Used to un-confuse clang checker */
GCP_RPC_DAEMON_MODE_INETD = 0,
GCP_RPC_DAEMON_MODE_SOCKET
};
int main(int argc, char *argv[])
{
CK_C_GetFunctionList func_get_list;
CK_FUNCTION_LIST_PTR funcs;
void *module;
const char *path, *tls_psk_keyfile;
fd_set read_fds;
int sock, ret, mode;
CK_RV rv;
CK_C_INITIALIZE_ARGS init_args;
GckRpcTlsPskState *tls;
/* The module to load is the argument */
if (argc != 2 && argc != 3)
usage();
openlog("pkcs11-proxy",LOG_CONS|LOG_PID,LOG_DAEMON);
/* Load the library */
module = dlopen(argv[1], RTLD_NOW);
if (!module) {
fprintf(stderr, "couldn't open library: %s: %s\n", argv[1],
dlerror());
exit(1);
}
/* Lookup the appropriate function in library */
func_get_list =
(CK_C_GetFunctionList) dlsym(module, "C_GetFunctionList");
if (!func_get_list) {
fprintf(stderr,
"couldn't find C_GetFunctionList in library: %s: %s\n",
argv[1], dlerror());
exit(1);
}
/* Get the function list */
rv = (func_get_list) (&funcs);
if (rv != CKR_OK || !funcs) {
fprintf(stderr,
"couldn't get function list from C_GetFunctionList"
"in libary: %s: 0x%08x\n",
argv[1], (int)rv);
exit(1);
}
/* RPC layer expects initialized module */
memset(&init_args, 0, sizeof(init_args));
init_args.flags = CKF_OS_LOCKING_OK;
rv = (funcs->C_Initialize) (&init_args);
if (rv != CKR_OK) {
fprintf(stderr, "couldn't initialize module: %s: 0x%08x\n",
argv[1], (int)rv);
exit(1);
}
path = getenv("PKCS11_DAEMON_SOCKET");
if (!path && argc == 3)
path = argv[2];
if (!path)
path = SOCKET_PATH;
/* Initialize TLS, if appropriate */
tls = NULL;
tls_psk_keyfile = NULL;
if (! strncmp("tls://", path, 6)) {
tls_psk_keyfile = getenv("PKCS11_PROXY_TLS_PSK_FILE");
if (! tls_psk_keyfile || ! tls_psk_keyfile[0]) {
fprintf(stderr, "key file must be specified for tls:// socket.\n");
exit(1);
}
tls = calloc(1, sizeof(GckRpcTlsPskState));
if (tls == NULL) {
fprintf(stderr, "can't allocate memory for TLS-PSK");
exit(1);
}
if (! gck_rpc_init_tls_psk(tls, tls_psk_keyfile, NULL, GCK_RPC_TLS_PSK_SERVER)) {
fprintf(stderr, "TLS-PSK initialization failed");
exit(1);
}
}
if (strcmp(path,"-") == 0) {
/* inetd mode */
sock = 0;
mode = GCP_RPC_DAEMON_MODE_INETD;
} else {
/* Do some initialization before enabling seccomp. */
sock = gck_rpc_layer_initialize(path, funcs);
if (sock == -1)
exit(1);
/* Shut down gracefully on SIGTERM. */
if (signal (SIGTERM, termination_handler) == SIG_IGN)
signal (SIGTERM, SIG_IGN);
mode = GCP_RPC_DAEMON_MODE_SOCKET;
}
/*
* Enable seccomp. This is essentially a whitelist containing all the syscalls
* we expect to call from here on. Anything not whitelisted will cause the
* process to terminate.
*/
if (install_syscall_filter(sock, tls_psk_keyfile, path))
return 1;
if (mode == GCP_RPC_DAEMON_MODE_INETD) {
gck_rpc_layer_inetd(funcs);
} else if (mode == GCP_RPC_DAEMON_MODE_SOCKET) {
is_running = 1;
while (is_running) {
FD_ZERO(&read_fds);
FD_SET(sock, &read_fds);
ret = select(sock + 1, &read_fds, NULL, NULL, NULL);
if (ret < 0) {
if (errno == EINTR)
continue;
fprintf(stderr, "error watching socket: %s\n",
strerror(errno));
exit(1);
}
if (FD_ISSET(sock, &read_fds))
gck_rpc_layer_accept(tls);
}
gck_rpc_layer_uninitialize();
} else {
/* Not reached */
exit(-1);
}
rv = (funcs->C_Finalize) (NULL);
if (rv != CKR_OK)
fprintf(stderr, "couldn't finalize module: %s: 0x%08x\n",
argv[1], (int)rv);
dlclose(module);
if (tls) {
gck_rpc_close_tls(tls);
free(tls);
tls = NULL;
}
return 0;
}