32
31
/* Needed by GPGME, specifically gpgme_data_seek() */
33
#ifndef _LARGEFILE_SOURCE
34
32
#define _LARGEFILE_SOURCE
36
#ifndef _FILE_OFFSET_BITS
37
33
#define _FILE_OFFSET_BITS 64
40
35
#define _GNU_SOURCE /* TEMP_FAILURE_RETRY(), asprintf() */
42
37
#include <stdio.h> /* fprintf(), stderr, fwrite(),
43
stdout, ferror(), remove() */
44
39
#include <stdint.h> /* uint16_t, uint32_t */
45
40
#include <stddef.h> /* NULL, size_t, ssize_t */
46
41
#include <stdlib.h> /* free(), EXIT_SUCCESS, EXIT_FAILURE,
48
#include <stdbool.h> /* bool, false, true */
43
#include <stdbool.h> /* bool, true */
49
44
#include <string.h> /* memset(), strcmp(), strlen(),
50
45
strerror(), asprintf(), strcpy() */
51
#include <sys/ioctl.h> /* ioctl */
46
#include <sys/ioctl.h> /* ioctl */
52
47
#include <sys/types.h> /* socket(), inet_pton(), sockaddr,
53
48
sockaddr_in6, PF_INET6,
54
SOCK_STREAM, uid_t, gid_t, open(),
49
SOCK_STREAM, INET6_ADDRSTRLEN,
50
uid_t, gid_t, open(), opendir(), DIR */
56
51
#include <sys/stat.h> /* open() */
57
52
#include <sys/socket.h> /* socket(), struct sockaddr_in6,
58
inet_pton(), connect() */
53
struct in6_addr, inet_pton(),
59
55
#include <fcntl.h> /* open() */
60
#include <dirent.h> /* opendir(), struct dirent, readdir()
62
#include <inttypes.h> /* PRIu16, PRIdMAX, intmax_t,
56
#include <dirent.h> /* opendir(), struct dirent, readdir() */
57
#include <inttypes.h> /* PRIu16 */
64
58
#include <assert.h> /* assert() */
65
59
#include <errno.h> /* perror(), errno */
66
#include <time.h> /* nanosleep(), time() */
60
#include <time.h> /* time() */
67
61
#include <net/if.h> /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
68
62
SIOCSIFFLAGS, if_indextoname(),
69
63
if_nametoindex(), IF_NAMESIZE */
70
#include <netinet/in.h> /* IN6_IS_ADDR_LINKLOCAL,
71
INET_ADDRSTRLEN, INET6_ADDRSTRLEN
64
#include <netinet/in.h>
73
65
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
74
66
getuid(), getgid(), setuid(),
76
68
#include <arpa/inet.h> /* inet_pton(), htons */
77
#include <iso646.h> /* not, or, and */
69
#include <iso646.h> /* not, and */
78
70
#include <argp.h> /* struct argp_option, error_t, struct
79
71
argp_state, struct argp,
80
72
argp_parse(), ARGP_KEY_ARG,
81
73
ARGP_KEY_END, ARGP_ERR_UNKNOWN */
82
#include <signal.h> /* sigemptyset(), sigaddset(),
83
sigaction(), SIGTERM, sigaction,
87
#include <sys/klog.h> /* klogctl() */
88
#endif /* __linux__ */
91
76
/* All Avahi types, constants and functions
884
/* stop main loop after sigterm has been called */
885
static void handle_sigterm(__attribute__((unused)) int sig){
890
int old_errno = errno;
891
if(mc.simple_poll != NULL){
892
avahi_simple_poll_quit(mc.simple_poll);
897
810
int main(int argc, char *argv[]){
898
AvahiSServiceBrowser *sb = NULL;
903
int exitcode = EXIT_SUCCESS;
904
const char *interface = "eth0";
905
struct ifreq network;
907
bool take_down_interface = false;
910
char *connect_to = NULL;
911
char tempdir[] = "/tmp/mandosXXXXXX";
912
bool tempdir_created = false;
913
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
914
const char *seckey = PATHDIR "/" SECKEY;
915
const char *pubkey = PATHDIR "/" PUBKEY;
917
bool gnutls_initialized = false;
918
bool gpgme_initialized = false;
921
struct sigaction old_sigterm_action;
922
struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
925
struct argp_option options[] = {
926
{ .name = "debug", .key = 128,
927
.doc = "Debug mode", .group = 3 },
928
{ .name = "connect", .key = 'c',
929
.arg = "ADDRESS:PORT",
930
.doc = "Connect directly to a specific Mandos server",
932
{ .name = "interface", .key = 'i',
934
.doc = "Network interface that will be used to search for"
937
{ .name = "seckey", .key = 's',
939
.doc = "OpenPGP secret key file base name",
941
{ .name = "pubkey", .key = 'p',
943
.doc = "OpenPGP public key file base name",
945
{ .name = "dh-bits", .key = 129,
947
.doc = "Bit length of the prime number used in the"
948
" Diffie-Hellman key exchange",
950
{ .name = "priority", .key = 130,
952
.doc = "GnuTLS priority string for the TLS handshake",
954
{ .name = "delay", .key = 131,
956
.doc = "Maximum delay to wait for interface startup",
961
error_t parse_opt(int key, char *arg,
962
struct argp_state *state){
964
case 128: /* --debug */
967
case 'c': /* --connect */
970
case 'i': /* --interface */
973
case 's': /* --seckey */
976
case 'p': /* --pubkey */
979
case 129: /* --dh-bits */
981
tmpmax = strtoimax(arg, &tmp, 10);
982
if(errno != 0 or tmp == arg or *tmp != '\0'
983
or tmpmax != (typeof(mc.dh_bits))tmpmax){
984
fprintf(stderr, "Bad number of DH bits\n");
987
mc.dh_bits = (typeof(mc.dh_bits))tmpmax;
989
case 130: /* --priority */
992
case 131: /* --delay */
994
delay = strtof(arg, &tmp);
995
if(errno != 0 or tmp == arg or *tmp != '\0'){
996
fprintf(stderr, "Bad delay\n");
1005
return ARGP_ERR_UNKNOWN;
1010
struct argp argp = { .options = options, .parser = parse_opt,
1012
.doc = "Mandos client -- Get and decrypt"
1013
" passwords from a Mandos server" };
1014
ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
1015
if(ret == ARGP_ERR_UNKNOWN){
1016
fprintf(stderr, "Unknown error while parsing arguments\n");
1017
exitcode = EXIT_FAILURE;
1023
avahi_set_log_function(empty_log);
1026
/* Initialize Avahi early so avahi_simple_poll_quit() can be called
1027
from the signal handler */
1028
/* Initialize the pseudo-RNG for Avahi */
1029
srand((unsigned int) time(NULL));
1030
mc.simple_poll = avahi_simple_poll_new();
1031
if(mc.simple_poll == NULL){
1032
fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1033
exitcode = EXIT_FAILURE;
1037
sigemptyset(&sigterm_action.sa_mask);
1038
ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1040
perror("sigaddset");
1041
exitcode = EXIT_FAILURE;
1044
ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1046
perror("sigaddset");
1047
exitcode = EXIT_FAILURE;
1050
ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1052
perror("sigaddset");
1053
exitcode = EXIT_FAILURE;
1056
ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
1058
perror("sigaction");
1059
exitcode = EXIT_FAILURE;
1063
/* If the interface is down, bring it up */
1064
if(interface[0] != '\0'){
811
AvahiSServiceBrowser *sb = NULL;
814
int exitcode = EXIT_SUCCESS;
815
const char *interface = "eth0";
816
struct ifreq network;
820
char *connect_to = NULL;
821
char tempdir[] = "/tmp/mandosXXXXXX";
822
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
823
const char *seckey = PATHDIR "/" SECKEY;
824
const char *pubkey = PATHDIR "/" PUBKEY;
826
mandos_context mc = { .simple_poll = NULL, .server = NULL,
827
.dh_bits = 1024, .priority = "SECURE256"
828
":!CTYPE-X.509:+CTYPE-OPENPGP" };
829
bool gnutls_initalized = false;
830
bool gpgme_initalized = false;
833
struct argp_option options[] = {
834
{ .name = "debug", .key = 128,
835
.doc = "Debug mode", .group = 3 },
836
{ .name = "connect", .key = 'c',
837
.arg = "ADDRESS:PORT",
838
.doc = "Connect directly to a specific Mandos server",
840
{ .name = "interface", .key = 'i',
842
.doc = "Interface that will be used to search for Mandos"
845
{ .name = "seckey", .key = 's',
847
.doc = "OpenPGP secret key file base name",
849
{ .name = "pubkey", .key = 'p',
851
.doc = "OpenPGP public key file base name",
853
{ .name = "dh-bits", .key = 129,
855
.doc = "Bit length of the prime number used in the"
856
" Diffie-Hellman key exchange",
858
{ .name = "priority", .key = 130,
860
.doc = "GnuTLS priority string for the TLS handshake",
865
error_t parse_opt (int key, char *arg,
866
struct argp_state *state) {
867
/* Get the INPUT argument from `argp_parse', which we know is
868
a pointer to our plugin list pointer. */
870
case 128: /* --debug */
873
case 'c': /* --connect */
876
case 'i': /* --interface */
879
case 's': /* --seckey */
882
case 'p': /* --pubkey */
885
case 129: /* --dh-bits */
887
mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
893
case 130: /* --priority */
901
return ARGP_ERR_UNKNOWN;
906
struct argp argp = { .options = options, .parser = parse_opt,
908
.doc = "Mandos client -- Get and decrypt"
909
" passwords from a Mandos server" };
910
ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
911
if (ret == ARGP_ERR_UNKNOWN){
912
fprintf(stderr, "Unknown error while parsing arguments\n");
913
exitcode = EXIT_FAILURE;
918
/* If the interface is down, bring it up */
920
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
923
exitcode = EXIT_FAILURE;
926
strcpy(network.ifr_name, interface);
927
ret = ioctl(sd, SIOCGIFFLAGS, &network);
929
perror("ioctl SIOCGIFFLAGS");
930
exitcode = EXIT_FAILURE;
933
if((network.ifr_flags & IFF_UP) == 0){
934
network.ifr_flags |= IFF_UP;
935
ret = ioctl(sd, SIOCSIFFLAGS, &network);
937
perror("ioctl SIOCSIFFLAGS");
938
exitcode = EXIT_FAILURE;
942
ret = TEMP_FAILURE_RETRY(close(sd));
961
ret = init_gnutls_global(&mc, pubkey, seckey);
963
fprintf(stderr, "init_gnutls_global failed\n");
964
exitcode = EXIT_FAILURE;
967
gnutls_initalized = true;
970
if(mkdtemp(tempdir) == NULL){
976
if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
977
fprintf(stderr, "gpgme_initalized failed\n");
978
exitcode = EXIT_FAILURE;
981
gpgme_initalized = true;
1065
984
if_index = (AvahiIfIndex) if_nametoindex(interface);
1066
985
if(if_index == 0){
1067
986
fprintf(stderr, "No such interface: \"%s\"\n", interface);
1068
exitcode = EXIT_FAILURE;
1077
/* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1078
messages to mess up the prompt */
1079
ret = klogctl(8, NULL, 5);
1080
bool restore_loglevel = true;
1082
restore_loglevel = false;
1085
#endif /* __linux__ */
1087
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1090
exitcode = EXIT_FAILURE;
1092
if(restore_loglevel){
1093
ret = klogctl(7, NULL, 0);
1098
#endif /* __linux__ */
1101
strcpy(network.ifr_name, interface);
1102
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1104
perror("ioctl SIOCGIFFLAGS");
1106
if(restore_loglevel){
1107
ret = klogctl(7, NULL, 0);
1112
#endif /* __linux__ */
1113
exitcode = EXIT_FAILURE;
1116
if((network.ifr_flags & IFF_UP) == 0){
1117
network.ifr_flags |= IFF_UP;
1118
take_down_interface = true;
1119
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1121
take_down_interface = false;
1122
perror("ioctl SIOCSIFFLAGS");
1123
exitcode = EXIT_FAILURE;
1125
if(restore_loglevel){
1126
ret = klogctl(7, NULL, 0);
1131
#endif /* __linux__ */
1135
/* sleep checking until interface is running */
1136
for(int i=0; i < delay * 4; i++){
1137
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1139
perror("ioctl SIOCGIFFLAGS");
1140
} else if(network.ifr_flags & IFF_RUNNING){
1143
struct timespec sleeptime = { .tv_nsec = 250000000 };
1144
ret = nanosleep(&sleeptime, NULL);
1145
if(ret == -1 and errno != EINTR){
1146
perror("nanosleep");
1149
if(not take_down_interface){
1150
/* We won't need the socket anymore */
1151
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1157
if(restore_loglevel){
1158
/* Restores kernel loglevel to default */
1159
ret = klogctl(7, NULL, 0);
1164
#endif /* __linux__ */
1189
ret = init_gnutls_global(pubkey, seckey);
1191
fprintf(stderr, "init_gnutls_global failed\n");
1192
exitcode = EXIT_FAILURE;
1195
gnutls_initialized = true;
1202
tempdir_created = true;
1203
if(mkdtemp(tempdir) == NULL){
1204
tempdir_created = false;
1213
if(not init_gpgme(pubkey, seckey, tempdir)){
1214
fprintf(stderr, "init_gpgme failed\n");
1215
exitcode = EXIT_FAILURE;
1218
gpgme_initialized = true;
1225
if(connect_to != NULL){
1226
/* Connect directly, do not use Zeroconf */
1227
/* (Mainly meant for debugging) */
1228
char *address = strrchr(connect_to, ':');
1229
if(address == NULL){
1230
fprintf(stderr, "No colon in address\n");
1231
exitcode = EXIT_FAILURE;
1241
tmpmax = strtoimax(address+1, &tmp, 10);
1242
if(errno != 0 or tmp == address+1 or *tmp != '\0'
1243
or tmpmax != (uint16_t)tmpmax){
1244
fprintf(stderr, "Bad port number\n");
1245
exitcode = EXIT_FAILURE;
1253
port = (uint16_t)tmpmax;
1255
address = connect_to;
1256
/* Colon in address indicates IPv6 */
1258
if(strchr(address, ':') != NULL){
1268
ret = start_mandos_communication(address, port, if_index, af);
1270
exitcode = EXIT_FAILURE;
1272
exitcode = EXIT_SUCCESS;
1282
AvahiServerConfig config;
1283
/* Do not publish any local Zeroconf records */
1284
avahi_server_config_init(&config);
1285
config.publish_hinfo = 0;
1286
config.publish_addresses = 0;
1287
config.publish_workstation = 0;
1288
config.publish_domain = 0;
1290
/* Allocate a new server */
1291
mc.server = avahi_server_new(avahi_simple_poll_get
1292
(mc.simple_poll), &config, NULL,
1295
/* Free the Avahi configuration data */
1296
avahi_server_config_free(&config);
1299
/* Check if creating the Avahi server object succeeded */
1300
if(mc.server == NULL){
1301
fprintf(stderr, "Failed to create Avahi server: %s\n",
1302
avahi_strerror(error));
1303
exitcode = EXIT_FAILURE;
1311
/* Create the Avahi service browser */
1312
sb = avahi_s_service_browser_new(mc.server, if_index,
1313
AVAHI_PROTO_UNSPEC, "_mandos._tcp",
1314
NULL, 0, browse_callback, NULL);
1316
fprintf(stderr, "Failed to create service browser: %s\n",
1317
avahi_strerror(avahi_server_errno(mc.server)));
1318
exitcode = EXIT_FAILURE;
1326
/* Run the main loop */
1329
fprintf(stderr, "Starting Avahi loop search\n");
1332
avahi_simple_poll_loop(mc.simple_poll);
990
if(connect_to != NULL){
991
/* Connect directly, do not use Zeroconf */
992
/* (Mainly meant for debugging) */
993
char *address = strrchr(connect_to, ':');
995
fprintf(stderr, "No colon in address\n");
996
exitcode = EXIT_FAILURE;
1000
uint16_t port = (uint16_t) strtol(address+1, NULL, 10);
1002
perror("Bad port number");
1003
exitcode = EXIT_FAILURE;
1007
address = connect_to;
1008
ret = start_mandos_communication(address, port, if_index, &mc);
1010
exitcode = EXIT_FAILURE;
1012
exitcode = EXIT_SUCCESS;
1018
avahi_set_log_function(empty_log);
1021
/* Initialize the pseudo-RNG for Avahi */
1022
srand((unsigned int) time(NULL));
1024
/* Allocate main Avahi loop object */
1025
mc.simple_poll = avahi_simple_poll_new();
1026
if (mc.simple_poll == NULL) {
1027
fprintf(stderr, "Avahi: Failed to create simple poll"
1029
exitcode = EXIT_FAILURE;
1034
AvahiServerConfig config;
1035
/* Do not publish any local Zeroconf records */
1036
avahi_server_config_init(&config);
1037
config.publish_hinfo = 0;
1038
config.publish_addresses = 0;
1039
config.publish_workstation = 0;
1040
config.publish_domain = 0;
1042
/* Allocate a new server */
1043
mc.server = avahi_server_new(avahi_simple_poll_get
1044
(mc.simple_poll), &config, NULL,
1047
/* Free the Avahi configuration data */
1048
avahi_server_config_free(&config);
1051
/* Check if creating the Avahi server object succeeded */
1052
if (mc.server == NULL) {
1053
fprintf(stderr, "Failed to create Avahi server: %s\n",
1054
avahi_strerror(error));
1055
exitcode = EXIT_FAILURE;
1059
/* Create the Avahi service browser */
1060
sb = avahi_s_service_browser_new(mc.server, if_index,
1062
"_mandos._tcp", NULL, 0,
1063
browse_callback, &mc);
1065
fprintf(stderr, "Failed to create service browser: %s\n",
1066
avahi_strerror(avahi_server_errno(mc.server)));
1067
exitcode = EXIT_FAILURE;
1071
/* Run the main loop */
1074
fprintf(stderr, "Starting Avahi loop search\n");
1077
avahi_simple_poll_loop(mc.simple_poll);
1337
fprintf(stderr, "%s exiting\n", argv[0]);
1340
/* Cleanup things */
1342
avahi_s_service_browser_free(sb);
1344
if(mc.server != NULL)
1345
avahi_server_free(mc.server);
1347
if(mc.simple_poll != NULL)
1348
avahi_simple_poll_free(mc.simple_poll);
1350
if(gnutls_initialized){
1351
gnutls_certificate_free_credentials(mc.cred);
1352
gnutls_global_deinit();
1353
gnutls_dh_params_deinit(mc.dh_params);
1356
if(gpgme_initialized){
1357
gpgme_release(mc.ctx);
1360
/* Take down the network interface */
1361
if(take_down_interface){
1362
ret = ioctl(sd, SIOCGIFFLAGS, &network);
1364
perror("ioctl SIOCGIFFLAGS");
1365
} else if(network.ifr_flags & IFF_UP) {
1366
network.ifr_flags &= ~IFF_UP; /* clear flag */
1367
ret = ioctl(sd, SIOCSIFFLAGS, &network);
1369
perror("ioctl SIOCSIFFLAGS");
1372
ret = (int)TEMP_FAILURE_RETRY(close(sd));
1378
/* Removes the temp directory used by GPGME */
1379
if(tempdir_created){
1381
struct dirent *direntry;
1382
d = opendir(tempdir);
1384
if(errno != ENOENT){
1082
fprintf(stderr, "%s exiting\n", argv[0]);
1085
/* Cleanup things */
1087
avahi_s_service_browser_free(sb);
1089
if (mc.server != NULL)
1090
avahi_server_free(mc.server);
1092
if (mc.simple_poll != NULL)
1093
avahi_simple_poll_free(mc.simple_poll);
1095
if (gnutls_initalized){
1096
gnutls_certificate_free_credentials(mc.cred);
1097
gnutls_global_deinit ();
1098
gnutls_dh_params_deinit(mc.dh_params);
1101
if(gpgme_initalized){
1102
gpgme_release(mc.ctx);
1105
/* Removes the temp directory used by GPGME */
1106
if(tempdir[0] != '\0'){
1108
struct dirent *direntry;
1109
d = opendir(tempdir);
1385
1111
perror("opendir");
1389
direntry = readdir(d);
1390
if(direntry == NULL){
1393
/* Skip "." and ".." */
1394
if(direntry->d_name[0] == '.'
1395
and (direntry->d_name[1] == '\0'
1396
or (direntry->d_name[1] == '.'
1397
and direntry->d_name[2] == '\0'))){
1400
char *fullname = NULL;
1401
ret = asprintf(&fullname, "%s/%s", tempdir,
1407
ret = remove(fullname);
1409
fprintf(stderr, "remove(\"%s\"): %s\n", fullname,
1416
ret = rmdir(tempdir);
1417
if(ret == -1 and errno != ENOENT){
1114
direntry = readdir(d);
1115
if(direntry == NULL){
1118
if (direntry->d_type == DT_REG){
1119
char *fullname = NULL;
1120
ret = asprintf(&fullname, "%s/%s", tempdir,
1126
ret = unlink(fullname);
1128
fprintf(stderr, "unlink(\"%s\"): %s",
1129
fullname, strerror(errno));
1136
ret = rmdir(tempdir);