/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: 2011-07-13 01:11:12 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110713011112-bgf3tenqq60uoyyb
* Makefile (plugins.d/mandos-client): Bug fix: Put $^ before all
                                      libraries.  Remove "$(COMMON)".
                                      Thanks to Angel Abad
                                      <angelabad@ubuntu.com>.
* initramfs-tools-script: Work around change in initramfs-tools,
                          Debian bug #633582.
* plugins.d/mandos-client.c (init_gnutls_global): Bug fix: check for
                errors from gnutls_certificate_allocate_credentials().

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-2011 Teddy Hogeborn
 
13
 * Copyright © 2008-2011 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
29
30
 */
30
31
 
31
32
/* Needed by GPGME, specifically gpgme_data_seek() */
 
33
#ifndef _LARGEFILE_SOURCE
32
34
#define _LARGEFILE_SOURCE
 
35
#endif
 
36
#ifndef _FILE_OFFSET_BITS
33
37
#define _FILE_OFFSET_BITS 64
 
38
#endif
34
39
 
35
40
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
36
41
 
37
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
38
 
                                   stdout, ferror() */
 
43
                                   stdout, ferror(), remove() */
39
44
#include <stdint.h>             /* uint16_t, uint32_t */
40
45
#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 */
 
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, srand(),
 
47
                                   strtof(), abort() */
 
48
#include <stdbool.h>            /* bool, false, true */
44
49
#include <string.h>             /* memset(), strcmp(), strlen(),
45
50
                                   strerror(), asprintf(), strcpy() */
46
 
#include <sys/ioctl.h>          /* ioctl */
 
51
#include <sys/ioctl.h>          /* ioctl */
47
52
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
48
53
                                   sockaddr_in6, PF_INET6,
49
 
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
50
 
                                   uid_t, gid_t, open(), opendir(), DIR */
 
54
                                   SOCK_STREAM, uid_t, gid_t, open(),
 
55
                                   opendir(), DIR */
51
56
#include <sys/stat.h>           /* open() */
52
57
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
53
 
                                   struct in6_addr, inet_pton(),
54
 
                                   connect() */
 
58
                                   inet_pton(), connect() */
55
59
#include <fcntl.h>              /* open() */
56
 
#include <dirent.h>             /* opendir(), struct dirent, readdir() */
57
 
#include <inttypes.h>           /* PRIu16 */
 
60
#include <dirent.h>             /* opendir(), struct dirent, readdir()
 
61
                                 */
 
62
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
 
63
                                   strtoimax() */
58
64
#include <assert.h>             /* assert() */
59
65
#include <errno.h>              /* perror(), errno */
60
 
#include <time.h>               /* time() */
 
66
#include <time.h>               /* nanosleep(), time(), sleep() */
61
67
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
62
68
                                   SIOCSIFFLAGS, if_indextoname(),
63
69
                                   if_nametoindex(), IF_NAMESIZE */
64
 
#include <netinet/in.h>
 
70
#include <netinet/in.h>         /* IN6_IS_ADDR_LINKLOCAL,
 
71
                                   INET_ADDRSTRLEN, INET6_ADDRSTRLEN
 
72
                                */
65
73
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
66
 
                                   getuid(), getgid(), setuid(),
67
 
                                   setgid() */
68
 
#include <arpa/inet.h>          /* inet_pton(), htons */
69
 
#include <iso646.h>             /* not, and */
 
74
                                   getuid(), getgid(), seteuid(),
 
75
                                   setgid(), pause() */
 
76
#include <arpa/inet.h>          /* inet_pton(), htons, inet_ntop() */
 
77
#include <iso646.h>             /* not, or, and */
70
78
#include <argp.h>               /* struct argp_option, error_t, struct
71
79
                                   argp_state, struct argp,
72
80
                                   argp_parse(), ARGP_KEY_ARG,
73
81
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
 
82
#include <signal.h>             /* sigemptyset(), sigaddset(),
 
83
                                   sigaction(), SIGTERM, sig_atomic_t,
 
84
                                   raise() */
 
85
#include <sysexits.h>           /* EX_OSERR, EX_USAGE, EX_UNAVAILABLE,
 
86
                                   EX_NOHOST, EX_IOERR, EX_PROTOCOL */
 
87
 
 
88
#ifdef __linux__
 
89
#include <sys/klog.h>           /* klogctl() */
 
90
#endif  /* __linux__ */
74
91
 
75
92
/* Avahi */
76
93
/* All Avahi types, constants and functions
89
106
                                   gnutls_*
90
107
                                   init_gnutls_session(),
91
108
                                   GNUTLS_* */
92
 
#include <gnutls/openpgp.h>     /* gnutls_certificate_set_openpgp_key_file(),
 
109
#include <gnutls/openpgp.h>
 
110
                          /* gnutls_certificate_set_openpgp_key_file(),
93
111
                                   GNUTLS_OPENPGP_FMT_BASE64 */
94
112
 
95
113
/* GPGME */
101
119
 
102
120
#define BUFFER_SIZE 256
103
121
 
104
 
/*
105
 
  #define PATHDIR "/conf/conf.d/mandos"
106
 
*/
107
 
 
108
122
#define PATHDIR "/conf/conf.d/mandos"
109
123
#define SECKEY "seckey.txt"
110
124
#define PUBKEY "pubkey.txt"
111
125
 
112
126
bool debug = false;
113
127
static const char mandos_protocol_version[] = "1";
114
 
const char *argp_program_version = "mandos-client 1.0";
 
128
const char *argp_program_version = "mandos-client " VERSION;
115
129
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
130
static const char sys_class_net[] = "/sys/class/net";
 
131
char *connect_to = NULL;
116
132
 
117
133
/* Used for passing in values through the Avahi callback functions */
118
134
typedef struct {
125
141
  gpgme_ctx_t ctx;
126
142
} mandos_context;
127
143
 
 
144
/* global context so signal handler can reach it*/
 
145
mandos_context mc = { .simple_poll = NULL, .server = NULL,
 
146
                      .dh_bits = 1024, .priority = "SECURE256"
 
147
                      ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
148
 
 
149
sig_atomic_t quit_now = 0;
 
150
int signal_received = 0;
 
151
 
128
152
/*
129
 
 * Make room in "buffer" for at least BUFFER_SIZE additional bytes.
130
 
 * "buffer_capacity" is how much is currently allocated,
 
153
 * Make additional room in "buffer" for at least BUFFER_SIZE more
 
154
 * bytes. "buffer_capacity" is how much is currently allocated,
131
155
 * "buffer_length" is how much is already used.
132
156
 */
133
 
size_t adjustbuffer(char **buffer, size_t buffer_length,
 
157
size_t incbuffer(char **buffer, size_t buffer_length,
134
158
                  size_t buffer_capacity){
135
 
  if (buffer_length + BUFFER_SIZE > buffer_capacity){
 
159
  if(buffer_length + BUFFER_SIZE > buffer_capacity){
136
160
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
137
 
    if (buffer == NULL){
 
161
    if(buffer == NULL){
138
162
      return 0;
139
163
    }
140
164
    buffer_capacity += BUFFER_SIZE;
145
169
/* 
146
170
 * Initialize GPGME.
147
171
 */
148
 
static bool init_gpgme(mandos_context *mc, const char *seckey,
 
172
static bool init_gpgme(const char *seckey,
149
173
                       const char *pubkey, const char *tempdir){
150
 
  int ret;
151
174
  gpgme_error_t rc;
152
175
  gpgme_engine_info_t engine_info;
153
176
  
154
177
  
155
178
  /*
156
 
   * Helper function to insert pub and seckey to the enigne keyring.
 
179
   * Helper function to insert pub and seckey to the engine keyring.
157
180
   */
158
181
  bool import_key(const char *filename){
 
182
    int ret;
159
183
    int fd;
160
184
    gpgme_data_t pgp_data;
161
185
    
162
 
    fd = TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
 
186
    fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
163
187
    if(fd == -1){
164
188
      perror("open");
165
189
      return false;
166
190
    }
167
191
    
168
192
    rc = gpgme_data_new_from_fd(&pgp_data, fd);
169
 
    if (rc != GPG_ERR_NO_ERROR){
 
193
    if(rc != GPG_ERR_NO_ERROR){
170
194
      fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
171
195
              gpgme_strsource(rc), gpgme_strerror(rc));
172
196
      return false;
173
197
    }
174
198
    
175
 
    rc = gpgme_op_import(mc->ctx, pgp_data);
176
 
    if (rc != GPG_ERR_NO_ERROR){
 
199
    rc = gpgme_op_import(mc.ctx, pgp_data);
 
200
    if(rc != GPG_ERR_NO_ERROR){
177
201
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
178
202
              gpgme_strsource(rc), gpgme_strerror(rc));
179
203
      return false;
180
204
    }
181
205
    
182
 
    ret = TEMP_FAILURE_RETRY(close(fd));
 
206
    ret = (int)TEMP_FAILURE_RETRY(close(fd));
183
207
    if(ret == -1){
184
208
      perror("close");
185
209
    }
187
211
    return true;
188
212
  }
189
213
  
190
 
  if (debug){
191
 
    fprintf(stderr, "Initialize gpgme\n");
 
214
  if(debug){
 
215
    fprintf(stderr, "Initializing GPGME\n");
192
216
  }
193
217
  
194
218
  /* Init GPGME */
195
219
  gpgme_check_version(NULL);
196
220
  rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
197
 
  if (rc != GPG_ERR_NO_ERROR){
 
221
  if(rc != GPG_ERR_NO_ERROR){
198
222
    fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
199
223
            gpgme_strsource(rc), gpgme_strerror(rc));
200
224
    return false;
201
225
  }
202
226
  
203
227
    /* Set GPGME home directory for the OpenPGP engine only */
204
 
  rc = gpgme_get_engine_info (&engine_info);
205
 
  if (rc != GPG_ERR_NO_ERROR){
 
228
  rc = gpgme_get_engine_info(&engine_info);
 
229
  if(rc != GPG_ERR_NO_ERROR){
206
230
    fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
207
231
            gpgme_strsource(rc), gpgme_strerror(rc));
208
232
    return false;
221
245
  }
222
246
  
223
247
  /* Create new GPGME "context" */
224
 
  rc = gpgme_new(&(mc->ctx));
225
 
  if (rc != GPG_ERR_NO_ERROR){
 
248
  rc = gpgme_new(&(mc.ctx));
 
249
  if(rc != GPG_ERR_NO_ERROR){
226
250
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
227
251
            gpgme_strsource(rc), gpgme_strerror(rc));
228
252
    return false;
229
253
  }
230
254
  
231
 
  if (not import_key(pubkey) or not import_key(seckey)){
 
255
  if(not import_key(pubkey) or not import_key(seckey)){
232
256
    return false;
233
257
  }
234
258
  
235
 
  return true; 
 
259
  return true;
236
260
}
237
261
 
238
262
/* 
239
263
 * Decrypt OpenPGP data.
240
264
 * Returns -1 on error
241
265
 */
242
 
static ssize_t pgp_packet_decrypt (const mandos_context *mc,
243
 
                                   const char *cryptotext,
244
 
                                   size_t crypto_size,
245
 
                                   char **plaintext){
 
266
static ssize_t pgp_packet_decrypt(const char *cryptotext,
 
267
                                  size_t crypto_size,
 
268
                                  char **plaintext){
246
269
  gpgme_data_t dh_crypto, dh_plain;
247
270
  gpgme_error_t rc;
248
271
  ssize_t ret;
249
272
  size_t plaintext_capacity = 0;
250
273
  ssize_t plaintext_length = 0;
251
274
  
252
 
  if (debug){
 
275
  if(debug){
253
276
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
254
277
  }
255
278
  
256
279
  /* Create new GPGME data buffer from memory cryptotext */
257
280
  rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
258
281
                               0);
259
 
  if (rc != GPG_ERR_NO_ERROR){
 
282
  if(rc != GPG_ERR_NO_ERROR){
260
283
    fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
261
284
            gpgme_strsource(rc), gpgme_strerror(rc));
262
285
    return -1;
264
287
  
265
288
  /* Create new empty GPGME data buffer for the plaintext */
266
289
  rc = gpgme_data_new(&dh_plain);
267
 
  if (rc != GPG_ERR_NO_ERROR){
 
290
  if(rc != GPG_ERR_NO_ERROR){
268
291
    fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
269
292
            gpgme_strsource(rc), gpgme_strerror(rc));
270
293
    gpgme_data_release(dh_crypto);
273
296
  
274
297
  /* Decrypt data from the cryptotext data buffer to the plaintext
275
298
     data buffer */
276
 
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
277
 
  if (rc != GPG_ERR_NO_ERROR){
 
299
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
 
300
  if(rc != GPG_ERR_NO_ERROR){
278
301
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
279
302
            gpgme_strsource(rc), gpgme_strerror(rc));
280
303
    plaintext_length = -1;
281
 
    if (debug){
 
304
    if(debug){
282
305
      gpgme_decrypt_result_t result;
283
 
      result = gpgme_op_decrypt_result(mc->ctx);
284
 
      if (result == NULL){
 
306
      result = gpgme_op_decrypt_result(mc.ctx);
 
307
      if(result == NULL){
285
308
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
286
309
      } else {
287
310
        fprintf(stderr, "Unsupported algorithm: %s\n",
293
316
        }
294
317
        gpgme_recipient_t recipient;
295
318
        recipient = result->recipients;
296
 
        if(recipient){
297
 
          while(recipient != NULL){
298
 
            fprintf(stderr, "Public key algorithm: %s\n",
299
 
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
300
 
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
301
 
            fprintf(stderr, "Secret key available: %s\n",
302
 
                    recipient->status == GPG_ERR_NO_SECKEY
303
 
                    ? "No" : "Yes");
304
 
            recipient = recipient->next;
305
 
          }
 
319
        while(recipient != NULL){
 
320
          fprintf(stderr, "Public key algorithm: %s\n",
 
321
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
322
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
323
          fprintf(stderr, "Secret key available: %s\n",
 
324
                  recipient->status == GPG_ERR_NO_SECKEY
 
325
                  ? "No" : "Yes");
 
326
          recipient = recipient->next;
306
327
        }
307
328
      }
308
329
    }
314
335
  }
315
336
  
316
337
  /* Seek back to the beginning of the GPGME plaintext data buffer */
317
 
  if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
 
338
  if(gpgme_data_seek(dh_plain, (off_t)0, SEEK_SET) == -1){
318
339
    perror("gpgme_data_seek");
319
340
    plaintext_length = -1;
320
341
    goto decrypt_end;
322
343
  
323
344
  *plaintext = NULL;
324
345
  while(true){
325
 
    plaintext_capacity = adjustbuffer(plaintext,
 
346
    plaintext_capacity = incbuffer(plaintext,
326
347
                                      (size_t)plaintext_length,
327
348
                                      plaintext_capacity);
328
 
    if (plaintext_capacity == 0){
329
 
        perror("adjustbuffer");
 
349
    if(plaintext_capacity == 0){
 
350
        perror("incbuffer");
330
351
        plaintext_length = -1;
331
352
        goto decrypt_end;
332
353
    }
334
355
    ret = gpgme_data_read(dh_plain, *plaintext + plaintext_length,
335
356
                          BUFFER_SIZE);
336
357
    /* Print the data, if any */
337
 
    if (ret == 0){
 
358
    if(ret == 0){
338
359
      /* EOF */
339
360
      break;
340
361
    }
364
385
  return plaintext_length;
365
386
}
366
387
 
367
 
static const char * safer_gnutls_strerror (int value) {
368
 
  const char *ret = gnutls_strerror (value); /* Spurious warning */
369
 
  if (ret == NULL)
 
388
static const char * safer_gnutls_strerror(int value){
 
389
  const char *ret = gnutls_strerror(value); /* Spurious warning from
 
390
                                               -Wunreachable-code */
 
391
  if(ret == NULL)
370
392
    ret = "(unknown)";
371
393
  return ret;
372
394
}
377
399
  fprintf(stderr, "GnuTLS: %s", string);
378
400
}
379
401
 
380
 
static int init_gnutls_global(mandos_context *mc,
381
 
                              const char *pubkeyfilename,
 
402
static int init_gnutls_global(const char *pubkeyfilename,
382
403
                              const char *seckeyfilename){
383
404
  int ret;
384
405
  
387
408
  }
388
409
  
389
410
  ret = gnutls_global_init();
390
 
  if (ret != GNUTLS_E_SUCCESS) {
391
 
    fprintf (stderr, "GnuTLS global_init: %s\n",
392
 
             safer_gnutls_strerror(ret));
 
411
  if(ret != GNUTLS_E_SUCCESS){
 
412
    fprintf(stderr, "GnuTLS global_init: %s\n",
 
413
            safer_gnutls_strerror(ret));
393
414
    return -1;
394
415
  }
395
416
  
396
 
  if (debug){
 
417
  if(debug){
397
418
    /* "Use a log level over 10 to enable all debugging options."
398
419
     * - GnuTLS manual
399
420
     */
402
423
  }
403
424
  
404
425
  /* OpenPGP credentials */
405
 
  gnutls_certificate_allocate_credentials(&mc->cred);
406
 
  if (ret != GNUTLS_E_SUCCESS){
407
 
    fprintf (stderr, "GnuTLS memory error: %s\n", /* Spurious
408
 
                                                     warning */
409
 
             safer_gnutls_strerror(ret));
410
 
    gnutls_global_deinit ();
 
426
  ret = gnutls_certificate_allocate_credentials(&mc.cred);
 
427
  if(ret != GNUTLS_E_SUCCESS){
 
428
    fprintf(stderr, "GnuTLS memory error: %s\n",
 
429
            safer_gnutls_strerror(ret));
 
430
    gnutls_global_deinit();
411
431
    return -1;
412
432
  }
413
433
  
418
438
  }
419
439
  
420
440
  ret = gnutls_certificate_set_openpgp_key_file
421
 
    (mc->cred, pubkeyfilename, seckeyfilename,
 
441
    (mc.cred, pubkeyfilename, seckeyfilename,
422
442
     GNUTLS_OPENPGP_FMT_BASE64);
423
 
  if (ret != GNUTLS_E_SUCCESS) {
 
443
  if(ret != GNUTLS_E_SUCCESS){
424
444
    fprintf(stderr,
425
445
            "Error[%d] while reading the OpenPGP key pair ('%s',"
426
446
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
430
450
  }
431
451
  
432
452
  /* GnuTLS server initialization */
433
 
  ret = gnutls_dh_params_init(&mc->dh_params);
434
 
  if (ret != GNUTLS_E_SUCCESS) {
435
 
    fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
436
 
             " %s\n", safer_gnutls_strerror(ret));
 
453
  ret = gnutls_dh_params_init(&mc.dh_params);
 
454
  if(ret != GNUTLS_E_SUCCESS){
 
455
    fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
 
456
            " %s\n", safer_gnutls_strerror(ret));
437
457
    goto globalfail;
438
458
  }
439
 
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
440
 
  if (ret != GNUTLS_E_SUCCESS) {
441
 
    fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
442
 
             safer_gnutls_strerror(ret));
 
459
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
 
460
  if(ret != GNUTLS_E_SUCCESS){
 
461
    fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
 
462
            safer_gnutls_strerror(ret));
443
463
    goto globalfail;
444
464
  }
445
465
  
446
 
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
 
466
  gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
447
467
  
448
468
  return 0;
449
469
  
450
470
 globalfail:
451
471
  
452
 
  gnutls_certificate_free_credentials(mc->cred);
 
472
  gnutls_certificate_free_credentials(mc.cred);
453
473
  gnutls_global_deinit();
454
 
  gnutls_dh_params_deinit(mc->dh_params);
 
474
  gnutls_dh_params_deinit(mc.dh_params);
455
475
  return -1;
456
476
}
457
477
 
458
 
static int init_gnutls_session(mandos_context *mc,
459
 
                               gnutls_session_t *session){
 
478
static int init_gnutls_session(gnutls_session_t *session){
460
479
  int ret;
461
480
  /* GnuTLS session creation */
462
 
  ret = gnutls_init(session, GNUTLS_SERVER);
463
 
  if (ret != GNUTLS_E_SUCCESS){
 
481
  do {
 
482
    ret = gnutls_init(session, GNUTLS_SERVER);
 
483
    if(quit_now){
 
484
      return -1;
 
485
    }
 
486
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
 
487
  if(ret != GNUTLS_E_SUCCESS){
464
488
    fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
465
489
            safer_gnutls_strerror(ret));
466
490
  }
467
491
  
468
492
  {
469
493
    const char *err;
470
 
    ret = gnutls_priority_set_direct(*session, mc->priority, &err);
471
 
    if (ret != GNUTLS_E_SUCCESS) {
 
494
    do {
 
495
      ret = gnutls_priority_set_direct(*session, mc.priority, &err);
 
496
      if(quit_now){
 
497
        gnutls_deinit(*session);
 
498
        return -1;
 
499
      }
 
500
    } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
 
501
    if(ret != GNUTLS_E_SUCCESS){
472
502
      fprintf(stderr, "Syntax error at: %s\n", err);
473
503
      fprintf(stderr, "GnuTLS error: %s\n",
474
504
              safer_gnutls_strerror(ret));
475
 
      gnutls_deinit (*session);
 
505
      gnutls_deinit(*session);
476
506
      return -1;
477
507
    }
478
508
  }
479
509
  
480
 
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
481
 
                               mc->cred);
482
 
  if (ret != GNUTLS_E_SUCCESS) {
 
510
  do {
 
511
    ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
 
512
                                 mc.cred);
 
513
    if(quit_now){
 
514
      gnutls_deinit(*session);
 
515
      return -1;
 
516
    }
 
517
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
 
518
  if(ret != GNUTLS_E_SUCCESS){
483
519
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
484
520
            safer_gnutls_strerror(ret));
485
 
    gnutls_deinit (*session);
 
521
    gnutls_deinit(*session);
486
522
    return -1;
487
523
  }
488
524
  
489
525
  /* ignore client certificate if any. */
490
 
  gnutls_certificate_server_set_request (*session,
491
 
                                         GNUTLS_CERT_IGNORE);
 
526
  gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
492
527
  
493
 
  gnutls_dh_set_prime_bits (*session, mc->dh_bits);
 
528
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
494
529
  
495
530
  return 0;
496
531
}
502
537
/* Called when a Mandos server is found */
503
538
static int start_mandos_communication(const char *ip, uint16_t port,
504
539
                                      AvahiIfIndex if_index,
505
 
                                      mandos_context *mc){
506
 
  int ret, tcp_sd;
507
 
  union { struct sockaddr in; struct sockaddr_in6 in6; } to;
 
540
                                      int af){
 
541
  int ret, tcp_sd = -1;
 
542
  ssize_t sret;
 
543
  union {
 
544
    struct sockaddr_in in;
 
545
    struct sockaddr_in6 in6;
 
546
  } to;
508
547
  char *buffer = NULL;
509
 
  char *decrypted_buffer;
 
548
  char *decrypted_buffer = NULL;
510
549
  size_t buffer_length = 0;
511
550
  size_t buffer_capacity = 0;
512
 
  ssize_t decrypted_buffer_size;
513
551
  size_t written;
514
 
  int retval = 0;
515
 
  char interface[IF_NAMESIZE];
 
552
  int retval = -1;
516
553
  gnutls_session_t session;
517
 
  
518
 
  ret = init_gnutls_session (mc, &session);
519
 
  if (ret != 0){
 
554
  int pf;                       /* Protocol family */
 
555
  
 
556
  errno = 0;
 
557
  
 
558
  if(quit_now){
 
559
    errno = EINTR;
 
560
    return -1;
 
561
  }
 
562
  
 
563
  switch(af){
 
564
  case AF_INET6:
 
565
    pf = PF_INET6;
 
566
    break;
 
567
  case AF_INET:
 
568
    pf = PF_INET;
 
569
    break;
 
570
  default:
 
571
    fprintf(stderr, "Bad address family: %d\n", af);
 
572
    errno = EINVAL;
 
573
    return -1;
 
574
  }
 
575
  
 
576
  ret = init_gnutls_session(&session);
 
577
  if(ret != 0){
520
578
    return -1;
521
579
  }
522
580
  
523
581
  if(debug){
524
 
    fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
 
582
    fprintf(stderr, "Setting up a TCP connection to %s, port %" PRIu16
525
583
            "\n", ip, port);
526
584
  }
527
585
  
528
 
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
529
 
  if(tcp_sd < 0) {
 
586
  tcp_sd = socket(pf, SOCK_STREAM, 0);
 
587
  if(tcp_sd < 0){
 
588
    int e = errno;
530
589
    perror("socket");
531
 
    return -1;
 
590
    errno = e;
 
591
    goto mandos_end;
532
592
  }
533
593
  
534
 
  if(debug){
535
 
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
536
 
      perror("if_indextoname");
537
 
      return -1;
538
 
    }
539
 
    fprintf(stderr, "Binding to interface %s\n", interface);
 
594
  if(quit_now){
 
595
    errno = EINTR;
 
596
    goto mandos_end;
540
597
  }
541
598
  
542
599
  memset(&to, 0, sizeof(to));
543
 
  to.in6.sin6_family = AF_INET6;
544
 
  /* It would be nice to have a way to detect if we were passed an
545
 
     IPv4 address here.   Now we assume an IPv6 address. */
546
 
  ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
547
 
  if (ret < 0 ){
 
600
  if(af == AF_INET6){
 
601
    to.in6.sin6_family = (sa_family_t)af;
 
602
    ret = inet_pton(af, ip, &to.in6.sin6_addr);
 
603
  } else {                      /* IPv4 */
 
604
    to.in.sin_family = (sa_family_t)af;
 
605
    ret = inet_pton(af, ip, &to.in.sin_addr);
 
606
  }
 
607
  if(ret < 0 ){
 
608
    int e = errno;
548
609
    perror("inet_pton");
549
 
    return -1;
 
610
    errno = e;
 
611
    goto mandos_end;
550
612
  }
551
613
  if(ret == 0){
 
614
    int e = errno;
552
615
    fprintf(stderr, "Bad address: %s\n", ip);
553
 
    return -1;
554
 
  }
555
 
  to.in6.sin6_port = htons(port); /* Spurious warning */
 
616
    errno = e;
 
617
    goto mandos_end;
 
618
  }
 
619
  if(af == AF_INET6){
 
620
    to.in6.sin6_port = htons(port); /* Spurious warnings from
 
621
                                       -Wconversion and
 
622
                                       -Wunreachable-code */
 
623
    
 
624
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
 
625
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
 
626
                              -Wunreachable-code*/
 
627
      if(if_index == AVAHI_IF_UNSPEC){
 
628
        fprintf(stderr, "An IPv6 link-local address is incomplete"
 
629
                " without a network interface\n");
 
630
        errno = EINVAL;
 
631
        goto mandos_end;
 
632
      }
 
633
      /* Set the network interface number as scope */
 
634
      to.in6.sin6_scope_id = (uint32_t)if_index;
 
635
    }
 
636
  } else {
 
637
    to.in.sin_port = htons(port); /* Spurious warnings from
 
638
                                     -Wconversion and
 
639
                                     -Wunreachable-code */
 
640
  }
556
641
  
557
 
  to.in6.sin6_scope_id = (uint32_t)if_index;
 
642
  if(quit_now){
 
643
    errno = EINTR;
 
644
    goto mandos_end;
 
645
  }
558
646
  
559
647
  if(debug){
560
 
    fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
561
 
            port);
562
 
    char addrstr[INET6_ADDRSTRLEN] = "";
563
 
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
564
 
                 sizeof(addrstr)) == NULL){
 
648
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
 
649
      char interface[IF_NAMESIZE];
 
650
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
 
651
        perror("if_indextoname");
 
652
      } else {
 
653
        fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
 
654
                ip, interface, port);
 
655
      }
 
656
    } else {
 
657
      fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
 
658
              port);
 
659
    }
 
660
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
 
661
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
 
662
    const char *pcret;
 
663
    if(af == AF_INET6){
 
664
      pcret = inet_ntop(af, &(to.in6.sin6_addr), addrstr,
 
665
                        sizeof(addrstr));
 
666
    } else {
 
667
      pcret = inet_ntop(af, &(to.in.sin_addr), addrstr,
 
668
                        sizeof(addrstr));
 
669
    }
 
670
    if(pcret == NULL){
565
671
      perror("inet_ntop");
566
672
    } else {
567
673
      if(strcmp(addrstr, ip) != 0){
570
676
    }
571
677
  }
572
678
  
573
 
  ret = connect(tcp_sd, &to.in, sizeof(to));
574
 
  if (ret < 0){
575
 
    perror("connect");
576
 
    return -1;
 
679
  if(quit_now){
 
680
    errno = EINTR;
 
681
    goto mandos_end;
 
682
  }
 
683
  
 
684
  if(af == AF_INET6){
 
685
    ret = connect(tcp_sd, &to.in6, sizeof(to));
 
686
  } else {
 
687
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
 
688
  }
 
689
  if(ret < 0){
 
690
    if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
 
691
      int e = errno;
 
692
      perror("connect");
 
693
      errno = e;
 
694
    }
 
695
    goto mandos_end;
 
696
  }
 
697
  
 
698
  if(quit_now){
 
699
    errno = EINTR;
 
700
    goto mandos_end;
577
701
  }
578
702
  
579
703
  const char *out = mandos_protocol_version;
580
704
  written = 0;
581
 
  while (true){
 
705
  while(true){
582
706
    size_t out_size = strlen(out);
583
 
    ret = TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
 
707
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
584
708
                                   out_size - written));
585
 
    if (ret == -1){
 
709
    if(ret == -1){
 
710
      int e = errno;
586
711
      perror("write");
587
 
      retval = -1;
 
712
      errno = e;
588
713
      goto mandos_end;
589
714
    }
590
715
    written += (size_t)ret;
591
716
    if(written < out_size){
592
717
      continue;
593
718
    } else {
594
 
      if (out == mandos_protocol_version){
 
719
      if(out == mandos_protocol_version){
595
720
        written = 0;
596
721
        out = "\r\n";
597
722
      } else {
598
723
        break;
599
724
      }
600
725
    }
 
726
  
 
727
    if(quit_now){
 
728
      errno = EINTR;
 
729
      goto mandos_end;
 
730
    }
601
731
  }
602
732
  
603
733
  if(debug){
604
734
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
605
735
  }
606
736
  
607
 
  gnutls_transport_set_ptr (session, (gnutls_transport_ptr_t) tcp_sd);
608
 
  
609
 
  do{
610
 
    ret = gnutls_handshake (session);
 
737
  if(quit_now){
 
738
    errno = EINTR;
 
739
    goto mandos_end;
 
740
  }
 
741
  
 
742
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
 
743
  
 
744
  if(quit_now){
 
745
    errno = EINTR;
 
746
    goto mandos_end;
 
747
  }
 
748
  
 
749
  do {
 
750
    ret = gnutls_handshake(session);
 
751
    if(quit_now){
 
752
      errno = EINTR;
 
753
      goto mandos_end;
 
754
    }
611
755
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
612
756
  
613
 
  if (ret != GNUTLS_E_SUCCESS){
 
757
  if(ret != GNUTLS_E_SUCCESS){
614
758
    if(debug){
615
759
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
616
 
      gnutls_perror (ret);
 
760
      gnutls_perror(ret);
617
761
    }
618
 
    retval = -1;
 
762
    errno = EPROTO;
619
763
    goto mandos_end;
620
764
  }
621
765
  
622
766
  /* Read OpenPGP packet that contains the wanted password */
623
767
  
624
768
  if(debug){
625
 
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
 
769
    fprintf(stderr, "Retrieving OpenPGP encrypted password from %s\n",
626
770
            ip);
627
771
  }
628
772
  
629
773
  while(true){
630
 
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
 
774
    
 
775
    if(quit_now){
 
776
      errno = EINTR;
 
777
      goto mandos_end;
 
778
    }
 
779
    
 
780
    buffer_capacity = incbuffer(&buffer, buffer_length,
631
781
                                   buffer_capacity);
632
 
    if (buffer_capacity == 0){
633
 
      perror("adjustbuffer");
634
 
      retval = -1;
635
 
      goto mandos_end;
636
 
    }
637
 
    
638
 
    ret = gnutls_record_recv(session, buffer+buffer_length,
639
 
                             BUFFER_SIZE);
640
 
    if (ret == 0){
 
782
    if(buffer_capacity == 0){
 
783
      int e = errno;
 
784
      perror("incbuffer");
 
785
      errno = e;
 
786
      goto mandos_end;
 
787
    }
 
788
    
 
789
    if(quit_now){
 
790
      errno = EINTR;
 
791
      goto mandos_end;
 
792
    }
 
793
    
 
794
    sret = gnutls_record_recv(session, buffer+buffer_length,
 
795
                              BUFFER_SIZE);
 
796
    if(sret == 0){
641
797
      break;
642
798
    }
643
 
    if (ret < 0){
644
 
      switch(ret){
 
799
    if(sret < 0){
 
800
      switch(sret){
645
801
      case GNUTLS_E_INTERRUPTED:
646
802
      case GNUTLS_E_AGAIN:
647
803
        break;
648
804
      case GNUTLS_E_REHANDSHAKE:
649
 
        do{
650
 
          ret = gnutls_handshake (session);
 
805
        do {
 
806
          ret = gnutls_handshake(session);
 
807
          
 
808
          if(quit_now){
 
809
            errno = EINTR;
 
810
            goto mandos_end;
 
811
          }
651
812
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
652
 
        if (ret < 0){
 
813
        if(ret < 0){
653
814
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
654
 
          gnutls_perror (ret);
655
 
          retval = -1;
 
815
          gnutls_perror(ret);
 
816
          errno = EPROTO;
656
817
          goto mandos_end;
657
818
        }
658
819
        break;
659
820
      default:
660
821
        fprintf(stderr, "Unknown error while reading data from"
661
822
                " encrypted session with Mandos server\n");
662
 
        retval = -1;
663
 
        gnutls_bye (session, GNUTLS_SHUT_RDWR);
 
823
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
824
        errno = EIO;
664
825
        goto mandos_end;
665
826
      }
666
827
    } else {
667
 
      buffer_length += (size_t) ret;
 
828
      buffer_length += (size_t) sret;
668
829
    }
669
830
  }
670
831
  
672
833
    fprintf(stderr, "Closing TLS session\n");
673
834
  }
674
835
  
675
 
  gnutls_bye (session, GNUTLS_SHUT_RDWR);
676
 
  
677
 
  if (buffer_length > 0){
678
 
    decrypted_buffer_size = pgp_packet_decrypt(mc, buffer,
 
836
  if(quit_now){
 
837
    errno = EINTR;
 
838
    goto mandos_end;
 
839
  }
 
840
  
 
841
  do {
 
842
    ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
843
    if(quit_now){
 
844
      errno = EINTR;
 
845
      goto mandos_end;
 
846
    }
 
847
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
 
848
  
 
849
  if(buffer_length > 0){
 
850
    ssize_t decrypted_buffer_size;
 
851
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
679
852
                                               buffer_length,
680
853
                                               &decrypted_buffer);
681
 
    if (decrypted_buffer_size >= 0){
 
854
    if(decrypted_buffer_size >= 0){
 
855
      
682
856
      written = 0;
683
857
      while(written < (size_t) decrypted_buffer_size){
684
 
        ret = (int)fwrite (decrypted_buffer + written, 1,
685
 
                           (size_t)decrypted_buffer_size - written,
686
 
                           stdout);
 
858
        if(quit_now){
 
859
          errno = EINTR;
 
860
          goto mandos_end;
 
861
        }
 
862
        
 
863
        ret = (int)fwrite(decrypted_buffer + written, 1,
 
864
                          (size_t)decrypted_buffer_size - written,
 
865
                          stdout);
687
866
        if(ret == 0 and ferror(stdout)){
 
867
          int e = errno;
688
868
          if(debug){
689
869
            fprintf(stderr, "Error writing encrypted data: %s\n",
690
870
                    strerror(errno));
691
871
          }
692
 
          retval = -1;
693
 
          break;
 
872
          errno = e;
 
873
          goto mandos_end;
694
874
        }
695
875
        written += (size_t)ret;
696
876
      }
697
 
      free(decrypted_buffer);
698
 
    } else {
699
 
      retval = -1;
 
877
      retval = 0;
700
878
    }
701
 
  } else {
702
 
    retval = -1;
703
879
  }
704
880
  
705
881
  /* Shutdown procedure */
706
882
  
707
883
 mandos_end:
708
 
  free(buffer);
709
 
  ret = TEMP_FAILURE_RETRY(close(tcp_sd));
710
 
  if(ret == -1){
711
 
    perror("close");
 
884
  {
 
885
    int e = errno;
 
886
    free(decrypted_buffer);
 
887
    free(buffer);
 
888
    if(tcp_sd >= 0){
 
889
      ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
890
    }
 
891
    if(ret == -1){
 
892
      if(e == 0){
 
893
        e = errno;
 
894
      }
 
895
      perror("close");
 
896
    }
 
897
    gnutls_deinit(session);
 
898
    if(quit_now){
 
899
      e = EINTR;
 
900
      retval = -1;
 
901
    }
 
902
    errno = e;
712
903
  }
713
 
  gnutls_deinit (session);
714
904
  return retval;
715
905
}
716
906
 
717
907
static void resolve_callback(AvahiSServiceResolver *r,
718
908
                             AvahiIfIndex interface,
719
 
                             AVAHI_GCC_UNUSED AvahiProtocol protocol,
 
909
                             AvahiProtocol proto,
720
910
                             AvahiResolverEvent event,
721
911
                             const char *name,
722
912
                             const char *type,
727
917
                             AVAHI_GCC_UNUSED AvahiStringList *txt,
728
918
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
729
919
                             flags,
730
 
                             void* userdata) {
731
 
  mandos_context *mc = userdata;
 
920
                             AVAHI_GCC_UNUSED void* userdata){
732
921
  assert(r);
733
922
  
734
923
  /* Called whenever a service has been resolved successfully or
735
924
     timed out */
736
925
  
737
 
  switch (event) {
 
926
  if(quit_now){
 
927
    return;
 
928
  }
 
929
  
 
930
  switch(event){
738
931
  default:
739
932
  case AVAHI_RESOLVER_FAILURE:
740
933
    fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
741
934
            " of type '%s' in domain '%s': %s\n", name, type, domain,
742
 
            avahi_strerror(avahi_server_errno(mc->server)));
 
935
            avahi_strerror(avahi_server_errno(mc.server)));
743
936
    break;
744
937
    
745
938
  case AVAHI_RESOLVER_FOUND:
748
941
      avahi_address_snprint(ip, sizeof(ip), address);
749
942
      if(debug){
750
943
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
751
 
                PRIu16 ") on port %d\n", name, host_name, ip,
752
 
                interface, port);
 
944
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
 
945
                ip, (intmax_t)interface, port);
753
946
      }
754
 
      int ret = start_mandos_communication(ip, port, interface, mc);
755
 
      if (ret == 0){
756
 
        avahi_simple_poll_quit(mc->simple_poll);
 
947
      int ret = start_mandos_communication(ip, port, interface,
 
948
                                           avahi_proto_to_af(proto));
 
949
      if(ret == 0){
 
950
        avahi_simple_poll_quit(mc.simple_poll);
757
951
      }
758
952
    }
759
953
  }
760
954
  avahi_s_service_resolver_free(r);
761
955
}
762
956
 
763
 
static void browse_callback( AvahiSServiceBrowser *b,
764
 
                             AvahiIfIndex interface,
765
 
                             AvahiProtocol protocol,
766
 
                             AvahiBrowserEvent event,
767
 
                             const char *name,
768
 
                             const char *type,
769
 
                             const char *domain,
770
 
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
771
 
                             flags,
772
 
                             void* userdata) {
773
 
  mandos_context *mc = userdata;
 
957
static void browse_callback(AvahiSServiceBrowser *b,
 
958
                            AvahiIfIndex interface,
 
959
                            AvahiProtocol protocol,
 
960
                            AvahiBrowserEvent event,
 
961
                            const char *name,
 
962
                            const char *type,
 
963
                            const char *domain,
 
964
                            AVAHI_GCC_UNUSED AvahiLookupResultFlags
 
965
                            flags,
 
966
                            AVAHI_GCC_UNUSED void* userdata){
774
967
  assert(b);
775
968
  
776
969
  /* Called whenever a new services becomes available on the LAN or
777
970
     is removed from the LAN */
778
971
  
779
 
  switch (event) {
 
972
  if(quit_now){
 
973
    return;
 
974
  }
 
975
  
 
976
  switch(event){
780
977
  default:
781
978
  case AVAHI_BROWSER_FAILURE:
782
979
    
783
980
    fprintf(stderr, "(Avahi browser) %s\n",
784
 
            avahi_strerror(avahi_server_errno(mc->server)));
785
 
    avahi_simple_poll_quit(mc->simple_poll);
 
981
            avahi_strerror(avahi_server_errno(mc.server)));
 
982
    avahi_simple_poll_quit(mc.simple_poll);
786
983
    return;
787
984
    
788
985
  case AVAHI_BROWSER_NEW:
791
988
       the callback function is called the Avahi server will free the
792
989
       resolver for us. */
793
990
    
794
 
    if (!(avahi_s_service_resolver_new(mc->server, interface,
795
 
                                       protocol, name, type, domain,
796
 
                                       AVAHI_PROTO_INET6, 0,
797
 
                                       resolve_callback, mc)))
 
991
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
 
992
                                    name, type, domain, protocol, 0,
 
993
                                    resolve_callback, NULL) == NULL)
798
994
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
799
 
              name, avahi_strerror(avahi_server_errno(mc->server)));
 
995
              name, avahi_strerror(avahi_server_errno(mc.server)));
800
996
    break;
801
997
    
802
998
  case AVAHI_BROWSER_REMOVE:
811
1007
  }
812
1008
}
813
1009
 
 
1010
/* stop main loop after sigterm has been called */
 
1011
static void handle_sigterm(int sig){
 
1012
  if(quit_now){
 
1013
    return;
 
1014
  }
 
1015
  quit_now = 1;
 
1016
  signal_received = sig;
 
1017
  int old_errno = errno;
 
1018
  if(mc.simple_poll != NULL){
 
1019
    avahi_simple_poll_quit(mc.simple_poll);
 
1020
  }
 
1021
  errno = old_errno;
 
1022
}
 
1023
 
 
1024
/* 
 
1025
 * This function determines if a directory entry in /sys/class/net
 
1026
 * corresponds to an acceptable network device.
 
1027
 * (This function is passed to scandir(3) as a filter function.)
 
1028
 */
 
1029
int good_interface(const struct dirent *if_entry){
 
1030
  ssize_t ssret;
 
1031
  char *flagname = NULL;
 
1032
  if(if_entry->d_name[0] == '.'){
 
1033
    return 0;
 
1034
  }
 
1035
  int ret = asprintf(&flagname, "%s/%s/flags", sys_class_net,
 
1036
                     if_entry->d_name);
 
1037
  if(ret < 0){
 
1038
    perror("asprintf");
 
1039
    return 0;
 
1040
  }
 
1041
  int flags_fd = (int)TEMP_FAILURE_RETRY(open(flagname, O_RDONLY));
 
1042
  if(flags_fd == -1){
 
1043
    perror("open");
 
1044
    free(flagname);
 
1045
    return 0;
 
1046
  }
 
1047
  free(flagname);
 
1048
  typedef short ifreq_flags;    /* ifreq.ifr_flags in netdevice(7) */
 
1049
  /* read line from flags_fd */
 
1050
  ssize_t to_read = 2+(sizeof(ifreq_flags)*2)+1; /* "0x1003\n" */
 
1051
  char *flagstring = malloc((size_t)to_read+1); /* +1 for final \0 */
 
1052
  flagstring[(size_t)to_read] = '\0';
 
1053
  if(flagstring == NULL){
 
1054
    perror("malloc");
 
1055
    close(flags_fd);
 
1056
    return 0;
 
1057
  }
 
1058
  while(to_read > 0){
 
1059
    ssret = (ssize_t)TEMP_FAILURE_RETRY(read(flags_fd, flagstring,
 
1060
                                             (size_t)to_read));
 
1061
    if(ssret == -1){
 
1062
      perror("read");
 
1063
      free(flagstring);
 
1064
      close(flags_fd);
 
1065
      return 0;
 
1066
    }
 
1067
    to_read -= ssret;
 
1068
    if(ssret == 0){
 
1069
      break;
 
1070
    }
 
1071
  }
 
1072
  close(flags_fd);
 
1073
  intmax_t tmpmax;
 
1074
  char *tmp;
 
1075
  errno = 0;
 
1076
  tmpmax = strtoimax(flagstring, &tmp, 0);
 
1077
  if(errno != 0 or tmp == flagstring or (*tmp != '\0'
 
1078
                                         and not (isspace(*tmp)))
 
1079
     or tmpmax != (ifreq_flags)tmpmax){
 
1080
    if(debug){
 
1081
      fprintf(stderr, "Invalid flags \"%s\" for interface \"%s\"\n",
 
1082
              flagstring, if_entry->d_name);
 
1083
    }
 
1084
    free(flagstring);
 
1085
    return 0;
 
1086
  }
 
1087
  free(flagstring);
 
1088
  ifreq_flags flags = (ifreq_flags)tmpmax;
 
1089
  /* Reject the loopback device */
 
1090
  if(flags & IFF_LOOPBACK){
 
1091
    if(debug){
 
1092
      fprintf(stderr, "Rejecting loopback interface \"%s\"\n",
 
1093
              if_entry->d_name);
 
1094
    }
 
1095
    return 0;
 
1096
  }
 
1097
  /* Accept point-to-point devices only if connect_to is specified */
 
1098
  if(connect_to != NULL and (flags & IFF_POINTOPOINT)){
 
1099
    if(debug){
 
1100
      fprintf(stderr, "Accepting point-to-point interface \"%s\"\n",
 
1101
              if_entry->d_name);
 
1102
    }
 
1103
    return 1;
 
1104
  }
 
1105
  /* Otherwise, reject non-broadcast-capable devices */
 
1106
  if(not (flags & IFF_BROADCAST)){
 
1107
    if(debug){
 
1108
      fprintf(stderr, "Rejecting non-broadcast interface \"%s\"\n",
 
1109
              if_entry->d_name);
 
1110
    }
 
1111
    return 0;
 
1112
  }
 
1113
  /* Reject non-ARP interfaces (including dummy interfaces) */
 
1114
  if(flags & IFF_NOARP){
 
1115
    if(debug){
 
1116
      fprintf(stderr, "Rejecting non-ARP interface \"%s\"\n",
 
1117
              if_entry->d_name);
 
1118
    }
 
1119
    return 0;
 
1120
  }
 
1121
  /* Accept this device */
 
1122
  if(debug){
 
1123
    fprintf(stderr, "Interface \"%s\" is acceptable\n",
 
1124
            if_entry->d_name);
 
1125
  }
 
1126
  return 1;
 
1127
}
 
1128
 
814
1129
int main(int argc, char *argv[]){
815
 
    AvahiSServiceBrowser *sb = NULL;
816
 
    int error;
817
 
    int ret;
818
 
    int exitcode = EXIT_SUCCESS;
819
 
    const char *interface = "eth0";
820
 
    struct ifreq network;
821
 
    int sd;
822
 
    uid_t uid;
823
 
    gid_t gid;
824
 
    char *connect_to = NULL;
825
 
    char tempdir[] = "/tmp/mandosXXXXXX";
826
 
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
827
 
    const char *seckey = PATHDIR "/" SECKEY;
828
 
    const char *pubkey = PATHDIR "/" PUBKEY;
829
 
    
830
 
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
831
 
                          .dh_bits = 1024, .priority = "SECURE256"
832
 
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
833
 
    bool gnutls_initalized = false;
834
 
    bool gpgme_initalized = false;
835
 
    
836
 
    {
837
 
      struct argp_option options[] = {
838
 
        { .name = "debug", .key = 128,
839
 
          .doc = "Debug mode", .group = 3 },
840
 
        { .name = "connect", .key = 'c',
841
 
          .arg = "ADDRESS:PORT",
842
 
          .doc = "Connect directly to a specific Mandos server",
843
 
          .group = 1 },
844
 
        { .name = "interface", .key = 'i',
845
 
          .arg = "NAME",
846
 
          .doc = "Interface that will be used to search for Mandos"
847
 
          " servers",
848
 
          .group = 1 },
849
 
        { .name = "seckey", .key = 's',
850
 
          .arg = "FILE",
851
 
          .doc = "OpenPGP secret key file base name",
852
 
          .group = 1 },
853
 
        { .name = "pubkey", .key = 'p',
854
 
          .arg = "FILE",
855
 
          .doc = "OpenPGP public key file base name",
856
 
          .group = 2 },
857
 
        { .name = "dh-bits", .key = 129,
858
 
          .arg = "BITS",
859
 
          .doc = "Bit length of the prime number used in the"
860
 
          " Diffie-Hellman key exchange",
861
 
          .group = 2 },
862
 
        { .name = "priority", .key = 130,
863
 
          .arg = "STRING",
864
 
          .doc = "GnuTLS priority string for the TLS handshake",
865
 
          .group = 1 },
866
 
        { .name = NULL }
867
 
      };
868
 
      
869
 
      error_t parse_opt (int key, char *arg,
870
 
                         struct argp_state *state) {
871
 
        /* Get the INPUT argument from `argp_parse', which we know is
872
 
           a pointer to our plugin list pointer. */
873
 
        switch (key) {
874
 
        case 128:               /* --debug */
875
 
          debug = true;
876
 
          break;
877
 
        case 'c':               /* --connect */
878
 
          connect_to = arg;
879
 
          break;
880
 
        case 'i':               /* --interface */
881
 
          interface = arg;
882
 
          break;
883
 
        case 's':               /* --seckey */
884
 
          seckey = arg;
885
 
          break;
886
 
        case 'p':               /* --pubkey */
887
 
          pubkey = arg;
888
 
          break;
889
 
        case 129:               /* --dh-bits */
890
 
          errno = 0;
891
 
          mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
892
 
          if (errno){
893
 
            perror("strtol");
894
 
            exit(EXIT_FAILURE);
895
 
          }
896
 
          break;
897
 
        case 130:               /* --priority */
898
 
          mc.priority = arg;
899
 
          break;
900
 
        case ARGP_KEY_ARG:
901
 
          argp_usage (state);
902
 
        case ARGP_KEY_END:
903
 
          break;
904
 
        default:
905
 
          return ARGP_ERR_UNKNOWN;
906
 
        }
907
 
        return 0;
908
 
      }
909
 
      
910
 
      struct argp argp = { .options = options, .parser = parse_opt,
911
 
                           .args_doc = "",
912
 
                           .doc = "Mandos client -- Get and decrypt"
913
 
                           " passwords from a Mandos server" };
914
 
      ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
915
 
      if (ret == ARGP_ERR_UNKNOWN){
916
 
        fprintf(stderr, "Unknown error while parsing arguments\n");
917
 
        exitcode = EXIT_FAILURE;
918
 
        goto end;
919
 
      }
920
 
    }
921
 
    
922
 
    /* If the interface is down, bring it up */
923
 
    {
924
 
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
925
 
      if(sd < 0) {
926
 
        perror("socket");
927
 
        exitcode = EXIT_FAILURE;
928
 
        goto end;
929
 
      }
930
 
      strcpy(network.ifr_name, interface);
931
 
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
932
 
      if(ret == -1){
933
 
        perror("ioctl SIOCGIFFLAGS");
934
 
        exitcode = EXIT_FAILURE;
935
 
        goto end;
936
 
      }
937
 
      if((network.ifr_flags & IFF_UP) == 0){
938
 
        network.ifr_flags |= IFF_UP;
939
 
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
940
 
        if(ret == -1){
941
 
          perror("ioctl SIOCSIFFLAGS");
942
 
          exitcode = EXIT_FAILURE;
943
 
          goto end;
944
 
        }
945
 
      }
946
 
      ret = TEMP_FAILURE_RETRY(close(sd));
947
 
      if(ret == -1){
948
 
        perror("close");
949
 
      }
950
 
    }
951
 
    
952
 
    uid = getuid();
953
 
    gid = getgid();
954
 
    
955
 
    ret = setuid(uid);
956
 
    if (ret == -1){
957
 
      perror("setuid");
958
 
    }
959
 
    
960
 
    setgid(gid);
961
 
    if (ret == -1){
962
 
      perror("setgid");
963
 
    }
964
 
    
965
 
    ret = init_gnutls_global(&mc, pubkey, seckey);
966
 
    if (ret == -1){
967
 
      fprintf(stderr, "init_gnutls_global failed\n");
968
 
      exitcode = EXIT_FAILURE;
969
 
      goto end;
970
 
    } else {
971
 
      gnutls_initalized = true;
972
 
    }
973
 
    
974
 
    if(mkdtemp(tempdir) == NULL){
975
 
      perror("mkdtemp");
976
 
      tempdir[0] = '\0';
977
 
      goto end;
978
 
    }
979
 
    
980
 
    if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
981
 
      fprintf(stderr, "gpgme_initalized failed\n");
982
 
      exitcode = EXIT_FAILURE;
983
 
      goto end;
984
 
    } else {
985
 
      gpgme_initalized = true;
986
 
    }
987
 
    
 
1130
  AvahiSServiceBrowser *sb = NULL;
 
1131
  int error;
 
1132
  int ret;
 
1133
  intmax_t tmpmax;
 
1134
  char *tmp;
 
1135
  int exitcode = EXIT_SUCCESS;
 
1136
  const char *interface = "";
 
1137
  struct ifreq network;
 
1138
  int sd = -1;
 
1139
  bool take_down_interface = false;
 
1140
  uid_t uid;
 
1141
  gid_t gid;
 
1142
  char tempdir[] = "/tmp/mandosXXXXXX";
 
1143
  bool tempdir_created = false;
 
1144
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
 
1145
  const char *seckey = PATHDIR "/" SECKEY;
 
1146
  const char *pubkey = PATHDIR "/" PUBKEY;
 
1147
  
 
1148
  bool gnutls_initialized = false;
 
1149
  bool gpgme_initialized = false;
 
1150
  float delay = 2.5f;
 
1151
  
 
1152
  struct sigaction old_sigterm_action = { .sa_handler = SIG_DFL };
 
1153
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
 
1154
  
 
1155
  uid = getuid();
 
1156
  gid = getgid();
 
1157
  
 
1158
  /* Lower any group privileges we might have, just to be safe */
 
1159
  errno = 0;
 
1160
  ret = setgid(gid);
 
1161
  if(ret == -1){
 
1162
    perror("setgid");
 
1163
  }
 
1164
  
 
1165
  /* Lower user privileges (temporarily) */
 
1166
  errno = 0;
 
1167
  ret = seteuid(uid);
 
1168
  if(ret == -1){
 
1169
    perror("seteuid");
 
1170
  }
 
1171
  
 
1172
  if(quit_now){
 
1173
    goto end;
 
1174
  }
 
1175
  
 
1176
  {
 
1177
    struct argp_option options[] = {
 
1178
      { .name = "debug", .key = 128,
 
1179
        .doc = "Debug mode", .group = 3 },
 
1180
      { .name = "connect", .key = 'c',
 
1181
        .arg = "ADDRESS:PORT",
 
1182
        .doc = "Connect directly to a specific Mandos server",
 
1183
        .group = 1 },
 
1184
      { .name = "interface", .key = 'i',
 
1185
        .arg = "NAME",
 
1186
        .doc = "Network interface that will be used to search for"
 
1187
        " Mandos servers",
 
1188
        .group = 1 },
 
1189
      { .name = "seckey", .key = 's',
 
1190
        .arg = "FILE",
 
1191
        .doc = "OpenPGP secret key file base name",
 
1192
        .group = 1 },
 
1193
      { .name = "pubkey", .key = 'p',
 
1194
        .arg = "FILE",
 
1195
        .doc = "OpenPGP public key file base name",
 
1196
        .group = 2 },
 
1197
      { .name = "dh-bits", .key = 129,
 
1198
        .arg = "BITS",
 
1199
        .doc = "Bit length of the prime number used in the"
 
1200
        " Diffie-Hellman key exchange",
 
1201
        .group = 2 },
 
1202
      { .name = "priority", .key = 130,
 
1203
        .arg = "STRING",
 
1204
        .doc = "GnuTLS priority string for the TLS handshake",
 
1205
        .group = 1 },
 
1206
      { .name = "delay", .key = 131,
 
1207
        .arg = "SECONDS",
 
1208
        .doc = "Maximum delay to wait for interface startup",
 
1209
        .group = 2 },
 
1210
      /*
 
1211
       * These reproduce what we would get without ARGP_NO_HELP
 
1212
       */
 
1213
      { .name = "help", .key = '?',
 
1214
        .doc = "Give this help list", .group = -1 },
 
1215
      { .name = "usage", .key = -3,
 
1216
        .doc = "Give a short usage message", .group = -1 },
 
1217
      { .name = "version", .key = 'V',
 
1218
        .doc = "Print program version", .group = -1 },
 
1219
      { .name = NULL }
 
1220
    };
 
1221
    
 
1222
    error_t parse_opt(int key, char *arg,
 
1223
                      struct argp_state *state){
 
1224
      errno = 0;
 
1225
      switch(key){
 
1226
      case 128:                 /* --debug */
 
1227
        debug = true;
 
1228
        break;
 
1229
      case 'c':                 /* --connect */
 
1230
        connect_to = arg;
 
1231
        break;
 
1232
      case 'i':                 /* --interface */
 
1233
        interface = arg;
 
1234
        break;
 
1235
      case 's':                 /* --seckey */
 
1236
        seckey = arg;
 
1237
        break;
 
1238
      case 'p':                 /* --pubkey */
 
1239
        pubkey = arg;
 
1240
        break;
 
1241
      case 129:                 /* --dh-bits */
 
1242
        errno = 0;
 
1243
        tmpmax = strtoimax(arg, &tmp, 10);
 
1244
        if(errno != 0 or tmp == arg or *tmp != '\0'
 
1245
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
 
1246
          argp_error(state, "Bad number of DH bits");
 
1247
        }
 
1248
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
 
1249
        break;
 
1250
      case 130:                 /* --priority */
 
1251
        mc.priority = arg;
 
1252
        break;
 
1253
      case 131:                 /* --delay */
 
1254
        errno = 0;
 
1255
        delay = strtof(arg, &tmp);
 
1256
        if(errno != 0 or tmp == arg or *tmp != '\0'){
 
1257
          argp_error(state, "Bad delay");
 
1258
        }
 
1259
        break;
 
1260
        /*
 
1261
         * These reproduce what we would get without ARGP_NO_HELP
 
1262
         */
 
1263
      case '?':                 /* --help */
 
1264
        argp_state_help(state, state->out_stream,
 
1265
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
 
1266
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
 
1267
      case -3:                  /* --usage */
 
1268
        argp_state_help(state, state->out_stream,
 
1269
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
 
1270
      case 'V':                 /* --version */
 
1271
        fprintf(state->out_stream, "%s\n", argp_program_version);
 
1272
        exit(argp_err_exit_status);
 
1273
        break;
 
1274
      default:
 
1275
        return ARGP_ERR_UNKNOWN;
 
1276
      }
 
1277
      return errno;
 
1278
    }
 
1279
    
 
1280
    struct argp argp = { .options = options, .parser = parse_opt,
 
1281
                         .args_doc = "",
 
1282
                         .doc = "Mandos client -- Get and decrypt"
 
1283
                         " passwords from a Mandos server" };
 
1284
    ret = argp_parse(&argp, argc, argv,
 
1285
                     ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
 
1286
    switch(ret){
 
1287
    case 0:
 
1288
      break;
 
1289
    case ENOMEM:
 
1290
    default:
 
1291
      errno = ret;
 
1292
      perror("argp_parse");
 
1293
      exitcode = EX_OSERR;
 
1294
      goto end;
 
1295
    case EINVAL:
 
1296
      exitcode = EX_USAGE;
 
1297
      goto end;
 
1298
    }
 
1299
  }
 
1300
  
 
1301
  if(not debug){
 
1302
    avahi_set_log_function(empty_log);
 
1303
  }
 
1304
 
 
1305
  if(interface[0] == '\0'){
 
1306
    struct dirent **direntries;
 
1307
    ret = scandir(sys_class_net, &direntries, good_interface,
 
1308
                  alphasort);
 
1309
    if(ret >= 1){
 
1310
      /* Pick the first good interface */
 
1311
      interface = strdup(direntries[0]->d_name);
 
1312
      if(debug){
 
1313
        fprintf(stderr, "Using interface \"%s\"\n", interface);
 
1314
      }
 
1315
      if(interface == NULL){
 
1316
        perror("malloc");
 
1317
        free(direntries);
 
1318
        exitcode = EXIT_FAILURE;
 
1319
        goto end;
 
1320
      }
 
1321
      free(direntries);
 
1322
    } else {
 
1323
      free(direntries);
 
1324
      fprintf(stderr, "Could not find a network interface\n");
 
1325
      exitcode = EXIT_FAILURE;
 
1326
      goto end;
 
1327
    }
 
1328
  }
 
1329
  
 
1330
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
 
1331
     from the signal handler */
 
1332
  /* Initialize the pseudo-RNG for Avahi */
 
1333
  srand((unsigned int) time(NULL));
 
1334
  mc.simple_poll = avahi_simple_poll_new();
 
1335
  if(mc.simple_poll == NULL){
 
1336
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
 
1337
    exitcode = EX_UNAVAILABLE;
 
1338
    goto end;
 
1339
  }
 
1340
  
 
1341
  sigemptyset(&sigterm_action.sa_mask);
 
1342
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
 
1343
  if(ret == -1){
 
1344
    perror("sigaddset");
 
1345
    exitcode = EX_OSERR;
 
1346
    goto end;
 
1347
  }
 
1348
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
 
1349
  if(ret == -1){
 
1350
    perror("sigaddset");
 
1351
    exitcode = EX_OSERR;
 
1352
    goto end;
 
1353
  }
 
1354
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
 
1355
  if(ret == -1){
 
1356
    perror("sigaddset");
 
1357
    exitcode = EX_OSERR;
 
1358
    goto end;
 
1359
  }
 
1360
  /* Need to check if the handler is SIG_IGN before handling:
 
1361
     | [[info:libc:Initial Signal Actions]] |
 
1362
     | [[info:libc:Basic Signal Handling]]  |
 
1363
  */
 
1364
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
 
1365
  if(ret == -1){
 
1366
    perror("sigaction");
 
1367
    return EX_OSERR;
 
1368
  }
 
1369
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1370
    ret = sigaction(SIGINT, &sigterm_action, NULL);
 
1371
    if(ret == -1){
 
1372
      perror("sigaction");
 
1373
      exitcode = EX_OSERR;
 
1374
      goto end;
 
1375
    }
 
1376
  }
 
1377
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
 
1378
  if(ret == -1){
 
1379
    perror("sigaction");
 
1380
    return EX_OSERR;
 
1381
  }
 
1382
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1383
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
 
1384
    if(ret == -1){
 
1385
      perror("sigaction");
 
1386
      exitcode = EX_OSERR;
 
1387
      goto end;
 
1388
    }
 
1389
  }
 
1390
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
 
1391
  if(ret == -1){
 
1392
    perror("sigaction");
 
1393
    return EX_OSERR;
 
1394
  }
 
1395
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1396
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
 
1397
    if(ret == -1){
 
1398
      perror("sigaction");
 
1399
      exitcode = EX_OSERR;
 
1400
      goto end;
 
1401
    }
 
1402
  }
 
1403
  
 
1404
  /* If the interface is down, bring it up */
 
1405
  if(strcmp(interface, "none") != 0){
988
1406
    if_index = (AvahiIfIndex) if_nametoindex(interface);
989
1407
    if(if_index == 0){
990
1408
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
991
 
      exit(EXIT_FAILURE);
992
 
    }
993
 
    
994
 
    if(connect_to != NULL){
995
 
      /* Connect directly, do not use Zeroconf */
996
 
      /* (Mainly meant for debugging) */
997
 
      char *address = strrchr(connect_to, ':');
998
 
      if(address == NULL){
999
 
        fprintf(stderr, "No colon in address\n");
1000
 
        exitcode = EXIT_FAILURE;
1001
 
        goto end;
1002
 
      }
1003
 
      errno = 0;
1004
 
      uint16_t port = (uint16_t) strtol(address+1, NULL, 10);
1005
 
      if(errno){
1006
 
        perror("Bad port number");
1007
 
        exitcode = EXIT_FAILURE;
1008
 
        goto end;
1009
 
      }
1010
 
      *address = '\0';
1011
 
      address = connect_to;
1012
 
      ret = start_mandos_communication(address, port, if_index, &mc);
1013
 
      if(ret < 0){
1014
 
        exitcode = EXIT_FAILURE;
1015
 
      } else {
1016
 
        exitcode = EXIT_SUCCESS;
1017
 
      }
1018
 
      goto end;
1019
 
    }
1020
 
    
1021
 
    if (not debug){
1022
 
      avahi_set_log_function(empty_log);
1023
 
    }
1024
 
    
1025
 
    /* Initialize the pseudo-RNG for Avahi */
1026
 
    srand((unsigned int) time(NULL));
1027
 
    
1028
 
    /* Allocate main Avahi loop object */
1029
 
    mc.simple_poll = avahi_simple_poll_new();
1030
 
    if (mc.simple_poll == NULL) {
1031
 
        fprintf(stderr, "Avahi: Failed to create simple poll"
1032
 
                " object.\n");
1033
 
        exitcode = EXIT_FAILURE;
1034
 
        goto end;
1035
 
    }
1036
 
    
1037
 
    {
1038
 
      AvahiServerConfig config;
1039
 
      /* Do not publish any local Zeroconf records */
1040
 
      avahi_server_config_init(&config);
1041
 
      config.publish_hinfo = 0;
1042
 
      config.publish_addresses = 0;
1043
 
      config.publish_workstation = 0;
1044
 
      config.publish_domain = 0;
1045
 
      
1046
 
      /* Allocate a new server */
1047
 
      mc.server = avahi_server_new(avahi_simple_poll_get
1048
 
                                   (mc.simple_poll), &config, NULL,
1049
 
                                   NULL, &error);
1050
 
      
1051
 
      /* Free the Avahi configuration data */
1052
 
      avahi_server_config_free(&config);
1053
 
    }
1054
 
    
1055
 
    /* Check if creating the Avahi server object succeeded */
1056
 
    if (mc.server == NULL) {
1057
 
        fprintf(stderr, "Failed to create Avahi server: %s\n",
1058
 
                avahi_strerror(error));
1059
 
        exitcode = EXIT_FAILURE;
1060
 
        goto end;
1061
 
    }
1062
 
    
1063
 
    /* Create the Avahi service browser */
1064
 
    sb = avahi_s_service_browser_new(mc.server, if_index,
1065
 
                                     AVAHI_PROTO_INET6,
1066
 
                                     "_mandos._tcp", NULL, 0,
1067
 
                                     browse_callback, &mc);
1068
 
    if (sb == NULL) {
1069
 
        fprintf(stderr, "Failed to create service browser: %s\n",
1070
 
                avahi_strerror(avahi_server_errno(mc.server)));
1071
 
        exitcode = EXIT_FAILURE;
1072
 
        goto end;
1073
 
    }
1074
 
    
1075
 
    /* Run the main loop */
1076
 
    
1077
 
    if (debug){
1078
 
      fprintf(stderr, "Starting Avahi loop search\n");
1079
 
    }
1080
 
    
1081
 
    avahi_simple_poll_loop(mc.simple_poll);
1082
 
    
 
1409
      exitcode = EX_UNAVAILABLE;
 
1410
      goto end;
 
1411
    }
 
1412
    
 
1413
    if(quit_now){
 
1414
      goto end;
 
1415
    }
 
1416
    
 
1417
    /* Re-raise priviliges */
 
1418
    errno = 0;
 
1419
    ret = seteuid(0);
 
1420
    if(ret == -1){
 
1421
      perror("seteuid");
 
1422
    }
 
1423
    
 
1424
#ifdef __linux__
 
1425
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
 
1426
       messages about the network interface to mess up the prompt */
 
1427
    ret = klogctl(8, NULL, 5);
 
1428
    bool restore_loglevel = true;
 
1429
    if(ret == -1){
 
1430
      restore_loglevel = false;
 
1431
      perror("klogctl");
 
1432
    }
 
1433
#endif  /* __linux__ */
 
1434
    
 
1435
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1436
    if(sd < 0){
 
1437
      perror("socket");
 
1438
      exitcode = EX_OSERR;
 
1439
#ifdef __linux__
 
1440
      if(restore_loglevel){
 
1441
        ret = klogctl(7, NULL, 0);
 
1442
        if(ret == -1){
 
1443
          perror("klogctl");
 
1444
        }
 
1445
      }
 
1446
#endif  /* __linux__ */
 
1447
      /* Lower privileges */
 
1448
      errno = 0;
 
1449
      ret = seteuid(uid);
 
1450
      if(ret == -1){
 
1451
        perror("seteuid");
 
1452
      }
 
1453
      goto end;
 
1454
    }
 
1455
    strcpy(network.ifr_name, interface);
 
1456
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1457
    if(ret == -1){
 
1458
      perror("ioctl SIOCGIFFLAGS");
 
1459
#ifdef __linux__
 
1460
      if(restore_loglevel){
 
1461
        ret = klogctl(7, NULL, 0);
 
1462
        if(ret == -1){
 
1463
          perror("klogctl");
 
1464
        }
 
1465
      }
 
1466
#endif  /* __linux__ */
 
1467
      exitcode = EX_OSERR;
 
1468
      /* Lower privileges */
 
1469
      errno = 0;
 
1470
      ret = seteuid(uid);
 
1471
      if(ret == -1){
 
1472
        perror("seteuid");
 
1473
      }
 
1474
      goto end;
 
1475
    }
 
1476
    if((network.ifr_flags & IFF_UP) == 0){
 
1477
      network.ifr_flags |= IFF_UP;
 
1478
      take_down_interface = true;
 
1479
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
1480
      if(ret == -1){
 
1481
        take_down_interface = false;
 
1482
        perror("ioctl SIOCSIFFLAGS +IFF_UP");
 
1483
        exitcode = EX_OSERR;
 
1484
#ifdef __linux__
 
1485
        if(restore_loglevel){
 
1486
          ret = klogctl(7, NULL, 0);
 
1487
          if(ret == -1){
 
1488
            perror("klogctl");
 
1489
          }
 
1490
        }
 
1491
#endif  /* __linux__ */
 
1492
        /* Lower privileges */
 
1493
        errno = 0;
 
1494
        ret = seteuid(uid);
 
1495
        if(ret == -1){
 
1496
          perror("seteuid");
 
1497
        }
 
1498
        goto end;
 
1499
      }
 
1500
    }
 
1501
    /* sleep checking until interface is running */
 
1502
    for(int i=0; i < delay * 4; i++){
 
1503
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1504
      if(ret == -1){
 
1505
        perror("ioctl SIOCGIFFLAGS");
 
1506
      } else if(network.ifr_flags & IFF_RUNNING){
 
1507
        break;
 
1508
      }
 
1509
      struct timespec sleeptime = { .tv_nsec = 250000000 };
 
1510
      ret = nanosleep(&sleeptime, NULL);
 
1511
      if(ret == -1 and errno != EINTR){
 
1512
        perror("nanosleep");
 
1513
      }
 
1514
    }
 
1515
    if(not take_down_interface){
 
1516
      /* We won't need the socket anymore */
 
1517
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1518
      if(ret == -1){
 
1519
        perror("close");
 
1520
      }
 
1521
    }
 
1522
#ifdef __linux__
 
1523
    if(restore_loglevel){
 
1524
      /* Restores kernel loglevel to default */
 
1525
      ret = klogctl(7, NULL, 0);
 
1526
      if(ret == -1){
 
1527
        perror("klogctl");
 
1528
      }
 
1529
    }
 
1530
#endif  /* __linux__ */
 
1531
    /* Lower privileges */
 
1532
    errno = 0;
 
1533
    if(take_down_interface){
 
1534
      /* Lower privileges */
 
1535
      ret = seteuid(uid);
 
1536
      if(ret == -1){
 
1537
        perror("seteuid");
 
1538
      }
 
1539
    } else {
 
1540
      /* Lower privileges permanently */
 
1541
      ret = setuid(uid);
 
1542
      if(ret == -1){
 
1543
        perror("setuid");
 
1544
      }
 
1545
    }
 
1546
  }
 
1547
  
 
1548
  if(quit_now){
 
1549
    goto end;
 
1550
  }
 
1551
  
 
1552
  ret = init_gnutls_global(pubkey, seckey);
 
1553
  if(ret == -1){
 
1554
    fprintf(stderr, "init_gnutls_global failed\n");
 
1555
    exitcode = EX_UNAVAILABLE;
 
1556
    goto end;
 
1557
  } else {
 
1558
    gnutls_initialized = true;
 
1559
  }
 
1560
  
 
1561
  if(quit_now){
 
1562
    goto end;
 
1563
  }
 
1564
  
 
1565
  tempdir_created = true;
 
1566
  if(mkdtemp(tempdir) == NULL){
 
1567
    tempdir_created = false;
 
1568
    perror("mkdtemp");
 
1569
    goto end;
 
1570
  }
 
1571
  
 
1572
  if(quit_now){
 
1573
    goto end;
 
1574
  }
 
1575
  
 
1576
  if(not init_gpgme(pubkey, seckey, tempdir)){
 
1577
    fprintf(stderr, "init_gpgme failed\n");
 
1578
    exitcode = EX_UNAVAILABLE;
 
1579
    goto end;
 
1580
  } else {
 
1581
    gpgme_initialized = true;
 
1582
  }
 
1583
  
 
1584
  if(quit_now){
 
1585
    goto end;
 
1586
  }
 
1587
  
 
1588
  if(connect_to != NULL){
 
1589
    /* Connect directly, do not use Zeroconf */
 
1590
    /* (Mainly meant for debugging) */
 
1591
    char *address = strrchr(connect_to, ':');
 
1592
    if(address == NULL){
 
1593
      fprintf(stderr, "No colon in address\n");
 
1594
      exitcode = EX_USAGE;
 
1595
      goto end;
 
1596
    }
 
1597
    
 
1598
    if(quit_now){
 
1599
      goto end;
 
1600
    }
 
1601
    
 
1602
    uint16_t port;
 
1603
    errno = 0;
 
1604
    tmpmax = strtoimax(address+1, &tmp, 10);
 
1605
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
 
1606
       or tmpmax != (uint16_t)tmpmax){
 
1607
      fprintf(stderr, "Bad port number\n");
 
1608
      exitcode = EX_USAGE;
 
1609
      goto end;
 
1610
    }
 
1611
  
 
1612
    if(quit_now){
 
1613
      goto end;
 
1614
    }
 
1615
    
 
1616
    port = (uint16_t)tmpmax;
 
1617
    *address = '\0';
 
1618
    address = connect_to;
 
1619
    /* Colon in address indicates IPv6 */
 
1620
    int af;
 
1621
    if(strchr(address, ':') != NULL){
 
1622
      af = AF_INET6;
 
1623
    } else {
 
1624
      af = AF_INET;
 
1625
    }
 
1626
    
 
1627
    if(quit_now){
 
1628
      goto end;
 
1629
    }
 
1630
 
 
1631
    while(not quit_now){
 
1632
      ret = start_mandos_communication(address, port, if_index, af);
 
1633
      if(quit_now or ret == 0){
 
1634
        break;
 
1635
      }
 
1636
      sleep(15);
 
1637
    };
 
1638
 
 
1639
    if (not quit_now){
 
1640
      exitcode = EXIT_SUCCESS;
 
1641
    }
 
1642
 
 
1643
    goto end;
 
1644
  }
 
1645
  
 
1646
  if(quit_now){
 
1647
    goto end;
 
1648
  }
 
1649
  
 
1650
  {
 
1651
    AvahiServerConfig config;
 
1652
    /* Do not publish any local Zeroconf records */
 
1653
    avahi_server_config_init(&config);
 
1654
    config.publish_hinfo = 0;
 
1655
    config.publish_addresses = 0;
 
1656
    config.publish_workstation = 0;
 
1657
    config.publish_domain = 0;
 
1658
    
 
1659
    /* Allocate a new server */
 
1660
    mc.server = avahi_server_new(avahi_simple_poll_get
 
1661
                                 (mc.simple_poll), &config, NULL,
 
1662
                                 NULL, &error);
 
1663
    
 
1664
    /* Free the Avahi configuration data */
 
1665
    avahi_server_config_free(&config);
 
1666
  }
 
1667
  
 
1668
  /* Check if creating the Avahi server object succeeded */
 
1669
  if(mc.server == NULL){
 
1670
    fprintf(stderr, "Failed to create Avahi server: %s\n",
 
1671
            avahi_strerror(error));
 
1672
    exitcode = EX_UNAVAILABLE;
 
1673
    goto end;
 
1674
  }
 
1675
  
 
1676
  if(quit_now){
 
1677
    goto end;
 
1678
  }
 
1679
  
 
1680
  /* Create the Avahi service browser */
 
1681
  sb = avahi_s_service_browser_new(mc.server, if_index,
 
1682
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
 
1683
                                   NULL, 0, browse_callback, NULL);
 
1684
  if(sb == NULL){
 
1685
    fprintf(stderr, "Failed to create service browser: %s\n",
 
1686
            avahi_strerror(avahi_server_errno(mc.server)));
 
1687
    exitcode = EX_UNAVAILABLE;
 
1688
    goto end;
 
1689
  }
 
1690
  
 
1691
  if(quit_now){
 
1692
    goto end;
 
1693
  }
 
1694
  
 
1695
  /* Run the main loop */
 
1696
  
 
1697
  if(debug){
 
1698
    fprintf(stderr, "Starting Avahi loop search\n");
 
1699
  }
 
1700
  
 
1701
  avahi_simple_poll_loop(mc.simple_poll);
 
1702
  
1083
1703
 end:
1084
 
    
1085
 
    if (debug){
1086
 
      fprintf(stderr, "%s exiting\n", argv[0]);
1087
 
    }
1088
 
    
1089
 
    /* Cleanup things */
1090
 
    if (sb != NULL)
1091
 
        avahi_s_service_browser_free(sb);
1092
 
    
1093
 
    if (mc.server != NULL)
1094
 
        avahi_server_free(mc.server);
1095
 
    
1096
 
    if (mc.simple_poll != NULL)
1097
 
        avahi_simple_poll_free(mc.simple_poll);
1098
 
    
1099
 
    if (gnutls_initalized){
1100
 
      gnutls_certificate_free_credentials(mc.cred);
1101
 
      gnutls_global_deinit ();
1102
 
      gnutls_dh_params_deinit(mc.dh_params);
1103
 
    }
1104
 
    
1105
 
    if(gpgme_initalized){
1106
 
      gpgme_release(mc.ctx);
1107
 
    }
1108
 
    
1109
 
    /* Removes the temp directory used by GPGME */
1110
 
    if(tempdir[0] != '\0'){
1111
 
      DIR *d;
1112
 
      struct dirent *direntry;
1113
 
      d = opendir(tempdir);
1114
 
      if(d == NULL){
 
1704
  
 
1705
  if(debug){
 
1706
    fprintf(stderr, "%s exiting\n", argv[0]);
 
1707
  }
 
1708
  
 
1709
  /* Cleanup things */
 
1710
  if(sb != NULL)
 
1711
    avahi_s_service_browser_free(sb);
 
1712
  
 
1713
  if(mc.server != NULL)
 
1714
    avahi_server_free(mc.server);
 
1715
  
 
1716
  if(mc.simple_poll != NULL)
 
1717
    avahi_simple_poll_free(mc.simple_poll);
 
1718
  
 
1719
  if(gnutls_initialized){
 
1720
    gnutls_certificate_free_credentials(mc.cred);
 
1721
    gnutls_global_deinit();
 
1722
    gnutls_dh_params_deinit(mc.dh_params);
 
1723
  }
 
1724
  
 
1725
  if(gpgme_initialized){
 
1726
    gpgme_release(mc.ctx);
 
1727
  }
 
1728
  
 
1729
  /* Take down the network interface */
 
1730
  if(take_down_interface){
 
1731
    /* Re-raise priviliges */
 
1732
    errno = 0;
 
1733
    ret = seteuid(0);
 
1734
    if(ret == -1){
 
1735
      perror("seteuid");
 
1736
    }
 
1737
    if(geteuid() == 0){
 
1738
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
1739
      if(ret == -1){
 
1740
        perror("ioctl SIOCGIFFLAGS");
 
1741
      } else if(network.ifr_flags & IFF_UP) {
 
1742
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
 
1743
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
1744
        if(ret == -1){
 
1745
          perror("ioctl SIOCSIFFLAGS -IFF_UP");
 
1746
        }
 
1747
      }
 
1748
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1749
      if(ret == -1){
 
1750
        perror("close");
 
1751
      }
 
1752
      /* Lower privileges permanently */
 
1753
      errno = 0;
 
1754
      ret = setuid(uid);
 
1755
      if(ret == -1){
 
1756
        perror("setuid");
 
1757
      }
 
1758
    }
 
1759
  }
 
1760
  
 
1761
  /* Removes the temp directory used by GPGME */
 
1762
  if(tempdir_created){
 
1763
    DIR *d;
 
1764
    struct dirent *direntry;
 
1765
    d = opendir(tempdir);
 
1766
    if(d == NULL){
 
1767
      if(errno != ENOENT){
1115
1768
        perror("opendir");
1116
 
      } else {
1117
 
        while(true){
1118
 
          direntry = readdir(d);
1119
 
          if(direntry == NULL){
1120
 
            break;
1121
 
          }
1122
 
          if (direntry->d_type == DT_REG){
1123
 
            char *fullname = NULL;
1124
 
            ret = asprintf(&fullname, "%s/%s", tempdir,
1125
 
                           direntry->d_name);
1126
 
            if(ret < 0){
1127
 
              perror("asprintf");
1128
 
              continue;
1129
 
            }
1130
 
            ret = unlink(fullname);
1131
 
            if(ret == -1){
1132
 
              fprintf(stderr, "unlink(\"%s\"): %s",
1133
 
                      fullname, strerror(errno));
1134
 
            }
1135
 
            free(fullname);
1136
 
          }
1137
 
        }
1138
 
        closedir(d);
1139
 
      }
1140
 
      ret = rmdir(tempdir);
1141
 
      if(ret == -1){
1142
 
        perror("rmdir");
1143
 
      }
1144
 
    }
1145
 
          
1146
 
    return exitcode;
 
1769
      }
 
1770
    } else {
 
1771
      while(true){
 
1772
        direntry = readdir(d);
 
1773
        if(direntry == NULL){
 
1774
          break;
 
1775
        }
 
1776
        /* Skip "." and ".." */
 
1777
        if(direntry->d_name[0] == '.'
 
1778
           and (direntry->d_name[1] == '\0'
 
1779
                or (direntry->d_name[1] == '.'
 
1780
                    and direntry->d_name[2] == '\0'))){
 
1781
          continue;
 
1782
        }
 
1783
        char *fullname = NULL;
 
1784
        ret = asprintf(&fullname, "%s/%s", tempdir,
 
1785
                       direntry->d_name);
 
1786
        if(ret < 0){
 
1787
          perror("asprintf");
 
1788
          continue;
 
1789
        }
 
1790
        ret = remove(fullname);
 
1791
        if(ret == -1){
 
1792
          fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
 
1793
                  strerror(errno));
 
1794
        }
 
1795
        free(fullname);
 
1796
      }
 
1797
      closedir(d);
 
1798
    }
 
1799
    ret = rmdir(tempdir);
 
1800
    if(ret == -1 and errno != ENOENT){
 
1801
      perror("rmdir");
 
1802
    }
 
1803
  }
 
1804
  
 
1805
  if(quit_now){
 
1806
    sigemptyset(&old_sigterm_action.sa_mask);
 
1807
    old_sigterm_action.sa_handler = SIG_DFL;
 
1808
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
 
1809
                                            &old_sigterm_action,
 
1810
                                            NULL));
 
1811
    if(ret == -1){
 
1812
      perror("sigaction");
 
1813
    }
 
1814
    do {
 
1815
      ret = raise(signal_received);
 
1816
    } while(ret != 0 and errno == EINTR);
 
1817
    if(ret != 0){
 
1818
      perror("raise");
 
1819
      abort();
 
1820
    }
 
1821
    TEMP_FAILURE_RETRY(pause());
 
1822
  }
 
1823
  
 
1824
  return exitcode;
1147
1825
}