/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/mandos-client.c

  • Committer: Teddy Hogeborn
  • Date: 2008-09-06 17:24:58 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080906172458-2x5wlfkn7oqckt1y
* legalnotice.xml: Copy DocBook 4.4-formatted text from
                   <http://www.gnu.org/licenses/gpl-3.0.dbk>.

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