33
32
#define _LARGEFILE_SOURCE
34
33
#define _FILE_OFFSET_BITS 64
36
#define _GNU_SOURCE /* TEMP_FAILURE_RETRY(), asprintf() */
35
#define _GNU_SOURCE /* TEMP_FAILURE_RETRY() */
38
#include <stdio.h> /* fprintf(), stderr, fwrite(),
37
#include <stdio.h> /* fprintf(), stderr, fwrite(), stdout, ferror() */
40
38
#include <stdint.h> /* uint16_t, uint32_t */
41
39
#include <stddef.h> /* NULL, size_t, ssize_t */
42
#include <stdlib.h> /* free(), EXIT_SUCCESS, EXIT_FAILURE,
40
#include <stdlib.h> /* free() */
44
41
#include <stdbool.h> /* bool, true */
45
#include <string.h> /* memset(), strcmp(), strlen(),
46
strerror(), asprintf(), strcpy() */
47
#include <sys/ioctl.h> /* ioctl */
42
#include <string.h> /* memset(), strcmp(), strlen, strerror() */
43
#include <sys/ioctl.h> /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
48
45
#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(), DIR */
52
#include <sys/stat.h> /* open() */
46
sockaddr_in6, PF_INET6, SOCK_STREAM, INET6_ADDRSTRLEN */
53
47
#include <sys/socket.h> /* socket(), struct sockaddr_in6,
54
48
struct in6_addr, inet_pton(),
56
#include <fcntl.h> /* open() */
57
#include <dirent.h> /* opendir(), struct dirent, readdir() */
58
#include <inttypes.h> /* PRIu16 */
59
#include <assert.h> /* assert() */
60
#include <errno.h> /* perror(), errno */
61
#include <time.h> /* time() */
51
#include <errno.h> /* perror() */
62
53
#include <net/if.h> /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
63
54
SIOCSIFFLAGS, if_indextoname(),
64
55
if_nametoindex(), IF_NAMESIZE */
56
#include <unistd.h> /* close(), SEEK_SET, off_t, write()*/
65
57
#include <netinet/in.h>
66
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
67
getuid(), getgid(), setuid(),
69
58
#include <arpa/inet.h> /* inet_pton(), htons */
70
#include <iso646.h> /* not, and */
71
#include <argp.h> /* struct argp_option, error_t, struct
72
argp_state, struct argp,
73
argp_parse(), ARGP_KEY_ARG,
74
ARGP_KEY_END, ARGP_ERR_UNKNOWN */
59
#include <iso646.h> /* not */
60
#include <argp.h> /* struct argp_option,
61
struct argp_state, struct argp,
77
/* All Avahi types, constants and functions
80
#include <avahi-core/core.h>
65
#include <avahi-core/core.h> /* AvahiSimplePoll, AvahiServer,
81
67
#include <avahi-core/lookup.h>
82
#include <avahi-core/log.h>
68
#include <avahi-core/log.h> /* AvahiLogLevel */
83
69
#include <avahi-common/simple-watch.h>
84
70
#include <avahi-common/malloc.h>
85
71
#include <avahi-common/error.h>
88
#include <gnutls/gnutls.h> /* All GnuTLS types, constants and
74
#include <gnutls/gnutls.h> /* gnutls_certificate_credentials_t,
78
gnutls_global_set_log_level(),
79
gnutls_global_set_log_function(),
80
gnutls_certificate_allocate_credentials(),
81
gnutls_global_deinit(),
82
gnutls_dh_params_init(),
83
gnutls_dh_params_generate(),
84
gnutls_certificate_set_dh_params(),
85
gnutls_certificate_free_credentials(),
86
gnutls_session_t, gnutls_init(),
87
gnutls_priority_set_direct(),
89
gnutls_credentials_set(),
90
gnutls_certificate_server_set_request(),
91
gnutls_dh_set_prime_bits(),
92
gnutls_transport_set_ptr(),
93
gnutls_transport_ptr_t,
96
gnutls_perror(), gnutls_bye(),
91
97
init_gnutls_session(),
93
#include <gnutls/openpgp.h> /* gnutls_certificate_set_openpgp_key_file(),
94
GNUTLS_OPENPGP_FMT_BASE64 */
99
GNUTLS_CRD_CERTIFICATE,
101
GNUTLS_E_INTERRUPTED,
103
GNUTLS_E_REHANDSHAKE,
105
#include <gnutls/openpgp.h> /* gnutls_certificate_set_openpgp_key_file(),
106
GNUTLS_OPENPGP_FMT_BASE64 */
97
#include <gpgme.h> /* All GPGME types, constants and
109
#include <gpgme.h> /* gpgme_data_t, gpgme_ctx_t,
110
gpgme_error_t, gpgme_engine_info_t,
111
gpgme_check_version(),
112
gpgme_engine_check_version(),
115
gpgme_get_engine_info(),
116
gpgme_set_engine_info(),
117
gpgme_data_new_from_mem(),
118
gpgme_data_new(), gpgme_new(),
120
gpgme_decrypt_result_t,
121
gpgme_op_decrypt_result(),
123
gpgme_pubkey_algo_name(),
100
127
GPGME_PROTOCOL_OpenPGP,
129
GPG_ERR_NO_SECKEY, */
103
131
#define BUFFER_SIZE 256
105
#define PATHDIR "/conf/conf.d/mandos"
106
#define SECKEY "seckey.txt"
107
#define PUBKEY "pubkey.txt"
109
133
bool debug = false;
134
static const char *keydir = "/conf/conf.d/mandos";
110
135
static const char mandos_protocol_version[] = "1";
111
const char *argp_program_version = "mandos-client " VERSION;
136
const char *argp_program_version = "mandosclient 0.9";
112
137
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
114
139
/* Used for passing in values through the Avahi callback functions */
167
* Decrypt OpenPGP data using keyrings in HOMEDIR.
168
* Returns -1 on error
145
static bool init_gpgme(mandos_context *mc, const char *seckey,
146
const char *pubkey, const char *tempdir){
170
static ssize_t pgp_packet_decrypt (const char *cryptotext,
173
const char *homedir){
174
gpgme_data_t dh_crypto, dh_plain;
148
176
gpgme_error_t rc;
178
size_t plaintext_capacity = 0;
179
ssize_t plaintext_length = 0;
149
180
gpgme_engine_info_t engine_info;
153
* Helper function to insert pub and seckey to the enigne keyring.
155
bool import_key(const char *filename){
157
gpgme_data_t pgp_data;
159
fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
165
rc = gpgme_data_new_from_fd(&pgp_data, fd);
166
if (rc != GPG_ERR_NO_ERROR){
167
fprintf(stderr, "bad gpgme_data_new_from_fd: %s: %s\n",
168
gpgme_strsource(rc), gpgme_strerror(rc));
172
rc = gpgme_op_import(mc->ctx, pgp_data);
173
if (rc != GPG_ERR_NO_ERROR){
174
fprintf(stderr, "bad gpgme_op_import: %s: %s\n",
175
gpgme_strsource(rc), gpgme_strerror(rc));
179
ret = (int)TEMP_FAILURE_RETRY(close(fd));
183
gpgme_data_release(pgp_data);
188
fprintf(stderr, "Initialize gpgme\n");
183
fprintf(stderr, "Trying to decrypt OpenPGP data\n");
194
189
if (rc != GPG_ERR_NO_ERROR){
195
190
fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
196
191
gpgme_strsource(rc), gpgme_strerror(rc));
200
/* Set GPGME home directory for the OpenPGP engine only */
195
/* Set GPGME home directory for the OpenPGP engine only */
201
196
rc = gpgme_get_engine_info (&engine_info);
202
197
if (rc != GPG_ERR_NO_ERROR){
203
198
fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
204
199
gpgme_strsource(rc), gpgme_strerror(rc));
207
202
while(engine_info != NULL){
208
203
if(engine_info->protocol == GPGME_PROTOCOL_OpenPGP){
209
204
gpgme_set_engine_info(GPGME_PROTOCOL_OpenPGP,
210
engine_info->file_name, tempdir);
205
engine_info->file_name, homedir);
213
208
engine_info = engine_info->next;
215
210
if(engine_info == NULL){
216
fprintf(stderr, "Could not set GPGME home dir to %s\n", tempdir);
220
/* Create new GPGME "context" */
221
rc = gpgme_new(&(mc->ctx));
222
if (rc != GPG_ERR_NO_ERROR){
223
fprintf(stderr, "bad gpgme_new: %s: %s\n",
224
gpgme_strsource(rc), gpgme_strerror(rc));
228
if (not import_key(pubkey) or not import_key(seckey)){
236
* Decrypt OpenPGP data.
237
* Returns -1 on error
239
static ssize_t pgp_packet_decrypt (const mandos_context *mc,
240
const char *cryptotext,
243
gpgme_data_t dh_crypto, dh_plain;
246
size_t plaintext_capacity = 0;
247
ssize_t plaintext_length = 0;
250
fprintf(stderr, "Trying to decrypt OpenPGP data\n");
211
fprintf(stderr, "Could not set GPGME home dir to %s\n", homedir);
253
215
/* Create new GPGME data buffer from memory cryptotext */
233
/* Create new GPGME "context" */
234
rc = gpgme_new(&ctx);
235
if (rc != GPG_ERR_NO_ERROR){
236
fprintf(stderr, "bad gpgme_new: %s: %s\n",
237
gpgme_strsource(rc), gpgme_strerror(rc));
238
plaintext_length = -1;
271
242
/* Decrypt data from the cryptotext data buffer to the plaintext
273
rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
244
rc = gpgme_op_decrypt(ctx, dh_crypto, dh_plain);
274
245
if (rc != GPG_ERR_NO_ERROR){
275
246
fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
276
247
gpgme_strsource(rc), gpgme_strerror(rc));
277
248
plaintext_length = -1;
279
gpgme_decrypt_result_t result;
280
result = gpgme_op_decrypt_result(mc->ctx);
282
fprintf(stderr, "gpgme_op_decrypt_result failed\n");
284
fprintf(stderr, "Unsupported algorithm: %s\n",
285
result->unsupported_algorithm);
286
fprintf(stderr, "Wrong key usage: %u\n",
287
result->wrong_key_usage);
288
if(result->file_name != NULL){
289
fprintf(stderr, "File name: %s\n", result->file_name);
291
gpgme_recipient_t recipient;
292
recipient = result->recipients;
294
while(recipient != NULL){
295
fprintf(stderr, "Public key algorithm: %s\n",
296
gpgme_pubkey_algo_name(recipient->pubkey_algo));
297
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
298
fprintf(stderr, "Secret key available: %s\n",
299
recipient->status == GPG_ERR_NO_SECKEY
301
recipient = recipient->next;
306
249
goto decrypt_end;
310
253
fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
257
gpgme_decrypt_result_t result;
258
result = gpgme_op_decrypt_result(ctx);
260
fprintf(stderr, "gpgme_op_decrypt_result failed\n");
262
fprintf(stderr, "Unsupported algorithm: %s\n",
263
result->unsupported_algorithm);
264
fprintf(stderr, "Wrong key usage: %d\n",
265
result->wrong_key_usage);
266
if(result->file_name != NULL){
267
fprintf(stderr, "File name: %s\n", result->file_name);
269
gpgme_recipient_t recipient;
270
recipient = result->recipients;
272
while(recipient != NULL){
273
fprintf(stderr, "Public key algorithm: %s\n",
274
gpgme_pubkey_algo_name(recipient->pubkey_algo));
275
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
276
fprintf(stderr, "Secret key available: %s\n",
277
recipient->status == GPG_ERR_NO_SECKEY
279
recipient = recipient->next;
313
285
/* Seek back to the beginning of the GPGME plaintext data buffer */
314
286
if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
315
perror("gpgme_data_seek");
287
perror("pgpme_data_seek");
316
288
plaintext_length = -1;
317
289
goto decrypt_end;
401
373
/* OpenPGP credentials */
402
gnutls_certificate_allocate_credentials(&mc->cred);
403
if (ret != GNUTLS_E_SUCCESS){
404
fprintf (stderr, "GnuTLS memory error: %s\n", /* Spurious
374
if ((ret = gnutls_certificate_allocate_credentials (&mc->cred))
375
!= GNUTLS_E_SUCCESS) {
376
fprintf (stderr, "GnuTLS memory error: %s\n",
406
377
safer_gnutls_strerror(ret));
407
378
gnutls_global_deinit ();
412
fprintf(stderr, "Attempting to use OpenPGP public key %s and"
413
" secret key %s as GnuTLS credentials\n", pubkeyfilename,
383
fprintf(stderr, "Attempting to use OpenPGP certificate %s"
384
" and keyfile %s as GnuTLS credentials\n", pubkeyfile,
417
388
ret = gnutls_certificate_set_openpgp_key_file
418
(mc->cred, pubkeyfilename, seckeyfilename,
419
GNUTLS_OPENPGP_FMT_BASE64);
389
(mc->cred, pubkeyfile, seckeyfile, GNUTLS_OPENPGP_FMT_BASE64);
420
390
if (ret != GNUTLS_E_SUCCESS) {
422
392
"Error[%d] while reading the OpenPGP key pair ('%s',"
423
" '%s')\n", ret, pubkeyfilename, seckeyfilename);
424
fprintf(stderr, "The GnuTLS error is: %s\n",
393
" '%s')\n", ret, pubkeyfile, seckeyfile);
394
fprintf(stdout, "The GnuTLS error is: %s\n",
425
395
safer_gnutls_strerror(ret));
822
802
char *connect_to = NULL;
823
char tempdir[] = "/tmp/mandosXXXXXX";
824
803
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
825
const char *seckey = PATHDIR "/" SECKEY;
826
const char *pubkey = PATHDIR "/" PUBKEY;
804
const char *pubkeyfile = "pubkey.txt";
805
const char *seckeyfile = "seckey.txt";
828
806
mandos_context mc = { .simple_poll = NULL, .server = NULL,
829
.dh_bits = 1024, .priority = "SECURE256"
830
":!CTYPE-X.509:+CTYPE-OPENPGP" };
807
.dh_bits = 1024, .priority = "SECURE256"};
831
808
bool gnutls_initalized = false;
832
bool gpgme_initalized = false;
835
811
struct argp_option options[] = {
836
812
{ .name = "debug", .key = 128,
837
813
.doc = "Debug mode", .group = 3 },
838
814
{ .name = "connect", .key = 'c',
839
.arg = "ADDRESS:PORT",
840
.doc = "Connect directly to a specific Mandos server",
816
.doc = "Connect directly to a sepcified mandos server",
842
818
{ .name = "interface", .key = 'i',
844
.doc = "Interface that will be used to search for Mandos"
820
.doc = "Interface that Avahi will conntect through",
822
{ .name = "keydir", .key = 'd',
824
.doc = "Directory where the openpgp keyring is",
847
826
{ .name = "seckey", .key = 's',
849
.doc = "OpenPGP secret key file base name",
828
.doc = "Secret openpgp key for gnutls authentication",
851
830
{ .name = "pubkey", .key = 'p',
853
.doc = "OpenPGP public key file base name",
832
.doc = "Public openpgp key for gnutls authentication",
855
834
{ .name = "dh-bits", .key = 129,
857
.doc = "Bit length of the prime number used in the"
858
" Diffie-Hellman key exchange",
836
.doc = "dh-bits to use in gnutls communication",
860
838
{ .name = "priority", .key = 130,
862
.doc = "GnuTLS priority string for the TLS handshake",
840
.doc = "GNUTLS priority", .group = 1 },
867
845
error_t parse_opt (int key, char *arg,
868
846
struct argp_state *state) {
869
847
/* Get the INPUT argument from `argp_parse', which we know is
870
848
a pointer to our plugin list pointer. */
872
case 128: /* --debug */
875
case 'c': /* --connect */
876
854
connect_to = arg;
878
case 'i': /* --interface */
881
case 's': /* --seckey */
884
case 'p': /* --pubkey */
887
case 129: /* --dh-bits */
889
870
mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
892
873
exit(EXIT_FAILURE);
895
case 130: /* --priority */
896
877
mc.priority = arg;
898
879
case ARGP_KEY_ARG:
899
880
argp_usage (state);
903
885
return ARGP_ERR_UNKNOWN;
908
890
struct argp argp = { .options = options, .parser = parse_opt,
910
892
.doc = "Mandos client -- Get and decrypt"
911
" passwords from a Mandos server" };
912
ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
913
if (ret == ARGP_ERR_UNKNOWN){
914
fprintf(stderr, "Unknown error while parsing arguments\n");
915
exitcode = EXIT_FAILURE;
920
/* If the interface is down, bring it up */
922
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
925
exitcode = EXIT_FAILURE;
928
strcpy(network.ifr_name, interface);
929
ret = ioctl(sd, SIOCGIFFLAGS, &network);
931
perror("ioctl SIOCGIFFLAGS");
932
exitcode = EXIT_FAILURE;
935
if((network.ifr_flags & IFF_UP) == 0){
936
network.ifr_flags |= IFF_UP;
937
ret = ioctl(sd, SIOCSIFFLAGS, &network);
939
perror("ioctl SIOCSIFFLAGS");
940
exitcode = EXIT_FAILURE;
944
ret = (int)TEMP_FAILURE_RETRY(close(sd));
893
" passwords from mandos server" };
894
argp_parse (&argp, argc, argv, 0, 0, NULL);
897
pubkeyfile = combinepath(keydir, pubkeyfile);
898
if (pubkeyfile == NULL){
899
perror("combinepath");
900
exitcode = EXIT_FAILURE;
904
seckeyfile = combinepath(keydir, seckeyfile);
905
if (seckeyfile == NULL){
906
perror("combinepath");
910
ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
912
fprintf(stderr, "init_gnutls_global\n");
915
gnutls_initalized = true;
953
921
ret = setuid(uid);
955
923
perror("setuid");