/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:
32
32
#define _LARGEFILE_SOURCE
33
33
#define _FILE_OFFSET_BITS 64
34
34
 
35
 
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
 
35
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY() */
36
36
 
37
 
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
38
 
                                   stdout, ferror() */
 
37
#include <stdio.h>              /* fprintf(), stderr, fwrite(), stdout,
 
38
                                   ferror() */
39
39
#include <stdint.h>             /* uint16_t, uint32_t */
40
40
#include <stddef.h>             /* NULL, size_t, ssize_t */
41
41
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
42
42
                                   srand() */
43
43
#include <stdbool.h>            /* bool, true */
44
44
#include <string.h>             /* memset(), strcmp(), strlen(),
45
 
                                   strerror(), asprintf(), strcpy() */
 
45
                                   strerror(), memcpy(), strcpy() */
46
46
#include <sys/ioctl.h>          /* ioctl */
47
47
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
48
48
                                   sockaddr_in6, PF_INET6,
49
49
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
50
 
                                   uid_t, gid_t, open(), opendir(), DIR */
51
 
#include <sys/stat.h>           /* open() */
 
50
                                   uid_t, gid_t */
 
51
#include <inttypes.h>           /* PRIu16 */
52
52
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
53
53
                                   struct in6_addr, inet_pton(),
54
54
                                   connect() */
55
 
#include <fcntl.h>              /* open() */
56
 
#include <dirent.h>             /* opendir(), struct dirent, readdir() */
57
 
#include <inttypes.h>           /* PRIu16 */
58
55
#include <assert.h>             /* assert() */
59
56
#include <errno.h>              /* perror(), errno */
60
57
#include <time.h>               /* time() */
61
58
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
62
59
                                   SIOCSIFFLAGS, if_indextoname(),
63
60
                                   if_nametoindex(), IF_NAMESIZE */
64
 
#include <netinet/in.h>
65
61
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
66
62
                                   getuid(), getgid(), setuid(),
67
63
                                   setgid() */
 
64
#include <netinet/in.h>
68
65
#include <arpa/inet.h>          /* inet_pton(), htons */
69
66
#include <iso646.h>             /* not, and */
70
67
#include <argp.h>               /* struct argp_option, error_t, struct
84
81
#include <avahi-common/error.h>
85
82
 
86
83
/* GnuTLS */
87
 
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and
88
 
                                   functions:
 
84
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and functions
89
85
                                   gnutls_*
90
86
                                   init_gnutls_session(),
91
87
                                   GNUTLS_* */
93
89
                                   GNUTLS_OPENPGP_FMT_BASE64 */
94
90
 
95
91
/* GPGME */
96
 
#include <gpgme.h>              /* All GPGME types, constants and
97
 
                                   functions:
 
92
#include <gpgme.h>              /* All GPGME types, constants and functions
98
93
                                   gpgme_*
99
94
                                   GPGME_PROTOCOL_OpenPGP,
100
95
                                   GPG_ERR_NO_* */
101
96
 
102
97
#define BUFFER_SIZE 256
103
98
 
104
 
/*
105
 
  #define PATHDIR "/conf/conf.d/mandos"
106
 
*/
107
 
 
108
 
#define PATHDIR "/conf/conf.d/mandos"
109
 
#define SECKEY "seckey.txt"
110
 
#define PUBKEY "pupkey.txt"
111
 
 
112
99
bool debug = false;
 
100
static const char *keydir = "/conf/conf.d/mandos";
113
101
static const char mandos_protocol_version[] = "1";
114
102
const char *argp_program_version = "password-request 1.0";
115
103
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
122
110
  unsigned int dh_bits;
123
111
  gnutls_dh_params_t dh_params;
124
112
  const char *priority;
125
 
  gpgme_ctx_t ctx;
126
113
} mandos_context;
127
114
 
128
115
/*
143
130
}
144
131
 
145
132
/* 
146
 
 * Initialize GPGME.
 
133
 * Decrypt OpenPGP data using keyrings in HOMEDIR.
 
134
 * Returns -1 on error
147
135
 */
148
 
static bool init_gpgme(mandos_context *mc, const char *seckey,
149
 
                       const char *pubkey, const char *tempdir){
150
 
  int ret;
 
136
static ssize_t pgp_packet_decrypt (const char *cryptotext,
 
137
                                   size_t crypto_size,
 
138
                                   char **plaintext,
 
139
                                   const char *homedir){
 
140
  gpgme_data_t dh_crypto, dh_plain;
 
141
  gpgme_ctx_t ctx;
151
142
  gpgme_error_t rc;
 
143
  ssize_t ret;
 
144
  size_t plaintext_capacity = 0;
 
145
  ssize_t plaintext_length = 0;
152
146
  gpgme_engine_info_t engine_info;
153
 
 
154
 
  
155
 
  /*
156
 
   * Helper function to insert pub and seckey to the enigne keyring.
157
 
   */
158
 
  bool import_key(const char *filename){
159
 
    int fd;
160
 
    gpgme_data_t pgp_data;
161
 
    
162
 
    fd = TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
163
 
    if(fd == -1){
164
 
      perror("open");
165
 
      return false;
166
 
    }
167
 
    
168
 
    rc = gpgme_data_new_from_fd(&pgp_data, fd);
169
 
    if (rc != GPG_ERR_NO_ERROR){
170
 
      fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
171
 
              gpgme_strsource(rc), gpgme_strerror(rc));
172
 
      return false;
173
 
    }
174
 
 
175
 
    rc = gpgme_op_import(mc->ctx, pgp_data);
176
 
    if (rc != GPG_ERR_NO_ERROR){
177
 
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
178
 
              gpgme_strsource(rc), gpgme_strerror(rc));
179
 
      return false;
180
 
    }
181
 
 
182
 
    ret = TEMP_FAILURE_RETRY(close(fd));
183
 
    if(ret == -1){
184
 
      perror("close");
185
 
    }
186
 
    gpgme_data_release(pgp_data);
187
 
    return true;
188
 
  }
189
147
  
190
148
  if (debug){
191
 
    fprintf(stderr, "Initialize gpgme\n");
 
149
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
192
150
  }
193
 
 
 
151
  
194
152
  /* Init GPGME */
195
153
  gpgme_check_version(NULL);
196
154
  rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
197
155
  if (rc != GPG_ERR_NO_ERROR){
198
156
    fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
199
157
            gpgme_strsource(rc), gpgme_strerror(rc));
200
 
    return false;
 
158
    return -1;
201
159
  }
202
 
 
203
 
    /* Set GPGME home directory for the OpenPGP engine only */
 
160
  
 
161
  /* Set GPGME home directory for the OpenPGP engine only */
204
162
  rc = gpgme_get_engine_info (&engine_info);
205
163
  if (rc != GPG_ERR_NO_ERROR){
206
164
    fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
207
165
            gpgme_strsource(rc), gpgme_strerror(rc));
208
 
    return false;
 
166
    return -1;
209
167
  }
210
168
  while(engine_info != NULL){
211
169
    if(engine_info->protocol == GPGME_PROTOCOL_OpenPGP){
212
170
      gpgme_set_engine_info(GPGME_PROTOCOL_OpenPGP,
213
 
                            engine_info->file_name, tempdir);
 
171
                            engine_info->file_name, homedir);
214
172
      break;
215
173
    }
216
174
    engine_info = engine_info->next;
217
175
  }
218
176
  if(engine_info == NULL){
219
 
    fprintf(stderr, "Could not set GPGME home dir to %s\n", tempdir);
220
 
    return false;
221
 
  }
222
 
 
223
 
  /* Create new GPGME "context" */
224
 
  rc = gpgme_new(&(mc->ctx));
225
 
  if (rc != GPG_ERR_NO_ERROR){
226
 
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
227
 
            gpgme_strsource(rc), gpgme_strerror(rc));
228
 
    return false;
229
 
  }
230
 
  
231
 
  if (not import_key(pubkey) or not import_key(seckey)){
232
 
    return false;
233
 
  }
234
 
  
235
 
  return true; 
236
 
}
237
 
 
238
 
/* 
239
 
 * Decrypt OpenPGP data.
240
 
 * Returns -1 on error
241
 
 */
242
 
static ssize_t pgp_packet_decrypt (const mandos_context *mc,
243
 
                                   const char *cryptotext,
244
 
                                   size_t crypto_size,
245
 
                                   char **plaintext){
246
 
  gpgme_data_t dh_crypto, dh_plain;
247
 
  gpgme_error_t rc;
248
 
  ssize_t ret;
249
 
  size_t plaintext_capacity = 0;
250
 
  ssize_t plaintext_length = 0;
251
 
  
252
 
  if (debug){
253
 
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
 
177
    fprintf(stderr, "Could not set GPGME home dir to %s\n", homedir);
 
178
    return -1;
254
179
  }
255
180
  
256
181
  /* Create new GPGME data buffer from memory cryptotext */
271
196
    return -1;
272
197
  }
273
198
  
 
199
  /* Create new GPGME "context" */
 
200
  rc = gpgme_new(&ctx);
 
201
  if (rc != GPG_ERR_NO_ERROR){
 
202
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
 
203
            gpgme_strsource(rc), gpgme_strerror(rc));
 
204
    plaintext_length = -1;
 
205
    goto decrypt_end;
 
206
  }
 
207
  
274
208
  /* Decrypt data from the cryptotext data buffer to the plaintext
275
209
     data buffer */
276
 
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
 
210
  rc = gpgme_op_decrypt(ctx, dh_crypto, dh_plain);
277
211
  if (rc != GPG_ERR_NO_ERROR){
278
212
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
279
213
            gpgme_strsource(rc), gpgme_strerror(rc));
280
214
    plaintext_length = -1;
281
 
    if (debug){
282
 
      gpgme_decrypt_result_t result;
283
 
      result = gpgme_op_decrypt_result(mc->ctx);
284
 
      if (result == NULL){
285
 
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
286
 
      } else {
287
 
        fprintf(stderr, "Unsupported algorithm: %s\n",
288
 
                result->unsupported_algorithm);
289
 
        fprintf(stderr, "Wrong key usage: %u\n",
290
 
                result->wrong_key_usage);
291
 
        if(result->file_name != NULL){
292
 
          fprintf(stderr, "File name: %s\n", result->file_name);
293
 
        }
294
 
        gpgme_recipient_t recipient;
295
 
        recipient = result->recipients;
296
 
        if(recipient){
297
 
          while(recipient != NULL){
298
 
            fprintf(stderr, "Public key algorithm: %s\n",
299
 
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
300
 
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
301
 
            fprintf(stderr, "Secret key available: %s\n",
302
 
                    recipient->status == GPG_ERR_NO_SECKEY
303
 
                    ? "No" : "Yes");
304
 
            recipient = recipient->next;
305
 
          }
306
 
        }
307
 
      }
308
 
    }
309
215
    goto decrypt_end;
310
216
  }
311
217
  
313
219
    fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
314
220
  }
315
221
  
 
222
  if (debug){
 
223
    gpgme_decrypt_result_t result;
 
224
    result = gpgme_op_decrypt_result(ctx);
 
225
    if (result == NULL){
 
226
      fprintf(stderr, "gpgme_op_decrypt_result failed\n");
 
227
    } else {
 
228
      fprintf(stderr, "Unsupported algorithm: %s\n",
 
229
              result->unsupported_algorithm);
 
230
      fprintf(stderr, "Wrong key usage: %u\n",
 
231
              result->wrong_key_usage);
 
232
      if(result->file_name != NULL){
 
233
        fprintf(stderr, "File name: %s\n", result->file_name);
 
234
      }
 
235
      gpgme_recipient_t recipient;
 
236
      recipient = result->recipients;
 
237
      if(recipient){
 
238
        while(recipient != NULL){
 
239
          fprintf(stderr, "Public key algorithm: %s\n",
 
240
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
241
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
242
          fprintf(stderr, "Secret key available: %s\n",
 
243
                  recipient->status == GPG_ERR_NO_SECKEY
 
244
                  ? "No" : "Yes");
 
245
          recipient = recipient->next;
 
246
        }
 
247
      }
 
248
    }
 
249
  }
 
250
  
316
251
  /* Seek back to the beginning of the GPGME plaintext data buffer */
317
252
  if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
318
253
    perror("pgpme_data_seek");
365
300
}
366
301
 
367
302
static const char * safer_gnutls_strerror (int value) {
368
 
  const char *ret = gnutls_strerror (value); /* Spurious warning */
 
303
  const char *ret = gnutls_strerror (value);
369
304
  if (ret == NULL)
370
305
    ret = "(unknown)";
371
306
  return ret;
378
313
}
379
314
 
380
315
static int init_gnutls_global(mandos_context *mc,
381
 
                              const char *pubkeyfilename,
382
 
                              const char *seckeyfilename){
 
316
                              const char *pubkeyfile,
 
317
                              const char *seckeyfile){
383
318
  int ret;
384
319
  
385
320
  if(debug){
404
339
  /* OpenPGP credentials */
405
340
  gnutls_certificate_allocate_credentials(&mc->cred);
406
341
  if (ret != GNUTLS_E_SUCCESS){
407
 
    fprintf (stderr, "GnuTLS memory error: %s\n", /* Spurious
408
 
                                                     warning */
 
342
    fprintf (stderr, "GnuTLS memory error: %s\n",
409
343
             safer_gnutls_strerror(ret));
410
344
    gnutls_global_deinit ();
411
345
    return -1;
413
347
  
414
348
  if(debug){
415
349
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
416
 
            " and keyfile %s as GnuTLS credentials\n", pubkeyfilename,
417
 
            seckeyfilename);
 
350
            " and keyfile %s as GnuTLS credentials\n", pubkeyfile,
 
351
            seckeyfile);
418
352
  }
419
353
  
420
354
  ret = gnutls_certificate_set_openpgp_key_file
421
 
    (mc->cred, pubkeyfilename, seckeyfilename,
422
 
     GNUTLS_OPENPGP_FMT_BASE64);
 
355
    (mc->cred, pubkeyfile, seckeyfile, GNUTLS_OPENPGP_FMT_BASE64);
423
356
  if (ret != GNUTLS_E_SUCCESS) {
424
357
    fprintf(stderr,
425
358
            "Error[%d] while reading the OpenPGP key pair ('%s',"
426
 
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
427
 
    fprintf(stderr, "The GnuTLS error is: %s\n",
 
359
            " '%s')\n", ret, pubkeyfile, seckeyfile);
 
360
    fprintf(stdout, "The GnuTLS error is: %s\n",
428
361
            safer_gnutls_strerror(ret));
429
362
    goto globalfail;
430
363
  }
539
472
    fprintf(stderr, "Binding to interface %s\n", interface);
540
473
  }
541
474
  
542
 
  memset(&to, 0, sizeof(to));
 
475
  memset(&to,0,sizeof(to));     /* Spurious warning */
543
476
  to.in6.sin6_family = AF_INET6;
544
477
  /* It would be nice to have a way to detect if we were passed an
545
478
     IPv4 address here.   Now we assume an IPv6 address. */
675
608
  gnutls_bye (session, GNUTLS_SHUT_RDWR);
676
609
  
677
610
  if (buffer_length > 0){
678
 
    decrypted_buffer_size = pgp_packet_decrypt(mc, buffer,
 
611
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
679
612
                                               buffer_length,
680
 
                                               &decrypted_buffer);
 
613
                                               &decrypted_buffer,
 
614
                                               keydir);
681
615
    if (decrypted_buffer_size >= 0){
682
616
      written = 0;
683
617
      while(written < (size_t) decrypted_buffer_size){
698
632
    } else {
699
633
      retval = -1;
700
634
    }
701
 
  } else {
702
 
    retval = -1;
703
635
  }
704
636
  
705
637
  /* Shutdown procedure */
706
638
  
707
639
 mandos_end:
708
640
  free(buffer);
709
 
  ret = TEMP_FAILURE_RETRY(close(tcp_sd));
710
 
  if(ret == -1){
711
 
    perror("close");
712
 
  }
 
641
  close(tcp_sd);
713
642
  gnutls_deinit (session);
714
643
  return retval;
715
644
}
729
658
                             flags,
730
659
                             void* userdata) {
731
660
  mandos_context *mc = userdata;
732
 
  assert(r);
 
661
  assert(r);                    /* Spurious warning */
733
662
  
734
663
  /* Called whenever a service has been resolved successfully or
735
664
     timed out */
771
700
                             flags,
772
701
                             void* userdata) {
773
702
  mandos_context *mc = userdata;
774
 
  assert(b);
 
703
  assert(b);                    /* Spurious warning */
775
704
  
776
705
  /* Called whenever a new services becomes available on the LAN or
777
706
     is removed from the LAN */
811
740
  }
812
741
}
813
742
 
 
743
/* Combines file name and path and returns the malloced new
 
744
   string. some sane checks could/should be added */
 
745
static const char *combinepath(const char *first, const char *second){
 
746
  size_t f_len = strlen(first);
 
747
  size_t s_len = strlen(second);
 
748
  char *tmp = malloc(f_len + s_len + 2);
 
749
  if (tmp == NULL){
 
750
    return NULL;
 
751
  }
 
752
  if(f_len > 0){
 
753
    memcpy(tmp, first, f_len);  /* Spurious warning */
 
754
  }
 
755
  tmp[f_len] = '/';
 
756
  if(s_len > 0){
 
757
    memcpy(tmp + f_len + 1, second, s_len); /* Spurious warning */
 
758
  }
 
759
  tmp[f_len + 1 + s_len] = '\0';
 
760
  return tmp;
 
761
}
 
762
 
 
763
 
814
764
int main(int argc, char *argv[]){
815
765
    AvahiSServiceBrowser *sb = NULL;
816
766
    int error;
822
772
    uid_t uid;
823
773
    gid_t gid;
824
774
    char *connect_to = NULL;
825
 
    char tempdir[] = "/tmp/mandosXXXXXX";
826
775
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
827
 
    const char *seckey = PATHDIR "/" SECKEY;
828
 
    const char *pubkey = PATHDIR "/" PUBKEY;
829
 
    
 
776
    const char *pubkeyfile = "pubkey.txt";
 
777
    const char *seckeyfile = "seckey.txt";
830
778
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
831
779
                          .dh_bits = 1024, .priority = "SECURE256"};
832
780
    bool gnutls_initalized = false;
833
 
    bool pgpme_initalized = false;
834
781
    
835
782
    {
836
783
      struct argp_option options[] = {
844
791
          .arg = "INTERFACE",
845
792
          .doc = "Interface that Avahi will conntect through",
846
793
          .group = 1 },
 
794
        { .name = "keydir", .key = 'd',
 
795
          .arg = "KEYDIR",
 
796
          .doc = "Directory where the openpgp keyring is",
 
797
          .group = 1 },
847
798
        { .name = "seckey", .key = 's',
848
799
          .arg = "SECKEY",
849
800
          .doc = "Secret openpgp key for gnutls authentication",
877
828
        case 'i':
878
829
          interface = arg;
879
830
          break;
 
831
        case 'd':
 
832
          keydir = arg;
 
833
          break;
880
834
        case 's':
881
 
          seckey = arg;
 
835
          seckeyfile = arg;
882
836
          break;
883
837
        case 'p':
884
 
          pubkey = arg;
 
838
          pubkeyfile = arg;
885
839
          break;
886
840
        case 129:
887
841
          errno = 0;
915
869
        goto end;
916
870
      }
917
871
    }
 
872
      
 
873
    pubkeyfile = combinepath(keydir, pubkeyfile);
 
874
    if (pubkeyfile == NULL){
 
875
      perror("combinepath");
 
876
      exitcode = EXIT_FAILURE;
 
877
      goto end;
 
878
    }
 
879
    
 
880
    seckeyfile = combinepath(keydir, seckeyfile);
 
881
    if (seckeyfile == NULL){
 
882
      perror("combinepath");
 
883
      exitcode = EXIT_FAILURE;
 
884
      goto end;
 
885
    }
918
886
 
919
 
    ret = init_gnutls_global(&mc, pubkey, seckey);
 
887
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
920
888
    if (ret == -1){
921
889
      fprintf(stderr, "init_gnutls_global failed\n");
922
890
      exitcode = EXIT_FAILURE;
924
892
    } else {
925
893
      gnutls_initalized = true;
926
894
    }
927
 
 
928
 
    if(mkdtemp(tempdir) == NULL){
929
 
      perror("mkdtemp");
930
 
      tempdir[0] = '\0';
931
 
      goto end;
932
 
    }
933
 
    
934
 
    if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
935
 
      fprintf(stderr, "pgpme_initalized failed\n");
936
 
      exitcode = EXIT_FAILURE;
937
 
      goto end;
938
 
    } else {
939
 
      pgpme_initalized = true;
940
 
    }
941
895
    
942
896
    /* If the interface is down, bring it up */
943
897
    {
947
901
        exitcode = EXIT_FAILURE;
948
902
        goto end;
949
903
      }
950
 
      strcpy(network.ifr_name, interface);
 
904
      strcpy(network.ifr_name, interface); /* Spurious warning */
951
905
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
952
906
      if(ret == -1){
953
907
        perror("ioctl SIOCGIFFLAGS");
963
917
          goto end;
964
918
        }
965
919
      }
966
 
      ret = TEMP_FAILURE_RETRY(close(sd));
967
 
      if(ret == -1){
968
 
        perror("close");
969
 
      }
 
920
      close(sd);
970
921
    }
971
922
    
972
923
    uid = getuid();
1092
1043
 
1093
1044
    if (mc.simple_poll != NULL)
1094
1045
        avahi_simple_poll_free(mc.simple_poll);
 
1046
    free(pubkeyfile);
 
1047
    free(seckeyfile);
1095
1048
 
1096
1049
    if (gnutls_initalized){
1097
1050
      gnutls_certificate_free_credentials(mc.cred);
1098
1051
      gnutls_global_deinit ();
1099
1052
    }
1100
 
 
1101
 
    if(pgpme_initalized){
1102
 
      gpgme_release(mc.ctx);
1103
 
    }
1104
 
 
1105
 
    /* Removes the temp directory used by GPGME */
1106
 
    if(tempdir[0] != '\0'){
1107
 
      DIR *d;
1108
 
      struct dirent *direntry;
1109
 
      d = opendir(tempdir);
1110
 
      if(d == NULL){
1111
 
        perror("opendir");
1112
 
      } else {
1113
 
        while(true){
1114
 
          direntry = readdir(d);
1115
 
          if(direntry == NULL){
1116
 
            break;
1117
 
          }
1118
 
          if (direntry->d_type == DT_REG){
1119
 
            char *fullname = NULL;
1120
 
            ret = asprintf(&fullname, "%s/%s", tempdir,
1121
 
                           direntry->d_name);
1122
 
            if(ret < 0){
1123
 
              perror("asprintf");
1124
 
              continue;
1125
 
            }
1126
 
            ret = unlink(fullname);
1127
 
            if(ret == -1){
1128
 
              fprintf(stderr, "unlink(\"%s\"): %s",
1129
 
                      fullname, strerror(errno));
1130
 
            }
1131
 
            free(fullname);
1132
 
          }
1133
 
        }
1134
 
      }
1135
 
      ret = rmdir(tempdir);
1136
 
      if(ret == -1){
1137
 
        perror("rmdir");
1138
 
      }
1139
 
    }
1140
 
          
 
1053
    
1141
1054
    return exitcode;
1142
1055
}