47
49
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
 
48
50
                                   sockaddr_in6, PF_INET6,
 
49
51
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
 
51
 
#include <inttypes.h>           /* PRIu16 */
 
 
52
                                   uid_t, gid_t, open(), opendir(),
 
 
54
#include <sys/stat.h>           /* open() */
 
52
55
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
 
53
56
                                   struct in6_addr, inet_pton(),
 
 
58
#include <fcntl.h>              /* open() */
 
 
59
#include <dirent.h>             /* opendir(), struct dirent, readdir()
 
 
61
#include <inttypes.h>           /* PRIu16, intmax_t, SCNdMAX */
 
55
62
#include <assert.h>             /* assert() */
 
56
63
#include <errno.h>              /* perror(), errno */
 
57
64
#include <time.h>               /* time() */
 
58
65
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
 
59
66
                                   SIOCSIFFLAGS, if_indextoname(),
 
60
67
                                   if_nametoindex(), IF_NAMESIZE */
 
 
68
#include <netinet/in.h>
 
61
69
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
 
62
70
                                   getuid(), getgid(), setuid(),
 
64
 
#include <netinet/in.h>
 
65
72
#include <arpa/inet.h>          /* inet_pton(), htons */
 
66
 
#include <iso646.h>             /* not, and */
 
 
73
#include <iso646.h>             /* not, and, or */
 
67
74
#include <argp.h>               /* struct argp_option, error_t, struct
 
68
75
                                   argp_state, struct argp,
 
69
76
                                   argp_parse(), ARGP_KEY_ARG,
 
 
135
 
 * Decrypt OpenPGP data using keyrings in HOMEDIR.
 
136
 
 * Returns -1 on error
 
138
 
static ssize_t pgp_packet_decrypt (const char *cryptotext,
 
141
 
                                   const char *homedir){
 
142
 
  gpgme_data_t dh_crypto, dh_plain;
 
 
149
static bool init_gpgme(mandos_context *mc, const char *seckey,
 
 
150
                       const char *pubkey, const char *tempdir){
 
144
152
  gpgme_error_t rc;
 
146
 
  size_t plaintext_capacity = 0;
 
147
 
  ssize_t plaintext_length = 0;
 
148
153
  gpgme_engine_info_t engine_info;
 
151
 
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
 
 
157
   * Helper function to insert pub and seckey to the enigne keyring.
 
 
159
  bool import_key(const char *filename){
 
 
161
    gpgme_data_t pgp_data;
 
 
163
    fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
 
 
169
    rc = gpgme_data_new_from_fd(&pgp_data, fd);
 
 
170
    if(rc != GPG_ERR_NO_ERROR){
 
 
171
      fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
 
 
172
              gpgme_strsource(rc), gpgme_strerror(rc));
 
 
176
    rc = gpgme_op_import(mc->ctx, pgp_data);
 
 
177
    if(rc != GPG_ERR_NO_ERROR){
 
 
178
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
 
 
179
              gpgme_strsource(rc), gpgme_strerror(rc));
 
 
183
    ret = (int)TEMP_FAILURE_RETRY(close(fd));
 
 
187
    gpgme_data_release(pgp_data);
 
 
192
    fprintf(stderr, "Initialize gpgme\n");
 
155
196
  gpgme_check_version(NULL);
 
156
197
  rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
 
157
 
  if (rc != GPG_ERR_NO_ERROR){
 
 
198
  if(rc != GPG_ERR_NO_ERROR){
 
158
199
    fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
 
159
200
            gpgme_strsource(rc), gpgme_strerror(rc));
 
163
 
  /* Set GPGME home directory for the OpenPGP engine only */
 
164
 
  rc = gpgme_get_engine_info (&engine_info);
 
165
 
  if (rc != GPG_ERR_NO_ERROR){
 
 
204
    /* Set GPGME home directory for the OpenPGP engine only */
 
 
205
  rc = gpgme_get_engine_info(&engine_info);
 
 
206
  if(rc != GPG_ERR_NO_ERROR){
 
166
207
    fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
 
167
208
            gpgme_strsource(rc), gpgme_strerror(rc));
 
170
211
  while(engine_info != NULL){
 
171
212
    if(engine_info->protocol == GPGME_PROTOCOL_OpenPGP){
 
172
213
      gpgme_set_engine_info(GPGME_PROTOCOL_OpenPGP,
 
173
 
                            engine_info->file_name, homedir);
 
 
214
                            engine_info->file_name, tempdir);
 
176
217
    engine_info = engine_info->next;
 
178
219
  if(engine_info == NULL){
 
179
 
    fprintf(stderr, "Could not set GPGME home dir to %s\n", homedir);
 
 
220
    fprintf(stderr, "Could not set GPGME home dir to %s\n", tempdir);
 
 
224
  /* Create new GPGME "context" */
 
 
225
  rc = gpgme_new(&(mc->ctx));
 
 
226
  if(rc != GPG_ERR_NO_ERROR){
 
 
227
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
 
 
228
            gpgme_strsource(rc), gpgme_strerror(rc));
 
 
232
  if(not import_key(pubkey) or not import_key(seckey)){
 
 
240
 * Decrypt OpenPGP data.
 
 
241
 * Returns -1 on error
 
 
243
static ssize_t pgp_packet_decrypt(const mandos_context *mc,
 
 
244
                                  const char *cryptotext,
 
 
247
  gpgme_data_t dh_crypto, dh_plain;
 
 
250
  size_t plaintext_capacity = 0;
 
 
251
  ssize_t plaintext_length = 0;
 
 
254
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
 
183
257
  /* Create new GPGME data buffer from memory cryptotext */
 
184
258
  rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
 
186
 
  if (rc != GPG_ERR_NO_ERROR){
 
 
260
  if(rc != GPG_ERR_NO_ERROR){
 
187
261
    fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
 
188
262
            gpgme_strsource(rc), gpgme_strerror(rc));
 
 
192
266
  /* Create new empty GPGME data buffer for the plaintext */
 
193
267
  rc = gpgme_data_new(&dh_plain);
 
194
 
  if (rc != GPG_ERR_NO_ERROR){
 
 
268
  if(rc != GPG_ERR_NO_ERROR){
 
195
269
    fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
 
196
270
            gpgme_strsource(rc), gpgme_strerror(rc));
 
197
271
    gpgme_data_release(dh_crypto);
 
201
 
  /* Create new GPGME "context" */
 
202
 
  rc = gpgme_new(&ctx);
 
203
 
  if (rc != GPG_ERR_NO_ERROR){
 
204
 
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
 
205
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
206
 
    plaintext_length = -1;
 
210
275
  /* Decrypt data from the cryptotext data buffer to the plaintext
 
212
 
  rc = gpgme_op_decrypt(ctx, dh_crypto, dh_plain);
 
213
 
  if (rc != GPG_ERR_NO_ERROR){
 
 
277
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
 
 
278
  if(rc != GPG_ERR_NO_ERROR){
 
214
279
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
 
215
280
            gpgme_strsource(rc), gpgme_strerror(rc));
 
216
281
    plaintext_length = -1;
 
 
283
      gpgme_decrypt_result_t result;
 
 
284
      result = gpgme_op_decrypt_result(mc->ctx);
 
 
286
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
 
 
288
        fprintf(stderr, "Unsupported algorithm: %s\n",
 
 
289
                result->unsupported_algorithm);
 
 
290
        fprintf(stderr, "Wrong key usage: %u\n",
 
 
291
                result->wrong_key_usage);
 
 
292
        if(result->file_name != NULL){
 
 
293
          fprintf(stderr, "File name: %s\n", result->file_name);
 
 
295
        gpgme_recipient_t recipient;
 
 
296
        recipient = result->recipients;
 
 
298
          while(recipient != NULL){
 
 
299
            fprintf(stderr, "Public key algorithm: %s\n",
 
 
300
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
 
301
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
 
302
            fprintf(stderr, "Secret key available: %s\n",
 
 
303
                    recipient->status == GPG_ERR_NO_SECKEY
 
 
305
            recipient = recipient->next;
 
217
310
    goto decrypt_end;
 
 
221
314
    fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
 
225
 
    gpgme_decrypt_result_t result;
 
226
 
    result = gpgme_op_decrypt_result(ctx);
 
228
 
      fprintf(stderr, "gpgme_op_decrypt_result failed\n");
 
230
 
      fprintf(stderr, "Unsupported algorithm: %s\n",
 
231
 
              result->unsupported_algorithm);
 
232
 
      fprintf(stderr, "Wrong key usage: %u\n",
 
233
 
              result->wrong_key_usage);
 
234
 
      if(result->file_name != NULL){
 
235
 
        fprintf(stderr, "File name: %s\n", result->file_name);
 
237
 
      gpgme_recipient_t recipient;
 
238
 
      recipient = result->recipients;
 
240
 
        while(recipient != NULL){
 
241
 
          fprintf(stderr, "Public key algorithm: %s\n",
 
242
 
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
243
 
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
244
 
          fprintf(stderr, "Secret key available: %s\n",
 
245
 
                  recipient->status == GPG_ERR_NO_SECKEY
 
247
 
          recipient = recipient->next;
 
253
317
  /* Seek back to the beginning of the GPGME plaintext data buffer */
 
254
 
  if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
 
255
 
    perror("pgpme_data_seek");
 
 
318
  if(gpgme_data_seek(dh_plain, (off_t)0, SEEK_SET) == -1){
 
 
319
    perror("gpgme_data_seek");
 
256
320
    plaintext_length = -1;
 
257
321
    goto decrypt_end;
 
 
341
406
  /* OpenPGP credentials */
 
342
407
  gnutls_certificate_allocate_credentials(&mc->cred);
 
343
 
  if (ret != GNUTLS_E_SUCCESS){
 
344
 
    fprintf (stderr, "GnuTLS memory error: %s\n",
 
345
 
             safer_gnutls_strerror(ret));
 
346
 
    gnutls_global_deinit ();
 
 
408
  if(ret != GNUTLS_E_SUCCESS){
 
 
409
    fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
 
 
413
            safer_gnutls_strerror(ret));
 
 
414
    gnutls_global_deinit();
 
351
 
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
 
352
 
            " and keyfile %s as GnuTLS credentials\n", pubkeyfilename,
 
 
419
    fprintf(stderr, "Attempting to use OpenPGP public key %s and"
 
 
420
            " secret key %s as GnuTLS credentials\n", pubkeyfilename,
 
356
424
  ret = gnutls_certificate_set_openpgp_key_file
 
357
425
    (mc->cred, pubkeyfilename, seckeyfilename,
 
358
426
     GNUTLS_OPENPGP_FMT_BASE64);
 
359
 
  if (ret != GNUTLS_E_SUCCESS) {
 
 
427
  if(ret != GNUTLS_E_SUCCESS) {
 
361
429
            "Error[%d] while reading the OpenPGP key pair ('%s',"
 
362
430
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
363
 
    fprintf(stdout, "The GnuTLS error is: %s\n",
 
 
431
    fprintf(stderr, "The GnuTLS error is: %s\n",
 
364
432
            safer_gnutls_strerror(ret));
 
368
436
  /* GnuTLS server initialization */
 
369
437
  ret = gnutls_dh_params_init(&mc->dh_params);
 
370
 
  if (ret != GNUTLS_E_SUCCESS) {
 
371
 
    fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
 
372
 
             " %s\n", safer_gnutls_strerror(ret));
 
 
438
  if(ret != GNUTLS_E_SUCCESS) {
 
 
439
    fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
 
 
440
            " %s\n", safer_gnutls_strerror(ret));
 
375
443
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
 
376
 
  if (ret != GNUTLS_E_SUCCESS) {
 
377
 
    fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
 
378
 
             safer_gnutls_strerror(ret));
 
 
444
  if(ret != GNUTLS_E_SUCCESS) {
 
 
445
    fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
 
 
446
            safer_gnutls_strerror(ret));
 
382
450
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
 
388
456
  gnutls_certificate_free_credentials(mc->cred);
 
389
457
  gnutls_global_deinit();
 
 
458
  gnutls_dh_params_deinit(mc->dh_params);
 
394
462
static int init_gnutls_session(mandos_context *mc,
 
 
406
474
    ret = gnutls_priority_set_direct(*session, mc->priority, &err);
 
407
 
    if (ret != GNUTLS_E_SUCCESS) {
 
 
475
    if(ret != GNUTLS_E_SUCCESS) {
 
408
476
      fprintf(stderr, "Syntax error at: %s\n", err);
 
409
477
      fprintf(stderr, "GnuTLS error: %s\n",
 
410
478
              safer_gnutls_strerror(ret));
 
411
 
      gnutls_deinit (*session);
 
 
479
      gnutls_deinit(*session);
 
416
484
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
 
418
 
  if (ret != GNUTLS_E_SUCCESS) {
 
 
486
  if(ret != GNUTLS_E_SUCCESS) {
 
419
487
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
 
420
488
            safer_gnutls_strerror(ret));
 
421
 
    gnutls_deinit (*session);
 
 
489
    gnutls_deinit(*session);
 
425
493
  /* ignore client certificate if any. */
 
426
 
  gnutls_certificate_server_set_request (*session,
 
 
494
  gnutls_certificate_server_set_request(*session,
 
429
 
  gnutls_dh_set_prime_bits (*session, mc->dh_bits);
 
 
497
  gnutls_dh_set_prime_bits(*session, mc->dh_bits);
 
 
561
632
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
 
566
637
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
 
567
638
                                   buffer_capacity);
 
568
 
    if (buffer_capacity == 0){
 
 
639
    if(buffer_capacity == 0){
 
569
640
      perror("adjustbuffer");
 
574
 
    ret = gnutls_record_recv(session, buffer+buffer_length,
 
 
645
    sret = gnutls_record_recv(session, buffer+buffer_length,
 
581
652
      case GNUTLS_E_INTERRUPTED:
 
582
653
      case GNUTLS_E_AGAIN:
 
584
655
      case GNUTLS_E_REHANDSHAKE:
 
586
 
          ret = gnutls_handshake (session);
 
 
657
          ret = gnutls_handshake(session);
 
587
658
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
 
589
660
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
 
 
608
679
    fprintf(stderr, "Closing TLS session\n");
 
611
 
  gnutls_bye (session, GNUTLS_SHUT_RDWR);
 
 
682
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
613
 
  if (buffer_length > 0){
 
614
 
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
 
 
684
  if(buffer_length > 0){
 
 
685
    decrypted_buffer_size = pgp_packet_decrypt(mc, buffer,
 
618
 
    if (decrypted_buffer_size >= 0){
 
 
688
    if(decrypted_buffer_size >= 0){
 
620
690
      while(written < (size_t) decrypted_buffer_size){
 
621
 
        ret = (int)fwrite (decrypted_buffer + written, 1,
 
622
 
                           (size_t)decrypted_buffer_size - written,
 
 
691
        ret = (int)fwrite(decrypted_buffer + written, 1,
 
 
692
                          (size_t)decrypted_buffer_size - written,
 
624
694
        if(ret == 0 and ferror(stdout)){
 
626
696
            fprintf(stderr, "Error writing encrypted data: %s\n",
 
 
680
755
      avahi_address_snprint(ip, sizeof(ip), address);
 
682
757
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
 
683
 
                PRIu16 ") on port %d\n", name, host_name, ip,
 
 
758
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
 
 
759
                ip, (intmax_t)interface, port);
 
686
761
      int ret = start_mandos_communication(ip, port, interface, mc);
 
688
763
        avahi_simple_poll_quit(mc->simple_poll);
 
 
768
833
    char *connect_to = NULL;
 
 
834
    char tempdir[] = "/tmp/mandosXXXXXX";
 
769
835
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
 
770
 
    char *pubkeyfilename = NULL;
 
771
 
    char *seckeyfilename = NULL;
 
772
 
    const char *pubkeyname = "pubkey.txt";
 
773
 
    const char *seckeyname = "seckey.txt";
 
 
836
    const char *seckey = PATHDIR "/" SECKEY;
 
 
837
    const char *pubkey = PATHDIR "/" PUBKEY;
 
774
839
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
 
775
 
                          .dh_bits = 1024, .priority = "SECURE256"};
 
776
 
    bool gnutls_initalized = false;
 
 
840
                          .dh_bits = 1024, .priority = "SECURE256"
 
 
841
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
 
842
    bool gnutls_initialized = false;
 
 
843
    bool gpgme_initialized = false;
 
779
846
      struct argp_option options[] = {
 
780
847
        { .name = "debug", .key = 128,
 
781
848
          .doc = "Debug mode", .group = 3 },
 
782
849
        { .name = "connect", .key = 'c',
 
784
 
          .doc = "Connect directly to a sepcified mandos server",
 
 
850
          .arg = "ADDRESS:PORT",
 
 
851
          .doc = "Connect directly to a specific Mandos server",
 
786
853
        { .name = "interface", .key = 'i',
 
788
 
          .doc = "Interface that Avahi will conntect through",
 
790
 
        { .name = "keydir", .key = 'd',
 
792
 
          .doc = "Directory where the openpgp keyring is",
 
 
855
          .doc = "Interface that will be used to search for Mandos"
 
794
858
        { .name = "seckey", .key = 's',
 
796
 
          .doc = "Secret openpgp key for gnutls authentication",
 
 
860
          .doc = "OpenPGP secret key file base name",
 
798
862
        { .name = "pubkey", .key = 'p',
 
800
 
          .doc = "Public openpgp key for gnutls authentication",
 
 
864
          .doc = "OpenPGP public key file base name",
 
802
866
        { .name = "dh-bits", .key = 129,
 
804
 
          .doc = "dh-bits to use in gnutls communication",
 
 
868
          .doc = "Bit length of the prime number used in the"
 
 
869
          " Diffie-Hellman key exchange",
 
806
871
        { .name = "priority", .key = 130,
 
808
 
          .doc = "GNUTLS priority", .group = 1 },
 
 
873
          .doc = "GnuTLS priority string for the TLS handshake",
 
813
 
      error_t parse_opt (int key, char *arg,
 
814
 
                         struct argp_state *state) {
 
815
 
        /* Get the INPUT argument from `argp_parse', which we know is
 
816
 
           a pointer to our plugin list pointer. */
 
 
878
      error_t parse_opt(int key, char *arg,
 
 
879
                        struct argp_state *state) {
 
 
881
        case 128:               /* --debug */
 
 
884
        case 'c':               /* --connect */
 
822
885
          connect_to = arg;
 
 
887
        case 'i':               /* --interface */
 
838
 
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
 
 
890
        case 's':               /* --seckey */
 
 
893
        case 'p':               /* --pubkey */
 
 
896
        case 129:               /* --dh-bits */
 
 
897
          ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
 
898
          if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
 
 
899
             or arg[numchars] != '\0'){
 
 
900
            fprintf(stderr, "Bad number of DH bits\n");
 
841
901
            exit(EXIT_FAILURE);
 
 
903
          mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
 
 
905
        case 130:               /* --priority */
 
845
906
          mc.priority = arg;
 
847
908
        case ARGP_KEY_ARG:
 
849
910
        case ARGP_KEY_END:
 
 
857
918
      struct argp argp = { .options = options, .parser = parse_opt,
 
859
920
                           .doc = "Mandos client -- Get and decrypt"
 
860
 
                           " passwords from mandos server" };
 
861
 
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
 
862
 
      if (ret == ARGP_ERR_UNKNOWN){
 
 
921
                           " passwords from a Mandos server" };
 
 
922
      ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
 
 
923
      if(ret == ARGP_ERR_UNKNOWN){
 
863
924
        fprintf(stderr, "Unknown error while parsing arguments\n");
 
864
925
        exitcode = EXIT_FAILURE;
 
869
 
    pubkeyfilename = combinepath(keydir, pubkeyname);
 
870
 
    if (pubkeyfilename == NULL){
 
871
 
      perror("combinepath");
 
872
 
      exitcode = EXIT_FAILURE;
 
876
 
    seckeyfilename = combinepath(keydir, seckeyname);
 
877
 
    if (seckeyfilename == NULL){
 
878
 
      perror("combinepath");
 
879
 
      exitcode = EXIT_FAILURE;
 
883
 
    ret = init_gnutls_global(&mc, pubkeyfilename, seckeyfilename);
 
885
 
      fprintf(stderr, "init_gnutls_global failed\n");
 
886
 
      exitcode = EXIT_FAILURE;
 
889
 
      gnutls_initalized = true;
 
892
930
    /* If the interface is down, bring it up */
 
 
 
954
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
922
963
    ret = setuid(uid);
 
924
965
      perror("setuid");
 
929
970
      perror("setgid");
 
 
973
    ret = init_gnutls_global(&mc, pubkey, seckey);
 
 
975
      fprintf(stderr, "init_gnutls_global failed\n");
 
 
976
      exitcode = EXIT_FAILURE;
 
 
979
      gnutls_initialized = true;
 
 
982
    if(mkdtemp(tempdir) == NULL){
 
 
988
    if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
 
 
989
      fprintf(stderr, "init_gpgme failed\n");
 
 
990
      exitcode = EXIT_FAILURE;
 
 
993
      gpgme_initialized = true;
 
932
996
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
933
997
    if(if_index == 0){
 
934
998
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
 
 
1019
1085
    /* Run the main loop */
 
1022
1088
      fprintf(stderr, "Starting Avahi loop search\n");
 
1025
1091
    avahi_simple_poll_loop(mc.simple_poll);
 
1030
1096
      fprintf(stderr, "%s exiting\n", argv[0]);
 
1033
1099
    /* Cleanup things */
 
1035
1101
        avahi_s_service_browser_free(sb);
 
1037
 
    if (mc.server != NULL)
 
 
1103
    if(mc.server != NULL)
 
1038
1104
        avahi_server_free(mc.server);
 
1040
 
    if (mc.simple_poll != NULL)
 
 
1106
    if(mc.simple_poll != NULL)
 
1041
1107
        avahi_simple_poll_free(mc.simple_poll);
 
1042
 
    free(pubkeyfilename);
 
1043
 
    free(seckeyfilename);
 
1045
 
    if (gnutls_initalized){
 
 
1109
    if(gnutls_initialized){
 
1046
1110
      gnutls_certificate_free_credentials(mc.cred);
 
1047
 
      gnutls_global_deinit ();
 
 
1111
      gnutls_global_deinit();
 
 
1112
      gnutls_dh_params_deinit(mc.dh_params);
 
 
1115
    if(gpgme_initialized){
 
 
1116
      gpgme_release(mc.ctx);
 
 
1119
    /* Removes the temp directory used by GPGME */
 
 
1120
    if(tempdir[0] != '\0'){
 
 
1122
      struct dirent *direntry;
 
 
1123
      d = opendir(tempdir);
 
 
1125
        if(errno != ENOENT){
 
 
1130
          direntry = readdir(d);
 
 
1131
          if(direntry == NULL){
 
 
1134
          /* Skip "." and ".." */
 
 
1135
          if(direntry->d_name[0] == '.'
 
 
1136
             and (direntry->d_name[1] == '\0'
 
 
1137
                  or (direntry->d_name[1] == '.'
 
 
1138
                      and direntry->d_name[2] == '\0'))){
 
 
1141
          char *fullname = NULL;
 
 
1142
          ret = asprintf(&fullname, "%s/%s", tempdir,
 
 
1148
          ret = remove(fullname);
 
 
1150
            fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
 
 
1157
      ret = rmdir(tempdir);
 
 
1158
      if(ret == -1 and errno != ENOENT){
 
1050
1163
    return exitcode;