/mandos/trunk

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

« back to all changes in this revision

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

  • Committer: Teddy Hogeborn
  • Date: 2012-06-09 23:41:07 UTC
  • mto: This revision was merged to the branch mainline in revision 596.
  • Revision ID: teddy@recompile.se-20120609234107-vm6zilzz0y6aihsm
* plugins.d/mandos-client.c (raise_privileges,
  raise_privileges_permanently, lower_privileges): Return error_t and
                                                   save old errno
                                                   before calling any
                                                   other function.

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-2012 Teddy Hogeborn
 
13
 * Copyright © 2008-2012 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 */
 
44
#include <stdint.h>             /* uint16_t, uint32_t, intptr_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() */
 
76
                                   setgid(), pause(), _exit() */
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() */
90
91
 
91
92
#ifdef __linux__
92
93
#include <sys/klog.h>           /* klogctl() */
134
135
static const char sys_class_net[] = "/sys/class/net";
135
136
char *connect_to = NULL;
136
137
const char *hookdir = HOOKDIR;
 
138
uid_t uid = 65534;
 
139
gid_t gid = 65534;
137
140
 
138
141
/* Doubly linked list that need to be circularly linked when used */
139
142
typedef struct server{
169
172
 
170
173
/* Function to use when printing errors */
171
174
void perror_plus(const char *print_text){
 
175
  int e = errno;
172
176
  fprintf(stderr, "Mandos plugin %s: ",
173
177
          program_invocation_short_name);
 
178
  errno = e;
174
179
  perror(print_text);
175
180
}
176
181
 
 
182
__attribute__((format (gnu_printf, 2, 3)))
 
183
int fprintf_plus(FILE *stream, const char *format, ...){
 
184
  va_list ap;
 
185
  va_start (ap, format);
 
186
  
 
187
  TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
 
188
                             program_invocation_short_name));
 
189
  return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
 
190
}
 
191
 
177
192
/*
178
193
 * Make additional room in "buffer" for at least BUFFER_SIZE more
179
194
 * bytes. "buffer_capacity" is how much is currently allocated,
192
207
}
193
208
 
194
209
/* Add server to set of servers to retry periodically */
195
 
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
196
 
               int af){
 
210
bool add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
 
211
                int af){
197
212
  int ret;
198
213
  server *new_server = malloc(sizeof(server));
199
214
  if(new_server == NULL){
200
215
    perror_plus("malloc");
201
 
    return -1;
 
216
    return false;
202
217
  }
203
218
  *new_server = (server){ .ip = strdup(ip),
204
219
                          .port = port,
206
221
                          .af = af };
207
222
  if(new_server->ip == NULL){
208
223
    perror_plus("strdup");
209
 
    return -1;
 
224
    return false;
210
225
  }
211
226
  /* Special case of first server */
212
227
  if (mc.current_server == NULL){
223
238
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
224
239
  if(ret == -1){
225
240
    perror_plus("clock_gettime");
226
 
    return -1;
 
241
    return false;
227
242
  }
228
 
  return 0;
 
243
  return true;
229
244
}
230
245
 
231
246
/* 
253
268
    
254
269
    rc = gpgme_data_new_from_fd(&pgp_data, fd);
255
270
    if(rc != GPG_ERR_NO_ERROR){
256
 
      fprintf(stderr, "Mandos plugin mandos-client: "
257
 
              "bad gpgme_data_new_from_fd: %s: %s\n",
258
 
              gpgme_strsource(rc), gpgme_strerror(rc));
 
271
      fprintf_plus(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
 
272
                   gpgme_strsource(rc), gpgme_strerror(rc));
259
273
      return false;
260
274
    }
261
275
    
262
276
    rc = gpgme_op_import(mc.ctx, pgp_data);
263
277
    if(rc != GPG_ERR_NO_ERROR){
264
 
      fprintf(stderr, "Mandos plugin mandos-client: "
265
 
              "bad gpgme_op_import: %s: %s\n",
266
 
              gpgme_strsource(rc), gpgme_strerror(rc));
 
278
      fprintf_plus(stderr, "bad gpgme_op_import: %s: %s\n",
 
279
                   gpgme_strsource(rc), gpgme_strerror(rc));
267
280
      return false;
268
281
    }
269
282
    
276
289
  }
277
290
  
278
291
  if(debug){
279
 
    fprintf(stderr, "Mandos plugin mandos-client: "
280
 
            "Initializing GPGME\n");
 
292
    fprintf_plus(stderr, "Initializing GPGME\n");
281
293
  }
282
294
  
283
295
  /* Init GPGME */
284
296
  gpgme_check_version(NULL);
285
297
  rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
286
298
  if(rc != GPG_ERR_NO_ERROR){
287
 
    fprintf(stderr, "Mandos plugin mandos-client: "
288
 
            "bad gpgme_engine_check_version: %s: %s\n",
289
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
299
    fprintf_plus(stderr, "bad gpgme_engine_check_version: %s: %s\n",
 
300
                 gpgme_strsource(rc), gpgme_strerror(rc));
290
301
    return false;
291
302
  }
292
303
  
293
304
  /* Set GPGME home directory for the OpenPGP engine only */
294
305
  rc = gpgme_get_engine_info(&engine_info);
295
306
  if(rc != GPG_ERR_NO_ERROR){
296
 
    fprintf(stderr, "Mandos plugin mandos-client: "
297
 
            "bad gpgme_get_engine_info: %s: %s\n",
298
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
307
    fprintf_plus(stderr, "bad gpgme_get_engine_info: %s: %s\n",
 
308
                 gpgme_strsource(rc), gpgme_strerror(rc));
299
309
    return false;
300
310
  }
301
311
  while(engine_info != NULL){
307
317
    engine_info = engine_info->next;
308
318
  }
309
319
  if(engine_info == NULL){
310
 
    fprintf(stderr, "Mandos plugin mandos-client: "
311
 
            "Could not set GPGME home dir to %s\n", tempdir);
 
320
    fprintf_plus(stderr, "Could not set GPGME home dir to %s\n",
 
321
                 tempdir);
312
322
    return false;
313
323
  }
314
324
  
315
325
  /* Create new GPGME "context" */
316
326
  rc = gpgme_new(&(mc.ctx));
317
327
  if(rc != GPG_ERR_NO_ERROR){
318
 
    fprintf(stderr, "Mandos plugin mandos-client: "
319
 
            "bad gpgme_new: %s: %s\n", gpgme_strsource(rc),
320
 
            gpgme_strerror(rc));
 
328
    fprintf_plus(stderr, "Mandos plugin mandos-client: "
 
329
                 "bad gpgme_new: %s: %s\n", gpgme_strsource(rc),
 
330
                 gpgme_strerror(rc));
321
331
    return false;
322
332
  }
323
333
  
342
352
  ssize_t plaintext_length = 0;
343
353
  
344
354
  if(debug){
345
 
    fprintf(stderr, "Mandos plugin mandos-client: "
346
 
            "Trying to decrypt OpenPGP data\n");
 
355
    fprintf_plus(stderr, "Trying to decrypt OpenPGP data\n");
347
356
  }
348
357
  
349
358
  /* Create new GPGME data buffer from memory cryptotext */
350
359
  rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
351
360
                               0);
352
361
  if(rc != GPG_ERR_NO_ERROR){
353
 
    fprintf(stderr, "Mandos plugin mandos-client: "
354
 
            "bad gpgme_data_new_from_mem: %s: %s\n",
355
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
362
    fprintf_plus(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
 
363
                 gpgme_strsource(rc), gpgme_strerror(rc));
356
364
    return -1;
357
365
  }
358
366
  
359
367
  /* Create new empty GPGME data buffer for the plaintext */
360
368
  rc = gpgme_data_new(&dh_plain);
361
369
  if(rc != GPG_ERR_NO_ERROR){
362
 
    fprintf(stderr, "Mandos plugin mandos-client: "
363
 
            "bad gpgme_data_new: %s: %s\n",
364
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
370
    fprintf_plus(stderr, "Mandos plugin mandos-client: "
 
371
                 "bad gpgme_data_new: %s: %s\n",
 
372
                 gpgme_strsource(rc), gpgme_strerror(rc));
365
373
    gpgme_data_release(dh_crypto);
366
374
    return -1;
367
375
  }
370
378
     data buffer */
371
379
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
372
380
  if(rc != GPG_ERR_NO_ERROR){
373
 
    fprintf(stderr, "Mandos plugin mandos-client: "
374
 
            "bad gpgme_op_decrypt: %s: %s\n",
375
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
381
    fprintf_plus(stderr, "bad gpgme_op_decrypt: %s: %s\n",
 
382
                 gpgme_strsource(rc), gpgme_strerror(rc));
376
383
    plaintext_length = -1;
377
384
    if(debug){
378
385
      gpgme_decrypt_result_t result;
379
386
      result = gpgme_op_decrypt_result(mc.ctx);
380
387
      if(result == NULL){
381
 
        fprintf(stderr, "Mandos plugin mandos-client: "
382
 
                "gpgme_op_decrypt_result failed\n");
 
388
        fprintf_plus(stderr, "gpgme_op_decrypt_result failed\n");
383
389
      } else {
384
 
        fprintf(stderr, "Mandos plugin mandos-client: "
385
 
                "Unsupported algorithm: %s\n",
386
 
                result->unsupported_algorithm);
387
 
        fprintf(stderr, "Mandos plugin mandos-client: "
388
 
                "Wrong key usage: %u\n",
389
 
                result->wrong_key_usage);
 
390
        fprintf_plus(stderr, "Unsupported algorithm: %s\n",
 
391
                     result->unsupported_algorithm);
 
392
        fprintf_plus(stderr, "Wrong key usage: %u\n",
 
393
                     result->wrong_key_usage);
390
394
        if(result->file_name != NULL){
391
 
          fprintf(stderr, "Mandos plugin mandos-client: "
392
 
                  "File name: %s\n", result->file_name);
 
395
          fprintf_plus(stderr, "File name: %s\n", result->file_name);
393
396
        }
394
397
        gpgme_recipient_t recipient;
395
398
        recipient = result->recipients;
396
399
        while(recipient != NULL){
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");
 
400
          fprintf_plus(stderr, "Public key algorithm: %s\n",
 
401
                       gpgme_pubkey_algo_name
 
402
                       (recipient->pubkey_algo));
 
403
          fprintf_plus(stderr, "Key ID: %s\n", recipient->keyid);
 
404
          fprintf_plus(stderr, "Secret key available: %s\n",
 
405
                       recipient->status == GPG_ERR_NO_SECKEY
 
406
                       ? "No" : "Yes");
406
407
          recipient = recipient->next;
407
408
        }
408
409
      }
411
412
  }
412
413
  
413
414
  if(debug){
414
 
    fprintf(stderr, "Mandos plugin mandos-client: "
415
 
            "Decryption of OpenPGP data succeeded\n");
 
415
    fprintf_plus(stderr, "Decryption of OpenPGP data succeeded\n");
416
416
  }
417
417
  
418
418
  /* Seek back to the beginning of the GPGME plaintext data buffer */
449
449
  }
450
450
  
451
451
  if(debug){
452
 
    fprintf(stderr, "Mandos plugin mandos-client: "
453
 
            "Decrypted password is: ");
 
452
    fprintf_plus(stderr, "Decrypted password is: ");
454
453
    for(ssize_t i = 0; i < plaintext_length; i++){
455
454
      fprintf(stderr, "%02hhX ", (*plaintext)[i]);
456
455
    }
478
477
/* GnuTLS log function callback */
479
478
static void debuggnutls(__attribute__((unused)) int level,
480
479
                        const char* string){
481
 
  fprintf(stderr, "Mandos plugin mandos-client: GnuTLS: %s", string);
 
480
  fprintf_plus(stderr, "GnuTLS: %s", string);
482
481
}
483
482
 
484
483
static int init_gnutls_global(const char *pubkeyfilename,
486
485
  int ret;
487
486
  
488
487
  if(debug){
489
 
    fprintf(stderr, "Mandos plugin mandos-client: "
490
 
            "Initializing GnuTLS\n");
 
488
    fprintf_plus(stderr, "Initializing GnuTLS\n");
491
489
  }
492
490
  
493
491
  ret = gnutls_global_init();
494
492
  if(ret != GNUTLS_E_SUCCESS){
495
 
    fprintf(stderr, "Mandos plugin mandos-client: "
496
 
            "GnuTLS global_init: %s\n", safer_gnutls_strerror(ret));
 
493
    fprintf_plus(stderr, "GnuTLS global_init: %s\n",
 
494
                 safer_gnutls_strerror(ret));
497
495
    return -1;
498
496
  }
499
497
  
508
506
  /* OpenPGP credentials */
509
507
  ret = gnutls_certificate_allocate_credentials(&mc.cred);
510
508
  if(ret != GNUTLS_E_SUCCESS){
511
 
    fprintf(stderr, "Mandos plugin mandos-client: "
512
 
            "GnuTLS memory error: %s\n", safer_gnutls_strerror(ret));
 
509
    fprintf_plus(stderr, "GnuTLS memory error: %s\n",
 
510
                 safer_gnutls_strerror(ret));
513
511
    gnutls_global_deinit();
514
512
    return -1;
515
513
  }
516
514
  
517
515
  if(debug){
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);
 
516
    fprintf_plus(stderr, "Attempting to use OpenPGP public key %s and"
 
517
                 " secret key %s as GnuTLS credentials\n",
 
518
                 pubkeyfilename,
 
519
                 seckeyfilename);
522
520
  }
523
521
  
524
522
  ret = gnutls_certificate_set_openpgp_key_file
525
523
    (mc.cred, pubkeyfilename, seckeyfilename,
526
524
     GNUTLS_OPENPGP_FMT_BASE64);
527
525
  if(ret != GNUTLS_E_SUCCESS){
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));
 
526
    fprintf_plus(stderr,
 
527
                 "Error[%d] while reading the OpenPGP key pair ('%s',"
 
528
                 " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
529
    fprintf_plus(stderr, "The GnuTLS error is: %s\n",
 
530
                 safer_gnutls_strerror(ret));
534
531
    goto globalfail;
535
532
  }
536
533
  
537
534
  /* GnuTLS server initialization */
538
535
  ret = gnutls_dh_params_init(&mc.dh_params);
539
536
  if(ret != GNUTLS_E_SUCCESS){
540
 
    fprintf(stderr, "Mandos plugin mandos-client: "
541
 
            "Error in GnuTLS DH parameter initialization:"
542
 
            " %s\n", safer_gnutls_strerror(ret));
 
537
    fprintf_plus(stderr, "Error in GnuTLS DH parameter"
 
538
                 " initialization: %s\n",
 
539
                 safer_gnutls_strerror(ret));
543
540
    goto globalfail;
544
541
  }
545
542
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
546
543
  if(ret != GNUTLS_E_SUCCESS){
547
 
    fprintf(stderr, "Mandos plugin mandos-client: "
548
 
            "Error in GnuTLS prime generation: %s\n",
549
 
            safer_gnutls_strerror(ret));
 
544
    fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
 
545
                 safer_gnutls_strerror(ret));
550
546
    goto globalfail;
551
547
  }
552
548
  
572
568
    }
573
569
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
574
570
  if(ret != GNUTLS_E_SUCCESS){
575
 
    fprintf(stderr, "Mandos plugin mandos-client: "
576
 
            "Error in GnuTLS session initialization: %s\n",
577
 
            safer_gnutls_strerror(ret));
 
571
    fprintf_plus(stderr,
 
572
                 "Error in GnuTLS session initialization: %s\n",
 
573
                 safer_gnutls_strerror(ret));
578
574
  }
579
575
  
580
576
  {
587
583
      }
588
584
    } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
589
585
    if(ret != GNUTLS_E_SUCCESS){
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));
 
586
      fprintf_plus(stderr, "Syntax error at: %s\n", err);
 
587
      fprintf_plus(stderr, "GnuTLS error: %s\n",
 
588
                   safer_gnutls_strerror(ret));
594
589
      gnutls_deinit(*session);
595
590
      return -1;
596
591
    }
605
600
    }
606
601
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
607
602
  if(ret != GNUTLS_E_SUCCESS){
608
 
    fprintf(stderr, "Mandos plugin mandos-client: "
609
 
            "Error setting GnuTLS credentials: %s\n",
610
 
            safer_gnutls_strerror(ret));
 
603
    fprintf_plus(stderr, "Error setting GnuTLS credentials: %s\n",
 
604
                 safer_gnutls_strerror(ret));
611
605
    gnutls_deinit(*session);
612
606
    return -1;
613
607
  }
658
652
    pf = PF_INET;
659
653
    break;
660
654
  default:
661
 
    fprintf(stderr, "Mandos plugin mandos-client: "
662
 
            "Bad address family: %d\n", af);
 
655
    fprintf_plus(stderr, "Bad address family: %d\n", af);
663
656
    errno = EINVAL;
664
657
    return -1;
665
658
  }
670
663
  }
671
664
  
672
665
  if(debug){
673
 
    fprintf(stderr, "Mandos plugin mandos-client: "
674
 
            "Setting up a TCP connection to %s, port %" PRIu16
675
 
            "\n", ip, port);
 
666
    fprintf_plus(stderr, "Setting up a TCP connection to %s, port %"
 
667
                 PRIu16 "\n", ip, port);
676
668
  }
677
669
  
678
670
  tcp_sd = socket(pf, SOCK_STREAM, 0);
704
696
  }
705
697
  if(ret == 0){
706
698
    int e = errno;
707
 
    fprintf(stderr, "Mandos plugin mandos-client: "
708
 
            "Bad address: %s\n", ip);
 
699
    fprintf_plus(stderr, "Bad address: %s\n", ip);
709
700
    errno = e;
710
701
    goto mandos_end;
711
702
  }
718
709
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
719
710
                                -Wunreachable-code*/
720
711
      if(if_index == AVAHI_IF_UNSPEC){
721
 
        fprintf(stderr, "Mandos plugin mandos-client: "
722
 
                "An IPv6 link-local address is incomplete"
723
 
                " without a network interface\n");
 
712
        fprintf_plus(stderr, "An IPv6 link-local address is"
 
713
                     " incomplete without a network interface\n");
724
714
        errno = EINVAL;
725
715
        goto mandos_end;
726
716
      }
744
734
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
745
735
        perror_plus("if_indextoname");
746
736
      } else {
747
 
        fprintf(stderr, "Mandos plugin mandos-client: "
748
 
                "Connection to: %s%%%s, port %" PRIu16 "\n",
749
 
                ip, interface, port);
 
737
        fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIu16
 
738
                     "\n", ip, interface, port);
750
739
      }
751
740
    } else {
752
 
      fprintf(stderr, "Mandos plugin mandos-client: "
753
 
              "Connection to: %s, port %" PRIu16 "\n", ip, port);
 
741
      fprintf_plus(stderr, "Connection to: %s, port %" PRIu16 "\n",
 
742
                   ip, port);
754
743
    }
755
744
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
756
745
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
766
755
      perror_plus("inet_ntop");
767
756
    } else {
768
757
      if(strcmp(addrstr, ip) != 0){
769
 
        fprintf(stderr, "Mandos plugin mandos-client: "
770
 
                "Canonical address form: %s\n", addrstr);
 
758
        fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
771
759
      }
772
760
    }
773
761
  }
827
815
  }
828
816
  
829
817
  if(debug){
830
 
    fprintf(stderr, "Mandos plugin mandos-client: "
831
 
            "Establishing TLS session with %s\n", ip);
 
818
    fprintf_plus(stderr, "Establishing TLS session with %s\n", ip);
832
819
  }
833
820
  
834
821
  if(quit_now){
836
823
    goto mandos_end;
837
824
  }
838
825
  
839
 
  /* Spurious warning from -Wint-to-pointer-cast */
840
 
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
 
826
  /* This casting via intptr_t is to eliminate warning about casting
 
827
     an int to a pointer type.  This is exactly how the GnuTLS Guile
 
828
     function "set-session-transport-fd!" does it. */
 
829
  gnutls_transport_set_ptr(session,
 
830
                           (gnutls_transport_ptr_t)(intptr_t)tcp_sd);
841
831
  
842
832
  if(quit_now){
843
833
    errno = EINTR;
854
844
  
855
845
  if(ret != GNUTLS_E_SUCCESS){
856
846
    if(debug){
857
 
      fprintf(stderr, "Mandos plugin mandos-client: "
858
 
              "*** GnuTLS Handshake failed ***\n");
 
847
      fprintf_plus(stderr, "*** GnuTLS Handshake failed ***\n");
859
848
      gnutls_perror(ret);
860
849
    }
861
850
    errno = EPROTO;
865
854
  /* Read OpenPGP packet that contains the wanted password */
866
855
  
867
856
  if(debug){
868
 
    fprintf(stderr, "Mandos plugin mandos-client: "
869
 
            "Retrieving OpenPGP encrypted password from %s\n", ip);
 
857
    fprintf_plus(stderr, "Retrieving OpenPGP encrypted password from"
 
858
                 " %s\n", ip);
870
859
  }
871
860
  
872
861
  while(true){
910
899
          }
911
900
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
912
901
        if(ret < 0){
913
 
          fprintf(stderr, "Mandos plugin mandos-client: "
914
 
                  "*** GnuTLS Re-handshake failed ***\n");
 
902
          fprintf_plus(stderr, "*** GnuTLS Re-handshake failed "
 
903
                       "***\n");
915
904
          gnutls_perror(ret);
916
905
          errno = EPROTO;
917
906
          goto mandos_end;
918
907
        }
919
908
        break;
920
909
      default:
921
 
        fprintf(stderr, "Mandos plugin mandos-client: "
922
 
                "Unknown error while reading data from"
923
 
                " encrypted session with Mandos server\n");
 
910
        fprintf_plus(stderr, "Unknown error while reading data from"
 
911
                     " encrypted session with Mandos server\n");
924
912
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
925
913
        errno = EIO;
926
914
        goto mandos_end;
931
919
  }
932
920
  
933
921
  if(debug){
934
 
    fprintf(stderr, "Mandos plugin mandos-client: "
935
 
            "Closing TLS session\n");
 
922
    fprintf_plus(stderr, "Closing TLS session\n");
936
923
  }
937
924
  
938
925
  if(quit_now){
967
954
        if(ret == 0 and ferror(stdout)){
968
955
          int e = errno;
969
956
          if(debug){
970
 
            fprintf(stderr, "Mandos plugin mandos-client: "
971
 
                    "Error writing encrypted data: %s\n",
972
 
                    strerror(errno));
 
957
            fprintf_plus(stderr, "Error writing encrypted data: %s\n",
 
958
                         strerror(errno));
973
959
          }
974
960
          errno = e;
975
961
          goto mandos_end;
1032
1018
  switch(event){
1033
1019
  default:
1034
1020
  case AVAHI_RESOLVER_FAILURE:
1035
 
    fprintf(stderr, "Mandos plugin mandos-client: "
1036
 
            "(Avahi Resolver) Failed to resolve service '%s'"
1037
 
            " of type '%s' in domain '%s': %s\n", name, type, domain,
1038
 
            avahi_strerror(avahi_server_errno(mc.server)));
 
1021
    fprintf_plus(stderr, "(Avahi Resolver) Failed to resolve service "
 
1022
                 "'%s' of type '%s' in domain '%s': %s\n", name, type,
 
1023
                 domain,
 
1024
                 avahi_strerror(avahi_server_errno(mc.server)));
1039
1025
    break;
1040
1026
    
1041
1027
  case AVAHI_RESOLVER_FOUND:
1043
1029
      char ip[AVAHI_ADDRESS_STR_MAX];
1044
1030
      avahi_address_snprint(ip, sizeof(ip), address);
1045
1031
      if(debug){
1046
 
        fprintf(stderr, "Mandos plugin mandos-client: "
1047
 
                "Mandos server \"%s\" found on %s (%s, %"
1048
 
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
1049
 
                ip, (intmax_t)interface, port);
 
1032
        fprintf_plus(stderr, "Mandos server \"%s\" found on %s (%s, %"
 
1033
                     PRIdMAX ") on port %" PRIu16 "\n", name,
 
1034
                     host_name, ip, (intmax_t)interface, port);
1050
1035
      }
1051
1036
      int ret = start_mandos_communication(ip, port, interface,
1052
1037
                                           avahi_proto_to_af(proto));
1053
1038
      if(ret == 0){
1054
1039
        avahi_simple_poll_quit(mc.simple_poll);
1055
1040
      } else {
1056
 
        ret = add_server(ip, port, interface,
1057
 
                         avahi_proto_to_af(proto));
 
1041
        if(not add_server(ip, port, interface,
 
1042
                          avahi_proto_to_af(proto))){
 
1043
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
 
1044
                       " list\n", name);
 
1045
        }
1058
1046
      }
1059
1047
    }
1060
1048
  }
1084
1072
  default:
1085
1073
  case AVAHI_BROWSER_FAILURE:
1086
1074
    
1087
 
    fprintf(stderr, "Mandos plugin mandos-client: "
1088
 
            "(Avahi browser) %s\n",
1089
 
            avahi_strerror(avahi_server_errno(mc.server)));
 
1075
    fprintf_plus(stderr, "(Avahi browser) %s\n",
 
1076
                 avahi_strerror(avahi_server_errno(mc.server)));
1090
1077
    avahi_simple_poll_quit(mc.simple_poll);
1091
1078
    return;
1092
1079
    
1099
1086
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
1100
1087
                                    name, type, domain, protocol, 0,
1101
1088
                                    resolve_callback, NULL) == NULL)
1102
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1103
 
              "Avahi: Failed to resolve service '%s': %s\n",
1104
 
              name, avahi_strerror(avahi_server_errno(mc.server)));
 
1089
      fprintf_plus(stderr, "Avahi: Failed to resolve service '%s':"
 
1090
                   " %s\n", name,
 
1091
                   avahi_strerror(avahi_server_errno(mc.server)));
1105
1092
    break;
1106
1093
    
1107
1094
  case AVAHI_BROWSER_REMOVE:
1110
1097
  case AVAHI_BROWSER_ALL_FOR_NOW:
1111
1098
  case AVAHI_BROWSER_CACHE_EXHAUSTED:
1112
1099
    if(debug){
1113
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1114
 
              "No Mandos server found, still searching...\n");
 
1100
      fprintf_plus(stderr, "No Mandos server found, still"
 
1101
                   " searching...\n");
1115
1102
    }
1116
1103
    break;
1117
1104
  }
1156
1143
  /* Reject the loopback device */
1157
1144
  if(ifr->ifr_flags & IFF_LOOPBACK){
1158
1145
    if(debug){
1159
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1160
 
              "Rejecting loopback interface \"%s\"\n", ifname);
 
1146
      fprintf_plus(stderr, "Rejecting loopback interface \"%s\"\n",
 
1147
                   ifname);
1161
1148
    }
1162
1149
    return false;
1163
1150
  }
1164
1151
  /* Accept point-to-point devices only if connect_to is specified */
1165
1152
  if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
1166
1153
    if(debug){
1167
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1168
 
              "Accepting point-to-point interface \"%s\"\n", ifname);
 
1154
      fprintf_plus(stderr, "Accepting point-to-point interface"
 
1155
                   " \"%s\"\n", ifname);
1169
1156
    }
1170
1157
    return true;
1171
1158
  }
1172
1159
  /* Otherwise, reject non-broadcast-capable devices */
1173
1160
  if(not (ifr->ifr_flags & IFF_BROADCAST)){
1174
1161
    if(debug){
1175
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1176
 
              "Rejecting non-broadcast interface \"%s\"\n", ifname);
 
1162
      fprintf_plus(stderr, "Rejecting non-broadcast interface"
 
1163
                   " \"%s\"\n", ifname);
1177
1164
    }
1178
1165
    return false;
1179
1166
  }
1180
1167
  /* Reject non-ARP interfaces (including dummy interfaces) */
1181
1168
  if(ifr->ifr_flags & IFF_NOARP){
1182
1169
    if(debug){
1183
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1184
 
              "Rejecting non-ARP interface \"%s\"\n", ifname);
 
1170
      fprintf_plus(stderr, "Rejecting non-ARP interface \"%s\"\n",
 
1171
                   ifname);
1185
1172
    }
1186
1173
    return false;
1187
1174
  }
1188
1175
  
1189
1176
  /* Accept this device */
1190
1177
  if(debug){
1191
 
    fprintf(stderr, "Mandos plugin mandos-client: "
1192
 
            "Interface \"%s\" is good\n", ifname);
 
1178
    fprintf_plus(stderr, "Interface \"%s\" is good\n", ifname);
1193
1179
  }
1194
1180
  return true;
1195
1181
}
1207
1193
  struct ifreq ifr;
1208
1194
  if(not get_flags(if_entry->d_name, &ifr)){
1209
1195
    if(debug){
1210
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1211
 
              "Failed to get flags for interface \"%s\"\n",
1212
 
              if_entry->d_name);
 
1196
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1197
                   "\"%s\"\n", if_entry->d_name);
1213
1198
    }
1214
1199
    return 0;
1215
1200
  }
1233
1218
  struct ifreq ifr;
1234
1219
  if(not get_flags(if_entry->d_name, &ifr)){
1235
1220
    if(debug){
1236
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1237
 
              "Failed to get flags for interface \"%s\"\n",
1238
 
              if_entry->d_name);
 
1221
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1222
                   "\"%s\"\n", if_entry->d_name);
1239
1223
    }
1240
1224
    return 0;
1241
1225
  }
1243
1227
  /* Reject down interfaces */
1244
1228
  if(not (ifr.ifr_flags & IFF_UP)){
1245
1229
    if(debug){
1246
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1247
 
              "Rejecting down interface \"%s\"\n",
1248
 
              if_entry->d_name);
 
1230
      fprintf_plus(stderr, "Rejecting down interface \"%s\"\n",
 
1231
                   if_entry->d_name);
1249
1232
    }
1250
1233
    return 0;
1251
1234
  }
1253
1236
  /* Reject non-running interfaces */
1254
1237
  if(not (ifr.ifr_flags & IFF_RUNNING)){
1255
1238
    if(debug){
1256
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1257
 
              "Rejecting non-running interface \"%s\"\n",
1258
 
              if_entry->d_name);
 
1239
      fprintf_plus(stderr, "Rejecting non-running interface \"%s\"\n",
 
1240
                   if_entry->d_name);
1259
1241
    }
1260
1242
    return 0;
1261
1243
  }
1295
1277
  if((direntry->d_name)[sret] != '\0'){
1296
1278
    /* Contains non-allowed characters */
1297
1279
    if(debug){
1298
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1299
 
              "Ignoring hook \"%s\" with bad name\n",
1300
 
              direntry->d_name);
 
1280
      fprintf_plus(stderr, "Ignoring hook \"%s\" with bad name\n",
 
1281
                   direntry->d_name);
1301
1282
    }
1302
1283
    return 0;
1303
1284
  }
1319
1300
  if(not (S_ISREG(st.st_mode))){
1320
1301
    /* Not a regular file */
1321
1302
    if(debug){
1322
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1323
 
              "Ignoring hook \"%s\" - not a file\n",
1324
 
              direntry->d_name);
 
1303
      fprintf_plus(stderr, "Ignoring hook \"%s\" - not a file\n",
 
1304
                   direntry->d_name);
1325
1305
    }
1326
1306
    return 0;
1327
1307
  }
1328
1308
  if(not (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))){
1329
1309
    /* Not executable */
1330
1310
    if(debug){
1331
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1332
 
              "Ignoring hook \"%s\" - not executable\n",
1333
 
              direntry->d_name);
 
1311
      fprintf_plus(stderr, "Ignoring hook \"%s\" - not executable\n",
 
1312
                   direntry->d_name);
1334
1313
    }
1335
1314
    return 0;
1336
1315
  }
 
1316
  if(debug){
 
1317
    fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
 
1318
                 direntry->d_name);
 
1319
  }
1337
1320
  return 1;
1338
1321
}
1339
1322
 
1346
1329
  while(true){
1347
1330
    if(mc.current_server == NULL){
1348
1331
      if (debug){
1349
 
        fprintf(stderr, "Mandos plugin mandos-client: "
1350
 
                "Wait until first server is found. No timeout!\n");
 
1332
        fprintf_plus(stderr, "Wait until first server is found."
 
1333
                     " No timeout!\n");
1351
1334
      }
1352
1335
      ret = avahi_simple_poll_iterate(s, -1);
1353
1336
    } else {
1354
1337
      if (debug){
1355
 
        fprintf(stderr, "Mandos plugin mandos-client: "
1356
 
                "Check current_server if we should run it,"
1357
 
                " or wait\n");
 
1338
        fprintf_plus(stderr, "Check current_server if we should run"
 
1339
                     " it, or wait\n");
1358
1340
      }
1359
1341
      /* the current time */
1360
1342
      ret = clock_gettime(CLOCK_MONOTONIC, &now);
1376
1358
                    - ((intmax_t)waited_time.tv_nsec / 1000000));
1377
1359
      
1378
1360
      if (debug){
1379
 
        fprintf(stderr, "Mandos plugin mandos-client: "
1380
 
                "Blocking for %" PRIdMAX " ms\n", block_time);
 
1361
        fprintf_plus(stderr, "Blocking for %" PRIdMAX " ms\n",
 
1362
                     block_time);
1381
1363
      }
1382
1364
      
1383
1365
      if(block_time <= 0){
1410
1392
  }
1411
1393
}
1412
1394
 
 
1395
/* Set effective uid to 0, return errno */
 
1396
error_t raise_privileges(void){
 
1397
  error_t old_errno = errno;
 
1398
  error_t ret_errno = 0;
 
1399
  if(seteuid(0) == -1){
 
1400
    ret_errno = errno;
 
1401
    perror_plus("seteuid");
 
1402
  }
 
1403
  errno = old_errno;
 
1404
  return ret_errno;
 
1405
}
 
1406
 
 
1407
/* Set effective and real user ID to 0.  Return errno. */
 
1408
error_t raise_privileges_permanently(void){
 
1409
  error_t old_errno = errno;
 
1410
  error_t ret_errno = raise_privileges();
 
1411
  if(ret_errno != 0){
 
1412
    errno = old_errno;
 
1413
    return ret_errno;
 
1414
  }
 
1415
  if(setuid(0) == -1){
 
1416
    ret_errno = errno;
 
1417
    perror_plus("seteuid");
 
1418
  }
 
1419
  errno = old_errno;
 
1420
  return ret_errno;
 
1421
}
 
1422
 
 
1423
/* Set effective user ID to unprivileged saved user ID */
 
1424
error_t lower_privileges(void){
 
1425
  error_t old_errno = errno;
 
1426
  error_t ret_errno = 0;
 
1427
  if(seteuid(uid) == -1){
 
1428
    ret_errno = errno;
 
1429
    perror_plus("seteuid");
 
1430
  }
 
1431
  errno = old_errno;
 
1432
  return ret_errno;
 
1433
}
 
1434
 
 
1435
bool run_network_hooks(const char *mode, const char *interface,
 
1436
                       const float delay){
 
1437
  struct dirent **direntries;
 
1438
  struct dirent *direntry;
 
1439
  int ret;
 
1440
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1441
                         alphasort);
 
1442
  if(numhooks == -1){
 
1443
    perror_plus("scandir");
 
1444
  } else {
 
1445
    int devnull = open("/dev/null", O_RDONLY);
 
1446
    for(int i = 0; i < numhooks; i++){
 
1447
      direntry = direntries[i];
 
1448
      char *fullname = NULL;
 
1449
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
1450
      if(ret < 0){
 
1451
        perror_plus("asprintf");
 
1452
        continue;
 
1453
      }
 
1454
      if(debug){
 
1455
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
1456
                     direntry->d_name);
 
1457
      }
 
1458
      pid_t hook_pid = fork();
 
1459
      if(hook_pid == 0){
 
1460
        /* Child */
 
1461
        /* Raise privileges */
 
1462
        raise_privileges_permanently();
 
1463
        /* Set group */
 
1464
        errno = 0;
 
1465
        ret = setgid(0);
 
1466
        if(ret == -1){
 
1467
          perror_plus("setgid");
 
1468
        }
 
1469
        /* Reset supplementary groups */
 
1470
        errno = 0;
 
1471
        ret = setgroups(0, NULL);
 
1472
        if(ret == -1){
 
1473
          perror_plus("setgroups");
 
1474
        }
 
1475
        dup2(devnull, STDIN_FILENO);
 
1476
        close(devnull);
 
1477
        dup2(STDERR_FILENO, STDOUT_FILENO);
 
1478
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
1479
        if(ret == -1){
 
1480
          perror_plus("setenv");
 
1481
          _exit(EX_OSERR);
 
1482
        }
 
1483
        ret = setenv("DEVICE", interface, 1);
 
1484
        if(ret == -1){
 
1485
          perror_plus("setenv");
 
1486
          _exit(EX_OSERR);
 
1487
        }
 
1488
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
1489
        if(ret == -1){
 
1490
          perror_plus("setenv");
 
1491
          _exit(EX_OSERR);
 
1492
        }
 
1493
        ret = setenv("MODE", mode, 1);
 
1494
        if(ret == -1){
 
1495
          perror_plus("setenv");
 
1496
          _exit(EX_OSERR);
 
1497
        }
 
1498
        char *delaystring;
 
1499
        ret = asprintf(&delaystring, "%f", delay);
 
1500
        if(ret == -1){
 
1501
          perror_plus("asprintf");
 
1502
          _exit(EX_OSERR);
 
1503
        }
 
1504
        ret = setenv("DELAY", delaystring, 1);
 
1505
        if(ret == -1){
 
1506
          free(delaystring);
 
1507
          perror_plus("setenv");
 
1508
          _exit(EX_OSERR);
 
1509
        }
 
1510
        free(delaystring);
 
1511
        if(connect_to != NULL){
 
1512
          ret = setenv("CONNECT", connect_to, 1);
 
1513
          if(ret == -1){
 
1514
            perror_plus("setenv");
 
1515
            _exit(EX_OSERR);
 
1516
          }
 
1517
        }
 
1518
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
 
1519
          perror_plus("execl");
 
1520
          _exit(EXIT_FAILURE);
 
1521
        }
 
1522
      } else {
 
1523
        int status;
 
1524
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
1525
          perror_plus("waitpid");
 
1526
          free(fullname);
 
1527
          continue;
 
1528
        }
 
1529
        if(WIFEXITED(status)){
 
1530
          if(WEXITSTATUS(status) != 0){
 
1531
            fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
 
1532
                         " with status %d\n", direntry->d_name,
 
1533
                         WEXITSTATUS(status));
 
1534
            free(fullname);
 
1535
            continue;
 
1536
          }
 
1537
        } else if(WIFSIGNALED(status)){
 
1538
          fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
1539
                       " signal %d\n", direntry->d_name,
 
1540
                       WTERMSIG(status));
 
1541
          free(fullname);
 
1542
          continue;
 
1543
        } else {
 
1544
          fprintf_plus(stderr, "Warning: network hook \"%s\""
 
1545
                       " crashed\n", direntry->d_name);
 
1546
          free(fullname);
 
1547
          continue;
 
1548
        }
 
1549
      }
 
1550
      free(fullname);
 
1551
      if(debug){
 
1552
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
1553
                     direntry->d_name);
 
1554
      }
 
1555
    }
 
1556
    close(devnull);
 
1557
  }
 
1558
  return true;
 
1559
}
 
1560
 
 
1561
int bring_up_interface(const char *const interface,
 
1562
                       const float delay){
 
1563
  int sd = -1;
 
1564
  int old_errno = errno;
 
1565
  int ret_errno = 0;
 
1566
  int ret;
 
1567
  struct ifreq network;
 
1568
  AvahiIfIndex if_index = (AvahiIfIndex)if_nametoindex(interface);
 
1569
  if(if_index == 0){
 
1570
    fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
 
1571
    errno = old_errno;
 
1572
    return ENXIO;
 
1573
  }
 
1574
  
 
1575
  if(quit_now){
 
1576
    errno = old_errno;
 
1577
    return EINTR;
 
1578
  }
 
1579
  
 
1580
  /* Re-raise priviliges */
 
1581
  raise_privileges();
 
1582
  
 
1583
#ifdef __linux__
 
1584
  /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
 
1585
     messages about the network interface to mess up the prompt */
 
1586
  ret = klogctl(8, NULL, 5);
 
1587
  bool restore_loglevel = true;
 
1588
  if(ret == -1){
 
1589
    restore_loglevel = false;
 
1590
    perror_plus("klogctl");
 
1591
  }
 
1592
#endif  /* __linux__ */
 
1593
    
 
1594
  sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1595
  if(sd < 0){
 
1596
    ret_errno = errno;
 
1597
    perror_plus("socket");
 
1598
#ifdef __linux__
 
1599
    if(restore_loglevel){
 
1600
      ret = klogctl(7, NULL, 0);
 
1601
      if(ret == -1){
 
1602
        perror_plus("klogctl");
 
1603
      }
 
1604
    }
 
1605
#endif  /* __linux__ */
 
1606
    /* Lower privileges */
 
1607
    lower_privileges();
 
1608
    errno = old_errno;
 
1609
    return ret_errno;
 
1610
  }
 
1611
  strcpy(network.ifr_name, interface);
 
1612
  ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1613
  if(ret == -1){
 
1614
    ret_errno = errno;
 
1615
    perror_plus("ioctl SIOCGIFFLAGS");
 
1616
#ifdef __linux__
 
1617
    if(restore_loglevel){
 
1618
      ret = klogctl(7, NULL, 0);
 
1619
      if(ret == -1){
 
1620
        perror_plus("klogctl");
 
1621
      }
 
1622
    }
 
1623
#endif  /* __linux__ */
 
1624
    /* Lower privileges */
 
1625
    lower_privileges();
 
1626
    errno = old_errno;
 
1627
    return ret_errno;
 
1628
  }
 
1629
  if((network.ifr_flags & IFF_UP) == 0){
 
1630
    network.ifr_flags |= IFF_UP;
 
1631
    ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
1632
    if(ret == -1){
 
1633
      ret_errno = errno;
 
1634
      perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
 
1635
#ifdef __linux__
 
1636
      if(restore_loglevel){
 
1637
        ret = klogctl(7, NULL, 0);
 
1638
        if(ret == -1){
 
1639
          perror_plus("klogctl");
 
1640
        }
 
1641
      }
 
1642
#endif  /* __linux__ */
 
1643
        /* Lower privileges */
 
1644
      lower_privileges();
 
1645
      errno = old_errno;
 
1646
      return ret_errno;
 
1647
    }
 
1648
  }
 
1649
  /* Sleep checking until interface is running.
 
1650
     Check every 0.25s, up to total time of delay */
 
1651
  for(int i=0; i < delay * 4; i++){
 
1652
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1653
    if(ret == -1){
 
1654
      perror_plus("ioctl SIOCGIFFLAGS");
 
1655
    } else if(network.ifr_flags & IFF_RUNNING){
 
1656
      break;
 
1657
    }
 
1658
    struct timespec sleeptime = { .tv_nsec = 250000000 };
 
1659
    ret = nanosleep(&sleeptime, NULL);
 
1660
    if(ret == -1 and errno != EINTR){
 
1661
      perror_plus("nanosleep");
 
1662
    }
 
1663
  }
 
1664
  /* Close the socket */
 
1665
  ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1666
  if(ret == -1){
 
1667
    perror_plus("close");
 
1668
  }
 
1669
#ifdef __linux__
 
1670
  if(restore_loglevel){
 
1671
    /* Restores kernel loglevel to default */
 
1672
    ret = klogctl(7, NULL, 0);
 
1673
    if(ret == -1){
 
1674
      perror_plus("klogctl");
 
1675
    }
 
1676
  }
 
1677
#endif  /* __linux__ */
 
1678
  /* Lower privileges */
 
1679
  lower_privileges();
 
1680
  errno = old_errno;
 
1681
  return 0;
 
1682
}
 
1683
 
1413
1684
int main(int argc, char *argv[]){
1414
1685
  AvahiSServiceBrowser *sb = NULL;
1415
1686
  int error;
1421
1692
  struct ifreq network;
1422
1693
  int sd = -1;
1423
1694
  bool take_down_interface = false;
1424
 
  uid_t uid;
1425
 
  gid_t gid;
1426
1695
  char tempdir[] = "/tmp/mandosXXXXXX";
1427
1696
  bool tempdir_created = false;
1428
1697
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1495
1764
        .group = 2 },
1496
1765
      { .name = "retry", .key = 132,
1497
1766
        .arg = "SECONDS",
1498
 
        .doc = "Retry interval used when denied by the mandos server",
 
1767
        .doc = "Retry interval used when denied by the Mandos server",
1499
1768
        .group = 2 },
1500
1769
      { .name = "network-hook-dir", .key = 133,
1501
1770
        .arg = "DIR",
1573
1842
        argp_state_help(state, state->out_stream,
1574
1843
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1575
1844
      case 'V':                 /* --version */
1576
 
        fprintf(state->out_stream, "Mandos plugin mandos-client: ");
1577
 
        fprintf(state->out_stream, "%s\n", argp_program_version);
 
1845
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1578
1846
        exit(argp_err_exit_status);
1579
1847
        break;
1580
1848
      default:
1607
1875
  {
1608
1876
    /* Work around Debian bug #633582:
1609
1877
       <http://bugs.debian.org/633582> */
1610
 
    struct stat st;
1611
1878
    
1612
1879
    /* Re-raise priviliges */
1613
 
    errno = 0;
1614
 
    ret = seteuid(0);
1615
 
    if(ret == -1){
1616
 
      perror_plus("seteuid");
1617
 
    }
1618
 
    
1619
 
    if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
1620
 
      int seckey_fd = open(seckey, O_RDONLY);
1621
 
      if(seckey_fd == -1){
1622
 
        perror_plus("open");
1623
 
      } else {
1624
 
        ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
1625
 
        if(ret == -1){
1626
 
          perror_plus("fstat");
1627
 
        } else {
1628
 
          if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1629
 
            ret = fchown(seckey_fd, uid, gid);
1630
 
            if(ret == -1){
1631
 
              perror_plus("fchown");
1632
 
            }
1633
 
          }
1634
 
        }
1635
 
        TEMP_FAILURE_RETRY(close(seckey_fd));
1636
 
      }
1637
 
    }
1638
 
    
1639
 
    if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
1640
 
      int pubkey_fd = open(pubkey, O_RDONLY);
1641
 
      if(pubkey_fd == -1){
1642
 
        perror_plus("open");
1643
 
      } else {
1644
 
        ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
1645
 
        if(ret == -1){
1646
 
          perror_plus("fstat");
1647
 
        } else {
1648
 
          if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
1649
 
            ret = fchown(pubkey_fd, uid, gid);
1650
 
            if(ret == -1){
1651
 
              perror_plus("fchown");
1652
 
            }
1653
 
          }
1654
 
        }
1655
 
        TEMP_FAILURE_RETRY(close(pubkey_fd));
1656
 
      }
1657
 
    }
1658
 
    
1659
 
    /* Lower privileges */
1660
 
    errno = 0;
1661
 
    ret = seteuid(uid);
1662
 
    if(ret == -1){
1663
 
      perror_plus("seteuid");
 
1880
    if(raise_privileges() == 0){
 
1881
      struct stat st;
 
1882
      
 
1883
      if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
 
1884
        int seckey_fd = open(seckey, O_RDONLY);
 
1885
        if(seckey_fd == -1){
 
1886
          perror_plus("open");
 
1887
        } else {
 
1888
          ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
 
1889
          if(ret == -1){
 
1890
            perror_plus("fstat");
 
1891
          } else {
 
1892
            if(S_ISREG(st.st_mode)
 
1893
               and st.st_uid == 0 and st.st_gid == 0){
 
1894
              ret = fchown(seckey_fd, uid, gid);
 
1895
              if(ret == -1){
 
1896
                perror_plus("fchown");
 
1897
              }
 
1898
            }
 
1899
          }
 
1900
          TEMP_FAILURE_RETRY(close(seckey_fd));
 
1901
        }
 
1902
      }
 
1903
    
 
1904
      if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
 
1905
        int pubkey_fd = open(pubkey, O_RDONLY);
 
1906
        if(pubkey_fd == -1){
 
1907
          perror_plus("open");
 
1908
        } else {
 
1909
          ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
 
1910
          if(ret == -1){
 
1911
            perror_plus("fstat");
 
1912
          } else {
 
1913
            if(S_ISREG(st.st_mode)
 
1914
               and st.st_uid == 0 and st.st_gid == 0){
 
1915
              ret = fchown(pubkey_fd, uid, gid);
 
1916
              if(ret == -1){
 
1917
                perror_plus("fchown");
 
1918
              }
 
1919
            }
 
1920
          }
 
1921
          TEMP_FAILURE_RETRY(close(pubkey_fd));
 
1922
        }
 
1923
      }
 
1924
    
 
1925
      /* Lower privileges */
 
1926
      errno = 0;
 
1927
      ret = seteuid(uid);
 
1928
      if(ret == -1){
 
1929
        perror_plus("seteuid");
 
1930
      }
1664
1931
    }
1665
1932
  }
1666
1933
  
1667
 
  /* Find network hooks and run them */
1668
 
  {
1669
 
    struct dirent **direntries;
1670
 
    struct dirent *direntry;
1671
 
    int numhooks = scandir(hookdir, &direntries, runnable_hook,
1672
 
                           alphasort);
1673
 
    if(numhooks == -1){
1674
 
      perror_plus("scandir");
1675
 
    } else {
1676
 
      int devnull = open("/dev/null", O_RDONLY);
1677
 
      for(int i = 0; i < numhooks; i++){
1678
 
        direntry = direntries[0];
1679
 
        char *fullname = NULL;
1680
 
        ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
1681
 
        if(ret < 0){
1682
 
          perror_plus("asprintf");
1683
 
          continue;
1684
 
        }
1685
 
        pid_t hook_pid = fork();
1686
 
        if(hook_pid == 0){
1687
 
          /* Child */
1688
 
          dup2(devnull, STDIN_FILENO);
1689
 
          close(devnull);
1690
 
          dup2(STDERR_FILENO, STDOUT_FILENO);
1691
 
          ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
1692
 
          if(ret == -1){
1693
 
            perror_plus("setenv");
1694
 
            exit(1);
1695
 
          }
1696
 
          ret = setenv("DEVICE", interface, 1);
1697
 
          if(ret == -1){
1698
 
            perror_plus("setenv");
1699
 
            exit(1);
1700
 
          }
1701
 
          ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1702
 
          if(ret == -1){
1703
 
            perror_plus("setenv");
1704
 
            exit(1);
1705
 
          }
1706
 
          ret = setenv("MODE", "start", 1);
1707
 
          if(ret == -1){
1708
 
            perror_plus("setenv");
1709
 
            exit(1);
1710
 
          }
1711
 
          char *delaystring;
1712
 
          ret = asprintf(&delaystring, "%f", delay);
1713
 
          if(ret == -1){
1714
 
            perror_plus("asprintf");
1715
 
            exit(1);
1716
 
          }
1717
 
          ret = setenv("DELAY", delaystring, 1);
1718
 
          if(ret == -1){
1719
 
            free(delaystring);
1720
 
            perror_plus("setenv");
1721
 
            exit(1);
1722
 
          }
1723
 
          free(delaystring);
1724
 
          ret = execl(fullname, direntry->d_name, "start", NULL);
1725
 
          perror_plus("execl");
1726
 
        } else {
1727
 
          int status;
1728
 
          if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
1729
 
            perror_plus("waitpid");
1730
 
            free(fullname);
1731
 
            continue;
1732
 
          }
1733
 
          if(WIFEXITED(status)){
1734
 
            if(WEXITSTATUS(status) != 0){
1735
 
              fprintf(stderr, "Mandos plugin mandos-client: "
1736
 
                      "Warning: network hook \"%s\" exited"
1737
 
                      " with status %d\n", direntry->d_name,
1738
 
                      WEXITSTATUS(status));
1739
 
              free(fullname);
1740
 
              continue;
1741
 
            }
1742
 
          } else if(WIFSIGNALED(status)){
1743
 
            fprintf(stderr, "Mandos plugin mandos-client: "
1744
 
                    "Warning: network hook \"%s\" died by"
1745
 
                    " signal %d\n", direntry->d_name,
1746
 
                    WTERMSIG(status));
1747
 
            free(fullname);
1748
 
            continue;
1749
 
          } else {
1750
 
            fprintf(stderr, "Mandos plugin mandos-client: "
1751
 
                    "Warning: network hook \"%s\" crashed\n",
1752
 
                    direntry->d_name);
1753
 
            free(fullname);
1754
 
            continue;
1755
 
          }
1756
 
        }
1757
 
        free(fullname);
1758
 
        if(quit_now){
1759
 
          goto end;
1760
 
        }
1761
 
      }
1762
 
      close(devnull);
1763
 
    }
 
1934
  /* Run network hooks */
 
1935
  if(not run_network_hooks("start", interface, delay)){
 
1936
    goto end;
1764
1937
  }
1765
1938
  
1766
1939
  if(not debug){
1782
1955
      /* Pick the first interface returned */
1783
1956
      interface = strdup(direntries[0]->d_name);
1784
1957
      if(debug){
1785
 
        fprintf(stderr, "Mandos plugin mandos-client: "
1786
 
                "Using interface \"%s\"\n", interface);
 
1958
        fprintf_plus(stderr, "Using interface \"%s\"\n", interface);
1787
1959
      }
1788
1960
      if(interface == NULL){
1789
1961
        perror_plus("malloc");
1794
1966
      free(direntries);
1795
1967
    } else {
1796
1968
      free(direntries);
1797
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1798
 
              "Could not find a network interface\n");
 
1969
      fprintf_plus(stderr, "Could not find a network interface\n");
1799
1970
      exitcode = EXIT_FAILURE;
1800
1971
      goto end;
1801
1972
    }
1807
1978
  srand((unsigned int) time(NULL));
1808
1979
  mc.simple_poll = avahi_simple_poll_new();
1809
1980
  if(mc.simple_poll == NULL){
1810
 
    fprintf(stderr, "Mandos plugin mandos-client: "
1811
 
            "Avahi: Failed to create simple poll object.\n");
 
1981
    fprintf_plus(stderr,
 
1982
                 "Avahi: Failed to create simple poll object.\n");
1812
1983
    exitcode = EX_UNAVAILABLE;
1813
1984
    goto end;
1814
1985
  }
1877
2048
  }
1878
2049
  
1879
2050
  /* If the interface is down, bring it up */
1880
 
  if(strcmp(interface, "none") != 0){
1881
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1882
 
    if(if_index == 0){
1883
 
      fprintf(stderr, "Mandos plugin mandos-client: "
1884
 
              "No such interface: \"%s\"\n", interface);
1885
 
      exitcode = EX_UNAVAILABLE;
1886
 
      goto end;
1887
 
    }
1888
 
    
1889
 
    if(quit_now){
1890
 
      goto end;
1891
 
    }
1892
 
    
1893
 
    /* Re-raise priviliges */
1894
 
    errno = 0;
1895
 
    ret = seteuid(0);
1896
 
    if(ret == -1){
1897
 
      perror_plus("seteuid");
1898
 
    }
1899
 
    
1900
 
#ifdef __linux__
1901
 
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1902
 
       messages about the network interface to mess up the prompt */
1903
 
    ret = klogctl(8, NULL, 5);
1904
 
    bool restore_loglevel = true;
1905
 
    if(ret == -1){
1906
 
      restore_loglevel = false;
1907
 
      perror_plus("klogctl");
1908
 
    }
1909
 
#endif  /* __linux__ */
1910
 
    
1911
 
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1912
 
    if(sd < 0){
1913
 
      perror_plus("socket");
1914
 
      exitcode = EX_OSERR;
1915
 
#ifdef __linux__
1916
 
      if(restore_loglevel){
1917
 
        ret = klogctl(7, NULL, 0);
1918
 
        if(ret == -1){
1919
 
          perror_plus("klogctl");
1920
 
        }
1921
 
      }
1922
 
#endif  /* __linux__ */
1923
 
      /* Lower privileges */
1924
 
      errno = 0;
1925
 
      ret = seteuid(uid);
1926
 
      if(ret == -1){
1927
 
        perror_plus("seteuid");
1928
 
      }
1929
 
      goto end;
1930
 
    }
1931
 
    strcpy(network.ifr_name, interface);
1932
 
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
1933
 
    if(ret == -1){
1934
 
      perror_plus("ioctl SIOCGIFFLAGS");
1935
 
#ifdef __linux__
1936
 
      if(restore_loglevel){
1937
 
        ret = klogctl(7, NULL, 0);
1938
 
        if(ret == -1){
1939
 
          perror_plus("klogctl");
1940
 
        }
1941
 
      }
1942
 
#endif  /* __linux__ */
1943
 
      exitcode = EX_OSERR;
1944
 
      /* Lower privileges */
1945
 
      errno = 0;
1946
 
      ret = seteuid(uid);
1947
 
      if(ret == -1){
1948
 
        perror_plus("seteuid");
1949
 
      }
1950
 
      goto end;
1951
 
    }
1952
 
    if((network.ifr_flags & IFF_UP) == 0){
1953
 
      network.ifr_flags |= IFF_UP;
1954
 
      take_down_interface = true;
1955
 
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1956
 
      if(ret == -1){
1957
 
        take_down_interface = false;
1958
 
        perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
1959
 
        exitcode = EX_OSERR;
1960
 
#ifdef __linux__
1961
 
        if(restore_loglevel){
1962
 
          ret = klogctl(7, NULL, 0);
1963
 
          if(ret == -1){
1964
 
            perror_plus("klogctl");
1965
 
          }
1966
 
        }
1967
 
#endif  /* __linux__ */
1968
 
        /* Lower privileges */
1969
 
        errno = 0;
1970
 
        ret = seteuid(uid);
1971
 
        if(ret == -1){
1972
 
          perror_plus("seteuid");
1973
 
        }
1974
 
        goto end;
1975
 
      }
1976
 
    }
1977
 
    /* Sleep checking until interface is running.
1978
 
       Check every 0.25s, up to total time of delay */
1979
 
    for(int i=0; i < delay * 4; i++){
1980
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
1981
 
      if(ret == -1){
1982
 
        perror_plus("ioctl SIOCGIFFLAGS");
1983
 
      } else if(network.ifr_flags & IFF_RUNNING){
1984
 
        break;
1985
 
      }
1986
 
      struct timespec sleeptime = { .tv_nsec = 250000000 };
1987
 
      ret = nanosleep(&sleeptime, NULL);
1988
 
      if(ret == -1 and errno != EINTR){
1989
 
        perror_plus("nanosleep");
1990
 
      }
1991
 
    }
1992
 
    if(not take_down_interface){
1993
 
      /* We won't need the socket anymore */
1994
 
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
1995
 
      if(ret == -1){
1996
 
        perror_plus("close");
1997
 
      }
1998
 
    }
1999
 
#ifdef __linux__
2000
 
    if(restore_loglevel){
2001
 
      /* Restores kernel loglevel to default */
2002
 
      ret = klogctl(7, NULL, 0);
2003
 
      if(ret == -1){
2004
 
        perror_plus("klogctl");
2005
 
      }
2006
 
    }
2007
 
#endif  /* __linux__ */
2008
 
    /* Lower privileges */
2009
 
    errno = 0;
2010
 
    if(take_down_interface){
2011
 
      /* Lower privileges */
2012
 
      ret = seteuid(uid);
2013
 
      if(ret == -1){
2014
 
        perror_plus("seteuid");
2015
 
      }
2016
 
    } else {
2017
 
      /* Lower privileges permanently */
2018
 
      ret = setuid(uid);
2019
 
      if(ret == -1){
2020
 
        perror_plus("setuid");
2021
 
      }
 
2051
  if((interface[0] != '\0') and (strcmp(interface, "none") != 0)){
 
2052
    ret = bring_up_interface(interface, delay);
 
2053
    if(ret != 0){
 
2054
      errno = ret;
 
2055
      perror_plus("Failed to bring up interface");
2022
2056
    }
2023
2057
  }
2024
2058
  
2028
2062
  
2029
2063
  ret = init_gnutls_global(pubkey, seckey);
2030
2064
  if(ret == -1){
2031
 
    fprintf(stderr, "Mandos plugin mandos-client: "
2032
 
            "init_gnutls_global failed\n");
 
2065
    fprintf_plus(stderr, "init_gnutls_global failed\n");
2033
2066
    exitcode = EX_UNAVAILABLE;
2034
2067
    goto end;
2035
2068
  } else {
2051
2084
  }
2052
2085
  
2053
2086
  if(not init_gpgme(pubkey, seckey, tempdir)){
2054
 
    fprintf(stderr, "Mandos plugin mandos-client: "
2055
 
            "init_gpgme failed\n");
 
2087
    fprintf_plus(stderr, "init_gpgme failed\n");
2056
2088
    exitcode = EX_UNAVAILABLE;
2057
2089
    goto end;
2058
2090
  } else {
2067
2099
    /* Connect directly, do not use Zeroconf */
2068
2100
    /* (Mainly meant for debugging) */
2069
2101
    char *address = strrchr(connect_to, ':');
 
2102
    
2070
2103
    if(address == NULL){
2071
 
      fprintf(stderr, "Mandos plugin mandos-client: "
2072
 
              "No colon in address\n");
 
2104
      fprintf_plus(stderr, "No colon in address\n");
2073
2105
      exitcode = EX_USAGE;
2074
2106
      goto end;
2075
2107
    }
2083
2115
    tmpmax = strtoimax(address+1, &tmp, 10);
2084
2116
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
2085
2117
       or tmpmax != (uint16_t)tmpmax){
2086
 
      fprintf(stderr, "Mandos plugin mandos-client: "
2087
 
              "Bad port number\n");
 
2118
      fprintf_plus(stderr, "Bad port number\n");
2088
2119
      exitcode = EX_USAGE;
2089
2120
      goto end;
2090
2121
    }
2120
2151
        break;
2121
2152
      }
2122
2153
      if(debug){
2123
 
        fprintf(stderr, "Mandos plugin mandos-client: "
2124
 
                "Retrying in %d seconds\n", (int)retry_interval);
 
2154
        fprintf_plus(stderr, "Retrying in %d seconds\n",
 
2155
                     (int)retry_interval);
2125
2156
      }
2126
2157
      sleep((int)retry_interval);
2127
2158
    }
2157
2188
  
2158
2189
  /* Check if creating the Avahi server object succeeded */
2159
2190
  if(mc.server == NULL){
2160
 
    fprintf(stderr, "Mandos plugin mandos-client: "
2161
 
            "Failed to create Avahi server: %s\n",
2162
 
            avahi_strerror(error));
 
2191
    fprintf_plus(stderr, "Failed to create Avahi server: %s\n",
 
2192
                 avahi_strerror(error));
2163
2193
    exitcode = EX_UNAVAILABLE;
2164
2194
    goto end;
2165
2195
  }
2173
2203
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
2174
2204
                                   NULL, 0, browse_callback, NULL);
2175
2205
  if(sb == NULL){
2176
 
    fprintf(stderr, "Mandos plugin mandos-client: "
2177
 
            "Failed to create service browser: %s\n",
2178
 
            avahi_strerror(avahi_server_errno(mc.server)));
 
2206
    fprintf_plus(stderr, "Failed to create service browser: %s\n",
 
2207
                 avahi_strerror(avahi_server_errno(mc.server)));
2179
2208
    exitcode = EX_UNAVAILABLE;
2180
2209
    goto end;
2181
2210
  }
2187
2216
  /* Run the main loop */
2188
2217
  
2189
2218
  if(debug){
2190
 
    fprintf(stderr, "Mandos plugin mandos-client: "
2191
 
            "Starting Avahi loop search\n");
 
2219
    fprintf_plus(stderr, "Starting Avahi loop search\n");
2192
2220
  }
2193
2221
 
2194
2222
  ret = avahi_loop_with_timeout(mc.simple_poll,
2195
2223
                                (int)(retry_interval * 1000));
2196
2224
  if(debug){
2197
 
    fprintf(stderr, "Mandos plugin mandos-client: "
2198
 
            "avahi_loop_with_timeout exited %s\n",
2199
 
            (ret == 0) ? "successfully" : "with error");
 
2225
    fprintf_plus(stderr, "avahi_loop_with_timeout exited %s\n",
 
2226
                 (ret == 0) ? "successfully" : "with error");
2200
2227
  }
2201
2228
  
2202
2229
 end:
2203
2230
  
2204
2231
  if(debug){
2205
 
    fprintf(stderr, "Mandos plugin mandos-client: "
2206
 
            "%s exiting\n", argv[0]);
 
2232
    fprintf_plus(stderr, "%s exiting\n", argv[0]);
2207
2233
  }
2208
2234
  
2209
2235
  /* Cleanup things */
2225
2251
  if(gpgme_initialized){
2226
2252
    gpgme_release(mc.ctx);
2227
2253
  }
2228
 
 
 
2254
  
2229
2255
  /* Cleans up the circular linked list of Mandos servers the client
2230
2256
     has seen */
2231
2257
  if(mc.current_server != NULL){
2237
2263
    }
2238
2264
  }
2239
2265
  
2240
 
  /* XXX run network hooks "stop" here  */
 
2266
  /* Run network hooks */
 
2267
  run_network_hooks("stop", interface, delay);
2241
2268
  
2242
 
  /* Take down the network interface */
2243
 
  if(take_down_interface){
2244
 
    /* Re-raise priviliges */
2245
 
    errno = 0;
2246
 
    ret = seteuid(0);
2247
 
    if(ret == -1){
2248
 
      perror_plus("seteuid");
2249
 
    }
2250
 
    if(geteuid() == 0){
 
2269
  /* Re-raise priviliges */
 
2270
  {
 
2271
    raise_privileges();
 
2272
    
 
2273
    /* Take down the network interface */
 
2274
    if(take_down_interface and geteuid() == 0){
2251
2275
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
2252
2276
      if(ret == -1){
2253
2277
        perror_plus("ioctl SIOCGIFFLAGS");
2262
2286
      if(ret == -1){
2263
2287
        perror_plus("close");
2264
2288
      }
2265
 
      /* Lower privileges permanently */
2266
 
      errno = 0;
2267
 
      ret = setuid(uid);
2268
 
      if(ret == -1){
2269
 
        perror_plus("setuid");
2270
 
      }
2271
2289
    }
2272
2290
  }
 
2291
  /* Lower privileges permanently */
 
2292
  errno = 0;
 
2293
  ret = setuid(uid);
 
2294
  if(ret == -1){
 
2295
    perror_plus("setuid");
 
2296
  }
2273
2297
  
2274
2298
  /* Removes the GPGME temp directory and all files inside */
2275
2299
  if(tempdir_created){
2289
2313
        }
2290
2314
        ret = remove(fullname);
2291
2315
        if(ret == -1){
2292
 
          fprintf(stderr, "Mandos plugin mandos-client: "
2293
 
                  "remove(\"%s\"): %s\n", fullname, strerror(errno));
 
2316
          fprintf_plus(stderr, "remove(\"%s\"): %s\n", fullname,
 
2317
                       strerror(errno));
2294
2318
        }
2295
2319
        free(fullname);
2296
2320
      }