/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

  • Committer: Teddy Hogeborn
  • Date: 2009-01-31 10:33:17 UTC
  • mfrom: (24.1.129 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20090131103317-wzqvyr532sjcjt7u
Merge from Björn:

* mandos-ctl: New option "--remove-client".  Only default to listing
              clients if no clients were given on the command line.
* plugins.d/mandos-client.c: Lower kernel log level while bringing up
                             network interface.  New option "--delay"
                             to control the maximum delay to wait for
                             running interface.
* plugins.d/mandos-client.xml (SYNOPSIS, OPTIONS): New option
                                                   "--delay".

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