/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/mandos-client.c

* mandos (Client.timeout, Client.interval): Changed from being a
                                            property to be a normal
                                            attribute.
  (Client._timeout, Client._interval): Removed.
  (Client._timeout_milliseconds): Changed from being an attribute to
                                  be a method "timeout_milliseconds".
                                  All users changed.
  (Client._interval_milliseconds): Changed from being an attribute to
                                   be method "interval_milliseconds".
                                   All users changed.
  (Client.__init__): Take additional "use_dbus" keyword argument.
                     Only provide D-Bus interface if "use_dbus" is
                     True.
  (Client.use_dbus): New attribute.
  (Client.dbus_object_path): Changed to only be set if "self.use_dbus"
                             is True.
  (Client.enable, Client.disable, Client.checker_callback,
  Client.bump_timeout, Client.start_checker, Client.stop_checker):
  Only emit D-Bus signals if "self.use_dbus".
  (Client.SetChecker, Client.SetHost, Client.Enable): Bug fix: Emit
                                                      D-Bus signals.
  (Client.SetInterval, Client.SetTimeout): Changed to emit D-Bus
                                           signals.

  (main): Remove deprecated "default" keyword argument to "--check"
          option.  Added new "--no-dbus" option.  Added corresponding
          "use_dbus" server configuration option.  Only provide D-Bus
          interface and emit D-Bus signals if "use_dbus".  Pass
          "use_dbus" on to Client constructor.

* mandos-options.xml ([@id="dbus"]): New option.

* mandos.conf (use_dbus): New option.

* mandos.conf.xml (OPTIONS): New option "use_dbus".
  (EXAMPLE): - '' -

* mandos.xml (SYNOPSIS): New option "--no-dbus".
  (D-BUS INTERFACE): New section.

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 © 2007-2008 Teddy Hogeborn & Björn Påhlsson
 
12
 * Copyright © 2008 Teddy Hogeborn
 
13
 * Copyright © 2008 Björn Påhlsson
13
14
 * 
14
15
 * This program is free software: you can redistribute it and/or
15
16
 * modify it under the terms of the GNU General Public License as
32
33
#define _LARGEFILE_SOURCE
33
34
#define _FILE_OFFSET_BITS 64
34
35
 
35
 
#include <stdio.h>
36
 
#include <assert.h>
37
 
#include <stdlib.h>
38
 
#include <time.h>
39
 
#include <net/if.h>             /* if_nametoindex */
40
 
#include <sys/ioctl.h>          /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
41
 
                                   SIOCSIFFLAGS */
 
36
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
 
37
 
 
38
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
 
39
                                   stdout, ferror() */
 
40
#include <stdint.h>             /* uint16_t, uint32_t */
 
41
#include <stddef.h>             /* NULL, size_t, ssize_t */
 
42
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
 
43
                                   srand() */
 
44
#include <stdbool.h>            /* bool, true */
 
45
#include <string.h>             /* memset(), strcmp(), strlen(),
 
46
                                   strerror(), asprintf(), strcpy() */
 
47
#include <sys/ioctl.h>          /* ioctl */
 
48
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
 
49
                                   sockaddr_in6, PF_INET6,
 
50
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
 
51
                                   uid_t, gid_t, open(), opendir(), DIR */
 
52
#include <sys/stat.h>           /* open() */
 
53
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
 
54
                                   struct in6_addr, inet_pton(),
 
55
                                   connect() */
 
56
#include <fcntl.h>              /* open() */
 
57
#include <dirent.h>             /* opendir(), struct dirent, readdir() */
 
58
#include <inttypes.h>           /* PRIu16 */
 
59
#include <assert.h>             /* assert() */
 
60
#include <errno.h>              /* perror(), errno */
 
61
#include <time.h>               /* time() */
42
62
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
43
 
                                   SIOCSIFFLAGS */
 
63
                                   SIOCSIFFLAGS, if_indextoname(),
 
64
                                   if_nametoindex(), IF_NAMESIZE */
 
65
#include <netinet/in.h>
 
66
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
 
67
                                   getuid(), getgid(), setuid(),
 
68
                                   setgid() */
 
69
#include <arpa/inet.h>          /* inet_pton(), htons */
 
70
#include <iso646.h>             /* not, and */
 
71
#include <argp.h>               /* struct argp_option, error_t, struct
 
72
                                   argp_state, struct argp,
 
73
                                   argp_parse(), ARGP_KEY_ARG,
 
74
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
44
75
 
 
76
/* Avahi */
 
77
/* All Avahi types, constants and functions
 
78
 Avahi*, avahi_*,
 
79
 AVAHI_* */
45
80
#include <avahi-core/core.h>
46
81
#include <avahi-core/lookup.h>
47
82
#include <avahi-core/log.h>
49
84
#include <avahi-common/malloc.h>
50
85
#include <avahi-common/error.h>
51
86
 
52
 
/* Mandos client part */
53
 
#include <sys/types.h>          /* socket(), inet_pton() */
54
 
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
55
 
                                   struct in6_addr, inet_pton() */
56
 
#include <gnutls/gnutls.h>      /* All GnuTLS stuff */
57
 
#include <gnutls/openpgp.h>     /* GnuTLS with openpgp stuff */
58
 
 
59
 
#include <unistd.h>             /* close() */
60
 
#include <netinet/in.h>
61
 
#include <stdbool.h>            /* true */
62
 
#include <string.h>             /* memset */
63
 
#include <arpa/inet.h>          /* inet_pton() */
64
 
#include <iso646.h>             /* not */
65
 
#include <net/if.h>             /* IF_NAMESIZE */
 
87
/* GnuTLS */
 
88
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and
 
89
                                   functions:
 
90
                                   gnutls_*
 
91
                                   init_gnutls_session(),
 
92
                                   GNUTLS_* */
 
93
#include <gnutls/openpgp.h>     /* gnutls_certificate_set_openpgp_key_file(),
 
94
                                   GNUTLS_OPENPGP_FMT_BASE64 */
66
95
 
67
96
/* GPGME */
68
 
#include <errno.h>              /* perror() */
69
 
#include <gpgme.h>
70
 
 
71
 
/* getopt_long */
72
 
#include <getopt.h>
 
97
#include <gpgme.h>              /* All GPGME types, constants and
 
98
                                   functions:
 
99
                                   gpgme_*
 
100
                                   GPGME_PROTOCOL_OpenPGP,
 
101
                                   GPG_ERR_NO_* */
73
102
 
74
103
#define BUFFER_SIZE 256
75
104
 
76
 
static const char *keydir = "/conf/conf.d/mandos";
77
 
static const char *pubkeyfile = "pubkey.txt";
78
 
static const char *seckeyfile = "seckey.txt";
 
105
#define PATHDIR "/conf/conf.d/mandos"
 
106
#define SECKEY "seckey.txt"
 
107
#define PUBKEY "pubkey.txt"
79
108
 
80
109
bool debug = false;
 
110
static const char mandos_protocol_version[] = "1";
 
111
const char *argp_program_version = "mandos-client " VERSION;
 
112
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
81
113
 
82
 
/* Used for passing in values through all the callback functions */
 
114
/* Used for passing in values through the Avahi callback functions */
83
115
typedef struct {
84
116
  AvahiSimplePoll *simple_poll;
85
117
  AvahiServer *server;
86
118
  gnutls_certificate_credentials_t cred;
87
119
  unsigned int dh_bits;
 
120
  gnutls_dh_params_t dh_params;
88
121
  const char *priority;
 
122
  gpgme_ctx_t ctx;
89
123
} mandos_context;
90
124
 
 
125
/*
 
126
 * Make room in "buffer" for at least BUFFER_SIZE additional bytes.
 
127
 * "buffer_capacity" is how much is currently allocated,
 
128
 * "buffer_length" is how much is already used.
 
129
 */
 
130
size_t adjustbuffer(char **buffer, size_t buffer_length,
 
131
                  size_t buffer_capacity){
 
132
  if (buffer_length + BUFFER_SIZE > buffer_capacity){
 
133
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
 
134
    if (buffer == NULL){
 
135
      return 0;
 
136
    }
 
137
    buffer_capacity += BUFFER_SIZE;
 
138
  }
 
139
  return buffer_capacity;
 
140
}
 
141
 
91
142
/* 
92
 
 * Decrypt OpenPGP data using keyrings in HOMEDIR.
93
 
 * Returns -1 on error
 
143
 * Initialize GPGME.
94
144
 */
95
 
static ssize_t pgp_packet_decrypt (const char *cryptotext,
96
 
                                   size_t crypto_size,
97
 
                                   char **plaintext,
98
 
                                   const char *homedir){
99
 
  gpgme_data_t dh_crypto, dh_plain;
100
 
  gpgme_ctx_t ctx;
 
145
static bool init_gpgme(mandos_context *mc, const char *seckey,
 
146
                       const char *pubkey, const char *tempdir){
 
147
  int ret;
101
148
  gpgme_error_t rc;
102
 
  ssize_t ret;
103
 
  size_t plaintext_capacity = 0;
104
 
  ssize_t plaintext_length = 0;
105
149
  gpgme_engine_info_t engine_info;
106
150
  
 
151
  
 
152
  /*
 
153
   * Helper function to insert pub and seckey to the enigne keyring.
 
154
   */
 
155
  bool import_key(const char *filename){
 
156
    int fd;
 
157
    gpgme_data_t pgp_data;
 
158
    
 
159
    fd = TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
 
160
    if(fd == -1){
 
161
      perror("open");
 
162
      return false;
 
163
    }
 
164
    
 
165
    rc = gpgme_data_new_from_fd(&pgp_data, fd);
 
166
    if (rc != GPG_ERR_NO_ERROR){
 
167
      fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
 
168
              gpgme_strsource(rc), gpgme_strerror(rc));
 
169
      return false;
 
170
    }
 
171
    
 
172
    rc = gpgme_op_import(mc->ctx, pgp_data);
 
173
    if (rc != GPG_ERR_NO_ERROR){
 
174
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
 
175
              gpgme_strsource(rc), gpgme_strerror(rc));
 
176
      return false;
 
177
    }
 
178
    
 
179
    ret = TEMP_FAILURE_RETRY(close(fd));
 
180
    if(ret == -1){
 
181
      perror("close");
 
182
    }
 
183
    gpgme_data_release(pgp_data);
 
184
    return true;
 
185
  }
 
186
  
107
187
  if (debug){
108
 
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
 
188
    fprintf(stderr, "Initialize gpgme\n");
109
189
  }
110
190
  
111
191
  /* Init GPGME */
114
194
  if (rc != GPG_ERR_NO_ERROR){
115
195
    fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
116
196
            gpgme_strsource(rc), gpgme_strerror(rc));
117
 
    return -1;
 
197
    return false;
118
198
  }
119
199
  
120
 
  /* Set GPGME home directory for the OpenPGP engine only */
 
200
    /* Set GPGME home directory for the OpenPGP engine only */
121
201
  rc = gpgme_get_engine_info (&engine_info);
122
202
  if (rc != GPG_ERR_NO_ERROR){
123
203
    fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
124
204
            gpgme_strsource(rc), gpgme_strerror(rc));
125
 
    return -1;
 
205
    return false;
126
206
  }
127
207
  while(engine_info != NULL){
128
208
    if(engine_info->protocol == GPGME_PROTOCOL_OpenPGP){
129
209
      gpgme_set_engine_info(GPGME_PROTOCOL_OpenPGP,
130
 
                            engine_info->file_name, homedir);
 
210
                            engine_info->file_name, tempdir);
131
211
      break;
132
212
    }
133
213
    engine_info = engine_info->next;
134
214
  }
135
215
  if(engine_info == NULL){
136
 
    fprintf(stderr, "Could not set GPGME home dir to %s\n", homedir);
137
 
    return -1;
 
216
    fprintf(stderr, "Could not set GPGME home dir to %s\n", tempdir);
 
217
    return false;
 
218
  }
 
219
  
 
220
  /* Create new GPGME "context" */
 
221
  rc = gpgme_new(&(mc->ctx));
 
222
  if (rc != GPG_ERR_NO_ERROR){
 
223
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
 
224
            gpgme_strsource(rc), gpgme_strerror(rc));
 
225
    return false;
 
226
  }
 
227
  
 
228
  if (not import_key(pubkey) or not import_key(seckey)){
 
229
    return false;
 
230
  }
 
231
  
 
232
  return true; 
 
233
}
 
234
 
 
235
/* 
 
236
 * Decrypt OpenPGP data.
 
237
 * Returns -1 on error
 
238
 */
 
239
static ssize_t pgp_packet_decrypt (const mandos_context *mc,
 
240
                                   const char *cryptotext,
 
241
                                   size_t crypto_size,
 
242
                                   char **plaintext){
 
243
  gpgme_data_t dh_crypto, dh_plain;
 
244
  gpgme_error_t rc;
 
245
  ssize_t ret;
 
246
  size_t plaintext_capacity = 0;
 
247
  ssize_t plaintext_length = 0;
 
248
  
 
249
  if (debug){
 
250
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
138
251
  }
139
252
  
140
253
  /* Create new GPGME data buffer from memory cryptotext */
155
268
    return -1;
156
269
  }
157
270
  
158
 
  /* Create new GPGME "context" */
159
 
  rc = gpgme_new(&ctx);
160
 
  if (rc != GPG_ERR_NO_ERROR){
161
 
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
162
 
            gpgme_strsource(rc), gpgme_strerror(rc));
163
 
    plaintext_length = -1;
164
 
    goto decrypt_end;
165
 
  }
166
 
  
167
271
  /* Decrypt data from the cryptotext data buffer to the plaintext
168
272
     data buffer */
169
 
  rc = gpgme_op_decrypt(ctx, dh_crypto, dh_plain);
 
273
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
170
274
  if (rc != GPG_ERR_NO_ERROR){
171
275
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
172
276
            gpgme_strsource(rc), gpgme_strerror(rc));
173
277
    plaintext_length = -1;
 
278
    if (debug){
 
279
      gpgme_decrypt_result_t result;
 
280
      result = gpgme_op_decrypt_result(mc->ctx);
 
281
      if (result == NULL){
 
282
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
 
283
      } else {
 
284
        fprintf(stderr, "Unsupported algorithm: %s\n",
 
285
                result->unsupported_algorithm);
 
286
        fprintf(stderr, "Wrong key usage: %u\n",
 
287
                result->wrong_key_usage);
 
288
        if(result->file_name != NULL){
 
289
          fprintf(stderr, "File name: %s\n", result->file_name);
 
290
        }
 
291
        gpgme_recipient_t recipient;
 
292
        recipient = result->recipients;
 
293
        if(recipient){
 
294
          while(recipient != NULL){
 
295
            fprintf(stderr, "Public key algorithm: %s\n",
 
296
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
297
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
298
            fprintf(stderr, "Secret key available: %s\n",
 
299
                    recipient->status == GPG_ERR_NO_SECKEY
 
300
                    ? "No" : "Yes");
 
301
            recipient = recipient->next;
 
302
          }
 
303
        }
 
304
      }
 
305
    }
174
306
    goto decrypt_end;
175
307
  }
176
308
  
178
310
    fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
179
311
  }
180
312
  
181
 
  if (debug){
182
 
    gpgme_decrypt_result_t result;
183
 
    result = gpgme_op_decrypt_result(ctx);
184
 
    if (result == NULL){
185
 
      fprintf(stderr, "gpgme_op_decrypt_result failed\n");
186
 
    } else {
187
 
      fprintf(stderr, "Unsupported algorithm: %s\n",
188
 
              result->unsupported_algorithm);
189
 
      fprintf(stderr, "Wrong key usage: %d\n",
190
 
              result->wrong_key_usage);
191
 
      if(result->file_name != NULL){
192
 
        fprintf(stderr, "File name: %s\n", result->file_name);
193
 
      }
194
 
      gpgme_recipient_t recipient;
195
 
      recipient = result->recipients;
196
 
      if(recipient){
197
 
        while(recipient != NULL){
198
 
          fprintf(stderr, "Public key algorithm: %s\n",
199
 
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
200
 
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
201
 
          fprintf(stderr, "Secret key available: %s\n",
202
 
                  recipient->status == GPG_ERR_NO_SECKEY
203
 
                  ? "No" : "Yes");
204
 
          recipient = recipient->next;
205
 
        }
206
 
      }
207
 
    }
208
 
  }
209
 
  
210
313
  /* Seek back to the beginning of the GPGME plaintext data buffer */
211
314
  if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
212
 
    perror("pgpme_data_seek");
 
315
    perror("gpgme_data_seek");
213
316
    plaintext_length = -1;
214
317
    goto decrypt_end;
215
318
  }
216
319
  
217
320
  *plaintext = NULL;
218
321
  while(true){
219
 
    if (plaintext_length + BUFFER_SIZE
220
 
        > (ssize_t) plaintext_capacity){
221
 
      *plaintext = realloc(*plaintext, plaintext_capacity
222
 
                            + BUFFER_SIZE);
223
 
      if (*plaintext == NULL){
224
 
        perror("realloc");
 
322
    plaintext_capacity = adjustbuffer(plaintext,
 
323
                                      (size_t)plaintext_length,
 
324
                                      plaintext_capacity);
 
325
    if (plaintext_capacity == 0){
 
326
        perror("adjustbuffer");
225
327
        plaintext_length = -1;
226
328
        goto decrypt_end;
227
 
      }
228
 
      plaintext_capacity += BUFFER_SIZE;
229
329
    }
230
330
    
231
331
    ret = gpgme_data_read(dh_plain, *plaintext + plaintext_length,
242
342
    }
243
343
    plaintext_length += ret;
244
344
  }
245
 
 
 
345
  
246
346
  if(debug){
247
347
    fprintf(stderr, "Decrypted password is: ");
248
348
    for(ssize_t i = 0; i < plaintext_length; i++){
262
362
}
263
363
 
264
364
static const char * safer_gnutls_strerror (int value) {
265
 
  const char *ret = gnutls_strerror (value);
 
365
  const char *ret = gnutls_strerror (value); /* Spurious warning */
266
366
  if (ret == NULL)
267
367
    ret = "(unknown)";
268
368
  return ret;
274
374
  fprintf(stderr, "GnuTLS: %s", string);
275
375
}
276
376
 
277
 
static int initgnutls(mandos_context *mc, gnutls_session_t *session,
278
 
                      gnutls_dh_params_t *dh_params){
 
377
static int init_gnutls_global(mandos_context *mc,
 
378
                              const char *pubkeyfilename,
 
379
                              const char *seckeyfilename){
279
380
  int ret;
280
381
  
281
382
  if(debug){
282
383
    fprintf(stderr, "Initializing GnuTLS\n");
283
384
  }
284
 
 
285
 
  if ((ret = gnutls_global_init ())
286
 
      != GNUTLS_E_SUCCESS) {
 
385
  
 
386
  ret = gnutls_global_init();
 
387
  if (ret != GNUTLS_E_SUCCESS) {
287
388
    fprintf (stderr, "GnuTLS global_init: %s\n",
288
389
             safer_gnutls_strerror(ret));
289
390
    return -1;
298
399
  }
299
400
  
300
401
  /* OpenPGP credentials */
301
 
  if ((ret = gnutls_certificate_allocate_credentials (&mc->cred))
302
 
      != GNUTLS_E_SUCCESS) {
303
 
    fprintf (stderr, "GnuTLS memory error: %s\n",
 
402
  gnutls_certificate_allocate_credentials(&mc->cred);
 
403
  if (ret != GNUTLS_E_SUCCESS){
 
404
    fprintf (stderr, "GnuTLS memory error: %s\n", /* Spurious
 
405
                                                     warning */
304
406
             safer_gnutls_strerror(ret));
 
407
    gnutls_global_deinit ();
305
408
    return -1;
306
409
  }
307
410
  
308
411
  if(debug){
309
 
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
310
 
            " and keyfile %s as GnuTLS credentials\n", pubkeyfile,
311
 
            seckeyfile);
 
412
    fprintf(stderr, "Attempting to use OpenPGP public key %s and"
 
413
            " secret key %s as GnuTLS credentials\n", pubkeyfilename,
 
414
            seckeyfilename);
312
415
  }
313
416
  
314
417
  ret = gnutls_certificate_set_openpgp_key_file
315
 
    (mc->cred, pubkeyfile, seckeyfile, GNUTLS_OPENPGP_FMT_BASE64);
 
418
    (mc->cred, pubkeyfilename, seckeyfilename,
 
419
     GNUTLS_OPENPGP_FMT_BASE64);
316
420
  if (ret != GNUTLS_E_SUCCESS) {
317
421
    fprintf(stderr,
318
422
            "Error[%d] while reading the OpenPGP key pair ('%s',"
319
 
            " '%s')\n", ret, pubkeyfile, seckeyfile);
320
 
    fprintf(stdout, "The GnuTLS error is: %s\n",
 
423
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
424
    fprintf(stderr, "The GnuTLS error is: %s\n",
321
425
            safer_gnutls_strerror(ret));
322
 
    return -1;
 
426
    goto globalfail;
323
427
  }
324
428
  
325
429
  /* GnuTLS server initialization */
326
 
  ret = gnutls_dh_params_init(dh_params);
 
430
  ret = gnutls_dh_params_init(&mc->dh_params);
327
431
  if (ret != GNUTLS_E_SUCCESS) {
328
432
    fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
329
433
             " %s\n", safer_gnutls_strerror(ret));
330
 
    return -1;
 
434
    goto globalfail;
331
435
  }
332
 
  ret = gnutls_dh_params_generate2(*dh_params, mc->dh_bits);
 
436
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
333
437
  if (ret != GNUTLS_E_SUCCESS) {
334
438
    fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
335
439
             safer_gnutls_strerror(ret));
336
 
    return -1;
 
440
    goto globalfail;
337
441
  }
338
442
  
339
 
  gnutls_certificate_set_dh_params(mc->cred, *dh_params);
340
 
  
 
443
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
 
444
  
 
445
  return 0;
 
446
  
 
447
 globalfail:
 
448
  
 
449
  gnutls_certificate_free_credentials(mc->cred);
 
450
  gnutls_global_deinit();
 
451
  gnutls_dh_params_deinit(mc->dh_params);
 
452
  return -1;
 
453
}
 
454
 
 
455
static int init_gnutls_session(mandos_context *mc,
 
456
                               gnutls_session_t *session){
 
457
  int ret;
341
458
  /* GnuTLS session creation */
342
459
  ret = gnutls_init(session, GNUTLS_SERVER);
343
460
  if (ret != GNUTLS_E_SUCCESS){
352
469
      fprintf(stderr, "Syntax error at: %s\n", err);
353
470
      fprintf(stderr, "GnuTLS error: %s\n",
354
471
              safer_gnutls_strerror(ret));
 
472
      gnutls_deinit (*session);
355
473
      return -1;
356
474
    }
357
475
  }
361
479
  if (ret != GNUTLS_E_SUCCESS) {
362
480
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
363
481
            safer_gnutls_strerror(ret));
 
482
    gnutls_deinit (*session);
364
483
    return -1;
365
484
  }
366
485
  
382
501
                                      AvahiIfIndex if_index,
383
502
                                      mandos_context *mc){
384
503
  int ret, tcp_sd;
385
 
  struct sockaddr_in6 to;
 
504
  union { struct sockaddr in; struct sockaddr_in6 in6; } to;
386
505
  char *buffer = NULL;
387
506
  char *decrypted_buffer;
388
507
  size_t buffer_length = 0;
389
508
  size_t buffer_capacity = 0;
390
509
  ssize_t decrypted_buffer_size;
391
 
  size_t written = 0;
 
510
  size_t written;
392
511
  int retval = 0;
393
512
  char interface[IF_NAMESIZE];
394
513
  gnutls_session_t session;
395
 
  gnutls_dh_params_t dh_params;
396
514
  
397
 
  ret = initgnutls (mc, &session, &dh_params);
 
515
  ret = init_gnutls_session (mc, &session);
398
516
  if (ret != 0){
399
517
    return -1;
400
518
  }
401
519
  
402
520
  if(debug){
403
 
    fprintf(stderr, "Setting up a tcp connection to %s, port %d\n",
404
 
            ip, port);
 
521
    fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
 
522
            "\n", ip, port);
405
523
  }
406
524
  
407
525
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
409
527
    perror("socket");
410
528
    return -1;
411
529
  }
412
 
 
 
530
  
413
531
  if(debug){
414
532
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
415
533
      perror("if_indextoname");
418
536
    fprintf(stderr, "Binding to interface %s\n", interface);
419
537
  }
420
538
  
421
 
  memset(&to,0,sizeof(to));     /* Spurious warning */
422
 
  to.sin6_family = AF_INET6;
 
539
  memset(&to, 0, sizeof(to));
 
540
  to.in6.sin6_family = AF_INET6;
423
541
  /* It would be nice to have a way to detect if we were passed an
424
542
     IPv4 address here.   Now we assume an IPv6 address. */
425
 
  ret = inet_pton(AF_INET6, ip, &to.sin6_addr);
 
543
  ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
426
544
  if (ret < 0 ){
427
545
    perror("inet_pton");
428
546
    return -1;
431
549
    fprintf(stderr, "Bad address: %s\n", ip);
432
550
    return -1;
433
551
  }
434
 
  to.sin6_port = htons(port);   /* Spurious warning */
 
552
  to.in6.sin6_port = htons(port); /* Spurious warning */
435
553
  
436
 
  to.sin6_scope_id = (uint32_t)if_index;
 
554
  to.in6.sin6_scope_id = (uint32_t)if_index;
437
555
  
438
556
  if(debug){
439
 
    fprintf(stderr, "Connection to: %s, port %d\n", ip, port);
 
557
    fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
 
558
            port);
440
559
    char addrstr[INET6_ADDRSTRLEN] = "";
441
 
    if(inet_ntop(to.sin6_family, &(to.sin6_addr), addrstr,
 
560
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
442
561
                 sizeof(addrstr)) == NULL){
443
562
      perror("inet_ntop");
444
563
    } else {
448
567
    }
449
568
  }
450
569
  
451
 
  ret = connect(tcp_sd, (struct sockaddr *) &to, sizeof(to));
 
570
  ret = connect(tcp_sd, &to.in, sizeof(to));
452
571
  if (ret < 0){
453
572
    perror("connect");
454
573
    return -1;
455
574
  }
456
575
  
 
576
  const char *out = mandos_protocol_version;
 
577
  written = 0;
 
578
  while (true){
 
579
    size_t out_size = strlen(out);
 
580
    ret = TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
 
581
                                   out_size - written));
 
582
    if (ret == -1){
 
583
      perror("write");
 
584
      retval = -1;
 
585
      goto mandos_end;
 
586
    }
 
587
    written += (size_t)ret;
 
588
    if(written < out_size){
 
589
      continue;
 
590
    } else {
 
591
      if (out == mandos_protocol_version){
 
592
        written = 0;
 
593
        out = "\r\n";
 
594
      } else {
 
595
        break;
 
596
      }
 
597
    }
 
598
  }
 
599
  
457
600
  if(debug){
458
601
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
459
602
  }
460
603
  
461
604
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
462
605
  
463
 
  ret = gnutls_handshake (session);
 
606
  do{
 
607
    ret = gnutls_handshake (session);
 
608
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
464
609
  
465
610
  if (ret != GNUTLS_E_SUCCESS){
466
611
    if(debug){
477
622
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
478
623
            ip);
479
624
  }
480
 
 
 
625
  
481
626
  while(true){
482
 
    if (buffer_length + BUFFER_SIZE > buffer_capacity){
483
 
      buffer = realloc(buffer, buffer_capacity + BUFFER_SIZE);
484
 
      if (buffer == NULL){
485
 
        perror("realloc");
486
 
        retval = -1;
487
 
        goto mandos_end;
488
 
      }
489
 
      buffer_capacity += BUFFER_SIZE;
 
627
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
 
628
                                   buffer_capacity);
 
629
    if (buffer_capacity == 0){
 
630
      perror("adjustbuffer");
 
631
      retval = -1;
 
632
      goto mandos_end;
490
633
    }
491
634
    
492
635
    ret = gnutls_record_recv(session, buffer+buffer_length,
500
643
      case GNUTLS_E_AGAIN:
501
644
        break;
502
645
      case GNUTLS_E_REHANDSHAKE:
503
 
        ret = gnutls_handshake (session);
 
646
        do{
 
647
          ret = gnutls_handshake (session);
 
648
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
504
649
        if (ret < 0){
505
650
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
506
651
          gnutls_perror (ret);
527
672
  gnutls_bye (session, GNUTLS_SHUT_RDWR);
528
673
  
529
674
  if (buffer_length > 0){
530
 
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
 
675
    decrypted_buffer_size = pgp_packet_decrypt(mc, buffer,
531
676
                                               buffer_length,
532
 
                                               &decrypted_buffer,
533
 
                                               keydir);
 
677
                                               &decrypted_buffer);
534
678
    if (decrypted_buffer_size >= 0){
 
679
      written = 0;
535
680
      while(written < (size_t) decrypted_buffer_size){
536
681
        ret = (int)fwrite (decrypted_buffer + written, 1,
537
682
                           (size_t)decrypted_buffer_size - written,
550
695
    } else {
551
696
      retval = -1;
552
697
    }
 
698
  } else {
 
699
    retval = -1;
553
700
  }
554
701
  
555
702
  /* Shutdown procedure */
556
703
  
557
704
 mandos_end:
558
705
  free(buffer);
559
 
  close(tcp_sd);
 
706
  ret = TEMP_FAILURE_RETRY(close(tcp_sd));
 
707
  if(ret == -1){
 
708
    perror("close");
 
709
  }
560
710
  gnutls_deinit (session);
561
 
  gnutls_certificate_free_credentials (mc->cred);
562
 
  gnutls_global_deinit ();
563
711
  return retval;
564
712
}
565
713
 
578
726
                             flags,
579
727
                             void* userdata) {
580
728
  mandos_context *mc = userdata;
581
 
  assert(r);                    /* Spurious warning */
 
729
  assert(r);
582
730
  
583
731
  /* Called whenever a service has been resolved successfully or
584
732
     timed out */
596
744
      char ip[AVAHI_ADDRESS_STR_MAX];
597
745
      avahi_address_snprint(ip, sizeof(ip), address);
598
746
      if(debug){
599
 
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %d) on"
600
 
                " port %d\n", name, host_name, ip, interface, port);
 
747
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
 
748
                PRIu16 ") on port %d\n", name, host_name, ip,
 
749
                interface, port);
601
750
      }
602
751
      int ret = start_mandos_communication(ip, port, interface, mc);
603
752
      if (ret == 0){
604
 
        exit(EXIT_SUCCESS);
 
753
        avahi_simple_poll_quit(mc->simple_poll);
605
754
      }
606
755
    }
607
756
  }
619
768
                             flags,
620
769
                             void* userdata) {
621
770
  mandos_context *mc = userdata;
622
 
  assert(b);                    /* Spurious warning */
 
771
  assert(b);
623
772
  
624
773
  /* Called whenever a new services becomes available on the LAN or
625
774
     is removed from the LAN */
659
808
  }
660
809
}
661
810
 
662
 
/* Combines file name and path and returns the malloced new
663
 
   string. some sane checks could/should be added */
664
 
static const char *combinepath(const char *first, const char *second){
665
 
  size_t f_len = strlen(first);
666
 
  size_t s_len = strlen(second);
667
 
  char *tmp = malloc(f_len + s_len + 2);
668
 
  if (tmp == NULL){
669
 
    return NULL;
670
 
  }
671
 
  if(f_len > 0){
672
 
    memcpy(tmp, first, f_len);  /* Spurious warning */
673
 
  }
674
 
  tmp[f_len] = '/';
675
 
  if(s_len > 0){
676
 
    memcpy(tmp + f_len + 1, second, s_len); /* Spurious warning */
677
 
  }
678
 
  tmp[f_len + 1 + s_len] = '\0';
679
 
  return tmp;
680
 
}
681
 
 
682
 
 
683
811
int main(int argc, char *argv[]){
684
812
    AvahiSServiceBrowser *sb = NULL;
685
813
    int error;
688
816
    const char *interface = "eth0";
689
817
    struct ifreq network;
690
818
    int sd;
 
819
    uid_t uid;
 
820
    gid_t gid;
691
821
    char *connect_to = NULL;
 
822
    char tempdir[] = "/tmp/mandosXXXXXX";
692
823
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
 
824
    const char *seckey = PATHDIR "/" SECKEY;
 
825
    const char *pubkey = PATHDIR "/" PUBKEY;
 
826
    
693
827
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
694
 
                          .dh_bits = 1024, .priority = "SECURE256"};
 
828
                          .dh_bits = 1024, .priority = "SECURE256"
 
829
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
830
    bool gnutls_initalized = false;
 
831
    bool gpgme_initalized = false;
695
832
    
696
833
    {
697
 
      /* Temporary int to get the address of for getopt_long */
698
 
      int debug_int = debug ? 1 : 0;
699
 
      while (true){
700
 
        struct option long_options[] = {
701
 
          {"debug", no_argument, &debug_int, 1},
702
 
          {"connect", required_argument, NULL, 'c'},
703
 
          {"interface", required_argument, NULL, 'i'},
704
 
          {"keydir", required_argument, NULL, 'd'},
705
 
          {"seckey", required_argument, NULL, 's'},
706
 
          {"pubkey", required_argument, NULL, 'p'},
707
 
          {"dh-bits", required_argument, NULL, 'D'},
708
 
          {"priority", required_argument, NULL, 'P'},
709
 
          {0, 0, 0, 0} };
710
 
      
711
 
        int option_index = 0;
712
 
        ret = getopt_long (argc, argv, "i:", long_options,
713
 
                           &option_index);
714
 
      
715
 
        if (ret == -1){
716
 
          break;
717
 
        }
718
 
      
719
 
        switch(ret){
720
 
        case 0:
721
 
          break;
722
 
        case 'i':
723
 
          interface = optarg;
724
 
          break;
725
 
        case 'c':
726
 
          connect_to = optarg;
727
 
          break;
728
 
        case 'd':
729
 
          keydir = optarg;
730
 
          break;
731
 
        case 'p':
732
 
          pubkeyfile = optarg;
733
 
          break;
734
 
        case 's':
735
 
          seckeyfile = optarg;
736
 
          break;
737
 
        case 'D':
 
834
      struct argp_option options[] = {
 
835
        { .name = "debug", .key = 128,
 
836
          .doc = "Debug mode", .group = 3 },
 
837
        { .name = "connect", .key = 'c',
 
838
          .arg = "ADDRESS:PORT",
 
839
          .doc = "Connect directly to a specific Mandos server",
 
840
          .group = 1 },
 
841
        { .name = "interface", .key = 'i',
 
842
          .arg = "NAME",
 
843
          .doc = "Interface that will be used to search for Mandos"
 
844
          " servers",
 
845
          .group = 1 },
 
846
        { .name = "seckey", .key = 's',
 
847
          .arg = "FILE",
 
848
          .doc = "OpenPGP secret key file base name",
 
849
          .group = 1 },
 
850
        { .name = "pubkey", .key = 'p',
 
851
          .arg = "FILE",
 
852
          .doc = "OpenPGP public key file base name",
 
853
          .group = 2 },
 
854
        { .name = "dh-bits", .key = 129,
 
855
          .arg = "BITS",
 
856
          .doc = "Bit length of the prime number used in the"
 
857
          " Diffie-Hellman key exchange",
 
858
          .group = 2 },
 
859
        { .name = "priority", .key = 130,
 
860
          .arg = "STRING",
 
861
          .doc = "GnuTLS priority string for the TLS handshake",
 
862
          .group = 1 },
 
863
        { .name = NULL }
 
864
      };
 
865
      
 
866
      error_t parse_opt (int key, char *arg,
 
867
                         struct argp_state *state) {
 
868
        /* Get the INPUT argument from `argp_parse', which we know is
 
869
           a pointer to our plugin list pointer. */
 
870
        switch (key) {
 
871
        case 128:               /* --debug */
 
872
          debug = true;
 
873
          break;
 
874
        case 'c':               /* --connect */
 
875
          connect_to = arg;
 
876
          break;
 
877
        case 'i':               /* --interface */
 
878
          interface = arg;
 
879
          break;
 
880
        case 's':               /* --seckey */
 
881
          seckey = arg;
 
882
          break;
 
883
        case 'p':               /* --pubkey */
 
884
          pubkey = arg;
 
885
          break;
 
886
        case 129:               /* --dh-bits */
738
887
          errno = 0;
739
 
          mc.dh_bits = (unsigned int) strtol(optarg, NULL, 10);
 
888
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
740
889
          if (errno){
741
890
            perror("strtol");
742
891
            exit(EXIT_FAILURE);
743
892
          }
744
893
          break;
745
 
        case 'P':
746
 
          mc.priority = optarg;
747
 
          break;
748
 
        case '?':
 
894
        case 130:               /* --priority */
 
895
          mc.priority = arg;
 
896
          break;
 
897
        case ARGP_KEY_ARG:
 
898
          argp_usage (state);
 
899
        case ARGP_KEY_END:
 
900
          break;
749
901
        default:
750
 
          /* getopt_long() has already printed a message about the
751
 
             unrcognized option, so just exit. */
752
 
          exit(EXIT_FAILURE);
753
 
        }
754
 
      }
755
 
      /* Set the global debug flag from the temporary int */
756
 
      debug = debug_int ? true : false;
757
 
    }
758
 
    
759
 
    pubkeyfile = combinepath(keydir, pubkeyfile);
760
 
    if (pubkeyfile == NULL){
761
 
      perror("combinepath");
762
 
      exitcode = EXIT_FAILURE;
763
 
      goto end;
764
 
    }
765
 
    
766
 
    seckeyfile = combinepath(keydir, seckeyfile);
767
 
    if (seckeyfile == NULL){
768
 
      perror("combinepath");
769
 
      goto end;
 
902
          return ARGP_ERR_UNKNOWN;
 
903
        }
 
904
        return 0;
 
905
      }
 
906
      
 
907
      struct argp argp = { .options = options, .parser = parse_opt,
 
908
                           .args_doc = "",
 
909
                           .doc = "Mandos client -- Get and decrypt"
 
910
                           " passwords from a Mandos server" };
 
911
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
 
912
      if (ret == ARGP_ERR_UNKNOWN){
 
913
        fprintf(stderr, "Unknown error while parsing arguments\n");
 
914
        exitcode = EXIT_FAILURE;
 
915
        goto end;
 
916
      }
 
917
    }
 
918
    
 
919
    /* If the interface is down, bring it up */
 
920
    {
 
921
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
922
      if(sd < 0) {
 
923
        perror("socket");
 
924
        exitcode = EXIT_FAILURE;
 
925
        goto end;
 
926
      }
 
927
      strcpy(network.ifr_name, interface);
 
928
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
929
      if(ret == -1){
 
930
        perror("ioctl SIOCGIFFLAGS");
 
931
        exitcode = EXIT_FAILURE;
 
932
        goto end;
 
933
      }
 
934
      if((network.ifr_flags & IFF_UP) == 0){
 
935
        network.ifr_flags |= IFF_UP;
 
936
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
937
        if(ret == -1){
 
938
          perror("ioctl SIOCSIFFLAGS");
 
939
          exitcode = EXIT_FAILURE;
 
940
          goto end;
 
941
        }
 
942
      }
 
943
      ret = TEMP_FAILURE_RETRY(close(sd));
 
944
      if(ret == -1){
 
945
        perror("close");
 
946
      }
 
947
    }
 
948
    
 
949
    uid = getuid();
 
950
    gid = getgid();
 
951
    
 
952
    ret = setuid(uid);
 
953
    if (ret == -1){
 
954
      perror("setuid");
 
955
    }
 
956
    
 
957
    setgid(gid);
 
958
    if (ret == -1){
 
959
      perror("setgid");
 
960
    }
 
961
    
 
962
    ret = init_gnutls_global(&mc, pubkey, seckey);
 
963
    if (ret == -1){
 
964
      fprintf(stderr, "init_gnutls_global failed\n");
 
965
      exitcode = EXIT_FAILURE;
 
966
      goto end;
 
967
    } else {
 
968
      gnutls_initalized = true;
 
969
    }
 
970
    
 
971
    if(mkdtemp(tempdir) == NULL){
 
972
      perror("mkdtemp");
 
973
      tempdir[0] = '\0';
 
974
      goto end;
 
975
    }
 
976
    
 
977
    if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
 
978
      fprintf(stderr, "gpgme_initalized failed\n");
 
979
      exitcode = EXIT_FAILURE;
 
980
      goto end;
 
981
    } else {
 
982
      gpgme_initalized = true;
770
983
    }
771
984
    
772
985
    if_index = (AvahiIfIndex) if_nametoindex(interface);
781
994
      char *address = strrchr(connect_to, ':');
782
995
      if(address == NULL){
783
996
        fprintf(stderr, "No colon in address\n");
784
 
        exit(EXIT_FAILURE);
 
997
        exitcode = EXIT_FAILURE;
 
998
        goto end;
785
999
      }
786
1000
      errno = 0;
787
1001
      uint16_t port = (uint16_t) strtol(address+1, NULL, 10);
788
1002
      if(errno){
789
1003
        perror("Bad port number");
790
 
        exit(EXIT_FAILURE);
 
1004
        exitcode = EXIT_FAILURE;
 
1005
        goto end;
791
1006
      }
792
1007
      *address = '\0';
793
1008
      address = connect_to;
794
1009
      ret = start_mandos_communication(address, port, if_index, &mc);
795
1010
      if(ret < 0){
796
 
        exit(EXIT_FAILURE);
 
1011
        exitcode = EXIT_FAILURE;
797
1012
      } else {
798
 
        exit(EXIT_SUCCESS);
799
 
      }
800
 
    }
801
 
    
802
 
    /* If the interface is down, bring it up */
803
 
    {
804
 
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
805
 
      if(sd < 0) {
806
 
        perror("socket");
807
 
        exitcode = EXIT_FAILURE;
808
 
        goto end;
809
 
      }
810
 
      strcpy(network.ifr_name, interface); /* Spurious warning */
811
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
812
 
      if(ret == -1){
813
 
        perror("ioctl SIOCGIFFLAGS");
814
 
        exitcode = EXIT_FAILURE;
815
 
        goto end;
816
 
      }
817
 
      if((network.ifr_flags & IFF_UP) == 0){
818
 
        network.ifr_flags |= IFF_UP;
819
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
820
 
        if(ret == -1){
821
 
          perror("ioctl SIOCSIFFLAGS");
822
 
          exitcode = EXIT_FAILURE;
823
 
          goto end;
824
 
        }
825
 
      }
826
 
      close(sd);
 
1013
        exitcode = EXIT_SUCCESS;
 
1014
      }
 
1015
      goto end;
827
1016
    }
828
1017
    
829
1018
    if (not debug){
841
1030
        exitcode = EXIT_FAILURE;
842
1031
        goto end;
843
1032
    }
844
 
 
 
1033
    
845
1034
    {
846
1035
      AvahiServerConfig config;
847
1036
      /* Do not publish any local Zeroconf records */
850
1039
      config.publish_addresses = 0;
851
1040
      config.publish_workstation = 0;
852
1041
      config.publish_domain = 0;
853
 
 
 
1042
      
854
1043
      /* Allocate a new server */
855
1044
      mc.server = avahi_server_new(avahi_simple_poll_get
856
1045
                                   (mc.simple_poll), &config, NULL,
857
1046
                                   NULL, &error);
858
 
    
 
1047
      
859
1048
      /* Free the Avahi configuration data */
860
1049
      avahi_server_config_free(&config);
861
1050
    }
881
1070
    }
882
1071
    
883
1072
    /* Run the main loop */
884
 
 
 
1073
    
885
1074
    if (debug){
886
1075
      fprintf(stderr, "Starting Avahi loop search\n");
887
1076
    }
889
1078
    avahi_simple_poll_loop(mc.simple_poll);
890
1079
    
891
1080
 end:
892
 
 
 
1081
    
893
1082
    if (debug){
894
1083
      fprintf(stderr, "%s exiting\n", argv[0]);
895
1084
    }
900
1089
    
901
1090
    if (mc.server != NULL)
902
1091
        avahi_server_free(mc.server);
903
 
 
 
1092
    
904
1093
    if (mc.simple_poll != NULL)
905
1094
        avahi_simple_poll_free(mc.simple_poll);
906
 
    free(pubkeyfile);
907
 
    free(seckeyfile);
908
 
    
 
1095
    
 
1096
    if (gnutls_initalized){
 
1097
      gnutls_certificate_free_credentials(mc.cred);
 
1098
      gnutls_global_deinit ();
 
1099
      gnutls_dh_params_deinit(mc.dh_params);
 
1100
    }
 
1101
    
 
1102
    if(gpgme_initalized){
 
1103
      gpgme_release(mc.ctx);
 
1104
    }
 
1105
    
 
1106
    /* Removes the temp directory used by GPGME */
 
1107
    if(tempdir[0] != '\0'){
 
1108
      DIR *d;
 
1109
      struct dirent *direntry;
 
1110
      d = opendir(tempdir);
 
1111
      if(d == NULL){
 
1112
        perror("opendir");
 
1113
      } else {
 
1114
        while(true){
 
1115
          direntry = readdir(d);
 
1116
          if(direntry == NULL){
 
1117
            break;
 
1118
          }
 
1119
          if (direntry->d_type == DT_REG){
 
1120
            char *fullname = NULL;
 
1121
            ret = asprintf(&fullname, "%s/%s", tempdir,
 
1122
                           direntry->d_name);
 
1123
            if(ret < 0){
 
1124
              perror("asprintf");
 
1125
              continue;
 
1126
            }
 
1127
            ret = unlink(fullname);
 
1128
            if(ret == -1){
 
1129
              fprintf(stderr, "unlink(\"%s\"): %s",
 
1130
                      fullname, strerror(errno));
 
1131
            }
 
1132
            free(fullname);
 
1133
          }
 
1134
        }
 
1135
        closedir(d);
 
1136
      }
 
1137
      ret = rmdir(tempdir);
 
1138
      if(ret == -1){
 
1139
        perror("rmdir");
 
1140
      }
 
1141
    }
 
1142
          
909
1143
    return exitcode;
910
1144
}