47
49
#include <sys/types.h> /* socket(), inet_pton(), sockaddr,
48
50
sockaddr_in6, PF_INET6,
49
51
SOCK_STREAM, INET6_ADDRSTRLEN,
51
#include <inttypes.h> /* PRIu16 */
52
uid_t, gid_t, open(), opendir(),
54
#include <sys/stat.h> /* open() */
52
55
#include <sys/socket.h> /* socket(), struct sockaddr_in6,
53
56
struct in6_addr, inet_pton(),
58
#include <fcntl.h> /* open() */
59
#include <dirent.h> /* opendir(), struct dirent, readdir()
61
#include <inttypes.h> /* PRIu16, intmax_t, SCNdMAX */
55
62
#include <assert.h> /* assert() */
56
63
#include <errno.h> /* perror(), errno */
57
64
#include <time.h> /* time() */
58
65
#include <net/if.h> /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
59
66
SIOCSIFFLAGS, if_indextoname(),
60
67
if_nametoindex(), IF_NAMESIZE */
68
#include <netinet/in.h>
61
69
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
62
70
getuid(), getgid(), setuid(),
64
#include <netinet/in.h>
65
72
#include <arpa/inet.h> /* inet_pton(), htons */
66
#include <iso646.h> /* not, and */
73
#include <iso646.h> /* not, and, or */
67
74
#include <argp.h> /* struct argp_option, error_t, struct
68
75
argp_state, struct argp,
69
76
argp_parse(), ARGP_KEY_ARG,
135
* Decrypt OpenPGP data using keyrings in HOMEDIR.
136
* Returns -1 on error
138
static ssize_t pgp_packet_decrypt (const char *cryptotext,
141
const char *homedir){
142
gpgme_data_t dh_crypto, dh_plain;
149
static bool init_gpgme(mandos_context *mc, const char *seckey,
150
const char *pubkey, const char *tempdir){
144
152
gpgme_error_t rc;
146
size_t plaintext_capacity = 0;
147
ssize_t plaintext_length = 0;
148
153
gpgme_engine_info_t engine_info;
151
fprintf(stderr, "Trying to decrypt OpenPGP data\n");
157
* Helper function to insert pub and seckey to the enigne keyring.
159
bool import_key(const char *filename){
161
gpgme_data_t pgp_data;
163
fd = (int)TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
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));
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));
183
ret = (int)TEMP_FAILURE_RETRY(close(fd));
187
gpgme_data_release(pgp_data);
192
fprintf(stderr, "Initialize gpgme\n");
155
196
gpgme_check_version(NULL);
156
197
rc = gpgme_engine_check_version(GPGME_PROTOCOL_OpenPGP);
157
if (rc != GPG_ERR_NO_ERROR){
198
if(rc != GPG_ERR_NO_ERROR){
158
199
fprintf(stderr, "bad gpgme_engine_check_version: %s: %s\n",
159
200
gpgme_strsource(rc), gpgme_strerror(rc));
163
/* Set GPGME home directory for the OpenPGP engine only */
164
rc = gpgme_get_engine_info (&engine_info);
165
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){
166
207
fprintf(stderr, "bad gpgme_get_engine_info: %s: %s\n",
167
208
gpgme_strsource(rc), gpgme_strerror(rc));
170
211
while(engine_info != NULL){
171
212
if(engine_info->protocol == GPGME_PROTOCOL_OpenPGP){
172
213
gpgme_set_engine_info(GPGME_PROTOCOL_OpenPGP,
173
engine_info->file_name, homedir);
214
engine_info->file_name, tempdir);
176
217
engine_info = engine_info->next;
178
219
if(engine_info == NULL){
179
fprintf(stderr, "Could not set GPGME home dir to %s\n", homedir);
220
fprintf(stderr, "Could not set GPGME home dir to %s\n", tempdir);
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));
232
if(not import_key(pubkey) or not import_key(seckey)){
240
* Decrypt OpenPGP data.
241
* Returns -1 on error
243
static ssize_t pgp_packet_decrypt(const mandos_context *mc,
244
const char *cryptotext,
247
gpgme_data_t dh_crypto, dh_plain;
250
size_t plaintext_capacity = 0;
251
ssize_t plaintext_length = 0;
254
fprintf(stderr, "Trying to decrypt OpenPGP data\n");
183
257
/* Create new GPGME data buffer from memory cryptotext */
184
258
rc = gpgme_data_new_from_mem(&dh_crypto, cryptotext, crypto_size,
186
if (rc != GPG_ERR_NO_ERROR){
260
if(rc != GPG_ERR_NO_ERROR){
187
261
fprintf(stderr, "bad gpgme_data_new_from_mem: %s: %s\n",
188
262
gpgme_strsource(rc), gpgme_strerror(rc));
192
266
/* Create new empty GPGME data buffer for the plaintext */
193
267
rc = gpgme_data_new(&dh_plain);
194
if (rc != GPG_ERR_NO_ERROR){
268
if(rc != GPG_ERR_NO_ERROR){
195
269
fprintf(stderr, "bad gpgme_data_new: %s: %s\n",
196
270
gpgme_strsource(rc), gpgme_strerror(rc));
197
271
gpgme_data_release(dh_crypto);
201
/* Create new GPGME "context" */
202
rc = gpgme_new(&ctx);
203
if (rc != GPG_ERR_NO_ERROR){
204
fprintf(stderr, "bad gpgme_new: %s: %s\n",
205
gpgme_strsource(rc), gpgme_strerror(rc));
206
plaintext_length = -1;
210
275
/* Decrypt data from the cryptotext data buffer to the plaintext
212
rc = gpgme_op_decrypt(ctx, dh_crypto, dh_plain);
213
if (rc != GPG_ERR_NO_ERROR){
277
rc = gpgme_op_decrypt(mc->ctx, dh_crypto, dh_plain);
278
if(rc != GPG_ERR_NO_ERROR){
214
279
fprintf(stderr, "bad gpgme_op_decrypt: %s: %s\n",
215
280
gpgme_strsource(rc), gpgme_strerror(rc));
216
281
plaintext_length = -1;
283
gpgme_decrypt_result_t result;
284
result = gpgme_op_decrypt_result(mc->ctx);
286
fprintf(stderr, "gpgme_op_decrypt_result failed\n");
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);
295
gpgme_recipient_t recipient;
296
recipient = result->recipients;
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
305
recipient = recipient->next;
217
310
goto decrypt_end;
221
314
fprintf(stderr, "Decryption of OpenPGP data succeeded\n");
225
gpgme_decrypt_result_t result;
226
result = gpgme_op_decrypt_result(ctx);
228
fprintf(stderr, "gpgme_op_decrypt_result failed\n");
230
fprintf(stderr, "Unsupported algorithm: %s\n",
231
result->unsupported_algorithm);
232
fprintf(stderr, "Wrong key usage: %u\n",
233
result->wrong_key_usage);
234
if(result->file_name != NULL){
235
fprintf(stderr, "File name: %s\n", result->file_name);
237
gpgme_recipient_t recipient;
238
recipient = result->recipients;
240
while(recipient != NULL){
241
fprintf(stderr, "Public key algorithm: %s\n",
242
gpgme_pubkey_algo_name(recipient->pubkey_algo));
243
fprintf(stderr, "Key ID: %s\n", recipient->keyid);
244
fprintf(stderr, "Secret key available: %s\n",
245
recipient->status == GPG_ERR_NO_SECKEY
247
recipient = recipient->next;
253
317
/* Seek back to the beginning of the GPGME plaintext data buffer */
254
if (gpgme_data_seek(dh_plain, (off_t) 0, SEEK_SET) == -1){
255
perror("pgpme_data_seek");
318
if(gpgme_data_seek(dh_plain, (off_t)0, SEEK_SET) == -1){
319
perror("gpgme_data_seek");
256
320
plaintext_length = -1;
257
321
goto decrypt_end;
341
406
/* OpenPGP credentials */
342
407
gnutls_certificate_allocate_credentials(&mc->cred);
343
if (ret != GNUTLS_E_SUCCESS){
344
fprintf (stderr, "GnuTLS memory error: %s\n", /* Spurious
346
safer_gnutls_strerror(ret));
347
gnutls_global_deinit ();
408
if(ret != GNUTLS_E_SUCCESS){
409
fprintf(stderr, "GnuTLS memory error: %s\n", /* Spurious warning
413
safer_gnutls_strerror(ret));
414
gnutls_global_deinit();
352
fprintf(stderr, "Attempting to use OpenPGP certificate %s"
353
" and keyfile %s as GnuTLS credentials\n", pubkeyfilename,
419
fprintf(stderr, "Attempting to use OpenPGP public key %s and"
420
" secret key %s as GnuTLS credentials\n", pubkeyfilename,
357
424
ret = gnutls_certificate_set_openpgp_key_file
358
425
(mc->cred, pubkeyfilename, seckeyfilename,
359
426
GNUTLS_OPENPGP_FMT_BASE64);
360
if (ret != GNUTLS_E_SUCCESS) {
427
if(ret != GNUTLS_E_SUCCESS) {
362
429
"Error[%d] while reading the OpenPGP key pair ('%s',"
363
430
" '%s')\n", ret, pubkeyfilename, seckeyfilename);
364
fprintf(stdout, "The GnuTLS error is: %s\n",
431
fprintf(stderr, "The GnuTLS error is: %s\n",
365
432
safer_gnutls_strerror(ret));
369
436
/* GnuTLS server initialization */
370
437
ret = gnutls_dh_params_init(&mc->dh_params);
371
if (ret != GNUTLS_E_SUCCESS) {
372
fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
373
" %s\n", safer_gnutls_strerror(ret));
438
if(ret != GNUTLS_E_SUCCESS) {
439
fprintf(stderr, "Error in GnuTLS DH parameter initialization:"
440
" %s\n", safer_gnutls_strerror(ret));
376
443
ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
377
if (ret != GNUTLS_E_SUCCESS) {
378
fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
379
safer_gnutls_strerror(ret));
444
if(ret != GNUTLS_E_SUCCESS) {
445
fprintf(stderr, "Error in GnuTLS prime generation: %s\n",
446
safer_gnutls_strerror(ret));
383
450
gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
389
456
gnutls_certificate_free_credentials(mc->cred);
390
457
gnutls_global_deinit();
458
gnutls_dh_params_deinit(mc->dh_params);
395
462
static int init_gnutls_session(mandos_context *mc,
407
474
ret = gnutls_priority_set_direct(*session, mc->priority, &err);
408
if (ret != GNUTLS_E_SUCCESS) {
475
if(ret != GNUTLS_E_SUCCESS) {
409
476
fprintf(stderr, "Syntax error at: %s\n", err);
410
477
fprintf(stderr, "GnuTLS error: %s\n",
411
478
safer_gnutls_strerror(ret));
412
gnutls_deinit (*session);
479
gnutls_deinit(*session);
417
484
ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
419
if (ret != GNUTLS_E_SUCCESS) {
486
if(ret != GNUTLS_E_SUCCESS) {
420
487
fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
421
488
safer_gnutls_strerror(ret));
422
gnutls_deinit (*session);
489
gnutls_deinit(*session);
426
493
/* ignore client certificate if any. */
427
gnutls_certificate_server_set_request (*session,
494
gnutls_certificate_server_set_request(*session,
430
gnutls_dh_set_prime_bits (*session, mc->dh_bits);
497
gnutls_dh_set_prime_bits(*session, mc->dh_bits);
562
632
fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
567
637
buffer_capacity = adjustbuffer(&buffer, buffer_length,
568
638
buffer_capacity);
569
if (buffer_capacity == 0){
639
if(buffer_capacity == 0){
570
640
perror("adjustbuffer");
575
ret = gnutls_record_recv(session, buffer+buffer_length,
645
sret = gnutls_record_recv(session, buffer+buffer_length,
582
652
case GNUTLS_E_INTERRUPTED:
583
653
case GNUTLS_E_AGAIN:
585
655
case GNUTLS_E_REHANDSHAKE:
587
ret = gnutls_handshake (session);
657
ret = gnutls_handshake(session);
588
658
} while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
590
660
fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
609
679
fprintf(stderr, "Closing TLS session\n");
612
gnutls_bye (session, GNUTLS_SHUT_RDWR);
682
gnutls_bye(session, GNUTLS_SHUT_RDWR);
614
if (buffer_length > 0){
615
decrypted_buffer_size = pgp_packet_decrypt(buffer,
684
if(buffer_length > 0){
685
decrypted_buffer_size = pgp_packet_decrypt(mc, buffer,
619
if (decrypted_buffer_size >= 0){
688
if(decrypted_buffer_size >= 0){
621
690
while(written < (size_t) decrypted_buffer_size){
622
ret = (int)fwrite (decrypted_buffer + written, 1,
623
(size_t)decrypted_buffer_size - written,
691
ret = (int)fwrite(decrypted_buffer + written, 1,
692
(size_t)decrypted_buffer_size - written,
625
694
if(ret == 0 and ferror(stdout)){
627
696
fprintf(stderr, "Error writing encrypted data: %s\n",
681
755
avahi_address_snprint(ip, sizeof(ip), address);
683
757
fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
684
PRIu16 ") on port %d\n", name, host_name, ip,
758
PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
759
ip, (intmax_t)interface, port);
687
761
int ret = start_mandos_communication(ip, port, interface, mc);
689
763
avahi_simple_poll_quit(mc->simple_poll);
769
833
char *connect_to = NULL;
834
char tempdir[] = "/tmp/mandosXXXXXX";
770
835
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
771
char *pubkeyfilename = NULL;
772
char *seckeyfilename = NULL;
773
const char *pubkeyname = "pubkey.txt";
774
const char *seckeyname = "seckey.txt";
836
const char *seckey = PATHDIR "/" SECKEY;
837
const char *pubkey = PATHDIR "/" PUBKEY;
775
839
mandos_context mc = { .simple_poll = NULL, .server = NULL,
776
.dh_bits = 1024, .priority = "SECURE256"};
777
bool gnutls_initalized = false;
840
.dh_bits = 1024, .priority = "SECURE256"
841
":!CTYPE-X.509:+CTYPE-OPENPGP" };
842
bool gnutls_initialized = false;
843
bool gpgme_initialized = false;
780
846
struct argp_option options[] = {
781
847
{ .name = "debug", .key = 128,
782
848
.doc = "Debug mode", .group = 3 },
783
849
{ .name = "connect", .key = 'c',
785
.doc = "Connect directly to a sepcified mandos server",
850
.arg = "ADDRESS:PORT",
851
.doc = "Connect directly to a specific Mandos server",
787
853
{ .name = "interface", .key = 'i',
789
.doc = "Interface that Avahi will conntect through",
791
{ .name = "keydir", .key = 'd',
793
.doc = "Directory where the openpgp keyring is",
855
.doc = "Interface that will be used to search for Mandos"
795
858
{ .name = "seckey", .key = 's',
797
.doc = "Secret openpgp key for gnutls authentication",
860
.doc = "OpenPGP secret key file base name",
799
862
{ .name = "pubkey", .key = 'p',
801
.doc = "Public openpgp key for gnutls authentication",
864
.doc = "OpenPGP public key file base name",
803
866
{ .name = "dh-bits", .key = 129,
805
.doc = "dh-bits to use in gnutls communication",
868
.doc = "Bit length of the prime number used in the"
869
" Diffie-Hellman key exchange",
807
871
{ .name = "priority", .key = 130,
809
.doc = "GNUTLS priority", .group = 1 },
873
.doc = "GnuTLS priority string for the TLS handshake",
814
error_t parse_opt (int key, char *arg,
815
struct argp_state *state) {
816
/* Get the INPUT argument from `argp_parse', which we know is
817
a pointer to our plugin list pointer. */
878
error_t parse_opt(int key, char *arg,
879
struct argp_state *state) {
881
case 128: /* --debug */
884
case 'c': /* --connect */
823
885
connect_to = arg;
887
case 'i': /* --interface */
839
mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
890
case 's': /* --seckey */
893
case 'p': /* --pubkey */
896
case 129: /* --dh-bits */
897
ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
898
if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
899
or arg[numchars] != '\0'){
900
fprintf(stderr, "Bad number of DH bits\n");
842
901
exit(EXIT_FAILURE);
903
mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
905
case 130: /* --priority */
846
906
mc.priority = arg;
848
908
case ARGP_KEY_ARG:
850
910
case ARGP_KEY_END:
858
918
struct argp argp = { .options = options, .parser = parse_opt,
860
920
.doc = "Mandos client -- Get and decrypt"
861
" passwords from mandos server" };
862
ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
863
if (ret == ARGP_ERR_UNKNOWN){
921
" passwords from a Mandos server" };
922
ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
923
if(ret == ARGP_ERR_UNKNOWN){
864
924
fprintf(stderr, "Unknown error while parsing arguments\n");
865
925
exitcode = EXIT_FAILURE;
870
pubkeyfilename = combinepath(keydir, pubkeyname);
871
if (pubkeyfilename == NULL){
872
perror("combinepath");
873
exitcode = EXIT_FAILURE;
877
seckeyfilename = combinepath(keydir, seckeyname);
878
if (seckeyfilename == NULL){
879
perror("combinepath");
880
exitcode = EXIT_FAILURE;
884
ret = init_gnutls_global(&mc, pubkeyfilename, seckeyfilename);
886
fprintf(stderr, "init_gnutls_global failed\n");
887
exitcode = EXIT_FAILURE;
890
gnutls_initalized = true;
893
930
/* If the interface is down, bring it up */
954
ret = (int)TEMP_FAILURE_RETRY(close(sd));
923
963
ret = setuid(uid);
925
965
perror("setuid");
930
970
perror("setgid");
973
ret = init_gnutls_global(&mc, pubkey, seckey);
975
fprintf(stderr, "init_gnutls_global failed\n");
976
exitcode = EXIT_FAILURE;
979
gnutls_initialized = true;
982
if(mkdtemp(tempdir) == NULL){
988
if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
989
fprintf(stderr, "init_gpgme failed\n");
990
exitcode = EXIT_FAILURE;
993
gpgme_initialized = true;
933
996
if_index = (AvahiIfIndex) if_nametoindex(interface);
934
997
if(if_index == 0){
935
998
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1020
1085
/* Run the main loop */
1023
1088
fprintf(stderr, "Starting Avahi loop search\n");
1026
1091
avahi_simple_poll_loop(mc.simple_poll);
1031
1096
fprintf(stderr, "%s exiting\n", argv[0]);
1034
1099
/* Cleanup things */
1036
1101
avahi_s_service_browser_free(sb);
1038
if (mc.server != NULL)
1103
if(mc.server != NULL)
1039
1104
avahi_server_free(mc.server);
1041
if (mc.simple_poll != NULL)
1106
if(mc.simple_poll != NULL)
1042
1107
avahi_simple_poll_free(mc.simple_poll);
1043
free(pubkeyfilename);
1044
free(seckeyfilename);
1046
if (gnutls_initalized){
1109
if(gnutls_initialized){
1047
1110
gnutls_certificate_free_credentials(mc.cred);
1048
gnutls_global_deinit ();
1111
gnutls_global_deinit();
1112
gnutls_dh_params_deinit(mc.dh_params);
1115
if(gpgme_initialized){
1116
gpgme_release(mc.ctx);
1119
/* Removes the temp directory used by GPGME */
1120
if(tempdir[0] != '\0'){
1122
struct dirent *direntry;
1123
d = opendir(tempdir);
1125
if(errno != ENOENT){
1130
direntry = readdir(d);
1131
if(direntry == NULL){
1134
/* Skip "." and ".." */
1135
if(direntry->d_name[0] == '.'
1136
and (direntry->d_name[1] == '\0'
1137
or (direntry->d_name[1] == '.'
1138
and direntry->d_name[2] == '\0'))){
1141
char *fullname = NULL;
1142
ret = asprintf(&fullname, "%s/%s", tempdir,
1148
ret = remove(fullname);
1150
fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
1157
ret = rmdir(tempdir);
1158
if(ret == -1 and errno != ENOENT){
1051
1163
return exitcode;