/mandos/release

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

« back to all changes in this revision

Viewing changes to plugins.d/password-request.c

  • Committer: Björn Påhlsson
  • Date: 2008-08-15 20:17:32 UTC
  • mto: (237.7.1 mandos) (24.1.154 mandos)
  • mto: This revision was merged to the branch mainline in revision 77.
  • Revision ID: belorn@braxen-20080815201732-b7uux3yqs05b3fy9
Added configuration files support for mandos-client
Removed plus argument support for mandos-client

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY() */
36
36
 
37
 
#include <stdio.h>
38
 
#include <assert.h>
39
 
#include <stdlib.h>
40
 
#include <time.h>
41
 
#include <net/if.h>             /* if_nametoindex */
42
 
#include <sys/ioctl.h>          /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
43
 
                                   SIOCSIFFLAGS */
 
37
#include <stdio.h>              /* fprintf(), stderr, fwrite(), stdout,
 
38
                                   ferror() */
 
39
#include <stdint.h>             /* uint16_t, uint32_t */
 
40
#include <stddef.h>             /* NULL, size_t, ssize_t */
 
41
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
 
42
                                   srand() */
 
43
#include <stdbool.h>            /* bool, true */
 
44
#include <string.h>             /* memset(), strcmp(), strlen(),
 
45
                                   strerror(), memcpy(), strcpy() */
 
46
#include <sys/ioctl.h>          /* ioctl */
 
47
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
 
48
                                   sockaddr_in6, PF_INET6,
 
49
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
 
50
                                   uid_t, gid_t */
 
51
#include <inttypes.h>           /* PRIu16 */
 
52
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
 
53
                                   struct in6_addr, inet_pton(),
 
54
                                   connect() */
 
55
#include <assert.h>             /* assert() */
 
56
#include <errno.h>              /* perror(), errno */
 
57
#include <time.h>               /* time() */
44
58
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
45
 
                                   SIOCSIFFLAGS */
 
59
                                   SIOCSIFFLAGS, if_indextoname(),
 
60
                                   if_nametoindex(), IF_NAMESIZE */
 
61
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
 
62
                                   getuid(), getgid(), setuid(),
 
63
                                   setgid() */
 
64
#include <netinet/in.h>
 
65
#include <arpa/inet.h>          /* inet_pton(), htons */
 
66
#include <iso646.h>             /* not, and */
 
67
#include <argp.h>               /* struct argp_option, error_t, struct
 
68
                                   argp_state, struct argp,
 
69
                                   argp_parse(), ARGP_KEY_ARG,
 
70
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
46
71
 
 
72
/* Avahi */
 
73
/* All Avahi types, constants and functions
 
74
 Avahi*, avahi_*,
 
75
 AVAHI_* */
47
76
#include <avahi-core/core.h>
48
77
#include <avahi-core/lookup.h>
49
78
#include <avahi-core/log.h>
51
80
#include <avahi-common/malloc.h>
52
81
#include <avahi-common/error.h>
53
82
 
54
 
/* Mandos client part */
55
 
#include <sys/types.h>          /* socket(), inet_pton() */
56
 
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
57
 
                                   struct in6_addr, inet_pton() */
58
 
#include <gnutls/gnutls.h>      /* All GnuTLS stuff */
59
 
#include <gnutls/openpgp.h>     /* GnuTLS with openpgp stuff */
60
 
 
61
 
#include <unistd.h>             /* close() */
62
 
#include <netinet/in.h>
63
 
#include <stdbool.h>            /* true */
64
 
#include <string.h>             /* memset */
65
 
#include <arpa/inet.h>          /* inet_pton() */
66
 
#include <iso646.h>             /* not */
67
 
#include <net/if.h>             /* IF_NAMESIZE */
 
83
/* GnuTLS */
 
84
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and functions
 
85
                                   gnutls_*
 
86
                                   init_gnutls_session(),
 
87
                                   GNUTLS_* */
 
88
#include <gnutls/openpgp.h>     /* gnutls_certificate_set_openpgp_key_file(),
 
89
                                   GNUTLS_OPENPGP_FMT_BASE64 */
68
90
 
69
91
/* GPGME */
70
 
#include <errno.h>              /* perror() */
71
 
#include <gpgme.h>
72
 
 
73
 
/* getopt_long */
74
 
#include <getopt.h>
 
92
#include <gpgme.h>              /* All GPGME types, constants and functions
 
93
                                   gpgme_*
 
94
                                   GPGME_PROTOCOL_OpenPGP,
 
95
                                   GPG_ERR_NO_* */
75
96
 
76
97
#define BUFFER_SIZE 256
77
98
 
 
99
bool debug = false;
78
100
static const char *keydir = "/conf/conf.d/mandos";
79
 
static const char *pubkeyfile = "pubkey.txt";
80
 
static const char *seckeyfile = "seckey.txt";
81
 
 
82
 
bool debug = false;
83
 
 
84
 
const char mandos_protocol_version[] = "1";
85
 
 
86
 
/* Used for passing in values through all the callback functions */
 
101
static const char mandos_protocol_version[] = "1";
 
102
const char *argp_program_version = "password-request 1.0";
 
103
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
104
 
 
105
/* Used for passing in values through the Avahi callback functions */
87
106
typedef struct {
88
107
  AvahiSimplePoll *simple_poll;
89
108
  AvahiServer *server;
93
112
  const char *priority;
94
113
} mandos_context;
95
114
 
 
115
/*
 
116
 * Make room in "buffer" for at least BUFFER_SIZE additional bytes.
 
117
 * "buffer_capacity" is how much is currently allocated,
 
118
 * "buffer_length" is how much is already used.
 
119
 */
96
120
size_t adjustbuffer(char **buffer, size_t buffer_length,
97
121
                  size_t buffer_capacity){
98
122
  if (buffer_length + BUFFER_SIZE > buffer_capacity){
203
227
    } else {
204
228
      fprintf(stderr, "Unsupported algorithm: %s\n",
205
229
              result->unsupported_algorithm);
206
 
      fprintf(stderr, "Wrong key usage: %d\n",
 
230
      fprintf(stderr, "Wrong key usage: %u\n",
207
231
              result->wrong_key_usage);
208
232
      if(result->file_name != NULL){
209
233
        fprintf(stderr, "File name: %s\n", result->file_name);
233
257
  
234
258
  *plaintext = NULL;
235
259
  while(true){
236
 
    plaintext_capacity = adjustbuffer(plaintext, (size_t)plaintext_length,
 
260
    plaintext_capacity = adjustbuffer(plaintext,
 
261
                                      (size_t)plaintext_length,
237
262
                                      plaintext_capacity);
238
263
    if (plaintext_capacity == 0){
239
264
        perror("adjustbuffer");
287
312
  fprintf(stderr, "GnuTLS: %s", string);
288
313
}
289
314
 
290
 
static int init_gnutls_global(mandos_context *mc){
 
315
static int init_gnutls_global(mandos_context *mc,
 
316
                              const char *pubkeyfile,
 
317
                              const char *seckeyfile){
291
318
  int ret;
292
319
  
293
320
  if(debug){
294
321
    fprintf(stderr, "Initializing GnuTLS\n");
295
322
  }
296
 
 
297
 
  if ((ret = gnutls_global_init ())
298
 
      != GNUTLS_E_SUCCESS) {
 
323
  
 
324
  ret = gnutls_global_init();
 
325
  if (ret != GNUTLS_E_SUCCESS) {
299
326
    fprintf (stderr, "GnuTLS global_init: %s\n",
300
327
             safer_gnutls_strerror(ret));
301
328
    return -1;
310
337
  }
311
338
  
312
339
  /* OpenPGP credentials */
313
 
  if ((ret = gnutls_certificate_allocate_credentials (&mc->cred))
314
 
      != GNUTLS_E_SUCCESS) {
 
340
  gnutls_certificate_allocate_credentials(&mc->cred);
 
341
  if (ret != GNUTLS_E_SUCCESS){
315
342
    fprintf (stderr, "GnuTLS memory error: %s\n",
316
343
             safer_gnutls_strerror(ret));
 
344
    gnutls_global_deinit ();
317
345
    return -1;
318
346
  }
319
347
  
331
359
            " '%s')\n", ret, pubkeyfile, seckeyfile);
332
360
    fprintf(stdout, "The GnuTLS error is: %s\n",
333
361
            safer_gnutls_strerror(ret));
334
 
    return -1;
 
362
    goto globalfail;
335
363
  }
336
364
  
337
365
  /* GnuTLS server initialization */
339
367
  if (ret != GNUTLS_E_SUCCESS) {
340
368
    fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
341
369
             " %s\n", safer_gnutls_strerror(ret));
342
 
    return -1;
 
370
    goto globalfail;
343
371
  }
344
372
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
345
373
  if (ret != GNUTLS_E_SUCCESS) {
346
374
    fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
347
375
             safer_gnutls_strerror(ret));
348
 
    return -1;
 
376
    goto globalfail;
349
377
  }
350
378
  
351
379
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
352
380
 
353
381
  return 0;
 
382
 
 
383
 globalfail:
 
384
 
 
385
  gnutls_certificate_free_credentials(mc->cred);
 
386
  gnutls_global_deinit();
 
387
  return -1;
 
388
 
354
389
}
355
390
 
356
 
static int init_gnutls_session(mandos_context *mc, gnutls_session_t *session){
 
391
static int init_gnutls_session(mandos_context *mc,
 
392
                               gnutls_session_t *session){
357
393
  int ret;
358
394
  /* GnuTLS session creation */
359
395
  ret = gnutls_init(session, GNUTLS_SERVER);
369
405
      fprintf(stderr, "Syntax error at: %s\n", err);
370
406
      fprintf(stderr, "GnuTLS error: %s\n",
371
407
              safer_gnutls_strerror(ret));
 
408
      gnutls_deinit (*session);
372
409
      return -1;
373
410
    }
374
411
  }
378
415
  if (ret != GNUTLS_E_SUCCESS) {
379
416
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
380
417
            safer_gnutls_strerror(ret));
 
418
    gnutls_deinit (*session);
381
419
    return -1;
382
420
  }
383
421
  
399
437
                                      AvahiIfIndex if_index,
400
438
                                      mandos_context *mc){
401
439
  int ret, tcp_sd;
402
 
  struct sockaddr_in6 to;
 
440
  union { struct sockaddr in; struct sockaddr_in6 in6; } to;
403
441
  char *buffer = NULL;
404
442
  char *decrypted_buffer;
405
443
  size_t buffer_length = 0;
409
447
  int retval = 0;
410
448
  char interface[IF_NAMESIZE];
411
449
  gnutls_session_t session;
412
 
  gnutls_dh_params_t dh_params;
413
450
  
414
451
  ret = init_gnutls_session (mc, &session);
415
452
  if (ret != 0){
417
454
  }
418
455
  
419
456
  if(debug){
420
 
    fprintf(stderr, "Setting up a tcp connection to %s, port %d\n",
421
 
            ip, port);
 
457
    fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
 
458
            "\n", ip, port);
422
459
  }
423
460
  
424
461
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
436
473
  }
437
474
  
438
475
  memset(&to,0,sizeof(to));     /* Spurious warning */
439
 
  to.sin6_family = AF_INET6;
 
476
  to.in6.sin6_family = AF_INET6;
440
477
  /* It would be nice to have a way to detect if we were passed an
441
478
     IPv4 address here.   Now we assume an IPv6 address. */
442
 
  ret = inet_pton(AF_INET6, ip, &to.sin6_addr);
 
479
  ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
443
480
  if (ret < 0 ){
444
481
    perror("inet_pton");
445
482
    return -1;
448
485
    fprintf(stderr, "Bad address: %s\n", ip);
449
486
    return -1;
450
487
  }
451
 
  to.sin6_port = htons(port);   /* Spurious warning */
 
488
  to.in6.sin6_port = htons(port); /* Spurious warning */
452
489
  
453
 
  to.sin6_scope_id = (uint32_t)if_index;
 
490
  to.in6.sin6_scope_id = (uint32_t)if_index;
454
491
  
455
492
  if(debug){
456
 
    fprintf(stderr, "Connection to: %s, port %d\n", ip, port);
 
493
    fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
 
494
            port);
457
495
    char addrstr[INET6_ADDRSTRLEN] = "";
458
 
    if(inet_ntop(to.sin6_family, &(to.sin6_addr), addrstr,
 
496
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
459
497
                 sizeof(addrstr)) == NULL){
460
498
      perror("inet_ntop");
461
499
    } else {
465
503
    }
466
504
  }
467
505
  
468
 
  ret = connect(tcp_sd, (struct sockaddr *) &to, sizeof(to));
 
506
  ret = connect(tcp_sd, &to.in, sizeof(to));
469
507
  if (ret < 0){
470
508
    perror("connect");
471
509
    return -1;
500
538
  }
501
539
  
502
540
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
503
 
  
504
 
  ret = gnutls_handshake (session);
 
541
 
 
542
  do{
 
543
    ret = gnutls_handshake (session);
 
544
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
505
545
  
506
546
  if (ret != GNUTLS_E_SUCCESS){
507
547
    if(debug){
520
560
  }
521
561
 
522
562
  while(true){
523
 
    buffer_capacity = adjustbuffer(&buffer, buffer_length, buffer_capacity);
 
563
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
 
564
                                   buffer_capacity);
524
565
    if (buffer_capacity == 0){
525
566
      perror("adjustbuffer");
526
567
      retval = -1;
538
579
      case GNUTLS_E_AGAIN:
539
580
        break;
540
581
      case GNUTLS_E_REHANDSHAKE:
541
 
        ret = gnutls_handshake (session);
 
582
        do{
 
583
          ret = gnutls_handshake (session);
 
584
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
542
585
        if (ret < 0){
543
586
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
544
587
          gnutls_perror (ret);
597
640
  free(buffer);
598
641
  close(tcp_sd);
599
642
  gnutls_deinit (session);
600
 
  gnutls_certificate_free_credentials (mc->cred);
601
 
  gnutls_global_deinit ();
602
643
  return retval;
603
644
}
604
645
 
635
676
      char ip[AVAHI_ADDRESS_STR_MAX];
636
677
      avahi_address_snprint(ip, sizeof(ip), address);
637
678
      if(debug){
638
 
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %d) on"
639
 
                " port %d\n", name, host_name, ip, interface, port);
 
679
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
 
680
                PRIu16 ") on port %d\n", name, host_name, ip,
 
681
                interface, port);
640
682
      }
641
683
      int ret = start_mandos_communication(ip, port, interface, mc);
642
684
      if (ret == 0){
643
 
        exit(EXIT_SUCCESS);
 
685
        avahi_simple_poll_quit(mc->simple_poll);
644
686
      }
645
687
    }
646
688
  }
731
773
    gid_t gid;
732
774
    char *connect_to = NULL;
733
775
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
 
776
    const char *pubkeyfile = "pubkey.txt";
 
777
    const char *seckeyfile = "seckey.txt";
734
778
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
735
779
                          .dh_bits = 1024, .priority = "SECURE256"};
 
780
    bool gnutls_initalized = false;
736
781
    
737
782
    {
738
 
      /* Temporary int to get the address of for getopt_long */
739
 
      int debug_int = debug ? 1 : 0;
740
 
      while (true){
741
 
        struct option long_options[] = {
742
 
          {"debug", no_argument, &debug_int, 1},
743
 
          {"connect", required_argument, NULL, 'c'},
744
 
          {"interface", required_argument, NULL, 'i'},
745
 
          {"keydir", required_argument, NULL, 'd'},
746
 
          {"seckey", required_argument, NULL, 's'},
747
 
          {"pubkey", required_argument, NULL, 'p'},
748
 
          {"dh-bits", required_argument, NULL, 'D'},
749
 
          {"priority", required_argument, NULL, 'P'},
750
 
          {0, 0, 0, 0} };
751
 
      
752
 
        int option_index = 0;
753
 
        ret = getopt_long (argc, argv, "i:", long_options,
754
 
                           &option_index);
755
 
      
756
 
        if (ret == -1){
 
783
      struct argp_option options[] = {
 
784
        { .name = "debug", .key = 128,
 
785
          .doc = "Debug mode", .group = 3 },
 
786
        { .name = "connect", .key = 'c',
 
787
          .arg = "IP",
 
788
          .doc = "Connect directly to a sepcified mandos server",
 
789
          .group = 1 },
 
790
        { .name = "interface", .key = 'i',
 
791
          .arg = "INTERFACE",
 
792
          .doc = "Interface that Avahi will conntect through",
 
793
          .group = 1 },
 
794
        { .name = "keydir", .key = 'd',
 
795
          .arg = "KEYDIR",
 
796
          .doc = "Directory where the openpgp keyring is",
 
797
          .group = 1 },
 
798
        { .name = "seckey", .key = 's',
 
799
          .arg = "SECKEY",
 
800
          .doc = "Secret openpgp key for gnutls authentication",
 
801
          .group = 1 },
 
802
        { .name = "pubkey", .key = 'p',
 
803
          .arg = "PUBKEY",
 
804
          .doc = "Public openpgp key for gnutls authentication",
 
805
          .group = 2 },
 
806
        { .name = "dh-bits", .key = 129,
 
807
          .arg = "BITS",
 
808
          .doc = "dh-bits to use in gnutls communication",
 
809
          .group = 2 },
 
810
        { .name = "priority", .key = 130,
 
811
          .arg = "PRIORITY",
 
812
          .doc = "GNUTLS priority", .group = 1 },
 
813
        { .name = NULL }
 
814
      };
 
815
 
 
816
      
 
817
      error_t parse_opt (int key, char *arg,
 
818
                         struct argp_state *state) {
 
819
        /* Get the INPUT argument from `argp_parse', which we know is
 
820
           a pointer to our plugin list pointer. */
 
821
        switch (key) {
 
822
        case 128:
 
823
          debug = true;
757
824
          break;
758
 
        }
759
 
      
760
 
        switch(ret){
761
 
        case 0:
 
825
        case 'c':
 
826
          connect_to = arg;
762
827
          break;
763
828
        case 'i':
764
 
          interface = optarg;
765
 
          break;
766
 
        case 'c':
767
 
          connect_to = optarg;
 
829
          interface = arg;
768
830
          break;
769
831
        case 'd':
770
 
          keydir = optarg;
 
832
          keydir = arg;
 
833
          break;
 
834
        case 's':
 
835
          seckeyfile = arg;
771
836
          break;
772
837
        case 'p':
773
 
          pubkeyfile = optarg;
774
 
          break;
775
 
        case 's':
776
 
          seckeyfile = optarg;
777
 
          break;
778
 
        case 'D':
 
838
          pubkeyfile = arg;
 
839
          break;
 
840
        case 129:
779
841
          errno = 0;
780
 
          mc.dh_bits = (unsigned int) strtol(optarg, NULL, 10);
 
842
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
781
843
          if (errno){
782
844
            perror("strtol");
783
845
            exit(EXIT_FAILURE);
784
846
          }
785
847
          break;
786
 
        case 'P':
787
 
          mc.priority = optarg;
788
 
          break;
789
 
        case '?':
 
848
        case 130:
 
849
          mc.priority = arg;
 
850
          break;
 
851
        case ARGP_KEY_ARG:
 
852
          argp_usage (state);
 
853
        case ARGP_KEY_END:
 
854
          break;
790
855
        default:
791
 
          /* getopt_long() has already printed a message about the
792
 
             unrcognized option, so just exit. */
793
 
          exit(EXIT_FAILURE);
 
856
          return ARGP_ERR_UNKNOWN;
794
857
        }
795
 
      }
796
 
      /* Set the global debug flag from the temporary int */
797
 
      debug = debug_int ? true : false;
 
858
        return 0;
 
859
      }
 
860
 
 
861
      struct argp argp = { .options = options, .parser = parse_opt,
 
862
                           .args_doc = "",
 
863
                           .doc = "Mandos client -- Get and decrypt"
 
864
                           " passwords from mandos server" };
 
865
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
 
866
      if (ret == ARGP_ERR_UNKNOWN){
 
867
        fprintf(stderr, "Unknown error while parsing arguments\n");
 
868
        exitcode = EXIT_FAILURE;
 
869
        goto end;
 
870
      }
798
871
    }
799
 
    
 
872
      
800
873
    pubkeyfile = combinepath(keydir, pubkeyfile);
801
874
    if (pubkeyfile == NULL){
802
875
      perror("combinepath");
807
880
    seckeyfile = combinepath(keydir, seckeyfile);
808
881
    if (seckeyfile == NULL){
809
882
      perror("combinepath");
 
883
      exitcode = EXIT_FAILURE;
810
884
      goto end;
811
885
    }
812
886
 
813
 
    ret = init_gnutls_global(&mc);
 
887
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
814
888
    if (ret == -1){
815
 
      fprintf(stderr, "init_gnutls_global\n");
 
889
      fprintf(stderr, "init_gnutls_global failed\n");
 
890
      exitcode = EXIT_FAILURE;
816
891
      goto end;
817
 
    }
818
 
 
 
892
    } else {
 
893
      gnutls_initalized = true;
 
894
    }
 
895
    
 
896
    /* If the interface is down, bring it up */
 
897
    {
 
898
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
899
      if(sd < 0) {
 
900
        perror("socket");
 
901
        exitcode = EXIT_FAILURE;
 
902
        goto end;
 
903
      }
 
904
      strcpy(network.ifr_name, interface); /* Spurious warning */
 
905
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
906
      if(ret == -1){
 
907
        perror("ioctl SIOCGIFFLAGS");
 
908
        exitcode = EXIT_FAILURE;
 
909
        goto end;
 
910
      }
 
911
      if((network.ifr_flags & IFF_UP) == 0){
 
912
        network.ifr_flags |= IFF_UP;
 
913
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
914
        if(ret == -1){
 
915
          perror("ioctl SIOCSIFFLAGS");
 
916
          exitcode = EXIT_FAILURE;
 
917
          goto end;
 
918
        }
 
919
      }
 
920
      close(sd);
 
921
    }
 
922
    
819
923
    uid = getuid();
820
924
    gid = getgid();
821
 
 
 
925
    
822
926
    ret = setuid(uid);
823
927
    if (ret == -1){
824
928
      perror("setuid");
862
966
      goto end;
863
967
    }
864
968
    
865
 
    /* If the interface is down, bring it up */
866
 
    {
867
 
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
868
 
      if(sd < 0) {
869
 
        perror("socket");
870
 
        exitcode = EXIT_FAILURE;
871
 
        goto end;
872
 
      }
873
 
      strcpy(network.ifr_name, interface); /* Spurious warning */
874
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
875
 
      if(ret == -1){
876
 
        perror("ioctl SIOCGIFFLAGS");
877
 
        exitcode = EXIT_FAILURE;
878
 
        goto end;
879
 
      }
880
 
      if((network.ifr_flags & IFF_UP) == 0){
881
 
        network.ifr_flags |= IFF_UP;
882
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
883
 
        if(ret == -1){
884
 
          perror("ioctl SIOCSIFFLAGS");
885
 
          exitcode = EXIT_FAILURE;
886
 
          goto end;
887
 
        }
888
 
      }
889
 
      close(sd);
890
 
    }
891
 
    
892
969
    if (not debug){
893
970
      avahi_set_log_function(empty_log);
894
971
    }
968
1045
        avahi_simple_poll_free(mc.simple_poll);
969
1046
    free(pubkeyfile);
970
1047
    free(seckeyfile);
 
1048
 
 
1049
    if (gnutls_initalized){
 
1050
      gnutls_certificate_free_credentials(mc.cred);
 
1051
      gnutls_global_deinit ();
 
1052
    }
971
1053
    
972
1054
    return exitcode;
973
1055
}