/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: 2014-01-06 15:56:54 UTC
  • Revision ID: teddy@recompile.se-20140106155654-urx23ytuvy0nxzwp
Update init script to modern standards.

* init.d-mandos (status): Moved to standard location.  Re-added use of
                          -p switch compared to skeleton file.
  (*): Update message to include "status".

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-2013 Teddy Hogeborn
 
13
 * Copyright © 2008-2013 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() */
41
41
 
42
42
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
43
43
                                   stdout, ferror(), remove() */
44
 
#include <stdint.h>             /* uint16_t, uint32_t */
 
44
#include <stdint.h>             /* uint16_t, uint32_t, intptr_t */
45
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
46
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, srand(),
47
47
                                   strtof(), abort() */
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() */
61
61
                                 */
62
62
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
63
63
                                   strtoimax() */
64
 
#include <assert.h>             /* assert() */
65
 
#include <errno.h>              /* perror(), errno */
66
 
#include <time.h>               /* nanosleep(), time() */
 
64
#include <errno.h>              /* perror(), errno,
 
65
                                   program_invocation_short_name */
 
66
#include <time.h>               /* nanosleep(), time(), sleep() */
67
67
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
68
68
                                   SIOCSIFFLAGS, if_indextoname(),
69
69
                                   if_nametoindex(), IF_NAMESIZE */
72
72
                                */
73
73
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
74
74
                                   getuid(), getgid(), seteuid(),
75
 
                                   setgid(), pause() */
76
 
#include <arpa/inet.h>          /* inet_pton(), htons */
 
75
                                   setgid(), pause(), _exit() */
 
76
#include <arpa/inet.h>          /* inet_pton(), htons, inet_ntop() */
77
77
#include <iso646.h>             /* not, or, and */
78
78
#include <argp.h>               /* struct argp_option, error_t, struct
79
79
                                   argp_state, struct argp,
84
84
                                   raise() */
85
85
#include <sysexits.h>           /* EX_OSERR, EX_USAGE, EX_UNAVAILABLE,
86
86
                                   EX_NOHOST, EX_IOERR, EX_PROTOCOL */
 
87
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
 
88
                                   WEXITSTATUS(), WTERMSIG() */
 
89
#include <grp.h>                /* setgroups() */
 
90
#include <argz.h>               /* argz_add_sep(), argz_next(),
 
91
                                   argz_delete(), argz_append(),
 
92
                                   argz_stringify(), argz_add(),
 
93
                                   argz_count() */
87
94
 
88
95
#ifdef __linux__
89
96
#include <sys/klog.h>           /* klogctl() */
107
114
                                   init_gnutls_session(),
108
115
                                   GNUTLS_* */
109
116
#include <gnutls/openpgp.h>
110
 
                          /* gnutls_certificate_set_openpgp_key_file(),
111
 
                                   GNUTLS_OPENPGP_FMT_BASE64 */
 
117
                         /* gnutls_certificate_set_openpgp_key_file(),
 
118
                            GNUTLS_OPENPGP_FMT_BASE64 */
112
119
 
113
120
/* GPGME */
114
121
#include <gpgme.h>              /* All GPGME types, constants and
122
129
#define PATHDIR "/conf/conf.d/mandos"
123
130
#define SECKEY "seckey.txt"
124
131
#define PUBKEY "pubkey.txt"
 
132
#define HOOKDIR "/lib/mandos/network-hooks.d"
125
133
 
126
134
bool debug = false;
127
135
static const char mandos_protocol_version[] = "1";
128
136
const char *argp_program_version = "mandos-client " VERSION;
129
 
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
137
const char *argp_program_bug_address = "<mandos@recompile.se>";
130
138
static const char sys_class_net[] = "/sys/class/net";
131
139
char *connect_to = NULL;
 
140
const char *hookdir = HOOKDIR;
 
141
uid_t uid = 65534;
 
142
gid_t gid = 65534;
 
143
 
 
144
/* Doubly linked list that need to be circularly linked when used */
 
145
typedef struct server{
 
146
  const char *ip;
 
147
  in_port_t port;
 
148
  AvahiIfIndex if_index;
 
149
  int af;
 
150
  struct timespec last_seen;
 
151
  struct server *next;
 
152
  struct server *prev;
 
153
} server;
132
154
 
133
155
/* Used for passing in values through the Avahi callback functions */
134
156
typedef struct {
135
 
  AvahiSimplePoll *simple_poll;
136
157
  AvahiServer *server;
137
158
  gnutls_certificate_credentials_t cred;
138
159
  unsigned int dh_bits;
139
160
  gnutls_dh_params_t dh_params;
140
161
  const char *priority;
141
162
  gpgme_ctx_t ctx;
 
163
  server *current_server;
 
164
  char *interfaces;
 
165
  size_t interfaces_size;
142
166
} mandos_context;
143
167
 
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" };
 
168
/* global so signal handler can reach it*/
 
169
AvahiSimplePoll *simple_poll;
148
170
 
149
171
sig_atomic_t quit_now = 0;
150
172
int signal_received = 0;
151
173
 
 
174
/* Function to use when printing errors */
 
175
void perror_plus(const char *print_text){
 
176
  int e = errno;
 
177
  fprintf(stderr, "Mandos plugin %s: ",
 
178
          program_invocation_short_name);
 
179
  errno = e;
 
180
  perror(print_text);
 
181
}
 
182
 
 
183
__attribute__((format (gnu_printf, 2, 3)))
 
184
int fprintf_plus(FILE *stream, const char *format, ...){
 
185
  va_list ap;
 
186
  va_start (ap, format);
 
187
  
 
188
  TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
 
189
                             program_invocation_short_name));
 
190
  return (int)TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
 
191
}
 
192
 
152
193
/*
153
194
 * Make additional room in "buffer" for at least BUFFER_SIZE more
154
195
 * bytes. "buffer_capacity" is how much is currently allocated,
155
196
 * "buffer_length" is how much is already used.
156
197
 */
157
198
size_t incbuffer(char **buffer, size_t buffer_length,
158
 
                  size_t buffer_capacity){
 
199
                 size_t buffer_capacity){
159
200
  if(buffer_length + BUFFER_SIZE > buffer_capacity){
160
201
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
161
202
    if(buffer == NULL){
166
207
  return buffer_capacity;
167
208
}
168
209
 
 
210
/* Add server to set of servers to retry periodically */
 
211
bool add_server(const char *ip, in_port_t port, AvahiIfIndex if_index,
 
212
                int af, server **current_server){
 
213
  int ret;
 
214
  server *new_server = malloc(sizeof(server));
 
215
  if(new_server == NULL){
 
216
    perror_plus("malloc");
 
217
    return false;
 
218
  }
 
219
  *new_server = (server){ .ip = strdup(ip),
 
220
                          .port = port,
 
221
                          .if_index = if_index,
 
222
                          .af = af };
 
223
  if(new_server->ip == NULL){
 
224
    perror_plus("strdup");
 
225
    return false;
 
226
  }
 
227
  /* Special case of first server */
 
228
  if(*current_server == NULL){
 
229
    new_server->next = new_server;
 
230
    new_server->prev = new_server;
 
231
    *current_server = new_server;
 
232
  /* Place the new server last in the list */
 
233
  } else {
 
234
    new_server->next = *current_server;
 
235
    new_server->prev = (*current_server)->prev;
 
236
    new_server->prev->next = new_server;
 
237
    (*current_server)->prev = new_server;
 
238
  }
 
239
  ret = clock_gettime(CLOCK_MONOTONIC, &(*current_server)->last_seen);
 
240
  if(ret == -1){
 
241
    perror_plus("clock_gettime");
 
242
    return false;
 
243
  }
 
244
  return true;
 
245
}
 
246
 
169
247
/* 
170
248
 * Initialize GPGME.
171
249
 */
172
 
static bool init_gpgme(const char *seckey,
173
 
                       const char *pubkey, const char *tempdir){
 
250
static bool init_gpgme(const char *seckey, const char *pubkey,
 
251
                       const char *tempdir, mandos_context *mc){
174
252
  gpgme_error_t rc;
175
253
  gpgme_engine_info_t engine_info;
176
254
  
177
 
  
178
255
  /*
179
256
   * Helper function to insert pub and seckey to the engine keyring.
180
257
   */
185
262
    
186
263
    fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
187
264
    if(fd == -1){
188
 
      perror("open");
 
265
      perror_plus("open");
189
266
      return false;
190
267
    }
191
268
    
192
269
    rc = gpgme_data_new_from_fd(&pgp_data, fd);
193
270
    if(rc != GPG_ERR_NO_ERROR){
194
 
      fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
195
 
              gpgme_strsource(rc), gpgme_strerror(rc));
 
271
      fprintf_plus(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
 
272
                   gpgme_strsource(rc), gpgme_strerror(rc));
196
273
      return false;
197
274
    }
198
275
    
199
 
    rc = gpgme_op_import(mc.ctx, pgp_data);
 
276
    rc = gpgme_op_import(mc->ctx, pgp_data);
200
277
    if(rc != GPG_ERR_NO_ERROR){
201
 
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
202
 
              gpgme_strsource(rc), gpgme_strerror(rc));
 
278
      fprintf_plus(stderr, "bad gpgme_op_import: %s: %s\n",
 
279
                   gpgme_strsource(rc), gpgme_strerror(rc));
203
280
      return false;
204
281
    }
205
282
    
206
283
    ret = (int)TEMP_FAILURE_RETRY(close(fd));
207
284
    if(ret == -1){
208
 
      perror("close");
 
285
      perror_plus("close");
209
286
    }
210
287
    gpgme_data_release(pgp_data);
211
288
    return true;
212
289
  }
213
290
  
214
291
  if(debug){
215
 
    fprintf(stderr, "Initializing GPGME\n");
 
292
    fprintf_plus(stderr, "Initializing GPGME\n");
216
293
  }
217
294
  
218
295
  /* Init GPGME */
219
296
  gpgme_check_version(NULL);
220
297
  rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
221
298
  if(rc != GPG_ERR_NO_ERROR){
222
 
    fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
223
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
299
    fprintf_plus(stderr, "bad gpgme_engine_check_version: %s: %s\n",
 
300
                 gpgme_strsource(rc), gpgme_strerror(rc));
224
301
    return false;
225
302
  }
226
303
  
227
 
    /* Set GPGME home directory for the OpenPGP engine only */
 
304
  /* Set GPGME home directory for the OpenPGP engine only */
228
305
  rc = gpgme_get_engine_info(&engine_info);
229
306
  if(rc != GPG_ERR_NO_ERROR){
230
 
    fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
231
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
307
    fprintf_plus(stderr, "bad gpgme_get_engine_info: %s: %s\n",
 
308
                 gpgme_strsource(rc), gpgme_strerror(rc));
232
309
    return false;
233
310
  }
234
311
  while(engine_info != NULL){
240
317
    engine_info = engine_info->next;
241
318
  }
242
319
  if(engine_info == NULL){
243
 
    fprintf(stderr, "Could not set GPGME home dir to %s\n", tempdir);
 
320
    fprintf_plus(stderr, "Could not set GPGME home dir to %s\n",
 
321
                 tempdir);
244
322
    return false;
245
323
  }
246
324
  
247
325
  /* Create new GPGME "context" */
248
 
  rc = gpgme_new(&(mc.ctx));
 
326
  rc = gpgme_new(&(mc->ctx));
249
327
  if(rc != GPG_ERR_NO_ERROR){
250
 
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
251
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
328
    fprintf_plus(stderr, "Mandos plugin mandos-client: "
 
329
                 "bad gpgme_new: %s: %s\n", gpgme_strsource(rc),
 
330
                 gpgme_strerror(rc));
252
331
    return false;
253
332
  }
254
333
  
265
344
 */
266
345
static ssize_t pgp_packet_decrypt(const char *cryptotext,
267
346
                                  size_t crypto_size,
268
 
                                  char **plaintext){
 
347
                                  char **plaintext,
 
348
                                  mandos_context *mc){
269
349
  gpgme_data_t dh_crypto, dh_plain;
270
350
  gpgme_error_t rc;
271
351
  ssize_t ret;
273
353
  ssize_t plaintext_length = 0;
274
354
  
275
355
  if(debug){
276
 
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
 
356
    fprintf_plus(stderr, "Trying to decrypt OpenPGP data\n");
277
357
  }
278
358
  
279
359
  /* Create new GPGME data buffer from memory cryptotext */
280
360
  rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
281
361
                               0);
282
362
  if(rc != GPG_ERR_NO_ERROR){
283
 
    fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
284
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
363
    fprintf_plus(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
 
364
                 gpgme_strsource(rc), gpgme_strerror(rc));
285
365
    return -1;
286
366
  }
287
367
  
288
368
  /* Create new empty GPGME data buffer for the plaintext */
289
369
  rc = gpgme_data_new(&dh_plain);
290
370
  if(rc != GPG_ERR_NO_ERROR){
291
 
    fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
292
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
371
    fprintf_plus(stderr, "Mandos plugin mandos-client: "
 
372
                 "bad gpgme_data_new: %s: %s\n",
 
373
                 gpgme_strsource(rc), gpgme_strerror(rc));
293
374
    gpgme_data_release(dh_crypto);
294
375
    return -1;
295
376
  }
296
377
  
297
378
  /* Decrypt data from the cryptotext data buffer to the plaintext
298
379
     data buffer */
299
 
  rc = gpgme_op_decrypt(mc.ctx, dh_crypto, dh_plain);
 
380
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
300
381
  if(rc != GPG_ERR_NO_ERROR){
301
 
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
302
 
            gpgme_strsource(rc), gpgme_strerror(rc));
 
382
    fprintf_plus(stderr, "bad gpgme_op_decrypt: %s: %s\n",
 
383
                 gpgme_strsource(rc), gpgme_strerror(rc));
303
384
    plaintext_length = -1;
304
385
    if(debug){
305
386
      gpgme_decrypt_result_t result;
306
 
      result = gpgme_op_decrypt_result(mc.ctx);
 
387
      result = gpgme_op_decrypt_result(mc->ctx);
307
388
      if(result == NULL){
308
 
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
 
389
        fprintf_plus(stderr, "gpgme_op_decrypt_result failed\n");
309
390
      } else {
310
 
        fprintf(stderr, "Unsupported algorithm: %s\n",
311
 
                result->unsupported_algorithm);
312
 
        fprintf(stderr, "Wrong key usage: %u\n",
313
 
                result->wrong_key_usage);
 
391
        fprintf_plus(stderr, "Unsupported algorithm: %s\n",
 
392
                     result->unsupported_algorithm);
 
393
        fprintf_plus(stderr, "Wrong key usage: %u\n",
 
394
                     result->wrong_key_usage);
314
395
        if(result->file_name != NULL){
315
 
          fprintf(stderr, "File name: %s\n", result->file_name);
 
396
          fprintf_plus(stderr, "File name: %s\n", result->file_name);
316
397
        }
317
398
        gpgme_recipient_t recipient;
318
399
        recipient = result->recipients;
319
400
        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");
 
401
          fprintf_plus(stderr, "Public key algorithm: %s\n",
 
402
                       gpgme_pubkey_algo_name
 
403
                       (recipient->pubkey_algo));
 
404
          fprintf_plus(stderr, "Key ID: %s\n", recipient->keyid);
 
405
          fprintf_plus(stderr, "Secret key available: %s\n",
 
406
                       recipient->status == GPG_ERR_NO_SECKEY
 
407
                       ? "No" : "Yes");
326
408
          recipient = recipient->next;
327
409
        }
328
410
      }
331
413
  }
332
414
  
333
415
  if(debug){
334
 
    fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
 
416
    fprintf_plus(stderr, "Decryption of OpenPGP data succeeded\n");
335
417
  }
336
418
  
337
419
  /* Seek back to the beginning of the GPGME plaintext data buffer */
338
420
  if(gpgme_data_seek(dh_plain, (off_t)0, SEEK_SET) == -1){
339
 
    perror("gpgme_data_seek");
 
421
    perror_plus("gpgme_data_seek");
340
422
    plaintext_length = -1;
341
423
    goto decrypt_end;
342
424
  }
344
426
  *plaintext = NULL;
345
427
  while(true){
346
428
    plaintext_capacity = incbuffer(plaintext,
347
 
                                      (size_t)plaintext_length,
348
 
                                      plaintext_capacity);
 
429
                                   (size_t)plaintext_length,
 
430
                                   plaintext_capacity);
349
431
    if(plaintext_capacity == 0){
350
 
        perror("incbuffer");
351
 
        plaintext_length = -1;
352
 
        goto decrypt_end;
 
432
      perror_plus("incbuffer");
 
433
      plaintext_length = -1;
 
434
      goto decrypt_end;
353
435
    }
354
436
    
355
437
    ret = gpgme_data_read(dh_plain, *plaintext + plaintext_length,
360
442
      break;
361
443
    }
362
444
    if(ret < 0){
363
 
      perror("gpgme_data_read");
 
445
      perror_plus("gpgme_data_read");
364
446
      plaintext_length = -1;
365
447
      goto decrypt_end;
366
448
    }
368
450
  }
369
451
  
370
452
  if(debug){
371
 
    fprintf(stderr, "Decrypted password is: ");
 
453
    fprintf_plus(stderr, "Decrypted password is: ");
372
454
    for(ssize_t i = 0; i < plaintext_length; i++){
373
455
      fprintf(stderr, "%02hhX ", (*plaintext)[i]);
374
456
    }
386
468
}
387
469
 
388
470
static const char * safer_gnutls_strerror(int value){
389
 
  const char *ret = gnutls_strerror(value); /* Spurious warning from
390
 
                                               -Wunreachable-code */
 
471
  const char *ret = gnutls_strerror(value);
391
472
  if(ret == NULL)
392
473
    ret = "(unknown)";
393
474
  return ret;
396
477
/* GnuTLS log function callback */
397
478
static void debuggnutls(__attribute__((unused)) int level,
398
479
                        const char* string){
399
 
  fprintf(stderr, "GnuTLS: %s", string);
 
480
  fprintf_plus(stderr, "GnuTLS: %s", string);
400
481
}
401
482
 
402
483
static int init_gnutls_global(const char *pubkeyfilename,
403
 
                              const char *seckeyfilename){
 
484
                              const char *seckeyfilename,
 
485
                              mandos_context *mc){
404
486
  int ret;
405
487
  
406
488
  if(debug){
407
 
    fprintf(stderr, "Initializing GnuTLS\n");
 
489
    fprintf_plus(stderr, "Initializing GnuTLS\n");
408
490
  }
409
491
  
410
492
  ret = gnutls_global_init();
411
493
  if(ret != GNUTLS_E_SUCCESS){
412
 
    fprintf(stderr, "GnuTLS global_init: %s\n",
413
 
            safer_gnutls_strerror(ret));
 
494
    fprintf_plus(stderr, "GnuTLS global_init: %s\n",
 
495
                 safer_gnutls_strerror(ret));
414
496
    return -1;
415
497
  }
416
498
  
423
505
  }
424
506
  
425
507
  /* OpenPGP credentials */
426
 
  gnutls_certificate_allocate_credentials(&mc.cred);
 
508
  ret = gnutls_certificate_allocate_credentials(&mc->cred);
427
509
  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));
 
510
    fprintf_plus(stderr, "GnuTLS memory error: %s\n",
 
511
                 safer_gnutls_strerror(ret));
433
512
    gnutls_global_deinit();
434
513
    return -1;
435
514
  }
436
515
  
437
516
  if(debug){
438
 
    fprintf(stderr, "Attempting to use OpenPGP public key %s and"
439
 
            " secret key %s as GnuTLS credentials\n", pubkeyfilename,
440
 
            seckeyfilename);
 
517
    fprintf_plus(stderr, "Attempting to use OpenPGP public key %s and"
 
518
                 " secret key %s as GnuTLS credentials\n",
 
519
                 pubkeyfilename,
 
520
                 seckeyfilename);
441
521
  }
442
522
  
443
523
  ret = gnutls_certificate_set_openpgp_key_file
444
 
    (mc.cred, pubkeyfilename, seckeyfilename,
 
524
    (mc->cred, pubkeyfilename, seckeyfilename,
445
525
     GNUTLS_OPENPGP_FMT_BASE64);
446
526
  if(ret != GNUTLS_E_SUCCESS){
447
 
    fprintf(stderr,
448
 
            "Error[%d] while reading the OpenPGP key pair ('%s',"
449
 
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
450
 
    fprintf(stderr, "The GnuTLS error is: %s\n",
451
 
            safer_gnutls_strerror(ret));
 
527
    fprintf_plus(stderr,
 
528
                 "Error[%d] while reading the OpenPGP key pair ('%s',"
 
529
                 " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
530
    fprintf_plus(stderr, "The GnuTLS error is: %s\n",
 
531
                 safer_gnutls_strerror(ret));
452
532
    goto globalfail;
453
533
  }
454
534
  
455
535
  /* GnuTLS server initialization */
456
 
  ret = gnutls_dh_params_init(&mc.dh_params);
 
536
  ret = gnutls_dh_params_init(&mc->dh_params);
457
537
  if(ret != GNUTLS_E_SUCCESS){
458
 
    fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
459
 
            " %s\n", safer_gnutls_strerror(ret));
 
538
    fprintf_plus(stderr, "Error in GnuTLS DH parameter"
 
539
                 " initialization: %s\n",
 
540
                 safer_gnutls_strerror(ret));
460
541
    goto globalfail;
461
542
  }
462
 
  ret = gnutls_dh_params_generate2(mc.dh_params, mc.dh_bits);
 
543
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
463
544
  if(ret != GNUTLS_E_SUCCESS){
464
 
    fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
465
 
            safer_gnutls_strerror(ret));
 
545
    fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
 
546
                 safer_gnutls_strerror(ret));
466
547
    goto globalfail;
467
548
  }
468
549
  
469
 
  gnutls_certificate_set_dh_params(mc.cred, mc.dh_params);
 
550
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
470
551
  
471
552
  return 0;
472
553
  
473
554
 globalfail:
474
555
  
475
 
  gnutls_certificate_free_credentials(mc.cred);
 
556
  gnutls_certificate_free_credentials(mc->cred);
476
557
  gnutls_global_deinit();
477
 
  gnutls_dh_params_deinit(mc.dh_params);
 
558
  gnutls_dh_params_deinit(mc->dh_params);
478
559
  return -1;
479
560
}
480
561
 
481
 
static int init_gnutls_session(gnutls_session_t *session){
 
562
static int init_gnutls_session(gnutls_session_t *session,
 
563
                               mandos_context *mc){
482
564
  int ret;
483
565
  /* GnuTLS session creation */
484
566
  do {
488
570
    }
489
571
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
490
572
  if(ret != GNUTLS_E_SUCCESS){
491
 
    fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
492
 
            safer_gnutls_strerror(ret));
 
573
    fprintf_plus(stderr,
 
574
                 "Error in GnuTLS session initialization: %s\n",
 
575
                 safer_gnutls_strerror(ret));
493
576
  }
494
577
  
495
578
  {
496
579
    const char *err;
497
580
    do {
498
 
      ret = gnutls_priority_set_direct(*session, mc.priority, &err);
 
581
      ret = gnutls_priority_set_direct(*session, mc->priority, &err);
499
582
      if(quit_now){
500
583
        gnutls_deinit(*session);
501
584
        return -1;
502
585
      }
503
586
    } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
504
587
    if(ret != GNUTLS_E_SUCCESS){
505
 
      fprintf(stderr, "Syntax error at: %s\n", err);
506
 
      fprintf(stderr, "GnuTLS error: %s\n",
507
 
              safer_gnutls_strerror(ret));
 
588
      fprintf_plus(stderr, "Syntax error at: %s\n", err);
 
589
      fprintf_plus(stderr, "GnuTLS error: %s\n",
 
590
                   safer_gnutls_strerror(ret));
508
591
      gnutls_deinit(*session);
509
592
      return -1;
510
593
    }
512
595
  
513
596
  do {
514
597
    ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
515
 
                                 mc.cred);
 
598
                                 mc->cred);
516
599
    if(quit_now){
517
600
      gnutls_deinit(*session);
518
601
      return -1;
519
602
    }
520
603
  } while(ret == GNUTLS_E_INTERRUPTED or ret == GNUTLS_E_AGAIN);
521
604
  if(ret != GNUTLS_E_SUCCESS){
522
 
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
523
 
            safer_gnutls_strerror(ret));
 
605
    fprintf_plus(stderr, "Error setting GnuTLS credentials: %s\n",
 
606
                 safer_gnutls_strerror(ret));
524
607
    gnutls_deinit(*session);
525
608
    return -1;
526
609
  }
528
611
  /* ignore client certificate if any. */
529
612
  gnutls_certificate_server_set_request(*session, GNUTLS_CERT_IGNORE);
530
613
  
531
 
  gnutls_dh_set_prime_bits(*session, mc.dh_bits);
 
614
  gnutls_dh_set_prime_bits(*session, mc->dh_bits);
532
615
  
533
616
  return 0;
534
617
}
538
621
                      __attribute__((unused)) const char *txt){}
539
622
 
540
623
/* Called when a Mandos server is found */
541
 
static int start_mandos_communication(const char *ip, uint16_t port,
 
624
static int start_mandos_communication(const char *ip, in_port_t port,
542
625
                                      AvahiIfIndex if_index,
543
 
                                      int af){
 
626
                                      int af, mandos_context *mc){
544
627
  int ret, tcp_sd = -1;
545
628
  ssize_t sret;
546
629
  union {
571
654
    pf = PF_INET;
572
655
    break;
573
656
  default:
574
 
    fprintf(stderr, "Bad address family: %d\n", af);
 
657
    fprintf_plus(stderr, "Bad address family: %d\n", af);
575
658
    errno = EINVAL;
576
659
    return -1;
577
660
  }
578
661
  
579
 
  ret = init_gnutls_session(&session);
 
662
  /* If the interface is specified and we have a list of interfaces */
 
663
  if(if_index != AVAHI_IF_UNSPEC and mc->interfaces != NULL){
 
664
    /* Check if the interface is one of the interfaces we are using */
 
665
    bool match = false;
 
666
    {
 
667
      char *interface = NULL;
 
668
      while((interface=argz_next(mc->interfaces, mc->interfaces_size,
 
669
                                 interface))){
 
670
        if(if_nametoindex(interface) == (unsigned int)if_index){
 
671
          match = true;
 
672
          break;
 
673
        }
 
674
      }
 
675
    }
 
676
    if(not match){
 
677
      /* This interface does not match any in the list, so we don't
 
678
         connect to the server */
 
679
      if(debug){
 
680
        char interface[IF_NAMESIZE];
 
681
        if(if_indextoname((unsigned int)if_index, interface) == NULL){
 
682
          perror_plus("if_indextoname");
 
683
        } else {
 
684
          fprintf_plus(stderr, "Skipping server on non-used interface"
 
685
                       " \"%s\"\n",
 
686
                       if_indextoname((unsigned int)if_index,
 
687
                                      interface));
 
688
        }
 
689
      }
 
690
      return -1;
 
691
    }
 
692
  }
 
693
  
 
694
  ret = init_gnutls_session(&session, mc);
580
695
  if(ret != 0){
581
696
    return -1;
582
697
  }
583
698
  
584
699
  if(debug){
585
 
    fprintf(stderr, "Setting up a TCP connection to %s, port %" PRIu16
586
 
            "\n", ip, port);
 
700
    fprintf_plus(stderr, "Setting up a TCP connection to %s, port %"
 
701
                 PRIuMAX "\n", ip, (uintmax_t)port);
587
702
  }
588
703
  
589
704
  tcp_sd = socket(pf, SOCK_STREAM, 0);
590
705
  if(tcp_sd < 0){
591
706
    int e = errno;
592
 
    perror("socket");
 
707
    perror_plus("socket");
593
708
    errno = e;
594
709
    goto mandos_end;
595
710
  }
609
724
  }
610
725
  if(ret < 0 ){
611
726
    int e = errno;
612
 
    perror("inet_pton");
 
727
    perror_plus("inet_pton");
613
728
    errno = e;
614
729
    goto mandos_end;
615
730
  }
616
731
  if(ret == 0){
617
732
    int e = errno;
618
 
    fprintf(stderr, "Bad address: %s\n", ip);
 
733
    fprintf_plus(stderr, "Bad address: %s\n", ip);
619
734
    errno = e;
620
735
    goto mandos_end;
621
736
  }
622
737
  if(af == AF_INET6){
623
 
    to.in6.sin6_port = htons(port); /* Spurious warnings from
624
 
                                       -Wconversion and
625
 
                                       -Wunreachable-code */
626
 
    
 
738
    to.in6.sin6_port = htons(port);    
 
739
#ifdef __GNUC__
 
740
#pragma GCC diagnostic push
 
741
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
 
742
#endif
627
743
    if(IN6_IS_ADDR_LINKLOCAL /* Spurious warnings from */
628
 
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower and
629
 
                              -Wunreachable-code*/
 
744
       (&to.in6.sin6_addr)){ /* -Wstrict-aliasing=2 or lower */
 
745
#ifdef __GNUC__
 
746
#pragma GCC diagnostic pop
 
747
#endif
630
748
      if(if_index == AVAHI_IF_UNSPEC){
631
 
        fprintf(stderr, "An IPv6 link-local address is incomplete"
632
 
                " without a network interface\n");
 
749
        fprintf_plus(stderr, "An IPv6 link-local address is"
 
750
                     " incomplete without a network interface\n");
633
751
        errno = EINVAL;
634
752
        goto mandos_end;
635
753
      }
637
755
      to.in6.sin6_scope_id = (uint32_t)if_index;
638
756
    }
639
757
  } else {
640
 
    to.in.sin_port = htons(port); /* Spurious warnings from
641
 
                                     -Wconversion and
642
 
                                     -Wunreachable-code */
 
758
    to.in.sin_port = htons(port);
643
759
  }
644
760
  
645
761
  if(quit_now){
651
767
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
652
768
      char interface[IF_NAMESIZE];
653
769
      if(if_indextoname((unsigned int)if_index, interface) == NULL){
654
 
        perror("if_indextoname");
 
770
        perror_plus("if_indextoname");
655
771
      } else {
656
 
        fprintf(stderr, "Connection to: %s%%%s, port %" PRIu16 "\n",
657
 
                ip, interface, port);
 
772
        fprintf_plus(stderr, "Connection to: %s%%%s, port %" PRIuMAX
 
773
                     "\n", ip, interface, (uintmax_t)port);
658
774
      }
659
775
    } else {
660
 
      fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
661
 
              port);
 
776
      fprintf_plus(stderr, "Connection to: %s, port %" PRIuMAX "\n",
 
777
                   ip, (uintmax_t)port);
662
778
    }
663
779
    char addrstr[(INET_ADDRSTRLEN > INET6_ADDRSTRLEN) ?
664
780
                 INET_ADDRSTRLEN : INET6_ADDRSTRLEN] = "";
671
787
                        sizeof(addrstr));
672
788
    }
673
789
    if(pcret == NULL){
674
 
      perror("inet_ntop");
 
790
      perror_plus("inet_ntop");
675
791
    } else {
676
792
      if(strcmp(addrstr, ip) != 0){
677
 
        fprintf(stderr, "Canonical address form: %s\n", addrstr);
 
793
        fprintf_plus(stderr, "Canonical address form: %s\n", addrstr);
678
794
      }
679
795
    }
680
796
  }
690
806
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
691
807
  }
692
808
  if(ret < 0){
693
 
    int e = errno;
694
 
    perror("connect");
695
 
    errno = e;
 
809
    if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
 
810
      int e = errno;
 
811
      perror_plus("connect");
 
812
      errno = e;
 
813
    }
696
814
    goto mandos_end;
697
815
  }
698
816
  
706
824
  while(true){
707
825
    size_t out_size = strlen(out);
708
826
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
709
 
                                   out_size - written));
 
827
                                        out_size - written));
710
828
    if(ret == -1){
711
829
      int e = errno;
712
 
      perror("write");
 
830
      perror_plus("write");
713
831
      errno = e;
714
832
      goto mandos_end;
715
833
    }
732
850
  }
733
851
  
734
852
  if(debug){
735
 
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
 
853
    fprintf_plus(stderr, "Establishing TLS session with %s\n", ip);
736
854
  }
737
855
  
738
856
  if(quit_now){
740
858
    goto mandos_end;
741
859
  }
742
860
  
743
 
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
 
861
  /* This casting via intptr_t is to eliminate warning about casting
 
862
     an int to a pointer type.  This is exactly how the GnuTLS Guile
 
863
     function "set-session-transport-fd!" does it. */
 
864
  gnutls_transport_set_ptr(session,
 
865
                           (gnutls_transport_ptr_t)(intptr_t)tcp_sd);
744
866
  
745
867
  if(quit_now){
746
868
    errno = EINTR;
757
879
  
758
880
  if(ret != GNUTLS_E_SUCCESS){
759
881
    if(debug){
760
 
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
 
882
      fprintf_plus(stderr, "*** GnuTLS Handshake failed ***\n");
761
883
      gnutls_perror(ret);
762
884
    }
763
885
    errno = EPROTO;
767
889
  /* Read OpenPGP packet that contains the wanted password */
768
890
  
769
891
  if(debug){
770
 
    fprintf(stderr, "Retrieving OpenPGP encrypted password from %s\n",
771
 
            ip);
 
892
    fprintf_plus(stderr, "Retrieving OpenPGP encrypted password from"
 
893
                 " %s\n", ip);
772
894
  }
773
895
  
774
896
  while(true){
779
901
    }
780
902
    
781
903
    buffer_capacity = incbuffer(&buffer, buffer_length,
782
 
                                   buffer_capacity);
 
904
                                buffer_capacity);
783
905
    if(buffer_capacity == 0){
784
906
      int e = errno;
785
 
      perror("incbuffer");
 
907
      perror_plus("incbuffer");
786
908
      errno = e;
787
909
      goto mandos_end;
788
910
    }
812
934
          }
813
935
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
814
936
        if(ret < 0){
815
 
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
 
937
          fprintf_plus(stderr, "*** GnuTLS Re-handshake failed "
 
938
                       "***\n");
816
939
          gnutls_perror(ret);
817
940
          errno = EPROTO;
818
941
          goto mandos_end;
819
942
        }
820
943
        break;
821
944
      default:
822
 
        fprintf(stderr, "Unknown error while reading data from"
823
 
                " encrypted session with Mandos server\n");
 
945
        fprintf_plus(stderr, "Unknown error while reading data from"
 
946
                     " encrypted session with Mandos server\n");
824
947
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
825
948
        errno = EIO;
826
949
        goto mandos_end;
831
954
  }
832
955
  
833
956
  if(debug){
834
 
    fprintf(stderr, "Closing TLS session\n");
 
957
    fprintf_plus(stderr, "Closing TLS session\n");
835
958
  }
836
959
  
837
960
  if(quit_now){
849
972
  
850
973
  if(buffer_length > 0){
851
974
    ssize_t decrypted_buffer_size;
852
 
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
853
 
                                               buffer_length,
854
 
                                               &decrypted_buffer);
 
975
    decrypted_buffer_size = pgp_packet_decrypt(buffer, buffer_length,
 
976
                                               &decrypted_buffer, mc);
855
977
    if(decrypted_buffer_size >= 0){
856
978
      
857
979
      written = 0;
867
989
        if(ret == 0 and ferror(stdout)){
868
990
          int e = errno;
869
991
          if(debug){
870
 
            fprintf(stderr, "Error writing encrypted data: %s\n",
871
 
                    strerror(errno));
 
992
            fprintf_plus(stderr, "Error writing encrypted data: %s\n",
 
993
                         strerror(errno));
872
994
          }
873
995
          errno = e;
874
996
          goto mandos_end;
893
1015
      if(e == 0){
894
1016
        e = errno;
895
1017
      }
896
 
      perror("close");
 
1018
      perror_plus("close");
897
1019
    }
898
1020
    gnutls_deinit(session);
 
1021
    errno = e;
899
1022
    if(quit_now){
900
 
      e = EINTR;
 
1023
      errno = EINTR;
901
1024
      retval = -1;
902
1025
    }
903
 
    errno = e;
904
1026
  }
905
1027
  return retval;
906
1028
}
918
1040
                             AVAHI_GCC_UNUSED AvahiStringList *txt,
919
1041
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
920
1042
                             flags,
921
 
                             AVAHI_GCC_UNUSED void* userdata){
922
 
  assert(r);
 
1043
                             void* mc){
 
1044
  if(r == NULL){
 
1045
    return;
 
1046
  }
923
1047
  
924
1048
  /* Called whenever a service has been resolved successfully or
925
1049
     timed out */
931
1055
  switch(event){
932
1056
  default:
933
1057
  case AVAHI_RESOLVER_FAILURE:
934
 
    fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
935
 
            " of type '%s' in domain '%s': %s\n", name, type, domain,
936
 
            avahi_strerror(avahi_server_errno(mc.server)));
 
1058
    fprintf_plus(stderr, "(Avahi Resolver) Failed to resolve service "
 
1059
                 "'%s' of type '%s' in domain '%s': %s\n", name, type,
 
1060
                 domain,
 
1061
                 avahi_strerror(avahi_server_errno
 
1062
                                (((mandos_context*)mc)->server)));
937
1063
    break;
938
1064
    
939
1065
  case AVAHI_RESOLVER_FOUND:
941
1067
      char ip[AVAHI_ADDRESS_STR_MAX];
942
1068
      avahi_address_snprint(ip, sizeof(ip), address);
943
1069
      if(debug){
944
 
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
945
 
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
946
 
                ip, (intmax_t)interface, port);
 
1070
        fprintf_plus(stderr, "Mandos server \"%s\" found on %s (%s, %"
 
1071
                     PRIdMAX ") on port %" PRIu16 "\n", name,
 
1072
                     host_name, ip, (intmax_t)interface, port);
947
1073
      }
948
 
      int ret = start_mandos_communication(ip, port, interface,
949
 
                                           avahi_proto_to_af(proto));
 
1074
      int ret = start_mandos_communication(ip, (in_port_t)port,
 
1075
                                           interface,
 
1076
                                           avahi_proto_to_af(proto),
 
1077
                                           mc);
950
1078
      if(ret == 0){
951
 
        avahi_simple_poll_quit(mc.simple_poll);
 
1079
        avahi_simple_poll_quit(simple_poll);
 
1080
      } else {
 
1081
        if(not add_server(ip, (in_port_t)port, interface,
 
1082
                          avahi_proto_to_af(proto),
 
1083
                          &((mandos_context*)mc)->current_server)){
 
1084
          fprintf_plus(stderr, "Failed to add server \"%s\" to server"
 
1085
                       " list\n", name);
 
1086
        }
952
1087
      }
953
1088
    }
954
1089
  }
964
1099
                            const char *domain,
965
1100
                            AVAHI_GCC_UNUSED AvahiLookupResultFlags
966
1101
                            flags,
967
 
                            AVAHI_GCC_UNUSED void* userdata){
968
 
  assert(b);
 
1102
                            void* mc){
 
1103
  if(b == NULL){
 
1104
    return;
 
1105
  }
969
1106
  
970
1107
  /* Called whenever a new services becomes available on the LAN or
971
1108
     is removed from the LAN */
978
1115
  default:
979
1116
  case AVAHI_BROWSER_FAILURE:
980
1117
    
981
 
    fprintf(stderr, "(Avahi browser) %s\n",
982
 
            avahi_strerror(avahi_server_errno(mc.server)));
983
 
    avahi_simple_poll_quit(mc.simple_poll);
 
1118
    fprintf_plus(stderr, "(Avahi browser) %s\n",
 
1119
                 avahi_strerror(avahi_server_errno
 
1120
                                (((mandos_context*)mc)->server)));
 
1121
    avahi_simple_poll_quit(simple_poll);
984
1122
    return;
985
1123
    
986
1124
  case AVAHI_BROWSER_NEW:
989
1127
       the callback function is called the Avahi server will free the
990
1128
       resolver for us. */
991
1129
    
992
 
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
993
 
                                    name, type, domain, protocol, 0,
994
 
                                    resolve_callback, NULL) == NULL)
995
 
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
996
 
              name, avahi_strerror(avahi_server_errno(mc.server)));
 
1130
    if(avahi_s_service_resolver_new(((mandos_context*)mc)->server,
 
1131
                                    interface, protocol, name, type,
 
1132
                                    domain, protocol, 0,
 
1133
                                    resolve_callback, mc) == NULL)
 
1134
      fprintf_plus(stderr, "Avahi: Failed to resolve service '%s':"
 
1135
                   " %s\n", name,
 
1136
                   avahi_strerror(avahi_server_errno
 
1137
                                  (((mandos_context*)mc)->server)));
997
1138
    break;
998
1139
    
999
1140
  case AVAHI_BROWSER_REMOVE:
1002
1143
  case AVAHI_BROWSER_ALL_FOR_NOW:
1003
1144
  case AVAHI_BROWSER_CACHE_EXHAUSTED:
1004
1145
    if(debug){
1005
 
      fprintf(stderr, "No Mandos server found, still searching...\n");
 
1146
      fprintf_plus(stderr, "No Mandos server found, still"
 
1147
                   " searching...\n");
1006
1148
    }
1007
1149
    break;
1008
1150
  }
1009
1151
}
1010
1152
 
1011
 
/* stop main loop after sigterm has been called */
 
1153
/* Signal handler that stops main loop after SIGTERM */
1012
1154
static void handle_sigterm(int sig){
1013
1155
  if(quit_now){
1014
1156
    return;
1016
1158
  quit_now = 1;
1017
1159
  signal_received = sig;
1018
1160
  int old_errno = errno;
1019
 
  if(mc.simple_poll != NULL){
1020
 
    avahi_simple_poll_quit(mc.simple_poll);
 
1161
  /* set main loop to exit */
 
1162
  if(simple_poll != NULL){
 
1163
    avahi_simple_poll_quit(simple_poll);
1021
1164
  }
1022
1165
  errno = old_errno;
1023
1166
}
1024
1167
 
 
1168
bool get_flags(const char *ifname, struct ifreq *ifr){
 
1169
  int ret;
 
1170
  error_t ret_errno;
 
1171
  
 
1172
  int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1173
  if(s < 0){
 
1174
    ret_errno = errno;
 
1175
    perror_plus("socket");
 
1176
    errno = ret_errno;
 
1177
    return false;
 
1178
  }
 
1179
  strcpy(ifr->ifr_name, ifname);
 
1180
  ret = ioctl(s, SIOCGIFFLAGS, ifr);
 
1181
  if(ret == -1){
 
1182
    if(debug){
 
1183
      ret_errno = errno;
 
1184
      perror_plus("ioctl SIOCGIFFLAGS");
 
1185
      errno = ret_errno;
 
1186
    }
 
1187
    return false;
 
1188
  }
 
1189
  return true;
 
1190
}
 
1191
 
 
1192
bool good_flags(const char *ifname, const struct ifreq *ifr){
 
1193
  
 
1194
  /* Reject the loopback device */
 
1195
  if(ifr->ifr_flags & IFF_LOOPBACK){
 
1196
    if(debug){
 
1197
      fprintf_plus(stderr, "Rejecting loopback interface \"%s\"\n",
 
1198
                   ifname);
 
1199
    }
 
1200
    return false;
 
1201
  }
 
1202
  /* Accept point-to-point devices only if connect_to is specified */
 
1203
  if(connect_to != NULL and (ifr->ifr_flags & IFF_POINTOPOINT)){
 
1204
    if(debug){
 
1205
      fprintf_plus(stderr, "Accepting point-to-point interface"
 
1206
                   " \"%s\"\n", ifname);
 
1207
    }
 
1208
    return true;
 
1209
  }
 
1210
  /* Otherwise, reject non-broadcast-capable devices */
 
1211
  if(not (ifr->ifr_flags & IFF_BROADCAST)){
 
1212
    if(debug){
 
1213
      fprintf_plus(stderr, "Rejecting non-broadcast interface"
 
1214
                   " \"%s\"\n", ifname);
 
1215
    }
 
1216
    return false;
 
1217
  }
 
1218
  /* Reject non-ARP interfaces (including dummy interfaces) */
 
1219
  if(ifr->ifr_flags & IFF_NOARP){
 
1220
    if(debug){
 
1221
      fprintf_plus(stderr, "Rejecting non-ARP interface \"%s\"\n",
 
1222
                   ifname);
 
1223
    }
 
1224
    return false;
 
1225
  }
 
1226
  
 
1227
  /* Accept this device */
 
1228
  if(debug){
 
1229
    fprintf_plus(stderr, "Interface \"%s\" is good\n", ifname);
 
1230
  }
 
1231
  return true;
 
1232
}
 
1233
 
1025
1234
/* 
1026
1235
 * This function determines if a directory entry in /sys/class/net
1027
1236
 * corresponds to an acceptable network device.
1028
1237
 * (This function is passed to scandir(3) as a filter function.)
1029
1238
 */
1030
1239
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
1240
  if(if_entry->d_name[0] == '.'){
1040
1241
    return 0;
1041
1242
  }
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){
 
1243
  
 
1244
  struct ifreq ifr;
 
1245
  if(not get_flags(if_entry->d_name, &ifr)){
 
1246
    if(debug){
 
1247
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1248
                   "\"%s\"\n", if_entry->d_name);
 
1249
    }
 
1250
    return 0;
 
1251
  }
 
1252
  
 
1253
  if(not good_flags(if_entry->d_name, &ifr)){
 
1254
    return 0;
 
1255
  }
 
1256
  return 1;
 
1257
}
 
1258
 
 
1259
/* 
 
1260
 * This function determines if a network interface is up.
 
1261
 */
 
1262
bool interface_is_up(const char *interface){
 
1263
  struct ifreq ifr;
 
1264
  if(not get_flags(interface, &ifr)){
 
1265
    if(debug){
 
1266
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1267
                   "\"%s\"\n", interface);
 
1268
    }
 
1269
    return false;
 
1270
  }
 
1271
  
 
1272
  return (bool)(ifr.ifr_flags & IFF_UP);
 
1273
}
 
1274
 
 
1275
/* 
 
1276
 * This function determines if a network interface is running
 
1277
 */
 
1278
bool interface_is_running(const char *interface){
 
1279
  struct ifreq ifr;
 
1280
  if(not get_flags(interface, &ifr)){
 
1281
    if(debug){
 
1282
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1283
                   "\"%s\"\n", interface);
 
1284
    }
 
1285
    return false;
 
1286
  }
 
1287
  
 
1288
  return (bool)(ifr.ifr_flags & IFF_RUNNING);
 
1289
}
 
1290
 
 
1291
int notdotentries(const struct dirent *direntry){
 
1292
  /* Skip "." and ".." */
 
1293
  if(direntry->d_name[0] == '.'
 
1294
     and (direntry->d_name[1] == '\0'
 
1295
          or (direntry->d_name[1] == '.'
 
1296
              and direntry->d_name[2] == '\0'))){
 
1297
    return 0;
 
1298
  }
 
1299
  return 1;
 
1300
}
 
1301
 
 
1302
/* Is this directory entry a runnable program? */
 
1303
int runnable_hook(const struct dirent *direntry){
 
1304
  int ret;
 
1305
  size_t sret;
 
1306
  struct stat st;
 
1307
  
 
1308
  if((direntry->d_name)[0] == '\0'){
 
1309
    /* Empty name? */
 
1310
    return 0;
 
1311
  }
 
1312
  
 
1313
  sret = strspn(direntry->d_name, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
 
1314
                "abcdefghijklmnopqrstuvwxyz"
 
1315
                "0123456789"
 
1316
                "_-");
 
1317
  if((direntry->d_name)[sret] != '\0'){
 
1318
    /* Contains non-allowed characters */
 
1319
    if(debug){
 
1320
      fprintf_plus(stderr, "Ignoring hook \"%s\" with bad name\n",
 
1321
                   direntry->d_name);
 
1322
    }
 
1323
    return 0;
 
1324
  }
 
1325
  
 
1326
  char *fullname = NULL;
 
1327
  ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
1328
  if(ret < 0){
 
1329
    perror_plus("asprintf");
 
1330
    return 0;
 
1331
  }
 
1332
  
 
1333
  ret = stat(fullname, &st);
 
1334
  if(ret == -1){
 
1335
    if(debug){
 
1336
      perror_plus("Could not stat hook");
 
1337
    }
 
1338
    return 0;
 
1339
  }
 
1340
  if(not (S_ISREG(st.st_mode))){
 
1341
    /* Not a regular file */
 
1342
    if(debug){
 
1343
      fprintf_plus(stderr, "Ignoring hook \"%s\" - not a file\n",
 
1344
                   direntry->d_name);
 
1345
    }
 
1346
    return 0;
 
1347
  }
 
1348
  if(not (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))){
 
1349
    /* Not executable */
 
1350
    if(debug){
 
1351
      fprintf_plus(stderr, "Ignoring hook \"%s\" - not executable\n",
 
1352
                   direntry->d_name);
 
1353
    }
 
1354
    return 0;
 
1355
  }
 
1356
  if(debug){
 
1357
    fprintf_plus(stderr, "Hook \"%s\" is acceptable\n",
 
1358
                 direntry->d_name);
 
1359
  }
 
1360
  return 1;
 
1361
}
 
1362
 
 
1363
int avahi_loop_with_timeout(AvahiSimplePoll *s, int retry_interval,
 
1364
                            mandos_context *mc){
 
1365
  int ret;
 
1366
  struct timespec now;
 
1367
  struct timespec waited_time;
 
1368
  intmax_t block_time;
 
1369
  
 
1370
  while(true){
 
1371
    if(mc->current_server == NULL){
 
1372
      if (debug){
 
1373
        fprintf_plus(stderr, "Wait until first server is found."
 
1374
                     " No timeout!\n");
 
1375
      }
 
1376
      ret = avahi_simple_poll_iterate(s, -1);
 
1377
    } else {
 
1378
      if (debug){
 
1379
        fprintf_plus(stderr, "Check current_server if we should run"
 
1380
                     " it, or wait\n");
 
1381
      }
 
1382
      /* the current time */
 
1383
      ret = clock_gettime(CLOCK_MONOTONIC, &now);
 
1384
      if(ret == -1){
 
1385
        perror_plus("clock_gettime");
 
1386
        return -1;
 
1387
      }
 
1388
      /* Calculating in ms how long time between now and server
 
1389
         who we visted longest time ago. Now - last seen.  */
 
1390
      waited_time.tv_sec = (now.tv_sec
 
1391
                            - mc->current_server->last_seen.tv_sec);
 
1392
      waited_time.tv_nsec = (now.tv_nsec
 
1393
                             - mc->current_server->last_seen.tv_nsec);
 
1394
      /* total time is 10s/10,000ms.
 
1395
         Converting to s from ms by dividing by 1,000,
 
1396
         and ns to ms by dividing by 1,000,000. */
 
1397
      block_time = ((retry_interval
 
1398
                     - ((intmax_t)waited_time.tv_sec * 1000))
 
1399
                    - ((intmax_t)waited_time.tv_nsec / 1000000));
 
1400
      
 
1401
      if (debug){
 
1402
        fprintf_plus(stderr, "Blocking for %" PRIdMAX " ms\n",
 
1403
                     block_time);
 
1404
      }
 
1405
      
 
1406
      if(block_time <= 0){
 
1407
        ret = start_mandos_communication(mc->current_server->ip,
 
1408
                                         mc->current_server->port,
 
1409
                                         mc->current_server->if_index,
 
1410
                                         mc->current_server->af, mc);
 
1411
        if(ret == 0){
 
1412
          avahi_simple_poll_quit(s);
 
1413
          return 0;
 
1414
        }
 
1415
        ret = clock_gettime(CLOCK_MONOTONIC,
 
1416
                            &mc->current_server->last_seen);
 
1417
        if(ret == -1){
 
1418
          perror_plus("clock_gettime");
 
1419
          return -1;
 
1420
        }
 
1421
        mc->current_server = mc->current_server->next;
 
1422
        block_time = 0;         /* Call avahi to find new Mandos
 
1423
                                   servers, but don't block */
 
1424
      }
 
1425
      
 
1426
      ret = avahi_simple_poll_iterate(s, (int)block_time);
 
1427
    }
 
1428
    if(ret != 0){
 
1429
      if (ret > 0 or errno != EINTR){
 
1430
        return (ret != 1) ? ret : 0;
 
1431
      }
 
1432
    }
 
1433
  }
 
1434
}
 
1435
 
 
1436
/* Set effective uid to 0, return errno */
 
1437
error_t raise_privileges(void){
 
1438
  error_t old_errno = errno;
 
1439
  error_t ret_errno = 0;
 
1440
  if(seteuid(0) == -1){
 
1441
    ret_errno = errno;
 
1442
    perror_plus("seteuid");
 
1443
  }
 
1444
  errno = old_errno;
 
1445
  return ret_errno;
 
1446
}
 
1447
 
 
1448
/* Set effective and real user ID to 0.  Return errno. */
 
1449
error_t raise_privileges_permanently(void){
 
1450
  error_t old_errno = errno;
 
1451
  error_t ret_errno = raise_privileges();
 
1452
  if(ret_errno != 0){
 
1453
    errno = old_errno;
 
1454
    return ret_errno;
 
1455
  }
 
1456
  if(setuid(0) == -1){
 
1457
    ret_errno = errno;
 
1458
    perror_plus("seteuid");
 
1459
  }
 
1460
  errno = old_errno;
 
1461
  return ret_errno;
 
1462
}
 
1463
 
 
1464
/* Set effective user ID to unprivileged saved user ID */
 
1465
error_t lower_privileges(void){
 
1466
  error_t old_errno = errno;
 
1467
  error_t ret_errno = 0;
 
1468
  if(seteuid(uid) == -1){
 
1469
    ret_errno = errno;
 
1470
    perror_plus("seteuid");
 
1471
  }
 
1472
  errno = old_errno;
 
1473
  return ret_errno;
 
1474
}
 
1475
 
 
1476
/* Lower privileges permanently */
 
1477
error_t lower_privileges_permanently(void){
 
1478
  error_t old_errno = errno;
 
1479
  error_t ret_errno = 0;
 
1480
  if(setuid(uid) == -1){
 
1481
    ret_errno = errno;
 
1482
    perror_plus("setuid");
 
1483
  }
 
1484
  errno = old_errno;
 
1485
  return ret_errno;
 
1486
}
 
1487
 
 
1488
bool run_network_hooks(const char *mode, const char *interface,
 
1489
                       const float delay){
 
1490
  struct dirent **direntries;
 
1491
  struct dirent *direntry;
 
1492
  int ret;
 
1493
  int numhooks = scandir(hookdir, &direntries, runnable_hook,
 
1494
                         alphasort);
 
1495
  if(numhooks == -1){
 
1496
    if(errno == ENOENT){
 
1497
      if(debug){
 
1498
        fprintf_plus(stderr, "Network hook directory \"%s\" not"
 
1499
                     " found\n", hookdir);
 
1500
      }
 
1501
    } else {
 
1502
      perror_plus("scandir");
 
1503
    }
 
1504
  } else {
 
1505
    int devnull = open("/dev/null", O_RDONLY);
 
1506
    for(int i = 0; i < numhooks; i++){
 
1507
      direntry = direntries[i];
 
1508
      char *fullname = NULL;
 
1509
      ret = asprintf(&fullname, "%s/%s", hookdir, direntry->d_name);
 
1510
      if(ret < 0){
 
1511
        perror_plus("asprintf");
 
1512
        continue;
 
1513
      }
 
1514
      if(debug){
 
1515
        fprintf_plus(stderr, "Running network hook \"%s\"\n",
 
1516
                     direntry->d_name);
 
1517
      }
 
1518
      pid_t hook_pid = fork();
 
1519
      if(hook_pid == 0){
 
1520
        /* Child */
 
1521
        /* Raise privileges */
 
1522
        raise_privileges_permanently();
 
1523
        /* Set group */
 
1524
        errno = 0;
 
1525
        ret = setgid(0);
 
1526
        if(ret == -1){
 
1527
          perror_plus("setgid");
 
1528
        }
 
1529
        /* Reset supplementary groups */
 
1530
        errno = 0;
 
1531
        ret = setgroups(0, NULL);
 
1532
        if(ret == -1){
 
1533
          perror_plus("setgroups");
 
1534
        }
 
1535
        dup2(devnull, STDIN_FILENO);
 
1536
        close(devnull);
 
1537
        dup2(STDERR_FILENO, STDOUT_FILENO);
 
1538
        ret = setenv("MANDOSNETHOOKDIR", hookdir, 1);
 
1539
        if(ret == -1){
 
1540
          perror_plus("setenv");
 
1541
          _exit(EX_OSERR);
 
1542
        }
 
1543
        ret = setenv("DEVICE", interface, 1);
 
1544
        if(ret == -1){
 
1545
          perror_plus("setenv");
 
1546
          _exit(EX_OSERR);
 
1547
        }
 
1548
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
1549
        if(ret == -1){
 
1550
          perror_plus("setenv");
 
1551
          _exit(EX_OSERR);
 
1552
        }
 
1553
        ret = setenv("MODE", mode, 1);
 
1554
        if(ret == -1){
 
1555
          perror_plus("setenv");
 
1556
          _exit(EX_OSERR);
 
1557
        }
 
1558
        char *delaystring;
 
1559
        ret = asprintf(&delaystring, "%f", delay);
 
1560
        if(ret == -1){
 
1561
          perror_plus("asprintf");
 
1562
          _exit(EX_OSERR);
 
1563
        }
 
1564
        ret = setenv("DELAY", delaystring, 1);
 
1565
        if(ret == -1){
 
1566
          free(delaystring);
 
1567
          perror_plus("setenv");
 
1568
          _exit(EX_OSERR);
 
1569
        }
 
1570
        free(delaystring);
 
1571
        if(connect_to != NULL){
 
1572
          ret = setenv("CONNECT", connect_to, 1);
 
1573
          if(ret == -1){
 
1574
            perror_plus("setenv");
 
1575
            _exit(EX_OSERR);
 
1576
          }
 
1577
        }
 
1578
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
 
1579
          perror_plus("execl");
 
1580
          _exit(EXIT_FAILURE);
 
1581
        }
 
1582
      } else {
 
1583
        int status;
 
1584
        if(TEMP_FAILURE_RETRY(waitpid(hook_pid, &status, 0)) == -1){
 
1585
          perror_plus("waitpid");
 
1586
          free(fullname);
 
1587
          continue;
 
1588
        }
 
1589
        if(WIFEXITED(status)){
 
1590
          if(WEXITSTATUS(status) != 0){
 
1591
            fprintf_plus(stderr, "Warning: network hook \"%s\" exited"
 
1592
                         " with status %d\n", direntry->d_name,
 
1593
                         WEXITSTATUS(status));
 
1594
            free(fullname);
 
1595
            continue;
 
1596
          }
 
1597
        } else if(WIFSIGNALED(status)){
 
1598
          fprintf_plus(stderr, "Warning: network hook \"%s\" died by"
 
1599
                       " signal %d\n", direntry->d_name,
 
1600
                       WTERMSIG(status));
 
1601
          free(fullname);
 
1602
          continue;
 
1603
        } else {
 
1604
          fprintf_plus(stderr, "Warning: network hook \"%s\""
 
1605
                       " crashed\n", direntry->d_name);
 
1606
          free(fullname);
 
1607
          continue;
 
1608
        }
 
1609
      }
 
1610
      free(fullname);
 
1611
      if(debug){
 
1612
        fprintf_plus(stderr, "Network hook \"%s\" ran successfully\n",
 
1613
                     direntry->d_name);
 
1614
      }
 
1615
    }
 
1616
    close(devnull);
 
1617
  }
 
1618
  return true;
 
1619
}
 
1620
 
 
1621
error_t bring_up_interface(const char *const interface,
 
1622
                           const float delay){
 
1623
  int sd = -1;
 
1624
  error_t old_errno = errno;
 
1625
  error_t ret_errno = 0;
 
1626
  int ret, ret_setflags;
 
1627
  struct ifreq network;
 
1628
  unsigned int if_index = if_nametoindex(interface);
 
1629
  if(if_index == 0){
 
1630
    fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
 
1631
    errno = old_errno;
 
1632
    return ENXIO;
 
1633
  }
 
1634
  
 
1635
  if(quit_now){
 
1636
    errno = old_errno;
 
1637
    return EINTR;
 
1638
  }
 
1639
  
 
1640
  if(not interface_is_up(interface)){
 
1641
    if(not get_flags(interface, &network) and debug){
 
1642
      ret_errno = errno;
 
1643
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1644
                   "\"%s\"\n", interface);
 
1645
      return ret_errno;
 
1646
    }
 
1647
    network.ifr_flags |= IFF_UP;
 
1648
    
 
1649
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1650
    if(sd < 0){
 
1651
      ret_errno = errno;
 
1652
      perror_plus("socket");
 
1653
      errno = old_errno;
 
1654
      return ret_errno;
 
1655
    }
 
1656
  
 
1657
    if(quit_now){
 
1658
      close(sd);
 
1659
      errno = old_errno;
 
1660
      return EINTR;
 
1661
    }
 
1662
    
 
1663
    if(debug){
 
1664
      fprintf_plus(stderr, "Bringing up interface \"%s\"\n",
 
1665
                   interface);
 
1666
    }
 
1667
    
 
1668
    /* Raise priviliges */
 
1669
    raise_privileges();
 
1670
    
 
1671
#ifdef __linux__
 
1672
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
 
1673
       messages about the network interface to mess up the prompt */
 
1674
    int ret_linux = klogctl(8, NULL, 5);
 
1675
    bool restore_loglevel = true;
 
1676
    if(ret_linux == -1){
 
1677
      restore_loglevel = false;
 
1678
      perror_plus("klogctl");
 
1679
    }
 
1680
#endif  /* __linux__ */
 
1681
    ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
 
1682
    ret_errno = errno;
 
1683
#ifdef __linux__
 
1684
    if(restore_loglevel){
 
1685
      ret_linux = klogctl(7, NULL, 0);
 
1686
      if(ret_linux == -1){
 
1687
        perror_plus("klogctl");
 
1688
      }
 
1689
    }
 
1690
#endif  /* __linux__ */
 
1691
    
 
1692
    /* Lower privileges */
 
1693
    lower_privileges();
 
1694
    
 
1695
    /* Close the socket */
 
1696
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1697
    if(ret == -1){
 
1698
      perror_plus("close");
 
1699
    }
 
1700
    
 
1701
    if(ret_setflags == -1){
 
1702
      errno = ret_errno;
 
1703
      perror_plus("ioctl SIOCSIFFLAGS +IFF_UP");
 
1704
      errno = old_errno;
 
1705
      return ret_errno;
 
1706
    }
 
1707
  } else if(debug){
 
1708
    fprintf_plus(stderr, "Interface \"%s\" is already up; good\n",
 
1709
                 interface);
 
1710
  }
 
1711
  
 
1712
  /* Sleep checking until interface is running.
 
1713
     Check every 0.25s, up to total time of delay */
 
1714
  for(int i=0; i < delay * 4; i++){
 
1715
    if(interface_is_running(interface)){
1068
1716
      break;
1069
1717
    }
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;
 
1718
    struct timespec sleeptime = { .tv_nsec = 250000000 };
 
1719
    ret = nanosleep(&sleeptime, NULL);
 
1720
    if(ret == -1 and errno != EINTR){
 
1721
      perror_plus("nanosleep");
 
1722
    }
 
1723
  }
 
1724
  
 
1725
  errno = old_errno;
 
1726
  return 0;
 
1727
}
 
1728
 
 
1729
error_t take_down_interface(const char *const interface){
 
1730
  int sd = -1;
 
1731
  error_t old_errno = errno;
 
1732
  error_t ret_errno = 0;
 
1733
  int ret, ret_setflags;
 
1734
  struct ifreq network;
 
1735
  unsigned int if_index = if_nametoindex(interface);
 
1736
  if(if_index == 0){
 
1737
    fprintf_plus(stderr, "No such interface: \"%s\"\n", interface);
 
1738
    errno = old_errno;
 
1739
    return ENXIO;
 
1740
  }
 
1741
  if(interface_is_up(interface)){
 
1742
    if(not get_flags(interface, &network) and debug){
 
1743
      ret_errno = errno;
 
1744
      fprintf_plus(stderr, "Failed to get flags for interface "
 
1745
                   "\"%s\"\n", interface);
 
1746
      return ret_errno;
 
1747
    }
 
1748
    network.ifr_flags &= ~(short)IFF_UP; /* clear flag */
 
1749
    
 
1750
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
1751
    if(sd < 0){
 
1752
      ret_errno = errno;
 
1753
      perror_plus("socket");
 
1754
      errno = old_errno;
 
1755
      return ret_errno;
 
1756
    }
 
1757
    
 
1758
    if(debug){
 
1759
      fprintf_plus(stderr, "Taking down interface \"%s\"\n",
 
1760
                   interface);
 
1761
    }
 
1762
    
 
1763
    /* Raise priviliges */
 
1764
    raise_privileges();
 
1765
    
 
1766
    ret_setflags = ioctl(sd, SIOCSIFFLAGS, &network);
 
1767
    ret_errno = errno;
 
1768
    
 
1769
    /* Lower privileges */
 
1770
    lower_privileges();
 
1771
    
 
1772
    /* Close the socket */
 
1773
    ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
1774
    if(ret == -1){
 
1775
      perror_plus("close");
 
1776
    }
 
1777
    
 
1778
    if(ret_setflags == -1){
 
1779
      errno = ret_errno;
 
1780
      perror_plus("ioctl SIOCSIFFLAGS -IFF_UP");
 
1781
      errno = old_errno;
 
1782
      return ret_errno;
 
1783
    }
 
1784
  } else if(debug){
 
1785
    fprintf_plus(stderr, "Interface \"%s\" is already down; odd\n",
 
1786
                 interface);
 
1787
  }
 
1788
  
 
1789
  errno = old_errno;
 
1790
  return 0;
1118
1791
}
1119
1792
 
1120
1793
int main(int argc, char *argv[]){
 
1794
  mandos_context mc = { .server = NULL, .dh_bits = 1024,
 
1795
                        .priority = "SECURE256:!CTYPE-X.509:"
 
1796
                        "+CTYPE-OPENPGP", .current_server = NULL, 
 
1797
                        .interfaces = NULL, .interfaces_size = 0 };
1121
1798
  AvahiSServiceBrowser *sb = NULL;
1122
 
  int error;
 
1799
  error_t ret_errno;
1123
1800
  int ret;
1124
1801
  intmax_t tmpmax;
1125
1802
  char *tmp;
1126
1803
  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;
 
1804
  char *interfaces_to_take_down = NULL;
 
1805
  size_t interfaces_to_take_down_size = 0;
1133
1806
  char tempdir[] = "/tmp/mandosXXXXXX";
1134
1807
  bool tempdir_created = false;
1135
1808
  AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
1136
1809
  const char *seckey = PATHDIR "/" SECKEY;
1137
1810
  const char *pubkey = PATHDIR "/" PUBKEY;
 
1811
  char *interfaces_hooks = NULL;
 
1812
  size_t interfaces_hooks_size = 0;
1138
1813
  
1139
1814
  bool gnutls_initialized = false;
1140
1815
  bool gpgme_initialized = false;
1141
1816
  float delay = 2.5f;
 
1817
  double retry_interval = 10; /* 10s between trying a server and
 
1818
                                 retrying the same server again */
1142
1819
  
1143
1820
  struct sigaction old_sigterm_action = { .sa_handler = SIG_DFL };
1144
1821
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
1150
1827
  errno = 0;
1151
1828
  ret = setgid(gid);
1152
1829
  if(ret == -1){
1153
 
    perror("setgid");
 
1830
    perror_plus("setgid");
1154
1831
  }
1155
1832
  
1156
1833
  /* Lower user privileges (temporarily) */
1157
1834
  errno = 0;
1158
1835
  ret = seteuid(uid);
1159
1836
  if(ret == -1){
1160
 
    perror("seteuid");
 
1837
    perror_plus("seteuid");
1161
1838
  }
1162
1839
  
1163
1840
  if(quit_now){
1198
1875
        .arg = "SECONDS",
1199
1876
        .doc = "Maximum delay to wait for interface startup",
1200
1877
        .group = 2 },
 
1878
      { .name = "retry", .key = 132,
 
1879
        .arg = "SECONDS",
 
1880
        .doc = "Retry interval used when denied by the Mandos server",
 
1881
        .group = 2 },
 
1882
      { .name = "network-hook-dir", .key = 133,
 
1883
        .arg = "DIR",
 
1884
        .doc = "Directory where network hooks are located",
 
1885
        .group = 2 },
1201
1886
      /*
1202
1887
       * These reproduce what we would get without ARGP_NO_HELP
1203
1888
       */
1221
1906
        connect_to = arg;
1222
1907
        break;
1223
1908
      case 'i':                 /* --interface */
1224
 
        interface = arg;
 
1909
        ret_errno = argz_add_sep(&mc.interfaces, &mc.interfaces_size,
 
1910
                                 arg, (int)',');
 
1911
        if(ret_errno != 0){
 
1912
          argp_error(state, "%s", strerror(ret_errno));
 
1913
        }
1225
1914
        break;
1226
1915
      case 's':                 /* --seckey */
1227
1916
        seckey = arg;
1247
1936
        if(errno != 0 or tmp == arg or *tmp != '\0'){
1248
1937
          argp_error(state, "Bad delay");
1249
1938
        }
 
1939
      case 132:                 /* --retry */
 
1940
        errno = 0;
 
1941
        retry_interval = strtod(arg, &tmp);
 
1942
        if(errno != 0 or tmp == arg or *tmp != '\0'
 
1943
           or (retry_interval * 1000) > INT_MAX
 
1944
           or retry_interval < 0){
 
1945
          argp_error(state, "Bad retry interval");
 
1946
        }
 
1947
        break;
 
1948
      case 133:                 /* --network-hook-dir */
 
1949
        hookdir = arg;
1250
1950
        break;
1251
1951
        /*
1252
1952
         * These reproduce what we would get without ARGP_NO_HELP
1259
1959
        argp_state_help(state, state->out_stream,
1260
1960
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
1261
1961
      case 'V':                 /* --version */
1262
 
        fprintf(state->out_stream, "%s\n", argp_program_version);
 
1962
        fprintf_plus(state->out_stream, "%s\n", argp_program_version);
1263
1963
        exit(argp_err_exit_status);
1264
1964
        break;
1265
1965
      default:
1280
1980
    case ENOMEM:
1281
1981
    default:
1282
1982
      errno = ret;
1283
 
      perror("argp_parse");
 
1983
      perror_plus("argp_parse");
1284
1984
      exitcode = EX_OSERR;
1285
1985
      goto end;
1286
1986
    case EINVAL:
1288
1988
      goto end;
1289
1989
    }
1290
1990
  }
 
1991
    
 
1992
  {
 
1993
    /* Work around Debian bug #633582:
 
1994
       <http://bugs.debian.org/633582> */
 
1995
    
 
1996
    /* Re-raise priviliges */
 
1997
    if(raise_privileges() == 0){
 
1998
      struct stat st;
 
1999
      
 
2000
      if(strcmp(seckey, PATHDIR "/" SECKEY) == 0){
 
2001
        int seckey_fd = open(seckey, O_RDONLY);
 
2002
        if(seckey_fd == -1){
 
2003
          perror_plus("open");
 
2004
        } else {
 
2005
          ret = (int)TEMP_FAILURE_RETRY(fstat(seckey_fd, &st));
 
2006
          if(ret == -1){
 
2007
            perror_plus("fstat");
 
2008
          } else {
 
2009
            if(S_ISREG(st.st_mode)
 
2010
               and st.st_uid == 0 and st.st_gid == 0){
 
2011
              ret = fchown(seckey_fd, uid, gid);
 
2012
              if(ret == -1){
 
2013
                perror_plus("fchown");
 
2014
              }
 
2015
            }
 
2016
          }
 
2017
          TEMP_FAILURE_RETRY(close(seckey_fd));
 
2018
        }
 
2019
      }
 
2020
    
 
2021
      if(strcmp(pubkey, PATHDIR "/" PUBKEY) == 0){
 
2022
        int pubkey_fd = open(pubkey, O_RDONLY);
 
2023
        if(pubkey_fd == -1){
 
2024
          perror_plus("open");
 
2025
        } else {
 
2026
          ret = (int)TEMP_FAILURE_RETRY(fstat(pubkey_fd, &st));
 
2027
          if(ret == -1){
 
2028
            perror_plus("fstat");
 
2029
          } else {
 
2030
            if(S_ISREG(st.st_mode)
 
2031
               and st.st_uid == 0 and st.st_gid == 0){
 
2032
              ret = fchown(pubkey_fd, uid, gid);
 
2033
              if(ret == -1){
 
2034
                perror_plus("fchown");
 
2035
              }
 
2036
            }
 
2037
          }
 
2038
          TEMP_FAILURE_RETRY(close(pubkey_fd));
 
2039
        }
 
2040
      }
 
2041
    
 
2042
      /* Lower privileges */
 
2043
      lower_privileges();
 
2044
    }
 
2045
  }
 
2046
  
 
2047
  /* Remove invalid interface names (except "none") */
 
2048
  {
 
2049
    char *interface = NULL;
 
2050
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
 
2051
                                 interface))){
 
2052
      if(strcmp(interface, "none") != 0
 
2053
         and if_nametoindex(interface) == 0){
 
2054
        if(interface[0] != '\0'){
 
2055
          fprintf_plus(stderr, "Not using nonexisting interface"
 
2056
                       " \"%s\"\n", interface);
 
2057
        }
 
2058
        argz_delete(&mc.interfaces, &mc.interfaces_size, interface);
 
2059
        interface = NULL;
 
2060
      }
 
2061
    }
 
2062
  }
 
2063
  
 
2064
  /* Run network hooks */
 
2065
  {
 
2066
    if(mc.interfaces != NULL){
 
2067
      interfaces_hooks = malloc(mc.interfaces_size);
 
2068
      if(interfaces_hooks == NULL){
 
2069
        perror_plus("malloc");
 
2070
        goto end;
 
2071
      }
 
2072
      memcpy(interfaces_hooks, mc.interfaces, mc.interfaces_size);
 
2073
      interfaces_hooks_size = mc.interfaces_size;
 
2074
      argz_stringify(interfaces_hooks, interfaces_hooks_size,
 
2075
                     (int)',');
 
2076
    }
 
2077
    if(not run_network_hooks("start", interfaces_hooks != NULL ?
 
2078
                             interfaces_hooks : "", delay)){
 
2079
      goto end;
 
2080
    }
 
2081
  }
1291
2082
  
1292
2083
  if(not debug){
1293
2084
    avahi_set_log_function(empty_log);
1294
2085
  }
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
2086
  
1321
2087
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1322
2088
     from the signal handler */
1323
2089
  /* Initialize the pseudo-RNG for Avahi */
1324
2090
  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");
 
2091
  simple_poll = avahi_simple_poll_new();
 
2092
  if(simple_poll == NULL){
 
2093
    fprintf_plus(stderr,
 
2094
                 "Avahi: Failed to create simple poll object.\n");
1328
2095
    exitcode = EX_UNAVAILABLE;
1329
2096
    goto end;
1330
2097
  }
1332
2099
  sigemptyset(&sigterm_action.sa_mask);
1333
2100
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1334
2101
  if(ret == -1){
1335
 
    perror("sigaddset");
 
2102
    perror_plus("sigaddset");
1336
2103
    exitcode = EX_OSERR;
1337
2104
    goto end;
1338
2105
  }
1339
2106
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1340
2107
  if(ret == -1){
1341
 
    perror("sigaddset");
 
2108
    perror_plus("sigaddset");
1342
2109
    exitcode = EX_OSERR;
1343
2110
    goto end;
1344
2111
  }
1345
2112
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1346
2113
  if(ret == -1){
1347
 
    perror("sigaddset");
 
2114
    perror_plus("sigaddset");
1348
2115
    exitcode = EX_OSERR;
1349
2116
    goto end;
1350
2117
  }
1354
2121
  */
1355
2122
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1356
2123
  if(ret == -1){
1357
 
    perror("sigaction");
 
2124
    perror_plus("sigaction");
1358
2125
    return EX_OSERR;
1359
2126
  }
1360
2127
  if(old_sigterm_action.sa_handler != SIG_IGN){
1361
2128
    ret = sigaction(SIGINT, &sigterm_action, NULL);
1362
2129
    if(ret == -1){
1363
 
      perror("sigaction");
 
2130
      perror_plus("sigaction");
1364
2131
      exitcode = EX_OSERR;
1365
2132
      goto end;
1366
2133
    }
1367
2134
  }
1368
2135
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1369
2136
  if(ret == -1){
1370
 
    perror("sigaction");
 
2137
    perror_plus("sigaction");
1371
2138
    return EX_OSERR;
1372
2139
  }
1373
2140
  if(old_sigterm_action.sa_handler != SIG_IGN){
1374
2141
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
1375
2142
    if(ret == -1){
1376
 
      perror("sigaction");
 
2143
      perror_plus("sigaction");
1377
2144
      exitcode = EX_OSERR;
1378
2145
      goto end;
1379
2146
    }
1380
2147
  }
1381
2148
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1382
2149
  if(ret == -1){
1383
 
    perror("sigaction");
 
2150
    perror_plus("sigaction");
1384
2151
    return EX_OSERR;
1385
2152
  }
1386
2153
  if(old_sigterm_action.sa_handler != SIG_IGN){
1387
2154
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
1388
2155
    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){
1397
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1398
 
    if(if_index == 0){
1399
 
      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");
 
2156
      perror_plus("sigaction");
 
2157
      exitcode = EX_OSERR;
 
2158
      goto end;
 
2159
    }
 
2160
  }
 
2161
  
 
2162
  /* If no interfaces were specified, make a list */
 
2163
  if(mc.interfaces == NULL){
 
2164
    struct dirent **direntries;
 
2165
    /* Look for any good interfaces */
 
2166
    ret = scandir(sys_class_net, &direntries, good_interface,
 
2167
                  alphasort);
 
2168
    if(ret >= 1){
 
2169
      /* Add all found interfaces to interfaces list */
 
2170
      for(int i = 0; i < ret; ++i){
 
2171
        ret_errno = argz_add(&mc.interfaces, &mc.interfaces_size,
 
2172
                             direntries[i]->d_name);
 
2173
        if(ret_errno != 0){
 
2174
          perror_plus("argz_add");
 
2175
          continue;
 
2176
        }
 
2177
        if(debug){
 
2178
          fprintf_plus(stderr, "Will use interface \"%s\"\n",
 
2179
                       direntries[i]->d_name);
 
2180
        }
 
2181
      }
 
2182
      free(direntries);
 
2183
    } else {
 
2184
      free(direntries);
 
2185
      fprintf_plus(stderr, "Could not find a network interface\n");
 
2186
      exitcode = EXIT_FAILURE;
 
2187
      goto end;
 
2188
    }
 
2189
  }
 
2190
  
 
2191
  /* Bring up interfaces which are down, and remove any "none"s */
 
2192
  {
 
2193
    char *interface = NULL;
 
2194
    while((interface = argz_next(mc.interfaces, mc.interfaces_size,
 
2195
                                 interface))){
 
2196
      /* If interface name is "none", stop bringing up interfaces.
 
2197
         Also remove all instances of "none" from the list */
 
2198
      if(strcmp(interface, "none") == 0){
 
2199
        argz_delete(&mc.interfaces, &mc.interfaces_size,
 
2200
                    interface);
 
2201
        interface = NULL;
 
2202
        while((interface = argz_next(mc.interfaces,
 
2203
                                     mc.interfaces_size, interface))){
 
2204
          if(strcmp(interface, "none") == 0){
 
2205
            argz_delete(&mc.interfaces, &mc.interfaces_size,
 
2206
                        interface);
 
2207
            interface = NULL;
1480
2208
          }
1481
2209
        }
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
2210
        break;
1499
2211
      }
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
 
    }
 
2212
      bool interface_was_up = interface_is_up(interface);
 
2213
      ret = bring_up_interface(interface, delay);
 
2214
      if(not interface_was_up){
 
2215
        if(ret != 0){
 
2216
          errno = ret;
 
2217
          perror_plus("Failed to bring up interface");
 
2218
        } else {
 
2219
          ret_errno = argz_add(&interfaces_to_take_down,
 
2220
                               &interfaces_to_take_down_size,
 
2221
                               interface);
 
2222
        }
 
2223
      }
 
2224
    }
 
2225
    if(debug and (interfaces_to_take_down == NULL)){
 
2226
      fprintf_plus(stderr, "No interfaces were brought up\n");
 
2227
    }
 
2228
  }
 
2229
  
 
2230
  /* If we only got one interface, explicitly use only that one */
 
2231
  if(argz_count(mc.interfaces, mc.interfaces_size) == 1){
 
2232
    if(debug){
 
2233
      fprintf_plus(stderr, "Using only interface \"%s\"\n",
 
2234
                   mc.interfaces);
 
2235
    }
 
2236
    if_index = (AvahiIfIndex)if_nametoindex(mc.interfaces);
1537
2237
  }
1538
2238
  
1539
2239
  if(quit_now){
1540
2240
    goto end;
1541
2241
  }
1542
2242
  
1543
 
  ret = init_gnutls_global(pubkey, seckey);
 
2243
  ret = init_gnutls_global(pubkey, seckey, &mc);
1544
2244
  if(ret == -1){
1545
 
    fprintf(stderr, "init_gnutls_global failed\n");
 
2245
    fprintf_plus(stderr, "init_gnutls_global failed\n");
1546
2246
    exitcode = EX_UNAVAILABLE;
1547
2247
    goto end;
1548
2248
  } else {
1553
2253
    goto end;
1554
2254
  }
1555
2255
  
 
2256
  if(mkdtemp(tempdir) == NULL){
 
2257
    perror_plus("mkdtemp");
 
2258
    goto end;
 
2259
  }
1556
2260
  tempdir_created = true;
1557
 
  if(mkdtemp(tempdir) == NULL){
1558
 
    tempdir_created = false;
1559
 
    perror("mkdtemp");
1560
 
    goto end;
1561
 
  }
1562
2261
  
1563
2262
  if(quit_now){
1564
2263
    goto end;
1565
2264
  }
1566
2265
  
1567
 
  if(not init_gpgme(pubkey, seckey, tempdir)){
1568
 
    fprintf(stderr, "init_gpgme failed\n");
 
2266
  if(not init_gpgme(pubkey, seckey, tempdir, &mc)){
 
2267
    fprintf_plus(stderr, "init_gpgme failed\n");
1569
2268
    exitcode = EX_UNAVAILABLE;
1570
2269
    goto end;
1571
2270
  } else {
1580
2279
    /* Connect directly, do not use Zeroconf */
1581
2280
    /* (Mainly meant for debugging) */
1582
2281
    char *address = strrchr(connect_to, ':');
 
2282
    
1583
2283
    if(address == NULL){
1584
 
      fprintf(stderr, "No colon in address\n");
 
2284
      fprintf_plus(stderr, "No colon in address\n");
1585
2285
      exitcode = EX_USAGE;
1586
2286
      goto end;
1587
2287
    }
1590
2290
      goto end;
1591
2291
    }
1592
2292
    
1593
 
    uint16_t port;
 
2293
    in_port_t port;
1594
2294
    errno = 0;
1595
2295
    tmpmax = strtoimax(address+1, &tmp, 10);
1596
2296
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
1597
 
       or tmpmax != (uint16_t)tmpmax){
1598
 
      fprintf(stderr, "Bad port number\n");
 
2297
       or tmpmax != (in_port_t)tmpmax){
 
2298
      fprintf_plus(stderr, "Bad port number\n");
1599
2299
      exitcode = EX_USAGE;
1600
2300
      goto end;
1601
2301
    }
1602
 
  
 
2302
    
1603
2303
    if(quit_now){
1604
2304
      goto end;
1605
2305
    }
1606
2306
    
1607
 
    port = (uint16_t)tmpmax;
 
2307
    port = (in_port_t)tmpmax;
1608
2308
    *address = '\0';
1609
 
    address = connect_to;
1610
2309
    /* Colon in address indicates IPv6 */
1611
2310
    int af;
1612
 
    if(strchr(address, ':') != NULL){
 
2311
    if(strchr(connect_to, ':') != NULL){
1613
2312
      af = AF_INET6;
 
2313
      /* Accept [] around IPv6 address - see RFC 5952 */
 
2314
      if(connect_to[0] == '[' and address[-1] == ']')
 
2315
        {
 
2316
          connect_to++;
 
2317
          address[-1] = '\0';
 
2318
        }
1614
2319
    } else {
1615
2320
      af = AF_INET;
1616
2321
    }
 
2322
    address = connect_to;
1617
2323
    
1618
2324
    if(quit_now){
1619
2325
      goto end;
1620
2326
    }
1621
2327
    
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 {
 
2328
    while(not quit_now){
 
2329
      ret = start_mandos_communication(address, port, if_index, af,
 
2330
                                       &mc);
 
2331
      if(quit_now or ret == 0){
 
2332
        break;
 
2333
      }
 
2334
      if(debug){
 
2335
        fprintf_plus(stderr, "Retrying in %d seconds\n",
 
2336
                     (int)retry_interval);
 
2337
      }
 
2338
      sleep((unsigned int)retry_interval);
 
2339
    }
 
2340
    
 
2341
    if (not quit_now){
1644
2342
      exitcode = EXIT_SUCCESS;
1645
2343
    }
 
2344
    
1646
2345
    goto end;
1647
2346
  }
1648
2347
  
1660
2359
    config.publish_domain = 0;
1661
2360
    
1662
2361
    /* Allocate a new server */
1663
 
    mc.server = avahi_server_new(avahi_simple_poll_get
1664
 
                                 (mc.simple_poll), &config, NULL,
1665
 
                                 NULL, &error);
 
2362
    mc.server = avahi_server_new(avahi_simple_poll_get(simple_poll),
 
2363
                                 &config, NULL, NULL, &ret_errno);
1666
2364
    
1667
2365
    /* Free the Avahi configuration data */
1668
2366
    avahi_server_config_free(&config);
1670
2368
  
1671
2369
  /* Check if creating the Avahi server object succeeded */
1672
2370
  if(mc.server == NULL){
1673
 
    fprintf(stderr, "Failed to create Avahi server: %s\n",
1674
 
            avahi_strerror(error));
 
2371
    fprintf_plus(stderr, "Failed to create Avahi server: %s\n",
 
2372
                 avahi_strerror(ret_errno));
1675
2373
    exitcode = EX_UNAVAILABLE;
1676
2374
    goto end;
1677
2375
  }
1683
2381
  /* Create the Avahi service browser */
1684
2382
  sb = avahi_s_service_browser_new(mc.server, if_index,
1685
2383
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
1686
 
                                   NULL, 0, browse_callback, NULL);
 
2384
                                   NULL, 0, browse_callback,
 
2385
                                   (void *)&mc);
1687
2386
  if(sb == NULL){
1688
 
    fprintf(stderr, "Failed to create service browser: %s\n",
1689
 
            avahi_strerror(avahi_server_errno(mc.server)));
 
2387
    fprintf_plus(stderr, "Failed to create service browser: %s\n",
 
2388
                 avahi_strerror(avahi_server_errno(mc.server)));
1690
2389
    exitcode = EX_UNAVAILABLE;
1691
2390
    goto end;
1692
2391
  }
1698
2397
  /* Run the main loop */
1699
2398
  
1700
2399
  if(debug){
1701
 
    fprintf(stderr, "Starting Avahi loop search\n");
1702
 
  }
1703
 
  
1704
 
  avahi_simple_poll_loop(mc.simple_poll);
 
2400
    fprintf_plus(stderr, "Starting Avahi loop search\n");
 
2401
  }
 
2402
 
 
2403
  ret = avahi_loop_with_timeout(simple_poll,
 
2404
                                (int)(retry_interval * 1000), &mc);
 
2405
  if(debug){
 
2406
    fprintf_plus(stderr, "avahi_loop_with_timeout exited %s\n",
 
2407
                 (ret == 0) ? "successfully" : "with error");
 
2408
  }
1705
2409
  
1706
2410
 end:
1707
2411
  
1708
2412
  if(debug){
1709
 
    fprintf(stderr, "%s exiting\n", argv[0]);
 
2413
    fprintf_plus(stderr, "%s exiting\n", argv[0]);
1710
2414
  }
1711
2415
  
1712
2416
  /* Cleanup things */
 
2417
  free(mc.interfaces);
 
2418
  
1713
2419
  if(sb != NULL)
1714
2420
    avahi_s_service_browser_free(sb);
1715
2421
  
1716
2422
  if(mc.server != NULL)
1717
2423
    avahi_server_free(mc.server);
1718
2424
  
1719
 
  if(mc.simple_poll != NULL)
1720
 
    avahi_simple_poll_free(mc.simple_poll);
 
2425
  if(simple_poll != NULL)
 
2426
    avahi_simple_poll_free(simple_poll);
1721
2427
  
1722
2428
  if(gnutls_initialized){
1723
2429
    gnutls_certificate_free_credentials(mc.cred);
1729
2435
    gpgme_release(mc.ctx);
1730
2436
  }
1731
2437
  
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");
 
2438
  /* Cleans up the circular linked list of Mandos servers the client
 
2439
     has seen */
 
2440
  if(mc.current_server != NULL){
 
2441
    mc.current_server->prev->next = NULL;
 
2442
    while(mc.current_server != NULL){
 
2443
      server *next = mc.current_server->next;
 
2444
      free(mc.current_server);
 
2445
      mc.current_server = next;
1739
2446
    }
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");
 
2447
  }
 
2448
  
 
2449
  /* Re-raise priviliges */
 
2450
  {
 
2451
    raise_privileges();
 
2452
    
 
2453
    /* Run network hooks */
 
2454
    run_network_hooks("stop", interfaces_hooks != NULL ?
 
2455
                      interfaces_hooks : "", delay);
 
2456
    
 
2457
    /* Take down the network interfaces which were brought up */
 
2458
    {
 
2459
      char *interface = NULL;
 
2460
      while((interface=argz_next(interfaces_to_take_down,
 
2461
                                 interfaces_to_take_down_size,
 
2462
                                 interface))){
 
2463
        ret_errno = take_down_interface(interface);
 
2464
        if(ret_errno != 0){
 
2465
          errno = ret_errno;
 
2466
          perror_plus("Failed to take down interface");
1749
2467
        }
1750
2468
      }
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");
 
2469
      if(debug and (interfaces_to_take_down == NULL)){
 
2470
        fprintf_plus(stderr, "No interfaces needed to be taken"
 
2471
                     " down\n");
1760
2472
      }
1761
2473
    }
 
2474
    
 
2475
    lower_privileges_permanently();
1762
2476
  }
1763
2477
  
1764
 
  /* Removes the temp directory used by GPGME */
 
2478
  free(interfaces_to_take_down);
 
2479
  free(interfaces_hooks);
 
2480
  
 
2481
  /* Removes the GPGME temp directory and all files inside */
1765
2482
  if(tempdir_created){
1766
 
    DIR *d;
1767
 
    struct dirent *direntry;
1768
 
    d = opendir(tempdir);
1769
 
    if(d == NULL){
1770
 
      if(errno != ENOENT){
1771
 
        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
 
        }
 
2483
    struct dirent **direntries = NULL;
 
2484
    struct dirent *direntry = NULL;
 
2485
    int numentries = scandir(tempdir, &direntries, notdotentries,
 
2486
                             alphasort);
 
2487
    if (numentries > 0){
 
2488
      for(int i = 0; i < numentries; i++){
 
2489
        direntry = direntries[i];
1786
2490
        char *fullname = NULL;
1787
2491
        ret = asprintf(&fullname, "%s/%s", tempdir,
1788
2492
                       direntry->d_name);
1789
2493
        if(ret < 0){
1790
 
          perror("asprintf");
 
2494
          perror_plus("asprintf");
1791
2495
          continue;
1792
2496
        }
1793
2497
        ret = remove(fullname);
1794
2498
        if(ret == -1){
1795
 
          fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
1796
 
                  strerror(errno));
 
2499
          fprintf_plus(stderr, "remove(\"%s\"): %s\n", fullname,
 
2500
                       strerror(errno));
1797
2501
        }
1798
2502
        free(fullname);
1799
2503
      }
1800
 
      closedir(d);
 
2504
    }
 
2505
 
 
2506
    /* need to clean even if 0 because man page doesn't specify */
 
2507
    free(direntries);
 
2508
    if (numentries == -1){
 
2509
      perror_plus("scandir");
1801
2510
    }
1802
2511
    ret = rmdir(tempdir);
1803
2512
    if(ret == -1 and errno != ENOENT){
1804
 
      perror("rmdir");
 
2513
      perror_plus("rmdir");
1805
2514
    }
1806
2515
  }
1807
2516
  
1812
2521
                                            &old_sigterm_action,
1813
2522
                                            NULL));
1814
2523
    if(ret == -1){
1815
 
      perror("sigaction");
 
2524
      perror_plus("sigaction");
1816
2525
    }
1817
2526
    do {
1818
2527
      ret = raise(signal_received);
1819
2528
    } while(ret != 0 and errno == EINTR);
1820
2529
    if(ret != 0){
1821
 
      perror("raise");
 
2530
      perror_plus("raise");
1822
2531
      abort();
1823
2532
    }
1824
2533
    TEMP_FAILURE_RETRY(pause());