/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: Björn Påhlsson
  • Date: 2010-09-01 18:03:03 UTC
  • mto: (237.4.3 mandos-release)
  • mto: This revision was merged to the branch mainline in revision 421.
  • Revision ID: belorn@fukt.bsnet.se-20100901180303-u47edb73fczu56ob
bug fixes that prevent problems when runing server as root

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