/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

new domain name for d-bus

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***
2
 
  This file is part of avahi.
3
 
 
4
 
  avahi is free software; you can redistribute it and/or modify it
5
 
  under the terms of the GNU Lesser General Public License as
6
 
  published by the Free Software Foundation; either version 2.1 of the
7
 
  License, or (at your option) any later version.
8
 
 
9
 
  avahi is distributed in the hope that it will be useful, but WITHOUT
10
 
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11
 
  or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
12
 
  Public License for more details.
13
 
 
14
 
  You should have received a copy of the GNU Lesser General Public
15
 
  License along with avahi; if not, write to the Free Software
16
 
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17
 
  USA.
18
 
***/
 
1
/*  -*- coding: utf-8 -*- */
 
2
/*
 
3
 * Mandos-client - get and decrypt data from a Mandos server
 
4
 *
 
5
 * This program is partly derived from an example program for an Avahi
 
6
 * service browser, downloaded from
 
7
 * <http://avahi.org/browser/examples/core-browse-services.c>.  This
 
8
 * includes the following functions: "resolve_callback",
 
9
 * "browse_callback", and parts of "main".
 
10
 * 
 
11
 * Everything else is
 
12
 * Copyright © 2008,2009 Teddy Hogeborn
 
13
 * Copyright © 2008,2009 Björn Påhlsson
 
14
 * 
 
15
 * This program is free software: you can redistribute it and/or
 
16
 * modify it under the terms of the GNU General Public License as
 
17
 * published by the Free Software Foundation, either version 3 of the
 
18
 * License, or (at your option) any later version.
 
19
 * 
 
20
 * This program is distributed in the hope that it will be useful, but
 
21
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
22
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
23
 * General Public License for more details.
 
24
 * 
 
25
 * You should have received a copy of the GNU General Public License
 
26
 * along with this program.  If not, see
 
27
 * <http://www.gnu.org/licenses/>.
 
28
 * 
 
29
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
30
 */
19
31
 
 
32
/* Needed by GPGME, specifically gpgme_data_seek() */
20
33
#define _LARGEFILE_SOURCE
21
34
#define _FILE_OFFSET_BITS 64
22
35
 
23
 
#include <stdio.h>
24
 
#include <assert.h>
25
 
#include <stdlib.h>
26
 
#include <time.h>
27
 
#include <net/if.h>             /* if_nametoindex */
28
 
 
 
36
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
 
37
 
 
38
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
 
39
                                   stdout, ferror(), sscanf */
 
40
#include <stdint.h>             /* uint16_t, uint32_t */
 
41
#include <stddef.h>             /* NULL, size_t, ssize_t */
 
42
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
 
43
                                   srand() */
 
44
#include <stdbool.h>            /* bool, true */
 
45
#include <string.h>             /* memset(), strcmp(), strlen(),
 
46
                                   strerror(), asprintf(), strcpy() */
 
47
#include <sys/ioctl.h>          /* ioctl */
 
48
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
 
49
                                   sockaddr_in6, PF_INET6,
 
50
                                   SOCK_STREAM, INET6_ADDRSTRLEN,
 
51
                                   uid_t, gid_t, open(), opendir(),
 
52
                                   DIR */
 
53
#include <sys/stat.h>           /* open() */
 
54
#include <sys/socket.h>         /* socket(), struct sockaddr_in6,
 
55
                                   struct in6_addr, inet_pton(),
 
56
                                   connect() */
 
57
#include <fcntl.h>              /* open() */
 
58
#include <dirent.h>             /* opendir(), struct dirent, readdir()
 
59
                                 */
 
60
#include <inttypes.h>           /* PRIu16, intmax_t, SCNdMAX */
 
61
#include <assert.h>             /* assert() */
 
62
#include <errno.h>              /* perror(), errno */
 
63
#include <time.h>               /* time(), nanosleep() */
 
64
#include <net/if.h>             /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
 
65
                                   SIOCSIFFLAGS, if_indextoname(),
 
66
                                   if_nametoindex(), IF_NAMESIZE */
 
67
#include <netinet/in.h>
 
68
#include <unistd.h>             /* close(), SEEK_SET, off_t, write(),
 
69
                                   getuid(), getgid(), setuid(),
 
70
                                   setgid() */
 
71
#include <arpa/inet.h>          /* inet_pton(), htons */
 
72
#include <iso646.h>             /* not, and, or */
 
73
#include <argp.h>               /* struct argp_option, error_t, struct
 
74
                                   argp_state, struct argp,
 
75
                                   argp_parse(), ARGP_KEY_ARG,
 
76
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
 
77
#include <sys/klog.h>           /* klogctl() */
 
78
 
 
79
/* Avahi */
 
80
/* All Avahi types, constants and functions
 
81
 Avahi*, avahi_*,
 
82
 AVAHI_* */
29
83
#include <avahi-core/core.h>
30
84
#include <avahi-core/lookup.h>
31
85
#include <avahi-core/log.h>
33
87
#include <avahi-common/malloc.h>
34
88
#include <avahi-common/error.h>
35
89
 
36
 
//mandos client part
37
 
#include <sys/types.h>          /* socket(), setsockopt(), inet_pton() */
38
 
#include <sys/socket.h>         /* socket(), setsockopt(), struct sockaddr_in6, struct in6_addr, inet_pton() */
39
 
#include <gnutls/gnutls.h>      /* ALL GNUTLS STUFF */
40
 
#include <gnutls/openpgp.h>     /* gnutls with openpgp stuff */
41
 
 
42
 
#include <unistd.h>             /* close() */
43
 
#include <netinet/in.h>
44
 
#include <stdbool.h>            /* true */
45
 
#include <string.h>             /* memset */
46
 
#include <arpa/inet.h>          /* inet_pton() */
47
 
#include <iso646.h>             /* not */
48
 
 
49
 
// gpgme
50
 
#include <errno.h>              /* perror() */
51
 
#include <gpgme.h>
52
 
 
53
 
// getopt long
54
 
#include <getopt.h>
55
 
 
56
 
#ifndef CERT_ROOT
57
 
#define CERT_ROOT "/conf/conf.d/cryptkeyreq/"
58
 
#endif
59
 
#define CERTFILE CERT_ROOT "openpgp-client.txt"
60
 
#define KEYFILE CERT_ROOT "openpgp-client-key.txt"
 
90
/* GnuTLS */
 
91
#include <gnutls/gnutls.h>      /* All GnuTLS types, constants and
 
92
                                   functions:
 
93
                                   gnutls_*
 
94
                                   init_gnutls_session(),
 
95
                                   GNUTLS_* */
 
96
#include <gnutls/openpgp.h>
 
97
                          /* gnutls_certificate_set_openpgp_key_file(),
 
98
                                   GNUTLS_OPENPGP_FMT_BASE64 */
 
99
 
 
100
/* GPGME */
 
101
#include <gpgme.h>              /* All GPGME types, constants and
 
102
                                   functions:
 
103
                                   gpgme_*
 
104
                                   GPGME_PROTOCOL_OpenPGP,
 
105
                                   GPG_ERR_NO_* */
 
106
 
61
107
#define BUFFER_SIZE 256
62
 
#define DH_BITS 1024
 
108
 
 
109
#define PATHDIR "/conf/conf.d/mandos"
 
110
#define SECKEY "seckey.txt"
 
111
#define PUBKEY "pubkey.txt"
63
112
 
64
113
bool debug = false;
65
 
char *interface = "eth0";
 
114
static const char mandos_protocol_version[] = "1";
 
115
const char *argp_program_version = "mandos-client " VERSION;
 
116
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
66
117
 
 
118
/* Used for passing in values through the Avahi callback functions */
67
119
typedef struct {
68
 
  gnutls_session_t session;
 
120
  AvahiSimplePoll *simple_poll;
 
121
  AvahiServer *server;
69
122
  gnutls_certificate_credentials_t cred;
 
123
  unsigned int dh_bits;
70
124
  gnutls_dh_params_t dh_params;
71
 
} encrypted_session;
72
 
 
73
 
 
74
 
ssize_t gpg_packet_decrypt (char *packet, size_t packet_size, char **new_packet, char *homedir){
75
 
  gpgme_data_t dh_crypto, dh_plain;
 
125
  const char *priority;
76
126
  gpgme_ctx_t ctx;
 
127
} mandos_context;
 
128
 
 
129
/*
 
130
 * Make room in "buffer" for at least BUFFER_SIZE additional bytes.
 
131
 * "buffer_capacity" is how much is currently allocated,
 
132
 * "buffer_length" is how much is already used.
 
133
 */
 
134
size_t adjustbuffer(char **buffer, size_t buffer_length,
 
135
                  size_t buffer_capacity){
 
136
  if(buffer_length + BUFFER_SIZE > buffer_capacity){
 
137
    *buffer = realloc(*buffer, buffer_capacity + BUFFER_SIZE);
 
138
    if(buffer == NULL){
 
139
      return 0;
 
140
    }
 
141
    buffer_capacity += BUFFER_SIZE;
 
142
  }
 
143
  return buffer_capacity;
 
144
}
 
145
 
 
146
/* 
 
147
 * Initialize GPGME.
 
148
 */
 
149
static bool init_gpgme(mandos_context *mc, const char *seckey,
 
150
                       const char *pubkey, const char *tempdir){
 
151
  int ret;
77
152
  gpgme_error_t rc;
78
 
  ssize_t ret;
79
 
  size_t new_packet_capacity = 0;
80
 
  size_t new_packet_length = 0;
81
153
  gpgme_engine_info_t engine_info;
82
 
 
83
 
  if (debug){
84
 
    fprintf(stderr, "Attempting to decrypt password from gpg packet\n");
 
154
  
 
155
  
 
156
  /*
 
157
   * Helper function to insert pub and seckey to the enigne keyring.
 
158
   */
 
159
  bool import_key(const char *filename){
 
160
    int fd;
 
161
    gpgme_data_t pgp_data;
 
162
    
 
163
    fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
 
164
    if(fd == -1){
 
165
      perror("open");
 
166
      return false;
 
167
    }
 
168
    
 
169
    rc = gpgme_data_new_from_fd(&pgp_data, fd);
 
170
    if(rc != GPG_ERR_NO_ERROR){
 
171
      fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
 
172
              gpgme_strsource(rc), gpgme_strerror(rc));
 
173
      return false;
 
174
    }
 
175
    
 
176
    rc = gpgme_op_import(mc->ctx, pgp_data);
 
177
    if(rc != GPG_ERR_NO_ERROR){
 
178
      fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
 
179
              gpgme_strsource(rc), gpgme_strerror(rc));
 
180
      return false;
 
181
    }
 
182
    
 
183
    ret = (int)TEMP_FAILURE_RETRY(close(fd));
 
184
    if(ret == -1){
 
185
      perror("close");
 
186
    }
 
187
    gpgme_data_release(pgp_data);
 
188
    return true;
 
189
  }
 
190
  
 
191
  if(debug){
 
192
    fprintf(stderr, "Initialize gpgme\n");
85
193
  }
86
194
  
87
195
  /* Init GPGME */
88
196
  gpgme_check_version(NULL);
89
 
  gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
 
197
  rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
 
198
  if(rc != GPG_ERR_NO_ERROR){
 
199
    fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
 
200
            gpgme_strsource(rc), gpgme_strerror(rc));
 
201
    return false;
 
202
  }
90
203
  
91
 
  /* Set GPGME home directory */
92
 
  rc = gpgme_get_engine_info (&engine_info);
93
 
  if (rc != GPG_ERR_NO_ERROR){
 
204
    /* Set GPGME home directory for the OpenPGP engine only */
 
205
  rc = gpgme_get_engine_info(&engine_info);
 
206
  if(rc != GPG_ERR_NO_ERROR){
94
207
    fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
95
208
            gpgme_strsource(rc), gpgme_strerror(rc));
96
 
    return -1;
 
209
    return false;
97
210
  }
98
211
  while(engine_info != NULL){
99
212
    if(engine_info->protocol == GPGME_PROTOCOL_OpenPGP){
100
213
      gpgme_set_engine_info(GPGME_PROTOCOL_OpenPGP,
101
 
                            engine_info->file_name, homedir);
 
214
                            engine_info->file_name, tempdir);
102
215
      break;
103
216
    }
104
217
    engine_info = engine_info->next;
105
218
  }
106
219
  if(engine_info == NULL){
107
 
    fprintf(stderr, "Could not set home dir to %s\n", homedir);
108
 
    return -1;
109
 
  }
110
 
  
111
 
  /* Create new GPGME data buffer from packet buffer */
112
 
  rc = gpgme_data_new_from_mem(&dh_crypto, packet, packet_size, 0);
113
 
  if (rc != GPG_ERR_NO_ERROR){
 
220
    fprintf(stderr, "Could not set GPGME home dir to %s\n", tempdir);
 
221
    return false;
 
222
  }
 
223
  
 
224
  /* Create new GPGME "context" */
 
225
  rc = gpgme_new(&(mc->ctx));
 
226
  if(rc != GPG_ERR_NO_ERROR){
 
227
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
 
228
            gpgme_strsource(rc), gpgme_strerror(rc));
 
229
    return false;
 
230
  }
 
231
  
 
232
  if(not import_key(pubkey) or not import_key(seckey)){
 
233
    return false;
 
234
  }
 
235
  
 
236
  return true; 
 
237
}
 
238
 
 
239
/* 
 
240
 * Decrypt OpenPGP data.
 
241
 * Returns -1 on error
 
242
 */
 
243
static ssize_t pgp_packet_decrypt(const mandos_context *mc,
 
244
                                  const char *cryptotext,
 
245
                                  size_t crypto_size,
 
246
                                  char **plaintext){
 
247
  gpgme_data_t dh_crypto, dh_plain;
 
248
  gpgme_error_t rc;
 
249
  ssize_t ret;
 
250
  size_t plaintext_capacity = 0;
 
251
  ssize_t plaintext_length = 0;
 
252
  
 
253
  if(debug){
 
254
    fprintf(stderr, "Trying to decrypt OpenPGP data\n");
 
255
  }
 
256
  
 
257
  /* Create new GPGME data buffer from memory cryptotext */
 
258
  rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
 
259
                               0);
 
260
  if(rc != GPG_ERR_NO_ERROR){
114
261
    fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
115
262
            gpgme_strsource(rc), gpgme_strerror(rc));
116
263
    return -1;
118
265
  
119
266
  /* Create new empty GPGME data buffer for the plaintext */
120
267
  rc = gpgme_data_new(&dh_plain);
121
 
  if (rc != GPG_ERR_NO_ERROR){
 
268
  if(rc != GPG_ERR_NO_ERROR){
122
269
    fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
123
270
            gpgme_strsource(rc), gpgme_strerror(rc));
124
 
    return -1;
125
 
  }
126
 
  
127
 
  /* Create new GPGME "context" */
128
 
  rc = gpgme_new(&ctx);
129
 
  if (rc != GPG_ERR_NO_ERROR){
130
 
    fprintf(stderr, "bad gpgme_new: %s: %s\n",
131
 
            gpgme_strsource(rc), gpgme_strerror(rc));
132
 
    return -1;
133
 
  }
134
 
  
135
 
  /* Decrypt data from the FILE pointer to the plaintext data buffer */
136
 
  rc = gpgme_op_decrypt(ctx, dh_crypto, dh_plain);
137
 
  if (rc != GPG_ERR_NO_ERROR){
 
271
    gpgme_data_release(dh_crypto);
 
272
    return -1;
 
273
  }
 
274
  
 
275
  /* Decrypt data from the cryptotext data buffer to the plaintext
 
276
     data buffer */
 
277
  rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
 
278
  if(rc != GPG_ERR_NO_ERROR){
138
279
    fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
139
280
            gpgme_strsource(rc), gpgme_strerror(rc));
140
 
    return -1;
 
281
    plaintext_length = -1;
 
282
    if(debug){
 
283
      gpgme_decrypt_result_t result;
 
284
      result = gpgme_op_decrypt_result(mc->ctx);
 
285
      if(result == NULL){
 
286
        fprintf(stderr, "gpgme_op_decrypt_result failed\n");
 
287
      } else {
 
288
        fprintf(stderr, "Unsupported algorithm: %s\n",
 
289
                result->unsupported_algorithm);
 
290
        fprintf(stderr, "Wrong key usage: %u\n",
 
291
                result->wrong_key_usage);
 
292
        if(result->file_name != NULL){
 
293
          fprintf(stderr, "File name: %s\n", result->file_name);
 
294
        }
 
295
        gpgme_recipient_t recipient;
 
296
        recipient = result->recipients;
 
297
        if(recipient){
 
298
          while(recipient != NULL){
 
299
            fprintf(stderr, "Public key algorithm: %s\n",
 
300
                    gpgme_pubkey_algo_name(recipient->pubkey_algo));
 
301
            fprintf(stderr, "Key ID: %s\n", recipient->keyid);
 
302
            fprintf(stderr, "Secret key available: %s\n",
 
303
                    recipient->status == GPG_ERR_NO_SECKEY
 
304
                    ? "No" : "Yes");
 
305
            recipient = recipient->next;
 
306
          }
 
307
        }
 
308
      }
 
309
    }
 
310
    goto decrypt_end;
141
311
  }
142
 
 
 
312
  
143
313
  if(debug){
144
 
    fprintf(stderr, "decryption of gpg packet succeeded\n");
145
 
  }
146
 
 
147
 
  if (debug){
148
 
    gpgme_decrypt_result_t result;
149
 
    result = gpgme_op_decrypt_result(ctx);
150
 
    if (result == NULL){
151
 
      fprintf(stderr, "gpgme_op_decrypt_result failed\n");
152
 
    } else {
153
 
      fprintf(stderr, "Unsupported algorithm: %s\n", result->unsupported_algorithm);
154
 
      fprintf(stderr, "Wrong key usage: %d\n", result->wrong_key_usage);
155
 
      if(result->file_name != NULL){
156
 
        fprintf(stderr, "File name: %s\n", result->file_name);
157
 
      }
158
 
      gpgme_recipient_t recipient;
159
 
      recipient = result->recipients;
160
 
      if(recipient){
161
 
        while(recipient != NULL){
162
 
          fprintf(stderr, "Public key algorithm: %s\n",
163
 
                  gpgme_pubkey_algo_name(recipient->pubkey_algo));
164
 
          fprintf(stderr, "Key ID: %s\n", recipient->keyid);
165
 
          fprintf(stderr, "Secret key available: %s\n",
166
 
                  recipient->status == GPG_ERR_NO_SECKEY ? "No" : "Yes");
167
 
          recipient = recipient->next;
168
 
        }
169
 
      }
170
 
    }
171
 
  }
172
 
  
173
 
  /* Delete the GPGME FILE pointer cryptotext data buffer */
174
 
  gpgme_data_release(dh_crypto);
 
314
    fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
 
315
  }
175
316
  
176
317
  /* Seek back to the beginning of the GPGME plaintext data buffer */
177
 
  gpgme_data_seek(dh_plain, 0, SEEK_SET);
178
 
 
179
 
  *new_packet = 0;
 
318
  if(gpgme_data_seek(dh_plain, (off_t)0, SEEK_SET) == -1){
 
319
    perror("gpgme_data_seek");
 
320
    plaintext_length = -1;
 
321
    goto decrypt_end;
 
322
  }
 
323
  
 
324
  *plaintext = NULL;
180
325
  while(true){
181
 
    if (new_packet_length + BUFFER_SIZE > new_packet_capacity){
182
 
      *new_packet = realloc(*new_packet, new_packet_capacity + BUFFER_SIZE);
183
 
      if (*new_packet == NULL){
184
 
        perror("realloc");
185
 
        return -1;
186
 
      }
187
 
      new_packet_capacity += BUFFER_SIZE;
 
326
    plaintext_capacity = adjustbuffer(plaintext,
 
327
                                      (size_t)plaintext_length,
 
328
                                      plaintext_capacity);
 
329
    if(plaintext_capacity == 0){
 
330
        perror("adjustbuffer");
 
331
        plaintext_length = -1;
 
332
        goto decrypt_end;
188
333
    }
189
334
    
190
 
    ret = gpgme_data_read(dh_plain, *new_packet + new_packet_length, BUFFER_SIZE);
 
335
    ret = gpgme_data_read(dh_plain, *plaintext + plaintext_length,
 
336
                          BUFFER_SIZE);
191
337
    /* Print the data, if any */
192
 
    if (ret == 0){
193
 
      /* If password is empty, then a incorrect error will be printed */
 
338
    if(ret == 0){
 
339
      /* EOF */
194
340
      break;
195
341
    }
196
342
    if(ret < 0){
197
343
      perror("gpgme_data_read");
198
 
      return -1;
199
 
    }
200
 
    new_packet_length += ret;
201
 
  }
202
 
 
203
 
  /* FIXME: check characters before printing to screen so to not print
204
 
     terminal control characters */
205
 
  /*   if(debug){ */
206
 
  /*     fprintf(stderr, "decrypted password is: "); */
207
 
  /*     fwrite(*new_packet, 1, new_packet_length, stderr); */
208
 
  /*     fprintf(stderr, "\n"); */
209
 
  /*   } */
 
344
      plaintext_length = -1;
 
345
      goto decrypt_end;
 
346
    }
 
347
    plaintext_length += ret;
 
348
  }
 
349
  
 
350
  if(debug){
 
351
    fprintf(stderr, "Decrypted password is: ");
 
352
    for(ssize_t i = 0; i < plaintext_length; i++){
 
353
      fprintf(stderr, "%02hhX ", (*plaintext)[i]);
 
354
    }
 
355
    fprintf(stderr, "\n");
 
356
  }
 
357
  
 
358
 decrypt_end:
 
359
  
 
360
  /* Delete the GPGME cryptotext data buffer */
 
361
  gpgme_data_release(dh_crypto);
210
362
  
211
363
  /* Delete the GPGME plaintext data buffer */
212
364
  gpgme_data_release(dh_plain);
213
 
  return new_packet_length;
 
365
  return plaintext_length;
214
366
}
215
367
 
216
 
static const char * safer_gnutls_strerror (int value) {
217
 
  const char *ret = gnutls_strerror (value);
218
 
  if (ret == NULL)
 
368
static const char * safer_gnutls_strerror(int value) {
 
369
  const char *ret = gnutls_strerror(value); /* Spurious warning from
 
370
                                               -Wunreachable-code */
 
371
  if(ret == NULL)
219
372
    ret = "(unknown)";
220
373
  return ret;
221
374
}
222
375
 
223
 
void debuggnutls(int level, const char* string){
224
 
  fprintf(stderr, "%s", string);
 
376
/* GnuTLS log function callback */
 
377
static void debuggnutls(__attribute__((unused)) int level,
 
378
                        const char* string){
 
379
  fprintf(stderr, "GnuTLS: %s", string);
225
380
}
226
381
 
227
 
int initgnutls(encrypted_session *es){
228
 
  const char *err;
 
382
static int init_gnutls_global(mandos_context *mc,
 
383
                              const char *pubkeyfilename,
 
384
                              const char *seckeyfilename){
229
385
  int ret;
230
 
 
 
386
  
231
387
  if(debug){
232
 
    fprintf(stderr, "Initializing gnutls\n");
 
388
    fprintf(stderr, "Initializing GnuTLS\n");
233
389
  }
234
 
 
235
390
  
236
 
  if ((ret = gnutls_global_init ())
237
 
      != GNUTLS_E_SUCCESS) {
238
 
    fprintf (stderr, "global_init: %s\n", safer_gnutls_strerror(ret));
 
391
  ret = gnutls_global_init();
 
392
  if(ret != GNUTLS_E_SUCCESS) {
 
393
    fprintf(stderr, "GnuTLS global_init: %s\n",
 
394
            safer_gnutls_strerror(ret));
239
395
    return -1;
240
396
  }
241
 
 
242
 
  if (debug){
 
397
  
 
398
  if(debug){
 
399
    /* "Use a log level over 10 to enable all debugging options."
 
400
     * - GnuTLS manual
 
401
     */
243
402
    gnutls_global_set_log_level(11);
244
403
    gnutls_global_set_log_function(debuggnutls);
245
404
  }
246
405
  
247
 
 
248
 
  /* openpgp credentials */
249
 
  if ((ret = gnutls_certificate_allocate_credentials (&es->cred))
250
 
      != GNUTLS_E_SUCCESS) {
251
 
    fprintf (stderr, "memory error: %s\n", safer_gnutls_strerror(ret));
 
406
  /* OpenPGP credentials */
 
407
  gnutls_certificate_allocate_credentials(&mc->cred);
 
408
  if(ret != GNUTLS_E_SUCCESS){
 
409
    fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
 
410
                                                  * from
 
411
                                                  * -Wunreachable-code
 
412
                                                  */
 
413
            safer_gnutls_strerror(ret));
 
414
    gnutls_global_deinit();
252
415
    return -1;
253
416
  }
254
 
 
 
417
  
255
418
  if(debug){
256
 
    fprintf(stderr, "Attempting to use openpgp certificate %s"
257
 
            " and keyfile %s as gnutls credentials\n", CERTFILE, KEYFILE);
 
419
    fprintf(stderr, "Attempting to use OpenPGP public key %s and"
 
420
            " secret key %s as GnuTLS credentials\n", pubkeyfilename,
 
421
            seckeyfilename);
258
422
  }
259
 
 
 
423
  
260
424
  ret = gnutls_certificate_set_openpgp_key_file
261
 
    (es->cred, CERTFILE, KEYFILE, GNUTLS_OPENPGP_FMT_BASE64);
262
 
  if (ret != GNUTLS_E_SUCCESS) {
263
 
    fprintf
264
 
      (stderr, "Error[%d] while reading the OpenPGP key pair ('%s', '%s')\n",
265
 
       ret, CERTFILE, KEYFILE);
266
 
    fprintf(stdout, "The Error is: %s\n",
267
 
            safer_gnutls_strerror(ret));
268
 
    return -1;
269
 
  }
270
 
 
271
 
  //Gnutls server initialization
272
 
  if ((ret = gnutls_dh_params_init (&es->dh_params))
273
 
      != GNUTLS_E_SUCCESS) {
274
 
    fprintf (stderr, "Error in dh parameter initialization: %s\n",
275
 
             safer_gnutls_strerror(ret));
276
 
    return -1;
277
 
  }
278
 
 
279
 
  if ((ret = gnutls_dh_params_generate2 (es->dh_params, DH_BITS))
280
 
      != GNUTLS_E_SUCCESS) {
281
 
    fprintf (stderr, "Error in prime generation: %s\n",
282
 
             safer_gnutls_strerror(ret));
283
 
    return -1;
284
 
  }
285
 
 
286
 
  gnutls_certificate_set_dh_params (es->cred, es->dh_params);
287
 
 
288
 
  // Gnutls session creation
289
 
  if ((ret = gnutls_init (&es->session, GNUTLS_SERVER))
290
 
      != GNUTLS_E_SUCCESS){
291
 
    fprintf(stderr, "Error in gnutls session initialization: %s\n",
292
 
            safer_gnutls_strerror(ret));
293
 
  }
294
 
 
295
 
  if ((ret = gnutls_priority_set_direct (es->session, "NORMAL", &err))
296
 
      != GNUTLS_E_SUCCESS) {
297
 
    fprintf(stderr, "Syntax error at: %s\n", err);
298
 
    fprintf(stderr, "Gnutls error: %s\n",
299
 
            safer_gnutls_strerror(ret));
300
 
    return -1;
301
 
  }
302
 
 
303
 
  if ((ret = gnutls_credentials_set
304
 
       (es->session, GNUTLS_CRD_CERTIFICATE, es->cred))
305
 
      != GNUTLS_E_SUCCESS) {
306
 
    fprintf(stderr, "Error setting a credentials set: %s\n",
307
 
            safer_gnutls_strerror(ret));
308
 
    return -1;
309
 
  }
310
 
 
 
425
    (mc->cred, pubkeyfilename, seckeyfilename,
 
426
     GNUTLS_OPENPGP_FMT_BASE64);
 
427
  if(ret != GNUTLS_E_SUCCESS) {
 
428
    fprintf(stderr,
 
429
            "Error[%d] while reading the OpenPGP key pair ('%s',"
 
430
            " '%s')\n", ret, pubkeyfilename, seckeyfilename);
 
431
    fprintf(stderr, "The GnuTLS error is: %s\n",
 
432
            safer_gnutls_strerror(ret));
 
433
    goto globalfail;
 
434
  }
 
435
  
 
436
  /* GnuTLS server initialization */
 
437
  ret = gnutls_dh_params_init(&mc->dh_params);
 
438
  if(ret != GNUTLS_E_SUCCESS) {
 
439
    fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
 
440
            " %s\n", safer_gnutls_strerror(ret));
 
441
    goto globalfail;
 
442
  }
 
443
  ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
 
444
  if(ret != GNUTLS_E_SUCCESS) {
 
445
    fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
 
446
            safer_gnutls_strerror(ret));
 
447
    goto globalfail;
 
448
  }
 
449
  
 
450
  gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
 
451
  
 
452
  return 0;
 
453
  
 
454
 globalfail:
 
455
  
 
456
  gnutls_certificate_free_credentials(mc->cred);
 
457
  gnutls_global_deinit();
 
458
  gnutls_dh_params_deinit(mc->dh_params);
 
459
  return -1;
 
460
}
 
461
 
 
462
static int init_gnutls_session(mandos_context *mc,
 
463
                               gnutls_session_t *session){
 
464
  int ret;
 
465
  /* GnuTLS session creation */
 
466
  ret = gnutls_init(session, GNUTLS_SERVER);
 
467
  if(ret != GNUTLS_E_SUCCESS){
 
468
    fprintf(stderr, "Error in GnuTLS session initialization: %s\n",
 
469
            safer_gnutls_strerror(ret));
 
470
  }
 
471
  
 
472
  {
 
473
    const char *err;
 
474
    ret = gnutls_priority_set_direct(*session, mc->priority, &err);
 
475
    if(ret != GNUTLS_E_SUCCESS) {
 
476
      fprintf(stderr, "Syntax error at: %s\n", err);
 
477
      fprintf(stderr, "GnuTLS error: %s\n",
 
478
              safer_gnutls_strerror(ret));
 
479
      gnutls_deinit(*session);
 
480
      return -1;
 
481
    }
 
482
  }
 
483
  
 
484
  ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
 
485
                               mc->cred);
 
486
  if(ret != GNUTLS_E_SUCCESS) {
 
487
    fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
 
488
            safer_gnutls_strerror(ret));
 
489
    gnutls_deinit(*session);
 
490
    return -1;
 
491
  }
 
492
  
311
493
  /* ignore client certificate if any. */
312
 
  gnutls_certificate_server_set_request (es->session, GNUTLS_CERT_IGNORE);
 
494
  gnutls_certificate_server_set_request(*session,
 
495
                                        GNUTLS_CERT_IGNORE);
313
496
  
314
 
  gnutls_dh_set_prime_bits (es->session, DH_BITS);
 
497
  gnutls_dh_set_prime_bits(*session, mc->dh_bits);
315
498
  
316
499
  return 0;
317
500
}
318
501
 
319
 
void empty_log(AvahiLogLevel level, const char *txt){}
 
502
/* Avahi log function callback */
 
503
static void empty_log(__attribute__((unused)) AvahiLogLevel level,
 
504
                      __attribute__((unused)) const char *txt){}
320
505
 
321
 
int start_mandos_communication(char *ip, uint16_t port){
 
506
/* Called when a Mandos server is found */
 
507
static int start_mandos_communication(const char *ip, uint16_t port,
 
508
                                      AvahiIfIndex if_index,
 
509
                                      mandos_context *mc){
322
510
  int ret, tcp_sd;
323
 
  struct sockaddr_in6 to;
324
 
  encrypted_session es;
 
511
  ssize_t sret;
 
512
  union { struct sockaddr in; struct sockaddr_in6 in6; } to;
325
513
  char *buffer = NULL;
326
514
  char *decrypted_buffer;
327
515
  size_t buffer_length = 0;
328
516
  size_t buffer_capacity = 0;
329
517
  ssize_t decrypted_buffer_size;
 
518
  size_t written;
330
519
  int retval = 0;
331
 
 
 
520
  char interface[IF_NAMESIZE];
 
521
  gnutls_session_t session;
 
522
  
 
523
  ret = init_gnutls_session(mc, &session);
 
524
  if(ret != 0){
 
525
    return -1;
 
526
  }
 
527
  
332
528
  if(debug){
333
 
    fprintf(stderr, "Setting up a tcp connection to %s\n", ip);
 
529
    fprintf(stderr, "Setting up a tcp connection to %s, port %" PRIu16
 
530
            "\n", ip, port);
334
531
  }
335
532
  
336
533
  tcp_sd = socket(PF_INET6, SOCK_STREAM, 0);
338
535
    perror("socket");
339
536
    return -1;
340
537
  }
341
 
 
 
538
  
342
539
  if(debug){
 
540
    if(if_indextoname((unsigned int)if_index, interface) == NULL){
 
541
      perror("if_indextoname");
 
542
      return -1;
 
543
    }
343
544
    fprintf(stderr, "Binding to interface %s\n", interface);
344
545
  }
345
 
 
346
 
  ret = setsockopt(tcp_sd, SOL_SOCKET, SO_BINDTODEVICE, interface, 5);
347
 
  if(tcp_sd < 0) {
348
 
    perror("setsockopt bindtodevice");
349
 
    return -1;
350
 
  }
351
546
  
352
 
  memset(&to,0,sizeof(to));
353
 
  to.sin6_family = AF_INET6;
354
 
  ret = inet_pton(AF_INET6, ip, &to.sin6_addr);
355
 
  if (ret < 0 ){
 
547
  memset(&to, 0, sizeof(to));
 
548
  to.in6.sin6_family = AF_INET6;
 
549
  /* It would be nice to have a way to detect if we were passed an
 
550
     IPv4 address here.   Now we assume an IPv6 address. */
 
551
  ret = inet_pton(AF_INET6, ip, &to.in6.sin6_addr);
 
552
  if(ret < 0 ){
356
553
    perror("inet_pton");
357
554
    return -1;
358
 
  }  
 
555
  }
359
556
  if(ret == 0){
360
557
    fprintf(stderr, "Bad address: %s\n", ip);
361
558
    return -1;
362
559
  }
363
 
  to.sin6_port = htons(port);
364
 
  to.sin6_scope_id = if_nametoindex(interface);
365
 
 
 
560
  to.in6.sin6_port = htons(port); /* Spurious warnings from
 
561
                                     -Wconversion and
 
562
                                     -Wunreachable-code */
 
563
  
 
564
  to.in6.sin6_scope_id = (uint32_t)if_index;
 
565
  
366
566
  if(debug){
367
 
    fprintf(stderr, "Connection to: %s\n", ip);
 
567
    fprintf(stderr, "Connection to: %s, port %" PRIu16 "\n", ip,
 
568
            port);
 
569
    char addrstr[INET6_ADDRSTRLEN] = "";
 
570
    if(inet_ntop(to.in6.sin6_family, &(to.in6.sin6_addr), addrstr,
 
571
                 sizeof(addrstr)) == NULL){
 
572
      perror("inet_ntop");
 
573
    } else {
 
574
      if(strcmp(addrstr, ip) != 0){
 
575
        fprintf(stderr, "Canonical address form: %s\n", addrstr);
 
576
      }
 
577
    }
368
578
  }
369
579
  
370
 
  ret = connect(tcp_sd, (struct sockaddr *) &to, sizeof(to));
371
 
  if (ret < 0){
 
580
  ret = connect(tcp_sd, &to.in, sizeof(to));
 
581
  if(ret < 0){
372
582
    perror("connect");
373
583
    return -1;
374
584
  }
375
585
  
376
 
  ret = initgnutls (&es);
377
 
  if (ret != 0){
378
 
    retval = -1;
379
 
    return -1;
380
 
  }
381
 
    
382
 
  
383
 
  gnutls_transport_set_ptr (es.session, (gnutls_transport_ptr_t) tcp_sd);
384
 
 
385
 
  if(debug){
386
 
    fprintf(stderr, "Establishing tls session with %s\n", ip);
387
 
  }
388
 
 
389
 
  
390
 
  ret = gnutls_handshake (es.session);
391
 
  
392
 
  if (ret != GNUTLS_E_SUCCESS){
393
 
    fprintf(stderr, "\n*** Handshake failed ***\n");
394
 
    gnutls_perror (ret);
395
 
    retval = -1;
396
 
    goto exit;
397
 
  }
398
 
 
399
 
  //Retrieve gpg packet that contains the wanted password
400
 
 
401
 
  if(debug){
402
 
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n", ip);
403
 
  }
404
 
 
 
586
  const char *out = mandos_protocol_version;
 
587
  written = 0;
405
588
  while(true){
406
 
    if (buffer_length + BUFFER_SIZE > buffer_capacity){
407
 
      buffer = realloc(buffer, buffer_capacity + BUFFER_SIZE);
408
 
      if (buffer == NULL){
409
 
        perror("realloc");
410
 
        goto exit;
 
589
    size_t out_size = strlen(out);
 
590
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
 
591
                                   out_size - written));
 
592
    if(ret == -1){
 
593
      perror("write");
 
594
      retval = -1;
 
595
      goto mandos_end;
 
596
    }
 
597
    written += (size_t)ret;
 
598
    if(written < out_size){
 
599
      continue;
 
600
    } else {
 
601
      if(out == mandos_protocol_version){
 
602
        written = 0;
 
603
        out = "\r\n";
 
604
      } else {
 
605
        break;
411
606
      }
412
 
      buffer_capacity += BUFFER_SIZE;
 
607
    }
 
608
  }
 
609
  
 
610
  if(debug){
 
611
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
 
612
  }
 
613
  
 
614
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
 
615
  
 
616
  do{
 
617
    ret = gnutls_handshake(session);
 
618
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
 
619
  
 
620
  if(ret != GNUTLS_E_SUCCESS){
 
621
    if(debug){
 
622
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
 
623
      gnutls_perror(ret);
 
624
    }
 
625
    retval = -1;
 
626
    goto mandos_end;
 
627
  }
 
628
  
 
629
  /* Read OpenPGP packet that contains the wanted password */
 
630
  
 
631
  if(debug){
 
632
    fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
 
633
            ip);
 
634
  }
 
635
  
 
636
  while(true){
 
637
    buffer_capacity = adjustbuffer(&buffer, buffer_length,
 
638
                                   buffer_capacity);
 
639
    if(buffer_capacity == 0){
 
640
      perror("adjustbuffer");
 
641
      retval = -1;
 
642
      goto mandos_end;
413
643
    }
414
644
    
415
 
    ret = gnutls_record_recv
416
 
      (es.session, buffer+buffer_length, BUFFER_SIZE);
417
 
    if (ret == 0){
 
645
    sret = gnutls_record_recv(session, buffer+buffer_length,
 
646
                              BUFFER_SIZE);
 
647
    if(sret == 0){
418
648
      break;
419
649
    }
420
 
    if (ret < 0){
421
 
      switch(ret){
 
650
    if(sret < 0){
 
651
      switch(sret){
422
652
      case GNUTLS_E_INTERRUPTED:
423
653
      case GNUTLS_E_AGAIN:
424
654
        break;
425
655
      case GNUTLS_E_REHANDSHAKE:
426
 
        ret = gnutls_handshake (es.session);
427
 
        if (ret < 0){
428
 
          fprintf(stderr, "\n*** Handshake failed ***\n");
429
 
          gnutls_perror (ret);
 
656
        do{
 
657
          ret = gnutls_handshake(session);
 
658
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
 
659
        if(ret < 0){
 
660
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
 
661
          gnutls_perror(ret);
430
662
          retval = -1;
431
 
          goto exit;
 
663
          goto mandos_end;
432
664
        }
433
665
        break;
434
666
      default:
435
 
        fprintf(stderr, "Unknown error while reading data from encrypted session with mandos server\n");
 
667
        fprintf(stderr, "Unknown error while reading data from"
 
668
                " encrypted session with Mandos server\n");
436
669
        retval = -1;
437
 
        gnutls_bye (es.session, GNUTLS_SHUT_RDWR);
438
 
        goto exit;
 
670
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
671
        goto mandos_end;
439
672
      }
440
673
    } else {
441
 
      buffer_length += ret;
 
674
      buffer_length += (size_t) sret;
442
675
    }
443
676
  }
444
677
  
445
 
  if (buffer_length > 0){
446
 
    if ((decrypted_buffer_size = gpg_packet_decrypt(buffer, buffer_length, &decrypted_buffer, CERT_ROOT)) >= 0){
447
 
      fwrite (decrypted_buffer, 1, decrypted_buffer_size, stdout);
 
678
  if(debug){
 
679
    fprintf(stderr, "Closing TLS session\n");
 
680
  }
 
681
  
 
682
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
683
  
 
684
  if(buffer_length > 0){
 
685
    decrypted_buffer_size = pgp_packet_decrypt(mc, buffer,
 
686
                                               buffer_length,
 
687
                                               &decrypted_buffer);
 
688
    if(decrypted_buffer_size >= 0){
 
689
      written = 0;
 
690
      while(written < (size_t) decrypted_buffer_size){
 
691
        ret = (int)fwrite(decrypted_buffer + written, 1,
 
692
                          (size_t)decrypted_buffer_size - written,
 
693
                          stdout);
 
694
        if(ret == 0 and ferror(stdout)){
 
695
          if(debug){
 
696
            fprintf(stderr, "Error writing encrypted data: %s\n",
 
697
                    strerror(errno));
 
698
          }
 
699
          retval = -1;
 
700
          break;
 
701
        }
 
702
        written += (size_t)ret;
 
703
      }
448
704
      free(decrypted_buffer);
449
705
    } else {
450
706
      retval = -1;
451
707
    }
452
 
  }
453
 
 
454
 
  //shutdown procedure
455
 
 
456
 
  if(debug){
457
 
    fprintf(stderr, "Closing tls session\n");
458
 
  }
459
 
 
 
708
  } else {
 
709
    retval = -1;
 
710
  }
 
711
  
 
712
  /* Shutdown procedure */
 
713
  
 
714
 mandos_end:
460
715
  free(buffer);
461
 
  gnutls_bye (es.session, GNUTLS_SHUT_RDWR);
462
 
 exit:
463
 
  close(tcp_sd);
464
 
  gnutls_deinit (es.session);
465
 
  gnutls_certificate_free_credentials (es.cred);
466
 
  gnutls_global_deinit ();
 
716
  ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
717
  if(ret == -1){
 
718
    perror("close");
 
719
  }
 
720
  gnutls_deinit(session);
467
721
  return retval;
468
722
}
469
723
 
470
 
static AvahiSimplePoll *simple_poll = NULL;
471
 
static AvahiServer *server = NULL;
472
 
 
473
 
static void resolve_callback(
474
 
    AvahiSServiceResolver *r,
475
 
    AVAHI_GCC_UNUSED AvahiIfIndex interface,
476
 
    AVAHI_GCC_UNUSED AvahiProtocol protocol,
477
 
    AvahiResolverEvent event,
478
 
    const char *name,
479
 
    const char *type,
480
 
    const char *domain,
481
 
    const char *host_name,
482
 
    const AvahiAddress *address,
483
 
    uint16_t port,
484
 
    AvahiStringList *txt,
485
 
    AvahiLookupResultFlags flags,
486
 
    AVAHI_GCC_UNUSED void* userdata) {
487
 
    
488
 
    assert(r);
489
 
 
490
 
    /* Called whenever a service has been resolved successfully or timed out */
491
 
 
492
 
    switch (event) {
493
 
        case AVAHI_RESOLVER_FAILURE:
494
 
            fprintf(stderr, "(Resolver) Failed to resolve service '%s' of type '%s' in domain '%s': %s\n", name, type, domain, avahi_strerror(avahi_server_errno(server)));
495
 
            break;
496
 
 
497
 
        case AVAHI_RESOLVER_FOUND: {
498
 
          char ip[AVAHI_ADDRESS_STR_MAX];
499
 
            avahi_address_snprint(ip, sizeof(ip), address);
500
 
            if(debug){
501
 
              fprintf(stderr, "Mandos server found at %s on port %d\n", ip, port);
502
 
            }
503
 
            int ret = start_mandos_communication(ip, port);
504
 
            if (ret == 0){
505
 
              exit(EXIT_SUCCESS);
506
 
            } else {
507
 
              exit(EXIT_FAILURE);
508
 
            }
509
 
        }
510
 
    }
511
 
    avahi_s_service_resolver_free(r);
512
 
}
513
 
 
514
 
static void browse_callback(
515
 
    AvahiSServiceBrowser *b,
516
 
    AvahiIfIndex interface,
517
 
    AvahiProtocol protocol,
518
 
    AvahiBrowserEvent event,
519
 
    const char *name,
520
 
    const char *type,
521
 
    const char *domain,
522
 
    AVAHI_GCC_UNUSED AvahiLookupResultFlags flags,
523
 
    void* userdata) {
524
 
    
525
 
    AvahiServer *s = userdata;
526
 
    assert(b);
527
 
 
528
 
    /* Called whenever a new services becomes available on the LAN or is removed from the LAN */
529
 
 
530
 
    switch (event) {
531
 
 
532
 
        case AVAHI_BROWSER_FAILURE:
533
 
            
534
 
            fprintf(stderr, "(Browser) %s\n", avahi_strerror(avahi_server_errno(server)));
535
 
            avahi_simple_poll_quit(simple_poll);
536
 
            return;
537
 
 
538
 
        case AVAHI_BROWSER_NEW:
539
 
            /* We ignore the returned resolver object. In the callback
540
 
               function we free it. If the server is terminated before
541
 
               the callback function is called the server will free
542
 
               the resolver for us. */
543
 
            
544
 
            if (!(avahi_s_service_resolver_new(s, interface, protocol, name, type, domain, AVAHI_PROTO_INET6, 0, resolve_callback, s)))
545
 
                fprintf(stderr, "Failed to resolve service '%s': %s\n", name, avahi_strerror(avahi_server_errno(s)));
546
 
            
547
 
            break;
548
 
 
549
 
        case AVAHI_BROWSER_REMOVE:
550
 
            break;
551
 
 
552
 
        case AVAHI_BROWSER_ALL_FOR_NOW:
553
 
        case AVAHI_BROWSER_CACHE_EXHAUSTED:
554
 
            break;
555
 
    }
556
 
}
557
 
 
558
 
int main(AVAHI_GCC_UNUSED int argc, AVAHI_GCC_UNUSED char*argv[]) {
559
 
    AvahiServerConfig config;
 
724
static void resolve_callback(AvahiSServiceResolver *r,
 
725
                             AvahiIfIndex interface,
 
726
                             AVAHI_GCC_UNUSED AvahiProtocol protocol,
 
727
                             AvahiResolverEvent event,
 
728
                             const char *name,
 
729
                             const char *type,
 
730
                             const char *domain,
 
731
                             const char *host_name,
 
732
                             const AvahiAddress *address,
 
733
                             uint16_t port,
 
734
                             AVAHI_GCC_UNUSED AvahiStringList *txt,
 
735
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
 
736
                             flags,
 
737
                             void* userdata) {
 
738
  mandos_context *mc = userdata;
 
739
  assert(r);
 
740
  
 
741
  /* Called whenever a service has been resolved successfully or
 
742
     timed out */
 
743
  
 
744
  switch(event) {
 
745
  default:
 
746
  case AVAHI_RESOLVER_FAILURE:
 
747
    fprintf(stderr, "(Avahi Resolver) Failed to resolve service '%s'"
 
748
            " of type '%s' in domain '%s': %s\n", name, type, domain,
 
749
            avahi_strerror(avahi_server_errno(mc->server)));
 
750
    break;
 
751
    
 
752
  case AVAHI_RESOLVER_FOUND:
 
753
    {
 
754
      char ip[AVAHI_ADDRESS_STR_MAX];
 
755
      avahi_address_snprint(ip, sizeof(ip), address);
 
756
      if(debug){
 
757
        fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
 
758
                PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
 
759
                ip, (intmax_t)interface, port);
 
760
      }
 
761
      int ret = start_mandos_communication(ip, port, interface, mc);
 
762
      if(ret == 0){
 
763
        avahi_simple_poll_quit(mc->simple_poll);
 
764
      }
 
765
    }
 
766
  }
 
767
  avahi_s_service_resolver_free(r);
 
768
}
 
769
 
 
770
static void browse_callback( AvahiSServiceBrowser *b,
 
771
                             AvahiIfIndex interface,
 
772
                             AvahiProtocol protocol,
 
773
                             AvahiBrowserEvent event,
 
774
                             const char *name,
 
775
                             const char *type,
 
776
                             const char *domain,
 
777
                             AVAHI_GCC_UNUSED AvahiLookupResultFlags
 
778
                             flags,
 
779
                             void* userdata) {
 
780
  mandos_context *mc = userdata;
 
781
  assert(b);
 
782
  
 
783
  /* Called whenever a new services becomes available on the LAN or
 
784
     is removed from the LAN */
 
785
  
 
786
  switch(event) {
 
787
  default:
 
788
  case AVAHI_BROWSER_FAILURE:
 
789
    
 
790
    fprintf(stderr, "(Avahi browser) %s\n",
 
791
            avahi_strerror(avahi_server_errno(mc->server)));
 
792
    avahi_simple_poll_quit(mc->simple_poll);
 
793
    return;
 
794
    
 
795
  case AVAHI_BROWSER_NEW:
 
796
    /* We ignore the returned Avahi resolver object. In the callback
 
797
       function we free it. If the Avahi server is terminated before
 
798
       the callback function is called the Avahi server will free the
 
799
       resolver for us. */
 
800
    
 
801
    if(!(avahi_s_service_resolver_new(mc->server, interface,
 
802
                                       protocol, name, type, domain,
 
803
                                       AVAHI_PROTO_INET6, 0,
 
804
                                       resolve_callback, mc)))
 
805
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
 
806
              name, avahi_strerror(avahi_server_errno(mc->server)));
 
807
    break;
 
808
    
 
809
  case AVAHI_BROWSER_REMOVE:
 
810
    break;
 
811
    
 
812
  case AVAHI_BROWSER_ALL_FOR_NOW:
 
813
  case AVAHI_BROWSER_CACHE_EXHAUSTED:
 
814
    if(debug){
 
815
      fprintf(stderr, "No Mandos server found, still searching...\n");
 
816
    }
 
817
    break;
 
818
  }
 
819
}
 
820
 
 
821
int main(int argc, char *argv[]){
560
822
    AvahiSServiceBrowser *sb = NULL;
561
823
    int error;
562
824
    int ret;
563
 
    int returncode = EXIT_SUCCESS;
564
 
 
565
 
    while (true){
566
 
      static struct option long_options[] = {
567
 
        {"debug", no_argument, (int *)&debug, 1},
568
 
        {"interface", required_argument, 0, 'i'},
569
 
        {0, 0, 0, 0} };
570
 
 
571
 
      int option_index = 0;
572
 
      ret = getopt_long (argc, argv, "i:", long_options, &option_index);
573
 
 
574
 
      if (ret == -1){
575
 
        break;
576
 
      }
577
 
      
578
 
      switch(ret){
579
 
      case 0:
580
 
        break;
581
 
      case 'i':
582
 
        interface = optarg;
583
 
        break;
584
 
      default:
585
 
        exit(EXIT_FAILURE);
586
 
      }
587
 
    }
588
 
    
589
 
    if (not debug){
 
825
    intmax_t tmpmax;
 
826
    int numchars;
 
827
    int exitcode = EXIT_SUCCESS;
 
828
    const char *interface = "eth0";
 
829
    struct ifreq network;
 
830
    int sd;
 
831
    uid_t uid;
 
832
    gid_t gid;
 
833
    char *connect_to = NULL;
 
834
    char tempdir[] = "/tmp/mandosXXXXXX";
 
835
    AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
 
836
    const char *seckey = PATHDIR "/" SECKEY;
 
837
    const char *pubkey = PATHDIR "/" PUBKEY;
 
838
    
 
839
    mandos_context mc = { .simple_poll = NULL, .server = NULL,
 
840
                          .dh_bits = 1024, .priority = "SECURE256"
 
841
                          ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
842
    bool gnutls_initalized = false;
 
843
    bool gpgme_initalized = false;
 
844
    double delay = 2.5;
 
845
    
 
846
    {
 
847
      struct argp_option options[] = {
 
848
        { .name = "debug", .key = 128,
 
849
          .doc = "Debug mode", .group = 3 },
 
850
        { .name = "connect", .key = 'c',
 
851
          .arg = "ADDRESS:PORT",
 
852
          .doc = "Connect directly to a specific Mandos server",
 
853
          .group = 1 },
 
854
        { .name = "interface", .key = 'i',
 
855
          .arg = "NAME",
 
856
          .doc = "Interface that will be used to search for Mandos"
 
857
          " servers",
 
858
          .group = 1 },
 
859
        { .name = "seckey", .key = 's',
 
860
          .arg = "FILE",
 
861
          .doc = "OpenPGP secret key file base name",
 
862
          .group = 1 },
 
863
        { .name = "pubkey", .key = 'p',
 
864
          .arg = "FILE",
 
865
          .doc = "OpenPGP public key file base name",
 
866
          .group = 2 },
 
867
        { .name = "dh-bits", .key = 129,
 
868
          .arg = "BITS",
 
869
          .doc = "Bit length of the prime number used in the"
 
870
          " Diffie-Hellman key exchange",
 
871
          .group = 2 },
 
872
        { .name = "priority", .key = 130,
 
873
          .arg = "STRING",
 
874
          .doc = "GnuTLS priority string for the TLS handshake",
 
875
          .group = 1 },
 
876
        { .name = "delay", .key = 131,
 
877
          .arg = "SECONDS",
 
878
          .doc = "Maximum delay to wait for interface startup",
 
879
          .group = 2 },
 
880
        { .name = NULL }
 
881
      };
 
882
      
 
883
      error_t parse_opt(int key, char *arg,
 
884
                        struct argp_state *state) {
 
885
        switch(key) {
 
886
        case 128:               /* --debug */
 
887
          debug = true;
 
888
          break;
 
889
        case 'c':               /* --connect */
 
890
          connect_to = arg;
 
891
          break;
 
892
        case 'i':               /* --interface */
 
893
          interface = arg;
 
894
          break;
 
895
        case 's':               /* --seckey */
 
896
          seckey = arg;
 
897
          break;
 
898
        case 'p':               /* --pubkey */
 
899
          pubkey = arg;
 
900
          break;
 
901
        case 129:               /* --dh-bits */
 
902
          ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
903
          if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
 
904
             or arg[numchars] != '\0'){
 
905
            fprintf(stderr, "Bad number of DH bits\n");
 
906
            exit(EXIT_FAILURE);
 
907
          }
 
908
          mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
 
909
          break;
 
910
        case 130:               /* --priority */
 
911
          mc.priority = arg;
 
912
          break;
 
913
        case 131:               /* --delay */
 
914
          ret = sscanf(arg, "%lf%n", &delay, &numchars);
 
915
          if(ret < 1 or arg[numchars] != '\0'){
 
916
            fprintf(stderr, "Bad delay\n");
 
917
            exit(EXIT_FAILURE);
 
918
          }
 
919
          break;
 
920
        case ARGP_KEY_ARG:
 
921
          argp_usage(state);
 
922
        case ARGP_KEY_END:
 
923
          break;
 
924
        default:
 
925
          return ARGP_ERR_UNKNOWN;
 
926
        }
 
927
        return 0;
 
928
      }
 
929
      
 
930
      struct argp argp = { .options = options, .parser = parse_opt,
 
931
                           .args_doc = "",
 
932
                           .doc = "Mandos client -- Get and decrypt"
 
933
                           " passwords from a Mandos server" };
 
934
      ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
 
935
      if(ret == ARGP_ERR_UNKNOWN){
 
936
        fprintf(stderr, "Unknown error while parsing arguments\n");
 
937
        exitcode = EXIT_FAILURE;
 
938
        goto end;
 
939
      }
 
940
    }
 
941
    
 
942
    /* If the interface is down, bring it up */
 
943
    {
 
944
      // Lower kernel loglevel to KERN_NOTICE to avoid
 
945
      // KERN_INFO messages to mess up the prompt
 
946
      ret = klogctl(8, NULL, 5);
 
947
      if(ret == -1){
 
948
        perror("klogctl");
 
949
      }
 
950
 
 
951
      sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
 
952
      if(sd < 0) {
 
953
        perror("socket");
 
954
        exitcode = EXIT_FAILURE;
 
955
        ret = klogctl(7, NULL, 0);
 
956
        if(ret == -1){
 
957
          perror("klogctl");
 
958
        }
 
959
        goto end;
 
960
      }
 
961
      strcpy(network.ifr_name, interface);
 
962
      ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
963
      if(ret == -1){
 
964
        perror("ioctl SIOCGIFFLAGS");
 
965
        ret = klogctl(7, NULL, 0);
 
966
        if(ret == -1){
 
967
          perror("klogctl");
 
968
        }
 
969
        exitcode = EXIT_FAILURE;
 
970
        goto end;
 
971
      }
 
972
      if((network.ifr_flags & IFF_UP) == 0){
 
973
        network.ifr_flags |= IFF_UP;
 
974
        ret = ioctl(sd, SIOCSIFFLAGS, &network);
 
975
        if(ret == -1){
 
976
          perror("ioctl SIOCSIFFLAGS");
 
977
          exitcode = EXIT_FAILURE;
 
978
          ret = klogctl(7, NULL, 0);
 
979
          if(ret == -1){
 
980
            perror("klogctl");
 
981
          }
 
982
          goto end;
 
983
        }
 
984
      }
 
985
      // sleep checking until interface is running
 
986
      for(int i=0; i < delay * 4; i++){
 
987
        ret = ioctl(sd, SIOCGIFFLAGS, &network);
 
988
        if(ret == -1){
 
989
          perror("ioctl SIOCGIFFLAGS");
 
990
        } else if(network.ifr_flags & IFF_RUNNING){
 
991
          break;
 
992
        }
 
993
        struct timespec sleeptime = { .tv_nsec = 250000000 };
 
994
        nanosleep(&sleeptime, NULL);
 
995
      }
 
996
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
 
997
      if(ret == -1){
 
998
        perror("close");
 
999
      }
 
1000
      // Restores kernel loglevel to default
 
1001
      ret = klogctl(7, NULL, 0);
 
1002
      if(ret == -1){
 
1003
        perror("klogctl");
 
1004
      }
 
1005
    }
 
1006
    
 
1007
    uid = getuid();
 
1008
    gid = getgid();
 
1009
    
 
1010
    ret = setuid(uid);
 
1011
    if(ret == -1){
 
1012
      perror("setuid");
 
1013
    }
 
1014
    
 
1015
    setgid(gid);
 
1016
    if(ret == -1){
 
1017
      perror("setgid");
 
1018
    }
 
1019
    
 
1020
    ret = init_gnutls_global(&mc, pubkey, seckey);
 
1021
    if(ret == -1){
 
1022
      fprintf(stderr, "init_gnutls_global failed\n");
 
1023
      exitcode = EXIT_FAILURE;
 
1024
      goto end;
 
1025
    } else {
 
1026
      gnutls_initalized = true;
 
1027
    }
 
1028
    
 
1029
    if(mkdtemp(tempdir) == NULL){
 
1030
      perror("mkdtemp");
 
1031
      tempdir[0] = '\0';
 
1032
      goto end;
 
1033
    }
 
1034
    
 
1035
    if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
 
1036
      fprintf(stderr, "gpgme_initalized failed\n");
 
1037
      exitcode = EXIT_FAILURE;
 
1038
      goto end;
 
1039
    } else {
 
1040
      gpgme_initalized = true;
 
1041
    }
 
1042
    
 
1043
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
1044
    if(if_index == 0){
 
1045
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
 
1046
      exit(EXIT_FAILURE);
 
1047
    }
 
1048
    
 
1049
    if(connect_to != NULL){
 
1050
      /* Connect directly, do not use Zeroconf */
 
1051
      /* (Mainly meant for debugging) */
 
1052
      char *address = strrchr(connect_to, ':');
 
1053
      if(address == NULL){
 
1054
        fprintf(stderr, "No colon in address\n");
 
1055
        exitcode = EXIT_FAILURE;
 
1056
        goto end;
 
1057
      }
 
1058
      uint16_t port;
 
1059
      ret = sscanf(address+1, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
1060
      if(ret < 1 or tmpmax != (uint16_t)tmpmax
 
1061
         or address[numchars+1] != '\0'){
 
1062
        fprintf(stderr, "Bad port number\n");
 
1063
        exitcode = EXIT_FAILURE;
 
1064
        goto end;
 
1065
      }
 
1066
      port = (uint16_t)tmpmax;
 
1067
      *address = '\0';
 
1068
      address = connect_to;
 
1069
      ret = start_mandos_communication(address, port, if_index, &mc);
 
1070
      if(ret < 0){
 
1071
        exitcode = EXIT_FAILURE;
 
1072
      } else {
 
1073
        exitcode = EXIT_SUCCESS;
 
1074
      }
 
1075
      goto end;
 
1076
    }
 
1077
    
 
1078
    if(not debug){
590
1079
      avahi_set_log_function(empty_log);
591
1080
    }
592
1081
    
593
 
    /* Initialize the psuedo-RNG */
594
 
    srand(time(NULL));
595
 
 
596
 
    /* Allocate main loop object */
597
 
    if (!(simple_poll = avahi_simple_poll_new())) {
598
 
        fprintf(stderr, "Failed to create simple poll object.\n");
599
 
        
600
 
        goto exit;
601
 
    }
602
 
 
603
 
    /* Do not publish any local records */
604
 
    avahi_server_config_init(&config);
605
 
    config.publish_hinfo = 0;
606
 
    config.publish_addresses = 0;
607
 
    config.publish_workstation = 0;
608
 
    config.publish_domain = 0;
609
 
 
610
 
    /* Allocate a new server */
611
 
    server = avahi_server_new(avahi_simple_poll_get(simple_poll), &config, NULL, NULL, &error);
612
 
 
613
 
    /* Free the configuration data */
614
 
    avahi_server_config_free(&config);
615
 
 
616
 
    /* Check if creating the server object succeeded */
617
 
    if (!server) {
618
 
        fprintf(stderr, "Failed to create server: %s\n", avahi_strerror(error));
619
 
        returncode = EXIT_FAILURE;
620
 
        goto exit;
621
 
    }
622
 
    
623
 
    /* Create the service browser */
624
 
    if (!(sb = avahi_s_service_browser_new(server, if_nametoindex("eth0"), AVAHI_PROTO_INET6, "_mandos._tcp", NULL, 0, browse_callback, server))) {
625
 
        fprintf(stderr, "Failed to create service browser: %s\n", avahi_strerror(avahi_server_errno(server)));
626
 
        returncode = EXIT_FAILURE;
627
 
        goto exit;
 
1082
    /* Initialize the pseudo-RNG for Avahi */
 
1083
    srand((unsigned int) time(NULL));
 
1084
    
 
1085
    /* Allocate main Avahi loop object */
 
1086
    mc.simple_poll = avahi_simple_poll_new();
 
1087
    if(mc.simple_poll == NULL) {
 
1088
        fprintf(stderr, "Avahi: Failed to create simple poll"
 
1089
                " object.\n");
 
1090
        exitcode = EXIT_FAILURE;
 
1091
        goto end;
 
1092
    }
 
1093
    
 
1094
    {
 
1095
      AvahiServerConfig config;
 
1096
      /* Do not publish any local Zeroconf records */
 
1097
      avahi_server_config_init(&config);
 
1098
      config.publish_hinfo = 0;
 
1099
      config.publish_addresses = 0;
 
1100
      config.publish_workstation = 0;
 
1101
      config.publish_domain = 0;
 
1102
      
 
1103
      /* Allocate a new server */
 
1104
      mc.server = avahi_server_new(avahi_simple_poll_get
 
1105
                                   (mc.simple_poll), &config, NULL,
 
1106
                                   NULL, &error);
 
1107
      
 
1108
      /* Free the Avahi configuration data */
 
1109
      avahi_server_config_free(&config);
 
1110
    }
 
1111
    
 
1112
    /* Check if creating the Avahi server object succeeded */
 
1113
    if(mc.server == NULL) {
 
1114
        fprintf(stderr, "Failed to create Avahi server: %s\n",
 
1115
                avahi_strerror(error));
 
1116
        exitcode = EXIT_FAILURE;
 
1117
        goto end;
 
1118
    }
 
1119
    
 
1120
    /* Create the Avahi service browser */
 
1121
    sb = avahi_s_service_browser_new(mc.server, if_index,
 
1122
                                     AVAHI_PROTO_INET6,
 
1123
                                     "_mandos._tcp", NULL, 0,
 
1124
                                     browse_callback, &mc);
 
1125
    if(sb == NULL) {
 
1126
        fprintf(stderr, "Failed to create service browser: %s\n",
 
1127
                avahi_strerror(avahi_server_errno(mc.server)));
 
1128
        exitcode = EXIT_FAILURE;
 
1129
        goto end;
628
1130
    }
629
1131
    
630
1132
    /* Run the main loop */
631
 
 
632
 
    if (debug){
633
 
      fprintf(stderr, "Starting avahi loop search\n");
 
1133
    
 
1134
    if(debug){
 
1135
      fprintf(stderr, "Starting Avahi loop search\n");
634
1136
    }
635
 
    
636
 
    avahi_simple_poll_loop(simple_poll);
637
 
    
638
 
exit:
639
1137
 
640
 
    if (debug){
 
1138
    avahi_simple_poll_loop(mc.simple_poll);
 
1139
    
 
1140
 end:
 
1141
    
 
1142
    if(debug){
641
1143
      fprintf(stderr, "%s exiting\n", argv[0]);
642
1144
    }
643
1145
    
644
1146
    /* Cleanup things */
645
 
    if (sb)
 
1147
    if(sb != NULL)
646
1148
        avahi_s_service_browser_free(sb);
647
1149
    
648
 
    if (server)
649
 
        avahi_server_free(server);
650
 
 
651
 
    if (simple_poll)
652
 
        avahi_simple_poll_free(simple_poll);
653
 
 
654
 
    return returncode;
 
1150
    if(mc.server != NULL)
 
1151
        avahi_server_free(mc.server);
 
1152
    
 
1153
    if(mc.simple_poll != NULL)
 
1154
        avahi_simple_poll_free(mc.simple_poll);
 
1155
    
 
1156
    if(gnutls_initalized){
 
1157
      gnutls_certificate_free_credentials(mc.cred);
 
1158
      gnutls_global_deinit();
 
1159
      gnutls_dh_params_deinit(mc.dh_params);
 
1160
    }
 
1161
    
 
1162
    if(gpgme_initalized){
 
1163
      gpgme_release(mc.ctx);
 
1164
    }
 
1165
    
 
1166
    /* Removes the temp directory used by GPGME */
 
1167
    if(tempdir[0] != '\0'){
 
1168
      DIR *d;
 
1169
      struct dirent *direntry;
 
1170
      d = opendir(tempdir);
 
1171
      if(d == NULL){
 
1172
        if(errno != ENOENT){
 
1173
          perror("opendir");
 
1174
        }
 
1175
      } else {
 
1176
        while(true){
 
1177
          direntry = readdir(d);
 
1178
          if(direntry == NULL){
 
1179
            break;
 
1180
          }
 
1181
          if(direntry->d_type == DT_REG){
 
1182
            char *fullname = NULL;
 
1183
            ret = asprintf(&fullname, "%s/%s", tempdir,
 
1184
                           direntry->d_name);
 
1185
            if(ret < 0){
 
1186
              perror("asprintf");
 
1187
              continue;
 
1188
            }
 
1189
            ret = unlink(fullname);
 
1190
            if(ret == -1){
 
1191
              fprintf(stderr, "unlink(\"%s\"): %s",
 
1192
                      fullname, strerror(errno));
 
1193
            }
 
1194
            free(fullname);
 
1195
          }
 
1196
        }
 
1197
        closedir(d);
 
1198
      }
 
1199
      ret = rmdir(tempdir);
 
1200
      if(ret == -1 and errno != ENOENT){
 
1201
        perror("rmdir");
 
1202
      }
 
1203
    }
 
1204
          
 
1205
    return exitcode;
655
1206
}