105
190
return buffer_capacity;
193
/* Add server to set of servers to retry periodically */
194
int add_server(const char *ip, uint16_t port,
195
AvahiIfIndex if_index,
198
server *new_server = malloc(sizeof(server));
199
if(new_server == NULL){
200
perror_plus("malloc");
203
*new_server = (server){ .ip = strdup(ip),
205
.if_index = if_index,
207
if(new_server->ip == NULL){
208
perror_plus("strdup");
211
/* Special case of first server */
212
if (mc.current_server == NULL){
213
new_server->next = new_server;
214
new_server->prev = new_server;
215
mc.current_server = new_server;
216
/* Place the new server last in the list */
218
new_server->next = mc.current_server;
219
new_server->prev = mc.current_server->prev;
220
new_server->prev->next = new_server;
221
mc.current_server->prev = new_server;
223
ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
225
perror_plus("clock_gettime");
109
* Decrypt OpenPGP data using keyrings in HOMEDIR.
110
* Returns -1 on error
112
static ssize_t pgp_packet_decrypt (const char *cryptotext,
115
const char *homedir){
116
gpgme_data_t dh_crypto, dh_plain;
234
static bool init_gpgme(const char *seckey,
235
const char *pubkey, const char *tempdir){
118
236
gpgme_error_t rc;
120
size_t plaintext_capacity = 0;
121
ssize_t plaintext_length = 0;
122
237
gpgme_engine_info_t engine_info;
125
fprintf(stderr, "Trying to decrypt OpenPGP data\n");
241
* Helper function to insert pub and seckey to the engine keyring.
243
bool import_key(const char *filename){
246
gpgme_data_t pgp_data;
248
fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
254
rc = gpgme_data_new_from_fd(&pgp_data, fd);
255
if(rc != GPG_ERR_NO_ERROR){
256
fprintf(stderr, "Mandos plugin mandos-client: "
257
"bad gpgme_data_new_from_fd: %s: %s\n",
258
gpgme_strsource(rc), gpgme_strerror(rc));
262
rc = gpgme_op_import(mc.ctx, pgp_data);
263
if(rc != GPG_ERR_NO_ERROR){
264
fprintf(stderr, "Mandos plugin mandos-client: "
265
"bad gpgme_op_import: %s: %s\n",
266
gpgme_strsource(rc), gpgme_strerror(rc));
270
ret = (int)TEMP_FAILURE_RETRY(close(fd));
272
perror_plus("close");
274
gpgme_data_release(pgp_data);
279
fprintf(stderr, "Mandos plugin mandos-client: "
280
"Initializing GPGME\n");
129
284
gpgme_check_version(NULL);
130
285
rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
131
if (rc != GPG_ERR_NO_ERROR){
132
fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
286
if(rc != GPG_ERR_NO_ERROR){
287
fprintf(stderr, "Mandos plugin mandos-client: "
288
"bad gpgme_engine_check_version: %s: %s\n",
133
289
gpgme_strsource(rc), gpgme_strerror(rc));
137
293
/* Set GPGME home directory for the OpenPGP engine only */
138
rc = gpgme_get_engine_info (&engine_info);
139
if (rc != GPG_ERR_NO_ERROR){
140
fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
294
rc = gpgme_get_engine_info(&engine_info);
295
if(rc != GPG_ERR_NO_ERROR){
296
fprintf(stderr, "Mandos plugin mandos-client: "
297
"bad gpgme_get_engine_info: %s: %s\n",
141
298
gpgme_strsource(rc), gpgme_strerror(rc));
144
301
while(engine_info != NULL){
145
302
if(engine_info->protocol == GPGME_PROTOCOL_OpenPGP){
146
303
gpgme_set_engine_info(GPGME_PROTOCOL_OpenPGP,
147
engine_info->file_name, homedir);
304
engine_info->file_name, tempdir);
150
307
engine_info = engine_info->next;
152
309
if(engine_info == NULL){
153
fprintf(stderr, "Could not set GPGME home dir to %s\n", homedir);
310
fprintf(stderr, "Mandos plugin mandos-client: "
311
"Could not set GPGME home dir to %s\n", tempdir);
315
/* Create new GPGME "context" */
316
rc = gpgme_new(&(mc.ctx));
317
if(rc != GPG_ERR_NO_ERROR){
318
fprintf(stderr, "Mandos plugin mandos-client: "
319
"bad gpgme_new: %s: %s\n", gpgme_strsource(rc),
324
if(not import_key(pubkey) or not import_key(seckey)){
332
* Decrypt OpenPGP data.
333
* Returns -1 on error
335
static ssize_t pgp_packet_decrypt(const char *cryptotext,
338
gpgme_data_t dh_crypto, dh_plain;
341
size_t plaintext_capacity = 0;
342
ssize_t plaintext_length = 0;
345
fprintf(stderr, "Mandos plugin mandos-client: "
346
"Trying to decrypt OpenPGP data\n");
157
349
/* Create new GPGME data buffer from memory cryptotext */
158
350
rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
160
if (rc != GPG_ERR_NO_ERROR){
161
fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
352
if(rc != GPG_ERR_NO_ERROR){
353
fprintf(stderr, "Mandos plugin mandos-client: "
354
"bad gpgme_data_new_from_mem: %s: %s\n",
162
355
gpgme_strsource(rc), gpgme_strerror(rc));
166
359
/* Create new empty GPGME data buffer for the plaintext */
167
360
rc = gpgme_data_new(&dh_plain);
168
if (rc != GPG_ERR_NO_ERROR){
169
fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
361
if(rc != GPG_ERR_NO_ERROR){
362
fprintf(stderr, "Mandos plugin mandos-client: "
363
"bad gpgme_data_new: %s: %s\n",
170
364
gpgme_strsource(rc), gpgme_strerror(rc));
171
365
gpgme_data_release(dh_crypto);
175
/* Create new GPGME "context" */
176
rc = gpgme_new(&ctx);
177
if (rc != GPG_ERR_NO_ERROR){
178
fprintf(stderr, "bad gpgme_new: %s: %s\n",
179
gpgme_strsource(rc), gpgme_strerror(rc));
180
plaintext_length = -1;
184
369
/* Decrypt data from the cryptotext data buffer to the plaintext
186
rc = gpgme_op_decrypt(ctx, dh_crypto, dh_plain);
187
if (rc != GPG_ERR_NO_ERROR){
188
fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
371
rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
372
if(rc != GPG_ERR_NO_ERROR){
373
fprintf(stderr, "Mandos plugin mandos-client: "
374
"bad gpgme_op_decrypt: %s: %s\n",
189
375
gpgme_strsource(rc), gpgme_strerror(rc));
190
376
plaintext_length = -1;
195
fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
199
gpgme_decrypt_result_t result;
200
result = gpgme_op_decrypt_result(ctx);
202
fprintf(stderr, "gpgme_op_decrypt_result failed\n");
204
fprintf(stderr, "Unsupported algorithm: %s\n",
205
result->unsupported_algorithm);
206
fprintf(stderr, "Wrong key usage: %d\n",
207
result->wrong_key_usage);
208
if(result->file_name != NULL){
209
fprintf(stderr, "File name: %s\n", result->file_name);
211
gpgme_recipient_t recipient;
212
recipient = result->recipients;
378
gpgme_decrypt_result_t result;
379
result = gpgme_op_decrypt_result(mc.ctx);
381
fprintf(stderr, "Mandos plugin mandos-client: "
382
"gpgme_op_decrypt_result failed\n");
384
fprintf(stderr, "Mandos plugin mandos-client: "
385
"Unsupported algorithm: %s\n",
386
result->unsupported_algorithm);
387
fprintf(stderr, "Mandos plugin mandos-client: "
388
"Wrong key usage: %u\n",
389
result->wrong_key_usage);
390
if(result->file_name != NULL){
391
fprintf(stderr, "Mandos plugin mandos-client: "
392
"File name: %s\n", result->file_name);
394
gpgme_recipient_t recipient;
395
recipient = result->recipients;
214
396
while(recipient != NULL){
215
fprintf(stderr, "Public key algorithm: %s\n",
397
fprintf(stderr, "Mandos plugin mandos-client: "
398
"Public key algorithm: %s\n",
216
399
gpgme_pubkey_algo_name(recipient->pubkey_algo));
217
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
218
fprintf(stderr, "Secret key available: %s\n",
400
fprintf(stderr, "Mandos plugin mandos-client: "
401
"Key ID: %s\n", recipient->keyid);
402
fprintf(stderr, "Mandos plugin mandos-client: "
403
"Secret key available: %s\n",
219
404
recipient->status == GPG_ERR_NO_SECKEY
221
406
recipient = recipient->next;
414
fprintf(stderr, "Mandos plugin mandos-client: "
415
"Decryption of OpenPGP data succeeded\n");
227
418
/* Seek back to the beginning of the GPGME plaintext data buffer */
228
if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
229
perror("pgpme_data_seek");
419
if(gpgme_data_seek(dh_plain, (off_t)0, SEEK_SET) == -1){
420
perror_plus("gpgme_data_seek");
230
421
plaintext_length = -1;
231
422
goto decrypt_end;
234
425
*plaintext = NULL;
236
plaintext_capacity = adjustbuffer(plaintext,
427
plaintext_capacity = incbuffer(plaintext,
237
428
(size_t)plaintext_length,
238
429
plaintext_capacity);
239
if (plaintext_capacity == 0){
240
perror("adjustbuffer");
430
if(plaintext_capacity == 0){
431
perror_plus("incbuffer");
241
432
plaintext_length = -1;
242
433
goto decrypt_end;
401
627
/* Called when a Mandos server is found */
402
628
static int start_mandos_communication(const char *ip, uint16_t port,
403
629
AvahiIfIndex if_index,
406
union { struct sockaddr in; struct sockaddr_in6 in6; } to;
631
int ret, tcp_sd = -1;
634
struct sockaddr_in in;
635
struct sockaddr_in6 in6;
407
637
char *buffer = NULL;
408
char *decrypted_buffer;
638
char *decrypted_buffer = NULL;
409
639
size_t buffer_length = 0;
410
640
size_t buffer_capacity = 0;
411
ssize_t decrypted_buffer_size;
414
char interface[IF_NAMESIZE];
415
643
gnutls_session_t session;
417
ret = init_gnutls_session (mc, &session);
423
fprintf(stderr, "Setting up a tcp connection to %s, port %d\n",
427
tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
434
if(if_indextoname((unsigned int)if_index, interface) == NULL){
435
perror("if_indextoname");
438
fprintf(stderr, "Binding to interface %s\n", interface);
441
memset(&to,0,sizeof(to)); /* Spurious warning */
442
to.in6.sin6_family = AF_INET6;
443
/* It would be nice to have a way to detect if we were passed an
444
IPv4 address here. Now we assume an IPv6 address. */
445
ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
644
int pf; /* Protocol family */
661
fprintf(stderr, "Mandos plugin mandos-client: "
662
"Bad address family: %d\n", af);
667
ret = init_gnutls_session(&session);
673
fprintf(stderr, "Mandos plugin mandos-client: "
674
"Setting up a TCP connection to %s, port %" PRIu16
678
tcp_sd = socket(pf, SOCK_STREAM, 0);
681
perror_plus("socket");
691
memset(&to, 0, sizeof(to));
693
to.in6.sin6_family = (sa_family_t)af;
694
ret = inet_pton(af, ip, &to.in6.sin6_addr);
696
to.in.sin_family = (sa_family_t)af;
697
ret = inet_pton(af, ip, &to.in.sin_addr);
701
perror_plus("inet_pton");
451
fprintf(stderr, "Bad address: %s\n", ip);
454
to.in6.sin6_port = htons(port); /* Spurious warning */
707
fprintf(stderr, "Mandos plugin mandos-client: "
708
"Bad address: %s\n", ip);
713
to.in6.sin6_port = htons(port); /* Spurious warnings from
715
-Wunreachable-code */
717
if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
718
(&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
720
if(if_index == AVAHI_IF_UNSPEC){
721
fprintf(stderr, "Mandos plugin mandos-client: "
722
"An IPv6 link-local address is incomplete"
723
" without a network interface\n");
727
/* Set the network interface number as scope */
728
to.in6.sin6_scope_id = (uint32_t)if_index;
731
to.in.sin_port = htons(port); /* Spurious warnings from
733
-Wunreachable-code */
456
to.in6.sin6_scope_id = (uint32_t)if_index;
459
fprintf(stderr, "Connection to: %s, port %d\n", ip, port);
460
char addrstr[INET6_ADDRSTRLEN] = "";
461
if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
462
sizeof(addrstr)) == NULL){
742
if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
743
char interface[IF_NAMESIZE];
744
if(if_indextoname((unsigned int)if_index, interface) == NULL){
745
perror_plus("if_indextoname");
747
fprintf(stderr, "Mandos plugin mandos-client: "
748
"Connection to: %s%%%s, port %" PRIu16 "\n",
749
ip, interface, port);
752
fprintf(stderr, "Mandos plugin mandos-client: "
753
"Connection to: %s, port %" PRIu16 "\n", ip, port);
755
char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
756
INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
759
pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
762
pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
766
perror_plus("inet_ntop");
465
768
if(strcmp(addrstr, ip) != 0){
466
fprintf(stderr, "Canonical address form: %s\n", addrstr);
769
fprintf(stderr, "Mandos plugin mandos-client: "
770
"Canonical address form: %s\n", addrstr);
471
ret = connect(tcp_sd, &to.in, sizeof(to));
781
ret = connect(tcp_sd, &to.in6, sizeof(to));
783
ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
786
if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
788
perror_plus("connect");
477
799
const char *out = mandos_protocol_version;
480
802
size_t out_size = strlen(out);
481
ret = TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
803
ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
482
804
out_size - written));
807
perror_plus("write");
488
811
written += (size_t)ret;
489
812
if(written < out_size){
492
if (out == mandos_protocol_version){
815
if(out == mandos_protocol_version){
502
fprintf(stderr, "Establishing TLS session with %s\n", ip);
505
gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
507
ret = gnutls_handshake (session);
509
if (ret != GNUTLS_E_SUCCESS){
830
fprintf(stderr, "Mandos plugin mandos-client: "
831
"Establishing TLS session with %s\n", ip);
839
/* Spurious warning from -Wint-to-pointer-cast */
840
gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
848
ret = gnutls_handshake(session);
853
} while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
855
if(ret != GNUTLS_E_SUCCESS){
511
fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
857
fprintf(stderr, "Mandos plugin mandos-client: "
858
"*** GnuTLS Handshake failed ***\n");
518
865
/* Read OpenPGP packet that contains the wanted password */
521
fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
868
fprintf(stderr, "Mandos plugin mandos-client: "
869
"Retrieving OpenPGP encrypted password from %s\n", ip);
526
buffer_capacity = adjustbuffer(&buffer, buffer_length,
879
buffer_capacity = incbuffer(&buffer, buffer_length,
527
880
buffer_capacity);
528
if (buffer_capacity == 0){
529
perror("adjustbuffer");
534
ret = gnutls_record_recv(session, buffer+buffer_length,
881
if(buffer_capacity == 0){
883
perror_plus("incbuffer");
893
sret = gnutls_record_recv(session, buffer+buffer_length,
541
900
case GNUTLS_E_INTERRUPTED:
542
901
case GNUTLS_E_AGAIN:
544
903
case GNUTLS_E_REHANDSHAKE:
545
ret = gnutls_handshake (session);
547
fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
905
ret = gnutls_handshake(session);
911
} while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
913
fprintf(stderr, "Mandos plugin mandos-client: "
914
"*** GnuTLS Re-handshake failed ***\n");
554
fprintf(stderr, "Unknown error while reading data from"
921
fprintf(stderr, "Mandos plugin mandos-client: "
922
"Unknown error while reading data from"
555
923
" encrypted session with Mandos server\n");
557
gnutls_bye (session, GNUTLS_SHUT_RDWR);
924
gnutls_bye(session, GNUTLS_SHUT_RDWR);
561
buffer_length += (size_t) ret;
929
buffer_length += (size_t) sret;
566
fprintf(stderr, "Closing TLS session\n");
569
gnutls_bye (session, GNUTLS_SHUT_RDWR);
571
if (buffer_length > 0){
934
fprintf(stderr, "Mandos plugin mandos-client: "
935
"Closing TLS session\n");
944
ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
949
} while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
951
if(buffer_length > 0){
952
ssize_t decrypted_buffer_size;
572
953
decrypted_buffer_size = pgp_packet_decrypt(buffer,
576
if (decrypted_buffer_size >= 0){
956
if(decrypted_buffer_size >= 0){
578
959
while(written < (size_t) decrypted_buffer_size){
579
ret = (int)fwrite (decrypted_buffer + written, 1,
580
(size_t)decrypted_buffer_size - written,
965
ret = (int)fwrite(decrypted_buffer + written, 1,
966
(size_t)decrypted_buffer_size - written,
582
968
if(ret == 0 and ferror(stdout)){
584
fprintf(stderr, "Error writing encrypted data: %s\n",
971
fprintf(stderr, "Mandos plugin mandos-client: "
972
"Error writing encrypted data: %s\n",
585
973
strerror(errno));
590
978
written += (size_t)ret;
592
free(decrypted_buffer);
598
984
/* Shutdown procedure */
603
gnutls_deinit (session);
604
gnutls_certificate_free_credentials (mc->cred);
605
gnutls_global_deinit ();
989
free(decrypted_buffer);
992
ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
998
perror_plus("close");
1000
gnutls_deinit(session);
609
1010
static void resolve_callback(AvahiSServiceResolver *r,
610
1011
AvahiIfIndex interface,
611
AVAHI_GCC_UNUSED AvahiProtocol protocol,
1012
AvahiProtocol proto,
612
1013
AvahiResolverEvent event,
613
1014
const char *name,
614
1015
const char *type,
696
1111
case AVAHI_BROWSER_ALL_FOR_NOW:
697
1112
case AVAHI_BROWSER_CACHE_EXHAUSTED:
699
fprintf(stderr, "No Mandos server found, still searching...\n");
1114
fprintf(stderr, "Mandos plugin mandos-client: "
1115
"No Mandos server found, still searching...\n");
705
/* Combines file name and path and returns the malloced new
706
string. some sane checks could/should be added */
707
static const char *combinepath(const char *first, const char *second){
708
size_t f_len = strlen(first);
709
size_t s_len = strlen(second);
710
char *tmp = malloc(f_len + s_len + 2);
715
memcpy(tmp, first, f_len); /* Spurious warning */
719
memcpy(tmp + f_len + 1, second, s_len); /* Spurious warning */
721
tmp[f_len + 1 + s_len] = '\0';
1121
/* Signal handler that stops main loop after SIGTERM */
1122
static void handle_sigterm(int sig){
1127
signal_received = sig;
1128
int old_errno = errno;
1129
/* set main loop to exit */
1130
if(mc.simple_poll != NULL){
1131
avahi_simple_poll_quit(mc.simple_poll);
1136
bool get_flags(const char *ifname, struct ifreq *ifr){
1139
int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1141
perror_plus("socket");
1144
strcpy(ifr->ifr_name, ifname);
1145
ret = ioctl(s, SIOCGIFFLAGS, ifr);
1148
perror_plus("ioctl SIOCGIFFLAGS");
1155
bool good_flags(const char *ifname, const struct ifreq *ifr){
1157
/* Reject the loopback device */
1158
if(ifr->ifr_flags & IFF_LOOPBACK){
1160
fprintf(stderr, "Mandos plugin mandos-client: "
1161
"Rejecting loopback interface \"%s\"\n", ifname);
1165
/* Accept point-to-point devices only if connect_to is specified */
1166
if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
1168
fprintf(stderr, "Mandos plugin mandos-client: "
1169
"Accepting point-to-point interface \"%s\"\n", ifname);
1173
/* Otherwise, reject non-broadcast-capable devices */
1174
if(not (ifr->ifr_flags & IFF_BROADCAST)){
1176
fprintf(stderr, "Mandos plugin mandos-client: "
1177
"Rejecting non-broadcast interface \"%s\"\n", ifname);
1181
/* Reject non-ARP interfaces (including dummy interfaces) */
1182
if(ifr->ifr_flags & IFF_NOARP){
1184
fprintf(stderr, "Mandos plugin mandos-client: "
1185
"Rejecting non-ARP interface \"%s\"\n", ifname);
1190
/* Accept this device */
1192
fprintf(stderr, "Mandos plugin mandos-client: "
1193
"Interface \"%s\" is good\n", ifname);
1199
* This function determines if a directory entry in /sys/class/net
1200
* corresponds to an acceptable network device.
1201
* (This function is passed to scandir(3) as a filter function.)
1203
int good_interface(const struct dirent *if_entry){
1204
if(if_entry->d_name[0] == '.'){
1209
if(not get_flags(if_entry->d_name, &ifr)){
1211
fprintf(stderr, "Mandos plugin mandos-client: "
1212
"Failed to get flags for interface \"%s\"\n",
1218
if(not good_flags(if_entry->d_name, &ifr)){
1225
* This function determines if a directory entry in /sys/class/net
1226
* corresponds to an acceptable network device which is up.
1227
* (This function is passed to scandir(3) as a filter function.)
1229
int up_interface(const struct dirent *if_entry){
1230
if(if_entry->d_name[0] == '.'){
1235
if(not get_flags(if_entry->d_name, &ifr)){
1237
fprintf(stderr, "Mandos plugin mandos-client: "
1238
"Failed to get flags for interface \"%s\"\n",
1244
/* Reject down interfaces */
1245
if(not (ifr.ifr_flags & IFF_UP)){
1247
fprintf(stderr, "Mandos plugin mandos-client: "
1248
"Rejecting down interface \"%s\"\n",
1254
/* Reject non-running interfaces */
1255
if(not (ifr.ifr_flags & IFF_RUNNING)){
1257
fprintf(stderr, "Mandos plugin mandos-client: "
1258
"Rejecting non-running interface \"%s\"\n",
1264
if(not good_flags(if_entry->d_name, &ifr)){
1270
int notdotentries(const struct dirent *direntry){
1271
/* Skip "." and ".." */
1272
if(direntry->d_name[0] == '.'
1273
and (direntry->d_name[1] == '\0'
1274
or (direntry->d_name[1] == '.'
1275
and direntry->d_name[2] == '\0'))){
1281
/* Is this directory entry a runnable program? */
1282
int runnable_hook(const struct dirent *direntry){
1286
if((direntry->d_name)[0] == '\0'){
1291
/* Save pointer to last character */
1292
char *end = strchr(direntry->d_name, '\0')-1;
1299
if(((direntry->d_name)[0] == '#')
1301
/* Temporary #name# */
1305
/* XXX more rules here */
1307
ret = stat(direntry->d_name, &st);
1310
perror_plus("Could not stat plugin");
1314
if(not (S_ISREG(st.st_mode))){
1315
/* Not a regular file */
1318
if(not (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))){
1319
/* Not executable */
1325
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
1327
struct timespec now;
1328
struct timespec waited_time;
1329
intmax_t block_time;
1332
if(mc.current_server == NULL){
1334
fprintf(stderr, "Mandos plugin mandos-client: "
1335
"Wait until first server is found. No timeout!\n");
1337
ret = avahi_simple_poll_iterate(s, -1);
1340
fprintf(stderr, "Mandos plugin mandos-client: "
1341
"Check current_server if we should run it,"
1344
/* the current time */
1345
ret = clock_gettime(CLOCK_MONOTONIC, &now);
1347
perror_plus("clock_gettime");
1350
/* Calculating in ms how long time between now and server
1351
who we visted longest time ago. Now - last seen. */
1352
waited_time.tv_sec = (now.tv_sec
1353
- mc.current_server->last_seen.tv_sec);
1354
waited_time.tv_nsec = (now.tv_nsec
1355
- mc.current_server->last_seen.tv_nsec);
1356
/* total time is 10s/10,000ms.
1357
Converting to s from ms by dividing by 1,000,
1358
and ns to ms by dividing by 1,000,000. */
1359
block_time = ((retry_interval
1360
- ((intmax_t)waited_time.tv_sec * 1000))
1361
- ((intmax_t)waited_time.tv_nsec / 1000000));
1364
fprintf(stderr, "Mandos plugin mandos-client: "
1365
"Blocking for %" PRIdMAX " ms\n", block_time);
1368
if(block_time <= 0){
1369
ret = start_mandos_communication(mc.current_server->ip,
1370
mc.current_server->port,
1371
mc.current_server->if_index,
1372
mc.current_server->af);
1374
avahi_simple_poll_quit(mc.simple_poll);
1377
ret = clock_gettime(CLOCK_MONOTONIC,
1378
&mc.current_server->last_seen);
1380
perror_plus("clock_gettime");
1383
mc.current_server = mc.current_server->next;
1384
block_time = 0; /* Call avahi to find new Mandos
1385
servers, but don't block */
1388
ret = avahi_simple_poll_iterate(s, (int)block_time);
1391
if (ret > 0 or errno != EINTR){
1392
return (ret != 1) ? ret : 0;
726
1398
int main(int argc, char *argv[]){
727
AvahiSServiceBrowser *sb = NULL;
730
int exitcode = EXIT_SUCCESS;
731
const char *interface = "eth0";
732
struct ifreq network;
736
char *connect_to = NULL;
737
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
738
const char *pubkeyfile = "pubkey.txt";
739
const char *seckeyfile = "seckey.txt";
740
mandos_context mc = { .simple_poll = NULL, .server = NULL,
741
.dh_bits = 1024, .priority = "SECURE256"};
744
struct argp_option options[] = {
745
{ .name = "debug", .key = 128,
746
.doc = "Debug mode", .group = 3 },
747
{ .name = "connect", .key = 'c',
749
.doc = "Connect directly to a sepcified mandos server",
751
{ .name = "interface", .key = 'i',
753
.doc = "Interface that Avahi will conntect through",
755
{ .name = "keydir", .key = 'd',
757
.doc = "Directory where the openpgp keyring is",
759
{ .name = "seckey", .key = 's',
761
.doc = "Secret openpgp key for gnutls authentication",
763
{ .name = "pubkey", .key = 'p',
765
.doc = "Public openpgp key for gnutls authentication",
767
{ .name = "dh-bits", .key = 129,
769
.doc = "dh-bits to use in gnutls communication",
771
{ .name = "priority", .key = 130,
773
.doc = "GNUTLS priority", .group = 1 },
778
error_t parse_opt (int key, char *arg,
779
struct argp_state *state) {
780
/* Get the INPUT argument from `argp_parse', which we know is
781
a pointer to our plugin list pointer. */
803
mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
818
return ARGP_ERR_UNKNOWN;
823
struct argp argp = { .options = options, .parser = parse_opt,
825
.doc = "Mandos client -- Get and decrypt"
826
" passwords from mandos server" };
827
argp_parse (&argp, argc, argv, 0, 0, NULL);
830
pubkeyfile = combinepath(keydir, pubkeyfile);
831
if (pubkeyfile == NULL){
832
perror("combinepath");
1399
AvahiSServiceBrowser *sb = NULL;
1404
int exitcode = EXIT_SUCCESS;
1405
const char *interface = "";
1406
struct ifreq network;
1408
bool take_down_interface = false;
1411
char tempdir[] = "/tmp/mandosXXXXXX";
1412
bool tempdir_created = false;
1413
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1414
const char *seckey = PATHDIR "/" SECKEY;
1415
const char *pubkey = PATHDIR "/" PUBKEY;
1417
bool gnutls_initialized = false;
1418
bool gpgme_initialized = false;
1420
double retry_interval = 10; /* 10s between trying a server and
1421
retrying the same server again */
1423
struct sigaction old_sigterm_action = { .sa_handler = SIG_DFL };
1424
struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
1429
/* Lower any group privileges we might have, just to be safe */
1433
perror_plus("setgid");
1436
/* Lower user privileges (temporarily) */
1440
perror_plus("seteuid");
1448
struct argp_option options[] = {
1449
{ .name = "debug", .key = 128,
1450
.doc = "Debug mode", .group = 3 },
1451
{ .name = "connect", .key = 'c',
1452
.arg = "ADDRESS:PORT",
1453
.doc = "Connect directly to a specific Mandos server",
1455
{ .name = "interface", .key = 'i',
1457
.doc = "Network interface that will be used to search for"
1460
{ .name = "seckey", .key = 's',
1462
.doc = "OpenPGP secret key file base name",
1464
{ .name = "pubkey", .key = 'p',
1466
.doc = "OpenPGP public key file base name",
1468
{ .name = "dh-bits", .key = 129,
1470
.doc = "Bit length of the prime number used in the"
1471
" Diffie-Hellman key exchange",
1473
{ .name = "priority", .key = 130,
1475
.doc = "GnuTLS priority string for the TLS handshake",
1477
{ .name = "delay", .key = 131,
1479
.doc = "Maximum delay to wait for interface startup",
1481
{ .name = "retry", .key = 132,
1483
.doc = "Retry interval used when denied by the mandos server",
1486
* These reproduce what we would get without ARGP_NO_HELP
1488
{ .name = "help", .key = '?',
1489
.doc = "Give this help list", .group = -1 },
1490
{ .name = "usage", .key = -3,
1491
.doc = "Give a short usage message", .group = -1 },
1492
{ .name = "version", .key = 'V',
1493
.doc = "Print program version", .group = -1 },
1497
error_t parse_opt(int key, char *arg,
1498
struct argp_state *state){
1501
case 128: /* --debug */
1504
case 'c': /* --connect */
1507
case 'i': /* --interface */
1510
case 's': /* --seckey */
1513
case 'p': /* --pubkey */
1516
case 129: /* --dh-bits */
1518
tmpmax = strtoimax(arg, &tmp, 10);
1519
if(errno != 0 or tmp == arg or *tmp != '\0'
1520
or tmpmax != (typeof(mc.dh_bits))tmpmax){
1521
argp_error(state, "Bad number of DH bits");
1523
mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
1525
case 130: /* --priority */
1528
case 131: /* --delay */
1530
delay = strtof(arg, &tmp);
1531
if(errno != 0 or tmp == arg or *tmp != '\0'){
1532
argp_error(state, "Bad delay");
1534
case 132: /* --retry */
1536
retry_interval = strtod(arg, &tmp);
1537
if(errno != 0 or tmp == arg or *tmp != '\0'
1538
or (retry_interval * 1000) > INT_MAX
1539
or retry_interval < 0){
1540
argp_error(state, "Bad retry interval");
1544
* These reproduce what we would get without ARGP_NO_HELP
1546
case '?': /* --help */
1547
argp_state_help(state, state->out_stream,
1548
(ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
1549
& ~(unsigned int)ARGP_HELP_EXIT_OK);
1550
case -3: /* --usage */
1551
argp_state_help(state, state->out_stream,
1552
ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1553
case 'V': /* --version */
1554
fprintf(state->out_stream, "Mandos plugin mandos-client: ");
1555
fprintf(state->out_stream, "%s\n", argp_program_version);
1556
exit(argp_err_exit_status);
1559
return ARGP_ERR_UNKNOWN;
1564
struct argp argp = { .options = options, .parser = parse_opt,
1566
.doc = "Mandos client -- Get and decrypt"
1567
" passwords from a Mandos server" };
1568
ret = argp_parse(&argp, argc, argv,
1569
ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
1576
perror_plus("argp_parse");
1577
exitcode = EX_OSERR;
1580
exitcode = EX_USAGE;
1586
/* Work around Debian bug #633582:
1587
<http://bugs.debian.org/633582> */
1590
/* Re-raise priviliges */
1594
perror_plus("seteuid");
1597
if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1598
int seckey_fd = open(seckey, O_RDONLY);
1599
if(seckey_fd == -1){
1600
perror_plus("open");
1602
ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1604
perror_plus("fstat");
1606
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1607
ret = fchown(seckey_fd, uid, gid);
1609
perror_plus("fchown");
1613
TEMP_FAILURE_RETRY(close(seckey_fd));
1617
if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1618
int pubkey_fd = open(pubkey, O_RDONLY);
1619
if(pubkey_fd == -1){
1620
perror_plus("open");
1622
ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1624
perror_plus("fstat");
1626
if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1627
ret = fchown(pubkey_fd, uid, gid);
1629
perror_plus("fchown");
1633
TEMP_FAILURE_RETRY(close(pubkey_fd));
1637
/* Lower privileges */
1641
perror_plus("seteuid");
1645
/* Find network hooks and run them */
1647
struct dirent **direntries;
1648
struct dirent *direntry;
1649
int numhooks = scandir(HOOKDIR, &direntries, runnable_hook,
1652
perror_plus("scandir");
1654
int devnull = open("/dev/null", O_RDONLY);
1655
for(int i = 0; i < numhooks; i++){
1656
direntry = direntries[0];
1657
char *fullname = NULL;
1658
ret = asprintf(&fullname, "%s/%s", tempdir,
1661
perror_plus("asprintf");
1664
pid_t hook_pid = fork();
1667
dup2(devnull, STDIN_FILENO);
1669
dup2(STDERR_FILENO, STDOUT_FILENO);
1670
ret = setenv("DEVICE", interface, 1);
1672
perror_plus("setenv");
1675
ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1677
perror_plus("setenv");
1680
ret = setenv("MODE", "start", 1);
1682
perror_plus("setenv");
1686
ret = asprintf(&delaystring, "%f", delay);
1688
perror_plus("asprintf");
1691
ret = setenv("DELAY", delaystring, 1);
1694
perror_plus("setenv");
1698
ret = execl(fullname, direntry->d_name, "start", NULL);
1699
perror_plus("execl");
1702
if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1703
perror_plus("waitpid");
1707
if(WIFEXITED(status)){
1708
if(WEXITSTATUS(status) != 0){
1709
fprintf(stderr, "Mandos plugin mandos-client: "
1710
"Warning: network hook \"%s\" exited"
1711
" with status %d\n", direntry->d_name,
1712
WEXITSTATUS(status));
1716
} else if(WIFSIGNALED(status)){
1717
fprintf(stderr, "Mandos plugin mandos-client: "
1718
"Warning: network hook \"%s\" died by"
1719
" signal %d\n", direntry->d_name,
1724
fprintf(stderr, "Mandos plugin mandos-client: "
1725
"Warning: network hook \"%s\" crashed\n",
1741
avahi_set_log_function(empty_log);
1744
if(interface[0] == '\0'){
1745
struct dirent **direntries;
1746
/* First look for interfaces that are up */
1747
ret = scandir(sys_class_net, &direntries, up_interface,
1750
/* No up interfaces, look for any good interfaces */
1752
ret = scandir(sys_class_net, &direntries, good_interface,
1756
/* Pick the first interface returned */
1757
interface = strdup(direntries[0]->d_name);
1759
fprintf(stderr, "Mandos plugin mandos-client: "
1760
"Using interface \"%s\"\n", interface);
1762
if(interface == NULL){
1763
perror_plus("malloc");
1765
exitcode = EXIT_FAILURE;
1771
fprintf(stderr, "Mandos plugin mandos-client: "
1772
"Could not find a network interface\n");
833
1773
exitcode = EXIT_FAILURE;
837
seckeyfile = combinepath(keydir, seckeyfile);
838
if (seckeyfile == NULL){
839
perror("combinepath");
843
ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
845
fprintf(stderr, "init_gnutls_global\n");
1778
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
1779
from the signal handler */
1780
/* Initialize the pseudo-RNG for Avahi */
1781
srand((unsigned int) time(NULL));
1782
mc.simple_poll = avahi_simple_poll_new();
1783
if(mc.simple_poll == NULL){
1784
fprintf(stderr, "Mandos plugin mandos-client: "
1785
"Avahi: Failed to create simple poll object.\n");
1786
exitcode = EX_UNAVAILABLE;
1790
sigemptyset(&sigterm_action.sa_mask);
1791
ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1793
perror_plus("sigaddset");
1794
exitcode = EX_OSERR;
1797
ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1799
perror_plus("sigaddset");
1800
exitcode = EX_OSERR;
1803
ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1805
perror_plus("sigaddset");
1806
exitcode = EX_OSERR;
1809
/* Need to check if the handler is SIG_IGN before handling:
1810
| [[info:libc:Initial Signal Actions]] |
1811
| [[info:libc:Basic Signal Handling]] |
1813
ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1815
perror_plus("sigaction");
1818
if(old_sigterm_action.sa_handler != SIG_IGN){
1819
ret = sigaction(SIGINT, &sigterm_action, NULL);
1821
perror_plus("sigaction");
1822
exitcode = EX_OSERR;
1826
ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1828
perror_plus("sigaction");
1831
if(old_sigterm_action.sa_handler != SIG_IGN){
1832
ret = sigaction(SIGHUP, &sigterm_action, NULL);
1834
perror_plus("sigaction");
1835
exitcode = EX_OSERR;
1839
ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1841
perror_plus("sigaction");
1844
if(old_sigterm_action.sa_handler != SIG_IGN){
1845
ret = sigaction(SIGTERM, &sigterm_action, NULL);
1847
perror_plus("sigaction");
1848
exitcode = EX_OSERR;
1853
/* If the interface is down, bring it up */
1854
if(strcmp(interface, "none") != 0){
862
1855
if_index = (AvahiIfIndex) if_nametoindex(interface);
863
1856
if(if_index == 0){
864
fprintf(stderr, "No such interface: \"%s\"\n", interface);
868
if(connect_to != NULL){
869
/* Connect directly, do not use Zeroconf */
870
/* (Mainly meant for debugging) */
871
char *address = strrchr(connect_to, ':');
873
fprintf(stderr, "No colon in address\n");
874
exitcode = EXIT_FAILURE;
878
uint16_t port = (uint16_t) strtol(address+1, NULL, 10);
880
perror("Bad port number");
881
exitcode = EXIT_FAILURE;
885
address = connect_to;
886
ret = start_mandos_communication(address, port, if_index, &mc);
888
exitcode = EXIT_FAILURE;
890
exitcode = EXIT_SUCCESS;
895
/* If the interface is down, bring it up */
897
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
900
exitcode = EXIT_FAILURE;
903
strcpy(network.ifr_name, interface); /* Spurious warning */
904
ret = ioctl(sd, SIOCGIFFLAGS, &network);
906
perror("ioctl SIOCGIFFLAGS");
907
exitcode = EXIT_FAILURE;
910
if((network.ifr_flags & IFF_UP) == 0){
911
network.ifr_flags |= IFF_UP;
1857
fprintf(stderr, "Mandos plugin mandos-client: "
1858
"No such interface: \"%s\"\n", interface);
1859
exitcode = EX_UNAVAILABLE;
1867
/* Re-raise priviliges */
1871
perror_plus("seteuid");
1875
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1876
messages about the network interface to mess up the prompt */
1877
ret = klogctl(8, NULL, 5);
1878
bool restore_loglevel = true;
1880
restore_loglevel = false;
1881
perror_plus("klogctl");
1883
#endif /* __linux__ */
1885
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1887
perror_plus("socket");
1888
exitcode = EX_OSERR;
1890
if(restore_loglevel){
1891
ret = klogctl(7, NULL, 0);
1893
perror_plus("klogctl");
1896
#endif /* __linux__ */
1897
/* Lower privileges */
1901
perror_plus("seteuid");
1905
strcpy(network.ifr_name, interface);
1906
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1908
perror_plus("ioctl SIOCGIFFLAGS");
1910
if(restore_loglevel){
1911
ret = klogctl(7, NULL, 0);
1913
perror_plus("klogctl");
1916
#endif /* __linux__ */
1917
exitcode = EX_OSERR;
1918
/* Lower privileges */
1922
perror_plus("seteuid");
1926
if((network.ifr_flags & IFF_UP) == 0){
1927
network.ifr_flags |= IFF_UP;
1928
take_down_interface = true;
1929
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1931
take_down_interface = false;
1932
perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1933
exitcode = EX_OSERR;
1935
if(restore_loglevel){
1936
ret = klogctl(7, NULL, 0);
1938
perror_plus("klogctl");
1941
#endif /* __linux__ */
1942
/* Lower privileges */
1946
perror_plus("seteuid");
1951
/* Sleep checking until interface is running.
1952
Check every 0.25s, up to total time of delay */
1953
for(int i=0; i < delay * 4; i++){
1954
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1956
perror_plus("ioctl SIOCGIFFLAGS");
1957
} else if(network.ifr_flags & IFF_RUNNING){
1960
struct timespec sleeptime = { .tv_nsec = 250000000 };
1961
ret = nanosleep(&sleeptime, NULL);
1962
if(ret == -1 and errno != EINTR){
1963
perror_plus("nanosleep");
1966
if(not take_down_interface){
1967
/* We won't need the socket anymore */
1968
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1970
perror_plus("close");
1974
if(restore_loglevel){
1975
/* Restores kernel loglevel to default */
1976
ret = klogctl(7, NULL, 0);
1978
perror_plus("klogctl");
1981
#endif /* __linux__ */
1982
/* Lower privileges */
1984
if(take_down_interface){
1985
/* Lower privileges */
1988
perror_plus("seteuid");
1991
/* Lower privileges permanently */
1994
perror_plus("setuid");
2003
ret = init_gnutls_global(pubkey, seckey);
2005
fprintf(stderr, "Mandos plugin mandos-client: "
2006
"init_gnutls_global failed\n");
2007
exitcode = EX_UNAVAILABLE;
2010
gnutls_initialized = true;
2017
if(mkdtemp(tempdir) == NULL){
2018
perror_plus("mkdtemp");
2021
tempdir_created = true;
2027
if(not init_gpgme(pubkey, seckey, tempdir)){
2028
fprintf(stderr, "Mandos plugin mandos-client: "
2029
"init_gpgme failed\n");
2030
exitcode = EX_UNAVAILABLE;
2033
gpgme_initialized = true;
2040
if(connect_to != NULL){
2041
/* Connect directly, do not use Zeroconf */
2042
/* (Mainly meant for debugging) */
2043
char *address = strrchr(connect_to, ':');
2044
if(address == NULL){
2045
fprintf(stderr, "Mandos plugin mandos-client: "
2046
"No colon in address\n");
2047
exitcode = EX_USAGE;
2057
tmpmax = strtoimax(address+1, &tmp, 10);
2058
if(errno != 0 or tmp == address+1 or *tmp != '\0'
2059
or tmpmax != (uint16_t)tmpmax){
2060
fprintf(stderr, "Mandos plugin mandos-client: "
2061
"Bad port number\n");
2062
exitcode = EX_USAGE;
2070
port = (uint16_t)tmpmax;
2072
/* Colon in address indicates IPv6 */
2074
if(strchr(connect_to, ':') != NULL){
2076
/* Accept [] around IPv6 address - see RFC 5952 */
2077
if(connect_to[0] == '[' and address[-1] == ']')
2085
address = connect_to;
2091
while(not quit_now){
2092
ret = start_mandos_communication(address, port, if_index, af);
2093
if(quit_now or ret == 0){
2097
fprintf(stderr, "Mandos plugin mandos-client: "
2098
"Retrying in %d seconds\n", (int)retry_interval);
2100
sleep((int)retry_interval);
2104
exitcode = EXIT_SUCCESS;
2115
AvahiServerConfig config;
2116
/* Do not publish any local Zeroconf records */
2117
avahi_server_config_init(&config);
2118
config.publish_hinfo = 0;
2119
config.publish_addresses = 0;
2120
config.publish_workstation = 0;
2121
config.publish_domain = 0;
2123
/* Allocate a new server */
2124
mc.server = avahi_server_new(avahi_simple_poll_get
2125
(mc.simple_poll), &config, NULL,
2128
/* Free the Avahi configuration data */
2129
avahi_server_config_free(&config);
2132
/* Check if creating the Avahi server object succeeded */
2133
if(mc.server == NULL){
2134
fprintf(stderr, "Mandos plugin mandos-client: "
2135
"Failed to create Avahi server: %s\n",
2136
avahi_strerror(error));
2137
exitcode = EX_UNAVAILABLE;
2145
/* Create the Avahi service browser */
2146
sb = avahi_s_service_browser_new(mc.server, if_index,
2147
AVAHI_PROTO_UNSPEC, "_mandos._tcp",
2148
NULL, 0, browse_callback, NULL);
2150
fprintf(stderr, "Mandos plugin mandos-client: "
2151
"Failed to create service browser: %s\n",
2152
avahi_strerror(avahi_server_errno(mc.server)));
2153
exitcode = EX_UNAVAILABLE;
2161
/* Run the main loop */
2164
fprintf(stderr, "Mandos plugin mandos-client: "
2165
"Starting Avahi loop search\n");
2168
ret = avahi_loop_with_timeout(mc.simple_poll,
2169
(int)(retry_interval * 1000));
2171
fprintf(stderr, "Mandos plugin mandos-client: "
2172
"avahi_loop_with_timeout exited %s\n",
2173
(ret == 0) ? "successfully" : "with error");
2179
fprintf(stderr, "Mandos plugin mandos-client: "
2180
"%s exiting\n", argv[0]);
2183
/* Cleanup things */
2185
avahi_s_service_browser_free(sb);
2187
if(mc.server != NULL)
2188
avahi_server_free(mc.server);
2190
if(mc.simple_poll != NULL)
2191
avahi_simple_poll_free(mc.simple_poll);
2193
if(gnutls_initialized){
2194
gnutls_certificate_free_credentials(mc.cred);
2195
gnutls_global_deinit();
2196
gnutls_dh_params_deinit(mc.dh_params);
2199
if(gpgme_initialized){
2200
gpgme_release(mc.ctx);
2203
/* Cleans up the circular linked list of Mandos servers the client
2205
if(mc.current_server != NULL){
2206
mc.current_server->prev->next = NULL;
2207
while(mc.current_server != NULL){
2208
server *next = mc.current_server->next;
2209
free(mc.current_server);
2210
mc.current_server = next;
2214
/* XXX run network hooks "stop" here */
2216
/* Take down the network interface */
2217
if(take_down_interface){
2218
/* Re-raise priviliges */
2222
perror_plus("seteuid");
2225
ret = ioctl(sd, SIOCGIFFLAGS, &network);
2227
perror_plus("ioctl SIOCGIFFLAGS");
2228
} else if(network.ifr_flags & IFF_UP){
2229
network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
912
2230
ret = ioctl(sd, SIOCSIFFLAGS, &network);
914
perror("ioctl SIOCSIFFLAGS");
915
exitcode = EXIT_FAILURE;
923
avahi_set_log_function(empty_log);
926
/* Initialize the pseudo-RNG for Avahi */
927
srand((unsigned int) time(NULL));
929
/* Allocate main Avahi loop object */
930
mc.simple_poll = avahi_simple_poll_new();
931
if (mc.simple_poll == NULL) {
932
fprintf(stderr, "Avahi: Failed to create simple poll"
934
exitcode = EXIT_FAILURE;
939
AvahiServerConfig config;
940
/* Do not publish any local Zeroconf records */
941
avahi_server_config_init(&config);
942
config.publish_hinfo = 0;
943
config.publish_addresses = 0;
944
config.publish_workstation = 0;
945
config.publish_domain = 0;
947
/* Allocate a new server */
948
mc.server = avahi_server_new(avahi_simple_poll_get
949
(mc.simple_poll), &config, NULL,
952
/* Free the Avahi configuration data */
953
avahi_server_config_free(&config);
956
/* Check if creating the Avahi server object succeeded */
957
if (mc.server == NULL) {
958
fprintf(stderr, "Failed to create Avahi server: %s\n",
959
avahi_strerror(error));
960
exitcode = EXIT_FAILURE;
964
/* Create the Avahi service browser */
965
sb = avahi_s_service_browser_new(mc.server, if_index,
967
"_mandos._tcp", NULL, 0,
968
browse_callback, &mc);
970
fprintf(stderr, "Failed to create service browser: %s\n",
971
avahi_strerror(avahi_server_errno(mc.server)));
972
exitcode = EXIT_FAILURE;
976
/* Run the main loop */
979
fprintf(stderr, "Starting Avahi loop search\n");
982
avahi_simple_poll_loop(mc.simple_poll);
987
fprintf(stderr, "%s exiting\n", argv[0]);
992
avahi_s_service_browser_free(sb);
994
if (mc.server != NULL)
995
avahi_server_free(mc.server);
997
if (mc.simple_poll != NULL)
998
avahi_simple_poll_free(mc.simple_poll);
2232
perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
2235
ret = (int)TEMP_FAILURE_RETRY(close(sd));
2237
perror_plus("close");
2239
/* Lower privileges permanently */
2243
perror_plus("setuid");
2248
/* Removes the GPGME temp directory and all files inside */
2249
if(tempdir_created){
2250
struct dirent **direntries = NULL;
2251
struct dirent *direntry = NULL;
2252
int numentries = scandir(tempdir, &direntries, notdotentries,
2254
if (numentries > 0){
2255
for(int i = 0; i < numentries; i++){
2256
direntry = direntries[i];
2257
char *fullname = NULL;
2258
ret = asprintf(&fullname, "%s/%s", tempdir,
2261
perror_plus("asprintf");
2264
ret = remove(fullname);
2266
fprintf(stderr, "Mandos plugin mandos-client: "
2267
"remove(\"%s\"): %s\n", fullname, strerror(errno));
2273
/* need to clean even if 0 because man page doesn't specify */
2275
if (numentries == -1){
2276
perror_plus("scandir");
2278
ret = rmdir(tempdir);
2279
if(ret == -1 and errno != ENOENT){
2280
perror_plus("rmdir");
2285
sigemptyset(&old_sigterm_action.sa_mask);
2286
old_sigterm_action.sa_handler = SIG_DFL;
2287
ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
2288
&old_sigterm_action,
2291
perror_plus("sigaction");
2294
ret = raise(signal_received);
2295
} while(ret != 0 and errno == EINTR);
2297
perror_plus("raise");
2300
TEMP_FAILURE_RETRY(pause());