32
32
/* Needed by GPGME, specifically gpgme_data_seek() */
33
#ifndef _LARGEFILE_SOURCE
34
33
#define _LARGEFILE_SOURCE
36
#ifndef _FILE_OFFSET_BITS
37
34
#define _FILE_OFFSET_BITS 64
40
36
#define _GNU_SOURCE /* TEMP_FAILURE_RETRY(), asprintf() */
42
38
#include <stdio.h> /* fprintf(), stderr, fwrite(),
43
stdout, ferror(), remove() */
44
40
#include <stdint.h> /* uint16_t, uint32_t */
45
41
#include <stddef.h> /* NULL, size_t, ssize_t */
46
42
#include <stdlib.h> /* free(), EXIT_SUCCESS, EXIT_FAILURE,
48
#include <stdbool.h> /* bool, false, true */
44
#include <stdbool.h> /* bool, true */
49
45
#include <string.h> /* memset(), strcmp(), strlen(),
50
46
strerror(), asprintf(), strcpy() */
51
#include <sys/ioctl.h> /* ioctl */
47
#include <sys/ioctl.h> /* ioctl */
52
48
#include <sys/types.h> /* socket(), inet_pton(), sockaddr,
53
49
sockaddr_in6, PF_INET6,
54
SOCK_STREAM, uid_t, gid_t, open(),
50
SOCK_STREAM, INET6_ADDRSTRLEN,
51
uid_t, gid_t, open(), opendir(), DIR */
56
52
#include <sys/stat.h> /* open() */
57
53
#include <sys/socket.h> /* socket(), struct sockaddr_in6,
58
inet_pton(), connect() */
54
struct in6_addr, inet_pton(),
59
56
#include <fcntl.h> /* open() */
60
#include <dirent.h> /* opendir(), struct dirent, readdir()
62
#include <inttypes.h> /* PRIu16, PRIdMAX, intmax_t,
57
#include <dirent.h> /* opendir(), struct dirent, readdir() */
58
#include <inttypes.h> /* PRIu16 */
64
59
#include <assert.h> /* assert() */
65
60
#include <errno.h> /* perror(), errno */
66
#include <time.h> /* nanosleep(), time() */
61
#include <time.h> /* time() */
67
62
#include <net/if.h> /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
68
63
SIOCSIFFLAGS, if_indextoname(),
69
64
if_nametoindex(), IF_NAMESIZE */
70
#include <netinet/in.h> /* IN6_IS_ADDR_LINKLOCAL,
71
INET_ADDRSTRLEN, INET6_ADDRSTRLEN
65
#include <netinet/in.h>
73
66
#include <unistd.h> /* close(), SEEK_SET, off_t, write(),
74
67
getuid(), getgid(), setuid(),
76
69
#include <arpa/inet.h> /* inet_pton(), htons */
77
#include <iso646.h> /* not, or, and */
70
#include <iso646.h> /* not, and */
78
71
#include <argp.h> /* struct argp_option, error_t, struct
79
72
argp_state, struct argp,
80
73
argp_parse(), ARGP_KEY_ARG,
81
74
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
77
/* 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
811
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'){
812
AvahiSServiceBrowser *sb = NULL;
815
int exitcode = EXIT_SUCCESS;
816
const char *interface = "eth0";
817
struct ifreq network;
821
char *connect_to = NULL;
822
char tempdir[] = "/tmp/mandosXXXXXX";
823
AvahiIfIndex if_index = AVAHI_IF_UNSPEC;
824
const char *seckey = PATHDIR "/" SECKEY;
825
const char *pubkey = PATHDIR "/" PUBKEY;
827
mandos_context mc = { .simple_poll = NULL, .server = NULL,
828
.dh_bits = 1024, .priority = "SECURE256"
829
":!CTYPE-X.509:+CTYPE-OPENPGP" };
830
bool gnutls_initalized = false;
831
bool gpgme_initalized = false;
834
struct argp_option options[] = {
835
{ .name = "debug", .key = 128,
836
.doc = "Debug mode", .group = 3 },
837
{ .name = "connect", .key = 'c',
838
.arg = "ADDRESS:PORT",
839
.doc = "Connect directly to a specific Mandos server",
841
{ .name = "interface", .key = 'i',
843
.doc = "Interface that will be used to search for Mandos"
846
{ .name = "seckey", .key = 's',
848
.doc = "OpenPGP secret key file base name",
850
{ .name = "pubkey", .key = 'p',
852
.doc = "OpenPGP public key file base name",
854
{ .name = "dh-bits", .key = 129,
856
.doc = "Bit length of the prime number used in the"
857
" Diffie-Hellman key exchange",
859
{ .name = "priority", .key = 130,
861
.doc = "GnuTLS priority string for the TLS handshake",
866
error_t parse_opt (int key, char *arg,
867
struct argp_state *state) {
868
/* Get the INPUT argument from `argp_parse', which we know is
869
a pointer to our plugin list pointer. */
871
case 128: /* --debug */
874
case 'c': /* --connect */
877
case 'i': /* --interface */
880
case 's': /* --seckey */
883
case 'p': /* --pubkey */
886
case 129: /* --dh-bits */
888
mc.dh_bits = (unsigned int) strtol(arg, NULL, 10);
894
case 130: /* --priority */
902
return ARGP_ERR_UNKNOWN;
907
struct argp argp = { .options = options, .parser = parse_opt,
909
.doc = "Mandos client -- Get and decrypt"
910
" passwords from a Mandos server" };
911
ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
912
if (ret == ARGP_ERR_UNKNOWN){
913
fprintf(stderr, "Unknown error while parsing arguments\n");
914
exitcode = EXIT_FAILURE;
919
/* If the interface is down, bring it up */
921
sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
924
exitcode = EXIT_FAILURE;
927
strcpy(network.ifr_name, interface);
928
ret = ioctl(sd, SIOCGIFFLAGS, &network);
930
perror("ioctl SIOCGIFFLAGS");
931
exitcode = EXIT_FAILURE;
934
if((network.ifr_flags & IFF_UP) == 0){
935
network.ifr_flags |= IFF_UP;
936
ret = ioctl(sd, SIOCSIFFLAGS, &network);
938
perror("ioctl SIOCSIFFLAGS");
939
exitcode = EXIT_FAILURE;
943
ret = TEMP_FAILURE_RETRY(close(sd));
962
ret = init_gnutls_global(&mc, pubkey, seckey);
964
fprintf(stderr, "init_gnutls_global failed\n");
965
exitcode = EXIT_FAILURE;
968
gnutls_initalized = true;
971
if(mkdtemp(tempdir) == NULL){
977
if(not init_gpgme(&mc, pubkey, seckey, tempdir)){
978
fprintf(stderr, "gpgme_initalized failed\n");
979
exitcode = EXIT_FAILURE;
982
gpgme_initalized = true;
1065
985
if_index = (AvahiIfIndex) if_nametoindex(interface);
1066
986
if(if_index == 0){
1067
987
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);
991
if(connect_to != NULL){
992
/* Connect directly, do not use Zeroconf */
993
/* (Mainly meant for debugging) */
994
char *address = strrchr(connect_to, ':');
996
fprintf(stderr, "No colon in address\n");
997
exitcode = EXIT_FAILURE;
1001
uint16_t port = (uint16_t) strtol(address+1, NULL, 10);
1003
perror("Bad port number");
1004
exitcode = EXIT_FAILURE;
1008
address = connect_to;
1009
ret = start_mandos_communication(address, port, if_index, &mc);
1011
exitcode = EXIT_FAILURE;
1013
exitcode = EXIT_SUCCESS;
1019
avahi_set_log_function(empty_log);
1022
/* Initialize the pseudo-RNG for Avahi */
1023
srand((unsigned int) time(NULL));
1025
/* Allocate main Avahi loop object */
1026
mc.simple_poll = avahi_simple_poll_new();
1027
if (mc.simple_poll == NULL) {
1028
fprintf(stderr, "Avahi: Failed to create simple poll"
1030
exitcode = EXIT_FAILURE;
1035
AvahiServerConfig config;
1036
/* Do not publish any local Zeroconf records */
1037
avahi_server_config_init(&config);
1038
config.publish_hinfo = 0;
1039
config.publish_addresses = 0;
1040
config.publish_workstation = 0;
1041
config.publish_domain = 0;
1043
/* Allocate a new server */
1044
mc.server = avahi_server_new(avahi_simple_poll_get
1045
(mc.simple_poll), &config, NULL,
1048
/* Free the Avahi configuration data */
1049
avahi_server_config_free(&config);
1052
/* Check if creating the Avahi server object succeeded */
1053
if (mc.server == NULL) {
1054
fprintf(stderr, "Failed to create Avahi server: %s\n",
1055
avahi_strerror(error));
1056
exitcode = EXIT_FAILURE;
1060
/* Create the Avahi service browser */
1061
sb = avahi_s_service_browser_new(mc.server, if_index,
1063
"_mandos._tcp", NULL, 0,
1064
browse_callback, &mc);
1066
fprintf(stderr, "Failed to create service browser: %s\n",
1067
avahi_strerror(avahi_server_errno(mc.server)));
1068
exitcode = EXIT_FAILURE;
1072
/* Run the main loop */
1075
fprintf(stderr, "Starting Avahi loop search\n");
1078
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){
1083
fprintf(stderr, "%s exiting\n", argv[0]);
1086
/* Cleanup things */
1088
avahi_s_service_browser_free(sb);
1090
if (mc.server != NULL)
1091
avahi_server_free(mc.server);
1093
if (mc.simple_poll != NULL)
1094
avahi_simple_poll_free(mc.simple_poll);
1096
if (gnutls_initalized){
1097
gnutls_certificate_free_credentials(mc.cred);
1098
gnutls_global_deinit ();
1099
gnutls_dh_params_deinit(mc.dh_params);
1102
if(gpgme_initalized){
1103
gpgme_release(mc.ctx);
1106
/* Removes the temp directory used by GPGME */
1107
if(tempdir[0] != '\0'){
1109
struct dirent *direntry;
1110
d = opendir(tempdir);
1385
1112
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){
1115
direntry = readdir(d);
1116
if(direntry == NULL){
1119
if (direntry->d_type == DT_REG){
1120
char *fullname = NULL;
1121
ret = asprintf(&fullname, "%s/%s", tempdir,
1127
ret = unlink(fullname);
1129
fprintf(stderr, "unlink(\"%s\"): %s",
1130
fullname, strerror(errno));
1137
ret = rmdir(tempdir);