/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: 2009-02-07 05:05:03 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090207050503-wi4qno0t5ua46vvx
* initramfs-tools-hook: Add extra newline to plugin-runner.conf to
                        guard against a possible comment character
                        without a newline.

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