/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/password-request.c

merge

Show diffs side-by-side

added added

removed removed

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