/mandos/trunk

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

« back to all changes in this revision

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

Earlier signal handling

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  -*- coding: utf-8 -*- */
2
2
/*
3
 
 * Mandos client - get and decrypt data from a Mandos server
 
3
 * Mandos-client - get and decrypt data from a Mandos server
4
4
 *
5
5
 * This program is partly derived from an example program for an Avahi
6
6
 * service browser, downloaded from
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,2009 Teddy Hogeborn
 
13
 * Copyright © 2008,2009 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
 
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY() */
 
36
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
36
37
 
37
 
#include <stdio.h>              /* fprintf(), stderr, fwrite(), stdout,
38
 
                                   ferror() */
 
38
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
 
39
                                   stdout, ferror(), sscanf(),
 
40
                                   remove() */
39
41
#include <stdint.h>             /* uint16_t, uint32_t */
40
42
#include <stddef.h>             /* NULL, size_t, ssize_t */
41
43
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
42
44
                                   srand() */
43
 
#include <stdbool.h>            /* bool, true */
 
45
#include <stdbool.h>            /* bool, false, true */
44
46
#include <string.h>             /* memset(), strcmp(), strlen(),
45
 
                                   strerror(), memcpy(), strcpy() */
46
 
#include <sys/ioctl.h>          /* ioctl */
 
47
                                   strerror(), asprintf(), strcpy() */
 
48
#include <sys/ioctl.h>          /* ioctl */
47
49
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
48
50
                                   sockaddr_in6, PF_INET6,
49
 
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
50
 
                                   uid_t, gid_t */
51
 
#include <inttypes.h>           /* PRIu16 */
 
51
                                   SOCK_STREAM, uid_t, gid_t, open(),
 
52
                                   opendir(), DIR */
 
53
#include <sys/stat.h>           /* open() */
52
54
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
53
 
                                   struct in6_addr, inet_pton(),
54
 
                                   connect() */
 
55
                                   inet_pton(), connect() */
 
56
#include <fcntl.h>              /* open() */
 
57
#include <dirent.h>             /* opendir(), struct dirent, readdir()
 
58
                                 */
 
59
#include <inttypes.h>           /* PRIu16, intmax_t, SCNdMAX */
55
60
#include <assert.h>             /* assert() */
56
61
#include <errno.h>              /* perror(), errno */
57
 
#include <time.h>               /* time() */
 
62
#include <time.h>               /* nanosleep(), time() */
58
63
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
59
64
                                   SIOCSIFFLAGS, if_indextoname(),
60
65
                                   if_nametoindex(), IF_NAMESIZE */
 
66
#include <netinet/in.h>         /* IN6_IS_ADDR_LINKLOCAL,
 
67
                                   INET_ADDRSTRLEN, INET6_ADDRSTRLEN
 
68
                                */
61
69
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
62
70
                                   getuid(), getgid(), setuid(),
63
71
                                   setgid() */
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, or, and */
67
74
#include <argp.h>               /* struct argp_option, error_t, struct
68
75
                                   argp_state, struct argp,
69
76
                                   argp_parse(), ARGP_KEY_ARG,
70
77
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
 
78
#include <signal.h>             /* sigemptyset(), sigaddset(), sigaction(), SIGTERM, sigaction */
 
79
#ifdef __linux__
 
80
#include <sys/klog.h>           /* klogctl() */
 
81
#endif
71
82
 
72
83
/* Avahi */
73
84
/* All Avahi types, constants and functions
81
92
#include <avahi-common/error.h>
82
93
 
83
94
/* GnuTLS */
84
 
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and functions
 
95
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and
 
96
                                   functions:
85
97
                                   gnutls_*
86
98
                                   init_gnutls_session(),
87
99
                                   GNUTLS_* */
88
 
#include <gnutls/openpgp.h>     /* gnutls_certificate_set_openpgp_key_file(),
 
100
#include <gnutls/openpgp.h>
 
101
                          /* gnutls_certificate_set_openpgp_key_file(),
89
102
                                   GNUTLS_OPENPGP_FMT_BASE64 */
90
103
 
91
104
/* GPGME */
92
 
#include <gpgme.h>              /* All GPGME types, constants and functions
 
105
#include <gpgme.h>              /* All GPGME types, constants and
 
106
                                   functions:
93
107
                                   gpgme_*
94
108
                                   GPGME_PROTOCOL_OpenPGP,
95
109
                                   GPG_ERR_NO_* */
96
110
 
97
111
#define BUFFER_SIZE 256
98
112
 
 
113
#define PATHDIR "/conf/conf.d/mandos"
 
114
#define SECKEY "seckey.txt"
 
115
#define PUBKEY "pubkey.txt"
 
116
 
99
117
bool debug = false;
100
 
static const char *keydir = "/conf/conf.d/mandos";
101
118
static const char mandos_protocol_version[] = "1";
102
 
const char *argp_program_version = "password-request 1.0";
 
119
const char *argp_program_version = "mandos-client " VERSION;
103
120
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
104
121
 
105
122
/* Used for passing in values through the Avahi callback functions */
110
127
  unsigned int dh_bits;
111
128
  gnutls_dh_params_t dh_params;
112
129
  const char *priority;
 
130
  gpgme_ctx_t ctx;
113
131
} mandos_context;
114
132
 
 
133
/* global context so signal handler can reach it*/
 
134
mandos_context mc = { .simple_poll = NULL, .server = NULL,
 
135
                      .dh_bits = 1024, .priority = "SECURE256"
 
136
                      ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
137
 
115
138
/*
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.
 
139
 * Make additional room in "buffer" for at least BUFFER_SIZE
 
140
 * additional bytes. "buffer_capacity" is how much is currently
 
141
 * allocated, "buffer_length" is how much is already used.
119
142
 */
120
 
size_t adjustbuffer(char **buffer, size_t buffer_length,
 
143
size_t incbuffer(char **buffer, size_t buffer_length,
121
144
                  size_t buffer_capacity){
122
 
  if (buffer_length + BUFFER_SIZE > buffer_capacity){
 
145
  if(buffer_length + BUFFER_SIZE > buffer_capacity){
123
146
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
124
 
    if (buffer == NULL){
 
147
    if(buffer == NULL){
125
148
      return 0;
126
149
    }
127
150
    buffer_capacity += BUFFER_SIZE;
130
153
}
131
154
 
132
155
/* 
133
 
 * Decrypt OpenPGP data using keyrings in HOMEDIR.
134
 
 * Returns -1 on error
 
156
 * Initialize GPGME.
135
157
 */
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;
 
158
static bool init_gpgme(const char *seckey,
 
159
                       const char *pubkey, const char *tempdir){
 
160
  int ret;
142
161
  gpgme_error_t rc;
143
 
  ssize_t ret;
144
 
  size_t plaintext_capacity = 0;
145
 
  ssize_t plaintext_length = 0;
146
162
  gpgme_engine_info_t engine_info;
147
163
  
148
 
  if (debug){
149
 
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
 
164
  
 
165
  /*
 
166
   * Helper function to insert pub and seckey to the engine keyring.
 
167
   */
 
168
  bool import_key(const char *filename){
 
169
    int fd;
 
170
    gpgme_data_t pgp_data;
 
171
    
 
172
    fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
 
173
    if(fd == -1){
 
174
      perror("open");
 
175
      return false;
 
176
    }
 
177
    
 
178
    rc = gpgme_data_new_from_fd(&pgp_data, fd);
 
179
    if(rc != GPG_ERR_NO_ERROR){
 
180
      fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
 
181
              gpgme_strsource(rc), gpgme_strerror(rc));
 
182
      return false;
 
183
    }
 
184
    
 
185
    rc = gpgme_op_import(mc.ctx, pgp_data);
 
186
    if(rc != GPG_ERR_NO_ERROR){
 
187
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
 
188
              gpgme_strsource(rc), gpgme_strerror(rc));
 
189
      return false;
 
190
    }
 
191
    
 
192
    ret = (int)TEMP_FAILURE_RETRY(close(fd));
 
193
    if(ret == -1){
 
194
      perror("close");
 
195
    }
 
196
    gpgme_data_release(pgp_data);
 
197
    return true;
 
198
  }
 
199
  
 
200
  if(debug){
 
201
    fprintf(stderr, "Initialize gpgme\n");
150
202
  }
151
203
  
152
204
  /* Init GPGME */
153
205
  gpgme_check_version(NULL);
154
206
  rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
155
 
  if (rc != GPG_ERR_NO_ERROR){
 
207
  if(rc != GPG_ERR_NO_ERROR){
156
208
    fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
157
209
            gpgme_strsource(rc), gpgme_strerror(rc));
158
 
    return -1;
 
210
    return false;
159
211
  }
160
212
  
161
 
  /* Set GPGME home directory for the OpenPGP engine only */
162
 
  rc = gpgme_get_engine_info (&engine_info);
163
 
  if (rc != GPG_ERR_NO_ERROR){
 
213
    /* Set GPGME home directory for the OpenPGP engine only */
 
214
  rc = gpgme_get_engine_info(&engine_info);
 
215
  if(rc != GPG_ERR_NO_ERROR){
164
216
    fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
165
217
            gpgme_strsource(rc), gpgme_strerror(rc));
166
 
    return -1;
 
218
    return false;
167
219
  }
168
220
  while(engine_info != NULL){
169
221
    if(engine_info->protocol == GPGME_PROTOCOL_OpenPGP){
170
222
      gpgme_set_engine_info(GPGME_PROTOCOL_OpenPGP,
171
 
                            engine_info->file_name, homedir);
 
223
                            engine_info->file_name, tempdir);
172
224
      break;
173
225
    }
174
226
    engine_info = engine_info->next;
175
227
  }
176
228
  if(engine_info == NULL){
177
 
    fprintf(stderr, "Could not set GPGME home dir to %s\n", homedir);
178
 
    return -1;
 
229
    fprintf(stderr, "Could not set GPGME home dir to %s\n", tempdir);
 
230
    return false;
 
231
  }
 
232
  
 
233
  /* Create new GPGME "context" */
 
234
  rc = gpgme_new(&(mc.ctx));
 
235
  if(rc != GPG_ERR_NO_ERROR){
 
236
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
 
237
            gpgme_strsource(rc), gpgme_strerror(rc));
 
238
    return false;
 
239
  }
 
240
  
 
241
  if(not import_key(pubkey) or not import_key(seckey)){
 
242
    return false;
 
243
  }
 
244
  
 
245
  return true; 
 
246
}
 
247
 
 
248
/* 
 
249
 * Decrypt OpenPGP data.
 
250
 * Returns -1 on error
 
251
 */
 
252
static ssize_t pgp_packet_decrypt(const char *cryptotext,
 
253
                                  size_t crypto_size,
 
254
                                  char **plaintext){
 
255
  gpgme_data_t dh_crypto, dh_plain;
 
256
  gpgme_error_t rc;
 
257
  ssize_t ret;
 
258
  size_t plaintext_capacity = 0;
 
259
  ssize_t plaintext_length = 0;
 
260
  
 
261
  if(debug){
 
262
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
179
263
  }
180
264
  
181
265
  /* Create new GPGME data buffer from memory cryptotext */
182
266
  rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
183
267
                               0);
184
 
  if (rc != GPG_ERR_NO_ERROR){
 
268
  if(rc != GPG_ERR_NO_ERROR){
185
269
    fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
186
270
            gpgme_strsource(rc), gpgme_strerror(rc));
187
271
    return -1;
189
273
  
190
274
  /* Create new empty GPGME data buffer for the plaintext */
191
275
  rc = gpgme_data_new(&dh_plain);
192
 
  if (rc != GPG_ERR_NO_ERROR){
 
276
  if(rc != GPG_ERR_NO_ERROR){
193
277
    fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
194
278
            gpgme_strsource(rc), gpgme_strerror(rc));
195
279
    gpgme_data_release(dh_crypto);
196
280
    return -1;
197
281
  }
198
282
  
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
 
  
208
283
  /* Decrypt data from the cryptotext data buffer to the plaintext
209
284
     data buffer */
210
 
  rc = gpgme_op_decrypt(ctx, dh_crypto, dh_plain);
211
 
  if (rc != GPG_ERR_NO_ERROR){
 
285
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
 
286
  if(rc != GPG_ERR_NO_ERROR){
212
287
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
213
288
            gpgme_strsource(rc), gpgme_strerror(rc));
214
289
    plaintext_length = -1;
 
290
    if(debug){
 
291
      gpgme_decrypt_result_t result;
 
292
      result = gpgme_op_decrypt_result(mc.ctx);
 
293
      if(result == NULL){
 
294
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
 
295
      } else {
 
296
        fprintf(stderr, "Unsupported algorithm: %s\n",
 
297
                result->unsupported_algorithm);
 
298
        fprintf(stderr, "Wrong key usage: %u\n",
 
299
                result->wrong_key_usage);
 
300
        if(result->file_name != NULL){
 
301
          fprintf(stderr, "File name: %s\n", result->file_name);
 
302
        }
 
303
        gpgme_recipient_t recipient;
 
304
        recipient = result->recipients;
 
305
        if(recipient){
 
306
          while(recipient != NULL){
 
307
            fprintf(stderr, "Public key algorithm: %s\n",
 
308
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
309
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
310
            fprintf(stderr, "Secret key available: %s\n",
 
311
                    recipient->status == GPG_ERR_NO_SECKEY
 
312
                    ? "No" : "Yes");
 
313
            recipient = recipient->next;
 
314
          }
 
315
        }
 
316
      }
 
317
    }
215
318
    goto decrypt_end;
216
319
  }
217
320
  
219
322
    fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
220
323
  }
221
324
  
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
 
  
251
325
  /* Seek back to the beginning of the GPGME plaintext data buffer */
252
 
  if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
253
 
    perror("pgpme_data_seek");
 
326
  if(gpgme_data_seek(dh_plain, (off_t)0, SEEK_SET) == -1){
 
327
    perror("gpgme_data_seek");
254
328
    plaintext_length = -1;
255
329
    goto decrypt_end;
256
330
  }
257
331
  
258
332
  *plaintext = NULL;
259
333
  while(true){
260
 
    plaintext_capacity = adjustbuffer(plaintext,
 
334
    plaintext_capacity = incbuffer(plaintext,
261
335
                                      (size_t)plaintext_length,
262
336
                                      plaintext_capacity);
263
 
    if (plaintext_capacity == 0){
264
 
        perror("adjustbuffer");
 
337
    if(plaintext_capacity == 0){
 
338
        perror("incbuffer");
265
339
        plaintext_length = -1;
266
340
        goto decrypt_end;
267
341
    }
269
343
    ret = gpgme_data_read(dh_plain, *plaintext + plaintext_length,
270
344
                          BUFFER_SIZE);
271
345
    /* Print the data, if any */
272
 
    if (ret == 0){
 
346
    if(ret == 0){
273
347
      /* EOF */
274
348
      break;
275
349
    }
280
354
    }
281
355
    plaintext_length += ret;
282
356
  }
283
 
 
 
357
  
284
358
  if(debug){
285
359
    fprintf(stderr, "Decrypted password is: ");
286
360
    for(ssize_t i = 0; i < plaintext_length; i++){
299
373
  return plaintext_length;
300
374
}
301
375
 
302
 
static const char * safer_gnutls_strerror (int value) {
303
 
  const char *ret = gnutls_strerror (value);
304
 
  if (ret == NULL)
 
376
static const char * safer_gnutls_strerror(int value){
 
377
  const char *ret = gnutls_strerror(value); /* Spurious warning from
 
378
                                               -Wunreachable-code */
 
379
  if(ret == NULL)
305
380
    ret = "(unknown)";
306
381
  return ret;
307
382
}
312
387
  fprintf(stderr, "GnuTLS: %s", string);
313
388
}
314
389
 
315
 
static int init_gnutls_global(mandos_context *mc,
316
 
                              const char *pubkeyfile,
317
 
                              const char *seckeyfile){
 
390
static int init_gnutls_global(const char *pubkeyfilename,
 
391
                              const char *seckeyfilename){
318
392
  int ret;
319
393
  
320
394
  if(debug){
322
396
  }
323
397
  
324
398
  ret = gnutls_global_init();
325
 
  if (ret != GNUTLS_E_SUCCESS) {
326
 
    fprintf (stderr, "GnuTLS global_init: %s\n",
327
 
             safer_gnutls_strerror(ret));
 
399
  if(ret != GNUTLS_E_SUCCESS){
 
400
    fprintf(stderr, "GnuTLS global_init: %s\n",
 
401
            safer_gnutls_strerror(ret));
328
402
    return -1;
329
403
  }
330
404
  
331
 
  if (debug){
 
405
  if(debug){
332
406
    /* "Use a log level over 10 to enable all debugging options."
333
407
     * - GnuTLS manual
334
408
     */
337
411
  }
338
412
  
339
413
  /* OpenPGP credentials */
340
 
  gnutls_certificate_allocate_credentials(&mc->cred);
341
 
  if (ret != GNUTLS_E_SUCCESS){
342
 
    fprintf (stderr, "GnuTLS memory error: %s\n",
343
 
             safer_gnutls_strerror(ret));
344
 
    gnutls_global_deinit ();
 
414
  gnutls_certificate_allocate_credentials(&mc.cred);
 
415
  if(ret != GNUTLS_E_SUCCESS){
 
416
    fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
 
417
                                                    from
 
418
                                                    -Wunreachable-code
 
419
                                                 */
 
420
            safer_gnutls_strerror(ret));
 
421
    gnutls_global_deinit();
345
422
    return -1;
346
423
  }
347
424
  
348
425
  if(debug){
349
 
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
350
 
            " and keyfile %s as GnuTLS credentials\n", pubkeyfile,
351
 
            seckeyfile);
 
426
    fprintf(stderr, "Attempting to use OpenPGP public key %s and"
 
427
            " secret key %s as GnuTLS credentials\n", pubkeyfilename,
 
428
            seckeyfilename);
352
429
  }
353
430
  
354
431
  ret = gnutls_certificate_set_openpgp_key_file
355
 
    (mc->cred, pubkeyfile, seckeyfile, GNUTLS_OPENPGP_FMT_BASE64);
356
 
  if (ret != GNUTLS_E_SUCCESS) {
 
432
    (mc.cred, pubkeyfilename, seckeyfilename,
 
433
     GNUTLS_OPENPGP_FMT_BASE64);
 
434
  if(ret != GNUTLS_E_SUCCESS){
357
435
    fprintf(stderr,
358
436
            "Error[%d] while reading the OpenPGP key pair ('%s',"
359
 
            " '%s')\n", ret, pubkeyfile, seckeyfile);
360
 
    fprintf(stdout, "The GnuTLS error is: %s\n",
 
437
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
438
    fprintf(stderr, "The GnuTLS error is: %s\n",
361
439
            safer_gnutls_strerror(ret));
362
440
    goto globalfail;
363
441
  }
364
442
  
365
443
  /* GnuTLS server initialization */
366
 
  ret = gnutls_dh_params_init(&mc->dh_params);
367
 
  if (ret != GNUTLS_E_SUCCESS) {
368
 
    fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
369
 
             " %s\n", safer_gnutls_strerror(ret));
370
 
    goto globalfail;
371
 
  }
372
 
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
373
 
  if (ret != GNUTLS_E_SUCCESS) {
374
 
    fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
375
 
             safer_gnutls_strerror(ret));
376
 
    goto globalfail;
377
 
  }
378
 
  
379
 
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
380
 
 
 
444
  ret = gnutls_dh_params_init(&mc.dh_params);
 
445
  if(ret != GNUTLS_E_SUCCESS){
 
446
    fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
 
447
            " %s\n", safer_gnutls_strerror(ret));
 
448
    goto globalfail;
 
449
  }
 
450
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
 
451
  if(ret != GNUTLS_E_SUCCESS){
 
452
    fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
 
453
            safer_gnutls_strerror(ret));
 
454
    goto globalfail;
 
455
  }
 
456
  
 
457
  gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
 
458
  
381
459
  return 0;
382
 
 
 
460
  
383
461
 globalfail:
384
 
 
385
 
  gnutls_certificate_free_credentials(mc->cred);
 
462
  
 
463
  gnutls_certificate_free_credentials(mc.cred);
386
464
  gnutls_global_deinit();
 
465
  gnutls_dh_params_deinit(mc.dh_params);
387
466
  return -1;
388
 
 
389
467
}
390
468
 
391
 
static int init_gnutls_session(mandos_context *mc,
392
 
                               gnutls_session_t *session){
 
469
static int init_gnutls_session(gnutls_session_t *session){
393
470
  int ret;
394
471
  /* GnuTLS session creation */
395
472
  ret = gnutls_init(session, GNUTLS_SERVER);
396
 
  if (ret != GNUTLS_E_SUCCESS){
 
473
  if(ret != GNUTLS_E_SUCCESS){
397
474
    fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
398
475
            safer_gnutls_strerror(ret));
399
476
  }
400
477
  
401
478
  {
402
479
    const char *err;
403
 
    ret = gnutls_priority_set_direct(*session, mc->priority, &err);
404
 
    if (ret != GNUTLS_E_SUCCESS) {
 
480
    ret = gnutls_priority_set_direct(*session, mc.priority, &err);
 
481
    if(ret != GNUTLS_E_SUCCESS){
405
482
      fprintf(stderr, "Syntax error at: %s\n", err);
406
483
      fprintf(stderr, "GnuTLS error: %s\n",
407
484
              safer_gnutls_strerror(ret));
408
 
      gnutls_deinit (*session);
 
485
      gnutls_deinit(*session);
409
486
      return -1;
410
487
    }
411
488
  }
412
489
  
413
490
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
414
 
                               mc->cred);
415
 
  if (ret != GNUTLS_E_SUCCESS) {
 
491
                               mc.cred);
 
492
  if(ret != GNUTLS_E_SUCCESS){
416
493
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
417
494
            safer_gnutls_strerror(ret));
418
 
    gnutls_deinit (*session);
 
495
    gnutls_deinit(*session);
419
496
    return -1;
420
497
  }
421
498
  
422
499
  /* ignore client certificate if any. */
423
 
  gnutls_certificate_server_set_request (*session,
424
 
                                         GNUTLS_CERT_IGNORE);
 
500
  gnutls_certificate_server_set_request(*session,
 
501
                                        GNUTLS_CERT_IGNORE);
425
502
  
426
 
  gnutls_dh_set_prime_bits (*session, mc->dh_bits);
 
503
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
427
504
  
428
505
  return 0;
429
506
}
435
512
/* Called when a Mandos server is found */
436
513
static int start_mandos_communication(const char *ip, uint16_t port,
437
514
                                      AvahiIfIndex if_index,
438
 
                                      mandos_context *mc){
 
515
                                      int af){
439
516
  int ret, tcp_sd;
440
 
  union { struct sockaddr in; struct sockaddr_in6 in6; } to;
 
517
  ssize_t sret;
 
518
  union {
 
519
    struct sockaddr_in in;
 
520
    struct sockaddr_in6 in6;
 
521
  } to;
441
522
  char *buffer = NULL;
442
523
  char *decrypted_buffer;
443
524
  size_t buffer_length = 0;
445
526
  ssize_t decrypted_buffer_size;
446
527
  size_t written;
447
528
  int retval = 0;
448
 
  char interface[IF_NAMESIZE];
449
529
  gnutls_session_t session;
450
 
  
451
 
  ret = init_gnutls_session (mc, &session);
452
 
  if (ret != 0){
 
530
  int pf;                       /* Protocol family */
 
531
  
 
532
  switch(af){
 
533
  case AF_INET6:
 
534
    pf = PF_INET6;
 
535
    break;
 
536
  case AF_INET:
 
537
    pf = PF_INET;
 
538
    break;
 
539
  default:
 
540
    fprintf(stderr, "Bad address family: %d\n", af);
 
541
    return -1;
 
542
  }
 
543
  
 
544
  ret = init_gnutls_session(&session);
 
545
  if(ret != 0){
453
546
    return -1;
454
547
  }
455
548
  
456
549
  if(debug){
457
 
    fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
 
550
    fprintf(stderr, "Setting up a TCP connection to %s, port %" PRIu16
458
551
            "\n", ip, port);
459
552
  }
460
553
  
461
 
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
462
 
  if(tcp_sd < 0) {
 
554
  tcp_sd = socket(pf, SOCK_STREAM, 0);
 
555
  if(tcp_sd < 0){
463
556
    perror("socket");
464
557
    return -1;
465
558
  }
466
 
 
467
 
  if(debug){
468
 
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
469
 
      perror("if_indextoname");
470
 
      return -1;
471
 
    }
472
 
    fprintf(stderr, "Binding to interface %s\n", interface);
473
 
  }
474
559
  
475
 
  memset(&to,0,sizeof(to));     /* Spurious warning */
476
 
  to.in6.sin6_family = AF_INET6;
477
 
  /* It would be nice to have a way to detect if we were passed an
478
 
     IPv4 address here.   Now we assume an IPv6 address. */
479
 
  ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
480
 
  if (ret < 0 ){
 
560
  memset(&to, 0, sizeof(to));
 
561
  if(af == AF_INET6){
 
562
    to.in6.sin6_family = (uint16_t)af;
 
563
    ret = inet_pton(af, ip, &to.in6.sin6_addr);
 
564
  } else {                      /* IPv4 */
 
565
    to.in.sin_family = (sa_family_t)af;
 
566
    ret = inet_pton(af, ip, &to.in.sin_addr);
 
567
  }
 
568
  if(ret < 0 ){
481
569
    perror("inet_pton");
482
570
    return -1;
483
571
  }
485
573
    fprintf(stderr, "Bad address: %s\n", ip);
486
574
    return -1;
487
575
  }
488
 
  to.in6.sin6_port = htons(port); /* Spurious warning */
489
 
  
490
 
  to.in6.sin6_scope_id = (uint32_t)if_index;
 
576
  if(af == AF_INET6){
 
577
    to.in6.sin6_port = htons(port); /* Spurious warnings from
 
578
                                       -Wconversion and
 
579
                                       -Wunreachable-code */
 
580
    
 
581
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
 
582
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
 
583
                              -Wunreachable-code*/
 
584
      if(if_index == AVAHI_IF_UNSPEC){
 
585
        fprintf(stderr, "An IPv6 link-local address is incomplete"
 
586
                " without a network interface\n");
 
587
        return -1;
 
588
      }
 
589
      /* Set the network interface number as scope */
 
590
      to.in6.sin6_scope_id = (uint32_t)if_index;
 
591
    }
 
592
  } else {
 
593
    to.in.sin_port = htons(port); /* Spurious warnings from
 
594
                                     -Wconversion and
 
595
                                     -Wunreachable-code */
 
596
  }
491
597
  
492
598
  if(debug){
493
 
    fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
494
 
            port);
495
 
    char addrstr[INET6_ADDRSTRLEN] = "";
496
 
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
497
 
                 sizeof(addrstr)) == NULL){
 
599
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
 
600
      char interface[IF_NAMESIZE];
 
601
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
 
602
        perror("if_indextoname");
 
603
      } else {
 
604
        fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
 
605
                ip, interface, port);
 
606
      }
 
607
    } else {
 
608
      fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
 
609
              port);
 
610
    }
 
611
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
 
612
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
 
613
    const char *pcret;
 
614
    if(af == AF_INET6){
 
615
      pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
 
616
                        sizeof(addrstr));
 
617
    } else {
 
618
      pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
 
619
                        sizeof(addrstr));
 
620
    }
 
621
    if(pcret == NULL){
498
622
      perror("inet_ntop");
499
623
    } else {
500
624
      if(strcmp(addrstr, ip) != 0){
503
627
    }
504
628
  }
505
629
  
506
 
  ret = connect(tcp_sd, &to.in, sizeof(to));
507
 
  if (ret < 0){
 
630
  if(af == AF_INET6){
 
631
    ret = connect(tcp_sd, &to.in6, sizeof(to));
 
632
  } else {
 
633
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
 
634
  }
 
635
  if(ret < 0){
508
636
    perror("connect");
509
637
    return -1;
510
638
  }
511
 
 
 
639
  
512
640
  const char *out = mandos_protocol_version;
513
641
  written = 0;
514
 
  while (true){
 
642
  while(true){
515
643
    size_t out_size = strlen(out);
516
 
    ret = TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
 
644
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
517
645
                                   out_size - written));
518
 
    if (ret == -1){
 
646
    if(ret == -1){
519
647
      perror("write");
520
648
      retval = -1;
521
649
      goto mandos_end;
524
652
    if(written < out_size){
525
653
      continue;
526
654
    } else {
527
 
      if (out == mandos_protocol_version){
 
655
      if(out == mandos_protocol_version){
528
656
        written = 0;
529
657
        out = "\r\n";
530
658
      } else {
532
660
      }
533
661
    }
534
662
  }
535
 
 
 
663
  
536
664
  if(debug){
537
665
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
538
666
  }
539
667
  
540
 
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
541
 
 
 
668
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
 
669
  
542
670
  do{
543
 
    ret = gnutls_handshake (session);
 
671
    ret = gnutls_handshake(session);
544
672
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
545
673
  
546
 
  if (ret != GNUTLS_E_SUCCESS){
 
674
  if(ret != GNUTLS_E_SUCCESS){
547
675
    if(debug){
548
676
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
549
 
      gnutls_perror (ret);
 
677
      gnutls_perror(ret);
550
678
    }
551
679
    retval = -1;
552
680
    goto mandos_end;
555
683
  /* Read OpenPGP packet that contains the wanted password */
556
684
  
557
685
  if(debug){
558
 
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
 
686
    fprintf(stderr, "Retrieving OpenPGP encrypted password from %s\n",
559
687
            ip);
560
688
  }
561
 
 
 
689
  
562
690
  while(true){
563
 
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
 
691
    buffer_capacity = incbuffer(&buffer, buffer_length,
564
692
                                   buffer_capacity);
565
 
    if (buffer_capacity == 0){
566
 
      perror("adjustbuffer");
 
693
    if(buffer_capacity == 0){
 
694
      perror("incbuffer");
567
695
      retval = -1;
568
696
      goto mandos_end;
569
697
    }
570
698
    
571
 
    ret = gnutls_record_recv(session, buffer+buffer_length,
572
 
                             BUFFER_SIZE);
573
 
    if (ret == 0){
 
699
    sret = gnutls_record_recv(session, buffer+buffer_length,
 
700
                              BUFFER_SIZE);
 
701
    if(sret == 0){
574
702
      break;
575
703
    }
576
 
    if (ret < 0){
577
 
      switch(ret){
 
704
    if(sret < 0){
 
705
      switch(sret){
578
706
      case GNUTLS_E_INTERRUPTED:
579
707
      case GNUTLS_E_AGAIN:
580
708
        break;
581
709
      case GNUTLS_E_REHANDSHAKE:
582
710
        do{
583
 
          ret = gnutls_handshake (session);
 
711
          ret = gnutls_handshake(session);
584
712
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
585
 
        if (ret < 0){
 
713
        if(ret < 0){
586
714
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
587
 
          gnutls_perror (ret);
 
715
          gnutls_perror(ret);
588
716
          retval = -1;
589
717
          goto mandos_end;
590
718
        }
593
721
        fprintf(stderr, "Unknown error while reading data from"
594
722
                " encrypted session with Mandos server\n");
595
723
        retval = -1;
596
 
        gnutls_bye (session, GNUTLS_SHUT_RDWR);
 
724
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
597
725
        goto mandos_end;
598
726
      }
599
727
    } else {
600
 
      buffer_length += (size_t) ret;
 
728
      buffer_length += (size_t) sret;
601
729
    }
602
730
  }
603
731
  
605
733
    fprintf(stderr, "Closing TLS session\n");
606
734
  }
607
735
  
608
 
  gnutls_bye (session, GNUTLS_SHUT_RDWR);
 
736
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
609
737
  
610
 
  if (buffer_length > 0){
 
738
  if(buffer_length > 0){
611
739
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
612
740
                                               buffer_length,
613
 
                                               &decrypted_buffer,
614
 
                                               keydir);
615
 
    if (decrypted_buffer_size >= 0){
 
741
                                               &decrypted_buffer);
 
742
    if(decrypted_buffer_size >= 0){
616
743
      written = 0;
617
744
      while(written < (size_t) decrypted_buffer_size){
618
 
        ret = (int)fwrite (decrypted_buffer + written, 1,
619
 
                           (size_t)decrypted_buffer_size - written,
620
 
                           stdout);
 
745
        ret = (int)fwrite(decrypted_buffer + written, 1,
 
746
                          (size_t)decrypted_buffer_size - written,
 
747
                          stdout);
621
748
        if(ret == 0 and ferror(stdout)){
622
749
          if(debug){
623
750
            fprintf(stderr, "Error writing encrypted data: %s\n",
632
759
    } else {
633
760
      retval = -1;
634
761
    }
 
762
  } else {
 
763
    retval = -1;
635
764
  }
636
765
  
637
766
  /* Shutdown procedure */
638
767
  
639
768
 mandos_end:
640
769
  free(buffer);
641
 
  close(tcp_sd);
642
 
  gnutls_deinit (session);
 
770
  ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
771
  if(ret == -1){
 
772
    perror("close");
 
773
  }
 
774
  gnutls_deinit(session);
643
775
  return retval;
644
776
}
645
777
 
646
778
static void resolve_callback(AvahiSServiceResolver *r,
647
779
                             AvahiIfIndex interface,
648
 
                             AVAHI_GCC_UNUSED AvahiProtocol protocol,
 
780
                             AvahiProtocol proto,
649
781
                             AvahiResolverEvent event,
650
782
                             const char *name,
651
783
                             const char *type,
656
788
                             AVAHI_GCC_UNUSED AvahiStringList *txt,
657
789
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
658
790
                             flags,
659
 
                             void* userdata) {
660
 
  mandos_context *mc = userdata;
661
 
  assert(r);                    /* Spurious warning */
 
791
                             __attribute__((unused)) void* userdata){
 
792
  assert(r);
662
793
  
663
794
  /* Called whenever a service has been resolved successfully or
664
795
     timed out */
665
796
  
666
 
  switch (event) {
 
797
  switch(event){
667
798
  default:
668
799
  case AVAHI_RESOLVER_FAILURE:
669
800
    fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
670
801
            " of type '%s' in domain '%s': %s\n", name, type, domain,
671
 
            avahi_strerror(avahi_server_errno(mc->server)));
 
802
            avahi_strerror(avahi_server_errno(mc.server)));
672
803
    break;
673
804
    
674
805
  case AVAHI_RESOLVER_FOUND:
677
808
      avahi_address_snprint(ip, sizeof(ip), address);
678
809
      if(debug){
679
810
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
680
 
                PRIu16 ") on port %d\n", name, host_name, ip,
681
 
                interface, port);
 
811
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
 
812
                ip, (intmax_t)interface, port);
682
813
      }
683
 
      int ret = start_mandos_communication(ip, port, interface, mc);
684
 
      if (ret == 0){
685
 
        avahi_simple_poll_quit(mc->simple_poll);
 
814
      int ret = start_mandos_communication(ip, port, interface,
 
815
                                           avahi_proto_to_af(proto));
 
816
      if(ret == 0){
 
817
        avahi_simple_poll_quit(mc.simple_poll);
686
818
      }
687
819
    }
688
820
  }
689
821
  avahi_s_service_resolver_free(r);
690
822
}
691
823
 
692
 
static void browse_callback( AvahiSServiceBrowser *b,
693
 
                             AvahiIfIndex interface,
694
 
                             AvahiProtocol protocol,
695
 
                             AvahiBrowserEvent event,
696
 
                             const char *name,
697
 
                             const char *type,
698
 
                             const char *domain,
699
 
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
700
 
                             flags,
701
 
                             void* userdata) {
702
 
  mandos_context *mc = userdata;
703
 
  assert(b);                    /* Spurious warning */
 
824
static void browse_callback(AvahiSServiceBrowser *b,
 
825
                            AvahiIfIndex interface,
 
826
                            AvahiProtocol protocol,
 
827
                            AvahiBrowserEvent event,
 
828
                            const char *name,
 
829
                            const char *type,
 
830
                            const char *domain,
 
831
                            AVAHI_GCC_UNUSED AvahiLookupResultFlags
 
832
                            flags,
 
833
                            __attribute__((unused)) void* userdata){
 
834
  assert(b);
704
835
  
705
836
  /* Called whenever a new services becomes available on the LAN or
706
837
     is removed from the LAN */
707
838
  
708
 
  switch (event) {
 
839
  switch(event){
709
840
  default:
710
841
  case AVAHI_BROWSER_FAILURE:
711
842
    
712
843
    fprintf(stderr, "(Avahi browser) %s\n",
713
 
            avahi_strerror(avahi_server_errno(mc->server)));
714
 
    avahi_simple_poll_quit(mc->simple_poll);
 
844
            avahi_strerror(avahi_server_errno(mc.server)));
 
845
    avahi_simple_poll_quit(mc.simple_poll);
715
846
    return;
716
847
    
717
848
  case AVAHI_BROWSER_NEW:
720
851
       the callback function is called the Avahi server will free the
721
852
       resolver for us. */
722
853
    
723
 
    if (!(avahi_s_service_resolver_new(mc->server, interface,
 
854
    if(!(avahi_s_service_resolver_new(mc.server, interface,
724
855
                                       protocol, name, type, domain,
725
856
                                       AVAHI_PROTO_INET6, 0,
726
 
                                       resolve_callback, mc)))
 
857
                                       resolve_callback, NULL)))
727
858
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
728
 
              name, avahi_strerror(avahi_server_errno(mc->server)));
 
859
              name, avahi_strerror(avahi_server_errno(mc.server)));
729
860
    break;
730
861
    
731
862
  case AVAHI_BROWSER_REMOVE:
740
871
  }
741
872
}
742
873
 
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;
 
874
/* stop main loop after sigterm has been called */
 
875
static void handle_sigterm(__attribute__((unused)) int sig){
 
876
  int old_errno = errno;
 
877
  avahi_simple_poll_quit(mc.simple_poll);
 
878
  errno = old_errno;
761
879
}
762
880
 
763
 
 
764
881
int main(int argc, char *argv[]){
765
 
    AvahiSServiceBrowser *sb = NULL;
766
 
    int error;
767
 
    int ret;
768
 
    int exitcode = EXIT_SUCCESS;
769
 
    const char *interface = "eth0";
770
 
    struct ifreq network;
771
 
    int sd;
772
 
    uid_t uid;
773
 
    gid_t gid;
774
 
    char *connect_to = NULL;
775
 
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
776
 
    const char *pubkeyfile = "pubkey.txt";
777
 
    const char *seckeyfile = "seckey.txt";
778
 
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
779
 
                          .dh_bits = 1024, .priority = "SECURE256"};
780
 
    bool gnutls_initalized = false;
781
 
    
782
 
    {
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;
824
 
          break;
825
 
        case 'c':
826
 
          connect_to = arg;
827
 
          break;
828
 
        case 'i':
829
 
          interface = arg;
830
 
          break;
831
 
        case 'd':
832
 
          keydir = arg;
833
 
          break;
834
 
        case 's':
835
 
          seckeyfile = arg;
836
 
          break;
837
 
        case 'p':
838
 
          pubkeyfile = arg;
839
 
          break;
840
 
        case 129:
841
 
          errno = 0;
842
 
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
843
 
          if (errno){
844
 
            perror("strtol");
845
 
            exit(EXIT_FAILURE);
 
882
  AvahiSServiceBrowser *sb = NULL;
 
883
  int error;
 
884
  int ret;
 
885
  intmax_t tmpmax;
 
886
  int numchars;
 
887
  int exitcode = EXIT_SUCCESS;
 
888
  const char *interface = "eth0";
 
889
  struct ifreq network;
 
890
  int sd;
 
891
  uid_t uid;
 
892
  gid_t gid;
 
893
  char *connect_to = NULL;
 
894
  char tempdir[] = "/tmp/mandosXXXXXX";
 
895
  bool tempdir_created = false;
 
896
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
 
897
  const char *seckey = PATHDIR "/" SECKEY;
 
898
  const char *pubkey = PATHDIR "/" PUBKEY;
 
899
  
 
900
  bool gnutls_initialized = false;
 
901
  bool gpgme_initialized = false;
 
902
  double delay = 2.5;
 
903
 
 
904
  struct sigaction old_sigterm_action;
 
905
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
 
906
 
 
907
  {
 
908
    struct argp_option options[] = {
 
909
      { .name = "debug", .key = 128,
 
910
        .doc = "Debug mode", .group = 3 },
 
911
      { .name = "connect", .key = 'c',
 
912
        .arg = "ADDRESS:PORT",
 
913
        .doc = "Connect directly to a specific Mandos server",
 
914
        .group = 1 },
 
915
      { .name = "interface", .key = 'i',
 
916
        .arg = "NAME",
 
917
        .doc = "Network interface that will be used to search for"
 
918
        " Mandos servers",
 
919
        .group = 1 },
 
920
      { .name = "seckey", .key = 's',
 
921
        .arg = "FILE",
 
922
        .doc = "OpenPGP secret key file base name",
 
923
        .group = 1 },
 
924
      { .name = "pubkey", .key = 'p',
 
925
        .arg = "FILE",
 
926
        .doc = "OpenPGP public key file base name",
 
927
        .group = 2 },
 
928
      { .name = "dh-bits", .key = 129,
 
929
        .arg = "BITS",
 
930
        .doc = "Bit length of the prime number used in the"
 
931
        " Diffie-Hellman key exchange",
 
932
        .group = 2 },
 
933
      { .name = "priority", .key = 130,
 
934
        .arg = "STRING",
 
935
        .doc = "GnuTLS priority string for the TLS handshake",
 
936
        .group = 1 },
 
937
      { .name = "delay", .key = 131,
 
938
        .arg = "SECONDS",
 
939
        .doc = "Maximum delay to wait for interface startup",
 
940
        .group = 2 },
 
941
      { .name = NULL }
 
942
    };
 
943
    
 
944
    error_t parse_opt(int key, char *arg,
 
945
                      struct argp_state *state){
 
946
      switch(key){
 
947
      case 128:                 /* --debug */
 
948
        debug = true;
 
949
        break;
 
950
      case 'c':                 /* --connect */
 
951
        connect_to = arg;
 
952
        break;
 
953
      case 'i':                 /* --interface */
 
954
        interface = arg;
 
955
        break;
 
956
      case 's':                 /* --seckey */
 
957
        seckey = arg;
 
958
        break;
 
959
      case 'p':                 /* --pubkey */
 
960
        pubkey = arg;
 
961
        break;
 
962
      case 129:                 /* --dh-bits */
 
963
        ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
964
        if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
 
965
           or arg[numchars] != '\0'){
 
966
          fprintf(stderr, "Bad number of DH bits\n");
 
967
          exit(EXIT_FAILURE);
 
968
        }
 
969
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
 
970
        break;
 
971
      case 130:                 /* --priority */
 
972
        mc.priority = arg;
 
973
        break;
 
974
      case 131:                 /* --delay */
 
975
        ret = sscanf(arg, "%lf%n", &delay, &numchars);
 
976
        if(ret < 1 or arg[numchars] != '\0'){
 
977
          fprintf(stderr, "Bad delay\n");
 
978
          exit(EXIT_FAILURE);
 
979
        }
 
980
        break;
 
981
      case ARGP_KEY_ARG:
 
982
        argp_usage(state);
 
983
      case ARGP_KEY_END:
 
984
        break;
 
985
      default:
 
986
        return ARGP_ERR_UNKNOWN;
 
987
      }
 
988
      return 0;
 
989
    }
 
990
    
 
991
    struct argp argp = { .options = options, .parser = parse_opt,
 
992
                         .args_doc = "",
 
993
                         .doc = "Mandos client -- Get and decrypt"
 
994
                         " passwords from a Mandos server" };
 
995
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
 
996
    if(ret == ARGP_ERR_UNKNOWN){
 
997
      fprintf(stderr, "Unknown error while parsing arguments\n");
 
998
      exitcode = EXIT_FAILURE;
 
999
      goto end;
 
1000
    }
 
1001
  }
 
1002
 
 
1003
  if(not debug){
 
1004
    avahi_set_log_function(empty_log);
 
1005
  }
 
1006
 
 
1007
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
 
1008
     from the signal handler */
 
1009
  /* Initialize the pseudo-RNG for Avahi */
 
1010
  srand((unsigned int) time(NULL));
 
1011
  mc.simple_poll = avahi_simple_poll_new();
 
1012
  if(mc.simple_poll == NULL){
 
1013
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
 
1014
    exitcode = EXIT_FAILURE;
 
1015
    goto end;
 
1016
  }
 
1017
 
 
1018
  sigemptyset(&sigterm_action.sa_mask);
 
1019
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
 
1020
  if(ret == -1){
 
1021
    perror("sigaddset");
 
1022
    exitcode = EXIT_FAILURE;
 
1023
    goto end;
 
1024
  }
 
1025
  ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
 
1026
  if(ret == -1){
 
1027
    perror("sigaction");
 
1028
    exitcode = EXIT_FAILURE;
 
1029
    goto end;
 
1030
  }  
 
1031
 
 
1032
  
 
1033
  /* If the interface is down, bring it up */
 
1034
  if(interface[0] != '\0'){
 
1035
#ifdef __linux__
 
1036
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
 
1037
       messages to mess up the prompt */
 
1038
    ret = klogctl(8, NULL, 5);
 
1039
    bool restore_loglevel = true;
 
1040
    if(ret == -1){
 
1041
      restore_loglevel = false;
 
1042
      perror("klogctl");
 
1043
    }
 
1044
#endif
 
1045
    
 
1046
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1047
    if(sd < 0){
 
1048
      perror("socket");
 
1049
      exitcode = EXIT_FAILURE;
 
1050
#ifdef __linux__
 
1051
      if(restore_loglevel){
 
1052
        ret = klogctl(7, NULL, 0);
 
1053
        if(ret == -1){
 
1054
          perror("klogctl");
 
1055
        }
 
1056
      }
 
1057
#endif
 
1058
      goto end;
 
1059
    }
 
1060
    strcpy(network.ifr_name, interface);
 
1061
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1062
    if(ret == -1){
 
1063
      perror("ioctl SIOCGIFFLAGS");
 
1064
#ifdef __linux__
 
1065
      if(restore_loglevel){
 
1066
        ret = klogctl(7, NULL, 0);
 
1067
        if(ret == -1){
 
1068
          perror("klogctl");
 
1069
        }
 
1070
      }
 
1071
#endif
 
1072
      exitcode = EXIT_FAILURE;
 
1073
      goto end;
 
1074
    }
 
1075
    if((network.ifr_flags & IFF_UP) == 0){
 
1076
      network.ifr_flags |= IFF_UP;
 
1077
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
1078
      if(ret == -1){
 
1079
        perror("ioctl SIOCSIFFLAGS");
 
1080
        exitcode = EXIT_FAILURE;
 
1081
#ifdef __linux__
 
1082
        if(restore_loglevel){
 
1083
          ret = klogctl(7, NULL, 0);
 
1084
          if(ret == -1){
 
1085
            perror("klogctl");
846
1086
          }
847
 
          break;
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;
855
 
        default:
856
 
          return ARGP_ERR_UNKNOWN;
857
1087
        }
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
 
      }
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
 
    }
886
 
 
887
 
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
888
 
    if (ret == -1){
889
 
      fprintf(stderr, "init_gnutls_global failed\n");
890
 
      exitcode = EXIT_FAILURE;
891
 
      goto end;
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 */
 
1088
#endif
 
1089
        goto end;
 
1090
      }
 
1091
    }
 
1092
    /* sleep checking until interface is running */
 
1093
    for(int i=0; i < delay * 4; i++){
905
1094
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
906
1095
      if(ret == -1){
907
1096
        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
 
    
923
 
    uid = getuid();
924
 
    gid = getgid();
925
 
    
926
 
    ret = setuid(uid);
927
 
    if (ret == -1){
928
 
      perror("setuid");
929
 
    }
930
 
    
931
 
    setgid(gid);
932
 
    if (ret == -1){
933
 
      perror("setgid");
934
 
    }
935
 
    
 
1097
      } else if(network.ifr_flags & IFF_RUNNING){
 
1098
        break;
 
1099
      }
 
1100
      struct timespec sleeptime = { .tv_nsec = 250000000 };
 
1101
      ret = nanosleep(&sleeptime, NULL);
 
1102
      if(ret == -1 and errno != EINTR){
 
1103
        perror("nanosleep");
 
1104
      }
 
1105
    }
 
1106
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1107
    if(ret == -1){
 
1108
      perror("close");
 
1109
    }
 
1110
#ifdef __linux__
 
1111
    if(restore_loglevel){
 
1112
      /* Restores kernel loglevel to default */
 
1113
      ret = klogctl(7, NULL, 0);
 
1114
      if(ret == -1){
 
1115
        perror("klogctl");
 
1116
      }
 
1117
    }
 
1118
#endif
 
1119
  }
 
1120
  
 
1121
  uid = getuid();
 
1122
  gid = getgid();
 
1123
  
 
1124
  errno = 0;
 
1125
  setgid(gid);
 
1126
  if(ret == -1){
 
1127
    perror("setgid");
 
1128
  }
 
1129
  
 
1130
  ret = setuid(uid);
 
1131
  if(ret == -1){
 
1132
    perror("setuid");
 
1133
  }
 
1134
  
 
1135
  ret = init_gnutls_global(pubkey, seckey);
 
1136
  if(ret == -1){
 
1137
    fprintf(stderr, "init_gnutls_global failed\n");
 
1138
    exitcode = EXIT_FAILURE;
 
1139
    goto end;
 
1140
  } else {
 
1141
    gnutls_initialized = true;
 
1142
  }
 
1143
  
 
1144
  if(mkdtemp(tempdir) == NULL){
 
1145
    perror("mkdtemp");
 
1146
    goto end;
 
1147
  }
 
1148
  tempdir_created = true;
 
1149
  
 
1150
  if(not init_gpgme(pubkey, seckey, tempdir)){
 
1151
    fprintf(stderr, "init_gpgme failed\n");
 
1152
    exitcode = EXIT_FAILURE;
 
1153
    goto end;
 
1154
  } else {
 
1155
    gpgme_initialized = true;
 
1156
  }
 
1157
  
 
1158
  if(interface[0] != '\0'){
936
1159
    if_index = (AvahiIfIndex) if_nametoindex(interface);
937
1160
    if(if_index == 0){
938
1161
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
939
 
      exit(EXIT_FAILURE);
940
 
    }
941
 
    
942
 
    if(connect_to != NULL){
943
 
      /* Connect directly, do not use Zeroconf */
944
 
      /* (Mainly meant for debugging) */
945
 
      char *address = strrchr(connect_to, ':');
946
 
      if(address == NULL){
947
 
        fprintf(stderr, "No colon in address\n");
948
 
        exitcode = EXIT_FAILURE;
949
 
        goto end;
950
 
      }
951
 
      errno = 0;
952
 
      uint16_t port = (uint16_t) strtol(address+1, NULL, 10);
953
 
      if(errno){
954
 
        perror("Bad port number");
955
 
        exitcode = EXIT_FAILURE;
956
 
        goto end;
957
 
      }
958
 
      *address = '\0';
959
 
      address = connect_to;
960
 
      ret = start_mandos_communication(address, port, if_index, &mc);
961
 
      if(ret < 0){
962
 
        exitcode = EXIT_FAILURE;
963
 
      } else {
964
 
        exitcode = EXIT_SUCCESS;
965
 
      }
966
 
      goto end;
967
 
    }
968
 
    
969
 
    if (not debug){
970
 
      avahi_set_log_function(empty_log);
971
 
    }
972
 
    
973
 
    /* Initialize the pseudo-RNG for Avahi */
974
 
    srand((unsigned int) time(NULL));
975
 
    
976
 
    /* Allocate main Avahi loop object */
977
 
    mc.simple_poll = avahi_simple_poll_new();
978
 
    if (mc.simple_poll == NULL) {
979
 
        fprintf(stderr, "Avahi: Failed to create simple poll"
980
 
                " object.\n");
981
 
        exitcode = EXIT_FAILURE;
982
 
        goto end;
983
 
    }
984
 
 
985
 
    {
986
 
      AvahiServerConfig config;
987
 
      /* Do not publish any local Zeroconf records */
988
 
      avahi_server_config_init(&config);
989
 
      config.publish_hinfo = 0;
990
 
      config.publish_addresses = 0;
991
 
      config.publish_workstation = 0;
992
 
      config.publish_domain = 0;
993
 
 
994
 
      /* Allocate a new server */
995
 
      mc.server = avahi_server_new(avahi_simple_poll_get
996
 
                                   (mc.simple_poll), &config, NULL,
997
 
                                   NULL, &error);
998
 
    
999
 
      /* Free the Avahi configuration data */
1000
 
      avahi_server_config_free(&config);
1001
 
    }
1002
 
    
1003
 
    /* Check if creating the Avahi server object succeeded */
1004
 
    if (mc.server == NULL) {
1005
 
        fprintf(stderr, "Failed to create Avahi server: %s\n",
1006
 
                avahi_strerror(error));
1007
 
        exitcode = EXIT_FAILURE;
1008
 
        goto end;
1009
 
    }
1010
 
    
1011
 
    /* Create the Avahi service browser */
1012
 
    sb = avahi_s_service_browser_new(mc.server, if_index,
1013
 
                                     AVAHI_PROTO_INET6,
1014
 
                                     "_mandos._tcp", NULL, 0,
1015
 
                                     browse_callback, &mc);
1016
 
    if (sb == NULL) {
1017
 
        fprintf(stderr, "Failed to create service browser: %s\n",
1018
 
                avahi_strerror(avahi_server_errno(mc.server)));
1019
 
        exitcode = EXIT_FAILURE;
1020
 
        goto end;
1021
 
    }
1022
 
    
1023
 
    /* Run the main loop */
1024
 
 
1025
 
    if (debug){
1026
 
      fprintf(stderr, "Starting Avahi loop search\n");
1027
 
    }
1028
 
    
1029
 
    avahi_simple_poll_loop(mc.simple_poll);
1030
 
    
 
1162
      exitcode = EXIT_FAILURE;
 
1163
      goto end;
 
1164
    }
 
1165
  }
 
1166
  
 
1167
  if(connect_to != NULL){
 
1168
    /* Connect directly, do not use Zeroconf */
 
1169
    /* (Mainly meant for debugging) */
 
1170
    char *address = strrchr(connect_to, ':');
 
1171
    if(address == NULL){
 
1172
      fprintf(stderr, "No colon in address\n");
 
1173
      exitcode = EXIT_FAILURE;
 
1174
      goto end;
 
1175
    }
 
1176
    uint16_t port;
 
1177
    ret = sscanf(address+1, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
1178
    if(ret < 1 or tmpmax != (uint16_t)tmpmax
 
1179
       or address[numchars+1] != '\0'){
 
1180
      fprintf(stderr, "Bad port number\n");
 
1181
      exitcode = EXIT_FAILURE;
 
1182
      goto end;
 
1183
    }
 
1184
    port = (uint16_t)tmpmax;
 
1185
    *address = '\0';
 
1186
    address = connect_to;
 
1187
    /* Colon in address indicates IPv6 */
 
1188
    int af;
 
1189
    if(strchr(address, ':') != NULL){
 
1190
      af = AF_INET6;
 
1191
    } else {
 
1192
      af = AF_INET;
 
1193
    }
 
1194
    ret = start_mandos_communication(address, port, if_index,
 
1195
                                     af);
 
1196
    if(ret < 0){
 
1197
      exitcode = EXIT_FAILURE;
 
1198
    } else {
 
1199
      exitcode = EXIT_SUCCESS;
 
1200
    }
 
1201
    goto end;
 
1202
  }
 
1203
    
 
1204
  {
 
1205
    AvahiServerConfig config;
 
1206
    /* Do not publish any local Zeroconf records */
 
1207
    avahi_server_config_init(&config);
 
1208
    config.publish_hinfo = 0;
 
1209
    config.publish_addresses = 0;
 
1210
    config.publish_workstation = 0;
 
1211
    config.publish_domain = 0;
 
1212
    
 
1213
    /* Allocate a new server */
 
1214
    mc.server = avahi_server_new(avahi_simple_poll_get
 
1215
                                 (mc.simple_poll), &config, NULL,
 
1216
                                 NULL, &error);
 
1217
    
 
1218
    /* Free the Avahi configuration data */
 
1219
    avahi_server_config_free(&config);
 
1220
  }
 
1221
  
 
1222
  /* Check if creating the Avahi server object succeeded */
 
1223
  if(mc.server == NULL){
 
1224
    fprintf(stderr, "Failed to create Avahi server: %s\n",
 
1225
            avahi_strerror(error));
 
1226
    exitcode = EXIT_FAILURE;
 
1227
    goto end;
 
1228
  }
 
1229
  
 
1230
  /* Create the Avahi service browser */
 
1231
  sb = avahi_s_service_browser_new(mc.server, if_index,
 
1232
                                   AVAHI_PROTO_INET6, "_mandos._tcp",
 
1233
                                   NULL, 0, browse_callback, NULL);
 
1234
  if(sb == NULL){
 
1235
    fprintf(stderr, "Failed to create service browser: %s\n",
 
1236
            avahi_strerror(avahi_server_errno(mc.server)));
 
1237
    exitcode = EXIT_FAILURE;
 
1238
    goto end;
 
1239
  }
 
1240
  
 
1241
  /* Run the main loop */
 
1242
  
 
1243
  if(debug){
 
1244
    fprintf(stderr, "Starting Avahi loop search\n");
 
1245
  }
 
1246
  
 
1247
  avahi_simple_poll_loop(mc.simple_poll);
 
1248
  
1031
1249
 end:
1032
 
 
1033
 
    if (debug){
1034
 
      fprintf(stderr, "%s exiting\n", argv[0]);
1035
 
    }
1036
 
    
1037
 
    /* Cleanup things */
1038
 
    if (sb != NULL)
1039
 
        avahi_s_service_browser_free(sb);
1040
 
    
1041
 
    if (mc.server != NULL)
1042
 
        avahi_server_free(mc.server);
1043
 
 
1044
 
    if (mc.simple_poll != NULL)
1045
 
        avahi_simple_poll_free(mc.simple_poll);
1046
 
    free(pubkeyfile);
1047
 
    free(seckeyfile);
1048
 
 
1049
 
    if (gnutls_initalized){
1050
 
      gnutls_certificate_free_credentials(mc.cred);
1051
 
      gnutls_global_deinit ();
1052
 
    }
1053
 
    
1054
 
    return exitcode;
 
1250
  
 
1251
  if(debug){
 
1252
    fprintf(stderr, "%s exiting\n", argv[0]);
 
1253
  }
 
1254
  
 
1255
  /* Cleanup things */
 
1256
  if(sb != NULL)
 
1257
    avahi_s_service_browser_free(sb);
 
1258
  
 
1259
  if(mc.server != NULL)
 
1260
    avahi_server_free(mc.server);
 
1261
  
 
1262
  if(mc.simple_poll != NULL)
 
1263
    avahi_simple_poll_free(mc.simple_poll);
 
1264
  
 
1265
  if(gnutls_initialized){
 
1266
    gnutls_certificate_free_credentials(mc.cred);
 
1267
    gnutls_global_deinit();
 
1268
    gnutls_dh_params_deinit(mc.dh_params);
 
1269
  }
 
1270
  
 
1271
  if(gpgme_initialized){
 
1272
    gpgme_release(mc.ctx);
 
1273
  }
 
1274
  
 
1275
  /* Removes the temp directory used by GPGME */
 
1276
  if(tempdir_created){
 
1277
    DIR *d;
 
1278
    struct dirent *direntry;
 
1279
    d = opendir(tempdir);
 
1280
    if(d == NULL){
 
1281
      if(errno != ENOENT){
 
1282
        perror("opendir");
 
1283
      }
 
1284
    } else {
 
1285
      while(true){
 
1286
        direntry = readdir(d);
 
1287
        if(direntry == NULL){
 
1288
          break;
 
1289
        }
 
1290
        /* Skip "." and ".." */
 
1291
        if(direntry->d_name[0] == '.'
 
1292
           and (direntry->d_name[1] == '\0'
 
1293
                or (direntry->d_name[1] == '.'
 
1294
                    and direntry->d_name[2] == '\0'))){
 
1295
          continue;
 
1296
        }
 
1297
        char *fullname = NULL;
 
1298
        ret = asprintf(&fullname, "%s/%s", tempdir,
 
1299
                       direntry->d_name);
 
1300
        if(ret < 0){
 
1301
          perror("asprintf");
 
1302
          continue;
 
1303
        }
 
1304
        ret = remove(fullname);
 
1305
        if(ret == -1){
 
1306
          fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
 
1307
                  strerror(errno));
 
1308
        }
 
1309
        free(fullname);
 
1310
      }
 
1311
      closedir(d);
 
1312
    }
 
1313
    ret = rmdir(tempdir);
 
1314
    if(ret == -1 and errno != ENOENT){
 
1315
      perror("rmdir");
 
1316
    }
 
1317
  }
 
1318
  
 
1319
  return exitcode;
1055
1320
}