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 engine 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;
218
283
gpgme_decrypt_result_t result;
219
result = gpgme_op_decrypt_result(ctx);
284
result = gpgme_op_decrypt_result(mc->ctx);
221
286
fprintf(stderr, "gpgme_op_decrypt_result failed\n");
223
288
fprintf(stderr, "Unsupported algorithm: %s\n",
340
406
/* OpenPGP credentials */
341
407
gnutls_certificate_allocate_credentials(&mc->cred);
342
if (ret != GNUTLS_E_SUCCESS){
343
fprintf (stderr, "GnuTLS memory error: %s\n", /* Spurious
345
safer_gnutls_strerror(ret));
346
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();
351
fprintf(stderr, "Attempting to use OpenPGP certificate %s"
352
" 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,
356
424
ret = gnutls_certificate_set_openpgp_key_file
357
425
(mc->cred, pubkeyfilename, seckeyfilename,
358
426
GNUTLS_OPENPGP_FMT_BASE64);
359
if (ret != GNUTLS_E_SUCCESS) {
427
if(ret != GNUTLS_E_SUCCESS) {
361
429
"Error[%d] while reading the OpenPGP key pair ('%s',"
362
430
" '%s')\n", ret, pubkeyfilename, seckeyfilename);
363
fprintf(stdout, "The GnuTLS error is: %s\n",
431
fprintf(stderr, "The GnuTLS error is: %s\n",
364
432
safer_gnutls_strerror(ret));
368
436
/* GnuTLS server initialization */
369
437
ret = gnutls_dh_params_init(&mc->dh_params);
370
if (ret != GNUTLS_E_SUCCESS) {
371
fprintf (stderr, "Error in GnuTLS DH parameter initialization:"
372
" %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));
375
443
ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
376
if (ret != GNUTLS_E_SUCCESS) {
377
fprintf (stderr, "Error in GnuTLS prime generation: %s\n",
378
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));
382
450
gnutls_certificate_set_dh_params(mc->cred, mc->dh_params);
388
456
gnutls_certificate_free_credentials(mc->cred);
389
457
gnutls_global_deinit();
458
gnutls_dh_params_deinit(mc->dh_params);
394
462
static int init_gnutls_session(mandos_context *mc,
406
474
ret = gnutls_priority_set_direct(*session, mc->priority, &err);
407
if (ret != GNUTLS_E_SUCCESS) {
475
if(ret != GNUTLS_E_SUCCESS) {
408
476
fprintf(stderr, "Syntax error at: %s\n", err);
409
477
fprintf(stderr, "GnuTLS error: %s\n",
410
478
safer_gnutls_strerror(ret));
411
gnutls_deinit (*session);
479
gnutls_deinit(*session);
416
484
ret = gnutls_credentials_set(*session, GNUTLS_CRD_CERTIFICATE,
418
if (ret != GNUTLS_E_SUCCESS) {
486
if(ret != GNUTLS_E_SUCCESS) {
419
487
fprintf(stderr, "Error setting GnuTLS credentials: %s\n",
420
488
safer_gnutls_strerror(ret));
421
gnutls_deinit (*session);
489
gnutls_deinit(*session);
425
493
/* ignore client certificate if any. */
426
gnutls_certificate_server_set_request (*session,
494
gnutls_certificate_server_set_request(*session,
429
gnutls_dh_set_prime_bits (*session, mc->dh_bits);
497
gnutls_dh_set_prime_bits(*session, mc->dh_bits);
561
632
fprintf(stderr, "Retrieving pgp encrypted password from %s\n",
566
637
buffer_capacity = adjustbuffer(&buffer, buffer_length,
567
638
buffer_capacity);
568
if (buffer_capacity == 0){
639
if(buffer_capacity == 0){
569
640
perror("adjustbuffer");
574
ret = gnutls_record_recv(session, buffer+buffer_length,
645
sret = gnutls_record_recv(session, buffer+buffer_length,
581
652
case GNUTLS_E_INTERRUPTED:
582
653
case GNUTLS_E_AGAIN:
584
655
case GNUTLS_E_REHANDSHAKE:
586
ret = gnutls_handshake (session);
657
ret = gnutls_handshake(session);
587
658
} while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
589
660
fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
608
679
fprintf(stderr, "Closing TLS session\n");
611
gnutls_bye (session, GNUTLS_SHUT_RDWR);
682
gnutls_bye(session, GNUTLS_SHUT_RDWR);
613
if (buffer_length > 0){
614
decrypted_buffer_size = pgp_packet_decrypt(buffer,
684
if(buffer_length > 0){
685
decrypted_buffer_size = pgp_packet_decrypt(mc, buffer,
618
if (decrypted_buffer_size >= 0){
688
if(decrypted_buffer_size >= 0){
620
690
while(written < (size_t) decrypted_buffer_size){
621
ret = (int)fwrite (decrypted_buffer + written, 1,
622
(size_t)decrypted_buffer_size - written,
691
ret = (int)fwrite(decrypted_buffer + written, 1,
692
(size_t)decrypted_buffer_size - written,
624
694
if(ret == 0 and ferror(stdout)){
626
696
fprintf(stderr, "Error writing encrypted data: %s\n",
682
755
avahi_address_snprint(ip, sizeof(ip), address);
684
757
fprintf(stderr, "Mandos server \"%s\" found on %s (%s, %"
685
PRIu16 ") on port %d\n", name, host_name, ip,
758
PRIdMAX ") on port %" PRIu16 "\n", name, host_name,
759
ip, (intmax_t)interface, port);
688
761
int ret = start_mandos_communication(ip, port, interface, mc);
690
763
avahi_simple_poll_quit(mc->simple_poll);
770
833
char *connect_to = NULL;
834
char tempdir[] = "/tmp/mandosXXXXXX";
835
bool tempdir_created = false;
771
836
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
772
char *pubkeyfilename = NULL;
773
char *seckeyfilename = NULL;
774
const char *pubkeyname = "pubkey.txt";
775
const char *seckeyname = "seckey.txt";
837
const char *seckey = PATHDIR "/" SECKEY;
838
const char *pubkey = PATHDIR "/" PUBKEY;
776
840
mandos_context mc = { .simple_poll = NULL, .server = NULL,
777
.dh_bits = 1024, .priority = "SECURE256"};
778
bool gnutls_initalized = false;
841
.dh_bits = 1024, .priority = "SECURE256"
842
":!CTYPE-X.509:+CTYPE-OPENPGP" };
843
bool gnutls_initialized = false;
844
bool gpgme_initialized = false;
781
847
struct argp_option options[] = {
782
848
{ .name = "debug", .key = 128,
783
849
.doc = "Debug mode", .group = 3 },
784
850
{ .name = "connect", .key = 'c',
786
.doc = "Connect directly to a sepcified mandos server",
851
.arg = "ADDRESS:PORT",
852
.doc = "Connect directly to a specific Mandos server",
788
854
{ .name = "interface", .key = 'i',
790
.doc = "Interface that Avahi will conntect through",
792
{ .name = "keydir", .key = 'd',
794
.doc = "Directory where the openpgp keyring is",
856
.doc = "Interface that will be used to search for Mandos"
796
859
{ .name = "seckey", .key = 's',
798
.doc = "Secret openpgp key for gnutls authentication",
861
.doc = "OpenPGP secret key file base name",
800
863
{ .name = "pubkey", .key = 'p',
802
.doc = "Public openpgp key for gnutls authentication",
865
.doc = "OpenPGP public key file base name",
804
867
{ .name = "dh-bits", .key = 129,
806
.doc = "dh-bits to use in gnutls communication",
869
.doc = "Bit length of the prime number used in the"
870
" Diffie-Hellman key exchange",
808
872
{ .name = "priority", .key = 130,
810
.doc = "GNUTLS priority", .group = 1 },
874
.doc = "GnuTLS priority string for the TLS handshake",
815
error_t parse_opt (int key, char *arg,
816
struct argp_state *state) {
817
/* Get the INPUT argument from `argp_parse', which we know is
818
a pointer to our plugin list pointer. */
879
error_t parse_opt(int key, char *arg,
880
struct argp_state *state) {
882
case 128: /* --debug */
885
case 'c': /* --connect */
824
886
connect_to = arg;
888
case 'i': /* --interface */
840
mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
891
case 's': /* --seckey */
894
case 'p': /* --pubkey */
897
case 129: /* --dh-bits */
898
ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
899
if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
900
or arg[numchars] != '\0'){
901
fprintf(stderr, "Bad number of DH bits\n");
843
902
exit(EXIT_FAILURE);
904
mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
906
case 130: /* --priority */
847
907
mc.priority = arg;
849
909
case ARGP_KEY_ARG:
851
911
case ARGP_KEY_END:
859
919
struct argp argp = { .options = options, .parser = parse_opt,
861
921
.doc = "Mandos client -- Get and decrypt"
862
" passwords from mandos server" };
863
ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
864
if (ret == ARGP_ERR_UNKNOWN){
922
" passwords from a Mandos server" };
923
ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
924
if(ret == ARGP_ERR_UNKNOWN){
865
925
fprintf(stderr, "Unknown error while parsing arguments\n");
866
926
exitcode = EXIT_FAILURE;
871
pubkeyfilename = combinepath(keydir, pubkeyname);
872
if (pubkeyfilename == NULL){
873
perror("combinepath");
874
exitcode = EXIT_FAILURE;
878
seckeyfilename = combinepath(keydir, seckeyname);
879
if (seckeyfilename == NULL){
880
perror("combinepath");
881
exitcode = EXIT_FAILURE;
885
ret = init_gnutls_global(&mc, pubkeyfilename, seckeyfilename);
887
fprintf(stderr, "init_gnutls_global failed\n");
888
exitcode = EXIT_FAILURE;
891
gnutls_initalized = true;
894
931
/* If the interface is down, bring it up */
955
ret = (int)TEMP_FAILURE_RETRY(close(sd));
924
964
ret = setuid(uid);
926
966
perror("setuid");
931
971
perror("setgid");
974
ret = init_gnutls_global(&mc, pubkey, seckey);
976
fprintf(stderr, "init_gnutls_global failed\n");
977
exitcode = EXIT_FAILURE;
980
gnutls_initialized = true;
983
if(mkdtemp(tempdir) == NULL){
987
tempdir_created = true;
989
if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
990
fprintf(stderr, "init_gpgme failed\n");
991
exitcode = EXIT_FAILURE;
994
gpgme_initialized = true;
934
997
if_index = (AvahiIfIndex) if_nametoindex(interface);
935
998
if(if_index == 0){
936
999
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1000
exitcode = EXIT_FAILURE;
940
1004
if(connect_to != NULL){
1021
1087
/* Run the main loop */
1024
1090
fprintf(stderr, "Starting Avahi loop search\n");
1027
1093
avahi_simple_poll_loop(mc.simple_poll);
1032
1098
fprintf(stderr, "%s exiting\n", argv[0]);
1035
1101
/* Cleanup things */
1037
1103
avahi_s_service_browser_free(sb);
1039
if (mc.server != NULL)
1105
if(mc.server != NULL)
1040
1106
avahi_server_free(mc.server);
1042
if (mc.simple_poll != NULL)
1108
if(mc.simple_poll != NULL)
1043
1109
avahi_simple_poll_free(mc.simple_poll);
1044
free(pubkeyfilename);
1045
free(seckeyfilename);
1047
if (gnutls_initalized){
1111
if(gnutls_initialized){
1048
1112
gnutls_certificate_free_credentials(mc.cred);
1049
gnutls_global_deinit ();
1113
gnutls_global_deinit();
1114
gnutls_dh_params_deinit(mc.dh_params);
1117
if(gpgme_initialized){
1118
gpgme_release(mc.ctx);
1121
/* Removes the temp directory used by GPGME */
1122
if(tempdir_created){
1124
struct dirent *direntry;
1125
d = opendir(tempdir);
1127
if(errno != ENOENT){
1132
direntry = readdir(d);
1133
if(direntry == NULL){
1136
/* Skip "." and ".." */
1137
if(direntry->d_name[0] == '.'
1138
and (direntry->d_name[1] == '\0'
1139
or (direntry->d_name[1] == '.'
1140
and direntry->d_name[2] == '\0'))){
1143
char *fullname = NULL;
1144
ret = asprintf(&fullname, "%s/%s", tempdir,
1150
ret = remove(fullname);
1152
fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
1159
ret = rmdir(tempdir);
1160
if(ret == -1 and errno != ENOENT){
1052
1165
return exitcode;