/mandos/release

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

« back to all changes in this revision

Viewing changes to plugins.d/password-request.c

  • Committer: Teddy Hogeborn
  • Date: 2008-08-18 23:55:28 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080818235528-dn628nlbrtzl7z4f
* Makefile: Bug fix: fixed creation of man pages for section 5 pages.

* mandos (main): Changed from requiring "[server]" in mandos.conf(5)
                 to requiring "[DEFAULT]".

* mandos.conf ([server]): Renamed to "[DEFAULT]".

* mandos.conf.xml: Removed <?xml-stylesheet>.  New entity "&OVERVIEW;"
                   referring to "overview.xml".
  (DESCRIPTION): Updated to specify the syntax more precisely.  Use
                 <varname> around the option names.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#define _LARGEFILE_SOURCE
33
33
#define _FILE_OFFSET_BITS 64
34
34
 
35
 
#include <stdio.h>
36
 
#include <assert.h>
37
 
#include <stdlib.h>
38
 
#include <time.h>
39
 
#include <net/if.h>             /* if_nametoindex */
40
 
 
 
35
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
 
36
 
 
37
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
 
38
                                   stdout, ferror() */
 
39
#include <stdint.h>             /* uint16_t, uint32_t */
 
40
#include <stddef.h>             /* NULL, size_t, ssize_t */
 
41
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
 
42
                                   srand() */
 
43
#include <stdbool.h>            /* bool, true */
 
44
#include <string.h>             /* memset(), strcmp(), strlen(),
 
45
                                   strerror(), asprintf(), strcpy() */
 
46
#include <sys/ioctl.h>          /* ioctl */
 
47
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
 
48
                                   sockaddr_in6, PF_INET6,
 
49
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
 
50
                                   uid_t, gid_t */
 
51
#include <inttypes.h>           /* PRIu16 */
 
52
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
 
53
                                   struct in6_addr, inet_pton(),
 
54
                                   connect() */
 
55
#include <assert.h>             /* assert() */
 
56
#include <errno.h>              /* perror(), errno */
 
57
#include <time.h>               /* time() */
 
58
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
 
59
                                   SIOCSIFFLAGS, if_indextoname(),
 
60
                                   if_nametoindex(), IF_NAMESIZE */
 
61
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
 
62
                                   getuid(), getgid(), setuid(),
 
63
                                   setgid() */
 
64
#include <netinet/in.h>
 
65
#include <arpa/inet.h>          /* inet_pton(), htons */
 
66
#include <iso646.h>             /* not, and */
 
67
#include <argp.h>               /* struct argp_option, error_t, struct
 
68
                                   argp_state, struct argp,
 
69
                                   argp_parse(), ARGP_KEY_ARG,
 
70
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
 
71
 
 
72
/* Avahi */
 
73
/* All Avahi types, constants and functions
 
74
 Avahi*, avahi_*,
 
75
 AVAHI_* */
41
76
#include <avahi-core/core.h>
42
77
#include <avahi-core/lookup.h>
43
78
#include <avahi-core/log.h>
45
80
#include <avahi-common/malloc.h>
46
81
#include <avahi-common/error.h>
47
82
 
48
 
//mandos client part
49
 
#include <sys/types.h>          /* socket(), inet_pton() */
50
 
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
51
 
                                   struct in6_addr, inet_pton() */
52
 
#include <gnutls/gnutls.h>      /* All GnuTLS stuff */
53
 
#include <gnutls/openpgp.h>     /* GnuTLS with openpgp stuff */
54
 
 
55
 
#include <unistd.h>             /* close() */
56
 
#include <netinet/in.h>
57
 
#include <stdbool.h>            /* true */
58
 
#include <string.h>             /* memset */
59
 
#include <arpa/inet.h>          /* inet_pton() */
60
 
#include <iso646.h>             /* not */
61
 
 
62
 
// gpgme
63
 
#include <errno.h>              /* perror() */
64
 
#include <gpgme.h>
65
 
 
66
 
// getopt_long
67
 
#include <getopt.h>
 
83
/* GnuTLS */
 
84
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and
 
85
                                   functions:
 
86
                                   gnutls_*
 
87
                                   init_gnutls_session(),
 
88
                                   GNUTLS_* */
 
89
#include <gnutls/openpgp.h>     /* gnutls_certificate_set_openpgp_key_file(),
 
90
                                   GNUTLS_OPENPGP_FMT_BASE64 */
 
91
 
 
92
/* GPGME */
 
93
#include <gpgme.h>              /* All GPGME types, constants and
 
94
                                   functions:
 
95
                                   gpgme_*
 
96
                                   GPGME_PROTOCOL_OpenPGP,
 
97
                                   GPG_ERR_NO_* */
68
98
 
69
99
#define BUFFER_SIZE 256
70
100
 
71
 
static int dh_bits = 1024;
72
 
 
 
101
bool debug = false;
73
102
static const char *keydir = "/conf/conf.d/mandos";
74
 
static const char *pubkeyfile = "pubkey.txt";
75
 
static const char *seckeyfile = "seckey.txt";
76
 
 
77
 
bool debug = false;
78
 
 
79
 
/* Used for  */
 
103
static const char mandos_protocol_version[] = "1";
 
104
const char *argp_program_version = "password-request 1.0";
 
105
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
106
 
 
107
/* Used for passing in values through the Avahi callback functions */
80
108
typedef struct {
81
 
  gnutls_session_t session;
 
109
  AvahiSimplePoll *simple_poll;
 
110
  AvahiServer *server;
82
111
  gnutls_certificate_credentials_t cred;
 
112
  unsigned int dh_bits;
83
113
  gnutls_dh_params_t dh_params;
84
 
} encrypted_session;
85
 
 
86
 
 
87
 
static ssize_t pgp_packet_decrypt (char *packet, size_t packet_size,
88
 
                                   char **new_packet,
 
114
  const char *priority;
 
115
} mandos_context;
 
116
 
 
117
/*
 
118
 * Make room in "buffer" for at least BUFFER_SIZE additional bytes.
 
119
 * "buffer_capacity" is how much is currently allocated,
 
120
 * "buffer_length" is how much is already used.
 
121
 */
 
122
size_t adjustbuffer(char **buffer, size_t buffer_length,
 
123
                  size_t buffer_capacity){
 
124
  if (buffer_length + BUFFER_SIZE > buffer_capacity){
 
125
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
 
126
    if (buffer == NULL){
 
127
      return 0;
 
128
    }
 
129
    buffer_capacity += BUFFER_SIZE;
 
130
  }
 
131
  return buffer_capacity;
 
132
}
 
133
 
 
134
/* 
 
135
 * Decrypt OpenPGP data using keyrings in HOMEDIR.
 
136
 * Returns -1 on error
 
137
 */
 
138
static ssize_t pgp_packet_decrypt (const char *cryptotext,
 
139
                                   size_t crypto_size,
 
140
                                   char **plaintext,
89
141
                                   const char *homedir){
90
142
  gpgme_data_t dh_crypto, dh_plain;
91
143
  gpgme_ctx_t ctx;
92
144
  gpgme_error_t rc;
93
145
  ssize_t ret;
94
 
  ssize_t new_packet_capacity = 0;
95
 
  ssize_t new_packet_length = 0;
 
146
  size_t plaintext_capacity = 0;
 
147
  ssize_t plaintext_length = 0;
96
148
  gpgme_engine_info_t engine_info;
97
 
 
 
149
  
98
150
  if (debug){
99
 
    fprintf(stderr, "Trying to decrypt OpenPGP packet\n");
 
151
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
100
152
  }
101
153
  
102
154
  /* Init GPGME */
108
160
    return -1;
109
161
  }
110
162
  
111
 
  /* Set GPGME home directory */
 
163
  /* Set GPGME home directory for the OpenPGP engine only */
112
164
  rc = gpgme_get_engine_info (&engine_info);
113
165
  if (rc != GPG_ERR_NO_ERROR){
114
166
    fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
124
176
    engine_info = engine_info->next;
125
177
  }
126
178
  if(engine_info == NULL){
127
 
    fprintf(stderr, "Could not set home dir to %s\n", homedir);
 
179
    fprintf(stderr, "Could not set GPGME home dir to %s\n", homedir);
128
180
    return -1;
129
181
  }
130
182
  
131
 
  /* Create new GPGME data buffer from packet buffer */
132
 
  rc = gpgme_data_new_from_mem(&dh_crypto, packet, packet_size, 0);
 
183
  /* Create new GPGME data buffer from memory cryptotext */
 
184
  rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
 
185
                               0);
133
186
  if (rc != GPG_ERR_NO_ERROR){
134
187
    fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
135
188
            gpgme_strsource(rc), gpgme_strerror(rc));
141
194
  if (rc != GPG_ERR_NO_ERROR){
142
195
    fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
143
196
            gpgme_strsource(rc), gpgme_strerror(rc));
 
197
    gpgme_data_release(dh_crypto);
144
198
    return -1;
145
199
  }
146
200
  
149
203
  if (rc != GPG_ERR_NO_ERROR){
150
204
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
151
205
            gpgme_strsource(rc), gpgme_strerror(rc));
152
 
    return -1;
 
206
    plaintext_length = -1;
 
207
    goto decrypt_end;
153
208
  }
154
209
  
155
 
  /* Decrypt data from the FILE pointer to the plaintext data
156
 
     buffer */
 
210
  /* Decrypt data from the cryptotext data buffer to the plaintext
 
211
     data buffer */
157
212
  rc = gpgme_op_decrypt(ctx, dh_crypto, dh_plain);
158
213
  if (rc != GPG_ERR_NO_ERROR){
159
214
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
160
215
            gpgme_strsource(rc), gpgme_strerror(rc));
161
 
    return -1;
 
216
    plaintext_length = -1;
 
217
    goto decrypt_end;
162
218
  }
163
 
 
 
219
  
164
220
  if(debug){
165
 
    fprintf(stderr, "Decryption of OpenPGP packet succeeded\n");
 
221
    fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
166
222
  }
167
 
 
 
223
  
168
224
  if (debug){
169
225
    gpgme_decrypt_result_t result;
170
226
    result = gpgme_op_decrypt_result(ctx);
173
229
    } else {
174
230
      fprintf(stderr, "Unsupported algorithm: %s\n",
175
231
              result->unsupported_algorithm);
176
 
      fprintf(stderr, "Wrong key usage: %d\n",
 
232
      fprintf(stderr, "Wrong key usage: %u\n",
177
233
              result->wrong_key_usage);
178
234
      if(result->file_name != NULL){
179
235
        fprintf(stderr, "File name: %s\n", result->file_name);
194
250
    }
195
251
  }
196
252
  
197
 
  /* Delete the GPGME FILE pointer cryptotext data buffer */
198
 
  gpgme_data_release(dh_crypto);
199
 
  
200
253
  /* Seek back to the beginning of the GPGME plaintext data buffer */
201
254
  if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
202
255
    perror("pgpme_data_seek");
 
256
    plaintext_length = -1;
 
257
    goto decrypt_end;
203
258
  }
204
259
  
205
 
  *new_packet = 0;
 
260
  *plaintext = NULL;
206
261
  while(true){
207
 
    if (new_packet_length + BUFFER_SIZE > new_packet_capacity){
208
 
      *new_packet = realloc(*new_packet,
209
 
                            (unsigned int)new_packet_capacity
210
 
                            + BUFFER_SIZE);
211
 
      if (*new_packet == NULL){
212
 
        perror("realloc");
213
 
        return -1;
214
 
      }
215
 
      new_packet_capacity += BUFFER_SIZE;
 
262
    plaintext_capacity = adjustbuffer(plaintext,
 
263
                                      (size_t)plaintext_length,
 
264
                                      plaintext_capacity);
 
265
    if (plaintext_capacity == 0){
 
266
        perror("adjustbuffer");
 
267
        plaintext_length = -1;
 
268
        goto decrypt_end;
216
269
    }
217
270
    
218
 
    ret = gpgme_data_read(dh_plain, *new_packet + new_packet_length,
 
271
    ret = gpgme_data_read(dh_plain, *plaintext + plaintext_length,
219
272
                          BUFFER_SIZE);
220
273
    /* Print the data, if any */
221
274
    if (ret == 0){
 
275
      /* EOF */
222
276
      break;
223
277
    }
224
278
    if(ret < 0){
225
279
      perror("gpgme_data_read");
226
 
      return -1;
 
280
      plaintext_length = -1;
 
281
      goto decrypt_end;
227
282
    }
228
 
    new_packet_length += ret;
 
283
    plaintext_length += ret;
229
284
  }
230
285
 
231
 
  /* FIXME: check characters before printing to screen so to not print
232
 
     terminal control characters */
233
 
  /*   if(debug){ */
234
 
  /*     fprintf(stderr, "decrypted password is: "); */
235
 
  /*     fwrite(*new_packet, 1, new_packet_length, stderr); */
236
 
  /*     fprintf(stderr, "\n"); */
237
 
  /*   } */
 
286
  if(debug){
 
287
    fprintf(stderr, "Decrypted password is: ");
 
288
    for(ssize_t i = 0; i < plaintext_length; i++){
 
289
      fprintf(stderr, "%02hhX ", (*plaintext)[i]);
 
290
    }
 
291
    fprintf(stderr, "\n");
 
292
  }
 
293
  
 
294
 decrypt_end:
 
295
  
 
296
  /* Delete the GPGME cryptotext data buffer */
 
297
  gpgme_data_release(dh_crypto);
238
298
  
239
299
  /* Delete the GPGME plaintext data buffer */
240
300
  gpgme_data_release(dh_plain);
241
 
  return new_packet_length;
 
301
  return plaintext_length;
242
302
}
243
303
 
244
304
static const char * safer_gnutls_strerror (int value) {
245
 
  const char *ret = gnutls_strerror (value);
 
305
  const char *ret = gnutls_strerror (value); /* Spurious warning */
246
306
  if (ret == NULL)
247
307
    ret = "(unknown)";
248
308
  return ret;
249
309
}
250
310
 
 
311
/* GnuTLS log function callback */
251
312
static void debuggnutls(__attribute__((unused)) int level,
252
313
                        const char* string){
253
 
  fprintf(stderr, "%s", string);
 
314
  fprintf(stderr, "GnuTLS: %s", string);
254
315
}
255
316
 
256
 
static int initgnutls(encrypted_session *es){
257
 
  const char *err;
 
317
static int init_gnutls_global(mandos_context *mc,
 
318
                              const char *pubkeyfilename,
 
319
                              const char *seckeyfilename){
258
320
  int ret;
259
321
  
260
322
  if(debug){
261
323
    fprintf(stderr, "Initializing GnuTLS\n");
262
324
  }
263
 
 
264
 
  if ((ret = gnutls_global_init ())
265
 
      != GNUTLS_E_SUCCESS) {
266
 
    fprintf (stderr, "global_init: %s\n", safer_gnutls_strerror(ret));
 
325
  
 
326
  ret = gnutls_global_init();
 
327
  if (ret != GNUTLS_E_SUCCESS) {
 
328
    fprintf (stderr, "GnuTLS global_init: %s\n",
 
329
             safer_gnutls_strerror(ret));
267
330
    return -1;
268
331
  }
269
 
 
 
332
  
270
333
  if (debug){
 
334
    /* "Use a log level over 10 to enable all debugging options."
 
335
     * - GnuTLS manual
 
336
     */
271
337
    gnutls_global_set_log_level(11);
272
338
    gnutls_global_set_log_function(debuggnutls);
273
339
  }
274
340
  
275
 
  /* openpgp credentials */
276
 
  if ((ret = gnutls_certificate_allocate_credentials (&es->cred))
277
 
      != GNUTLS_E_SUCCESS) {
278
 
    fprintf (stderr, "memory error: %s\n",
 
341
  /* OpenPGP credentials */
 
342
  gnutls_certificate_allocate_credentials(&mc->cred);
 
343
  if (ret != GNUTLS_E_SUCCESS){
 
344
    fprintf (stderr, "GnuTLS memory error: %s\n", /* Spurious
 
345
                                                     warning */
279
346
             safer_gnutls_strerror(ret));
 
347
    gnutls_global_deinit ();
280
348
    return -1;
281
349
  }
282
350
  
283
351
  if(debug){
284
352
    fprintf(stderr, "Attempting to use OpenPGP certificate %s"
285
 
            " and keyfile %s as GnuTLS credentials\n", pubkeyfile,
286
 
            seckeyfile);
 
353
            " and keyfile %s as GnuTLS credentials\n", pubkeyfilename,
 
354
            seckeyfilename);
287
355
  }
288
356
  
289
357
  ret = gnutls_certificate_set_openpgp_key_file
290
 
    (es->cred, pubkeyfile, seckeyfile, GNUTLS_OPENPGP_FMT_BASE64);
 
358
    (mc->cred, pubkeyfilename, seckeyfilename,
 
359
     GNUTLS_OPENPGP_FMT_BASE64);
291
360
  if (ret != GNUTLS_E_SUCCESS) {
292
 
    fprintf
293
 
      (stderr, "Error[%d] while reading the OpenPGP key pair ('%s',"
294
 
       " '%s')\n",
295
 
       ret, pubkeyfile, seckeyfile);
296
 
    fprintf(stdout, "The Error is: %s\n",
 
361
    fprintf(stderr,
 
362
            "Error[%d] while reading the OpenPGP key pair ('%s',"
 
363
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
364
    fprintf(stdout, "The GnuTLS error is: %s\n",
297
365
            safer_gnutls_strerror(ret));
298
 
    return -1;
299
 
  }
300
 
  
301
 
  //GnuTLS server initialization
302
 
  if ((ret = gnutls_dh_params_init (&es->dh_params))
303
 
      != GNUTLS_E_SUCCESS) {
304
 
    fprintf (stderr, "Error in dh parameter initialization: %s\n",
305
 
             safer_gnutls_strerror(ret));
306
 
    return -1;
307
 
  }
308
 
  
309
 
  if ((ret = gnutls_dh_params_generate2 (es->dh_params, dh_bits))
310
 
      != GNUTLS_E_SUCCESS) {
311
 
    fprintf (stderr, "Error in prime generation: %s\n",
312
 
             safer_gnutls_strerror(ret));
313
 
    return -1;
314
 
  }
315
 
  
316
 
  gnutls_certificate_set_dh_params (es->cred, es->dh_params);
317
 
  
318
 
  // GnuTLS session creation
319
 
  if ((ret = gnutls_init (&es->session, GNUTLS_SERVER))
320
 
      != GNUTLS_E_SUCCESS){
 
366
    goto globalfail;
 
367
  }
 
368
  
 
369
  /* GnuTLS server initialization */
 
370
  ret = gnutls_dh_params_init(&mc->dh_params);
 
371
  if (ret != GNUTLS_E_SUCCESS) {
 
372
    fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
 
373
             " %s\n", safer_gnutls_strerror(ret));
 
374
    goto globalfail;
 
375
  }
 
376
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
 
377
  if (ret != GNUTLS_E_SUCCESS) {
 
378
    fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
 
379
             safer_gnutls_strerror(ret));
 
380
    goto globalfail;
 
381
  }
 
382
  
 
383
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
 
384
 
 
385
  return 0;
 
386
 
 
387
 globalfail:
 
388
 
 
389
  gnutls_certificate_free_credentials(mc->cred);
 
390
  gnutls_global_deinit();
 
391
  return -1;
 
392
 
 
393
}
 
394
 
 
395
static int init_gnutls_session(mandos_context *mc,
 
396
                               gnutls_session_t *session){
 
397
  int ret;
 
398
  /* GnuTLS session creation */
 
399
  ret = gnutls_init(session, GNUTLS_SERVER);
 
400
  if (ret != GNUTLS_E_SUCCESS){
321
401
    fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
322
402
            safer_gnutls_strerror(ret));
323
403
  }
324
404
  
325
 
  if ((ret = gnutls_priority_set_direct (es->session, "NORMAL", &err))
326
 
      != GNUTLS_E_SUCCESS) {
327
 
    fprintf(stderr, "Syntax error at: %s\n", err);
328
 
    fprintf(stderr, "GnuTLS error: %s\n",
329
 
            safer_gnutls_strerror(ret));
330
 
    return -1;
 
405
  {
 
406
    const char *err;
 
407
    ret = gnutls_priority_set_direct(*session, mc->priority, &err);
 
408
    if (ret != GNUTLS_E_SUCCESS) {
 
409
      fprintf(stderr, "Syntax error at: %s\n", err);
 
410
      fprintf(stderr, "GnuTLS error: %s\n",
 
411
              safer_gnutls_strerror(ret));
 
412
      gnutls_deinit (*session);
 
413
      return -1;
 
414
    }
331
415
  }
332
416
  
333
 
  if ((ret = gnutls_credentials_set
334
 
       (es->session, GNUTLS_CRD_CERTIFICATE, es->cred))
335
 
      != GNUTLS_E_SUCCESS) {
336
 
    fprintf(stderr, "Error setting a credentials set: %s\n",
 
417
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
 
418
                               mc->cred);
 
419
  if (ret != GNUTLS_E_SUCCESS) {
 
420
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
337
421
            safer_gnutls_strerror(ret));
 
422
    gnutls_deinit (*session);
338
423
    return -1;
339
424
  }
340
425
  
341
426
  /* ignore client certificate if any. */
342
 
  gnutls_certificate_server_set_request (es->session,
 
427
  gnutls_certificate_server_set_request (*session,
343
428
                                         GNUTLS_CERT_IGNORE);
344
429
  
345
 
  gnutls_dh_set_prime_bits (es->session, dh_bits);
 
430
  gnutls_dh_set_prime_bits (*session, mc->dh_bits);
346
431
  
347
432
  return 0;
348
433
}
349
434
 
 
435
/* Avahi log function callback */
350
436
static void empty_log(__attribute__((unused)) AvahiLogLevel level,
351
437
                      __attribute__((unused)) const char *txt){}
352
438
 
 
439
/* Called when a Mandos server is found */
353
440
static int start_mandos_communication(const char *ip, uint16_t port,
354
 
                                      AvahiIfIndex if_index){
 
441
                                      AvahiIfIndex if_index,
 
442
                                      mandos_context *mc){
355
443
  int ret, tcp_sd;
356
 
  struct sockaddr_in6 to;
357
 
  encrypted_session es;
 
444
  union { struct sockaddr in; struct sockaddr_in6 in6; } to;
358
445
  char *buffer = NULL;
359
446
  char *decrypted_buffer;
360
447
  size_t buffer_length = 0;
361
448
  size_t buffer_capacity = 0;
362
449
  ssize_t decrypted_buffer_size;
363
 
  size_t written = 0;
 
450
  size_t written;
364
451
  int retval = 0;
365
452
  char interface[IF_NAMESIZE];
 
453
  gnutls_session_t session;
 
454
  
 
455
  ret = init_gnutls_session (mc, &session);
 
456
  if (ret != 0){
 
457
    return -1;
 
458
  }
366
459
  
367
460
  if(debug){
368
 
    fprintf(stderr, "Setting up a tcp connection to %s, port %d\n",
369
 
            ip, port);
 
461
    fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
 
462
            "\n", ip, port);
370
463
  }
371
464
  
372
465
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
374
467
    perror("socket");
375
468
    return -1;
376
469
  }
377
 
  
378
 
  if(if_indextoname((unsigned int)if_index, interface) == NULL){
379
 
    if(debug){
 
470
 
 
471
  if(debug){
 
472
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
380
473
      perror("if_indextoname");
 
474
      return -1;
381
475
    }
382
 
    return -1;
383
 
  }
384
 
  
385
 
  if(debug){
386
476
    fprintf(stderr, "Binding to interface %s\n", interface);
387
477
  }
388
478
  
389
 
  memset(&to,0,sizeof(to));     /* Spurious warning */
390
 
  to.sin6_family = AF_INET6;
391
 
  ret = inet_pton(AF_INET6, ip, &to.sin6_addr);
 
479
  memset(&to, 0, sizeof(to));
 
480
  to.in6.sin6_family = AF_INET6;
 
481
  /* It would be nice to have a way to detect if we were passed an
 
482
     IPv4 address here.   Now we assume an IPv6 address. */
 
483
  ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
392
484
  if (ret < 0 ){
393
485
    perror("inet_pton");
394
486
    return -1;
395
 
  }  
 
487
  }
396
488
  if(ret == 0){
397
489
    fprintf(stderr, "Bad address: %s\n", ip);
398
490
    return -1;
399
491
  }
400
 
  to.sin6_port = htons(port);   /* Spurious warning */
 
492
  to.in6.sin6_port = htons(port); /* Spurious warning */
401
493
  
402
 
  to.sin6_scope_id = (uint32_t)if_index;
 
494
  to.in6.sin6_scope_id = (uint32_t)if_index;
403
495
  
404
496
  if(debug){
405
 
    fprintf(stderr, "Connection to: %s, port %d\n", ip, port);
 
497
    fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
 
498
            port);
406
499
    char addrstr[INET6_ADDRSTRLEN] = "";
407
 
    if(inet_ntop(to.sin6_family, &(to.sin6_addr), addrstr,
 
500
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
408
501
                 sizeof(addrstr)) == NULL){
409
502
      perror("inet_ntop");
410
503
    } else {
411
504
      if(strcmp(addrstr, ip) != 0){
412
 
        fprintf(stderr, "Canonical address form: %s\n",
413
 
                addrstr, ntohs(to.sin6_port));
 
505
        fprintf(stderr, "Canonical address form: %s\n", addrstr);
414
506
      }
415
507
    }
416
508
  }
417
509
  
418
 
  ret = connect(tcp_sd, (struct sockaddr *) &to, sizeof(to));
 
510
  ret = connect(tcp_sd, &to.in, sizeof(to));
419
511
  if (ret < 0){
420
512
    perror("connect");
421
513
    return -1;
422
514
  }
423
 
  
424
 
  ret = initgnutls (&es);
425
 
  if (ret != 0){
426
 
    retval = -1;
427
 
    return -1;
 
515
 
 
516
  const char *out = mandos_protocol_version;
 
517
  written = 0;
 
518
  while (true){
 
519
    size_t out_size = strlen(out);
 
520
    ret = TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
 
521
                                   out_size - written));
 
522
    if (ret == -1){
 
523
      perror("write");
 
524
      retval = -1;
 
525
      goto mandos_end;
 
526
    }
 
527
    written += (size_t)ret;
 
528
    if(written < out_size){
 
529
      continue;
 
530
    } else {
 
531
      if (out == mandos_protocol_version){
 
532
        written = 0;
 
533
        out = "\r\n";
 
534
      } else {
 
535
        break;
 
536
      }
 
537
    }
428
538
  }
429
 
  
430
 
  gnutls_transport_set_ptr (es.session,
431
 
                            (gnutls_transport_ptr_t) tcp_sd);
432
 
  
 
539
 
433
540
  if(debug){
434
541
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
435
542
  }
436
543
  
437
 
  ret = gnutls_handshake (es.session);
 
544
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
 
545
 
 
546
  do{
 
547
    ret = gnutls_handshake (session);
 
548
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
438
549
  
439
550
  if (ret != GNUTLS_E_SUCCESS){
440
551
    if(debug){
441
 
      fprintf(stderr, "\n*** Handshake failed ***\n");
 
552
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
442
553
      gnutls_perror (ret);
443
554
    }
444
555
    retval = -1;
445
 
    goto exit;
 
556
    goto mandos_end;
446
557
  }
447
558
  
448
 
  //Retrieve OpenPGP packet that contains the wanted password
 
559
  /* Read OpenPGP packet that contains the wanted password */
449
560
  
450
561
  if(debug){
451
562
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
453
564
  }
454
565
 
455
566
  while(true){
456
 
    if (buffer_length + BUFFER_SIZE > buffer_capacity){
457
 
      buffer = realloc(buffer, buffer_capacity + BUFFER_SIZE);
458
 
      if (buffer == NULL){
459
 
        perror("realloc");
460
 
        goto exit;
461
 
      }
462
 
      buffer_capacity += BUFFER_SIZE;
 
567
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
 
568
                                   buffer_capacity);
 
569
    if (buffer_capacity == 0){
 
570
      perror("adjustbuffer");
 
571
      retval = -1;
 
572
      goto mandos_end;
463
573
    }
464
574
    
465
 
    ret = gnutls_record_recv
466
 
      (es.session, buffer+buffer_length, BUFFER_SIZE);
 
575
    ret = gnutls_record_recv(session, buffer+buffer_length,
 
576
                             BUFFER_SIZE);
467
577
    if (ret == 0){
468
578
      break;
469
579
    }
473
583
      case GNUTLS_E_AGAIN:
474
584
        break;
475
585
      case GNUTLS_E_REHANDSHAKE:
476
 
        ret = gnutls_handshake (es.session);
 
586
        do{
 
587
          ret = gnutls_handshake (session);
 
588
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
477
589
        if (ret < 0){
478
 
          fprintf(stderr, "\n*** Handshake failed ***\n");
 
590
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
479
591
          gnutls_perror (ret);
480
592
          retval = -1;
481
 
          goto exit;
 
593
          goto mandos_end;
482
594
        }
483
595
        break;
484
596
      default:
485
597
        fprintf(stderr, "Unknown error while reading data from"
486
 
                " encrypted session with mandos server\n");
 
598
                " encrypted session with Mandos server\n");
487
599
        retval = -1;
488
 
        gnutls_bye (es.session, GNUTLS_SHUT_RDWR);
489
 
        goto exit;
 
600
        gnutls_bye (session, GNUTLS_SHUT_RDWR);
 
601
        goto mandos_end;
490
602
      }
491
603
    } else {
492
604
      buffer_length += (size_t) ret;
493
605
    }
494
606
  }
495
607
  
 
608
  if(debug){
 
609
    fprintf(stderr, "Closing TLS session\n");
 
610
  }
 
611
  
 
612
  gnutls_bye (session, GNUTLS_SHUT_RDWR);
 
613
  
496
614
  if (buffer_length > 0){
497
615
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
498
616
                                               buffer_length,
499
617
                                               &decrypted_buffer,
500
618
                                               keydir);
501
619
    if (decrypted_buffer_size >= 0){
 
620
      written = 0;
502
621
      while(written < (size_t) decrypted_buffer_size){
503
622
        ret = (int)fwrite (decrypted_buffer + written, 1,
504
623
                           (size_t)decrypted_buffer_size - written,
518
637
      retval = -1;
519
638
    }
520
639
  }
521
 
 
522
 
  //shutdown procedure
523
 
 
524
 
  if(debug){
525
 
    fprintf(stderr, "Closing TLS session\n");
526
 
  }
527
 
 
 
640
  
 
641
  /* Shutdown procedure */
 
642
  
 
643
 mandos_end:
528
644
  free(buffer);
529
 
  gnutls_bye (es.session, GNUTLS_SHUT_RDWR);
530
 
 exit:
531
645
  close(tcp_sd);
532
 
  gnutls_deinit (es.session);
533
 
  gnutls_certificate_free_credentials (es.cred);
534
 
  gnutls_global_deinit ();
 
646
  gnutls_deinit (session);
535
647
  return retval;
536
648
}
537
649
 
538
 
static AvahiSimplePoll *simple_poll = NULL;
539
 
static AvahiServer *server = NULL;
540
 
 
541
 
static void resolve_callback(
542
 
    AvahiSServiceResolver *r,
543
 
    AvahiIfIndex interface,
544
 
    AVAHI_GCC_UNUSED AvahiProtocol protocol,
545
 
    AvahiResolverEvent event,
546
 
    const char *name,
547
 
    const char *type,
548
 
    const char *domain,
549
 
    const char *host_name,
550
 
    const AvahiAddress *address,
551
 
    uint16_t port,
552
 
    AVAHI_GCC_UNUSED AvahiStringList *txt,
553
 
    AVAHI_GCC_UNUSED AvahiLookupResultFlags flags,
554
 
    AVAHI_GCC_UNUSED void* userdata) {
555
 
    
556
 
  assert(r);                    /* Spurious warning */
 
650
static void resolve_callback(AvahiSServiceResolver *r,
 
651
                             AvahiIfIndex interface,
 
652
                             AVAHI_GCC_UNUSED AvahiProtocol protocol,
 
653
                             AvahiResolverEvent event,
 
654
                             const char *name,
 
655
                             const char *type,
 
656
                             const char *domain,
 
657
                             const char *host_name,
 
658
                             const AvahiAddress *address,
 
659
                             uint16_t port,
 
660
                             AVAHI_GCC_UNUSED AvahiStringList *txt,
 
661
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
 
662
                             flags,
 
663
                             void* userdata) {
 
664
  mandos_context *mc = userdata;
 
665
  assert(r);
557
666
  
558
667
  /* Called whenever a service has been resolved successfully or
559
668
     timed out */
561
670
  switch (event) {
562
671
  default:
563
672
  case AVAHI_RESOLVER_FAILURE:
564
 
    fprintf(stderr, "(Resolver) Failed to resolve service '%s' of"
565
 
            " type '%s' in domain '%s': %s\n", name, type, domain,
566
 
            avahi_strerror(avahi_server_errno(server)));
 
673
    fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
 
674
            " of type '%s' in domain '%s': %s\n", name, type, domain,
 
675
            avahi_strerror(avahi_server_errno(mc->server)));
567
676
    break;
568
677
    
569
678
  case AVAHI_RESOLVER_FOUND:
571
680
      char ip[AVAHI_ADDRESS_STR_MAX];
572
681
      avahi_address_snprint(ip, sizeof(ip), address);
573
682
      if(debug){
574
 
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s) on"
575
 
                " port %d\n", name, host_name, ip, port);
 
683
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
 
684
                PRIu16 ") on port %d\n", name, host_name, ip,
 
685
                interface, port);
576
686
      }
577
 
      int ret = start_mandos_communication(ip, port, interface);
 
687
      int ret = start_mandos_communication(ip, port, interface, mc);
578
688
      if (ret == 0){
579
 
        exit(EXIT_SUCCESS);
 
689
        avahi_simple_poll_quit(mc->simple_poll);
580
690
      }
581
691
    }
582
692
  }
583
693
  avahi_s_service_resolver_free(r);
584
694
}
585
695
 
586
 
static void browse_callback(
587
 
    AvahiSServiceBrowser *b,
588
 
    AvahiIfIndex interface,
589
 
    AvahiProtocol protocol,
590
 
    AvahiBrowserEvent event,
591
 
    const char *name,
592
 
    const char *type,
593
 
    const char *domain,
594
 
    AVAHI_GCC_UNUSED AvahiLookupResultFlags flags,
595
 
    void* userdata) {
596
 
    
597
 
    AvahiServer *s = userdata;
598
 
    assert(b);                  /* Spurious warning */
599
 
    
600
 
    /* Called whenever a new services becomes available on the LAN or
601
 
       is removed from the LAN */
602
 
    
603
 
    switch (event) {
604
 
    default:
605
 
    case AVAHI_BROWSER_FAILURE:
606
 
      
607
 
      fprintf(stderr, "(Browser) %s\n",
608
 
              avahi_strerror(avahi_server_errno(server)));
609
 
      avahi_simple_poll_quit(simple_poll);
610
 
      return;
611
 
      
612
 
    case AVAHI_BROWSER_NEW:
613
 
      /* We ignore the returned resolver object. In the callback
614
 
         function we free it. If the server is terminated before
615
 
         the callback function is called the server will free
616
 
         the resolver for us. */
617
 
      
618
 
      if (!(avahi_s_service_resolver_new(s, interface, protocol, name,
619
 
                                         type, domain,
620
 
                                         AVAHI_PROTO_INET6, 0,
621
 
                                         resolve_callback, s)))
622
 
        fprintf(stderr, "Failed to resolve service '%s': %s\n", name,
623
 
                avahi_strerror(avahi_server_errno(s)));
624
 
      break;
625
 
      
626
 
    case AVAHI_BROWSER_REMOVE:
627
 
      break;
628
 
      
629
 
    case AVAHI_BROWSER_ALL_FOR_NOW:
630
 
    case AVAHI_BROWSER_CACHE_EXHAUSTED:
631
 
      break;
 
696
static void browse_callback( AvahiSServiceBrowser *b,
 
697
                             AvahiIfIndex interface,
 
698
                             AvahiProtocol protocol,
 
699
                             AvahiBrowserEvent event,
 
700
                             const char *name,
 
701
                             const char *type,
 
702
                             const char *domain,
 
703
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
 
704
                             flags,
 
705
                             void* userdata) {
 
706
  mandos_context *mc = userdata;
 
707
  assert(b);
 
708
  
 
709
  /* Called whenever a new services becomes available on the LAN or
 
710
     is removed from the LAN */
 
711
  
 
712
  switch (event) {
 
713
  default:
 
714
  case AVAHI_BROWSER_FAILURE:
 
715
    
 
716
    fprintf(stderr, "(Avahi browser) %s\n",
 
717
            avahi_strerror(avahi_server_errno(mc->server)));
 
718
    avahi_simple_poll_quit(mc->simple_poll);
 
719
    return;
 
720
    
 
721
  case AVAHI_BROWSER_NEW:
 
722
    /* We ignore the returned Avahi resolver object. In the callback
 
723
       function we free it. If the Avahi server is terminated before
 
724
       the callback function is called the Avahi server will free the
 
725
       resolver for us. */
 
726
    
 
727
    if (!(avahi_s_service_resolver_new(mc->server, interface,
 
728
                                       protocol, name, type, domain,
 
729
                                       AVAHI_PROTO_INET6, 0,
 
730
                                       resolve_callback, mc)))
 
731
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
 
732
              name, avahi_strerror(avahi_server_errno(mc->server)));
 
733
    break;
 
734
    
 
735
  case AVAHI_BROWSER_REMOVE:
 
736
    break;
 
737
    
 
738
  case AVAHI_BROWSER_ALL_FOR_NOW:
 
739
  case AVAHI_BROWSER_CACHE_EXHAUSTED:
 
740
    if(debug){
 
741
      fprintf(stderr, "No Mandos server found, still searching...\n");
632
742
    }
 
743
    break;
 
744
  }
633
745
}
634
746
 
635
747
/* Combines file name and path and returns the malloced new
636
748
   string. some sane checks could/should be added */
637
 
static const char *combinepath(const char *first, const char *second){
638
 
  size_t f_len = strlen(first);
639
 
  size_t s_len = strlen(second);
640
 
  char *tmp = malloc(f_len + s_len + 2);
641
 
  if (tmp == NULL){
 
749
static char *combinepath(const char *first, const char *second){
 
750
  char *tmp;
 
751
  int ret = asprintf(&tmp, "%s/%s", first, second);
 
752
  if(ret < 0){
642
753
    return NULL;
643
754
  }
644
 
  if(f_len > 0){
645
 
    memcpy(tmp, first, f_len);
646
 
  }
647
 
  tmp[f_len] = '/';
648
 
  if(s_len > 0){
649
 
    memcpy(tmp + f_len + 1, second, s_len);
650
 
  }
651
 
  tmp[f_len + 1 + s_len] = '\0';
652
755
  return tmp;
653
756
}
654
757
 
655
758
 
656
 
int main(AVAHI_GCC_UNUSED int argc, AVAHI_GCC_UNUSED char*argv[]) {
657
 
    AvahiServerConfig config;
 
759
int main(int argc, char *argv[]){
658
760
    AvahiSServiceBrowser *sb = NULL;
659
761
    int error;
660
762
    int ret;
661
 
    int debug_int = 0;
662
 
    int returncode = EXIT_SUCCESS;
663
 
    const char *interface = NULL;
 
763
    int exitcode = EXIT_SUCCESS;
 
764
    const char *interface = "eth0";
 
765
    struct ifreq network;
 
766
    int sd;
 
767
    uid_t uid;
 
768
    gid_t gid;
 
769
    char *connect_to = NULL;
664
770
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
665
 
    char *connect_to = NULL;
666
 
    
667
 
    debug_int = debug ? 1 : 0;
668
 
    while (true){
669
 
      static struct option long_options[] = {
670
 
        {"debug", no_argument, &debug_int, 1},
671
 
        {"connect", required_argument, NULL, 'C'},
672
 
        {"interface", required_argument, NULL, 'i'},
673
 
        {"keydir", required_argument, NULL, 'd'},
674
 
        {"seckey", required_argument, NULL, 'c'},
675
 
        {"pubkey", required_argument, NULL, 'k'},
676
 
        {"dh-bits", required_argument, NULL, 'D'},
677
 
        {0, 0, 0, 0} };
678
 
      
679
 
      int option_index = 0;
680
 
      ret = getopt_long (argc, argv, "i:", long_options,
681
 
                         &option_index);
682
 
      
683
 
      if (ret == -1){
684
 
        break;
685
 
      }
686
 
      
687
 
      switch(ret){
688
 
      case 0:
689
 
        break;
690
 
      case 'i':
691
 
        interface = optarg;
692
 
        break;
693
 
      case 'C':
694
 
        connect_to = optarg;
695
 
        break;
696
 
      case 'd':
697
 
        keydir = optarg;
698
 
        break;
699
 
      case 'c':
700
 
        pubkeyfile = optarg;
701
 
        break;
702
 
      case 'k':
703
 
        seckeyfile = optarg;
704
 
        break;
705
 
      case 'D':
706
 
        dh_bits = atoi(optarg);
707
 
        break;
708
 
      case '?':
709
 
        break
710
 
      default:
711
 
        exit(EXIT_FAILURE);
712
 
      }
713
 
    }
714
 
    debug = debug_int ? true : false;
715
 
    
716
 
    pubkeyfile = combinepath(keydir, pubkeyfile);
717
 
    if (pubkeyfile == NULL){
718
 
      perror("combinepath");
719
 
      goto exit;
720
 
    }
721
 
    
722
 
    if(interface != NULL){
723
 
      if_index = (AvahiIfIndex) if_nametoindex(interface);
724
 
      if(if_index == 0){
725
 
        fprintf(stderr, "No such interface: \"%s\"\n", interface);
726
 
        exit(EXIT_FAILURE);
727
 
      }
 
771
    char *pubkeyfilename = NULL;
 
772
    char *seckeyfilename = NULL;
 
773
    const char *pubkeyname = "pubkey.txt";
 
774
    const char *seckeyname = "seckey.txt";
 
775
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
 
776
                          .dh_bits = 1024, .priority = "SECURE256"};
 
777
    bool gnutls_initalized = false;
 
778
    
 
779
    {
 
780
      struct argp_option options[] = {
 
781
        { .name = "debug", .key = 128,
 
782
          .doc = "Debug mode", .group = 3 },
 
783
        { .name = "connect", .key = 'c',
 
784
          .arg = "IP",
 
785
          .doc = "Connect directly to a sepcified mandos server",
 
786
          .group = 1 },
 
787
        { .name = "interface", .key = 'i',
 
788
          .arg = "INTERFACE",
 
789
          .doc = "Interface that Avahi will conntect through",
 
790
          .group = 1 },
 
791
        { .name = "keydir", .key = 'd',
 
792
          .arg = "KEYDIR",
 
793
          .doc = "Directory where the openpgp keyring is",
 
794
          .group = 1 },
 
795
        { .name = "seckey", .key = 's',
 
796
          .arg = "SECKEY",
 
797
          .doc = "Secret openpgp key for gnutls authentication",
 
798
          .group = 1 },
 
799
        { .name = "pubkey", .key = 'p',
 
800
          .arg = "PUBKEY",
 
801
          .doc = "Public openpgp key for gnutls authentication",
 
802
          .group = 2 },
 
803
        { .name = "dh-bits", .key = 129,
 
804
          .arg = "BITS",
 
805
          .doc = "dh-bits to use in gnutls communication",
 
806
          .group = 2 },
 
807
        { .name = "priority", .key = 130,
 
808
          .arg = "PRIORITY",
 
809
          .doc = "GNUTLS priority", .group = 1 },
 
810
        { .name = NULL }
 
811
      };
 
812
 
 
813
      
 
814
      error_t parse_opt (int key, char *arg,
 
815
                         struct argp_state *state) {
 
816
        /* Get the INPUT argument from `argp_parse', which we know is
 
817
           a pointer to our plugin list pointer. */
 
818
        switch (key) {
 
819
        case 128:
 
820
          debug = true;
 
821
          break;
 
822
        case 'c':
 
823
          connect_to = arg;
 
824
          break;
 
825
        case 'i':
 
826
          interface = arg;
 
827
          break;
 
828
        case 'd':
 
829
          keydir = arg;
 
830
          break;
 
831
        case 's':
 
832
          seckeyname = arg;
 
833
          break;
 
834
        case 'p':
 
835
          pubkeyname = arg;
 
836
          break;
 
837
        case 129:
 
838
          errno = 0;
 
839
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
 
840
          if (errno){
 
841
            perror("strtol");
 
842
            exit(EXIT_FAILURE);
 
843
          }
 
844
          break;
 
845
        case 130:
 
846
          mc.priority = arg;
 
847
          break;
 
848
        case ARGP_KEY_ARG:
 
849
          argp_usage (state);
 
850
        case ARGP_KEY_END:
 
851
          break;
 
852
        default:
 
853
          return ARGP_ERR_UNKNOWN;
 
854
        }
 
855
        return 0;
 
856
      }
 
857
 
 
858
      struct argp argp = { .options = options, .parser = parse_opt,
 
859
                           .args_doc = "",
 
860
                           .doc = "Mandos client -- Get and decrypt"
 
861
                           " passwords from mandos server" };
 
862
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
 
863
      if (ret == ARGP_ERR_UNKNOWN){
 
864
        fprintf(stderr, "Unknown error while parsing arguments\n");
 
865
        exitcode = EXIT_FAILURE;
 
866
        goto end;
 
867
      }
 
868
    }
 
869
      
 
870
    pubkeyfilename = combinepath(keydir, pubkeyname);
 
871
    if (pubkeyfilename == NULL){
 
872
      perror("combinepath");
 
873
      exitcode = EXIT_FAILURE;
 
874
      goto end;
 
875
    }
 
876
    
 
877
    seckeyfilename = combinepath(keydir, seckeyname);
 
878
    if (seckeyfilename == NULL){
 
879
      perror("combinepath");
 
880
      exitcode = EXIT_FAILURE;
 
881
      goto end;
 
882
    }
 
883
 
 
884
    ret = init_gnutls_global(&mc, pubkeyfilename, seckeyfilename);
 
885
    if (ret == -1){
 
886
      fprintf(stderr, "init_gnutls_global failed\n");
 
887
      exitcode = EXIT_FAILURE;
 
888
      goto end;
 
889
    } else {
 
890
      gnutls_initalized = true;
 
891
    }
 
892
    
 
893
    /* If the interface is down, bring it up */
 
894
    {
 
895
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
896
      if(sd < 0) {
 
897
        perror("socket");
 
898
        exitcode = EXIT_FAILURE;
 
899
        goto end;
 
900
      }
 
901
      strcpy(network.ifr_name, interface);
 
902
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
903
      if(ret == -1){
 
904
        perror("ioctl SIOCGIFFLAGS");
 
905
        exitcode = EXIT_FAILURE;
 
906
        goto end;
 
907
      }
 
908
      if((network.ifr_flags & IFF_UP) == 0){
 
909
        network.ifr_flags |= IFF_UP;
 
910
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
911
        if(ret == -1){
 
912
          perror("ioctl SIOCSIFFLAGS");
 
913
          exitcode = EXIT_FAILURE;
 
914
          goto end;
 
915
        }
 
916
      }
 
917
      close(sd);
 
918
    }
 
919
    
 
920
    uid = getuid();
 
921
    gid = getgid();
 
922
    
 
923
    ret = setuid(uid);
 
924
    if (ret == -1){
 
925
      perror("setuid");
 
926
    }
 
927
    
 
928
    setgid(gid);
 
929
    if (ret == -1){
 
930
      perror("setgid");
 
931
    }
 
932
    
 
933
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
934
    if(if_index == 0){
 
935
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
 
936
      exit(EXIT_FAILURE);
728
937
    }
729
938
    
730
939
    if(connect_to != NULL){
733
942
      char *address = strrchr(connect_to, ':');
734
943
      if(address == NULL){
735
944
        fprintf(stderr, "No colon in address\n");
736
 
        exit(EXIT_FAILURE);
 
945
        exitcode = EXIT_FAILURE;
 
946
        goto end;
737
947
      }
738
948
      errno = 0;
739
949
      uint16_t port = (uint16_t) strtol(address+1, NULL, 10);
740
950
      if(errno){
741
951
        perror("Bad port number");
742
 
        exit(EXIT_FAILURE);
 
952
        exitcode = EXIT_FAILURE;
 
953
        goto end;
743
954
      }
744
955
      *address = '\0';
745
956
      address = connect_to;
746
 
      ret = start_mandos_communication(address, port, if_index);
 
957
      ret = start_mandos_communication(address, port, if_index, &mc);
747
958
      if(ret < 0){
748
 
        exit(EXIT_FAILURE);
 
959
        exitcode = EXIT_FAILURE;
749
960
      } else {
750
 
        exit(EXIT_SUCCESS);
 
961
        exitcode = EXIT_SUCCESS;
751
962
      }
752
 
    }
753
 
    
754
 
    seckeyfile = combinepath(keydir, seckeyfile);
755
 
    if (seckeyfile == NULL){
756
 
      perror("combinepath");
757
 
      goto exit;
 
963
      goto end;
758
964
    }
759
965
    
760
966
    if (not debug){
761
967
      avahi_set_log_function(empty_log);
762
968
    }
763
969
    
764
 
    /* Initialize the psuedo-RNG */
 
970
    /* Initialize the pseudo-RNG for Avahi */
765
971
    srand((unsigned int) time(NULL));
766
 
 
767
 
    /* Allocate main loop object */
768
 
    if (!(simple_poll = avahi_simple_poll_new())) {
769
 
        fprintf(stderr, "Failed to create simple poll object.\n");
770
 
        
771
 
        goto exit;
772
 
    }
773
 
 
774
 
    /* Do not publish any local records */
775
 
    avahi_server_config_init(&config);
776
 
    config.publish_hinfo = 0;
777
 
    config.publish_addresses = 0;
778
 
    config.publish_workstation = 0;
779
 
    config.publish_domain = 0;
780
 
 
781
 
    /* Allocate a new server */
782
 
    server = avahi_server_new(avahi_simple_poll_get(simple_poll),
783
 
                              &config, NULL, NULL, &error);
784
 
 
785
 
    /* Free the configuration data */
786
 
    avahi_server_config_free(&config);
787
 
 
788
 
    /* Check if creating the server object succeeded */
789
 
    if (!server) {
790
 
        fprintf(stderr, "Failed to create server: %s\n",
 
972
    
 
973
    /* Allocate main Avahi loop object */
 
974
    mc.simple_poll = avahi_simple_poll_new();
 
975
    if (mc.simple_poll == NULL) {
 
976
        fprintf(stderr, "Avahi: Failed to create simple poll"
 
977
                " object.\n");
 
978
        exitcode = EXIT_FAILURE;
 
979
        goto end;
 
980
    }
 
981
 
 
982
    {
 
983
      AvahiServerConfig config;
 
984
      /* Do not publish any local Zeroconf records */
 
985
      avahi_server_config_init(&config);
 
986
      config.publish_hinfo = 0;
 
987
      config.publish_addresses = 0;
 
988
      config.publish_workstation = 0;
 
989
      config.publish_domain = 0;
 
990
 
 
991
      /* Allocate a new server */
 
992
      mc.server = avahi_server_new(avahi_simple_poll_get
 
993
                                   (mc.simple_poll), &config, NULL,
 
994
                                   NULL, &error);
 
995
    
 
996
      /* Free the Avahi configuration data */
 
997
      avahi_server_config_free(&config);
 
998
    }
 
999
    
 
1000
    /* Check if creating the Avahi server object succeeded */
 
1001
    if (mc.server == NULL) {
 
1002
        fprintf(stderr, "Failed to create Avahi server: %s\n",
791
1003
                avahi_strerror(error));
792
 
        returncode = EXIT_FAILURE;
793
 
        goto exit;
 
1004
        exitcode = EXIT_FAILURE;
 
1005
        goto end;
794
1006
    }
795
1007
    
796
 
    /* Create the service browser */
797
 
    sb = avahi_s_service_browser_new(server, if_index,
 
1008
    /* Create the Avahi service browser */
 
1009
    sb = avahi_s_service_browser_new(mc.server, if_index,
798
1010
                                     AVAHI_PROTO_INET6,
799
1011
                                     "_mandos._tcp", NULL, 0,
800
 
                                     browse_callback, server);
801
 
    if (!sb) {
 
1012
                                     browse_callback, &mc);
 
1013
    if (sb == NULL) {
802
1014
        fprintf(stderr, "Failed to create service browser: %s\n",
803
 
                avahi_strerror(avahi_server_errno(server)));
804
 
        returncode = EXIT_FAILURE;
805
 
        goto exit;
 
1015
                avahi_strerror(avahi_server_errno(mc.server)));
 
1016
        exitcode = EXIT_FAILURE;
 
1017
        goto end;
806
1018
    }
807
1019
    
808
1020
    /* Run the main loop */
809
1021
 
810
1022
    if (debug){
811
 
      fprintf(stderr, "Starting avahi loop search\n");
 
1023
      fprintf(stderr, "Starting Avahi loop search\n");
812
1024
    }
813
1025
    
814
 
    avahi_simple_poll_loop(simple_poll);
 
1026
    avahi_simple_poll_loop(mc.simple_poll);
815
1027
    
816
 
 exit:
 
1028
 end:
817
1029
 
818
1030
    if (debug){
819
1031
      fprintf(stderr, "%s exiting\n", argv[0]);
820
1032
    }
821
1033
    
822
1034
    /* Cleanup things */
823
 
    if (sb)
 
1035
    if (sb != NULL)
824
1036
        avahi_s_service_browser_free(sb);
825
1037
    
826
 
    if (server)
827
 
        avahi_server_free(server);
828
 
 
829
 
    if (simple_poll)
830
 
        avahi_simple_poll_free(simple_poll);
831
 
    free(pubkeyfile);
832
 
    free(seckeyfile);
 
1038
    if (mc.server != NULL)
 
1039
        avahi_server_free(mc.server);
 
1040
 
 
1041
    if (mc.simple_poll != NULL)
 
1042
        avahi_simple_poll_free(mc.simple_poll);
 
1043
    free(pubkeyfilename);
 
1044
    free(seckeyfilename);
 
1045
 
 
1046
    if (gnutls_initalized){
 
1047
      gnutls_certificate_free_credentials(mc.cred);
 
1048
      gnutls_global_deinit ();
 
1049
    }
833
1050
    
834
 
    return returncode;
 
1051
    return exitcode;
835
1052
}