/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/mandos-client.c

  • Committer: teddy at bsnet
  • Date: 2011-12-24 19:43:48 UTC
  • mfrom: (505.1.27 teddy)
  • Revision ID: teddy@fukt.bsnet.se-20111224194348-0buonmve2dnwcnzw
Merge from Teddy

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 * "browse_callback", and parts of "main".
10
10
 * 
11
11
 * Everything else is
12
 
 * Copyright © 2008,2009 Teddy Hogeborn
13
 
 * Copyright © 2008,2009 Björn Påhlsson
 
12
 * Copyright © 2008-2011 Teddy Hogeborn
 
13
 * Copyright © 2008-2011 Björn Påhlsson
14
14
 * 
15
15
 * This program is free software: you can redistribute it and/or
16
16
 * modify it under the terms of the GNU General Public License as
26
26
 * along with this program.  If not, see
27
27
 * <http://www.gnu.org/licenses/>.
28
28
 * 
29
 
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
29
 * Contact the authors at <mandos@recompile.se>.
30
30
 */
31
31
 
32
32
/* Needed by GPGME, specifically gpgme_data_seek() */
43
43
                                   stdout, ferror(), remove() */
44
44
#include <stdint.h>             /* uint16_t, uint32_t */
45
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
46
 
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
47
 
                                   srand(), strtof() */
 
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, srand(),
 
47
                                   strtof(), abort() */
48
48
#include <stdbool.h>            /* bool, false, true */
49
49
#include <string.h>             /* memset(), strcmp(), strlen(),
50
50
                                   strerror(), asprintf(), strcpy() */
53
53
                                   sockaddr_in6, PF_INET6,
54
54
                                   SOCK_STREAM, uid_t, gid_t, open(),
55
55
                                   opendir(), DIR */
56
 
#include <sys/stat.h>           /* open() */
 
56
#include <sys/stat.h>           /* open(), S_ISREG */
57
57
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
58
58
                                   inet_pton(), connect() */
59
59
#include <fcntl.h>              /* open() */
62
62
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
63
63
                                   strtoimax() */
64
64
#include <assert.h>             /* assert() */
65
 
#include <errno.h>              /* perror(), errno */
66
 
#include <time.h>               /* nanosleep(), time() */
 
65
#include <errno.h>              /* perror(), errno,
 
66
                                   program_invocation_short_name */
 
67
#include <time.h>               /* nanosleep(), time(), sleep() */
67
68
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
68
69
                                   SIOCSIFFLAGS, if_indextoname(),
69
70
                                   if_nametoindex(), IF_NAMESIZE */
71
72
                                   INET_ADDRSTRLEN, INET6_ADDRSTRLEN
72
73
                                */
73
74
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
74
 
                                   getuid(), getgid(), setuid(),
75
 
                                   setgid() */
76
 
#include <arpa/inet.h>          /* inet_pton(), htons */
 
75
                                   getuid(), getgid(), seteuid(),
 
76
                                   setgid(), pause(), _exit() */
 
77
#include <arpa/inet.h>          /* inet_pton(), htons, inet_ntop() */
77
78
#include <iso646.h>             /* not, or, and */
78
79
#include <argp.h>               /* struct argp_option, error_t, struct
79
80
                                   argp_state, struct argp,
80
81
                                   argp_parse(), ARGP_KEY_ARG,
81
82
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
82
83
#include <signal.h>             /* sigemptyset(), sigaddset(),
83
 
                                   sigaction(), SIGTERM, sigaction,
84
 
                                   sig_atomic_t */
 
84
                                   sigaction(), SIGTERM, sig_atomic_t,
 
85
                                   raise() */
 
86
#include <sysexits.h>           /* EX_OSERR, EX_USAGE, EX_UNAVAILABLE,
 
87
                                   EX_NOHOST, EX_IOERR, EX_PROTOCOL */
 
88
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
 
89
                                   WEXITSTATUS(), WTERMSIG() */
 
90
#include <grp.h>                /* setgroups() */
85
91
 
86
92
#ifdef __linux__
87
93
#include <sys/klog.h>           /* klogctl() */
105
111
                                   init_gnutls_session(),
106
112
                                   GNUTLS_* */
107
113
#include <gnutls/openpgp.h>
108
 
                          /* gnutls_certificate_set_openpgp_key_file(),
109
 
                                   GNUTLS_OPENPGP_FMT_BASE64 */
 
114
                         /* gnutls_certificate_set_openpgp_key_file(),
 
115
                            GNUTLS_OPENPGP_FMT_BASE64 */
110
116
 
111
117
/* GPGME */
112
118
#include <gpgme.h>              /* All GPGME types, constants and
120
126
#define PATHDIR "/conf/conf.d/mandos"
121
127
#define SECKEY "seckey.txt"
122
128
#define PUBKEY "pubkey.txt"
 
129
#define HOOKDIR "/lib/mandos/network-hooks.d"
123
130
 
124
131
bool debug = false;
125
132
static const char mandos_protocol_version[] = "1";
126
133
const char *argp_program_version = "mandos-client " VERSION;
127
 
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
134
const char *argp_program_bug_address = "<mandos@recompile.se>";
 
135
static const char sys_class_net[] = "/sys/class/net";
 
136
char *connect_to = NULL;
 
137
const char *hookdir = HOOKDIR;
 
138
 
 
139
/* Doubly linked list that need to be circularly linked when used */
 
140
typedef struct server{
 
141
  const char *ip;
 
142
  uint16_t port;
 
143
  AvahiIfIndex if_index;
 
144
  int af;
 
145
  struct timespec last_seen;
 
146
  struct server *next;
 
147
  struct server *prev;
 
148
} server;
128
149
 
129
150
/* Used for passing in values through the Avahi callback functions */
130
151
typedef struct {
135
156
  gnutls_dh_params_t dh_params;
136
157
  const char *priority;
137
158
  gpgme_ctx_t ctx;
 
159
  server *current_server;
138
160
} mandos_context;
139
161
 
140
162
/* global context so signal handler can reach it*/
141
163
mandos_context mc = { .simple_poll = NULL, .server = NULL,
142
164
                      .dh_bits = 1024, .priority = "SECURE256"
143
 
                      ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
165
                      ":!CTYPE-X.509:+CTYPE-OPENPGP",
 
166
                      .current_server = NULL };
 
167
 
 
168
sig_atomic_t quit_now = 0;
 
169
int signal_received = 0;
 
170
 
 
171
/* Function to use when printing errors */
 
172
void perror_plus(const char *print_text){
 
173
  fprintf(stderr, "Mandos plugin %s: ",
 
174
          program_invocation_short_name);
 
175
  perror(print_text);
 
176
}
 
177
 
 
178
int fprintf_plus(FILE *stream, const char *format, ...){
 
179
  va_list ap;
 
180
  va_start (ap, format);
 
181
  
 
182
  TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
 
183
                             program_invocation_short_name));
 
184
  return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
 
185
}
144
186
 
145
187
/*
146
188
 * Make additional room in "buffer" for at least BUFFER_SIZE more
148
190
 * "buffer_length" is how much is already used.
149
191
 */
150
192
size_t incbuffer(char **buffer, size_t buffer_length,
151
 
                  size_t buffer_capacity){
 
193
                 size_t buffer_capacity){
152
194
  if(buffer_length + BUFFER_SIZE > buffer_capacity){
153
195
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
154
196
    if(buffer == NULL){
159
201
  return buffer_capacity;
160
202
}
161
203
 
 
204
/* Add server to set of servers to retry periodically */
 
205
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
 
206
                int af){
 
207
  int ret;
 
208
  server *new_server = malloc(sizeof(server));
 
209
  if(new_server == NULL){
 
210
    perror_plus("malloc");
 
211
    return false;
 
212
  }
 
213
  *new_server = (server){ .ip = strdup(ip),
 
214
                          .port = port,
 
215
                          .if_index = if_index,
 
216
                          .af = af };
 
217
  if(new_server->ip == NULL){
 
218
    perror_plus("strdup");
 
219
    return false;
 
220
  }
 
221
  /* Special case of first server */
 
222
  if (mc.current_server == NULL){
 
223
    new_server->next = new_server;
 
224
    new_server->prev = new_server;
 
225
    mc.current_server = new_server;
 
226
  /* Place the new server last in the list */
 
227
  } else {
 
228
    new_server->next = mc.current_server;
 
229
    new_server->prev = mc.current_server->prev;
 
230
    new_server->prev->next = new_server;
 
231
    mc.current_server->prev = new_server;
 
232
  }
 
233
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
 
234
  if(ret == -1){
 
235
    perror_plus("clock_gettime");
 
236
    return false;
 
237
  }
 
238
  return true;
 
239
}
 
240
 
162
241
/* 
163
242
 * Initialize GPGME.
164
243
 */
165
 
static bool init_gpgme(const char *seckey,
166
 
                       const char *pubkey, const char *tempdir){
167
 
  int ret;
 
244
static bool init_gpgme(const char *seckey, const char *pubkey,
 
245
                       const char *tempdir){
168
246
  gpgme_error_t rc;
169
247
  gpgme_engine_info_t engine_info;
170
248
  
173
251
   * Helper function to insert pub and seckey to the engine keyring.
174
252
   */
175
253
  bool import_key(const char *filename){
 
254
    int ret;
176
255
    int fd;
177
256
    gpgme_data_t pgp_data;
178
257
    
179
258
    fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
180
259
    if(fd == -1){
181
 
      perror("open");
 
260
      perror_plus("open");
182
261
      return false;
183
262
    }
184
263
    
185
264
    rc = gpgme_data_new_from_fd(&pgp_data, fd);
186
265
    if(rc != GPG_ERR_NO_ERROR){
187
 
      fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
188
 
              gpgme_strsource(rc), gpgme_strerror(rc));
 
266
      fprintf_plus(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
 
267
                   gpgme_strsource(rc), gpgme_strerror(rc));
189
268
      return false;
190
269
    }
191
270
    
192
271
    rc = gpgme_op_import(mc.ctx, pgp_data);
193
272
    if(rc != GPG_ERR_NO_ERROR){
194
 
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
195
 
              gpgme_strsource(rc), gpgme_strerror(rc));
 
273
      fprintf_plus(stderr, "bad gpgme_op_import: %s: %s\n",
 
274
                   gpgme_strsource(rc), gpgme_strerror(rc));
196
275
      return false;
197
276
    }
198
277
    
199
278
    ret = (int)TEMP_FAILURE_RETRY(close(fd));
200
279
    if(ret == -1){
201
 
      perror("close");
 
280
      perror_plus("close");
202
281
    }
203
282
    gpgme_data_release(pgp_data);
204
283
    return true;
205
284
  }
206
285
  
207
286
  if(debug){
208
 
    fprintf(stderr, "Initializing GPGME\n");
 
287
    fprintf_plus(stderr, "Initializing GPGME\n");
209
288
  }
210
289
  
211
290
  /* Init GPGME */
212
291
  gpgme_check_version(NULL);
213
292
  rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
214
293
  if(rc != GPG_ERR_NO_ERROR){
215
 
    fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
216
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
294
    fprintf_plus(stderr, "bad gpgme_engine_check_version: %s: %s\n",
 
295
                 gpgme_strsource(rc), gpgme_strerror(rc));
217
296
    return false;
218
297
  }
219
298
  
220
 
    /* Set GPGME home directory for the OpenPGP engine only */
 
299
  /* Set GPGME home directory for the OpenPGP engine only */
221
300
  rc = gpgme_get_engine_info(&engine_info);
222
301
  if(rc != GPG_ERR_NO_ERROR){
223
 
    fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
224
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
302
    fprintf_plus(stderr, "bad gpgme_get_engine_info: %s: %s\n",
 
303
                 gpgme_strsource(rc), gpgme_strerror(rc));
225
304
    return false;
226
305
  }
227
306
  while(engine_info != NULL){
233
312
    engine_info = engine_info->next;
234
313
  }
235
314
  if(engine_info == NULL){
236
 
    fprintf(stderr, "Could not set GPGME home dir to %s\n", tempdir);
 
315
    fprintf_plus(stderr, "Could not set GPGME home dir to %s\n",
 
316
                 tempdir);
237
317
    return false;
238
318
  }
239
319
  
240
320
  /* Create new GPGME "context" */
241
321
  rc = gpgme_new(&(mc.ctx));
242
322
  if(rc != GPG_ERR_NO_ERROR){
243
 
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
244
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
323
    fprintf_plus(stderr, "Mandos plugin mandos-client: "
 
324
                 "bad gpgme_new: %s: %s\n", gpgme_strsource(rc),
 
325
                 gpgme_strerror(rc));
245
326
    return false;
246
327
  }
247
328
  
249
330
    return false;
250
331
  }
251
332
  
252
 
  return true; 
 
333
  return true;
253
334
}
254
335
 
255
336
/* 
266
347
  ssize_t plaintext_length = 0;
267
348
  
268
349
  if(debug){
269
 
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
 
350
    fprintf_plus(stderr, "Trying to decrypt OpenPGP data\n");
270
351
  }
271
352
  
272
353
  /* Create new GPGME data buffer from memory cryptotext */
273
354
  rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
274
355
                               0);
275
356
  if(rc != GPG_ERR_NO_ERROR){
276
 
    fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
277
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
357
    fprintf_plus(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
 
358
                 gpgme_strsource(rc), gpgme_strerror(rc));
278
359
    return -1;
279
360
  }
280
361
  
281
362
  /* Create new empty GPGME data buffer for the plaintext */
282
363
  rc = gpgme_data_new(&dh_plain);
283
364
  if(rc != GPG_ERR_NO_ERROR){
284
 
    fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
285
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
365
    fprintf_plus(stderr, "Mandos plugin mandos-client: "
 
366
                 "bad gpgme_data_new: %s: %s\n",
 
367
                 gpgme_strsource(rc), gpgme_strerror(rc));
286
368
    gpgme_data_release(dh_crypto);
287
369
    return -1;
288
370
  }
291
373
     data buffer */
292
374
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
293
375
  if(rc != GPG_ERR_NO_ERROR){
294
 
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
295
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
376
    fprintf_plus(stderr, "bad gpgme_op_decrypt: %s: %s\n",
 
377
                 gpgme_strsource(rc), gpgme_strerror(rc));
296
378
    plaintext_length = -1;
297
379
    if(debug){
298
380
      gpgme_decrypt_result_t result;
299
381
      result = gpgme_op_decrypt_result(mc.ctx);
300
382
      if(result == NULL){
301
 
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
 
383
        fprintf_plus(stderr, "gpgme_op_decrypt_result failed\n");
302
384
      } else {
303
 
        fprintf(stderr, "Unsupported algorithm: %s\n",
304
 
                result->unsupported_algorithm);
305
 
        fprintf(stderr, "Wrong key usage: %u\n",
306
 
                result->wrong_key_usage);
 
385
        fprintf_plus(stderr, "Unsupported algorithm: %s\n",
 
386
                     result->unsupported_algorithm);
 
387
        fprintf_plus(stderr, "Wrong key usage: %u\n",
 
388
                     result->wrong_key_usage);
307
389
        if(result->file_name != NULL){
308
 
          fprintf(stderr, "File name: %s\n", result->file_name);
 
390
          fprintf_plus(stderr, "File name: %s\n", result->file_name);
309
391
        }
310
392
        gpgme_recipient_t recipient;
311
393
        recipient = result->recipients;
312
 
        if(recipient){
313
 
          while(recipient != NULL){
314
 
            fprintf(stderr, "Public key algorithm: %s\n",
315
 
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
316
 
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
317
 
            fprintf(stderr, "Secret key available: %s\n",
318
 
                    recipient->status == GPG_ERR_NO_SECKEY
319
 
                    ? "No" : "Yes");
320
 
            recipient = recipient->next;
321
 
          }
 
394
        while(recipient != NULL){
 
395
          fprintf_plus(stderr, "Public key algorithm: %s\n",
 
396
                       gpgme_pubkey_algo_name
 
397
                       (recipient->pubkey_algo));
 
398
          fprintf_plus(stderr, "Key ID: %s\n", recipient->keyid);
 
399
          fprintf_plus(stderr, "Secret key available: %s\n",
 
400
                       recipient->status == GPG_ERR_NO_SECKEY
 
401
                       ? "No" : "Yes");
 
402
          recipient = recipient->next;
322
403
        }
323
404
      }
324
405
    }
326
407
  }
327
408
  
328
409
  if(debug){
329
 
    fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
 
410
    fprintf_plus(stderr, "Decryption of OpenPGP data succeeded\n");
330
411
  }
331
412
  
332
413
  /* Seek back to the beginning of the GPGME plaintext data buffer */
333
414
  if(gpgme_data_seek(dh_plain, (off_t)0, SEEK_SET) == -1){
334
 
    perror("gpgme_data_seek");
 
415
    perror_plus("gpgme_data_seek");
335
416
    plaintext_length = -1;
336
417
    goto decrypt_end;
337
418
  }
339
420
  *plaintext = NULL;
340
421
  while(true){
341
422
    plaintext_capacity = incbuffer(plaintext,
342
 
                                      (size_t)plaintext_length,
343
 
                                      plaintext_capacity);
 
423
                                   (size_t)plaintext_length,
 
424
                                   plaintext_capacity);
344
425
    if(plaintext_capacity == 0){
345
 
        perror("incbuffer");
346
 
        plaintext_length = -1;
347
 
        goto decrypt_end;
 
426
      perror_plus("incbuffer");
 
427
      plaintext_length = -1;
 
428
      goto decrypt_end;
348
429
    }
349
430
    
350
431
    ret = gpgme_data_read(dh_plain, *plaintext + plaintext_length,
355
436
      break;
356
437
    }
357
438
    if(ret < 0){
358
 
      perror("gpgme_data_read");
 
439
      perror_plus("gpgme_data_read");
359
440
      plaintext_length = -1;
360
441
      goto decrypt_end;
361
442
    }
363
444
  }
364
445
  
365
446
  if(debug){
366
 
    fprintf(stderr, "Decrypted password is: ");
 
447
    fprintf_plus(stderr, "Decrypted password is: ");
367
448
    for(ssize_t i = 0; i < plaintext_length; i++){
368
449
      fprintf(stderr, "%02hhX ", (*plaintext)[i]);
369
450
    }
391
472
/* GnuTLS log function callback */
392
473
static void debuggnutls(__attribute__((unused)) int level,
393
474
                        const char* string){
394
 
  fprintf(stderr, "GnuTLS: %s", string);
 
475
  fprintf_plus(stderr, "GnuTLS: %s", string);
395
476
}
396
477
 
397
478
static int init_gnutls_global(const char *pubkeyfilename,
399
480
  int ret;
400
481
  
401
482
  if(debug){
402
 
    fprintf(stderr, "Initializing GnuTLS\n");
 
483
    fprintf_plus(stderr, "Initializing GnuTLS\n");
403
484
  }
404
485
  
405
486
  ret = gnutls_global_init();
406
487
  if(ret != GNUTLS_E_SUCCESS){
407
 
    fprintf(stderr, "GnuTLS global_init: %s\n",
408
 
            safer_gnutls_strerror(ret));
 
488
    fprintf_plus(stderr, "GnuTLS global_init: %s\n",
 
489
                 safer_gnutls_strerror(ret));
409
490
    return -1;
410
491
  }
411
492
  
418
499
  }
419
500
  
420
501
  /* OpenPGP credentials */
421
 
  gnutls_certificate_allocate_credentials(&mc.cred);
 
502
  ret = gnutls_certificate_allocate_credentials(&mc.cred);
422
503
  if(ret != GNUTLS_E_SUCCESS){
423
 
    fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
424
 
                                                    from
425
 
                                                    -Wunreachable-code
426
 
                                                 */
427
 
            safer_gnutls_strerror(ret));
 
504
    fprintf_plus(stderr, "GnuTLS memory error: %s\n",
 
505
                 safer_gnutls_strerror(ret));
428
506
    gnutls_global_deinit();
429
507
    return -1;
430
508
  }
431
509
  
432
510
  if(debug){
433
 
    fprintf(stderr, "Attempting to use OpenPGP public key %s and"
434
 
            " secret key %s as GnuTLS credentials\n", pubkeyfilename,
435
 
            seckeyfilename);
 
511
    fprintf_plus(stderr, "Attempting to use OpenPGP public key %s and"
 
512
                 " secret key %s as GnuTLS credentials\n",
 
513
                 pubkeyfilename,
 
514
                 seckeyfilename);
436
515
  }
437
516
  
438
517
  ret = gnutls_certificate_set_openpgp_key_file
439
518
    (mc.cred, pubkeyfilename, seckeyfilename,
440
519
     GNUTLS_OPENPGP_FMT_BASE64);
441
520
  if(ret != GNUTLS_E_SUCCESS){
442
 
    fprintf(stderr,
443
 
            "Error[%d] while reading the OpenPGP key pair ('%s',"
444
 
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
445
 
    fprintf(stderr, "The GnuTLS error is: %s\n",
446
 
            safer_gnutls_strerror(ret));
 
521
    fprintf_plus(stderr,
 
522
                 "Error[%d] while reading the OpenPGP key pair ('%s',"
 
523
                 " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
524
    fprintf_plus(stderr, "The GnuTLS error is: %s\n",
 
525
                 safer_gnutls_strerror(ret));
447
526
    goto globalfail;
448
527
  }
449
528
  
450
529
  /* GnuTLS server initialization */
451
530
  ret = gnutls_dh_params_init(&mc.dh_params);
452
531
  if(ret != GNUTLS_E_SUCCESS){
453
 
    fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
454
 
            " %s\n", safer_gnutls_strerror(ret));
 
532
    fprintf_plus(stderr, "Error in GnuTLS DH parameter"
 
533
                 " initialization: %s\n",
 
534
                 safer_gnutls_strerror(ret));
455
535
    goto globalfail;
456
536
  }
457
537
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
458
538
  if(ret != GNUTLS_E_SUCCESS){
459
 
    fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
460
 
            safer_gnutls_strerror(ret));
 
539
    fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
 
540
                 safer_gnutls_strerror(ret));
461
541
    goto globalfail;
462
542
  }
463
543
  
476
556
static int init_gnutls_session(gnutls_session_t *session){
477
557
  int ret;
478
558
  /* GnuTLS session creation */
479
 
  ret = gnutls_init(session, GNUTLS_SERVER);
 
559
  do {
 
560
    ret = gnutls_init(session, GNUTLS_SERVER);
 
561
    if(quit_now){
 
562
      return -1;
 
563
    }
 
564
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
480
565
  if(ret != GNUTLS_E_SUCCESS){
481
 
    fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
482
 
            safer_gnutls_strerror(ret));
 
566
    fprintf_plus(stderr,
 
567
                 "Error in GnuTLS session initialization: %s\n",
 
568
                 safer_gnutls_strerror(ret));
483
569
  }
484
570
  
485
571
  {
486
572
    const char *err;
487
 
    ret = gnutls_priority_set_direct(*session, mc.priority, &err);
 
573
    do {
 
574
      ret = gnutls_priority_set_direct(*session, mc.priority, &err);
 
575
      if(quit_now){
 
576
        gnutls_deinit(*session);
 
577
        return -1;
 
578
      }
 
579
    } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
488
580
    if(ret != GNUTLS_E_SUCCESS){
489
 
      fprintf(stderr, "Syntax error at: %s\n", err);
490
 
      fprintf(stderr, "GnuTLS error: %s\n",
491
 
              safer_gnutls_strerror(ret));
 
581
      fprintf_plus(stderr, "Syntax error at: %s\n", err);
 
582
      fprintf_plus(stderr, "GnuTLS error: %s\n",
 
583
                   safer_gnutls_strerror(ret));
492
584
      gnutls_deinit(*session);
493
585
      return -1;
494
586
    }
495
587
  }
496
588
  
497
 
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
498
 
                               mc.cred);
 
589
  do {
 
590
    ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
 
591
                                 mc.cred);
 
592
    if(quit_now){
 
593
      gnutls_deinit(*session);
 
594
      return -1;
 
595
    }
 
596
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
499
597
  if(ret != GNUTLS_E_SUCCESS){
500
 
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
501
 
            safer_gnutls_strerror(ret));
 
598
    fprintf_plus(stderr, "Error setting GnuTLS credentials: %s\n",
 
599
                 safer_gnutls_strerror(ret));
502
600
    gnutls_deinit(*session);
503
601
    return -1;
504
602
  }
505
603
  
506
604
  /* ignore client certificate if any. */
507
 
  gnutls_certificate_server_set_request(*session,
508
 
                                        GNUTLS_CERT_IGNORE);
 
605
  gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
509
606
  
510
607
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
511
608
  
520
617
static int start_mandos_communication(const char *ip, uint16_t port,
521
618
                                      AvahiIfIndex if_index,
522
619
                                      int af){
523
 
  int ret, tcp_sd;
 
620
  int ret, tcp_sd = -1;
524
621
  ssize_t sret;
525
622
  union {
526
623
    struct sockaddr_in in;
527
624
    struct sockaddr_in6 in6;
528
625
  } to;
529
626
  char *buffer = NULL;
530
 
  char *decrypted_buffer;
 
627
  char *decrypted_buffer = NULL;
531
628
  size_t buffer_length = 0;
532
629
  size_t buffer_capacity = 0;
533
 
  ssize_t decrypted_buffer_size;
534
630
  size_t written;
535
 
  int retval = 0;
 
631
  int retval = -1;
536
632
  gnutls_session_t session;
537
633
  int pf;                       /* Protocol family */
538
634
  
 
635
  errno = 0;
 
636
  
 
637
  if(quit_now){
 
638
    errno = EINTR;
 
639
    return -1;
 
640
  }
 
641
  
539
642
  switch(af){
540
643
  case AF_INET6:
541
644
    pf = PF_INET6;
544
647
    pf = PF_INET;
545
648
    break;
546
649
  default:
547
 
    fprintf(stderr, "Bad address family: %d\n", af);
 
650
    fprintf_plus(stderr, "Bad address family: %d\n", af);
 
651
    errno = EINVAL;
548
652
    return -1;
549
653
  }
550
654
  
554
658
  }
555
659
  
556
660
  if(debug){
557
 
    fprintf(stderr, "Setting up a TCP connection to %s, port %" PRIu16
558
 
            "\n", ip, port);
 
661
    fprintf_plus(stderr, "Setting up a TCP connection to %s, port %"
 
662
                 PRIu16 "\n", ip, port);
559
663
  }
560
664
  
561
665
  tcp_sd = socket(pf, SOCK_STREAM, 0);
562
666
  if(tcp_sd < 0){
563
 
    perror("socket");
564
 
    return -1;
 
667
    int e = errno;
 
668
    perror_plus("socket");
 
669
    errno = e;
 
670
    goto mandos_end;
 
671
  }
 
672
  
 
673
  if(quit_now){
 
674
    errno = EINTR;
 
675
    goto mandos_end;
565
676
  }
566
677
  
567
678
  memset(&to, 0, sizeof(to));
568
679
  if(af == AF_INET6){
569
 
    to.in6.sin6_family = (uint16_t)af;
 
680
    to.in6.sin6_family = (sa_family_t)af;
570
681
    ret = inet_pton(af, ip, &to.in6.sin6_addr);
571
682
  } else {                      /* IPv4 */
572
683
    to.in.sin_family = (sa_family_t)af;
573
684
    ret = inet_pton(af, ip, &to.in.sin_addr);
574
685
  }
575
686
  if(ret < 0 ){
576
 
    perror("inet_pton");
577
 
    return -1;
 
687
    int e = errno;
 
688
    perror_plus("inet_pton");
 
689
    errno = e;
 
690
    goto mandos_end;
578
691
  }
579
692
  if(ret == 0){
580
 
    fprintf(stderr, "Bad address: %s\n", ip);
581
 
    return -1;
 
693
    int e = errno;
 
694
    fprintf_plus(stderr, "Bad address: %s\n", ip);
 
695
    errno = e;
 
696
    goto mandos_end;
582
697
  }
583
698
  if(af == AF_INET6){
584
699
    to.in6.sin6_port = htons(port); /* Spurious warnings from
587
702
    
588
703
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
589
704
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
590
 
                              -Wunreachable-code*/
 
705
                                -Wunreachable-code*/
591
706
      if(if_index == AVAHI_IF_UNSPEC){
592
 
        fprintf(stderr, "An IPv6 link-local address is incomplete"
593
 
                " without a network interface\n");
594
 
        return -1;
 
707
        fprintf_plus(stderr, "An IPv6 link-local address is"
 
708
                     " incomplete without a network interface\n");
 
709
        errno = EINVAL;
 
710
        goto mandos_end;
595
711
      }
596
712
      /* Set the network interface number as scope */
597
713
      to.in6.sin6_scope_id = (uint32_t)if_index;
602
718
                                     -Wunreachable-code */
603
719
  }
604
720
  
 
721
  if(quit_now){
 
722
    errno = EINTR;
 
723
    goto mandos_end;
 
724
  }
 
725
  
605
726
  if(debug){
606
727
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
607
728
      char interface[IF_NAMESIZE];
608
729
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
609
 
        perror("if_indextoname");
 
730
        perror_plus("if_indextoname");
610
731
      } else {
611
 
        fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
612
 
                ip, interface, port);
 
732
        fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIu16
 
733
                     "\n", ip, interface, port);
613
734
      }
614
735
    } else {
615
 
      fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
616
 
              port);
 
736
      fprintf_plus(stderr, "Connection to: %s, port %" PRIu16 "\n",
 
737
                   ip, port);
617
738
    }
618
739
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
619
740
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
626
747
                        sizeof(addrstr));
627
748
    }
628
749
    if(pcret == NULL){
629
 
      perror("inet_ntop");
 
750
      perror_plus("inet_ntop");
630
751
    } else {
631
752
      if(strcmp(addrstr, ip) != 0){
632
 
        fprintf(stderr, "Canonical address form: %s\n", addrstr);
 
753
        fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
633
754
      }
634
755
    }
635
756
  }
636
757
  
 
758
  if(quit_now){
 
759
    errno = EINTR;
 
760
    goto mandos_end;
 
761
  }
 
762
  
637
763
  if(af == AF_INET6){
638
764
    ret = connect(tcp_sd, &to.in6, sizeof(to));
639
765
  } else {
640
766
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
641
767
  }
642
768
  if(ret < 0){
643
 
    perror("connect");
644
 
    return -1;
 
769
    if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
 
770
      int e = errno;
 
771
      perror_plus("connect");
 
772
      errno = e;
 
773
    }
 
774
    goto mandos_end;
 
775
  }
 
776
  
 
777
  if(quit_now){
 
778
    errno = EINTR;
 
779
    goto mandos_end;
645
780
  }
646
781
  
647
782
  const char *out = mandos_protocol_version;
649
784
  while(true){
650
785
    size_t out_size = strlen(out);
651
786
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
652
 
                                   out_size - written));
 
787
                                        out_size - written));
653
788
    if(ret == -1){
654
 
      perror("write");
655
 
      retval = -1;
 
789
      int e = errno;
 
790
      perror_plus("write");
 
791
      errno = e;
656
792
      goto mandos_end;
657
793
    }
658
794
    written += (size_t)ret;
666
802
        break;
667
803
      }
668
804
    }
 
805
  
 
806
    if(quit_now){
 
807
      errno = EINTR;
 
808
      goto mandos_end;
 
809
    }
669
810
  }
670
811
  
671
812
  if(debug){
672
 
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
673
 
  }
674
 
  
 
813
    fprintf_plus(stderr, "Establishing TLS session with %s\n", ip);
 
814
  }
 
815
  
 
816
  if(quit_now){
 
817
    errno = EINTR;
 
818
    goto mandos_end;
 
819
  }
 
820
  
 
821
  /* Spurious warning from -Wint-to-pointer-cast */
675
822
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
676
823
  
677
 
  do{
 
824
  if(quit_now){
 
825
    errno = EINTR;
 
826
    goto mandos_end;
 
827
  }
 
828
  
 
829
  do {
678
830
    ret = gnutls_handshake(session);
 
831
    if(quit_now){
 
832
      errno = EINTR;
 
833
      goto mandos_end;
 
834
    }
679
835
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
680
836
  
681
837
  if(ret != GNUTLS_E_SUCCESS){
682
838
    if(debug){
683
 
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
 
839
      fprintf_plus(stderr, "*** GnuTLS Handshake failed ***\n");
684
840
      gnutls_perror(ret);
685
841
    }
686
 
    retval = -1;
 
842
    errno = EPROTO;
687
843
    goto mandos_end;
688
844
  }
689
845
  
690
846
  /* Read OpenPGP packet that contains the wanted password */
691
847
  
692
848
  if(debug){
693
 
    fprintf(stderr, "Retrieving OpenPGP encrypted password from %s\n",
694
 
            ip);
 
849
    fprintf_plus(stderr, "Retrieving OpenPGP encrypted password from"
 
850
                 " %s\n", ip);
695
851
  }
696
852
  
697
853
  while(true){
 
854
    
 
855
    if(quit_now){
 
856
      errno = EINTR;
 
857
      goto mandos_end;
 
858
    }
 
859
    
698
860
    buffer_capacity = incbuffer(&buffer, buffer_length,
699
 
                                   buffer_capacity);
 
861
                                buffer_capacity);
700
862
    if(buffer_capacity == 0){
701
 
      perror("incbuffer");
702
 
      retval = -1;
 
863
      int e = errno;
 
864
      perror_plus("incbuffer");
 
865
      errno = e;
 
866
      goto mandos_end;
 
867
    }
 
868
    
 
869
    if(quit_now){
 
870
      errno = EINTR;
703
871
      goto mandos_end;
704
872
    }
705
873
    
714
882
      case GNUTLS_E_AGAIN:
715
883
        break;
716
884
      case GNUTLS_E_REHANDSHAKE:
717
 
        do{
 
885
        do {
718
886
          ret = gnutls_handshake(session);
 
887
          
 
888
          if(quit_now){
 
889
            errno = EINTR;
 
890
            goto mandos_end;
 
891
          }
719
892
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
720
893
        if(ret < 0){
721
 
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
 
894
          fprintf_plus(stderr, "*** GnuTLS Re-handshake failed "
 
895
                       "***\n");
722
896
          gnutls_perror(ret);
723
 
          retval = -1;
 
897
          errno = EPROTO;
724
898
          goto mandos_end;
725
899
        }
726
900
        break;
727
901
      default:
728
 
        fprintf(stderr, "Unknown error while reading data from"
729
 
                " encrypted session with Mandos server\n");
730
 
        retval = -1;
 
902
        fprintf_plus(stderr, "Unknown error while reading data from"
 
903
                     " encrypted session with Mandos server\n");
731
904
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
905
        errno = EIO;
732
906
        goto mandos_end;
733
907
      }
734
908
    } else {
737
911
  }
738
912
  
739
913
  if(debug){
740
 
    fprintf(stderr, "Closing TLS session\n");
741
 
  }
742
 
  
743
 
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
914
    fprintf_plus(stderr, "Closing TLS session\n");
 
915
  }
 
916
  
 
917
  if(quit_now){
 
918
    errno = EINTR;
 
919
    goto mandos_end;
 
920
  }
 
921
  
 
922
  do {
 
923
    ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
924
    if(quit_now){
 
925
      errno = EINTR;
 
926
      goto mandos_end;
 
927
    }
 
928
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
744
929
  
745
930
  if(buffer_length > 0){
746
 
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
747
 
                                               buffer_length,
 
931
    ssize_t decrypted_buffer_size;
 
932
    decrypted_buffer_size = pgp_packet_decrypt(buffer, buffer_length,
748
933
                                               &decrypted_buffer);
749
934
    if(decrypted_buffer_size >= 0){
 
935
      
750
936
      written = 0;
751
937
      while(written < (size_t) decrypted_buffer_size){
 
938
        if(quit_now){
 
939
          errno = EINTR;
 
940
          goto mandos_end;
 
941
        }
 
942
        
752
943
        ret = (int)fwrite(decrypted_buffer + written, 1,
753
944
                          (size_t)decrypted_buffer_size - written,
754
945
                          stdout);
755
946
        if(ret == 0 and ferror(stdout)){
 
947
          int e = errno;
756
948
          if(debug){
757
 
            fprintf(stderr, "Error writing encrypted data: %s\n",
758
 
                    strerror(errno));
 
949
            fprintf_plus(stderr, "Error writing encrypted data: %s\n",
 
950
                         strerror(errno));
759
951
          }
760
 
          retval = -1;
761
 
          break;
 
952
          errno = e;
 
953
          goto mandos_end;
762
954
        }
763
955
        written += (size_t)ret;
764
956
      }
765
 
      free(decrypted_buffer);
766
 
    } else {
767
 
      retval = -1;
 
957
      retval = 0;
768
958
    }
769
 
  } else {
770
 
    retval = -1;
771
959
  }
772
960
  
773
961
  /* Shutdown procedure */
774
962
  
775
963
 mandos_end:
776
 
  free(buffer);
777
 
  ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
778
 
  if(ret == -1){
779
 
    perror("close");
 
964
  {
 
965
    int e = errno;
 
966
    free(decrypted_buffer);
 
967
    free(buffer);
 
968
    if(tcp_sd >= 0){
 
969
      ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
970
    }
 
971
    if(ret == -1){
 
972
      if(e == 0){
 
973
        e = errno;
 
974
      }
 
975
      perror_plus("close");
 
976
    }
 
977
    gnutls_deinit(session);
 
978
    errno = e;
 
979
    if(quit_now){
 
980
      errno = EINTR;
 
981
      retval = -1;
 
982
    }
780
983
  }
781
 
  gnutls_deinit(session);
782
984
  return retval;
783
985
}
784
986
 
801
1003
  /* Called whenever a service has been resolved successfully or
802
1004
     timed out */
803
1005
  
 
1006
  if(quit_now){
 
1007
    return;
 
1008
  }
 
1009
  
804
1010
  switch(event){
805
1011
  default:
806
1012
  case AVAHI_RESOLVER_FAILURE:
807
 
    fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
808
 
            " of type '%s' in domain '%s': %s\n", name, type, domain,
809
 
            avahi_strerror(avahi_server_errno(mc.server)));
 
1013
    fprintf_plus(stderr, "(Avahi Resolver) Failed to resolve service "
 
1014
                 "'%s' of type '%s' in domain '%s': %s\n", name, type,
 
1015
                 domain,
 
1016
                 avahi_strerror(avahi_server_errno(mc.server)));
810
1017
    break;
811
1018
    
812
1019
  case AVAHI_RESOLVER_FOUND:
814
1021
      char ip[AVAHI_ADDRESS_STR_MAX];
815
1022
      avahi_address_snprint(ip, sizeof(ip), address);
816
1023
      if(debug){
817
 
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
818
 
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
819
 
                ip, (intmax_t)interface, port);
 
1024
        fprintf_plus(stderr, "Mandos server \"%s\" found on %s (%s, %"
 
1025
                     PRIdMAX ") on port %" PRIu16 "\n", name,
 
1026
                     host_name, ip, (intmax_t)interface, port);
820
1027
      }
821
1028
      int ret = start_mandos_communication(ip, port, interface,
822
1029
                                           avahi_proto_to_af(proto));
823
1030
      if(ret == 0){
824
1031
        avahi_simple_poll_quit(mc.simple_poll);
 
1032
      } else {
 
1033
        if(not add_server(ip, port, interface,
 
1034
                          avahi_proto_to_af(proto))){
 
1035
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
 
1036
                       " list\n", name);
 
1037
        }
825
1038
      }
826
1039
    }
827
1040
  }
843
1056
  /* Called whenever a new services becomes available on the LAN or
844
1057
     is removed from the LAN */
845
1058
  
 
1059
  if(quit_now){
 
1060
    return;
 
1061
  }
 
1062
  
846
1063
  switch(event){
847
1064
  default:
848
1065
  case AVAHI_BROWSER_FAILURE:
849
1066
    
850
 
    fprintf(stderr, "(Avahi browser) %s\n",
851
 
            avahi_strerror(avahi_server_errno(mc.server)));
 
1067
    fprintf_plus(stderr, "(Avahi browser) %s\n",
 
1068
                 avahi_strerror(avahi_server_errno(mc.server)));
852
1069
    avahi_simple_poll_quit(mc.simple_poll);
853
1070
    return;
854
1071
    
861
1078
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
862
1079
                                    name, type, domain, protocol, 0,
863
1080
                                    resolve_callback, NULL) == NULL)
864
 
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
865
 
              name, avahi_strerror(avahi_server_errno(mc.server)));
 
1081
      fprintf_plus(stderr, "Avahi: Failed to resolve service '%s':"
 
1082
                   " %s\n", name,
 
1083
                   avahi_strerror(avahi_server_errno(mc.server)));
866
1084
    break;
867
1085
    
868
1086
  case AVAHI_BROWSER_REMOVE:
871
1089
  case AVAHI_BROWSER_ALL_FOR_NOW:
872
1090
  case AVAHI_BROWSER_CACHE_EXHAUSTED:
873
1091
    if(debug){
874
 
      fprintf(stderr, "No Mandos server found, still searching...\n");
 
1092
      fprintf_plus(stderr, "No Mandos server found, still"
 
1093
                   " searching...\n");
875
1094
    }
876
1095
    break;
877
1096
  }
878
1097
}
879
1098
 
880
 
sig_atomic_t quit_now = 0;
881
 
 
882
 
/* stop main loop after sigterm has been called */
883
 
static void handle_sigterm(__attribute__((unused)) int sig){
 
1099
/* Signal handler that stops main loop after SIGTERM */
 
1100
static void handle_sigterm(int sig){
884
1101
  if(quit_now){
885
1102
    return;
886
1103
  }
887
1104
  quit_now = 1;
 
1105
  signal_received = sig;
888
1106
  int old_errno = errno;
 
1107
  /* set main loop to exit */
889
1108
  if(mc.simple_poll != NULL){
890
1109
    avahi_simple_poll_quit(mc.simple_poll);
891
1110
  }
892
1111
  errno = old_errno;
893
1112
}
894
1113
 
 
1114
bool get_flags(const char *ifname, struct ifreq *ifr){
 
1115
  int ret;
 
1116
  
 
1117
  int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1118
  if(s < 0){
 
1119
    perror_plus("socket");
 
1120
    return false;
 
1121
  }
 
1122
  strcpy(ifr->ifr_name, ifname);
 
1123
  ret = ioctl(s, SIOCGIFFLAGS, ifr);
 
1124
  if(ret == -1){
 
1125
    if(debug){
 
1126
      perror_plus("ioctl SIOCGIFFLAGS");
 
1127
    }
 
1128
    return false;
 
1129
  }
 
1130
  return true;
 
1131
}
 
1132
 
 
1133
bool good_flags(const char *ifname, const struct ifreq *ifr){
 
1134
  
 
1135
  /* Reject the loopback device */
 
1136
  if(ifr->ifr_flags & IFF_LOOPBACK){
 
1137
    if(debug){
 
1138
      fprintf_plus(stderr, "Rejecting loopback interface \"%s\"\n",
 
1139
                   ifname);
 
1140
    }
 
1141
    return false;
 
1142
  }
 
1143
  /* Accept point-to-point devices only if connect_to is specified */
 
1144
  if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
 
1145
    if(debug){
 
1146
      fprintf_plus(stderr, "Accepting point-to-point interface"
 
1147
                   " \"%s\"\n", ifname);
 
1148
    }
 
1149
    return true;
 
1150
  }
 
1151
  /* Otherwise, reject non-broadcast-capable devices */
 
1152
  if(not (ifr->ifr_flags & IFF_BROADCAST)){
 
1153
    if(debug){
 
1154
      fprintf_plus(stderr, "Rejecting non-broadcast interface"
 
1155
                   " \"%s\"\n", ifname);
 
1156
    }
 
1157
    return false;
 
1158
  }
 
1159
  /* Reject non-ARP interfaces (including dummy interfaces) */
 
1160
  if(ifr->ifr_flags & IFF_NOARP){
 
1161
    if(debug){
 
1162
      fprintf_plus(stderr, "Rejecting non-ARP interface \"%s\"\n",
 
1163
                   ifname);
 
1164
    }
 
1165
    return false;
 
1166
  }
 
1167
  
 
1168
  /* Accept this device */
 
1169
  if(debug){
 
1170
    fprintf_plus(stderr, "Interface \"%s\" is good\n", ifname);
 
1171
  }
 
1172
  return true;
 
1173
}
 
1174
 
 
1175
/* 
 
1176
 * This function determines if a directory entry in /sys/class/net
 
1177
 * corresponds to an acceptable network device.
 
1178
 * (This function is passed to scandir(3) as a filter function.)
 
1179
 */
 
1180
int good_interface(const struct dirent *if_entry){
 
1181
  if(if_entry->d_name[0] == '.'){
 
1182
    return 0;
 
1183
  }
 
1184
  
 
1185
  struct ifreq ifr;
 
1186
  if(not get_flags(if_entry->d_name, &ifr)){
 
1187
    if(debug){
 
1188
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1189
                   "\"%s\"\n", if_entry->d_name);
 
1190
    }
 
1191
    return 0;
 
1192
  }
 
1193
  
 
1194
  if(not good_flags(if_entry->d_name, &ifr)){
 
1195
    return 0;
 
1196
  }
 
1197
  return 1;
 
1198
}
 
1199
 
 
1200
/* 
 
1201
 * This function determines if a directory entry in /sys/class/net
 
1202
 * corresponds to an acceptable network device which is up.
 
1203
 * (This function is passed to scandir(3) as a filter function.)
 
1204
 */
 
1205
int up_interface(const struct dirent *if_entry){
 
1206
  if(if_entry->d_name[0] == '.'){
 
1207
    return 0;
 
1208
  }
 
1209
  
 
1210
  struct ifreq ifr;
 
1211
  if(not get_flags(if_entry->d_name, &ifr)){
 
1212
    if(debug){
 
1213
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1214
                   "\"%s\"\n", if_entry->d_name);
 
1215
    }
 
1216
    return 0;
 
1217
  }
 
1218
  
 
1219
  /* Reject down interfaces */
 
1220
  if(not (ifr.ifr_flags & IFF_UP)){
 
1221
    if(debug){
 
1222
      fprintf_plus(stderr, "Rejecting down interface \"%s\"\n",
 
1223
                   if_entry->d_name);
 
1224
    }
 
1225
    return 0;
 
1226
  }
 
1227
  
 
1228
  /* Reject non-running interfaces */
 
1229
  if(not (ifr.ifr_flags & IFF_RUNNING)){
 
1230
    if(debug){
 
1231
      fprintf_plus(stderr, "Rejecting non-running interface \"%s\"\n",
 
1232
                   if_entry->d_name);
 
1233
    }
 
1234
    return 0;
 
1235
  }
 
1236
  
 
1237
  if(not good_flags(if_entry->d_name, &ifr)){
 
1238
    return 0;
 
1239
  }
 
1240
  return 1;
 
1241
}
 
1242
 
 
1243
int notdotentries(const struct dirent *direntry){
 
1244
  /* Skip "." and ".." */
 
1245
  if(direntry->d_name[0] == '.'
 
1246
     and (direntry->d_name[1] == '\0'
 
1247
          or (direntry->d_name[1] == '.'
 
1248
              and direntry->d_name[2] == '\0'))){
 
1249
    return 0;
 
1250
  }
 
1251
  return 1;
 
1252
}
 
1253
 
 
1254
/* Is this directory entry a runnable program? */
 
1255
int runnable_hook(const struct dirent *direntry){
 
1256
  int ret;
 
1257
  size_t sret;
 
1258
  struct stat st;
 
1259
  
 
1260
  if((direntry->d_name)[0] == '\0'){
 
1261
    /* Empty name? */
 
1262
    return 0;
 
1263
  }
 
1264
  
 
1265
  sret = strspn(direntry->d_name, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
 
1266
                "abcdefghijklmnopqrstuvwxyz"
 
1267
                "0123456789"
 
1268
                "_-");
 
1269
  if((direntry->d_name)[sret] != '\0'){
 
1270
    /* Contains non-allowed characters */
 
1271
    if(debug){
 
1272
      fprintf_plus(stderr, "Ignoring hook \"%s\" with bad name\n",
 
1273
                   direntry->d_name);
 
1274
    }
 
1275
    return 0;
 
1276
  }
 
1277
  
 
1278
  char *fullname = NULL;
 
1279
  ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
1280
  if(ret < 0){
 
1281
    perror_plus("asprintf");
 
1282
    return 0;
 
1283
  }
 
1284
  
 
1285
  ret = stat(fullname, &st);
 
1286
  if(ret == -1){
 
1287
    if(debug){
 
1288
      perror_plus("Could not stat hook");
 
1289
    }
 
1290
    return 0;
 
1291
  }
 
1292
  if(not (S_ISREG(st.st_mode))){
 
1293
    /* Not a regular file */
 
1294
    if(debug){
 
1295
      fprintf_plus(stderr, "Ignoring hook \"%s\" - not a file\n",
 
1296
                   direntry->d_name);
 
1297
    }
 
1298
    return 0;
 
1299
  }
 
1300
  if(not (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))){
 
1301
    /* Not executable */
 
1302
    if(debug){
 
1303
      fprintf_plus(stderr, "Ignoring hook \"%s\" - not executable\n",
 
1304
                   direntry->d_name);
 
1305
    }
 
1306
    return 0;
 
1307
  }
 
1308
  if(debug){
 
1309
    fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
 
1310
                 direntry->d_name);
 
1311
  }
 
1312
  return 1;
 
1313
}
 
1314
 
 
1315
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
 
1316
  int ret;
 
1317
  struct timespec now;
 
1318
  struct timespec waited_time;
 
1319
  intmax_t block_time;
 
1320
  
 
1321
  while(true){
 
1322
    if(mc.current_server == NULL){
 
1323
      if (debug){
 
1324
        fprintf_plus(stderr, "Wait until first server is found."
 
1325
                     " No timeout!\n");
 
1326
      }
 
1327
      ret = avahi_simple_poll_iterate(s, -1);
 
1328
    } else {
 
1329
      if (debug){
 
1330
        fprintf_plus(stderr, "Check current_server if we should run"
 
1331
                     " it, or wait\n");
 
1332
      }
 
1333
      /* the current time */
 
1334
      ret = clock_gettime(CLOCK_MONOTONIC, &now);
 
1335
      if(ret == -1){
 
1336
        perror_plus("clock_gettime");
 
1337
        return -1;
 
1338
      }
 
1339
      /* Calculating in ms how long time between now and server
 
1340
         who we visted longest time ago. Now - last seen.  */
 
1341
      waited_time.tv_sec = (now.tv_sec
 
1342
                            - mc.current_server->last_seen.tv_sec);
 
1343
      waited_time.tv_nsec = (now.tv_nsec
 
1344
                             - mc.current_server->last_seen.tv_nsec);
 
1345
      /* total time is 10s/10,000ms.
 
1346
         Converting to s from ms by dividing by 1,000,
 
1347
         and ns to ms by dividing by 1,000,000. */
 
1348
      block_time = ((retry_interval
 
1349
                     - ((intmax_t)waited_time.tv_sec * 1000))
 
1350
                    - ((intmax_t)waited_time.tv_nsec / 1000000));
 
1351
      
 
1352
      if (debug){
 
1353
        fprintf_plus(stderr, "Blocking for %" PRIdMAX " ms\n",
 
1354
                     block_time);
 
1355
      }
 
1356
      
 
1357
      if(block_time <= 0){
 
1358
        ret = start_mandos_communication(mc.current_server->ip,
 
1359
                                         mc.current_server->port,
 
1360
                                         mc.current_server->if_index,
 
1361
                                         mc.current_server->af);
 
1362
        if(ret == 0){
 
1363
          avahi_simple_poll_quit(mc.simple_poll);
 
1364
          return 0;
 
1365
        }
 
1366
        ret = clock_gettime(CLOCK_MONOTONIC,
 
1367
                            &mc.current_server->last_seen);
 
1368
        if(ret == -1){
 
1369
          perror_plus("clock_gettime");
 
1370
          return -1;
 
1371
        }
 
1372
        mc.current_server = mc.current_server->next;
 
1373
        block_time = 0;         /* Call avahi to find new Mandos
 
1374
                                   servers, but don't block */
 
1375
      }
 
1376
      
 
1377
      ret = avahi_simple_poll_iterate(s, (int)block_time);
 
1378
    }
 
1379
    if(ret != 0){
 
1380
      if (ret > 0 or errno != EINTR){
 
1381
        return (ret != 1) ? ret : 0;
 
1382
      }
 
1383
    }
 
1384
  }
 
1385
}
 
1386
 
 
1387
bool run_network_hooks(const char *mode, const char *interface,
 
1388
                       const float delay){
 
1389
  struct dirent **direntries;
 
1390
  struct dirent *direntry;
 
1391
  int ret;
 
1392
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1393
                         alphasort);
 
1394
  if(numhooks == -1){
 
1395
    perror_plus("scandir");
 
1396
  } else {
 
1397
    int devnull = open("/dev/null", O_RDONLY);
 
1398
    for(int i = 0; i < numhooks; i++){
 
1399
      direntry = direntries[i];
 
1400
      char *fullname = NULL;
 
1401
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
1402
      if(ret < 0){
 
1403
        perror_plus("asprintf");
 
1404
        continue;
 
1405
      }
 
1406
      if(debug){
 
1407
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
1408
                     direntry->d_name);
 
1409
      }
 
1410
      pid_t hook_pid = fork();
 
1411
      if(hook_pid == 0){
 
1412
        /* Child */
 
1413
        /* Raise privileges */
 
1414
        errno = 0;
 
1415
        ret = seteuid(0);
 
1416
        if(ret == -1){
 
1417
          perror_plus("seteuid");
 
1418
        }
 
1419
        /* Raise privileges even more */
 
1420
        errno = 0;
 
1421
        ret = setuid(0);
 
1422
        if(ret == -1){
 
1423
          perror_plus("setuid");
 
1424
        }
 
1425
        /* Set group */
 
1426
        errno = 0;
 
1427
        ret = setgid(0);
 
1428
        if(ret == -1){
 
1429
          perror_plus("setgid");
 
1430
        }
 
1431
        /* Reset supplementary groups */
 
1432
        errno = 0;
 
1433
        ret = setgroups(0, NULL);
 
1434
        if(ret == -1){
 
1435
          perror_plus("setgroups");
 
1436
        }
 
1437
        dup2(devnull, STDIN_FILENO);
 
1438
        close(devnull);
 
1439
        dup2(STDERR_FILENO, STDOUT_FILENO);
 
1440
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
1441
        if(ret == -1){
 
1442
          perror_plus("setenv");
 
1443
          _exit(EX_OSERR);
 
1444
        }
 
1445
        ret = setenv("DEVICE", interface, 1);
 
1446
        if(ret == -1){
 
1447
          perror_plus("setenv");
 
1448
          _exit(EX_OSERR);
 
1449
        }
 
1450
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
 
1451
        if(ret == -1){
 
1452
          perror_plus("setenv");
 
1453
          _exit(EX_OSERR);
 
1454
        }
 
1455
        ret = setenv("MODE", mode, 1);
 
1456
        if(ret == -1){
 
1457
          perror_plus("setenv");
 
1458
          _exit(EX_OSERR);
 
1459
        }
 
1460
        char *delaystring;
 
1461
        ret = asprintf(&delaystring, "%f", delay);
 
1462
        if(ret == -1){
 
1463
          perror_plus("asprintf");
 
1464
          _exit(EX_OSERR);
 
1465
        }
 
1466
        ret = setenv("DELAY", delaystring, 1);
 
1467
        if(ret == -1){
 
1468
          free(delaystring);
 
1469
          perror_plus("setenv");
 
1470
          _exit(EX_OSERR);
 
1471
        }
 
1472
        free(delaystring);
 
1473
        ret = execl(fullname, direntry->d_name, mode, NULL);
 
1474
        perror_plus("execl");
 
1475
      } else {
 
1476
        int status;
 
1477
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
1478
          perror_plus("waitpid");
 
1479
          free(fullname);
 
1480
          continue;
 
1481
        }
 
1482
        if(WIFEXITED(status)){
 
1483
          if(WEXITSTATUS(status) != 0){
 
1484
            fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
 
1485
                         " with status %d\n", direntry->d_name,
 
1486
                         WEXITSTATUS(status));
 
1487
            free(fullname);
 
1488
            continue;
 
1489
          }
 
1490
        } else if(WIFSIGNALED(status)){
 
1491
          fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
1492
                       " signal %d\n", direntry->d_name,
 
1493
                       WTERMSIG(status));
 
1494
          free(fullname);
 
1495
          continue;
 
1496
        } else {
 
1497
          fprintf_plus(stderr, "Warning: network hook \"%s\""
 
1498
                       " crashed\n", direntry->d_name);
 
1499
          free(fullname);
 
1500
          continue;
 
1501
        }
 
1502
      }
 
1503
      free(fullname);
 
1504
      if(debug){
 
1505
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
1506
                     direntry->d_name);
 
1507
      }
 
1508
    }
 
1509
    close(devnull);
 
1510
  }
 
1511
  return true;
 
1512
}
 
1513
 
895
1514
int main(int argc, char *argv[]){
896
1515
  AvahiSServiceBrowser *sb = NULL;
897
1516
  int error;
899
1518
  intmax_t tmpmax;
900
1519
  char *tmp;
901
1520
  int exitcode = EXIT_SUCCESS;
902
 
  const char *interface = "eth0";
 
1521
  const char *interface = "";
903
1522
  struct ifreq network;
904
 
  int sd;
 
1523
  int sd = -1;
 
1524
  bool take_down_interface = false;
905
1525
  uid_t uid;
906
1526
  gid_t gid;
907
 
  char *connect_to = NULL;
908
1527
  char tempdir[] = "/tmp/mandosXXXXXX";
909
1528
  bool tempdir_created = false;
910
1529
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
914
1533
  bool gnutls_initialized = false;
915
1534
  bool gpgme_initialized = false;
916
1535
  float delay = 2.5f;
 
1536
  double retry_interval = 10; /* 10s between trying a server and
 
1537
                                 retrying the same server again */
917
1538
  
918
 
  struct sigaction old_sigterm_action;
 
1539
  struct sigaction old_sigterm_action = { .sa_handler = SIG_DFL };
919
1540
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
920
1541
  
 
1542
  uid = getuid();
 
1543
  gid = getgid();
 
1544
  
 
1545
  /* Lower any group privileges we might have, just to be safe */
 
1546
  errno = 0;
 
1547
  ret = setgid(gid);
 
1548
  if(ret == -1){
 
1549
    perror_plus("setgid");
 
1550
  }
 
1551
  
 
1552
  /* Lower user privileges (temporarily) */
 
1553
  errno = 0;
 
1554
  ret = seteuid(uid);
 
1555
  if(ret == -1){
 
1556
    perror_plus("seteuid");
 
1557
  }
 
1558
  
 
1559
  if(quit_now){
 
1560
    goto end;
 
1561
  }
 
1562
  
921
1563
  {
922
1564
    struct argp_option options[] = {
923
1565
      { .name = "debug", .key = 128,
952
1594
        .arg = "SECONDS",
953
1595
        .doc = "Maximum delay to wait for interface startup",
954
1596
        .group = 2 },
 
1597
      { .name = "retry", .key = 132,
 
1598
        .arg = "SECONDS",
 
1599
        .doc = "Retry interval used when denied by the mandos server",
 
1600
        .group = 2 },
 
1601
      { .name = "network-hook-dir", .key = 133,
 
1602
        .arg = "DIR",
 
1603
        .doc = "Directory where network hooks are located",
 
1604
        .group = 2 },
 
1605
      /*
 
1606
       * These reproduce what we would get without ARGP_NO_HELP
 
1607
       */
 
1608
      { .name = "help", .key = '?',
 
1609
        .doc = "Give this help list", .group = -1 },
 
1610
      { .name = "usage", .key = -3,
 
1611
        .doc = "Give a short usage message", .group = -1 },
 
1612
      { .name = "version", .key = 'V',
 
1613
        .doc = "Print program version", .group = -1 },
955
1614
      { .name = NULL }
956
1615
    };
957
1616
    
958
1617
    error_t parse_opt(int key, char *arg,
959
1618
                      struct argp_state *state){
 
1619
      errno = 0;
960
1620
      switch(key){
961
1621
      case 128:                 /* --debug */
962
1622
        debug = true;
978
1638
        tmpmax = strtoimax(arg, &tmp, 10);
979
1639
        if(errno != 0 or tmp == arg or *tmp != '\0'
980
1640
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
981
 
          fprintf(stderr, "Bad number of DH bits\n");
982
 
          exit(EXIT_FAILURE);
 
1641
          argp_error(state, "Bad number of DH bits");
983
1642
        }
984
1643
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
985
1644
        break;
990
1649
        errno = 0;
991
1650
        delay = strtof(arg, &tmp);
992
1651
        if(errno != 0 or tmp == arg or *tmp != '\0'){
993
 
          fprintf(stderr, "Bad delay\n");
994
 
          exit(EXIT_FAILURE);
995
 
        }
996
 
        break;
997
 
      case ARGP_KEY_ARG:
998
 
        argp_usage(state);
999
 
      case ARGP_KEY_END:
 
1652
          argp_error(state, "Bad delay");
 
1653
        }
 
1654
      case 132:                 /* --retry */
 
1655
        errno = 0;
 
1656
        retry_interval = strtod(arg, &tmp);
 
1657
        if(errno != 0 or tmp == arg or *tmp != '\0'
 
1658
           or (retry_interval * 1000) > INT_MAX
 
1659
           or retry_interval < 0){
 
1660
          argp_error(state, "Bad retry interval");
 
1661
        }
 
1662
        break;
 
1663
      case 133:                 /* --network-hook-dir */
 
1664
        hookdir = arg;
 
1665
        break;
 
1666
        /*
 
1667
         * These reproduce what we would get without ARGP_NO_HELP
 
1668
         */
 
1669
      case '?':                 /* --help */
 
1670
        argp_state_help(state, state->out_stream,
 
1671
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
 
1672
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
 
1673
      case -3:                  /* --usage */
 
1674
        argp_state_help(state, state->out_stream,
 
1675
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
 
1676
      case 'V':                 /* --version */
 
1677
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
 
1678
        exit(argp_err_exit_status);
1000
1679
        break;
1001
1680
      default:
1002
1681
        return ARGP_ERR_UNKNOWN;
1003
1682
      }
1004
 
      return 0;
 
1683
      return errno;
1005
1684
    }
1006
1685
    
1007
1686
    struct argp argp = { .options = options, .parser = parse_opt,
1008
1687
                         .args_doc = "",
1009
1688
                         .doc = "Mandos client -- Get and decrypt"
1010
1689
                         " passwords from a Mandos server" };
1011
 
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
1012
 
    if(ret == ARGP_ERR_UNKNOWN){
1013
 
      fprintf(stderr, "Unknown error while parsing arguments\n");
1014
 
      exitcode = EXIT_FAILURE;
1015
 
      goto end;
1016
 
    }
 
1690
    ret = argp_parse(&argp, argc, argv,
 
1691
                     ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
 
1692
    switch(ret){
 
1693
    case 0:
 
1694
      break;
 
1695
    case ENOMEM:
 
1696
    default:
 
1697
      errno = ret;
 
1698
      perror_plus("argp_parse");
 
1699
      exitcode = EX_OSERR;
 
1700
      goto end;
 
1701
    case EINVAL:
 
1702
      exitcode = EX_USAGE;
 
1703
      goto end;
 
1704
    }
 
1705
  }
 
1706
    
 
1707
  {
 
1708
    /* Work around Debian bug #633582:
 
1709
       <http://bugs.debian.org/633582> */
 
1710
    
 
1711
    /* Re-raise priviliges */
 
1712
    errno = 0;
 
1713
    ret = seteuid(0);
 
1714
    if(ret == -1){
 
1715
      perror_plus("seteuid");
 
1716
    } else {
 
1717
      struct stat st;
 
1718
      
 
1719
      if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
 
1720
        int seckey_fd = open(seckey, O_RDONLY);
 
1721
        if(seckey_fd == -1){
 
1722
          perror_plus("open");
 
1723
        } else {
 
1724
          ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
 
1725
          if(ret == -1){
 
1726
            perror_plus("fstat");
 
1727
          } else {
 
1728
            if(S_ISREG(st.st_mode)
 
1729
               and st.st_uid == 0 and st.st_gid == 0){
 
1730
              ret = fchown(seckey_fd, uid, gid);
 
1731
              if(ret == -1){
 
1732
                perror_plus("fchown");
 
1733
              }
 
1734
            }
 
1735
          }
 
1736
          TEMP_FAILURE_RETRY(close(seckey_fd));
 
1737
        }
 
1738
      }
 
1739
    
 
1740
      if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
 
1741
        int pubkey_fd = open(pubkey, O_RDONLY);
 
1742
        if(pubkey_fd == -1){
 
1743
          perror_plus("open");
 
1744
        } else {
 
1745
          ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
 
1746
          if(ret == -1){
 
1747
            perror_plus("fstat");
 
1748
          } else {
 
1749
            if(S_ISREG(st.st_mode)
 
1750
               and st.st_uid == 0 and st.st_gid == 0){
 
1751
              ret = fchown(pubkey_fd, uid, gid);
 
1752
              if(ret == -1){
 
1753
                perror_plus("fchown");
 
1754
              }
 
1755
            }
 
1756
          }
 
1757
          TEMP_FAILURE_RETRY(close(pubkey_fd));
 
1758
        }
 
1759
      }
 
1760
    
 
1761
      /* Lower privileges */
 
1762
      errno = 0;
 
1763
      ret = seteuid(uid);
 
1764
      if(ret == -1){
 
1765
        perror_plus("seteuid");
 
1766
      }
 
1767
    }
 
1768
  }
 
1769
  
 
1770
  /* Run network hooks */
 
1771
  if(not run_network_hooks("start", interface, delay)){
 
1772
    goto end;
1017
1773
  }
1018
1774
  
1019
1775
  if(not debug){
1020
1776
    avahi_set_log_function(empty_log);
1021
1777
  }
1022
1778
  
 
1779
  if(interface[0] == '\0'){
 
1780
    struct dirent **direntries;
 
1781
    /* First look for interfaces that are up */
 
1782
    ret = scandir(sys_class_net, &direntries, up_interface,
 
1783
                  alphasort);
 
1784
    if(ret == 0){
 
1785
      /* No up interfaces, look for any good interfaces */
 
1786
      free(direntries);
 
1787
      ret = scandir(sys_class_net, &direntries, good_interface,
 
1788
                    alphasort);
 
1789
    }
 
1790
    if(ret >= 1){
 
1791
      /* Pick the first interface returned */
 
1792
      interface = strdup(direntries[0]->d_name);
 
1793
      if(debug){
 
1794
        fprintf_plus(stderr, "Using interface \"%s\"\n", interface);
 
1795
      }
 
1796
      if(interface == NULL){
 
1797
        perror_plus("malloc");
 
1798
        free(direntries);
 
1799
        exitcode = EXIT_FAILURE;
 
1800
        goto end;
 
1801
      }
 
1802
      free(direntries);
 
1803
    } else {
 
1804
      free(direntries);
 
1805
      fprintf_plus(stderr, "Could not find a network interface\n");
 
1806
      exitcode = EXIT_FAILURE;
 
1807
      goto end;
 
1808
    }
 
1809
  }
 
1810
  
1023
1811
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1024
1812
     from the signal handler */
1025
1813
  /* Initialize the pseudo-RNG for Avahi */
1026
1814
  srand((unsigned int) time(NULL));
1027
1815
  mc.simple_poll = avahi_simple_poll_new();
1028
1816
  if(mc.simple_poll == NULL){
1029
 
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1030
 
    exitcode = EXIT_FAILURE;
 
1817
    fprintf_plus(stderr,
 
1818
                 "Avahi: Failed to create simple poll object.\n");
 
1819
    exitcode = EX_UNAVAILABLE;
1031
1820
    goto end;
1032
1821
  }
1033
1822
  
1034
1823
  sigemptyset(&sigterm_action.sa_mask);
1035
1824
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1036
1825
  if(ret == -1){
1037
 
    perror("sigaddset");
1038
 
    exitcode = EXIT_FAILURE;
 
1826
    perror_plus("sigaddset");
 
1827
    exitcode = EX_OSERR;
1039
1828
    goto end;
1040
1829
  }
1041
1830
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1042
1831
  if(ret == -1){
1043
 
    perror("sigaddset");
1044
 
    exitcode = EXIT_FAILURE;
 
1832
    perror_plus("sigaddset");
 
1833
    exitcode = EX_OSERR;
1045
1834
    goto end;
1046
1835
  }
1047
1836
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1048
1837
  if(ret == -1){
1049
 
    perror("sigaddset");
1050
 
    exitcode = EXIT_FAILURE;
1051
 
    goto end;
1052
 
  }
1053
 
  ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
1054
 
  if(ret == -1){
1055
 
    perror("sigaction");
1056
 
    exitcode = EXIT_FAILURE;
1057
 
    goto end;
1058
 
  }  
 
1838
    perror_plus("sigaddset");
 
1839
    exitcode = EX_OSERR;
 
1840
    goto end;
 
1841
  }
 
1842
  /* Need to check if the handler is SIG_IGN before handling:
 
1843
     | [[info:libc:Initial Signal Actions]] |
 
1844
     | [[info:libc:Basic Signal Handling]]  |
 
1845
  */
 
1846
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
 
1847
  if(ret == -1){
 
1848
    perror_plus("sigaction");
 
1849
    return EX_OSERR;
 
1850
  }
 
1851
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1852
    ret = sigaction(SIGINT, &sigterm_action, NULL);
 
1853
    if(ret == -1){
 
1854
      perror_plus("sigaction");
 
1855
      exitcode = EX_OSERR;
 
1856
      goto end;
 
1857
    }
 
1858
  }
 
1859
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
 
1860
  if(ret == -1){
 
1861
    perror_plus("sigaction");
 
1862
    return EX_OSERR;
 
1863
  }
 
1864
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1865
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
 
1866
    if(ret == -1){
 
1867
      perror_plus("sigaction");
 
1868
      exitcode = EX_OSERR;
 
1869
      goto end;
 
1870
    }
 
1871
  }
 
1872
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
 
1873
  if(ret == -1){
 
1874
    perror_plus("sigaction");
 
1875
    return EX_OSERR;
 
1876
  }
 
1877
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1878
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
 
1879
    if(ret == -1){
 
1880
      perror_plus("sigaction");
 
1881
      exitcode = EX_OSERR;
 
1882
      goto end;
 
1883
    }
 
1884
  }
1059
1885
  
1060
1886
  /* If the interface is down, bring it up */
1061
 
  if(interface[0] != '\0'){
 
1887
  if(strcmp(interface, "none") != 0){
 
1888
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
1889
    if(if_index == 0){
 
1890
      fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
 
1891
      exitcode = EX_UNAVAILABLE;
 
1892
      goto end;
 
1893
    }
 
1894
    
 
1895
    if(quit_now){
 
1896
      goto end;
 
1897
    }
 
1898
    
 
1899
    /* Re-raise priviliges */
 
1900
    errno = 0;
 
1901
    ret = seteuid(0);
 
1902
    if(ret == -1){
 
1903
      perror_plus("seteuid");
 
1904
    }
 
1905
    
1062
1906
#ifdef __linux__
1063
1907
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1064
 
       messages to mess up the prompt */
 
1908
       messages about the network interface to mess up the prompt */
1065
1909
    ret = klogctl(8, NULL, 5);
1066
1910
    bool restore_loglevel = true;
1067
1911
    if(ret == -1){
1068
1912
      restore_loglevel = false;
1069
 
      perror("klogctl");
 
1913
      perror_plus("klogctl");
1070
1914
    }
1071
1915
#endif  /* __linux__ */
1072
1916
    
1073
1917
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1074
1918
    if(sd < 0){
1075
 
      perror("socket");
1076
 
      exitcode = EXIT_FAILURE;
 
1919
      perror_plus("socket");
 
1920
      exitcode = EX_OSERR;
1077
1921
#ifdef __linux__
1078
1922
      if(restore_loglevel){
1079
1923
        ret = klogctl(7, NULL, 0);
1080
1924
        if(ret == -1){
1081
 
          perror("klogctl");
 
1925
          perror_plus("klogctl");
1082
1926
        }
1083
1927
      }
1084
1928
#endif  /* __linux__ */
 
1929
      /* Lower privileges */
 
1930
      errno = 0;
 
1931
      ret = seteuid(uid);
 
1932
      if(ret == -1){
 
1933
        perror_plus("seteuid");
 
1934
      }
1085
1935
      goto end;
1086
1936
    }
1087
1937
    strcpy(network.ifr_name, interface);
1088
1938
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
1089
1939
    if(ret == -1){
1090
 
      perror("ioctl SIOCGIFFLAGS");
 
1940
      perror_plus("ioctl SIOCGIFFLAGS");
1091
1941
#ifdef __linux__
1092
1942
      if(restore_loglevel){
1093
1943
        ret = klogctl(7, NULL, 0);
1094
1944
        if(ret == -1){
1095
 
          perror("klogctl");
 
1945
          perror_plus("klogctl");
1096
1946
        }
1097
1947
      }
1098
1948
#endif  /* __linux__ */
1099
 
      exitcode = EXIT_FAILURE;
 
1949
      exitcode = EX_OSERR;
 
1950
      /* Lower privileges */
 
1951
      errno = 0;
 
1952
      ret = seteuid(uid);
 
1953
      if(ret == -1){
 
1954
        perror_plus("seteuid");
 
1955
      }
1100
1956
      goto end;
1101
1957
    }
1102
1958
    if((network.ifr_flags & IFF_UP) == 0){
1103
1959
      network.ifr_flags |= IFF_UP;
 
1960
      take_down_interface = true;
1104
1961
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1105
1962
      if(ret == -1){
1106
 
        perror("ioctl SIOCSIFFLAGS");
1107
 
        exitcode = EXIT_FAILURE;
 
1963
        take_down_interface = false;
 
1964
        perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
 
1965
        exitcode = EX_OSERR;
1108
1966
#ifdef __linux__
1109
1967
        if(restore_loglevel){
1110
1968
          ret = klogctl(7, NULL, 0);
1111
1969
          if(ret == -1){
1112
 
            perror("klogctl");
 
1970
            perror_plus("klogctl");
1113
1971
          }
1114
1972
        }
1115
1973
#endif  /* __linux__ */
 
1974
        /* Lower privileges */
 
1975
        errno = 0;
 
1976
        ret = seteuid(uid);
 
1977
        if(ret == -1){
 
1978
          perror_plus("seteuid");
 
1979
        }
1116
1980
        goto end;
1117
1981
      }
1118
1982
    }
1119
 
    /* sleep checking until interface is running */
 
1983
    /* Sleep checking until interface is running.
 
1984
       Check every 0.25s, up to total time of delay */
1120
1985
    for(int i=0; i < delay * 4; i++){
1121
1986
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
1122
1987
      if(ret == -1){
1123
 
        perror("ioctl SIOCGIFFLAGS");
 
1988
        perror_plus("ioctl SIOCGIFFLAGS");
1124
1989
      } else if(network.ifr_flags & IFF_RUNNING){
1125
1990
        break;
1126
1991
      }
1127
1992
      struct timespec sleeptime = { .tv_nsec = 250000000 };
1128
1993
      ret = nanosleep(&sleeptime, NULL);
1129
1994
      if(ret == -1 and errno != EINTR){
1130
 
        perror("nanosleep");
 
1995
        perror_plus("nanosleep");
1131
1996
      }
1132
1997
    }
1133
 
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
1134
 
    if(ret == -1){
1135
 
      perror("close");
 
1998
    if(not take_down_interface){
 
1999
      /* We won't need the socket anymore */
 
2000
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
2001
      if(ret == -1){
 
2002
        perror_plus("close");
 
2003
      }
1136
2004
    }
1137
2005
#ifdef __linux__
1138
2006
    if(restore_loglevel){
1139
2007
      /* Restores kernel loglevel to default */
1140
2008
      ret = klogctl(7, NULL, 0);
1141
2009
      if(ret == -1){
1142
 
        perror("klogctl");
 
2010
        perror_plus("klogctl");
1143
2011
      }
1144
2012
    }
1145
2013
#endif  /* __linux__ */
1146
 
  }
1147
 
  
1148
 
  uid = getuid();
1149
 
  gid = getgid();
1150
 
  
1151
 
  errno = 0;
1152
 
  setgid(gid);
1153
 
  if(ret == -1){
1154
 
    perror("setgid");
1155
 
  }
1156
 
  
1157
 
  ret = setuid(uid);
1158
 
  if(ret == -1){
1159
 
    perror("setuid");
 
2014
    /* Lower privileges */
 
2015
    errno = 0;
 
2016
    /* Lower privileges */
 
2017
    ret = seteuid(uid);
 
2018
    if(ret == -1){
 
2019
      perror_plus("seteuid");
 
2020
    }
 
2021
  }
 
2022
  
 
2023
  if(quit_now){
 
2024
    goto end;
1160
2025
  }
1161
2026
  
1162
2027
  ret = init_gnutls_global(pubkey, seckey);
1163
2028
  if(ret == -1){
1164
 
    fprintf(stderr, "init_gnutls_global failed\n");
1165
 
    exitcode = EXIT_FAILURE;
 
2029
    fprintf_plus(stderr, "init_gnutls_global failed\n");
 
2030
    exitcode = EX_UNAVAILABLE;
1166
2031
    goto end;
1167
2032
  } else {
1168
2033
    gnutls_initialized = true;
1169
2034
  }
1170
2035
  
 
2036
  if(quit_now){
 
2037
    goto end;
 
2038
  }
 
2039
  
1171
2040
  if(mkdtemp(tempdir) == NULL){
1172
 
    perror("mkdtemp");
 
2041
    perror_plus("mkdtemp");
1173
2042
    goto end;
1174
2043
  }
1175
2044
  tempdir_created = true;
1176
2045
  
 
2046
  if(quit_now){
 
2047
    goto end;
 
2048
  }
 
2049
  
1177
2050
  if(not init_gpgme(pubkey, seckey, tempdir)){
1178
 
    fprintf(stderr, "init_gpgme failed\n");
1179
 
    exitcode = EXIT_FAILURE;
 
2051
    fprintf_plus(stderr, "init_gpgme failed\n");
 
2052
    exitcode = EX_UNAVAILABLE;
1180
2053
    goto end;
1181
2054
  } else {
1182
2055
    gpgme_initialized = true;
1183
2056
  }
1184
2057
  
1185
 
  if(interface[0] != '\0'){
1186
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1187
 
    if(if_index == 0){
1188
 
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1189
 
      exitcode = EXIT_FAILURE;
1190
 
      goto end;
1191
 
    }
 
2058
  if(quit_now){
 
2059
    goto end;
1192
2060
  }
1193
2061
  
1194
2062
  if(connect_to != NULL){
1196
2064
    /* (Mainly meant for debugging) */
1197
2065
    char *address = strrchr(connect_to, ':');
1198
2066
    if(address == NULL){
1199
 
      fprintf(stderr, "No colon in address\n");
1200
 
      exitcode = EXIT_FAILURE;
1201
 
      goto end;
1202
 
    }
 
2067
      fprintf_plus(stderr, "No colon in address\n");
 
2068
      exitcode = EX_USAGE;
 
2069
      goto end;
 
2070
    }
 
2071
    
 
2072
    if(quit_now){
 
2073
      goto end;
 
2074
    }
 
2075
    
1203
2076
    uint16_t port;
1204
2077
    errno = 0;
1205
2078
    tmpmax = strtoimax(address+1, &tmp, 10);
1206
2079
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
1207
2080
       or tmpmax != (uint16_t)tmpmax){
1208
 
      fprintf(stderr, "Bad port number\n");
1209
 
      exitcode = EXIT_FAILURE;
1210
 
      goto end;
1211
 
    }
 
2081
      fprintf_plus(stderr, "Bad port number\n");
 
2082
      exitcode = EX_USAGE;
 
2083
      goto end;
 
2084
    }
 
2085
  
 
2086
    if(quit_now){
 
2087
      goto end;
 
2088
    }
 
2089
    
1212
2090
    port = (uint16_t)tmpmax;
1213
2091
    *address = '\0';
1214
 
    address = connect_to;
1215
2092
    /* Colon in address indicates IPv6 */
1216
2093
    int af;
1217
 
    if(strchr(address, ':') != NULL){
 
2094
    if(strchr(connect_to, ':') != NULL){
1218
2095
      af = AF_INET6;
 
2096
      /* Accept [] around IPv6 address - see RFC 5952 */
 
2097
      if(connect_to[0] == '[' and address[-1] == ']')
 
2098
        {
 
2099
          connect_to++;
 
2100
          address[-1] = '\0';
 
2101
        }
1219
2102
    } else {
1220
2103
      af = AF_INET;
1221
2104
    }
1222
 
    ret = start_mandos_communication(address, port, if_index, af);
1223
 
    if(ret < 0){
1224
 
      exitcode = EXIT_FAILURE;
1225
 
    } else {
 
2105
    address = connect_to;
 
2106
    
 
2107
    if(quit_now){
 
2108
      goto end;
 
2109
    }
 
2110
    
 
2111
    while(not quit_now){
 
2112
      ret = start_mandos_communication(address, port, if_index, af);
 
2113
      if(quit_now or ret == 0){
 
2114
        break;
 
2115
      }
 
2116
      if(debug){
 
2117
        fprintf_plus(stderr, "Retrying in %d seconds\n",
 
2118
                     (int)retry_interval);
 
2119
      }
 
2120
      sleep((int)retry_interval);
 
2121
    }
 
2122
    
 
2123
    if (not quit_now){
1226
2124
      exitcode = EXIT_SUCCESS;
1227
2125
    }
1228
 
    goto end;
1229
 
  }
1230
2126
    
 
2127
    goto end;
 
2128
  }
 
2129
  
 
2130
  if(quit_now){
 
2131
    goto end;
 
2132
  }
 
2133
  
1231
2134
  {
1232
2135
    AvahiServerConfig config;
1233
2136
    /* Do not publish any local Zeroconf records */
1248
2151
  
1249
2152
  /* Check if creating the Avahi server object succeeded */
1250
2153
  if(mc.server == NULL){
1251
 
    fprintf(stderr, "Failed to create Avahi server: %s\n",
1252
 
            avahi_strerror(error));
1253
 
    exitcode = EXIT_FAILURE;
 
2154
    fprintf_plus(stderr, "Failed to create Avahi server: %s\n",
 
2155
                 avahi_strerror(error));
 
2156
    exitcode = EX_UNAVAILABLE;
 
2157
    goto end;
 
2158
  }
 
2159
  
 
2160
  if(quit_now){
1254
2161
    goto end;
1255
2162
  }
1256
2163
  
1259
2166
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
1260
2167
                                   NULL, 0, browse_callback, NULL);
1261
2168
  if(sb == NULL){
1262
 
    fprintf(stderr, "Failed to create service browser: %s\n",
1263
 
            avahi_strerror(avahi_server_errno(mc.server)));
1264
 
    exitcode = EXIT_FAILURE;
 
2169
    fprintf_plus(stderr, "Failed to create service browser: %s\n",
 
2170
                 avahi_strerror(avahi_server_errno(mc.server)));
 
2171
    exitcode = EX_UNAVAILABLE;
 
2172
    goto end;
 
2173
  }
 
2174
  
 
2175
  if(quit_now){
1265
2176
    goto end;
1266
2177
  }
1267
2178
  
1268
2179
  /* Run the main loop */
1269
2180
  
1270
2181
  if(debug){
1271
 
    fprintf(stderr, "Starting Avahi loop search\n");
1272
 
  }
1273
 
  
1274
 
  avahi_simple_poll_loop(mc.simple_poll);
 
2182
    fprintf_plus(stderr, "Starting Avahi loop search\n");
 
2183
  }
 
2184
 
 
2185
  ret = avahi_loop_with_timeout(mc.simple_poll,
 
2186
                                (int)(retry_interval * 1000));
 
2187
  if(debug){
 
2188
    fprintf_plus(stderr, "avahi_loop_with_timeout exited %s\n",
 
2189
                 (ret == 0) ? "successfully" : "with error");
 
2190
  }
1275
2191
  
1276
2192
 end:
1277
2193
  
1278
2194
  if(debug){
1279
 
    fprintf(stderr, "%s exiting\n", argv[0]);
 
2195
    fprintf_plus(stderr, "%s exiting\n", argv[0]);
1280
2196
  }
1281
2197
  
1282
2198
  /* Cleanup things */
1299
2215
    gpgme_release(mc.ctx);
1300
2216
  }
1301
2217
  
1302
 
  /* Removes the temp directory used by GPGME */
 
2218
  /* Cleans up the circular linked list of Mandos servers the client
 
2219
     has seen */
 
2220
  if(mc.current_server != NULL){
 
2221
    mc.current_server->prev->next = NULL;
 
2222
    while(mc.current_server != NULL){
 
2223
      server *next = mc.current_server->next;
 
2224
      free(mc.current_server);
 
2225
      mc.current_server = next;
 
2226
    }
 
2227
  }
 
2228
  
 
2229
  /* Run network hooks */
 
2230
  run_network_hooks("stop", interface, delay);
 
2231
  
 
2232
  /* Re-raise priviliges */
 
2233
  {
 
2234
    errno = 0;
 
2235
    ret = seteuid(0);
 
2236
    if(ret == -1){
 
2237
      perror_plus("seteuid");
 
2238
    }
 
2239
    
 
2240
    /* Take down the network interface */
 
2241
    if(take_down_interface and geteuid() == 0){
 
2242
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
2243
      if(ret == -1){
 
2244
        perror_plus("ioctl SIOCGIFFLAGS");
 
2245
      } else if(network.ifr_flags & IFF_UP){
 
2246
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
 
2247
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
2248
        if(ret == -1){
 
2249
          perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
 
2250
        }
 
2251
      }
 
2252
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
2253
      if(ret == -1){
 
2254
        perror_plus("close");
 
2255
      }
 
2256
    }
 
2257
  }
 
2258
  /* Lower privileges permanently */
 
2259
  errno = 0;
 
2260
  ret = setuid(uid);
 
2261
  if(ret == -1){
 
2262
    perror_plus("setuid");
 
2263
  }
 
2264
  
 
2265
  /* Removes the GPGME temp directory and all files inside */
1303
2266
  if(tempdir_created){
1304
 
    DIR *d;
1305
 
    struct dirent *direntry;
1306
 
    d = opendir(tempdir);
1307
 
    if(d == NULL){
1308
 
      if(errno != ENOENT){
1309
 
        perror("opendir");
1310
 
      }
1311
 
    } else {
1312
 
      while(true){
1313
 
        direntry = readdir(d);
1314
 
        if(direntry == NULL){
1315
 
          break;
1316
 
        }
1317
 
        /* Skip "." and ".." */
1318
 
        if(direntry->d_name[0] == '.'
1319
 
           and (direntry->d_name[1] == '\0'
1320
 
                or (direntry->d_name[1] == '.'
1321
 
                    and direntry->d_name[2] == '\0'))){
1322
 
          continue;
1323
 
        }
 
2267
    struct dirent **direntries = NULL;
 
2268
    struct dirent *direntry = NULL;
 
2269
    int numentries = scandir(tempdir, &direntries, notdotentries,
 
2270
                             alphasort);
 
2271
    if (numentries > 0){
 
2272
      for(int i = 0; i < numentries; i++){
 
2273
        direntry = direntries[i];
1324
2274
        char *fullname = NULL;
1325
2275
        ret = asprintf(&fullname, "%s/%s", tempdir,
1326
2276
                       direntry->d_name);
1327
2277
        if(ret < 0){
1328
 
          perror("asprintf");
 
2278
          perror_plus("asprintf");
1329
2279
          continue;
1330
2280
        }
1331
2281
        ret = remove(fullname);
1332
2282
        if(ret == -1){
1333
 
          fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
1334
 
                  strerror(errno));
 
2283
          fprintf_plus(stderr, "remove(\"%s\"): %s\n", fullname,
 
2284
                       strerror(errno));
1335
2285
        }
1336
2286
        free(fullname);
1337
2287
      }
1338
 
      closedir(d);
 
2288
    }
 
2289
 
 
2290
    /* need to clean even if 0 because man page doesn't specify */
 
2291
    free(direntries);
 
2292
    if (numentries == -1){
 
2293
      perror_plus("scandir");
1339
2294
    }
1340
2295
    ret = rmdir(tempdir);
1341
2296
    if(ret == -1 and errno != ENOENT){
1342
 
      perror("rmdir");
1343
 
    }
 
2297
      perror_plus("rmdir");
 
2298
    }
 
2299
  }
 
2300
  
 
2301
  if(quit_now){
 
2302
    sigemptyset(&old_sigterm_action.sa_mask);
 
2303
    old_sigterm_action.sa_handler = SIG_DFL;
 
2304
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
 
2305
                                            &old_sigterm_action,
 
2306
                                            NULL));
 
2307
    if(ret == -1){
 
2308
      perror_plus("sigaction");
 
2309
    }
 
2310
    do {
 
2311
      ret = raise(signal_received);
 
2312
    } while(ret != 0 and errno == EINTR);
 
2313
    if(ret != 0){
 
2314
      perror_plus("raise");
 
2315
      abort();
 
2316
    }
 
2317
    TEMP_FAILURE_RETRY(pause());
1344
2318
  }
1345
2319
  
1346
2320
  return exitcode;