/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

merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 * "browse_callback", and parts of "main".
10
10
 * 
11
11
 * Everything else is
12
 
 * Copyright © 2008,2009 Teddy Hogeborn
13
 
 * Copyright © 2008,2009 Björn Påhlsson
 
12
 * Copyright © 2008-2011 Teddy Hogeborn
 
13
 * Copyright © 2008-2011 Björn Påhlsson
14
14
 * 
15
15
 * This program is free software: you can redistribute it and/or
16
16
 * modify it under the terms of the GNU General Public License as
26
26
 * along with this program.  If not, see
27
27
 * <http://www.gnu.org/licenses/>.
28
28
 * 
29
 
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
29
 * Contact the authors at <mandos@recompile.se>.
30
30
 */
31
31
 
32
32
/* Needed by GPGME, specifically gpgme_data_seek() */
43
43
                                   stdout, ferror(), remove() */
44
44
#include <stdint.h>             /* uint16_t, uint32_t */
45
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
46
 
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
47
 
                                   srand(), strtof() */
 
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, srand(),
 
47
                                   strtof(), abort() */
48
48
#include <stdbool.h>            /* bool, false, true */
49
49
#include <string.h>             /* memset(), strcmp(), strlen(),
50
50
                                   strerror(), asprintf(), strcpy() */
53
53
                                   sockaddr_in6, PF_INET6,
54
54
                                   SOCK_STREAM, uid_t, gid_t, open(),
55
55
                                   opendir(), DIR */
56
 
#include <sys/stat.h>           /* open() */
 
56
#include <sys/stat.h>           /* open(), S_ISREG */
57
57
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
58
58
                                   inet_pton(), connect() */
59
59
#include <fcntl.h>              /* open() */
62
62
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
63
63
                                   strtoimax() */
64
64
#include <assert.h>             /* assert() */
65
 
#include <errno.h>              /* perror(), errno */
66
 
#include <time.h>               /* nanosleep(), time() */
 
65
#include <errno.h>              /* perror(), errno,
 
66
                                   program_invocation_short_name */
 
67
#include <time.h>               /* nanosleep(), time(), sleep() */
67
68
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
68
69
                                   SIOCSIFFLAGS, if_indextoname(),
69
70
                                   if_nametoindex(), IF_NAMESIZE */
71
72
                                   INET_ADDRSTRLEN, INET6_ADDRSTRLEN
72
73
                                */
73
74
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
74
 
                                   getuid(), getgid(), setuid(),
75
 
                                   setgid() */
76
 
#include <arpa/inet.h>          /* inet_pton(), htons */
 
75
                                   getuid(), getgid(), seteuid(),
 
76
                                   setgid(), pause() */
 
77
#include <arpa/inet.h>          /* inet_pton(), htons, inet_ntop() */
77
78
#include <iso646.h>             /* not, or, and */
78
79
#include <argp.h>               /* struct argp_option, error_t, struct
79
80
                                   argp_state, struct argp,
82
83
#include <signal.h>             /* sigemptyset(), sigaddset(),
83
84
                                   sigaction(), SIGTERM, sig_atomic_t,
84
85
                                   raise() */
 
86
#include <sysexits.h>           /* EX_OSERR, EX_USAGE, EX_UNAVAILABLE,
 
87
                                   EX_NOHOST, EX_IOERR, EX_PROTOCOL */
 
88
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
 
89
                                   WEXITSTATUS(), WTERMSIG() */
85
90
 
86
91
#ifdef __linux__
87
92
#include <sys/klog.h>           /* klogctl() */
105
110
                                   init_gnutls_session(),
106
111
                                   GNUTLS_* */
107
112
#include <gnutls/openpgp.h>
108
 
                          /* gnutls_certificate_set_openpgp_key_file(),
109
 
                                   GNUTLS_OPENPGP_FMT_BASE64 */
 
113
                         /* gnutls_certificate_set_openpgp_key_file(),
 
114
                            GNUTLS_OPENPGP_FMT_BASE64 */
110
115
 
111
116
/* GPGME */
112
117
#include <gpgme.h>              /* All GPGME types, constants and
120
125
#define PATHDIR "/conf/conf.d/mandos"
121
126
#define SECKEY "seckey.txt"
122
127
#define PUBKEY "pubkey.txt"
 
128
#define HOOKDIR "/lib/mandos/network-hooks.d"
123
129
 
124
130
bool debug = false;
125
131
static const char mandos_protocol_version[] = "1";
126
132
const char *argp_program_version = "mandos-client " VERSION;
127
 
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
133
const char *argp_program_bug_address = "<mandos@recompile.se>";
 
134
static const char sys_class_net[] = "/sys/class/net";
 
135
char *connect_to = NULL;
 
136
const char *hookdir = HOOKDIR;
 
137
 
 
138
/* Doubly linked list that need to be circularly linked when used */
 
139
typedef struct server{
 
140
  const char *ip;
 
141
  uint16_t port;
 
142
  AvahiIfIndex if_index;
 
143
  int af;
 
144
  struct timespec last_seen;
 
145
  struct server *next;
 
146
  struct server *prev;
 
147
} server;
128
148
 
129
149
/* Used for passing in values through the Avahi callback functions */
130
150
typedef struct {
135
155
  gnutls_dh_params_t dh_params;
136
156
  const char *priority;
137
157
  gpgme_ctx_t ctx;
 
158
  server *current_server;
138
159
} mandos_context;
139
160
 
140
161
/* global context so signal handler can reach it*/
141
162
mandos_context mc = { .simple_poll = NULL, .server = NULL,
142
163
                      .dh_bits = 1024, .priority = "SECURE256"
143
 
                      ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
164
                      ":!CTYPE-X.509:+CTYPE-OPENPGP",
 
165
                      .current_server = NULL };
 
166
 
 
167
sig_atomic_t quit_now = 0;
 
168
int signal_received = 0;
 
169
 
 
170
/* Function to use when printing errors */
 
171
void perror_plus(const char *print_text){
 
172
  fprintf(stderr, "Mandos plugin %s: ",
 
173
          program_invocation_short_name);
 
174
  perror(print_text);
 
175
}
 
176
 
 
177
int fprintf_plus(FILE *stream, const char *format, ...){
 
178
  va_list ap;
 
179
  va_start (ap, format);
 
180
  
 
181
  TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ", program_invocation_short_name));
 
182
  return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
 
183
}
144
184
 
145
185
/*
146
186
 * Make additional room in "buffer" for at least BUFFER_SIZE more
148
188
 * "buffer_length" is how much is already used.
149
189
 */
150
190
size_t incbuffer(char **buffer, size_t buffer_length,
151
 
                  size_t buffer_capacity){
 
191
                 size_t buffer_capacity){
152
192
  if(buffer_length + BUFFER_SIZE > buffer_capacity){
153
193
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
154
194
    if(buffer == NULL){
159
199
  return buffer_capacity;
160
200
}
161
201
 
 
202
/* Add server to set of servers to retry periodically */
 
203
int add_server(const char *ip, uint16_t port, AvahiIfIndex if_index,
 
204
               int af){
 
205
  int ret;
 
206
  server *new_server = malloc(sizeof(server));
 
207
  if(new_server == NULL){
 
208
    perror_plus("malloc");
 
209
    return -1;
 
210
  }
 
211
  *new_server = (server){ .ip = strdup(ip),
 
212
                          .port = port,
 
213
                          .if_index = if_index,
 
214
                          .af = af };
 
215
  if(new_server->ip == NULL){
 
216
    perror_plus("strdup");
 
217
    return -1;
 
218
  }
 
219
  /* Special case of first server */
 
220
  if (mc.current_server == NULL){
 
221
    new_server->next = new_server;
 
222
    new_server->prev = new_server;
 
223
    mc.current_server = new_server;
 
224
  /* Place the new server last in the list */
 
225
  } else {
 
226
    new_server->next = mc.current_server;
 
227
    new_server->prev = mc.current_server->prev;
 
228
    new_server->prev->next = new_server;
 
229
    mc.current_server->prev = new_server;
 
230
  }
 
231
  ret = clock_gettime(CLOCK_MONOTONIC, &mc.current_server->last_seen);
 
232
  if(ret == -1){
 
233
    perror_plus("clock_gettime");
 
234
    return -1;
 
235
  }
 
236
  return 0;
 
237
}
 
238
 
162
239
/* 
163
240
 * Initialize GPGME.
164
241
 */
165
 
static bool init_gpgme(const char *seckey,
166
 
                       const char *pubkey, const char *tempdir){
 
242
static bool init_gpgme(const char *seckey, const char *pubkey,
 
243
                       const char *tempdir){
167
244
  gpgme_error_t rc;
168
245
  gpgme_engine_info_t engine_info;
169
246
  
178
255
    
179
256
    fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
180
257
    if(fd == -1){
181
 
      perror("open");
 
258
      perror_plus("open");
182
259
      return false;
183
260
    }
184
261
    
185
262
    rc = gpgme_data_new_from_fd(&pgp_data, fd);
186
263
    if(rc != GPG_ERR_NO_ERROR){
187
 
      fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
 
264
      fprintf(stderr, "Mandos plugin mandos-client: "
 
265
              "bad gpgme_data_new_from_fd: %s: %s\n",
188
266
              gpgme_strsource(rc), gpgme_strerror(rc));
189
267
      return false;
190
268
    }
191
269
    
192
270
    rc = gpgme_op_import(mc.ctx, pgp_data);
193
271
    if(rc != GPG_ERR_NO_ERROR){
194
 
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
 
272
      fprintf(stderr, "Mandos plugin mandos-client: "
 
273
              "bad gpgme_op_import: %s: %s\n",
195
274
              gpgme_strsource(rc), gpgme_strerror(rc));
196
275
      return false;
197
276
    }
198
277
    
199
278
    ret = (int)TEMP_FAILURE_RETRY(close(fd));
200
279
    if(ret == -1){
201
 
      perror("close");
 
280
      perror_plus("close");
202
281
    }
203
282
    gpgme_data_release(pgp_data);
204
283
    return true;
205
284
  }
206
285
  
207
286
  if(debug){
208
 
    fprintf(stderr, "Initializing GPGME\n");
 
287
    fprintf(stderr, "Mandos plugin mandos-client: "
 
288
            "Initializing GPGME\n");
209
289
  }
210
290
  
211
291
  /* Init GPGME */
212
292
  gpgme_check_version(NULL);
213
293
  rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
214
294
  if(rc != GPG_ERR_NO_ERROR){
215
 
    fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
 
295
    fprintf(stderr, "Mandos plugin mandos-client: "
 
296
            "bad gpgme_engine_check_version: %s: %s\n",
216
297
            gpgme_strsource(rc), gpgme_strerror(rc));
217
298
    return false;
218
299
  }
219
300
  
220
 
    /* Set GPGME home directory for the OpenPGP engine only */
 
301
  /* Set GPGME home directory for the OpenPGP engine only */
221
302
  rc = gpgme_get_engine_info(&engine_info);
222
303
  if(rc != GPG_ERR_NO_ERROR){
223
 
    fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
 
304
    fprintf(stderr, "Mandos plugin mandos-client: "
 
305
            "bad gpgme_get_engine_info: %s: %s\n",
224
306
            gpgme_strsource(rc), gpgme_strerror(rc));
225
307
    return false;
226
308
  }
233
315
    engine_info = engine_info->next;
234
316
  }
235
317
  if(engine_info == NULL){
236
 
    fprintf(stderr, "Could not set GPGME home dir to %s\n", tempdir);
 
318
    fprintf(stderr, "Mandos plugin mandos-client: "
 
319
            "Could not set GPGME home dir to %s\n", tempdir);
237
320
    return false;
238
321
  }
239
322
  
240
323
  /* Create new GPGME "context" */
241
324
  rc = gpgme_new(&(mc.ctx));
242
325
  if(rc != GPG_ERR_NO_ERROR){
243
 
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
244
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
326
    fprintf(stderr, "Mandos plugin mandos-client: "
 
327
            "bad gpgme_new: %s: %s\n", gpgme_strsource(rc),
 
328
            gpgme_strerror(rc));
245
329
    return false;
246
330
  }
247
331
  
266
350
  ssize_t plaintext_length = 0;
267
351
  
268
352
  if(debug){
269
 
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
 
353
    fprintf(stderr, "Mandos plugin mandos-client: "
 
354
            "Trying to decrypt OpenPGP data\n");
270
355
  }
271
356
  
272
357
  /* Create new GPGME data buffer from memory cryptotext */
273
358
  rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
274
359
                               0);
275
360
  if(rc != GPG_ERR_NO_ERROR){
276
 
    fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
 
361
    fprintf(stderr, "Mandos plugin mandos-client: "
 
362
            "bad gpgme_data_new_from_mem: %s: %s\n",
277
363
            gpgme_strsource(rc), gpgme_strerror(rc));
278
364
    return -1;
279
365
  }
281
367
  /* Create new empty GPGME data buffer for the plaintext */
282
368
  rc = gpgme_data_new(&dh_plain);
283
369
  if(rc != GPG_ERR_NO_ERROR){
284
 
    fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
 
370
    fprintf(stderr, "Mandos plugin mandos-client: "
 
371
            "bad gpgme_data_new: %s: %s\n",
285
372
            gpgme_strsource(rc), gpgme_strerror(rc));
286
373
    gpgme_data_release(dh_crypto);
287
374
    return -1;
291
378
     data buffer */
292
379
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
293
380
  if(rc != GPG_ERR_NO_ERROR){
294
 
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
 
381
    fprintf(stderr, "Mandos plugin mandos-client: "
 
382
            "bad gpgme_op_decrypt: %s: %s\n",
295
383
            gpgme_strsource(rc), gpgme_strerror(rc));
296
384
    plaintext_length = -1;
297
385
    if(debug){
298
386
      gpgme_decrypt_result_t result;
299
387
      result = gpgme_op_decrypt_result(mc.ctx);
300
388
      if(result == NULL){
301
 
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
 
389
        fprintf(stderr, "Mandos plugin mandos-client: "
 
390
                "gpgme_op_decrypt_result failed\n");
302
391
      } else {
303
 
        fprintf(stderr, "Unsupported algorithm: %s\n",
 
392
        fprintf(stderr, "Mandos plugin mandos-client: "
 
393
                "Unsupported algorithm: %s\n",
304
394
                result->unsupported_algorithm);
305
 
        fprintf(stderr, "Wrong key usage: %u\n",
 
395
        fprintf(stderr, "Mandos plugin mandos-client: "
 
396
                "Wrong key usage: %u\n",
306
397
                result->wrong_key_usage);
307
398
        if(result->file_name != NULL){
308
 
          fprintf(stderr, "File name: %s\n", result->file_name);
 
399
          fprintf(stderr, "Mandos plugin mandos-client: "
 
400
                  "File name: %s\n", result->file_name);
309
401
        }
310
402
        gpgme_recipient_t recipient;
311
403
        recipient = result->recipients;
312
404
        while(recipient != NULL){
313
 
          fprintf(stderr, "Public key algorithm: %s\n",
 
405
          fprintf(stderr, "Mandos plugin mandos-client: "
 
406
                  "Public key algorithm: %s\n",
314
407
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
315
 
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
316
 
          fprintf(stderr, "Secret key available: %s\n",
 
408
          fprintf(stderr, "Mandos plugin mandos-client: "
 
409
                  "Key ID: %s\n", recipient->keyid);
 
410
          fprintf(stderr, "Mandos plugin mandos-client: "
 
411
                  "Secret key available: %s\n",
317
412
                  recipient->status == GPG_ERR_NO_SECKEY
318
413
                  ? "No" : "Yes");
319
414
          recipient = recipient->next;
324
419
  }
325
420
  
326
421
  if(debug){
327
 
    fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
 
422
    fprintf(stderr, "Mandos plugin mandos-client: "
 
423
            "Decryption of OpenPGP data succeeded\n");
328
424
  }
329
425
  
330
426
  /* Seek back to the beginning of the GPGME plaintext data buffer */
331
427
  if(gpgme_data_seek(dh_plain, (off_t)0, SEEK_SET) == -1){
332
 
    perror("gpgme_data_seek");
 
428
    perror_plus("gpgme_data_seek");
333
429
    plaintext_length = -1;
334
430
    goto decrypt_end;
335
431
  }
337
433
  *plaintext = NULL;
338
434
  while(true){
339
435
    plaintext_capacity = incbuffer(plaintext,
340
 
                                      (size_t)plaintext_length,
341
 
                                      plaintext_capacity);
 
436
                                   (size_t)plaintext_length,
 
437
                                   plaintext_capacity);
342
438
    if(plaintext_capacity == 0){
343
 
        perror("incbuffer");
344
 
        plaintext_length = -1;
345
 
        goto decrypt_end;
 
439
      perror_plus("incbuffer");
 
440
      plaintext_length = -1;
 
441
      goto decrypt_end;
346
442
    }
347
443
    
348
444
    ret = gpgme_data_read(dh_plain, *plaintext + plaintext_length,
353
449
      break;
354
450
    }
355
451
    if(ret < 0){
356
 
      perror("gpgme_data_read");
 
452
      perror_plus("gpgme_data_read");
357
453
      plaintext_length = -1;
358
454
      goto decrypt_end;
359
455
    }
361
457
  }
362
458
  
363
459
  if(debug){
364
 
    fprintf(stderr, "Decrypted password is: ");
 
460
    fprintf(stderr, "Mandos plugin mandos-client: "
 
461
            "Decrypted password is: ");
365
462
    for(ssize_t i = 0; i < plaintext_length; i++){
366
463
      fprintf(stderr, "%02hhX ", (*plaintext)[i]);
367
464
    }
389
486
/* GnuTLS log function callback */
390
487
static void debuggnutls(__attribute__((unused)) int level,
391
488
                        const char* string){
392
 
  fprintf(stderr, "GnuTLS: %s", string);
 
489
  fprintf(stderr, "Mandos plugin mandos-client: GnuTLS: %s", string);
393
490
}
394
491
 
395
492
static int init_gnutls_global(const char *pubkeyfilename,
397
494
  int ret;
398
495
  
399
496
  if(debug){
400
 
    fprintf(stderr, "Initializing GnuTLS\n");
 
497
    fprintf(stderr, "Mandos plugin mandos-client: "
 
498
            "Initializing GnuTLS\n");
401
499
  }
402
500
  
403
501
  ret = gnutls_global_init();
404
502
  if(ret != GNUTLS_E_SUCCESS){
405
 
    fprintf(stderr, "GnuTLS global_init: %s\n",
406
 
            safer_gnutls_strerror(ret));
 
503
    fprintf(stderr, "Mandos plugin mandos-client: "
 
504
            "GnuTLS global_init: %s\n", safer_gnutls_strerror(ret));
407
505
    return -1;
408
506
  }
409
507
  
416
514
  }
417
515
  
418
516
  /* OpenPGP credentials */
419
 
  gnutls_certificate_allocate_credentials(&mc.cred);
 
517
  ret = gnutls_certificate_allocate_credentials(&mc.cred);
420
518
  if(ret != GNUTLS_E_SUCCESS){
421
 
    fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
422
 
                                                    from
423
 
                                                    -Wunreachable-code
424
 
                                                 */
425
 
            safer_gnutls_strerror(ret));
 
519
    fprintf(stderr, "Mandos plugin mandos-client: "
 
520
            "GnuTLS memory error: %s\n", safer_gnutls_strerror(ret));
426
521
    gnutls_global_deinit();
427
522
    return -1;
428
523
  }
429
524
  
430
525
  if(debug){
431
 
    fprintf(stderr, "Attempting to use OpenPGP public key %s and"
 
526
    fprintf(stderr, "Mandos plugin mandos-client: "
 
527
            "Attempting to use OpenPGP public key %s and"
432
528
            " secret key %s as GnuTLS credentials\n", pubkeyfilename,
433
529
            seckeyfilename);
434
530
  }
438
534
     GNUTLS_OPENPGP_FMT_BASE64);
439
535
  if(ret != GNUTLS_E_SUCCESS){
440
536
    fprintf(stderr,
 
537
            "Mandos plugin mandos-client: "
441
538
            "Error[%d] while reading the OpenPGP key pair ('%s',"
442
539
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
443
 
    fprintf(stderr, "The GnuTLS error is: %s\n",
444
 
            safer_gnutls_strerror(ret));
 
540
    fprintf(stderr, "Mandos plugin mandos-client: "
 
541
            "The GnuTLS error is: %s\n", safer_gnutls_strerror(ret));
445
542
    goto globalfail;
446
543
  }
447
544
  
448
545
  /* GnuTLS server initialization */
449
546
  ret = gnutls_dh_params_init(&mc.dh_params);
450
547
  if(ret != GNUTLS_E_SUCCESS){
451
 
    fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
 
548
    fprintf(stderr, "Mandos plugin mandos-client: "
 
549
            "Error in GnuTLS DH parameter initialization:"
452
550
            " %s\n", safer_gnutls_strerror(ret));
453
551
    goto globalfail;
454
552
  }
455
553
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
456
554
  if(ret != GNUTLS_E_SUCCESS){
457
 
    fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
 
555
    fprintf(stderr, "Mandos plugin mandos-client: "
 
556
            "Error in GnuTLS prime generation: %s\n",
458
557
            safer_gnutls_strerror(ret));
459
558
    goto globalfail;
460
559
  }
474
573
static int init_gnutls_session(gnutls_session_t *session){
475
574
  int ret;
476
575
  /* GnuTLS session creation */
477
 
  ret = gnutls_init(session, GNUTLS_SERVER);
 
576
  do {
 
577
    ret = gnutls_init(session, GNUTLS_SERVER);
 
578
    if(quit_now){
 
579
      return -1;
 
580
    }
 
581
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
478
582
  if(ret != GNUTLS_E_SUCCESS){
479
 
    fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
 
583
    fprintf(stderr, "Mandos plugin mandos-client: "
 
584
            "Error in GnuTLS session initialization: %s\n",
480
585
            safer_gnutls_strerror(ret));
481
586
  }
482
587
  
483
588
  {
484
589
    const char *err;
485
 
    ret = gnutls_priority_set_direct(*session, mc.priority, &err);
 
590
    do {
 
591
      ret = gnutls_priority_set_direct(*session, mc.priority, &err);
 
592
      if(quit_now){
 
593
        gnutls_deinit(*session);
 
594
        return -1;
 
595
      }
 
596
    } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
486
597
    if(ret != GNUTLS_E_SUCCESS){
487
 
      fprintf(stderr, "Syntax error at: %s\n", err);
488
 
      fprintf(stderr, "GnuTLS error: %s\n",
489
 
              safer_gnutls_strerror(ret));
 
598
      fprintf(stderr, "Mandos plugin mandos-client: "
 
599
              "Syntax error at: %s\n", err);
 
600
      fprintf(stderr, "Mandos plugin mandos-client: "
 
601
              "GnuTLS error: %s\n", safer_gnutls_strerror(ret));
490
602
      gnutls_deinit(*session);
491
603
      return -1;
492
604
    }
493
605
  }
494
606
  
495
 
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
496
 
                               mc.cred);
 
607
  do {
 
608
    ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
 
609
                                 mc.cred);
 
610
    if(quit_now){
 
611
      gnutls_deinit(*session);
 
612
      return -1;
 
613
    }
 
614
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
497
615
  if(ret != GNUTLS_E_SUCCESS){
498
 
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
 
616
    fprintf(stderr, "Mandos plugin mandos-client: "
 
617
            "Error setting GnuTLS credentials: %s\n",
499
618
            safer_gnutls_strerror(ret));
500
619
    gnutls_deinit(*session);
501
620
    return -1;
502
621
  }
503
622
  
504
623
  /* ignore client certificate if any. */
505
 
  gnutls_certificate_server_set_request(*session,
506
 
                                        GNUTLS_CERT_IGNORE);
 
624
  gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
507
625
  
508
626
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
509
627
  
514
632
static void empty_log(__attribute__((unused)) AvahiLogLevel level,
515
633
                      __attribute__((unused)) const char *txt){}
516
634
 
517
 
sig_atomic_t quit_now = 0;
518
 
int signal_received = 0;
519
 
 
520
635
/* Called when a Mandos server is found */
521
636
static int start_mandos_communication(const char *ip, uint16_t port,
522
637
                                      AvahiIfIndex if_index,
528
643
    struct sockaddr_in6 in6;
529
644
  } to;
530
645
  char *buffer = NULL;
531
 
  char *decrypted_buffer;
 
646
  char *decrypted_buffer = NULL;
532
647
  size_t buffer_length = 0;
533
648
  size_t buffer_capacity = 0;
534
649
  size_t written;
535
 
  int retval = 0;
 
650
  int retval = -1;
536
651
  gnutls_session_t session;
537
652
  int pf;                       /* Protocol family */
538
653
  
 
654
  errno = 0;
 
655
  
539
656
  if(quit_now){
 
657
    errno = EINTR;
540
658
    return -1;
541
659
  }
542
660
  
548
666
    pf = PF_INET;
549
667
    break;
550
668
  default:
551
 
    fprintf(stderr, "Bad address family: %d\n", af);
 
669
    fprintf(stderr, "Mandos plugin mandos-client: "
 
670
            "Bad address family: %d\n", af);
 
671
    errno = EINVAL;
552
672
    return -1;
553
673
  }
554
674
  
558
678
  }
559
679
  
560
680
  if(debug){
561
 
    fprintf(stderr, "Setting up a TCP connection to %s, port %" PRIu16
 
681
    fprintf(stderr, "Mandos plugin mandos-client: "
 
682
            "Setting up a TCP connection to %s, port %" PRIu16
562
683
            "\n", ip, port);
563
684
  }
564
685
  
565
686
  tcp_sd = socket(pf, SOCK_STREAM, 0);
566
687
  if(tcp_sd < 0){
567
 
    perror("socket");
568
 
    retval = -1;
 
688
    int e = errno;
 
689
    perror_plus("socket");
 
690
    errno = e;
569
691
    goto mandos_end;
570
692
  }
571
693
  
572
694
  if(quit_now){
 
695
    errno = EINTR;
573
696
    goto mandos_end;
574
697
  }
575
698
  
582
705
    ret = inet_pton(af, ip, &to.in.sin_addr);
583
706
  }
584
707
  if(ret < 0 ){
585
 
    perror("inet_pton");
586
 
    retval = -1;
 
708
    int e = errno;
 
709
    perror_plus("inet_pton");
 
710
    errno = e;
587
711
    goto mandos_end;
588
712
  }
589
713
  if(ret == 0){
590
 
    fprintf(stderr, "Bad address: %s\n", ip);
591
 
    retval = -1;
 
714
    int e = errno;
 
715
    fprintf(stderr, "Mandos plugin mandos-client: "
 
716
            "Bad address: %s\n", ip);
 
717
    errno = e;
592
718
    goto mandos_end;
593
719
  }
594
720
  if(af == AF_INET6){
598
724
    
599
725
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
600
726
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
601
 
                              -Wunreachable-code*/
 
727
                                -Wunreachable-code*/
602
728
      if(if_index == AVAHI_IF_UNSPEC){
603
 
        fprintf(stderr, "An IPv6 link-local address is incomplete"
 
729
        fprintf(stderr, "Mandos plugin mandos-client: "
 
730
                "An IPv6 link-local address is incomplete"
604
731
                " without a network interface\n");
605
 
        retval = -1;
 
732
        errno = EINVAL;
606
733
        goto mandos_end;
607
734
      }
608
735
      /* Set the network interface number as scope */
615
742
  }
616
743
  
617
744
  if(quit_now){
 
745
    errno = EINTR;
618
746
    goto mandos_end;
619
747
  }
620
748
  
622
750
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
623
751
      char interface[IF_NAMESIZE];
624
752
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
625
 
        perror("if_indextoname");
 
753
        perror_plus("if_indextoname");
626
754
      } else {
627
 
        fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
 
755
        fprintf(stderr, "Mandos plugin mandos-client: "
 
756
                "Connection to: %s%%%s, port %" PRIu16 "\n",
628
757
                ip, interface, port);
629
758
      }
630
759
    } else {
631
 
      fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
632
 
              port);
 
760
      fprintf(stderr, "Mandos plugin mandos-client: "
 
761
              "Connection to: %s, port %" PRIu16 "\n", ip, port);
633
762
    }
634
763
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
635
764
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
642
771
                        sizeof(addrstr));
643
772
    }
644
773
    if(pcret == NULL){
645
 
      perror("inet_ntop");
 
774
      perror_plus("inet_ntop");
646
775
    } else {
647
776
      if(strcmp(addrstr, ip) != 0){
648
 
        fprintf(stderr, "Canonical address form: %s\n", addrstr);
 
777
        fprintf(stderr, "Mandos plugin mandos-client: "
 
778
                "Canonical address form: %s\n", addrstr);
649
779
      }
650
780
    }
651
781
  }
652
782
  
653
783
  if(quit_now){
 
784
    errno = EINTR;
654
785
    goto mandos_end;
655
786
  }
656
787
  
660
791
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
661
792
  }
662
793
  if(ret < 0){
663
 
    perror("connect");
664
 
    retval = -1;
 
794
    if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
 
795
      int e = errno;
 
796
      perror_plus("connect");
 
797
      errno = e;
 
798
    }
665
799
    goto mandos_end;
666
800
  }
667
801
  
668
802
  if(quit_now){
 
803
    errno = EINTR;
669
804
    goto mandos_end;
670
805
  }
671
806
  
674
809
  while(true){
675
810
    size_t out_size = strlen(out);
676
811
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
677
 
                                   out_size - written));
 
812
                                        out_size - written));
678
813
    if(ret == -1){
679
 
      perror("write");
680
 
      retval = -1;
 
814
      int e = errno;
 
815
      perror_plus("write");
 
816
      errno = e;
681
817
      goto mandos_end;
682
818
    }
683
819
    written += (size_t)ret;
693
829
    }
694
830
  
695
831
    if(quit_now){
 
832
      errno = EINTR;
696
833
      goto mandos_end;
697
834
    }
698
835
  }
699
836
  
700
837
  if(debug){
701
 
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
 
838
    fprintf(stderr, "Mandos plugin mandos-client: "
 
839
            "Establishing TLS session with %s\n", ip);
702
840
  }
703
841
  
704
842
  if(quit_now){
 
843
    errno = EINTR;
705
844
    goto mandos_end;
706
845
  }
707
846
  
 
847
  /* Spurious warning from -Wint-to-pointer-cast */
708
848
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
709
849
  
710
850
  if(quit_now){
 
851
    errno = EINTR;
711
852
    goto mandos_end;
712
853
  }
713
854
  
714
855
  do {
715
856
    ret = gnutls_handshake(session);
716
857
    if(quit_now){
 
858
      errno = EINTR;
717
859
      goto mandos_end;
718
860
    }
719
861
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
720
862
  
721
863
  if(ret != GNUTLS_E_SUCCESS){
722
864
    if(debug){
723
 
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
 
865
      fprintf(stderr, "Mandos plugin mandos-client: "
 
866
              "*** GnuTLS Handshake failed ***\n");
724
867
      gnutls_perror(ret);
725
868
    }
726
 
    retval = -1;
 
869
    errno = EPROTO;
727
870
    goto mandos_end;
728
871
  }
729
872
  
730
873
  /* Read OpenPGP packet that contains the wanted password */
731
874
  
732
875
  if(debug){
733
 
    fprintf(stderr, "Retrieving OpenPGP encrypted password from %s\n",
734
 
            ip);
 
876
    fprintf(stderr, "Mandos plugin mandos-client: "
 
877
            "Retrieving OpenPGP encrypted password from %s\n", ip);
735
878
  }
736
879
  
737
880
  while(true){
738
881
    
739
882
    if(quit_now){
 
883
      errno = EINTR;
740
884
      goto mandos_end;
741
885
    }
742
886
    
743
887
    buffer_capacity = incbuffer(&buffer, buffer_length,
744
 
                                   buffer_capacity);
 
888
                                buffer_capacity);
745
889
    if(buffer_capacity == 0){
746
 
      perror("incbuffer");
747
 
      retval = -1;
 
890
      int e = errno;
 
891
      perror_plus("incbuffer");
 
892
      errno = e;
748
893
      goto mandos_end;
749
894
    }
750
895
    
751
896
    if(quit_now){
 
897
      errno = EINTR;
752
898
      goto mandos_end;
753
899
    }
754
900
    
767
913
          ret = gnutls_handshake(session);
768
914
          
769
915
          if(quit_now){
 
916
            errno = EINTR;
770
917
            goto mandos_end;
771
918
          }
772
919
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
773
920
        if(ret < 0){
774
 
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
 
921
          fprintf(stderr, "Mandos plugin mandos-client: "
 
922
                  "*** GnuTLS Re-handshake failed ***\n");
775
923
          gnutls_perror(ret);
776
 
          retval = -1;
 
924
          errno = EPROTO;
777
925
          goto mandos_end;
778
926
        }
779
927
        break;
780
928
      default:
781
 
        fprintf(stderr, "Unknown error while reading data from"
 
929
        fprintf(stderr, "Mandos plugin mandos-client: "
 
930
                "Unknown error while reading data from"
782
931
                " encrypted session with Mandos server\n");
783
 
        retval = -1;
784
932
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
933
        errno = EIO;
785
934
        goto mandos_end;
786
935
      }
787
936
    } else {
790
939
  }
791
940
  
792
941
  if(debug){
793
 
    fprintf(stderr, "Closing TLS session\n");
794
 
  }
795
 
  
796
 
  if(quit_now){
797
 
    goto mandos_end;
798
 
  }
799
 
  
800
 
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
801
 
  
802
 
  if(quit_now){
803
 
    goto mandos_end;
804
 
  }
 
942
    fprintf(stderr, "Mandos plugin mandos-client: "
 
943
            "Closing TLS session\n");
 
944
  }
 
945
  
 
946
  if(quit_now){
 
947
    errno = EINTR;
 
948
    goto mandos_end;
 
949
  }
 
950
  
 
951
  do {
 
952
    ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
953
    if(quit_now){
 
954
      errno = EINTR;
 
955
      goto mandos_end;
 
956
    }
 
957
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
805
958
  
806
959
  if(buffer_length > 0){
807
960
    ssize_t decrypted_buffer_size;
808
 
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
809
 
                                               buffer_length,
 
961
    decrypted_buffer_size = pgp_packet_decrypt(buffer, buffer_length,
810
962
                                               &decrypted_buffer);
811
963
    if(decrypted_buffer_size >= 0){
812
964
      
813
965
      written = 0;
814
966
      while(written < (size_t) decrypted_buffer_size){
815
967
        if(quit_now){
 
968
          errno = EINTR;
816
969
          goto mandos_end;
817
970
        }
818
971
        
820
973
                          (size_t)decrypted_buffer_size - written,
821
974
                          stdout);
822
975
        if(ret == 0 and ferror(stdout)){
 
976
          int e = errno;
823
977
          if(debug){
824
 
            fprintf(stderr, "Error writing encrypted data: %s\n",
 
978
            fprintf(stderr, "Mandos plugin mandos-client: "
 
979
                    "Error writing encrypted data: %s\n",
825
980
                    strerror(errno));
826
981
          }
827
 
          retval = -1;
828
 
          break;
 
982
          errno = e;
 
983
          goto mandos_end;
829
984
        }
830
985
        written += (size_t)ret;
831
986
      }
832
 
      free(decrypted_buffer);
833
 
    } else {
834
 
      retval = -1;
 
987
      retval = 0;
835
988
    }
836
 
  } else {
837
 
    retval = -1;
838
989
  }
839
990
  
840
991
  /* Shutdown procedure */
841
992
  
842
993
 mandos_end:
843
 
  free(buffer);
844
 
  if(tcp_sd >= 0){
845
 
    ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
846
 
  }
847
 
  if(ret == -1){
848
 
    perror("close");
849
 
  }
850
 
  gnutls_deinit(session);
851
 
  if(quit_now){
852
 
    retval = -1;
 
994
  {
 
995
    int e = errno;
 
996
    free(decrypted_buffer);
 
997
    free(buffer);
 
998
    if(tcp_sd >= 0){
 
999
      ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
1000
    }
 
1001
    if(ret == -1){
 
1002
      if(e == 0){
 
1003
        e = errno;
 
1004
      }
 
1005
      perror_plus("close");
 
1006
    }
 
1007
    gnutls_deinit(session);
 
1008
    errno = e;
 
1009
    if(quit_now){
 
1010
      errno = EINTR;
 
1011
      retval = -1;
 
1012
    }
853
1013
  }
854
1014
  return retval;
855
1015
}
880
1040
  switch(event){
881
1041
  default:
882
1042
  case AVAHI_RESOLVER_FAILURE:
883
 
    fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
 
1043
    fprintf(stderr, "Mandos plugin mandos-client: "
 
1044
            "(Avahi Resolver) Failed to resolve service '%s'"
884
1045
            " of type '%s' in domain '%s': %s\n", name, type, domain,
885
1046
            avahi_strerror(avahi_server_errno(mc.server)));
886
1047
    break;
890
1051
      char ip[AVAHI_ADDRESS_STR_MAX];
891
1052
      avahi_address_snprint(ip, sizeof(ip), address);
892
1053
      if(debug){
893
 
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
 
1054
        fprintf(stderr, "Mandos plugin mandos-client: "
 
1055
                "Mandos server \"%s\" found on %s (%s, %"
894
1056
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
895
1057
                ip, (intmax_t)interface, port);
896
1058
      }
898
1060
                                           avahi_proto_to_af(proto));
899
1061
      if(ret == 0){
900
1062
        avahi_simple_poll_quit(mc.simple_poll);
 
1063
      } else {
 
1064
        ret = add_server(ip, port, interface,
 
1065
                         avahi_proto_to_af(proto));
901
1066
      }
902
1067
    }
903
1068
  }
927
1092
  default:
928
1093
  case AVAHI_BROWSER_FAILURE:
929
1094
    
930
 
    fprintf(stderr, "(Avahi browser) %s\n",
 
1095
    fprintf(stderr, "Mandos plugin mandos-client: "
 
1096
            "(Avahi browser) %s\n",
931
1097
            avahi_strerror(avahi_server_errno(mc.server)));
932
1098
    avahi_simple_poll_quit(mc.simple_poll);
933
1099
    return;
941
1107
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
942
1108
                                    name, type, domain, protocol, 0,
943
1109
                                    resolve_callback, NULL) == NULL)
944
 
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
 
1110
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1111
              "Avahi: Failed to resolve service '%s': %s\n",
945
1112
              name, avahi_strerror(avahi_server_errno(mc.server)));
946
1113
    break;
947
1114
    
951
1118
  case AVAHI_BROWSER_ALL_FOR_NOW:
952
1119
  case AVAHI_BROWSER_CACHE_EXHAUSTED:
953
1120
    if(debug){
954
 
      fprintf(stderr, "No Mandos server found, still searching...\n");
 
1121
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1122
              "No Mandos server found, still searching...\n");
955
1123
    }
956
1124
    break;
957
1125
  }
958
1126
}
959
1127
 
960
 
/* stop main loop after sigterm has been called */
 
1128
/* Signal handler that stops main loop after SIGTERM */
961
1129
static void handle_sigterm(int sig){
962
1130
  if(quit_now){
963
1131
    return;
965
1133
  quit_now = 1;
966
1134
  signal_received = sig;
967
1135
  int old_errno = errno;
 
1136
  /* set main loop to exit */
968
1137
  if(mc.simple_poll != NULL){
969
1138
    avahi_simple_poll_quit(mc.simple_poll);
970
1139
  }
971
1140
  errno = old_errno;
972
1141
}
973
1142
 
 
1143
bool get_flags(const char *ifname, struct ifreq *ifr){
 
1144
  int ret;
 
1145
  
 
1146
  int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1147
  if(s < 0){
 
1148
    perror_plus("socket");
 
1149
    return false;
 
1150
  }
 
1151
  strcpy(ifr->ifr_name, ifname);
 
1152
  ret = ioctl(s, SIOCGIFFLAGS, ifr);
 
1153
  if(ret == -1){
 
1154
    if(debug){
 
1155
      perror_plus("ioctl SIOCGIFFLAGS");
 
1156
    }
 
1157
    return false;
 
1158
  }
 
1159
  return true;
 
1160
}
 
1161
 
 
1162
bool good_flags(const char *ifname, const struct ifreq *ifr){
 
1163
  
 
1164
  /* Reject the loopback device */
 
1165
  if(ifr->ifr_flags & IFF_LOOPBACK){
 
1166
    if(debug){
 
1167
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1168
              "Rejecting loopback interface \"%s\"\n", ifname);
 
1169
    }
 
1170
    return false;
 
1171
  }
 
1172
  /* Accept point-to-point devices only if connect_to is specified */
 
1173
  if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
 
1174
    if(debug){
 
1175
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1176
              "Accepting point-to-point interface \"%s\"\n", ifname);
 
1177
    }
 
1178
    return true;
 
1179
  }
 
1180
  /* Otherwise, reject non-broadcast-capable devices */
 
1181
  if(not (ifr->ifr_flags & IFF_BROADCAST)){
 
1182
    if(debug){
 
1183
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1184
              "Rejecting non-broadcast interface \"%s\"\n", ifname);
 
1185
    }
 
1186
    return false;
 
1187
  }
 
1188
  /* Reject non-ARP interfaces (including dummy interfaces) */
 
1189
  if(ifr->ifr_flags & IFF_NOARP){
 
1190
    if(debug){
 
1191
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1192
              "Rejecting non-ARP interface \"%s\"\n", ifname);
 
1193
    }
 
1194
    return false;
 
1195
  }
 
1196
  
 
1197
  /* Accept this device */
 
1198
  if(debug){
 
1199
    fprintf(stderr, "Mandos plugin mandos-client: "
 
1200
            "Interface \"%s\" is good\n", ifname);
 
1201
  }
 
1202
  return true;
 
1203
}
 
1204
 
 
1205
/* 
 
1206
 * This function determines if a directory entry in /sys/class/net
 
1207
 * corresponds to an acceptable network device.
 
1208
 * (This function is passed to scandir(3) as a filter function.)
 
1209
 */
 
1210
int good_interface(const struct dirent *if_entry){
 
1211
  if(if_entry->d_name[0] == '.'){
 
1212
    return 0;
 
1213
  }
 
1214
  
 
1215
  struct ifreq ifr;
 
1216
  if(not get_flags(if_entry->d_name, &ifr)){
 
1217
    if(debug){
 
1218
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1219
              "Failed to get flags for interface \"%s\"\n",
 
1220
              if_entry->d_name);
 
1221
    }
 
1222
    return 0;
 
1223
  }
 
1224
  
 
1225
  if(not good_flags(if_entry->d_name, &ifr)){
 
1226
    return 0;
 
1227
  }
 
1228
  return 1;
 
1229
}
 
1230
 
 
1231
/* 
 
1232
 * This function determines if a directory entry in /sys/class/net
 
1233
 * corresponds to an acceptable network device which is up.
 
1234
 * (This function is passed to scandir(3) as a filter function.)
 
1235
 */
 
1236
int up_interface(const struct dirent *if_entry){
 
1237
  if(if_entry->d_name[0] == '.'){
 
1238
    return 0;
 
1239
  }
 
1240
  
 
1241
  struct ifreq ifr;
 
1242
  if(not get_flags(if_entry->d_name, &ifr)){
 
1243
    if(debug){
 
1244
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1245
              "Failed to get flags for interface \"%s\"\n",
 
1246
              if_entry->d_name);
 
1247
    }
 
1248
    return 0;
 
1249
  }
 
1250
  
 
1251
  /* Reject down interfaces */
 
1252
  if(not (ifr.ifr_flags & IFF_UP)){
 
1253
    if(debug){
 
1254
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1255
              "Rejecting down interface \"%s\"\n",
 
1256
              if_entry->d_name);
 
1257
    }
 
1258
    return 0;
 
1259
  }
 
1260
  
 
1261
  /* Reject non-running interfaces */
 
1262
  if(not (ifr.ifr_flags & IFF_RUNNING)){
 
1263
    if(debug){
 
1264
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1265
              "Rejecting non-running interface \"%s\"\n",
 
1266
              if_entry->d_name);
 
1267
    }
 
1268
    return 0;
 
1269
  }
 
1270
  
 
1271
  if(not good_flags(if_entry->d_name, &ifr)){
 
1272
    return 0;
 
1273
  }
 
1274
  return 1;
 
1275
}
 
1276
 
 
1277
int notdotentries(const struct dirent *direntry){
 
1278
  /* Skip "." and ".." */
 
1279
  if(direntry->d_name[0] == '.'
 
1280
     and (direntry->d_name[1] == '\0'
 
1281
          or (direntry->d_name[1] == '.'
 
1282
              and direntry->d_name[2] == '\0'))){
 
1283
    return 0;
 
1284
  }
 
1285
  return 1;
 
1286
}
 
1287
 
 
1288
/* Is this directory entry a runnable program? */
 
1289
int runnable_hook(const struct dirent *direntry){
 
1290
  int ret;
 
1291
  size_t sret;
 
1292
  struct stat st;
 
1293
  
 
1294
  if((direntry->d_name)[0] == '\0'){
 
1295
    /* Empty name? */
 
1296
    return 0;
 
1297
  }
 
1298
  
 
1299
  sret = strspn(direntry->d_name, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
 
1300
                "abcdefghijklmnopqrstuvwxyz"
 
1301
                "0123456789"
 
1302
                "_-");
 
1303
  if((direntry->d_name)[sret] != '\0'){
 
1304
    /* Contains non-allowed characters */
 
1305
    if(debug){
 
1306
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1307
              "Ignoring hook \"%s\" with bad name\n",
 
1308
              direntry->d_name);
 
1309
    }
 
1310
    return 0;
 
1311
  }
 
1312
  
 
1313
  char *fullname = NULL;
 
1314
  ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
1315
  if(ret < 0){
 
1316
    perror_plus("asprintf");
 
1317
    return 0;
 
1318
  }
 
1319
  
 
1320
  ret = stat(fullname, &st);
 
1321
  if(ret == -1){
 
1322
    if(debug){
 
1323
      perror_plus("Could not stat hook");
 
1324
    }
 
1325
    return 0;
 
1326
  }
 
1327
  if(not (S_ISREG(st.st_mode))){
 
1328
    /* Not a regular file */
 
1329
    if(debug){
 
1330
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1331
              "Ignoring hook \"%s\" - not a file\n",
 
1332
              direntry->d_name);
 
1333
    }
 
1334
    return 0;
 
1335
  }
 
1336
  if(not (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))){
 
1337
    /* Not executable */
 
1338
    if(debug){
 
1339
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1340
              "Ignoring hook \"%s\" - not executable\n",
 
1341
              direntry->d_name);
 
1342
    }
 
1343
    return 0;
 
1344
  }
 
1345
  return 1;
 
1346
}
 
1347
 
 
1348
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval){
 
1349
  int ret;
 
1350
  struct timespec now;
 
1351
  struct timespec waited_time;
 
1352
  intmax_t block_time;
 
1353
  
 
1354
  while(true){
 
1355
    if(mc.current_server == NULL){
 
1356
      if (debug){
 
1357
        fprintf(stderr, "Mandos plugin mandos-client: "
 
1358
                "Wait until first server is found. No timeout!\n");
 
1359
      }
 
1360
      ret = avahi_simple_poll_iterate(s, -1);
 
1361
    } else {
 
1362
      if (debug){
 
1363
        fprintf(stderr, "Mandos plugin mandos-client: "
 
1364
                "Check current_server if we should run it,"
 
1365
                " or wait\n");
 
1366
      }
 
1367
      /* the current time */
 
1368
      ret = clock_gettime(CLOCK_MONOTONIC, &now);
 
1369
      if(ret == -1){
 
1370
        perror_plus("clock_gettime");
 
1371
        return -1;
 
1372
      }
 
1373
      /* Calculating in ms how long time between now and server
 
1374
         who we visted longest time ago. Now - last seen.  */
 
1375
      waited_time.tv_sec = (now.tv_sec
 
1376
                            - mc.current_server->last_seen.tv_sec);
 
1377
      waited_time.tv_nsec = (now.tv_nsec
 
1378
                             - mc.current_server->last_seen.tv_nsec);
 
1379
      /* total time is 10s/10,000ms.
 
1380
         Converting to s from ms by dividing by 1,000,
 
1381
         and ns to ms by dividing by 1,000,000. */
 
1382
      block_time = ((retry_interval
 
1383
                     - ((intmax_t)waited_time.tv_sec * 1000))
 
1384
                    - ((intmax_t)waited_time.tv_nsec / 1000000));
 
1385
      
 
1386
      if (debug){
 
1387
        fprintf(stderr, "Mandos plugin mandos-client: "
 
1388
                "Blocking for %" PRIdMAX " ms\n", block_time);
 
1389
      }
 
1390
      
 
1391
      if(block_time <= 0){
 
1392
        ret = start_mandos_communication(mc.current_server->ip,
 
1393
                                         mc.current_server->port,
 
1394
                                         mc.current_server->if_index,
 
1395
                                         mc.current_server->af);
 
1396
        if(ret == 0){
 
1397
          avahi_simple_poll_quit(mc.simple_poll);
 
1398
          return 0;
 
1399
        }
 
1400
        ret = clock_gettime(CLOCK_MONOTONIC,
 
1401
                            &mc.current_server->last_seen);
 
1402
        if(ret == -1){
 
1403
          perror_plus("clock_gettime");
 
1404
          return -1;
 
1405
        }
 
1406
        mc.current_server = mc.current_server->next;
 
1407
        block_time = 0;         /* Call avahi to find new Mandos
 
1408
                                   servers, but don't block */
 
1409
      }
 
1410
      
 
1411
      ret = avahi_simple_poll_iterate(s, (int)block_time);
 
1412
    }
 
1413
    if(ret != 0){
 
1414
      if (ret > 0 or errno != EINTR){
 
1415
        return (ret != 1) ? ret : 0;
 
1416
      }
 
1417
    }
 
1418
  }
 
1419
}
 
1420
 
974
1421
int main(int argc, char *argv[]){
975
1422
  AvahiSServiceBrowser *sb = NULL;
976
1423
  int error;
978
1425
  intmax_t tmpmax;
979
1426
  char *tmp;
980
1427
  int exitcode = EXIT_SUCCESS;
981
 
  const char *interface = "eth0";
 
1428
  const char *interface = "";
982
1429
  struct ifreq network;
983
1430
  int sd = -1;
984
1431
  bool take_down_interface = false;
985
1432
  uid_t uid;
986
1433
  gid_t gid;
987
 
  char *connect_to = NULL;
988
1434
  char tempdir[] = "/tmp/mandosXXXXXX";
989
1435
  bool tempdir_created = false;
990
1436
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
994
1440
  bool gnutls_initialized = false;
995
1441
  bool gpgme_initialized = false;
996
1442
  float delay = 2.5f;
 
1443
  double retry_interval = 10; /* 10s between trying a server and
 
1444
                                 retrying the same server again */
997
1445
  
998
 
  struct sigaction old_sigterm_action;
 
1446
  struct sigaction old_sigterm_action = { .sa_handler = SIG_DFL };
999
1447
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
1000
1448
  
 
1449
  uid = getuid();
 
1450
  gid = getgid();
 
1451
  
 
1452
  /* Lower any group privileges we might have, just to be safe */
 
1453
  errno = 0;
 
1454
  ret = setgid(gid);
 
1455
  if(ret == -1){
 
1456
    perror_plus("setgid");
 
1457
  }
 
1458
  
 
1459
  /* Lower user privileges (temporarily) */
 
1460
  errno = 0;
 
1461
  ret = seteuid(uid);
 
1462
  if(ret == -1){
 
1463
    perror_plus("seteuid");
 
1464
  }
 
1465
  
 
1466
  if(quit_now){
 
1467
    goto end;
 
1468
  }
 
1469
  
1001
1470
  {
1002
1471
    struct argp_option options[] = {
1003
1472
      { .name = "debug", .key = 128,
1032
1501
        .arg = "SECONDS",
1033
1502
        .doc = "Maximum delay to wait for interface startup",
1034
1503
        .group = 2 },
 
1504
      { .name = "retry", .key = 132,
 
1505
        .arg = "SECONDS",
 
1506
        .doc = "Retry interval used when denied by the mandos server",
 
1507
        .group = 2 },
 
1508
      { .name = "network-hook-dir", .key = 133,
 
1509
        .arg = "DIR",
 
1510
        .doc = "Directory where network hooks are located",
 
1511
        .group = 2 },
 
1512
      /*
 
1513
       * These reproduce what we would get without ARGP_NO_HELP
 
1514
       */
 
1515
      { .name = "help", .key = '?',
 
1516
        .doc = "Give this help list", .group = -1 },
 
1517
      { .name = "usage", .key = -3,
 
1518
        .doc = "Give a short usage message", .group = -1 },
 
1519
      { .name = "version", .key = 'V',
 
1520
        .doc = "Print program version", .group = -1 },
1035
1521
      { .name = NULL }
1036
1522
    };
1037
1523
    
1038
1524
    error_t parse_opt(int key, char *arg,
1039
1525
                      struct argp_state *state){
 
1526
      errno = 0;
1040
1527
      switch(key){
1041
1528
      case 128:                 /* --debug */
1042
1529
        debug = true;
1058
1545
        tmpmax = strtoimax(arg, &tmp, 10);
1059
1546
        if(errno != 0 or tmp == arg or *tmp != '\0'
1060
1547
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
1061
 
          fprintf(stderr, "Bad number of DH bits\n");
1062
 
          exit(EXIT_FAILURE);
 
1548
          argp_error(state, "Bad number of DH bits");
1063
1549
        }
1064
1550
        mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
1065
1551
        break;
1070
1556
        errno = 0;
1071
1557
        delay = strtof(arg, &tmp);
1072
1558
        if(errno != 0 or tmp == arg or *tmp != '\0'){
1073
 
          fprintf(stderr, "Bad delay\n");
1074
 
          exit(EXIT_FAILURE);
1075
 
        }
1076
 
        break;
1077
 
      case ARGP_KEY_ARG:
1078
 
        argp_usage(state);
1079
 
      case ARGP_KEY_END:
 
1559
          argp_error(state, "Bad delay");
 
1560
        }
 
1561
      case 132:                 /* --retry */
 
1562
        errno = 0;
 
1563
        retry_interval = strtod(arg, &tmp);
 
1564
        if(errno != 0 or tmp == arg or *tmp != '\0'
 
1565
           or (retry_interval * 1000) > INT_MAX
 
1566
           or retry_interval < 0){
 
1567
          argp_error(state, "Bad retry interval");
 
1568
        }
 
1569
        break;
 
1570
      case 133:                 /* --network-hook-dir */
 
1571
        hookdir = arg;
 
1572
        break;
 
1573
        /*
 
1574
         * These reproduce what we would get without ARGP_NO_HELP
 
1575
         */
 
1576
      case '?':                 /* --help */
 
1577
        argp_state_help(state, state->out_stream,
 
1578
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
 
1579
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
 
1580
      case -3:                  /* --usage */
 
1581
        argp_state_help(state, state->out_stream,
 
1582
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
 
1583
      case 'V':                 /* --version */
 
1584
        fprintf(state->out_stream, "Mandos plugin mandos-client: ");
 
1585
        fprintf(state->out_stream, "%s\n", argp_program_version);
 
1586
        exit(argp_err_exit_status);
1080
1587
        break;
1081
1588
      default:
1082
1589
        return ARGP_ERR_UNKNOWN;
1083
1590
      }
1084
 
      return 0;
 
1591
      return errno;
1085
1592
    }
1086
1593
    
1087
1594
    struct argp argp = { .options = options, .parser = parse_opt,
1088
1595
                         .args_doc = "",
1089
1596
                         .doc = "Mandos client -- Get and decrypt"
1090
1597
                         " passwords from a Mandos server" };
1091
 
    ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
1092
 
    if(ret == ARGP_ERR_UNKNOWN){
1093
 
      fprintf(stderr, "Unknown error while parsing arguments\n");
1094
 
      exitcode = EXIT_FAILURE;
1095
 
      goto end;
 
1598
    ret = argp_parse(&argp, argc, argv,
 
1599
                     ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
 
1600
    switch(ret){
 
1601
    case 0:
 
1602
      break;
 
1603
    case ENOMEM:
 
1604
    default:
 
1605
      errno = ret;
 
1606
      perror_plus("argp_parse");
 
1607
      exitcode = EX_OSERR;
 
1608
      goto end;
 
1609
    case EINVAL:
 
1610
      exitcode = EX_USAGE;
 
1611
      goto end;
 
1612
    }
 
1613
  }
 
1614
    
 
1615
  {
 
1616
    /* Work around Debian bug #633582:
 
1617
       <http://bugs.debian.org/633582> */
 
1618
    struct stat st;
 
1619
    
 
1620
    /* Re-raise priviliges */
 
1621
    errno = 0;
 
1622
    ret = seteuid(0);
 
1623
    if(ret == -1){
 
1624
      perror_plus("seteuid");
 
1625
    }
 
1626
    
 
1627
    if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
 
1628
      int seckey_fd = open(seckey, O_RDONLY);
 
1629
      if(seckey_fd == -1){
 
1630
        perror_plus("open");
 
1631
      } else {
 
1632
        ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
 
1633
        if(ret == -1){
 
1634
          perror_plus("fstat");
 
1635
        } else {
 
1636
          if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
 
1637
            ret = fchown(seckey_fd, uid, gid);
 
1638
            if(ret == -1){
 
1639
              perror_plus("fchown");
 
1640
            }
 
1641
          }
 
1642
        }
 
1643
        TEMP_FAILURE_RETRY(close(seckey_fd));
 
1644
      }
 
1645
    }
 
1646
    
 
1647
    if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
 
1648
      int pubkey_fd = open(pubkey, O_RDONLY);
 
1649
      if(pubkey_fd == -1){
 
1650
        perror_plus("open");
 
1651
      } else {
 
1652
        ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
 
1653
        if(ret == -1){
 
1654
          perror_plus("fstat");
 
1655
        } else {
 
1656
          if(S_ISREG(st.st_mode) and st.st_uid == 0 and st.st_gid == 0){
 
1657
            ret = fchown(pubkey_fd, uid, gid);
 
1658
            if(ret == -1){
 
1659
              perror_plus("fchown");
 
1660
            }
 
1661
          }
 
1662
        }
 
1663
        TEMP_FAILURE_RETRY(close(pubkey_fd));
 
1664
      }
 
1665
    }
 
1666
    
 
1667
    /* Lower privileges */
 
1668
    errno = 0;
 
1669
    ret = seteuid(uid);
 
1670
    if(ret == -1){
 
1671
      perror_plus("seteuid");
 
1672
    }
 
1673
  }
 
1674
  
 
1675
  /* Find network hooks and run them */
 
1676
  {
 
1677
    struct dirent **direntries;
 
1678
    struct dirent *direntry;
 
1679
    int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1680
                           alphasort);
 
1681
    if(numhooks == -1){
 
1682
      perror_plus("scandir");
 
1683
    } else {
 
1684
      int devnull = open("/dev/null", O_RDONLY);
 
1685
      for(int i = 0; i < numhooks; i++){
 
1686
        direntry = direntries[0];
 
1687
        char *fullname = NULL;
 
1688
        ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
1689
        if(ret < 0){
 
1690
          perror_plus("asprintf");
 
1691
          continue;
 
1692
        }
 
1693
        pid_t hook_pid = fork();
 
1694
        if(hook_pid == 0){
 
1695
          /* Child */
 
1696
          dup2(devnull, STDIN_FILENO);
 
1697
          close(devnull);
 
1698
          dup2(STDERR_FILENO, STDOUT_FILENO);
 
1699
          ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
1700
          if(ret == -1){
 
1701
            perror_plus("setenv");
 
1702
            exit(1);
 
1703
          }
 
1704
          ret = setenv("DEVICE", interface, 1);
 
1705
          if(ret == -1){
 
1706
            perror_plus("setenv");
 
1707
            exit(1);
 
1708
          }
 
1709
          ret = setenv("VERBOSE", debug ? "1" : "0", 1);
 
1710
          if(ret == -1){
 
1711
            perror_plus("setenv");
 
1712
            exit(1);
 
1713
          }
 
1714
          ret = setenv("MODE", "start", 1);
 
1715
          if(ret == -1){
 
1716
            perror_plus("setenv");
 
1717
            exit(1);
 
1718
          }
 
1719
          char *delaystring;
 
1720
          ret = asprintf(&delaystring, "%f", delay);
 
1721
          if(ret == -1){
 
1722
            perror_plus("asprintf");
 
1723
            exit(1);
 
1724
          }
 
1725
          ret = setenv("DELAY", delaystring, 1);
 
1726
          if(ret == -1){
 
1727
            free(delaystring);
 
1728
            perror_plus("setenv");
 
1729
            exit(1);
 
1730
          }
 
1731
          free(delaystring);
 
1732
          ret = execl(fullname, direntry->d_name, "start", NULL);
 
1733
          perror_plus("execl");
 
1734
        } else {
 
1735
          int status;
 
1736
          if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
1737
            perror_plus("waitpid");
 
1738
            free(fullname);
 
1739
            continue;
 
1740
          }
 
1741
          if(WIFEXITED(status)){
 
1742
            if(WEXITSTATUS(status) != 0){
 
1743
              fprintf(stderr, "Mandos plugin mandos-client: "
 
1744
                      "Warning: network hook \"%s\" exited"
 
1745
                      " with status %d\n", direntry->d_name,
 
1746
                      WEXITSTATUS(status));
 
1747
              free(fullname);
 
1748
              continue;
 
1749
            }
 
1750
          } else if(WIFSIGNALED(status)){
 
1751
            fprintf(stderr, "Mandos plugin mandos-client: "
 
1752
                    "Warning: network hook \"%s\" died by"
 
1753
                    " signal %d\n", direntry->d_name,
 
1754
                    WTERMSIG(status));
 
1755
            free(fullname);
 
1756
            continue;
 
1757
          } else {
 
1758
            fprintf(stderr, "Mandos plugin mandos-client: "
 
1759
                    "Warning: network hook \"%s\" crashed\n",
 
1760
                    direntry->d_name);
 
1761
            free(fullname);
 
1762
            continue;
 
1763
          }
 
1764
        }
 
1765
        free(fullname);
 
1766
        if(quit_now){
 
1767
          goto end;
 
1768
        }
 
1769
      }
 
1770
      close(devnull);
1096
1771
    }
1097
1772
  }
1098
1773
  
1100
1775
    avahi_set_log_function(empty_log);
1101
1776
  }
1102
1777
  
 
1778
  if(interface[0] == '\0'){
 
1779
    struct dirent **direntries;
 
1780
    /* First look for interfaces that are up */
 
1781
    ret = scandir(sys_class_net, &direntries, up_interface,
 
1782
                  alphasort);
 
1783
    if(ret == 0){
 
1784
      /* No up interfaces, look for any good interfaces */
 
1785
      free(direntries);
 
1786
      ret = scandir(sys_class_net, &direntries, good_interface,
 
1787
                    alphasort);
 
1788
    }
 
1789
    if(ret >= 1){
 
1790
      /* Pick the first interface returned */
 
1791
      interface = strdup(direntries[0]->d_name);
 
1792
      if(debug){
 
1793
        fprintf(stderr, "Mandos plugin mandos-client: "
 
1794
                "Using interface \"%s\"\n", interface);
 
1795
      }
 
1796
      if(interface == NULL){
 
1797
        perror_plus("malloc");
 
1798
        free(direntries);
 
1799
        exitcode = EXIT_FAILURE;
 
1800
        goto end;
 
1801
      }
 
1802
      free(direntries);
 
1803
    } else {
 
1804
      free(direntries);
 
1805
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1806
              "Could not find a network interface\n");
 
1807
      exitcode = EXIT_FAILURE;
 
1808
      goto end;
 
1809
    }
 
1810
  }
 
1811
  
1103
1812
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1104
1813
     from the signal handler */
1105
1814
  /* Initialize the pseudo-RNG for Avahi */
1106
1815
  srand((unsigned int) time(NULL));
1107
1816
  mc.simple_poll = avahi_simple_poll_new();
1108
1817
  if(mc.simple_poll == NULL){
1109
 
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1110
 
    exitcode = EXIT_FAILURE;
 
1818
    fprintf(stderr, "Mandos plugin mandos-client: "
 
1819
            "Avahi: Failed to create simple poll object.\n");
 
1820
    exitcode = EX_UNAVAILABLE;
1111
1821
    goto end;
1112
1822
  }
1113
1823
  
1114
1824
  sigemptyset(&sigterm_action.sa_mask);
1115
1825
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1116
1826
  if(ret == -1){
1117
 
    perror("sigaddset");
1118
 
    exitcode = EXIT_FAILURE;
 
1827
    perror_plus("sigaddset");
 
1828
    exitcode = EX_OSERR;
1119
1829
    goto end;
1120
1830
  }
1121
1831
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1122
1832
  if(ret == -1){
1123
 
    perror("sigaddset");
1124
 
    exitcode = EXIT_FAILURE;
 
1833
    perror_plus("sigaddset");
 
1834
    exitcode = EX_OSERR;
1125
1835
    goto end;
1126
1836
  }
1127
1837
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1128
1838
  if(ret == -1){
1129
 
    perror("sigaddset");
1130
 
    exitcode = EXIT_FAILURE;
 
1839
    perror_plus("sigaddset");
 
1840
    exitcode = EX_OSERR;
1131
1841
    goto end;
1132
1842
  }
1133
1843
  /* Need to check if the handler is SIG_IGN before handling:
1136
1846
  */
1137
1847
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1138
1848
  if(ret == -1){
1139
 
    perror("sigaction");
1140
 
    return EXIT_FAILURE;
 
1849
    perror_plus("sigaction");
 
1850
    return EX_OSERR;
1141
1851
  }
1142
1852
  if(old_sigterm_action.sa_handler != SIG_IGN){
1143
1853
    ret = sigaction(SIGINT, &sigterm_action, NULL);
1144
1854
    if(ret == -1){
1145
 
      perror("sigaction");
1146
 
      exitcode = EXIT_FAILURE;
 
1855
      perror_plus("sigaction");
 
1856
      exitcode = EX_OSERR;
1147
1857
      goto end;
1148
1858
    }
1149
1859
  }
1150
1860
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1151
1861
  if(ret == -1){
1152
 
    perror("sigaction");
1153
 
    return EXIT_FAILURE;
 
1862
    perror_plus("sigaction");
 
1863
    return EX_OSERR;
1154
1864
  }
1155
1865
  if(old_sigterm_action.sa_handler != SIG_IGN){
1156
1866
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
1157
1867
    if(ret == -1){
1158
 
      perror("sigaction");
1159
 
      exitcode = EXIT_FAILURE;
 
1868
      perror_plus("sigaction");
 
1869
      exitcode = EX_OSERR;
1160
1870
      goto end;
1161
1871
    }
1162
1872
  }
1163
1873
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1164
1874
  if(ret == -1){
1165
 
    perror("sigaction");
1166
 
    return EXIT_FAILURE;
 
1875
    perror_plus("sigaction");
 
1876
    return EX_OSERR;
1167
1877
  }
1168
1878
  if(old_sigterm_action.sa_handler != SIG_IGN){
1169
1879
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
1170
1880
    if(ret == -1){
1171
 
      perror("sigaction");
1172
 
      exitcode = EXIT_FAILURE;
 
1881
      perror_plus("sigaction");
 
1882
      exitcode = EX_OSERR;
1173
1883
      goto end;
1174
1884
    }
1175
1885
  }
1176
1886
  
1177
1887
  /* If the interface is down, bring it up */
1178
 
  if(interface[0] != '\0'){
 
1888
  if(strcmp(interface, "none") != 0){
1179
1889
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1180
1890
    if(if_index == 0){
1181
 
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1182
 
      exitcode = EXIT_FAILURE;
 
1891
      fprintf(stderr, "Mandos plugin mandos-client: "
 
1892
              "No such interface: \"%s\"\n", interface);
 
1893
      exitcode = EX_UNAVAILABLE;
1183
1894
      goto end;
1184
1895
    }
1185
1896
    
1187
1898
      goto end;
1188
1899
    }
1189
1900
    
 
1901
    /* Re-raise priviliges */
 
1902
    errno = 0;
 
1903
    ret = seteuid(0);
 
1904
    if(ret == -1){
 
1905
      perror_plus("seteuid");
 
1906
    }
 
1907
    
1190
1908
#ifdef __linux__
1191
1909
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1192
 
       messages to mess up the prompt */
 
1910
       messages about the network interface to mess up the prompt */
1193
1911
    ret = klogctl(8, NULL, 5);
1194
1912
    bool restore_loglevel = true;
1195
1913
    if(ret == -1){
1196
1914
      restore_loglevel = false;
1197
 
      perror("klogctl");
 
1915
      perror_plus("klogctl");
1198
1916
    }
1199
1917
#endif  /* __linux__ */
1200
1918
    
1201
1919
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1202
1920
    if(sd < 0){
1203
 
      perror("socket");
1204
 
      exitcode = EXIT_FAILURE;
 
1921
      perror_plus("socket");
 
1922
      exitcode = EX_OSERR;
1205
1923
#ifdef __linux__
1206
1924
      if(restore_loglevel){
1207
1925
        ret = klogctl(7, NULL, 0);
1208
1926
        if(ret == -1){
1209
 
          perror("klogctl");
 
1927
          perror_plus("klogctl");
1210
1928
        }
1211
1929
      }
1212
1930
#endif  /* __linux__ */
 
1931
      /* Lower privileges */
 
1932
      errno = 0;
 
1933
      ret = seteuid(uid);
 
1934
      if(ret == -1){
 
1935
        perror_plus("seteuid");
 
1936
      }
1213
1937
      goto end;
1214
1938
    }
1215
1939
    strcpy(network.ifr_name, interface);
1216
1940
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
1217
1941
    if(ret == -1){
1218
 
      perror("ioctl SIOCGIFFLAGS");
 
1942
      perror_plus("ioctl SIOCGIFFLAGS");
1219
1943
#ifdef __linux__
1220
1944
      if(restore_loglevel){
1221
1945
        ret = klogctl(7, NULL, 0);
1222
1946
        if(ret == -1){
1223
 
          perror("klogctl");
 
1947
          perror_plus("klogctl");
1224
1948
        }
1225
1949
      }
1226
1950
#endif  /* __linux__ */
1227
 
      exitcode = EXIT_FAILURE;
 
1951
      exitcode = EX_OSERR;
 
1952
      /* Lower privileges */
 
1953
      errno = 0;
 
1954
      ret = seteuid(uid);
 
1955
      if(ret == -1){
 
1956
        perror_plus("seteuid");
 
1957
      }
1228
1958
      goto end;
1229
1959
    }
1230
1960
    if((network.ifr_flags & IFF_UP) == 0){
1233
1963
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1234
1964
      if(ret == -1){
1235
1965
        take_down_interface = false;
1236
 
        perror("ioctl SIOCSIFFLAGS");
1237
 
        exitcode = EXIT_FAILURE;
 
1966
        perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
 
1967
        exitcode = EX_OSERR;
1238
1968
#ifdef __linux__
1239
1969
        if(restore_loglevel){
1240
1970
          ret = klogctl(7, NULL, 0);
1241
1971
          if(ret == -1){
1242
 
            perror("klogctl");
 
1972
            perror_plus("klogctl");
1243
1973
          }
1244
1974
        }
1245
1975
#endif  /* __linux__ */
 
1976
        /* Lower privileges */
 
1977
        errno = 0;
 
1978
        ret = seteuid(uid);
 
1979
        if(ret == -1){
 
1980
          perror_plus("seteuid");
 
1981
        }
1246
1982
        goto end;
1247
1983
      }
1248
1984
    }
1249
 
    /* sleep checking until interface is running */
 
1985
    /* Sleep checking until interface is running.
 
1986
       Check every 0.25s, up to total time of delay */
1250
1987
    for(int i=0; i < delay * 4; i++){
1251
1988
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
1252
1989
      if(ret == -1){
1253
 
        perror("ioctl SIOCGIFFLAGS");
 
1990
        perror_plus("ioctl SIOCGIFFLAGS");
1254
1991
      } else if(network.ifr_flags & IFF_RUNNING){
1255
1992
        break;
1256
1993
      }
1257
1994
      struct timespec sleeptime = { .tv_nsec = 250000000 };
1258
1995
      ret = nanosleep(&sleeptime, NULL);
1259
1996
      if(ret == -1 and errno != EINTR){
1260
 
        perror("nanosleep");
 
1997
        perror_plus("nanosleep");
1261
1998
      }
1262
1999
    }
1263
2000
    if(not take_down_interface){
1264
2001
      /* We won't need the socket anymore */
1265
2002
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
1266
2003
      if(ret == -1){
1267
 
        perror("close");
 
2004
        perror_plus("close");
1268
2005
      }
1269
2006
    }
1270
2007
#ifdef __linux__
1272
2009
      /* Restores kernel loglevel to default */
1273
2010
      ret = klogctl(7, NULL, 0);
1274
2011
      if(ret == -1){
1275
 
        perror("klogctl");
 
2012
        perror_plus("klogctl");
1276
2013
      }
1277
2014
    }
1278
2015
#endif  /* __linux__ */
1279
 
  }
1280
 
  
1281
 
  if(quit_now){
1282
 
    goto end;
1283
 
  }
1284
 
  
1285
 
  uid = getuid();
1286
 
  gid = getgid();
1287
 
  
1288
 
  errno = 0;
1289
 
  setgid(gid);
1290
 
  if(ret == -1){
1291
 
    perror("setgid");
1292
 
  }
1293
 
  
1294
 
  ret = setuid(uid);
1295
 
  if(ret == -1){
1296
 
    perror("setuid");
 
2016
    /* Lower privileges */
 
2017
    errno = 0;
 
2018
    if(take_down_interface){
 
2019
      /* Lower privileges */
 
2020
      ret = seteuid(uid);
 
2021
      if(ret == -1){
 
2022
        perror_plus("seteuid");
 
2023
      }
 
2024
    } else {
 
2025
      /* Lower privileges permanently */
 
2026
      ret = setuid(uid);
 
2027
      if(ret == -1){
 
2028
        perror_plus("setuid");
 
2029
      }
 
2030
    }
1297
2031
  }
1298
2032
  
1299
2033
  if(quit_now){
1302
2036
  
1303
2037
  ret = init_gnutls_global(pubkey, seckey);
1304
2038
  if(ret == -1){
1305
 
    fprintf(stderr, "init_gnutls_global failed\n");
1306
 
    exitcode = EXIT_FAILURE;
 
2039
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2040
            "init_gnutls_global failed\n");
 
2041
    exitcode = EX_UNAVAILABLE;
1307
2042
    goto end;
1308
2043
  } else {
1309
2044
    gnutls_initialized = true;
1313
2048
    goto end;
1314
2049
  }
1315
2050
  
 
2051
  if(mkdtemp(tempdir) == NULL){
 
2052
    perror_plus("mkdtemp");
 
2053
    goto end;
 
2054
  }
1316
2055
  tempdir_created = true;
1317
 
  if(mkdtemp(tempdir) == NULL){
1318
 
    tempdir_created = false;
1319
 
    perror("mkdtemp");
1320
 
    goto end;
1321
 
  }
1322
2056
  
1323
2057
  if(quit_now){
1324
2058
    goto end;
1325
2059
  }
1326
2060
  
1327
2061
  if(not init_gpgme(pubkey, seckey, tempdir)){
1328
 
    fprintf(stderr, "init_gpgme failed\n");
1329
 
    exitcode = EXIT_FAILURE;
 
2062
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2063
            "init_gpgme failed\n");
 
2064
    exitcode = EX_UNAVAILABLE;
1330
2065
    goto end;
1331
2066
  } else {
1332
2067
    gpgme_initialized = true;
1341
2076
    /* (Mainly meant for debugging) */
1342
2077
    char *address = strrchr(connect_to, ':');
1343
2078
    if(address == NULL){
1344
 
      fprintf(stderr, "No colon in address\n");
1345
 
      exitcode = EXIT_FAILURE;
 
2079
      fprintf(stderr, "Mandos plugin mandos-client: "
 
2080
              "No colon in address\n");
 
2081
      exitcode = EX_USAGE;
1346
2082
      goto end;
1347
2083
    }
1348
2084
    
1355
2091
    tmpmax = strtoimax(address+1, &tmp, 10);
1356
2092
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
1357
2093
       or tmpmax != (uint16_t)tmpmax){
1358
 
      fprintf(stderr, "Bad port number\n");
1359
 
      exitcode = EXIT_FAILURE;
 
2094
      fprintf(stderr, "Mandos plugin mandos-client: "
 
2095
              "Bad port number\n");
 
2096
      exitcode = EX_USAGE;
1360
2097
      goto end;
1361
2098
    }
1362
2099
  
1366
2103
    
1367
2104
    port = (uint16_t)tmpmax;
1368
2105
    *address = '\0';
1369
 
    address = connect_to;
1370
2106
    /* Colon in address indicates IPv6 */
1371
2107
    int af;
1372
 
    if(strchr(address, ':') != NULL){
 
2108
    if(strchr(connect_to, ':') != NULL){
1373
2109
      af = AF_INET6;
 
2110
      /* Accept [] around IPv6 address - see RFC 5952 */
 
2111
      if(connect_to[0] == '[' and address[-1] == ']')
 
2112
        {
 
2113
          connect_to++;
 
2114
          address[-1] = '\0';
 
2115
        }
1374
2116
    } else {
1375
2117
      af = AF_INET;
1376
2118
    }
 
2119
    address = connect_to;
1377
2120
    
1378
2121
    if(quit_now){
1379
2122
      goto end;
1380
2123
    }
1381
2124
    
1382
 
    ret = start_mandos_communication(address, port, if_index, af);
1383
 
    if(ret < 0){
1384
 
      exitcode = EXIT_FAILURE;
1385
 
    } else {
 
2125
    while(not quit_now){
 
2126
      ret = start_mandos_communication(address, port, if_index, af);
 
2127
      if(quit_now or ret == 0){
 
2128
        break;
 
2129
      }
 
2130
      if(debug){
 
2131
        fprintf(stderr, "Mandos plugin mandos-client: "
 
2132
                "Retrying in %d seconds\n", (int)retry_interval);
 
2133
      }
 
2134
      sleep((int)retry_interval);
 
2135
    }
 
2136
    
 
2137
    if (not quit_now){
1386
2138
      exitcode = EXIT_SUCCESS;
1387
2139
    }
 
2140
    
1388
2141
    goto end;
1389
2142
  }
1390
2143
  
1412
2165
  
1413
2166
  /* Check if creating the Avahi server object succeeded */
1414
2167
  if(mc.server == NULL){
1415
 
    fprintf(stderr, "Failed to create Avahi server: %s\n",
 
2168
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2169
            "Failed to create Avahi server: %s\n",
1416
2170
            avahi_strerror(error));
1417
 
    exitcode = EXIT_FAILURE;
 
2171
    exitcode = EX_UNAVAILABLE;
1418
2172
    goto end;
1419
2173
  }
1420
2174
  
1427
2181
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
1428
2182
                                   NULL, 0, browse_callback, NULL);
1429
2183
  if(sb == NULL){
1430
 
    fprintf(stderr, "Failed to create service browser: %s\n",
 
2184
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2185
            "Failed to create service browser: %s\n",
1431
2186
            avahi_strerror(avahi_server_errno(mc.server)));
1432
 
    exitcode = EXIT_FAILURE;
 
2187
    exitcode = EX_UNAVAILABLE;
1433
2188
    goto end;
1434
2189
  }
1435
2190
  
1440
2195
  /* Run the main loop */
1441
2196
  
1442
2197
  if(debug){
1443
 
    fprintf(stderr, "Starting Avahi loop search\n");
1444
 
  }
1445
 
  
1446
 
  avahi_simple_poll_loop(mc.simple_poll);
 
2198
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2199
            "Starting Avahi loop search\n");
 
2200
  }
 
2201
 
 
2202
  ret = avahi_loop_with_timeout(mc.simple_poll,
 
2203
                                (int)(retry_interval * 1000));
 
2204
  if(debug){
 
2205
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2206
            "avahi_loop_with_timeout exited %s\n",
 
2207
            (ret == 0) ? "successfully" : "with error");
 
2208
  }
1447
2209
  
1448
2210
 end:
1449
2211
  
1450
2212
  if(debug){
1451
 
    fprintf(stderr, "%s exiting\n", argv[0]);
 
2213
    fprintf(stderr, "Mandos plugin mandos-client: "
 
2214
            "%s exiting\n", argv[0]);
1452
2215
  }
1453
2216
  
1454
2217
  /* Cleanup things */
1470
2233
  if(gpgme_initialized){
1471
2234
    gpgme_release(mc.ctx);
1472
2235
  }
 
2236
 
 
2237
  /* Cleans up the circular linked list of Mandos servers the client
 
2238
     has seen */
 
2239
  if(mc.current_server != NULL){
 
2240
    mc.current_server->prev->next = NULL;
 
2241
    while(mc.current_server != NULL){
 
2242
      server *next = mc.current_server->next;
 
2243
      free(mc.current_server);
 
2244
      mc.current_server = next;
 
2245
    }
 
2246
  }
 
2247
  
 
2248
  /* XXX run network hooks "stop" here  */
1473
2249
  
1474
2250
  /* Take down the network interface */
1475
2251
  if(take_down_interface){
1476
 
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
2252
    /* Re-raise priviliges */
 
2253
    errno = 0;
 
2254
    ret = seteuid(0);
1477
2255
    if(ret == -1){
1478
 
      perror("ioctl SIOCGIFFLAGS");
1479
 
    } else if(network.ifr_flags & IFF_UP) {
1480
 
      network.ifr_flags &= ~IFF_UP; /* clear flag */
1481
 
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1482
 
      if(ret == -1){
1483
 
        perror("ioctl SIOCSIFFLAGS");
1484
 
      }
 
2256
      perror_plus("seteuid");
1485
2257
    }
1486
 
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
1487
 
    if(ret == -1){
1488
 
      perror("close");
 
2258
    if(geteuid() == 0){
 
2259
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
2260
      if(ret == -1){
 
2261
        perror_plus("ioctl SIOCGIFFLAGS");
 
2262
      } else if(network.ifr_flags & IFF_UP){
 
2263
        network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
 
2264
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
2265
        if(ret == -1){
 
2266
          perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
 
2267
        }
 
2268
      }
 
2269
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
2270
      if(ret == -1){
 
2271
        perror_plus("close");
 
2272
      }
 
2273
      /* Lower privileges permanently */
 
2274
      errno = 0;
 
2275
      ret = setuid(uid);
 
2276
      if(ret == -1){
 
2277
        perror_plus("setuid");
 
2278
      }
1489
2279
    }
1490
2280
  }
1491
2281
  
1492
 
  /* Removes the temp directory used by GPGME */
 
2282
  /* Removes the GPGME temp directory and all files inside */
1493
2283
  if(tempdir_created){
1494
 
    DIR *d;
1495
 
    struct dirent *direntry;
1496
 
    d = opendir(tempdir);
1497
 
    if(d == NULL){
1498
 
      if(errno != ENOENT){
1499
 
        perror("opendir");
1500
 
      }
1501
 
    } else {
1502
 
      while(true){
1503
 
        direntry = readdir(d);
1504
 
        if(direntry == NULL){
1505
 
          break;
1506
 
        }
1507
 
        /* Skip "." and ".." */
1508
 
        if(direntry->d_name[0] == '.'
1509
 
           and (direntry->d_name[1] == '\0'
1510
 
                or (direntry->d_name[1] == '.'
1511
 
                    and direntry->d_name[2] == '\0'))){
1512
 
          continue;
1513
 
        }
 
2284
    struct dirent **direntries = NULL;
 
2285
    struct dirent *direntry = NULL;
 
2286
    int numentries = scandir(tempdir, &direntries, notdotentries,
 
2287
                             alphasort);
 
2288
    if (numentries > 0){
 
2289
      for(int i = 0; i < numentries; i++){
 
2290
        direntry = direntries[i];
1514
2291
        char *fullname = NULL;
1515
2292
        ret = asprintf(&fullname, "%s/%s", tempdir,
1516
2293
                       direntry->d_name);
1517
2294
        if(ret < 0){
1518
 
          perror("asprintf");
 
2295
          perror_plus("asprintf");
1519
2296
          continue;
1520
2297
        }
1521
2298
        ret = remove(fullname);
1522
2299
        if(ret == -1){
1523
 
          fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
1524
 
                  strerror(errno));
 
2300
          fprintf(stderr, "Mandos plugin mandos-client: "
 
2301
                  "remove(\"%s\"): %s\n", fullname, strerror(errno));
1525
2302
        }
1526
2303
        free(fullname);
1527
2304
      }
1528
 
      closedir(d);
 
2305
    }
 
2306
 
 
2307
    /* need to clean even if 0 because man page doesn't specify */
 
2308
    free(direntries);
 
2309
    if (numentries == -1){
 
2310
      perror_plus("scandir");
1529
2311
    }
1530
2312
    ret = rmdir(tempdir);
1531
2313
    if(ret == -1 and errno != ENOENT){
1532
 
      perror("rmdir");
 
2314
      perror_plus("rmdir");
1533
2315
    }
1534
2316
  }
1535
2317
  
1536
2318
  if(quit_now){
1537
2319
    sigemptyset(&old_sigterm_action.sa_mask);
1538
2320
    old_sigterm_action.sa_handler = SIG_DFL;
1539
 
    ret = sigaction(signal_received, &old_sigterm_action, NULL);
 
2321
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
 
2322
                                            &old_sigterm_action,
 
2323
                                            NULL));
1540
2324
    if(ret == -1){
1541
 
      perror("sigaction");
1542
 
    }
1543
 
    raise(signal_received);
 
2325
      perror_plus("sigaction");
 
2326
    }
 
2327
    do {
 
2328
      ret = raise(signal_received);
 
2329
    } while(ret != 0 and errno == EINTR);
 
2330
    if(ret != 0){
 
2331
      perror_plus("raise");
 
2332
      abort();
 
2333
    }
 
2334
    TEMP_FAILURE_RETRY(pause());
1544
2335
  }
1545
2336
  
1546
2337
  return exitcode;