/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: 2008-09-13 15:36:18 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080913153618-atp386q2bqj0ku99
* Makefile (install-client-nokey): Do "&&" instead of ";" to catch
                                   errors.

* README: Kill the straight quotes.  Add copyright notice.

* overview.xml: Improved wording.

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