/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/mandosclient.c

mandosclient
        changed to argp

Show diffs side-by-side

added added

removed removed

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