/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

* plugins.d/mandos-client.c: Prefix all printouts with "Mandos plugin
                             mandos-client: ".
* plugins.d/mandos-client.c (main): Wait for network hooks and check
                                    the completion status.

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-2012 Teddy Hogeborn
13
 
 * Copyright © 2008-2012 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
41
41
 
42
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
43
43
                                   stdout, ferror(), remove() */
44
 
#include <stdint.h>             /* uint16_t, uint32_t, intptr_t */
 
44
#include <stdint.h>             /* uint16_t, uint32_t */
45
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
46
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, srand(),
47
47
                                   strtof(), abort() */
73
73
                                */
74
74
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
75
75
                                   getuid(), getgid(), seteuid(),
76
 
                                   setgid(), pause(), _exit() */
 
76
                                   setgid(), pause() */
77
77
#include <arpa/inet.h>          /* inet_pton(), htons, inet_ntop() */
78
78
#include <iso646.h>             /* not, or, and */
79
79
#include <argp.h>               /* struct argp_option, error_t, struct
87
87
                                   EX_NOHOST, EX_IOERR, EX_PROTOCOL */
88
88
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
89
89
                                   WEXITSTATUS(), WTERMSIG() */
90
 
#include <grp.h>                /* setgroups() */
91
 
#include <argz.h>               /* argz_add_sep(), argz_next(),
92
 
                                   argz_delete(), argz_append(),
93
 
                                   argz_stringify(), argz_add(),
94
 
                                   argz_count() */
95
90
 
96
91
#ifdef __linux__
97
92
#include <sys/klog.h>           /* klogctl() */
115
110
                                   init_gnutls_session(),
116
111
                                   GNUTLS_* */
117
112
#include <gnutls/openpgp.h>
118
 
                         /* gnutls_certificate_set_openpgp_key_file(),
119
 
                            GNUTLS_OPENPGP_FMT_BASE64 */
 
113
                          /* gnutls_certificate_set_openpgp_key_file(),
 
114
                                   GNUTLS_OPENPGP_FMT_BASE64 */
120
115
 
121
116
/* GPGME */
122
117
#include <gpgme.h>              /* All GPGME types, constants and
138
133
const char *argp_program_bug_address = "<mandos@recompile.se>";
139
134
static const char sys_class_net[] = "/sys/class/net";
140
135
char *connect_to = NULL;
141
 
const char *hookdir = HOOKDIR;
142
 
uid_t uid = 65534;
143
 
gid_t gid = 65534;
144
136
 
145
137
/* Doubly linked list that need to be circularly linked when used */
146
138
typedef struct server{
176
168
 
177
169
/* Function to use when printing errors */
178
170
void perror_plus(const char *print_text){
179
 
  int e = errno;
180
171
  fprintf(stderr, "Mandos plugin %s: ",
181
172
          program_invocation_short_name);
182
 
  errno = e;
183
173
  perror(print_text);
184
174
}
185
175
 
186
 
__attribute__((format (gnu_printf, 2, 3)))
187
 
int fprintf_plus(FILE *stream, const char *format, ...){
188
 
  va_list ap;
189
 
  va_start (ap, format);
190
 
  
191
 
  TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
192
 
                             program_invocation_short_name));
193
 
  return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
194
 
}
195
 
 
196
176
/*
197
177
 * Make additional room in "buffer" for at least BUFFER_SIZE more
198
178
 * bytes. "buffer_capacity" is how much is currently allocated,
199
179
 * "buffer_length" is how much is already used.
200
180
 */
201
181
size_t incbuffer(char **buffer, size_t buffer_length,
202
 
                 size_t buffer_capacity){
 
182
                  size_t buffer_capacity){
203
183
  if(buffer_length + BUFFER_SIZE > buffer_capacity){
204
184
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
205
185
    if(buffer == NULL){
211
191
}
212
192
 
213
193
/* Add server to set of servers to retry periodically */
214
 
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
215
 
                int af){
 
194
int add_server(const char *ip, uint16_t port,
 
195
                 AvahiIfIndex if_index,
 
196
                 int af){
216
197
  int ret;
217
198
  server *new_server = malloc(sizeof(server));
218
199
  if(new_server == NULL){
219
200
    perror_plus("malloc");
220
 
    return false;
 
201
    return -1;
221
202
  }
222
203
  *new_server = (server){ .ip = strdup(ip),
223
 
                          .port = port,
224
 
                          .if_index = if_index,
225
 
                          .af = af };
 
204
                         .port = port,
 
205
                         .if_index = if_index,
 
206
                         .af = af };
226
207
  if(new_server->ip == NULL){
227
208
    perror_plus("strdup");
228
 
    return false;
 
209
    return -1;
229
210
  }
230
211
  /* Special case of first server */
231
212
  if (mc.current_server == NULL){
242
223
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
243
224
  if(ret == -1){
244
225
    perror_plus("clock_gettime");
245
 
    return false;
 
226
    return -1;
246
227
  }
247
 
  return true;
 
228
  return 0;
248
229
}
249
230
 
250
231
/* 
251
232
 * Initialize GPGME.
252
233
 */
253
 
static bool init_gpgme(const char *seckey, const char *pubkey,
254
 
                       const char *tempdir){
 
234
static bool init_gpgme(const char *seckey,
 
235
                       const char *pubkey, const char *tempdir){
255
236
  gpgme_error_t rc;
256
237
  gpgme_engine_info_t engine_info;
257
238
  
272
253
    
273
254
    rc = gpgme_data_new_from_fd(&pgp_data, fd);
274
255
    if(rc != GPG_ERR_NO_ERROR){
275
 
      fprintf_plus(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
276
 
                   gpgme_strsource(rc), gpgme_strerror(rc));
 
256
      fprintf(stderr, "Mandos plugin mandos-client: "
 
257
              "bad gpgme_data_new_from_fd: %s: %s\n",
 
258
              gpgme_strsource(rc), gpgme_strerror(rc));
277
259
      return false;
278
260
    }
279
261
    
280
262
    rc = gpgme_op_import(mc.ctx, pgp_data);
281
263
    if(rc != GPG_ERR_NO_ERROR){
282
 
      fprintf_plus(stderr, "bad gpgme_op_import: %s: %s\n",
283
 
                   gpgme_strsource(rc), gpgme_strerror(rc));
 
264
      fprintf(stderr, "Mandos plugin mandos-client: "
 
265
              "bad gpgme_op_import: %s: %s\n",
 
266
              gpgme_strsource(rc), gpgme_strerror(rc));
284
267
      return false;
285
268
    }
286
269
    
293
276
  }
294
277
  
295
278
  if(debug){
296
 
    fprintf_plus(stderr, "Initializing GPGME\n");
 
279
    fprintf(stderr, "Mandos plugin mandos-client: "
 
280
            "Initializing GPGME\n");
297
281
  }
298
282
  
299
283
  /* Init GPGME */
300
284
  gpgme_check_version(NULL);
301
285
  rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
302
286
  if(rc != GPG_ERR_NO_ERROR){
303
 
    fprintf_plus(stderr, "bad gpgme_engine_check_version: %s: %s\n",
304
 
                 gpgme_strsource(rc), gpgme_strerror(rc));
 
287
    fprintf(stderr, "Mandos plugin mandos-client: "
 
288
            "bad gpgme_engine_check_version: %s: %s\n",
 
289
            gpgme_strsource(rc), gpgme_strerror(rc));
305
290
    return false;
306
291
  }
307
292
  
308
293
  /* Set GPGME home directory for the OpenPGP engine only */
309
294
  rc = gpgme_get_engine_info(&engine_info);
310
295
  if(rc != GPG_ERR_NO_ERROR){
311
 
    fprintf_plus(stderr, "bad gpgme_get_engine_info: %s: %s\n",
312
 
                 gpgme_strsource(rc), gpgme_strerror(rc));
 
296
    fprintf(stderr, "Mandos plugin mandos-client: "
 
297
            "bad gpgme_get_engine_info: %s: %s\n",
 
298
            gpgme_strsource(rc), gpgme_strerror(rc));
313
299
    return false;
314
300
  }
315
301
  while(engine_info != NULL){
321
307
    engine_info = engine_info->next;
322
308
  }
323
309
  if(engine_info == NULL){
324
 
    fprintf_plus(stderr, "Could not set GPGME home dir to %s\n",
325
 
                 tempdir);
 
310
    fprintf(stderr, "Mandos plugin mandos-client: "
 
311
            "Could not set GPGME home dir to %s\n", tempdir);
326
312
    return false;
327
313
  }
328
314
  
329
315
  /* Create new GPGME "context" */
330
316
  rc = gpgme_new(&(mc.ctx));
331
317
  if(rc != GPG_ERR_NO_ERROR){
332
 
    fprintf_plus(stderr, "Mandos plugin mandos-client: "
333
 
                 "bad gpgme_new: %s: %s\n", gpgme_strsource(rc),
334
 
                 gpgme_strerror(rc));
 
318
    fprintf(stderr, "Mandos plugin mandos-client: "
 
319
            "bad gpgme_new: %s: %s\n", gpgme_strsource(rc),
 
320
            gpgme_strerror(rc));
335
321
    return false;
336
322
  }
337
323
  
356
342
  ssize_t plaintext_length = 0;
357
343
  
358
344
  if(debug){
359
 
    fprintf_plus(stderr, "Trying to decrypt OpenPGP data\n");
 
345
    fprintf(stderr, "Mandos plugin mandos-client: "
 
346
            "Trying to decrypt OpenPGP data\n");
360
347
  }
361
348
  
362
349
  /* Create new GPGME data buffer from memory cryptotext */
363
350
  rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
364
351
                               0);
365
352
  if(rc != GPG_ERR_NO_ERROR){
366
 
    fprintf_plus(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
367
 
                 gpgme_strsource(rc), gpgme_strerror(rc));
 
353
    fprintf(stderr, "Mandos plugin mandos-client: "
 
354
            "bad gpgme_data_new_from_mem: %s: %s\n",
 
355
            gpgme_strsource(rc), gpgme_strerror(rc));
368
356
    return -1;
369
357
  }
370
358
  
371
359
  /* Create new empty GPGME data buffer for the plaintext */
372
360
  rc = gpgme_data_new(&dh_plain);
373
361
  if(rc != GPG_ERR_NO_ERROR){
374
 
    fprintf_plus(stderr, "Mandos plugin mandos-client: "
375
 
                 "bad gpgme_data_new: %s: %s\n",
376
 
                 gpgme_strsource(rc), gpgme_strerror(rc));
 
362
    fprintf(stderr, "Mandos plugin mandos-client: "
 
363
            "bad gpgme_data_new: %s: %s\n",
 
364
            gpgme_strsource(rc), gpgme_strerror(rc));
377
365
    gpgme_data_release(dh_crypto);
378
366
    return -1;
379
367
  }
382
370
     data buffer */
383
371
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
384
372
  if(rc != GPG_ERR_NO_ERROR){
385
 
    fprintf_plus(stderr, "bad gpgme_op_decrypt: %s: %s\n",
386
 
                 gpgme_strsource(rc), gpgme_strerror(rc));
 
373
    fprintf(stderr, "Mandos plugin mandos-client: "
 
374
            "bad gpgme_op_decrypt: %s: %s\n",
 
375
            gpgme_strsource(rc), gpgme_strerror(rc));
387
376
    plaintext_length = -1;
388
377
    if(debug){
389
378
      gpgme_decrypt_result_t result;
390
379
      result = gpgme_op_decrypt_result(mc.ctx);
391
380
      if(result == NULL){
392
 
        fprintf_plus(stderr, "gpgme_op_decrypt_result failed\n");
 
381
        fprintf(stderr, "Mandos plugin mandos-client: "
 
382
                "gpgme_op_decrypt_result failed\n");
393
383
      } else {
394
 
        fprintf_plus(stderr, "Unsupported algorithm: %s\n",
395
 
                     result->unsupported_algorithm);
396
 
        fprintf_plus(stderr, "Wrong key usage: %u\n",
397
 
                     result->wrong_key_usage);
 
384
        fprintf(stderr, "Mandos plugin mandos-client: "
 
385
                "Unsupported algorithm: %s\n",
 
386
                result->unsupported_algorithm);
 
387
        fprintf(stderr, "Mandos plugin mandos-client: "
 
388
                "Wrong key usage: %u\n",
 
389
                result->wrong_key_usage);
398
390
        if(result->file_name != NULL){
399
 
          fprintf_plus(stderr, "File name: %s\n", result->file_name);
 
391
          fprintf(stderr, "Mandos plugin mandos-client: "
 
392
                  "File name: %s\n", result->file_name);
400
393
        }
401
394
        gpgme_recipient_t recipient;
402
395
        recipient = result->recipients;
403
396
        while(recipient != NULL){
404
 
          fprintf_plus(stderr, "Public key algorithm: %s\n",
405
 
                       gpgme_pubkey_algo_name
406
 
                       (recipient->pubkey_algo));
407
 
          fprintf_plus(stderr, "Key ID: %s\n", recipient->keyid);
408
 
          fprintf_plus(stderr, "Secret key available: %s\n",
409
 
                       recipient->status == GPG_ERR_NO_SECKEY
410
 
                       ? "No" : "Yes");
 
397
          fprintf(stderr, "Mandos plugin mandos-client: "
 
398
                  "Public key algorithm: %s\n",
 
399
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
400
          fprintf(stderr, "Mandos plugin mandos-client: "
 
401
                  "Key ID: %s\n", recipient->keyid);
 
402
          fprintf(stderr, "Mandos plugin mandos-client: "
 
403
                  "Secret key available: %s\n",
 
404
                  recipient->status == GPG_ERR_NO_SECKEY
 
405
                  ? "No" : "Yes");
411
406
          recipient = recipient->next;
412
407
        }
413
408
      }
416
411
  }
417
412
  
418
413
  if(debug){
419
 
    fprintf_plus(stderr, "Decryption of OpenPGP data succeeded\n");
 
414
    fprintf(stderr, "Mandos plugin mandos-client: "
 
415
            "Decryption of OpenPGP data succeeded\n");
420
416
  }
421
417
  
422
418
  /* Seek back to the beginning of the GPGME plaintext data buffer */
429
425
  *plaintext = NULL;
430
426
  while(true){
431
427
    plaintext_capacity = incbuffer(plaintext,
432
 
                                   (size_t)plaintext_length,
433
 
                                   plaintext_capacity);
 
428
                                      (size_t)plaintext_length,
 
429
                                      plaintext_capacity);
434
430
    if(plaintext_capacity == 0){
435
 
      perror_plus("incbuffer");
436
 
      plaintext_length = -1;
437
 
      goto decrypt_end;
 
431
        perror_plus("incbuffer");
 
432
        plaintext_length = -1;
 
433
        goto decrypt_end;
438
434
    }
439
435
    
440
436
    ret = gpgme_data_read(dh_plain, *plaintext + plaintext_length,
453
449
  }
454
450
  
455
451
  if(debug){
456
 
    fprintf_plus(stderr, "Decrypted password is: ");
 
452
    fprintf(stderr, "Mandos plugin mandos-client: "
 
453
            "Decrypted password is: ");
457
454
    for(ssize_t i = 0; i < plaintext_length; i++){
458
455
      fprintf(stderr, "%02hhX ", (*plaintext)[i]);
459
456
    }
481
478
/* GnuTLS log function callback */
482
479
static void debuggnutls(__attribute__((unused)) int level,
483
480
                        const char* string){
484
 
  fprintf_plus(stderr, "GnuTLS: %s", string);
 
481
  fprintf(stderr, "Mandos plugin mandos-client: GnuTLS: %s", string);
485
482
}
486
483
 
487
484
static int init_gnutls_global(const char *pubkeyfilename,
489
486
  int ret;
490
487
  
491
488
  if(debug){
492
 
    fprintf_plus(stderr, "Initializing GnuTLS\n");
 
489
    fprintf(stderr, "Mandos plugin mandos-client: "
 
490
            "Initializing GnuTLS\n");
493
491
  }
494
492
  
495
493
  ret = gnutls_global_init();
496
494
  if(ret != GNUTLS_E_SUCCESS){
497
 
    fprintf_plus(stderr, "GnuTLS global_init: %s\n",
498
 
                 safer_gnutls_strerror(ret));
 
495
    fprintf(stderr, "Mandos plugin mandos-client: "
 
496
            "GnuTLS global_init: %s\n", safer_gnutls_strerror(ret));
499
497
    return -1;
500
498
  }
501
499
  
510
508
  /* OpenPGP credentials */
511
509
  ret = gnutls_certificate_allocate_credentials(&mc.cred);
512
510
  if(ret != GNUTLS_E_SUCCESS){
513
 
    fprintf_plus(stderr, "GnuTLS memory error: %s\n",
514
 
                 safer_gnutls_strerror(ret));
 
511
    fprintf(stderr, "Mandos plugin mandos-client: "
 
512
            "GnuTLS memory error: %s\n", safer_gnutls_strerror(ret));
515
513
    gnutls_global_deinit();
516
514
    return -1;
517
515
  }
518
516
  
519
517
  if(debug){
520
 
    fprintf_plus(stderr, "Attempting to use OpenPGP public key %s and"
521
 
                 " secret key %s as GnuTLS credentials\n",
522
 
                 pubkeyfilename,
523
 
                 seckeyfilename);
 
518
    fprintf(stderr, "Mandos plugin mandos-client: "
 
519
            "Attempting to use OpenPGP public key %s and"
 
520
            " secret key %s as GnuTLS credentials\n", pubkeyfilename,
 
521
            seckeyfilename);
524
522
  }
525
523
  
526
524
  ret = gnutls_certificate_set_openpgp_key_file
527
525
    (mc.cred, pubkeyfilename, seckeyfilename,
528
526
     GNUTLS_OPENPGP_FMT_BASE64);
529
527
  if(ret != GNUTLS_E_SUCCESS){
530
 
    fprintf_plus(stderr,
531
 
                 "Error[%d] while reading the OpenPGP key pair ('%s',"
532
 
                 " '%s')\n", ret, pubkeyfilename, seckeyfilename);
533
 
    fprintf_plus(stderr, "The GnuTLS error is: %s\n",
534
 
                 safer_gnutls_strerror(ret));
 
528
    fprintf(stderr,
 
529
            "Mandos plugin mandos-client: "
 
530
            "Error[%d] while reading the OpenPGP key pair ('%s',"
 
531
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
532
    fprintf(stderr, "Mandos plugin mandos-client: "
 
533
            "The GnuTLS error is: %s\n", safer_gnutls_strerror(ret));
535
534
    goto globalfail;
536
535
  }
537
536
  
538
537
  /* GnuTLS server initialization */
539
538
  ret = gnutls_dh_params_init(&mc.dh_params);
540
539
  if(ret != GNUTLS_E_SUCCESS){
541
 
    fprintf_plus(stderr, "Error in GnuTLS DH parameter"
542
 
                 " initialization: %s\n",
543
 
                 safer_gnutls_strerror(ret));
 
540
    fprintf(stderr, "Mandos plugin mandos-client: "
 
541
            "Error in GnuTLS DH parameter initialization:"
 
542
            " %s\n", safer_gnutls_strerror(ret));
544
543
    goto globalfail;
545
544
  }
546
545
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
547
546
  if(ret != GNUTLS_E_SUCCESS){
548
 
    fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
549
 
                 safer_gnutls_strerror(ret));
 
547
    fprintf(stderr, "Mandos plugin mandos-client: "
 
548
            "Error in GnuTLS prime generation: %s\n",
 
549
            safer_gnutls_strerror(ret));
550
550
    goto globalfail;
551
551
  }
552
552
  
572
572
    }
573
573
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
574
574
  if(ret != GNUTLS_E_SUCCESS){
575
 
    fprintf_plus(stderr,
576
 
                 "Error in GnuTLS session initialization: %s\n",
577
 
                 safer_gnutls_strerror(ret));
 
575
    fprintf(stderr, "Mandos plugin mandos-client: "
 
576
            "Error in GnuTLS session initialization: %s\n",
 
577
            safer_gnutls_strerror(ret));
578
578
  }
579
579
  
580
580
  {
587
587
      }
588
588
    } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
589
589
    if(ret != GNUTLS_E_SUCCESS){
590
 
      fprintf_plus(stderr, "Syntax error at: %s\n", err);
591
 
      fprintf_plus(stderr, "GnuTLS error: %s\n",
592
 
                   safer_gnutls_strerror(ret));
 
590
      fprintf(stderr, "Mandos plugin mandos-client: "
 
591
              "Syntax error at: %s\n", err);
 
592
      fprintf(stderr, "Mandos plugin mandos-client: "
 
593
              "GnuTLS error: %s\n", safer_gnutls_strerror(ret));
593
594
      gnutls_deinit(*session);
594
595
      return -1;
595
596
    }
604
605
    }
605
606
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
606
607
  if(ret != GNUTLS_E_SUCCESS){
607
 
    fprintf_plus(stderr, "Error setting GnuTLS credentials: %s\n",
608
 
                 safer_gnutls_strerror(ret));
 
608
    fprintf(stderr, "Mandos plugin mandos-client: "
 
609
            "Error setting GnuTLS credentials: %s\n",
 
610
            safer_gnutls_strerror(ret));
609
611
    gnutls_deinit(*session);
610
612
    return -1;
611
613
  }
656
658
    pf = PF_INET;
657
659
    break;
658
660
  default:
659
 
    fprintf_plus(stderr, "Bad address family: %d\n", af);
 
661
    fprintf(stderr, "Mandos plugin mandos-client: "
 
662
            "Bad address family: %d\n", af);
660
663
    errno = EINVAL;
661
664
    return -1;
662
665
  }
667
670
  }
668
671
  
669
672
  if(debug){
670
 
    fprintf_plus(stderr, "Setting up a TCP connection to %s, port %"
671
 
                 PRIu16 "\n", ip, port);
 
673
    fprintf(stderr, "Mandos plugin mandos-client: "
 
674
            "Setting up a TCP connection to %s, port %" PRIu16
 
675
            "\n", ip, port);
672
676
  }
673
677
  
674
678
  tcp_sd = socket(pf, SOCK_STREAM, 0);
700
704
  }
701
705
  if(ret == 0){
702
706
    int e = errno;
703
 
    fprintf_plus(stderr, "Bad address: %s\n", ip);
 
707
    fprintf(stderr, "Mandos plugin mandos-client: "
 
708
            "Bad address: %s\n", ip);
704
709
    errno = e;
705
710
    goto mandos_end;
706
711
  }
711
716
    
712
717
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
713
718
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
714
 
                                -Wunreachable-code*/
 
719
                              -Wunreachable-code*/
715
720
      if(if_index == AVAHI_IF_UNSPEC){
716
 
        fprintf_plus(stderr, "An IPv6 link-local address is"
717
 
                     " incomplete without a network interface\n");
 
721
        fprintf(stderr, "Mandos plugin mandos-client: "
 
722
                "An IPv6 link-local address is incomplete"
 
723
                " without a network interface\n");
718
724
        errno = EINVAL;
719
725
        goto mandos_end;
720
726
      }
738
744
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
739
745
        perror_plus("if_indextoname");
740
746
      } else {
741
 
        fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIu16
742
 
                     "\n", ip, interface, port);
 
747
        fprintf(stderr, "Mandos plugin mandos-client: "
 
748
                "Connection to: %s%%%s, port %" PRIu16 "\n",
 
749
                ip, interface, port);
743
750
      }
744
751
    } else {
745
 
      fprintf_plus(stderr, "Connection to: %s, port %" PRIu16 "\n",
746
 
                   ip, port);
 
752
      fprintf(stderr, "Mandos plugin mandos-client: "
 
753
              "Connection to: %s, port %" PRIu16 "\n", ip, port);
747
754
    }
748
755
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
749
756
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
759
766
      perror_plus("inet_ntop");
760
767
    } else {
761
768
      if(strcmp(addrstr, ip) != 0){
762
 
        fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
 
769
        fprintf(stderr, "Mandos plugin mandos-client: "
 
770
                "Canonical address form: %s\n", addrstr);
763
771
      }
764
772
    }
765
773
  }
793
801
  while(true){
794
802
    size_t out_size = strlen(out);
795
803
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
796
 
                                        out_size - written));
 
804
                                   out_size - written));
797
805
    if(ret == -1){
798
806
      int e = errno;
799
807
      perror_plus("write");
819
827
  }
820
828
  
821
829
  if(debug){
822
 
    fprintf_plus(stderr, "Establishing TLS session with %s\n", ip);
 
830
    fprintf(stderr, "Mandos plugin mandos-client: "
 
831
            "Establishing TLS session with %s\n", ip);
823
832
  }
824
833
  
825
834
  if(quit_now){
827
836
    goto mandos_end;
828
837
  }
829
838
  
830
 
  /* This casting via intptr_t is to eliminate warning about casting
831
 
     an int to a pointer type.  This is exactly how the GnuTLS Guile
832
 
     function "set-session-transport-fd!" does it. */
833
 
  gnutls_transport_set_ptr(session,
834
 
                           (gnutls_transport_ptr_t)(intptr_t)tcp_sd);
 
839
  /* Spurious warning from -Wint-to-pointer-cast */
 
840
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
835
841
  
836
842
  if(quit_now){
837
843
    errno = EINTR;
848
854
  
849
855
  if(ret != GNUTLS_E_SUCCESS){
850
856
    if(debug){
851
 
      fprintf_plus(stderr, "*** GnuTLS Handshake failed ***\n");
 
857
      fprintf(stderr, "Mandos plugin mandos-client: "
 
858
              "*** GnuTLS Handshake failed ***\n");
852
859
      gnutls_perror(ret);
853
860
    }
854
861
    errno = EPROTO;
858
865
  /* Read OpenPGP packet that contains the wanted password */
859
866
  
860
867
  if(debug){
861
 
    fprintf_plus(stderr, "Retrieving OpenPGP encrypted password from"
862
 
                 " %s\n", ip);
 
868
    fprintf(stderr, "Mandos plugin mandos-client: "
 
869
            "Retrieving OpenPGP encrypted password from %s\n", ip);
863
870
  }
864
871
  
865
872
  while(true){
870
877
    }
871
878
    
872
879
    buffer_capacity = incbuffer(&buffer, buffer_length,
873
 
                                buffer_capacity);
 
880
                                   buffer_capacity);
874
881
    if(buffer_capacity == 0){
875
882
      int e = errno;
876
883
      perror_plus("incbuffer");
903
910
          }
904
911
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
905
912
        if(ret < 0){
906
 
          fprintf_plus(stderr, "*** GnuTLS Re-handshake failed "
907
 
                       "***\n");
 
913
          fprintf(stderr, "Mandos plugin mandos-client: "
 
914
                  "*** GnuTLS Re-handshake failed ***\n");
908
915
          gnutls_perror(ret);
909
916
          errno = EPROTO;
910
917
          goto mandos_end;
911
918
        }
912
919
        break;
913
920
      default:
914
 
        fprintf_plus(stderr, "Unknown error while reading data from"
915
 
                     " encrypted session with Mandos server\n");
 
921
        fprintf(stderr, "Mandos plugin mandos-client: "
 
922
                "Unknown error while reading data from"
 
923
                " encrypted session with Mandos server\n");
916
924
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
917
925
        errno = EIO;
918
926
        goto mandos_end;
923
931
  }
924
932
  
925
933
  if(debug){
926
 
    fprintf_plus(stderr, "Closing TLS session\n");
 
934
    fprintf(stderr, "Mandos plugin mandos-client: "
 
935
            "Closing TLS session\n");
927
936
  }
928
937
  
929
938
  if(quit_now){
941
950
  
942
951
  if(buffer_length > 0){
943
952
    ssize_t decrypted_buffer_size;
944
 
    decrypted_buffer_size = pgp_packet_decrypt(buffer, buffer_length,
 
953
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
 
954
                                               buffer_length,
945
955
                                               &decrypted_buffer);
946
956
    if(decrypted_buffer_size >= 0){
947
957
      
958
968
        if(ret == 0 and ferror(stdout)){
959
969
          int e = errno;
960
970
          if(debug){
961
 
            fprintf_plus(stderr, "Error writing encrypted data: %s\n",
962
 
                         strerror(errno));
 
971
            fprintf(stderr, "Mandos plugin mandos-client: "
 
972
                    "Error writing encrypted data: %s\n",
 
973
                    strerror(errno));
963
974
          }
964
975
          errno = e;
965
976
          goto mandos_end;
1022
1033
  switch(event){
1023
1034
  default:
1024
1035
  case AVAHI_RESOLVER_FAILURE:
1025
 
    fprintf_plus(stderr, "(Avahi Resolver) Failed to resolve service "
1026
 
                 "'%s' of type '%s' in domain '%s': %s\n", name, type,
1027
 
                 domain,
1028
 
                 avahi_strerror(avahi_server_errno(mc.server)));
 
1036
    fprintf(stderr, "Mandos plugin mandos-client: "
 
1037
            "(Avahi Resolver) Failed to resolve service '%s'"
 
1038
            " of type '%s' in domain '%s': %s\n", name, type, domain,
 
1039
            avahi_strerror(avahi_server_errno(mc.server)));
1029
1040
    break;
1030
1041
    
1031
1042
  case AVAHI_RESOLVER_FOUND:
1033
1044
      char ip[AVAHI_ADDRESS_STR_MAX];
1034
1045
      avahi_address_snprint(ip, sizeof(ip), address);
1035
1046
      if(debug){
1036
 
        fprintf_plus(stderr, "Mandos server \"%s\" found on %s (%s, %"
1037
 
                     PRIdMAX ") on port %" PRIu16 "\n", name,
1038
 
                     host_name, ip, (intmax_t)interface, port);
 
1047
        fprintf(stderr, "Mandos plugin mandos-client: "
 
1048
                "Mandos server \"%s\" found on %s (%s, %"
 
1049
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
 
1050
                ip, (intmax_t)interface, port);
1039
1051
      }
1040
1052
      int ret = start_mandos_communication(ip, port, interface,
1041
1053
                                           avahi_proto_to_af(proto));
1042
1054
      if(ret == 0){
1043
1055
        avahi_simple_poll_quit(mc.simple_poll);
1044
1056
      } else {
1045
 
        if(not add_server(ip, port, interface,
1046
 
                          avahi_proto_to_af(proto))){
1047
 
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
1048
 
                       " list\n", name);
1049
 
        }
 
1057
        ret = add_server(ip, port, interface,
 
1058
                         avahi_proto_to_af(proto));
1050
1059
      }
1051
1060
    }
1052
1061
  }
1076
1085
  default:
1077
1086
  case AVAHI_BROWSER_FAILURE:
1078
1087
    
1079
 
    fprintf_plus(stderr, "(Avahi browser) %s\n",
1080
 
                 avahi_strerror(avahi_server_errno(mc.server)));
 
1088
    fprintf(stderr, "Mandos plugin mandos-client: "
 
1089
            "(Avahi browser) %s\n",
 
1090
            avahi_strerror(avahi_server_errno(mc.server)));
1081
1091
    avahi_simple_poll_quit(mc.simple_poll);
1082
1092
    return;
1083
1093
    
1090
1100
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
1091
1101
                                    name, type, domain, protocol, 0,
1092
1102
                                    resolve_callback, NULL) == NULL)
1093
 
      fprintf_plus(stderr, "Avahi: Failed to resolve service '%s':"
1094
 
                   " %s\n", name,
1095
 
                   avahi_strerror(avahi_server_errno(mc.server)));
 
1103
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1104
              "Avahi: Failed to resolve service '%s': %s\n",
 
1105
              name, avahi_strerror(avahi_server_errno(mc.server)));
1096
1106
    break;
1097
1107
    
1098
1108
  case AVAHI_BROWSER_REMOVE:
1101
1111
  case AVAHI_BROWSER_ALL_FOR_NOW:
1102
1112
  case AVAHI_BROWSER_CACHE_EXHAUSTED:
1103
1113
    if(debug){
1104
 
      fprintf_plus(stderr, "No Mandos server found, still"
1105
 
                   " searching...\n");
 
1114
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1115
              "No Mandos server found, still searching...\n");
1106
1116
    }
1107
1117
    break;
1108
1118
  }
1125
1135
 
1126
1136
bool get_flags(const char *ifname, struct ifreq *ifr){
1127
1137
  int ret;
1128
 
  error_t ret_errno;
1129
1138
  
1130
1139
  int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1131
1140
  if(s < 0){
1132
 
    ret_errno = errno;
1133
1141
    perror_plus("socket");
1134
 
    errno = ret_errno;
1135
1142
    return false;
1136
1143
  }
1137
1144
  strcpy(ifr->ifr_name, ifname);
1138
1145
  ret = ioctl(s, SIOCGIFFLAGS, ifr);
1139
1146
  if(ret == -1){
1140
1147
    if(debug){
1141
 
      ret_errno = errno;
1142
1148
      perror_plus("ioctl SIOCGIFFLAGS");
1143
 
      errno = ret_errno;
1144
1149
    }
1145
1150
    return false;
1146
1151
  }
1152
1157
  /* Reject the loopback device */
1153
1158
  if(ifr->ifr_flags & IFF_LOOPBACK){
1154
1159
    if(debug){
1155
 
      fprintf_plus(stderr, "Rejecting loopback interface \"%s\"\n",
1156
 
                   ifname);
 
1160
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1161
              "Rejecting loopback interface \"%s\"\n", ifname);
1157
1162
    }
1158
1163
    return false;
1159
1164
  }
1160
1165
  /* Accept point-to-point devices only if connect_to is specified */
1161
1166
  if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
1162
1167
    if(debug){
1163
 
      fprintf_plus(stderr, "Accepting point-to-point interface"
1164
 
                   " \"%s\"\n", ifname);
 
1168
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1169
              "Accepting point-to-point interface \"%s\"\n", ifname);
1165
1170
    }
1166
1171
    return true;
1167
1172
  }
1168
1173
  /* Otherwise, reject non-broadcast-capable devices */
1169
1174
  if(not (ifr->ifr_flags & IFF_BROADCAST)){
1170
1175
    if(debug){
1171
 
      fprintf_plus(stderr, "Rejecting non-broadcast interface"
1172
 
                   " \"%s\"\n", ifname);
 
1176
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1177
              "Rejecting non-broadcast interface \"%s\"\n", ifname);
1173
1178
    }
1174
1179
    return false;
1175
1180
  }
1176
1181
  /* Reject non-ARP interfaces (including dummy interfaces) */
1177
1182
  if(ifr->ifr_flags & IFF_NOARP){
1178
1183
    if(debug){
1179
 
      fprintf_plus(stderr, "Rejecting non-ARP interface \"%s\"\n",
1180
 
                   ifname);
 
1184
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1185
              "Rejecting non-ARP interface \"%s\"\n", ifname);
1181
1186
    }
1182
1187
    return false;
1183
1188
  }
1184
1189
  
1185
1190
  /* Accept this device */
1186
1191
  if(debug){
1187
 
    fprintf_plus(stderr, "Interface \"%s\" is good\n", ifname);
 
1192
    fprintf(stderr, "Mandos plugin mandos-client: "
 
1193
            "Interface \"%s\" is good\n", ifname);
1188
1194
  }
1189
1195
  return true;
1190
1196
}
1202
1208
  struct ifreq ifr;
1203
1209
  if(not get_flags(if_entry->d_name, &ifr)){
1204
1210
    if(debug){
1205
 
      fprintf_plus(stderr, "Failed to get flags for interface "
1206
 
                   "\"%s\"\n", if_entry->d_name);
1207
 
    }
1208
 
    return 0;
1209
 
  }
1210
 
  
1211
 
  if(not good_flags(if_entry->d_name, &ifr)){
1212
 
    return 0;
1213
 
  }
1214
 
  return 1;
1215
 
}
1216
 
 
1217
 
/* 
1218
 
 * This function determines if a network interface is up.
1219
 
 */
1220
 
bool interface_is_up(const char *interface){
1221
 
  struct ifreq ifr;
1222
 
  if(not get_flags(interface, &ifr)){
1223
 
    if(debug){
1224
 
      fprintf_plus(stderr, "Failed to get flags for interface "
1225
 
                   "\"%s\"\n", interface);
1226
 
    }
1227
 
    return false;
1228
 
  }
1229
 
  
1230
 
  return (bool)(ifr.ifr_flags & IFF_UP);
1231
 
}
1232
 
 
1233
 
/* 
1234
 
 * This function determines if a network interface is running
1235
 
 */
1236
 
bool interface_is_running(const char *interface){
1237
 
  struct ifreq ifr;
1238
 
  if(not get_flags(interface, &ifr)){
1239
 
    if(debug){
1240
 
      fprintf_plus(stderr, "Failed to get flags for interface "
1241
 
                   "\"%s\"\n", interface);
1242
 
    }
1243
 
    return false;
1244
 
  }
1245
 
  
1246
 
  return (bool)(ifr.ifr_flags & IFF_RUNNING);
 
1211
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1212
              "Failed to get flags for interface \"%s\"\n",
 
1213
              if_entry->d_name);
 
1214
    }
 
1215
    return 0;
 
1216
  }
 
1217
  
 
1218
  if(not good_flags(if_entry->d_name, &ifr)){
 
1219
    return 0;
 
1220
  }
 
1221
  return 1;
 
1222
}
 
1223
 
 
1224
/* 
 
1225
 * This function determines if a directory entry in /sys/class/net
 
1226
 * corresponds to an acceptable network device which is up.
 
1227
 * (This function is passed to scandir(3) as a filter function.)
 
1228
 */
 
1229
int up_interface(const struct dirent *if_entry){
 
1230
  if(if_entry->d_name[0] == '.'){
 
1231
    return 0;
 
1232
  }
 
1233
  
 
1234
  struct ifreq ifr;
 
1235
  if(not get_flags(if_entry->d_name, &ifr)){
 
1236
    if(debug){
 
1237
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1238
              "Failed to get flags for interface \"%s\"\n",
 
1239
              if_entry->d_name);
 
1240
    }
 
1241
    return 0;
 
1242
  }
 
1243
  
 
1244
  /* Reject down interfaces */
 
1245
  if(not (ifr.ifr_flags & IFF_UP)){
 
1246
    if(debug){
 
1247
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1248
              "Rejecting down interface \"%s\"\n",
 
1249
              if_entry->d_name);
 
1250
    }
 
1251
    return 0;
 
1252
  }
 
1253
  
 
1254
  /* Reject non-running interfaces */
 
1255
  if(not (ifr.ifr_flags & IFF_RUNNING)){
 
1256
    if(debug){
 
1257
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1258
              "Rejecting non-running interface \"%s\"\n",
 
1259
              if_entry->d_name);
 
1260
    }
 
1261
    return 0;
 
1262
  }
 
1263
  
 
1264
  if(not good_flags(if_entry->d_name, &ifr)){
 
1265
    return 0;
 
1266
  }
 
1267
  return 1;
1247
1268
}
1248
1269
 
1249
1270
int notdotentries(const struct dirent *direntry){
1260
1281
/* Is this directory entry a runnable program? */
1261
1282
int runnable_hook(const struct dirent *direntry){
1262
1283
  int ret;
1263
 
  size_t sret;
1264
1284
  struct stat st;
1265
1285
  
1266
1286
  if((direntry->d_name)[0] == '\0'){
1268
1288
    return 0;
1269
1289
  }
1270
1290
  
1271
 
  sret = strspn(direntry->d_name, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1272
 
                "abcdefghijklmnopqrstuvwxyz"
1273
 
                "0123456789"
1274
 
                "_-");
1275
 
  if((direntry->d_name)[sret] != '\0'){
1276
 
    /* Contains non-allowed characters */
1277
 
    if(debug){
1278
 
      fprintf_plus(stderr, "Ignoring hook \"%s\" with bad name\n",
1279
 
                   direntry->d_name);
1280
 
    }
1281
 
    return 0;
1282
 
  }
1283
 
  
1284
 
  char *fullname = NULL;
1285
 
  ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1286
 
  if(ret < 0){
1287
 
    perror_plus("asprintf");
1288
 
    return 0;
1289
 
  }
1290
 
  
1291
 
  ret = stat(fullname, &st);
 
1291
  /* Save pointer to last character */
 
1292
  char *end = strchr(direntry->d_name, '\0')-1;
 
1293
  
 
1294
  if(*end == '~'){
 
1295
    /* Backup name~ */
 
1296
    return 0;
 
1297
  }
 
1298
  
 
1299
  if(((direntry->d_name)[0] == '#')
 
1300
     and (*end == '#')){
 
1301
    /* Temporary #name# */
 
1302
    return 0;
 
1303
  }
 
1304
  
 
1305
  /* XXX more rules here */
 
1306
  
 
1307
  ret = stat(direntry->d_name, &st);
1292
1308
  if(ret == -1){
1293
1309
    if(debug){
1294
 
      perror_plus("Could not stat hook");
 
1310
      perror_plus("Could not stat plugin");
1295
1311
    }
1296
1312
    return 0;
1297
1313
  }
1298
1314
  if(not (S_ISREG(st.st_mode))){
1299
1315
    /* Not a regular file */
1300
 
    if(debug){
1301
 
      fprintf_plus(stderr, "Ignoring hook \"%s\" - not a file\n",
1302
 
                   direntry->d_name);
1303
 
    }
1304
1316
    return 0;
1305
1317
  }
1306
1318
  if(not (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))){
1307
1319
    /* Not executable */
1308
 
    if(debug){
1309
 
      fprintf_plus(stderr, "Ignoring hook \"%s\" - not executable\n",
1310
 
                   direntry->d_name);
1311
 
    }
1312
1320
    return 0;
1313
1321
  }
1314
 
  if(debug){
1315
 
    fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
1316
 
                 direntry->d_name);
1317
 
  }
1318
1322
  return 1;
1319
1323
}
1320
1324
 
1327
1331
  while(true){
1328
1332
    if(mc.current_server == NULL){
1329
1333
      if (debug){
1330
 
        fprintf_plus(stderr, "Wait until first server is found."
1331
 
                     " No timeout!\n");
 
1334
        fprintf(stderr, "Mandos plugin mandos-client: "
 
1335
                "Wait until first server is found. No timeout!\n");
1332
1336
      }
1333
1337
      ret = avahi_simple_poll_iterate(s, -1);
1334
1338
    } else {
1335
1339
      if (debug){
1336
 
        fprintf_plus(stderr, "Check current_server if we should run"
1337
 
                     " it, or wait\n");
 
1340
        fprintf(stderr, "Mandos plugin mandos-client: "
 
1341
                "Check current_server if we should run it,"
 
1342
                " or wait\n");
1338
1343
      }
1339
1344
      /* the current time */
1340
1345
      ret = clock_gettime(CLOCK_MONOTONIC, &now);
1356
1361
                    - ((intmax_t)waited_time.tv_nsec / 1000000));
1357
1362
      
1358
1363
      if (debug){
1359
 
        fprintf_plus(stderr, "Blocking for %" PRIdMAX " ms\n",
1360
 
                     block_time);
 
1364
        fprintf(stderr, "Mandos plugin mandos-client: "
 
1365
                "Blocking for %" PRIdMAX " ms\n", block_time);
1361
1366
      }
1362
1367
      
1363
1368
      if(block_time <= 0){
1390
1395
  }
1391
1396
}
1392
1397
 
1393
 
/* Set effective uid to 0, return errno */
1394
 
error_t raise_privileges(void){
1395
 
  error_t old_errno = errno;
1396
 
  error_t ret_errno = 0;
1397
 
  if(seteuid(0) == -1){
1398
 
    ret_errno = errno;
1399
 
    perror_plus("seteuid");
1400
 
  }
1401
 
  errno = old_errno;
1402
 
  return ret_errno;
1403
 
}
1404
 
 
1405
 
/* Set effective and real user ID to 0.  Return errno. */
1406
 
error_t raise_privileges_permanently(void){
1407
 
  error_t old_errno = errno;
1408
 
  error_t ret_errno = raise_privileges();
1409
 
  if(ret_errno != 0){
1410
 
    errno = old_errno;
1411
 
    return ret_errno;
1412
 
  }
1413
 
  if(setuid(0) == -1){
1414
 
    ret_errno = errno;
1415
 
    perror_plus("seteuid");
1416
 
  }
1417
 
  errno = old_errno;
1418
 
  return ret_errno;
1419
 
}
1420
 
 
1421
 
/* Set effective user ID to unprivileged saved user ID */
1422
 
error_t lower_privileges(void){
1423
 
  error_t old_errno = errno;
1424
 
  error_t ret_errno = 0;
1425
 
  if(seteuid(uid) == -1){
1426
 
    ret_errno = errno;
1427
 
    perror_plus("seteuid");
1428
 
  }
1429
 
  errno = old_errno;
1430
 
  return ret_errno;
1431
 
}
1432
 
 
1433
 
/* Lower privileges permanently */
1434
 
error_t lower_privileges_permanently(void){
1435
 
  error_t old_errno = errno;
1436
 
  error_t ret_errno = 0;
1437
 
  if(setuid(uid) == -1){
1438
 
    ret_errno = errno;
1439
 
    perror_plus("setuid");
1440
 
  }
1441
 
  errno = old_errno;
1442
 
  return ret_errno;
1443
 
}
1444
 
 
1445
 
bool run_network_hooks(const char *mode, const char *interface,
1446
 
                       const float delay){
1447
 
  struct dirent **direntries;
1448
 
  struct dirent *direntry;
1449
 
  int ret;
1450
 
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
1451
 
                         alphasort);
1452
 
  if(numhooks == -1){
1453
 
    perror_plus("scandir");
1454
 
  } else {
1455
 
    int devnull = open("/dev/null", O_RDONLY);
1456
 
    for(int i = 0; i < numhooks; i++){
1457
 
      direntry = direntries[i];
1458
 
      char *fullname = NULL;
1459
 
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1460
 
      if(ret < 0){
1461
 
        perror_plus("asprintf");
1462
 
        continue;
1463
 
      }
1464
 
      if(debug){
1465
 
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
1466
 
                     direntry->d_name);
1467
 
      }
1468
 
      pid_t hook_pid = fork();
1469
 
      if(hook_pid == 0){
1470
 
        /* Child */
1471
 
        /* Raise privileges */
1472
 
        raise_privileges_permanently();
1473
 
        /* Set group */
1474
 
        errno = 0;
1475
 
        ret = setgid(0);
1476
 
        if(ret == -1){
1477
 
          perror_plus("setgid");
1478
 
        }
1479
 
        /* Reset supplementary groups */
1480
 
        errno = 0;
1481
 
        ret = setgroups(0, NULL);
1482
 
        if(ret == -1){
1483
 
          perror_plus("setgroups");
1484
 
        }
1485
 
        dup2(devnull, STDIN_FILENO);
1486
 
        close(devnull);
1487
 
        dup2(STDERR_FILENO, STDOUT_FILENO);
1488
 
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1489
 
        if(ret == -1){
1490
 
          perror_plus("setenv");
1491
 
          _exit(EX_OSERR);
1492
 
        }
1493
 
        ret = setenv("DEVICE", interface, 1);
1494
 
        if(ret == -1){
1495
 
          perror_plus("setenv");
1496
 
          _exit(EX_OSERR);
1497
 
        }
1498
 
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
1499
 
        if(ret == -1){
1500
 
          perror_plus("setenv");
1501
 
          _exit(EX_OSERR);
1502
 
        }
1503
 
        ret = setenv("MODE", mode, 1);
1504
 
        if(ret == -1){
1505
 
          perror_plus("setenv");
1506
 
          _exit(EX_OSERR);
1507
 
        }
1508
 
        char *delaystring;
1509
 
        ret = asprintf(&delaystring, "%f", delay);
1510
 
        if(ret == -1){
1511
 
          perror_plus("asprintf");
1512
 
          _exit(EX_OSERR);
1513
 
        }
1514
 
        ret = setenv("DELAY", delaystring, 1);
1515
 
        if(ret == -1){
1516
 
          free(delaystring);
1517
 
          perror_plus("setenv");
1518
 
          _exit(EX_OSERR);
1519
 
        }
1520
 
        free(delaystring);
1521
 
        if(connect_to != NULL){
1522
 
          ret = setenv("CONNECT", connect_to, 1);
1523
 
          if(ret == -1){
1524
 
            perror_plus("setenv");
1525
 
            _exit(EX_OSERR);
1526
 
          }
1527
 
        }
1528
 
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
1529
 
          perror_plus("execl");
1530
 
          _exit(EXIT_FAILURE);
1531
 
        }
1532
 
      } else {
1533
 
        int status;
1534
 
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1535
 
          perror_plus("waitpid");
1536
 
          free(fullname);
1537
 
          continue;
1538
 
        }
1539
 
        if(WIFEXITED(status)){
1540
 
          if(WEXITSTATUS(status) != 0){
1541
 
            fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
1542
 
                         " with status %d\n", direntry->d_name,
1543
 
                         WEXITSTATUS(status));
1544
 
            free(fullname);
1545
 
            continue;
1546
 
          }
1547
 
        } else if(WIFSIGNALED(status)){
1548
 
          fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
1549
 
                       " signal %d\n", direntry->d_name,
1550
 
                       WTERMSIG(status));
1551
 
          free(fullname);
1552
 
          continue;
1553
 
        } else {
1554
 
          fprintf_plus(stderr, "Warning: network hook \"%s\""
1555
 
                       " crashed\n", direntry->d_name);
1556
 
          free(fullname);
1557
 
          continue;
1558
 
        }
1559
 
      }
1560
 
      free(fullname);
1561
 
      if(debug){
1562
 
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
1563
 
                     direntry->d_name);
1564
 
      }
1565
 
    }
1566
 
    close(devnull);
1567
 
  }
1568
 
  return true;
1569
 
}
1570
 
 
1571
 
error_t bring_up_interface(const char *const interface,
1572
 
                           const float delay){
1573
 
  int sd = -1;
1574
 
  error_t old_errno = errno;
1575
 
  error_t ret_errno = 0;
1576
 
  int ret, ret_setflags;
1577
 
  struct ifreq network;
1578
 
  unsigned int if_index = if_nametoindex(interface);
1579
 
  if(if_index == 0){
1580
 
    fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1581
 
    errno = old_errno;
1582
 
    return ENXIO;
1583
 
  }
1584
 
  
1585
 
  if(quit_now){
1586
 
    errno = old_errno;
1587
 
    return EINTR;
1588
 
  }
1589
 
  
1590
 
  if(not interface_is_up(interface)){
1591
 
    if(not get_flags(interface, &network) and debug){
1592
 
      ret_errno = errno;
1593
 
      fprintf_plus(stderr, "Failed to get flags for interface "
1594
 
                   "\"%s\"\n", interface);
1595
 
      return ret_errno;
1596
 
    }
1597
 
    network.ifr_flags |= IFF_UP;
1598
 
    
1599
 
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1600
 
    if(sd < 0){
1601
 
      ret_errno = errno;
1602
 
      perror_plus("socket");
1603
 
      errno = old_errno;
1604
 
      return ret_errno;
1605
 
    }
1606
 
  
1607
 
    if(quit_now){
1608
 
      close(sd);
1609
 
      errno = old_errno;
1610
 
      return EINTR;
1611
 
    }
1612
 
    
1613
 
    if(debug){
1614
 
      fprintf_plus(stderr, "Bringing up interface \"%s\"\n",
1615
 
                   interface);
1616
 
    }
1617
 
    
1618
 
    /* Raise priviliges */
1619
 
    raise_privileges();
1620
 
    
1621
 
#ifdef __linux__
1622
 
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1623
 
       messages about the network interface to mess up the prompt */
1624
 
    int ret_linux = klogctl(8, NULL, 5);
1625
 
    bool restore_loglevel = true;
1626
 
    if(ret_linux == -1){
1627
 
      restore_loglevel = false;
1628
 
      perror_plus("klogctl");
1629
 
    }
1630
 
#endif  /* __linux__ */
1631
 
    ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1632
 
    ret_errno = errno;
1633
 
#ifdef __linux__
1634
 
    if(restore_loglevel){
1635
 
      ret_linux = klogctl(7, NULL, 0);
1636
 
      if(ret_linux == -1){
1637
 
        perror_plus("klogctl");
1638
 
      }
1639
 
    }
1640
 
#endif  /* __linux__ */
1641
 
    
1642
 
    /* Lower privileges */
1643
 
    lower_privileges();
1644
 
    
1645
 
    /* Close the socket */
1646
 
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
1647
 
    if(ret == -1){
1648
 
      perror_plus("close");
1649
 
    }
1650
 
    
1651
 
    if(ret_setflags == -1){
1652
 
      errno = ret_errno;
1653
 
      perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1654
 
      errno = old_errno;
1655
 
      return ret_errno;
1656
 
    }
1657
 
  } else if(debug){
1658
 
    fprintf_plus(stderr, "Interface \"%s\" is already up; good\n",
1659
 
                 interface);
1660
 
  }
1661
 
  
1662
 
  /* Sleep checking until interface is running.
1663
 
     Check every 0.25s, up to total time of delay */
1664
 
  for(int i=0; i < delay * 4; i++){
1665
 
    if(interface_is_running(interface)){
1666
 
      break;
1667
 
    }
1668
 
    struct timespec sleeptime = { .tv_nsec = 250000000 };
1669
 
    ret = nanosleep(&sleeptime, NULL);
1670
 
    if(ret == -1 and errno != EINTR){
1671
 
      perror_plus("nanosleep");
1672
 
    }
1673
 
  }
1674
 
  
1675
 
  errno = old_errno;
1676
 
  return 0;
1677
 
}
1678
 
 
1679
 
error_t take_down_interface(const char *const interface){
1680
 
  int sd = -1;
1681
 
  error_t old_errno = errno;
1682
 
  error_t ret_errno = 0;
1683
 
  int ret, ret_setflags;
1684
 
  struct ifreq network;
1685
 
  unsigned int if_index = if_nametoindex(interface);
1686
 
  if(if_index == 0){
1687
 
    fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
1688
 
    errno = old_errno;
1689
 
    return ENXIO;
1690
 
  }
1691
 
  if(interface_is_up(interface)){
1692
 
    if(not get_flags(interface, &network) and debug){
1693
 
      ret_errno = errno;
1694
 
      fprintf_plus(stderr, "Failed to get flags for interface "
1695
 
                   "\"%s\"\n", interface);
1696
 
      return ret_errno;
1697
 
    }
1698
 
    network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
1699
 
    
1700
 
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1701
 
    if(sd < 0){
1702
 
      ret_errno = errno;
1703
 
      perror_plus("socket");
1704
 
      errno = old_errno;
1705
 
      return ret_errno;
1706
 
    }
1707
 
    
1708
 
    if(debug){
1709
 
      fprintf_plus(stderr, "Taking down interface \"%s\"\n",
1710
 
                   interface);
1711
 
    }
1712
 
    
1713
 
    /* Raise priviliges */
1714
 
    raise_privileges();
1715
 
    
1716
 
    ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
1717
 
    ret_errno = errno;
1718
 
    
1719
 
    /* Lower privileges */
1720
 
    lower_privileges();
1721
 
    
1722
 
    /* Close the socket */
1723
 
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
1724
 
    if(ret == -1){
1725
 
      perror_plus("close");
1726
 
    }
1727
 
    
1728
 
    if(ret_setflags == -1){
1729
 
      errno = ret_errno;
1730
 
      perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
1731
 
      errno = old_errno;
1732
 
      return ret_errno;
1733
 
    }
1734
 
  } else if(debug){
1735
 
    fprintf_plus(stderr, "Interface \"%s\" is already down; odd\n",
1736
 
                 interface);
1737
 
  }
1738
 
  
1739
 
  errno = old_errno;
1740
 
  return 0;
1741
 
}
1742
 
 
1743
1398
int main(int argc, char *argv[]){
1744
1399
  AvahiSServiceBrowser *sb = NULL;
1745
 
  error_t ret_errno;
 
1400
  int error;
1746
1401
  int ret;
1747
1402
  intmax_t tmpmax;
1748
1403
  char *tmp;
1749
1404
  int exitcode = EXIT_SUCCESS;
1750
 
  char *interfaces = NULL;
1751
 
  size_t interfaces_size = 0;
1752
 
  char *interfaces_to_take_down = NULL;
1753
 
  size_t interfaces_to_take_down_size = 0;
 
1405
  const char *interface = "";
 
1406
  struct ifreq network;
 
1407
  int sd = -1;
 
1408
  bool take_down_interface = false;
 
1409
  uid_t uid;
 
1410
  gid_t gid;
1754
1411
  char tempdir[] = "/tmp/mandosXXXXXX";
1755
1412
  bool tempdir_created = false;
1756
1413
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1757
1414
  const char *seckey = PATHDIR "/" SECKEY;
1758
1415
  const char *pubkey = PATHDIR "/" PUBKEY;
1759
 
  char *interfaces_hooks = NULL;
1760
 
  size_t interfaces_hooks_size = 0;
1761
1416
  
1762
1417
  bool gnutls_initialized = false;
1763
1418
  bool gpgme_initialized = false;
1825
1480
        .group = 2 },
1826
1481
      { .name = "retry", .key = 132,
1827
1482
        .arg = "SECONDS",
1828
 
        .doc = "Retry interval used when denied by the Mandos server",
1829
 
        .group = 2 },
1830
 
      { .name = "network-hook-dir", .key = 133,
1831
 
        .arg = "DIR",
1832
 
        .doc = "Directory where network hooks are located",
 
1483
        .doc = "Retry interval used when denied by the mandos server",
1833
1484
        .group = 2 },
1834
1485
      /*
1835
1486
       * These reproduce what we would get without ARGP_NO_HELP
1854
1505
        connect_to = arg;
1855
1506
        break;
1856
1507
      case 'i':                 /* --interface */
1857
 
        ret_errno = argz_add_sep(&interfaces, &interfaces_size, arg,
1858
 
                                 (int)',');
1859
 
        if(ret_errno != 0){
1860
 
          argp_error(state, "%s", strerror(ret_errno));
1861
 
        }
 
1508
        interface = arg;
1862
1509
        break;
1863
1510
      case 's':                 /* --seckey */
1864
1511
        seckey = arg;
1893
1540
          argp_error(state, "Bad retry interval");
1894
1541
        }
1895
1542
        break;
1896
 
      case 133:                 /* --network-hook-dir */
1897
 
        hookdir = arg;
1898
 
        break;
1899
1543
        /*
1900
1544
         * These reproduce what we would get without ARGP_NO_HELP
1901
1545
         */
1907
1551
        argp_state_help(state, state->out_stream,
1908
1552
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1909
1553
      case 'V':                 /* --version */
1910
 
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
 
1554
        fprintf(state->out_stream, "Mandos plugin mandos-client: ");
 
1555
        fprintf(state->out_stream, "%s\n", argp_program_version);
1911
1556
        exit(argp_err_exit_status);
1912
1557
        break;
1913
1558
      default:
1940
1585
  {
1941
1586
    /* Work around Debian bug #633582:
1942
1587
       <http://bugs.debian.org/633582> */
 
1588
    struct stat st;
1943
1589
    
1944
1590
    /* Re-raise priviliges */
1945
 
    if(raise_privileges() == 0){
1946
 
      struct stat st;
1947
 
      
1948
 
      if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1949
 
        int seckey_fd = open(seckey, O_RDONLY);
1950
 
        if(seckey_fd == -1){
1951
 
          perror_plus("open");
1952
 
        } else {
1953
 
          ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1954
 
          if(ret == -1){
1955
 
            perror_plus("fstat");
1956
 
          } else {
1957
 
            if(S_ISREG(st.st_mode)
1958
 
               and st.st_uid == 0 and st.st_gid == 0){
1959
 
              ret = fchown(seckey_fd, uid, gid);
1960
 
              if(ret == -1){
1961
 
                perror_plus("fchown");
1962
 
              }
1963
 
            }
1964
 
          }
1965
 
          TEMP_FAILURE_RETRY(close(seckey_fd));
1966
 
        }
1967
 
      }
1968
 
    
1969
 
      if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1970
 
        int pubkey_fd = open(pubkey, O_RDONLY);
1971
 
        if(pubkey_fd == -1){
1972
 
          perror_plus("open");
1973
 
        } else {
1974
 
          ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1975
 
          if(ret == -1){
1976
 
            perror_plus("fstat");
1977
 
          } else {
1978
 
            if(S_ISREG(st.st_mode)
1979
 
               and st.st_uid == 0 and st.st_gid == 0){
1980
 
              ret = fchown(pubkey_fd, uid, gid);
1981
 
              if(ret == -1){
1982
 
                perror_plus("fchown");
1983
 
              }
1984
 
            }
1985
 
          }
1986
 
          TEMP_FAILURE_RETRY(close(pubkey_fd));
1987
 
        }
1988
 
      }
1989
 
    
1990
 
      /* Lower privileges */
1991
 
      errno = 0;
1992
 
      ret = seteuid(uid);
1993
 
      if(ret == -1){
1994
 
        perror_plus("seteuid");
1995
 
      }
1996
 
    }
1997
 
  }
1998
 
  
1999
 
  /* Remove empty interface names */
2000
 
  {
2001
 
    char *interface = NULL;
2002
 
    while((interface = argz_next(interfaces, interfaces_size,
2003
 
                                 interface))){
2004
 
      if(if_nametoindex(interface) == 0){
2005
 
        if(interface[0] != '\0' and strcmp(interface, "none") != 0){
2006
 
          fprintf_plus(stderr, "Not using nonexisting interface"
2007
 
                       " \"%s\"\n", interface);
2008
 
        }
2009
 
        argz_delete(&interfaces, &interfaces_size, interface);
2010
 
        interface = NULL;
2011
 
      }
2012
 
    }
2013
 
  }
2014
 
  
2015
 
  /* Run network hooks */
2016
 
  {
2017
 
    ret_errno = argz_append(&interfaces_hooks, &interfaces_hooks_size,
2018
 
                            interfaces, interfaces_size);
2019
 
    if(ret_errno != 0){
2020
 
      errno = ret_errno;
2021
 
      perror_plus("argz_append");
2022
 
      goto end;
2023
 
    }
2024
 
    argz_stringify(interfaces_hooks, interfaces_hooks_size, (int)',');
2025
 
    if(not run_network_hooks("start", interfaces_hooks, delay)){
2026
 
      goto end;
 
1591
    errno = 0;
 
1592
    ret = seteuid(0);
 
1593
    if(ret == -1){
 
1594
      perror_plus("seteuid");
 
1595
    }
 
1596
    
 
1597
    if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
 
1598
      int seckey_fd = open(seckey, O_RDONLY);
 
1599
      if(seckey_fd == -1){
 
1600
        perror_plus("open");
 
1601
      } else {
 
1602
        ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
 
1603
        if(ret == -1){
 
1604
          perror_plus("fstat");
 
1605
        } else {
 
1606
          if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
 
1607
            ret = fchown(seckey_fd, uid, gid);
 
1608
            if(ret == -1){
 
1609
              perror_plus("fchown");
 
1610
            }
 
1611
          }
 
1612
        }
 
1613
        TEMP_FAILURE_RETRY(close(seckey_fd));
 
1614
      }
 
1615
    }
 
1616
    
 
1617
    if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
 
1618
      int pubkey_fd = open(pubkey, O_RDONLY);
 
1619
      if(pubkey_fd == -1){
 
1620
        perror_plus("open");
 
1621
      } else {
 
1622
        ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
 
1623
        if(ret == -1){
 
1624
          perror_plus("fstat");
 
1625
        } else {
 
1626
          if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
 
1627
            ret = fchown(pubkey_fd, uid, gid);
 
1628
            if(ret == -1){
 
1629
              perror_plus("fchown");
 
1630
            }
 
1631
          }
 
1632
        }
 
1633
        TEMP_FAILURE_RETRY(close(pubkey_fd));
 
1634
      }
 
1635
    }
 
1636
    
 
1637
    /* Lower privileges */
 
1638
    errno = 0;
 
1639
    ret = seteuid(uid);
 
1640
    if(ret == -1){
 
1641
      perror_plus("seteuid");
 
1642
    }
 
1643
  }
 
1644
  
 
1645
  /* Find network hooks and run them */
 
1646
  {
 
1647
    struct dirent **direntries;
 
1648
    struct dirent *direntry;
 
1649
    int numhooks = scandir(HOOKDIR, &direntries, runnable_hook,
 
1650
                           alphasort);
 
1651
    if(numhooks == -1){
 
1652
      perror_plus("scandir");
 
1653
    } else {
 
1654
      int devnull = open("/dev/null", O_RDONLY);
 
1655
      for(int i = 0; i < numhooks; i++){
 
1656
        direntry = direntries[0];
 
1657
        char *fullname = NULL;
 
1658
        ret = asprintf(&fullname, "%s/%s", tempdir,
 
1659
                       direntry->d_name);
 
1660
        if(ret < 0){
 
1661
          perror_plus("asprintf");
 
1662
          continue;
 
1663
        }
 
1664
        pid_t hook_pid = fork();
 
1665
        if(hook_pid == 0){
 
1666
          /* Child */
 
1667
          dup2(devnull, STDIN_FILENO);
 
1668
          close(devnull);
 
1669
          dup2(STDERR_FILENO, STDOUT_FILENO);
 
1670
          ret = setenv("DEVICE", interface, 1);
 
1671
          if(ret == -1){
 
1672
            perror_plus("setenv");
 
1673
            exit(1);
 
1674
          }
 
1675
          ret = setenv("VERBOSE", debug ? "1" : "0", 1);
 
1676
          if(ret == -1){
 
1677
            perror_plus("setenv");
 
1678
            exit(1);
 
1679
          }
 
1680
          ret = setenv("MODE", "start", 1);
 
1681
          if(ret == -1){
 
1682
            perror_plus("setenv");
 
1683
            exit(1);
 
1684
          }
 
1685
          char *delaystring;
 
1686
          ret = asprintf(&delaystring, "%f", delay);
 
1687
          if(ret == -1){
 
1688
            perror_plus("asprintf");
 
1689
            exit(1);
 
1690
          }
 
1691
          ret = setenv("DELAY", delaystring, 1);
 
1692
          if(ret == -1){
 
1693
            free(delaystring);
 
1694
            perror_plus("setenv");
 
1695
            exit(1);
 
1696
          }
 
1697
          free(delaystring);
 
1698
          ret = execl(fullname, direntry->d_name, "start", NULL);
 
1699
          perror_plus("execl");
 
1700
        } else {
 
1701
          int status;
 
1702
          if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
1703
            perror_plus("waitpid");
 
1704
            free(fullname);
 
1705
            continue;
 
1706
          }
 
1707
          if(WIFEXITED(status)){
 
1708
            if(WEXITSTATUS(status) != 0){
 
1709
              fprintf(stderr, "Mandos plugin mandos-client: "
 
1710
                      "Warning: network hook \"%s\" exited"
 
1711
                      " with status %d\n", direntry->d_name,
 
1712
                      WEXITSTATUS(status));
 
1713
              free(fullname);
 
1714
              continue;
 
1715
            }
 
1716
          } else if(WIFSIGNALED(status)){
 
1717
            fprintf(stderr, "Mandos plugin mandos-client: "
 
1718
                    "Warning: network hook \"%s\" died by"
 
1719
                    " signal %d\n", direntry->d_name,
 
1720
                    WTERMSIG(status));
 
1721
            free(fullname);
 
1722
            continue;
 
1723
          } else {
 
1724
            fprintf(stderr, "Mandos plugin mandos-client: "
 
1725
                    "Warning: network hook \"%s\" crashed\n",
 
1726
                    direntry->d_name);
 
1727
            free(fullname);
 
1728
            continue;
 
1729
          }
 
1730
        }
 
1731
        free(fullname);
 
1732
        if(quit_now){
 
1733
          goto end;
 
1734
        }
 
1735
      }
 
1736
      close(devnull);
2027
1737
    }
2028
1738
  }
2029
1739
  
2031
1741
    avahi_set_log_function(empty_log);
2032
1742
  }
2033
1743
  
 
1744
  if(interface[0] == '\0'){
 
1745
    struct dirent **direntries;
 
1746
    /* First look for interfaces that are up */
 
1747
    ret = scandir(sys_class_net, &direntries, up_interface,
 
1748
                  alphasort);
 
1749
    if(ret == 0){
 
1750
      /* No up interfaces, look for any good interfaces */
 
1751
      free(direntries);
 
1752
      ret = scandir(sys_class_net, &direntries, good_interface,
 
1753
                    alphasort);
 
1754
    }
 
1755
    if(ret >= 1){
 
1756
      /* Pick the first interface returned */
 
1757
      interface = strdup(direntries[0]->d_name);
 
1758
      if(debug){
 
1759
        fprintf(stderr, "Mandos plugin mandos-client: "
 
1760
                "Using interface \"%s\"\n", interface);
 
1761
      }
 
1762
      if(interface == NULL){
 
1763
        perror_plus("malloc");
 
1764
        free(direntries);
 
1765
        exitcode = EXIT_FAILURE;
 
1766
        goto end;
 
1767
      }
 
1768
      free(direntries);
 
1769
    } else {
 
1770
      free(direntries);
 
1771
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1772
              "Could not find a network interface\n");
 
1773
      exitcode = EXIT_FAILURE;
 
1774
      goto end;
 
1775
    }
 
1776
  }
 
1777
  
2034
1778
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
2035
1779
     from the signal handler */
2036
1780
  /* Initialize the pseudo-RNG for Avahi */
2037
1781
  srand((unsigned int) time(NULL));
2038
1782
  mc.simple_poll = avahi_simple_poll_new();
2039
1783
  if(mc.simple_poll == NULL){
2040
 
    fprintf_plus(stderr,
2041
 
                 "Avahi: Failed to create simple poll object.\n");
 
1784
    fprintf(stderr, "Mandos plugin mandos-client: "
 
1785
            "Avahi: Failed to create simple poll object.\n");
2042
1786
    exitcode = EX_UNAVAILABLE;
2043
1787
    goto end;
2044
1788
  }
2106
1850
    }
2107
1851
  }
2108
1852
  
2109
 
  /* If no interfaces were specified, make a list */
2110
 
  if(interfaces == NULL){
2111
 
    struct dirent **direntries;
2112
 
    /* Look for any good interfaces */
2113
 
    ret = scandir(sys_class_net, &direntries, good_interface,
2114
 
                  alphasort);
2115
 
    if(ret >= 1){
2116
 
      /* Add all found interfaces to interfaces list */
2117
 
      for(int i = 0; i < ret; ++i){
2118
 
        ret_errno = argz_add(&interfaces, &interfaces_size,
2119
 
                             direntries[i]->d_name);
2120
 
        if(ret_errno != 0){
2121
 
          perror_plus("argz_add");
2122
 
          continue;
2123
 
        }
2124
 
        if(debug){
2125
 
          fprintf_plus(stderr, "Will use interface \"%s\"\n",
2126
 
                       direntries[i]->d_name);
2127
 
        }
2128
 
      }
2129
 
      free(direntries);
 
1853
  /* If the interface is down, bring it up */
 
1854
  if(strcmp(interface, "none") != 0){
 
1855
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
1856
    if(if_index == 0){
 
1857
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1858
              "No such interface: \"%s\"\n", interface);
 
1859
      exitcode = EX_UNAVAILABLE;
 
1860
      goto end;
 
1861
    }
 
1862
    
 
1863
    if(quit_now){
 
1864
      goto end;
 
1865
    }
 
1866
    
 
1867
    /* Re-raise priviliges */
 
1868
    errno = 0;
 
1869
    ret = seteuid(0);
 
1870
    if(ret == -1){
 
1871
      perror_plus("seteuid");
 
1872
    }
 
1873
    
 
1874
#ifdef __linux__
 
1875
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
 
1876
       messages about the network interface to mess up the prompt */
 
1877
    ret = klogctl(8, NULL, 5);
 
1878
    bool restore_loglevel = true;
 
1879
    if(ret == -1){
 
1880
      restore_loglevel = false;
 
1881
      perror_plus("klogctl");
 
1882
    }
 
1883
#endif  /* __linux__ */
 
1884
    
 
1885
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1886
    if(sd < 0){
 
1887
      perror_plus("socket");
 
1888
      exitcode = EX_OSERR;
 
1889
#ifdef __linux__
 
1890
      if(restore_loglevel){
 
1891
        ret = klogctl(7, NULL, 0);
 
1892
        if(ret == -1){
 
1893
          perror_plus("klogctl");
 
1894
        }
 
1895
      }
 
1896
#endif  /* __linux__ */
 
1897
      /* Lower privileges */
 
1898
      errno = 0;
 
1899
      ret = seteuid(uid);
 
1900
      if(ret == -1){
 
1901
        perror_plus("seteuid");
 
1902
      }
 
1903
      goto end;
 
1904
    }
 
1905
    strcpy(network.ifr_name, interface);
 
1906
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1907
    if(ret == -1){
 
1908
      perror_plus("ioctl SIOCGIFFLAGS");
 
1909
#ifdef __linux__
 
1910
      if(restore_loglevel){
 
1911
        ret = klogctl(7, NULL, 0);
 
1912
        if(ret == -1){
 
1913
          perror_plus("klogctl");
 
1914
        }
 
1915
      }
 
1916
#endif  /* __linux__ */
 
1917
      exitcode = EX_OSERR;
 
1918
      /* Lower privileges */
 
1919
      errno = 0;
 
1920
      ret = seteuid(uid);
 
1921
      if(ret == -1){
 
1922
        perror_plus("seteuid");
 
1923
      }
 
1924
      goto end;
 
1925
    }
 
1926
    if((network.ifr_flags & IFF_UP) == 0){
 
1927
      network.ifr_flags |= IFF_UP;
 
1928
      take_down_interface = true;
 
1929
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
1930
      if(ret == -1){
 
1931
        take_down_interface = false;
 
1932
        perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
 
1933
        exitcode = EX_OSERR;
 
1934
#ifdef __linux__
 
1935
        if(restore_loglevel){
 
1936
          ret = klogctl(7, NULL, 0);
 
1937
          if(ret == -1){
 
1938
            perror_plus("klogctl");
 
1939
          }
 
1940
        }
 
1941
#endif  /* __linux__ */
 
1942
        /* Lower privileges */
 
1943
        errno = 0;
 
1944
        ret = seteuid(uid);
 
1945
        if(ret == -1){
 
1946
          perror_plus("seteuid");
 
1947
        }
 
1948
        goto end;
 
1949
      }
 
1950
    }
 
1951
    /* Sleep checking until interface is running.
 
1952
       Check every 0.25s, up to total time of delay */
 
1953
    for(int i=0; i < delay * 4; i++){
 
1954
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1955
      if(ret == -1){
 
1956
        perror_plus("ioctl SIOCGIFFLAGS");
 
1957
      } else if(network.ifr_flags & IFF_RUNNING){
 
1958
        break;
 
1959
      }
 
1960
      struct timespec sleeptime = { .tv_nsec = 250000000 };
 
1961
      ret = nanosleep(&sleeptime, NULL);
 
1962
      if(ret == -1 and errno != EINTR){
 
1963
        perror_plus("nanosleep");
 
1964
      }
 
1965
    }
 
1966
    if(not take_down_interface){
 
1967
      /* We won't need the socket anymore */
 
1968
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1969
      if(ret == -1){
 
1970
        perror_plus("close");
 
1971
      }
 
1972
    }
 
1973
#ifdef __linux__
 
1974
    if(restore_loglevel){
 
1975
      /* Restores kernel loglevel to default */
 
1976
      ret = klogctl(7, NULL, 0);
 
1977
      if(ret == -1){
 
1978
        perror_plus("klogctl");
 
1979
      }
 
1980
    }
 
1981
#endif  /* __linux__ */
 
1982
    /* Lower privileges */
 
1983
    errno = 0;
 
1984
    if(take_down_interface){
 
1985
      /* Lower privileges */
 
1986
      ret = seteuid(uid);
 
1987
      if(ret == -1){
 
1988
        perror_plus("seteuid");
 
1989
      }
2130
1990
    } else {
2131
 
      free(direntries);
2132
 
      fprintf_plus(stderr, "Could not find a network interface\n");
2133
 
      exitcode = EXIT_FAILURE;
2134
 
      goto end;
2135
 
    }
2136
 
  }
2137
 
  
2138
 
  /* If we only got one interface, explicitly use only that one */
2139
 
  if(argz_count(interfaces, interfaces_size) == 1){
2140
 
    if(debug){
2141
 
      fprintf_plus(stderr, "Using only interface \"%s\"\n",
2142
 
                   interfaces);
2143
 
    }
2144
 
    if_index = (AvahiIfIndex)if_nametoindex(interfaces);
2145
 
  }
2146
 
  
2147
 
  /* Bring up interfaces which are down */
2148
 
  if(not (argz_count(interfaces, interfaces_size) == 1
2149
 
          and strcmp(interfaces, "none") == 0)){
2150
 
    char *interface = NULL;
2151
 
    while((interface = argz_next(interfaces, interfaces_size,
2152
 
                                 interface))){
2153
 
      bool interface_was_up = interface_is_up(interface);
2154
 
      ret = bring_up_interface(interface, delay);
2155
 
      if(not interface_was_up){
2156
 
        if(ret != 0){
2157
 
          errno = ret;
2158
 
          perror_plus("Failed to bring up interface");
2159
 
        } else {
2160
 
          ret_errno = argz_add(&interfaces_to_take_down,
2161
 
                               &interfaces_to_take_down_size,
2162
 
                               interface);
2163
 
        }
 
1991
      /* Lower privileges permanently */
 
1992
      ret = setuid(uid);
 
1993
      if(ret == -1){
 
1994
        perror_plus("setuid");
2164
1995
      }
2165
1996
    }
2166
 
    free(interfaces);
2167
 
    interfaces = NULL;
2168
 
    interfaces_size = 0;
2169
 
    if(debug and (interfaces_to_take_down == NULL)){
2170
 
      fprintf_plus(stderr, "No interfaces were brought up\n");
2171
 
    }
2172
1997
  }
2173
1998
  
2174
1999
  if(quit_now){
2177
2002
  
2178
2003
  ret = init_gnutls_global(pubkey, seckey);
2179
2004
  if(ret == -1){
2180
 
    fprintf_plus(stderr, "init_gnutls_global failed\n");
 
2005
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2006
            "init_gnutls_global failed\n");
2181
2007
    exitcode = EX_UNAVAILABLE;
2182
2008
    goto end;
2183
2009
  } else {
2199
2025
  }
2200
2026
  
2201
2027
  if(not init_gpgme(pubkey, seckey, tempdir)){
2202
 
    fprintf_plus(stderr, "init_gpgme failed\n");
 
2028
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2029
            "init_gpgme failed\n");
2203
2030
    exitcode = EX_UNAVAILABLE;
2204
2031
    goto end;
2205
2032
  } else {
2214
2041
    /* Connect directly, do not use Zeroconf */
2215
2042
    /* (Mainly meant for debugging) */
2216
2043
    char *address = strrchr(connect_to, ':');
2217
 
    
2218
2044
    if(address == NULL){
2219
 
      fprintf_plus(stderr, "No colon in address\n");
 
2045
      fprintf(stderr, "Mandos plugin mandos-client: "
 
2046
              "No colon in address\n");
2220
2047
      exitcode = EX_USAGE;
2221
2048
      goto end;
2222
2049
    }
2230
2057
    tmpmax = strtoimax(address+1, &tmp, 10);
2231
2058
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
2232
2059
       or tmpmax != (uint16_t)tmpmax){
2233
 
      fprintf_plus(stderr, "Bad port number\n");
 
2060
      fprintf(stderr, "Mandos plugin mandos-client: "
 
2061
              "Bad port number\n");
2234
2062
      exitcode = EX_USAGE;
2235
2063
      goto end;
2236
2064
    }
2266
2094
        break;
2267
2095
      }
2268
2096
      if(debug){
2269
 
        fprintf_plus(stderr, "Retrying in %d seconds\n",
2270
 
                     (int)retry_interval);
 
2097
        fprintf(stderr, "Mandos plugin mandos-client: "
 
2098
                "Retrying in %d seconds\n", (int)retry_interval);
2271
2099
      }
2272
2100
      sleep((int)retry_interval);
2273
2101
    }
2295
2123
    /* Allocate a new server */
2296
2124
    mc.server = avahi_server_new(avahi_simple_poll_get
2297
2125
                                 (mc.simple_poll), &config, NULL,
2298
 
                                 NULL, &ret_errno);
 
2126
                                 NULL, &error);
2299
2127
    
2300
2128
    /* Free the Avahi configuration data */
2301
2129
    avahi_server_config_free(&config);
2303
2131
  
2304
2132
  /* Check if creating the Avahi server object succeeded */
2305
2133
  if(mc.server == NULL){
2306
 
    fprintf_plus(stderr, "Failed to create Avahi server: %s\n",
2307
 
                 avahi_strerror(ret_errno));
 
2134
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2135
            "Failed to create Avahi server: %s\n",
 
2136
            avahi_strerror(error));
2308
2137
    exitcode = EX_UNAVAILABLE;
2309
2138
    goto end;
2310
2139
  }
2318
2147
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
2319
2148
                                   NULL, 0, browse_callback, NULL);
2320
2149
  if(sb == NULL){
2321
 
    fprintf_plus(stderr, "Failed to create service browser: %s\n",
2322
 
                 avahi_strerror(avahi_server_errno(mc.server)));
 
2150
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2151
            "Failed to create service browser: %s\n",
 
2152
            avahi_strerror(avahi_server_errno(mc.server)));
2323
2153
    exitcode = EX_UNAVAILABLE;
2324
2154
    goto end;
2325
2155
  }
2331
2161
  /* Run the main loop */
2332
2162
  
2333
2163
  if(debug){
2334
 
    fprintf_plus(stderr, "Starting Avahi loop search\n");
 
2164
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2165
            "Starting Avahi loop search\n");
2335
2166
  }
2336
2167
 
2337
2168
  ret = avahi_loop_with_timeout(mc.simple_poll,
2338
2169
                                (int)(retry_interval * 1000));
2339
2170
  if(debug){
2340
 
    fprintf_plus(stderr, "avahi_loop_with_timeout exited %s\n",
2341
 
                 (ret == 0) ? "successfully" : "with error");
 
2171
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2172
            "avahi_loop_with_timeout exited %s\n",
 
2173
            (ret == 0) ? "successfully" : "with error");
2342
2174
  }
2343
2175
  
2344
2176
 end:
2345
2177
  
2346
2178
  if(debug){
2347
 
    fprintf_plus(stderr, "%s exiting\n", argv[0]);
 
2179
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2180
            "%s exiting\n", argv[0]);
2348
2181
  }
2349
2182
  
2350
2183
  /* Cleanup things */
2366
2199
  if(gpgme_initialized){
2367
2200
    gpgme_release(mc.ctx);
2368
2201
  }
2369
 
  
 
2202
 
2370
2203
  /* Cleans up the circular linked list of Mandos servers the client
2371
2204
     has seen */
2372
2205
  if(mc.current_server != NULL){
2378
2211
    }
2379
2212
  }
2380
2213
  
2381
 
  /* Re-raise priviliges */
2382
 
  {
2383
 
    raise_privileges();
2384
 
    
2385
 
    /* Run network hooks */
2386
 
    run_network_hooks("stop", interfaces_hooks, delay);
2387
 
    
2388
 
    /* Take down the network interfaces which were brought up */
2389
 
    {
2390
 
      char *interface = NULL;
2391
 
      while((interface=argz_next(interfaces_to_take_down,
2392
 
                                 interfaces_to_take_down_size,
2393
 
                                 interface))){
2394
 
        ret_errno = take_down_interface(interface);
2395
 
        if(ret_errno != 0){
2396
 
          errno = ret_errno;
2397
 
          perror_plus("Failed to take down interface");
 
2214
  /* XXX run network hooks "stop" here  */
 
2215
  
 
2216
  /* Take down the network interface */
 
2217
  if(take_down_interface){
 
2218
    /* Re-raise priviliges */
 
2219
    errno = 0;
 
2220
    ret = seteuid(0);
 
2221
    if(ret == -1){
 
2222
      perror_plus("seteuid");
 
2223
    }
 
2224
    if(geteuid() == 0){
 
2225
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
2226
      if(ret == -1){
 
2227
        perror_plus("ioctl SIOCGIFFLAGS");
 
2228
      } else if(network.ifr_flags & IFF_UP){
 
2229
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
 
2230
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
2231
        if(ret == -1){
 
2232
          perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
2398
2233
        }
2399
2234
      }
2400
 
      if(debug and (interfaces_to_take_down == NULL)){
2401
 
        fprintf_plus(stderr, "No interfaces needed to be taken"
2402
 
                     " down\n");
 
2235
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
2236
      if(ret == -1){
 
2237
        perror_plus("close");
 
2238
      }
 
2239
      /* Lower privileges permanently */
 
2240
      errno = 0;
 
2241
      ret = setuid(uid);
 
2242
      if(ret == -1){
 
2243
        perror_plus("setuid");
2403
2244
      }
2404
2245
    }
2405
 
    
2406
 
    lower_privileges_permanently();
2407
2246
  }
2408
2247
  
2409
 
  free(interfaces_to_take_down);
2410
 
  free(interfaces_hooks);
2411
 
  
2412
2248
  /* Removes the GPGME temp directory and all files inside */
2413
2249
  if(tempdir_created){
2414
2250
    struct dirent **direntries = NULL;
2427
2263
        }
2428
2264
        ret = remove(fullname);
2429
2265
        if(ret == -1){
2430
 
          fprintf_plus(stderr, "remove(\"%s\"): %s\n", fullname,
2431
 
                       strerror(errno));
 
2266
          fprintf(stderr, "Mandos plugin mandos-client: "
 
2267
                  "remove(\"%s\"): %s\n", fullname, strerror(errno));
2432
2268
        }
2433
2269
        free(fullname);
2434
2270
      }