9
9
* "browse_callback", and parts of "main".
11
11
* Everything else is
12
* Copyright © 2008-2015 Teddy Hogeborn
13
* Copyright © 2008-2015 Björn Påhlsson
15
* This program is free software: you can redistribute it and/or
16
* modify it under the terms of the GNU General Public License as
17
* published by the Free Software Foundation, either version 3 of the
18
* License, or (at your option) any later version.
20
* This program is distributed in the hope that it will be useful, but
12
* Copyright © 2008-2018 Teddy Hogeborn
13
* Copyright © 2008-2018 Björn Påhlsson
15
* This file is part of Mandos.
17
* Mandos is free software: you can redistribute it and/or modify it
18
* under the terms of the GNU General Public License as published by
19
* the Free Software Foundation, either version 3 of the License, or
20
* (at your option) any later version.
22
* Mandos is distributed in the hope that it will be useful, but
21
23
* WITHOUT ANY WARRANTY; without even the implied warranty of
22
24
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23
25
* General Public License for more details.
25
27
* You should have received a copy of the GNU General Public License
26
* along with this program. If not, see
27
* <http://www.gnu.org/licenses/>.
28
* along with Mandos. If not, see <http://www.gnu.org/licenses/>.
29
30
* Contact the authors at <mandos@recompile.se>.
46
47
#include <stdlib.h> /* free(), EXIT_SUCCESS, srand(),
47
48
strtof(), abort() */
48
49
#include <stdbool.h> /* bool, false, true */
49
#include <string.h> /* memset(), strcmp(), strlen(),
50
strerror(), asprintf(), strcpy() */
50
#include <string.h> /* strcmp(), strlen(), strerror(),
51
asprintf(), strncpy(), strsignal()
51
53
#include <sys/ioctl.h> /* ioctl */
52
54
#include <sys/types.h> /* socket(), inet_pton(), sockaddr,
53
55
sockaddr_in6, PF_INET6,
57
59
#include <sys/socket.h> /* socket(), struct sockaddr_in6,
58
60
inet_pton(), connect(),
60
#include <fcntl.h> /* open(), unlinkat() */
62
#include <fcntl.h> /* open(), unlinkat(), AT_REMOVEDIR */
61
63
#include <dirent.h> /* opendir(), struct dirent, readdir()
63
65
#include <inttypes.h> /* PRIu16, PRIdMAX, intmax_t,
65
#include <errno.h> /* perror(), errno,
67
#include <errno.h> /* perror(), errno, EINTR, EINVAL,
68
EAI_SYSTEM, ENETUNREACH,
69
EHOSTUNREACH, ECONNREFUSED, EPROTO,
70
EIO, ENOENT, ENXIO, ENOMEM, EISDIR,
66
72
program_invocation_short_name */
67
73
#include <time.h> /* nanosleep(), time(), sleep() */
68
74
#include <net/if.h> /* ioctl, ifreq, SIOCGIFFLAGS, IFF_UP,
304
310
gpgme_strsource(rc), gpgme_strerror(rc));
314
gpgme_import_result_t import_result
315
= gpgme_op_import_result(mc->ctx);
316
if((import_result->imported < 1
317
or import_result->not_imported > 0)
318
and import_result->unchanged == 0){
319
fprintf_plus(stderr, "bad gpgme_op_import_results:\n");
321
"The total number of considered keys: %d\n",
322
import_result->considered);
324
"The number of keys without user ID: %d\n",
325
import_result->no_user_id);
327
"The total number of imported keys: %d\n",
328
import_result->imported);
329
fprintf_plus(stderr, "The number of imported RSA keys: %d\n",
330
import_result->imported_rsa);
331
fprintf_plus(stderr, "The number of unchanged keys: %d\n",
332
import_result->unchanged);
333
fprintf_plus(stderr, "The number of new user IDs: %d\n",
334
import_result->new_user_ids);
335
fprintf_plus(stderr, "The number of new sub keys: %d\n",
336
import_result->new_sub_keys);
337
fprintf_plus(stderr, "The number of new signatures: %d\n",
338
import_result->new_signatures);
339
fprintf_plus(stderr, "The number of new revocations: %d\n",
340
import_result->new_revocations);
342
"The total number of secret keys read: %d\n",
343
import_result->secret_read);
345
"The number of imported secret keys: %d\n",
346
import_result->secret_imported);
348
"The number of unchanged secret keys: %d\n",
349
import_result->secret_unchanged);
350
fprintf_plus(stderr, "The number of keys not imported: %d\n",
351
import_result->not_imported);
352
for(gpgme_import_status_t import_status
353
= import_result->imports;
354
import_status != NULL;
355
import_status = import_status->next){
356
fprintf_plus(stderr, "Import status for key: %s\n",
358
if(import_status->result != GPG_ERR_NO_ERROR){
359
fprintf_plus(stderr, "Import result: %s: %s\n",
360
gpgme_strsource(import_status->result),
361
gpgme_strerror(import_status->result));
363
fprintf_plus(stderr, "Key status:\n");
365
import_status->status & GPGME_IMPORT_NEW
366
? "The key was new.\n"
367
: "The key was not new.\n");
369
import_status->status & GPGME_IMPORT_UID
370
? "The key contained new user IDs.\n"
371
: "The key did not contain new user IDs.\n");
373
import_status->status & GPGME_IMPORT_SIG
374
? "The key contained new signatures.\n"
375
: "The key did not contain new signatures.\n");
377
import_status->status & GPGME_IMPORT_SUBKEY
378
? "The key contained new sub keys.\n"
379
: "The key did not contain new sub keys.\n");
381
import_status->status & GPGME_IMPORT_SECRET
382
? "The key contained a secret key.\n"
383
: "The key did not contain a secret key.\n");
308
ret = (int)TEMP_FAILURE_RETRY(close(fd));
310
391
perror_plus("close");
414
493
if(result == NULL){
415
494
fprintf_plus(stderr, "gpgme_op_decrypt_result failed\n");
417
fprintf_plus(stderr, "Unsupported algorithm: %s\n",
418
result->unsupported_algorithm);
419
fprintf_plus(stderr, "Wrong key usage: %u\n",
420
result->wrong_key_usage);
496
if(result->unsupported_algorithm != NULL) {
497
fprintf_plus(stderr, "Unsupported algorithm: %s\n",
498
result->unsupported_algorithm);
500
fprintf_plus(stderr, "Wrong key usage: %s\n",
501
result->wrong_key_usage ? "Yes" : "No");
421
502
if(result->file_name != NULL){
422
503
fprintf_plus(stderr, "File name: %s\n", result->file_name);
823
900
/* Set effective uid to 0, return errno */
824
901
__attribute__((warn_unused_result))
825
error_t raise_privileges(void){
826
error_t old_errno = errno;
827
error_t ret_errno = 0;
902
int raise_privileges(void){
903
int old_errno = errno;
828
905
if(seteuid(0) == -1){
831
908
errno = old_errno;
835
912
/* Set effective and real user ID to 0. Return errno. */
836
913
__attribute__((warn_unused_result))
837
error_t raise_privileges_permanently(void){
838
error_t old_errno = errno;
839
error_t ret_errno = raise_privileges();
914
int raise_privileges_permanently(void){
915
int old_errno = errno;
916
int ret = raise_privileges();
841
918
errno = old_errno;
844
921
if(setuid(0) == -1){
847
924
errno = old_errno;
851
928
/* Set effective user ID to unprivileged saved user ID */
852
929
__attribute__((warn_unused_result))
853
error_t lower_privileges(void){
854
error_t old_errno = errno;
855
error_t ret_errno = 0;
930
int lower_privileges(void){
931
int old_errno = errno;
856
933
if(seteuid(uid) == -1){
859
936
errno = old_errno;
863
940
/* Lower privileges permanently */
864
941
__attribute__((warn_unused_result))
865
error_t lower_privileges_permanently(void){
866
error_t old_errno = errno;
867
error_t ret_errno = 0;
942
int lower_privileges_permanently(void){
943
int old_errno = errno;
868
945
if(setuid(uid) == -1){
871
948
errno = old_errno;
875
952
/* Helper function to add_local_route() and delete_local_route() */
1130
1209
goto mandos_end;
1133
memset(&to, 0, sizeof(to));
1134
1212
if(af == AF_INET6){
1135
((struct sockaddr_in6 *)&to)->sin6_family = (sa_family_t)af;
1136
ret = inet_pton(af, ip, &((struct sockaddr_in6 *)&to)->sin6_addr);
1213
struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&to;
1214
*to6 = (struct sockaddr_in6){ .sin6_family = (sa_family_t)af };
1215
ret = inet_pton(af, ip, &to6->sin6_addr);
1137
1216
} else { /* IPv4 */
1138
((struct sockaddr_in *)&to)->sin_family = (sa_family_t)af;
1139
ret = inet_pton(af, ip, &((struct sockaddr_in *)&to)->sin_addr);
1217
struct sockaddr_in *to4 = (struct sockaddr_in *)&to;
1218
*to4 = (struct sockaddr_in){ .sin_family = (sa_family_t)af };
1219
ret = inet_pton(af, ip, &to4->sin_addr);
1626
1716
__attribute__((nonnull, warn_unused_result))
1627
1717
bool get_flags(const char *ifname, struct ifreq *ifr){
1631
1721
int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1634
1724
perror_plus("socket");
1638
strcpy(ifr->ifr_name, ifname);
1728
strncpy(ifr->ifr_name, ifname, IF_NAMESIZE);
1729
ifr->ifr_name[IF_NAMESIZE-1] = '\0'; /* NUL terminate */
1639
1730
ret = ioctl(s, SIOCGIFFLAGS, ifr);
1643
1734
perror_plus("ioctl SIOCGIFFLAGS");
1737
if((close(s) == -1) and debug){
1739
perror_plus("close");
1744
if((close(s) == -1) and debug){
1746
perror_plus("close");
1915
#if __GLIBC_PREREQ(2, 15)
2015
int devnull = (int)TEMP_FAILURE_RETRY(open("/dev/null", O_RDONLY));
2017
perror_plus("open(\"/dev/null\", O_RDONLY)");
1916
2020
int numhooks = scandirat(hookdir_fd, ".", &direntries,
1917
2021
runnable_hook, alphasort);
1918
#else /* not __GLIBC_PREREQ(2, 15) */
1919
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1921
#endif /* not __GLIBC_PREREQ(2, 15) */
1922
#else /* not __GLIBC__ */
1923
int numhooks = scandir(hookdir, &direntries, runnable_hook,
1925
#endif /* not __GLIBC__ */
1926
2022
if(numhooks == -1){
1927
2023
perror_plus("scandir");
1930
2027
struct dirent *direntry;
1932
int devnull = (int)TEMP_FAILURE_RETRY(open("/dev/null", O_RDONLY));
1934
perror_plus("open(\"/dev/null\", O_RDONLY)");
1937
2029
for(int i = 0; i < numhooks; i++){
1938
2030
direntry = direntries[i];
2287
2381
int main(int argc, char *argv[]){
2288
2382
mandos_context mc = { .server = NULL, .dh_bits = 0,
2289
.priority = "SECURE256:!CTYPE-X.509:"
2290
"+CTYPE-OPENPGP:!RSA", .current_server = NULL,
2291
.interfaces = NULL, .interfaces_size = 0 };
2383
.priority = "SECURE256:!CTYPE-X.509"
2384
":+CTYPE-OPENPGP:!RSA:+SIGN-DSA-SHA256",
2385
.current_server = NULL, .interfaces = NULL,
2386
.interfaces_size = 0 };
2292
2387
AvahiSServiceBrowser *sb = NULL;
2293
2388
error_t ret_errno;
2475
2570
.args_doc = "",
2476
2571
.doc = "Mandos client -- Get and decrypt"
2477
2572
" passwords from a Mandos server" };
2478
ret = argp_parse(&argp, argc, argv,
2479
ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
2573
ret_errno = argp_parse(&argp, argc, argv,
2574
ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
2486
2581
perror_plus("argp_parse");
2487
2582
exitcode = EX_OSERR;
2545
TEMP_FAILURE_RETRY(close(pubkey_fd));
2644
if(dh_params_file != NULL
2645
and strcmp(dh_params_file, PATHDIR "/dhparams.pem" ) == 0){
2646
int dhparams_fd = open(dh_params_file, O_RDONLY);
2647
if(dhparams_fd == -1){
2648
perror_plus("open");
2650
ret = (int)TEMP_FAILURE_RETRY(fstat(dhparams_fd, &st));
2652
perror_plus("fstat");
2654
if(S_ISREG(st.st_mode)
2655
and st.st_uid == 0 and st.st_gid == 0){
2656
ret = fchown(dhparams_fd, uid, gid);
2658
perror_plus("fchown");
2549
2666
/* Lower privileges */
2550
ret_errno = lower_privileges();
2667
ret = lower_privileges();
2553
2670
perror_plus("Failed to lower privileges");
3017
3140
free(interfaces_to_take_down);
3018
3141
free(interfaces_hooks);
3143
void clean_dir_at(int base, const char * const dirname,
3145
struct dirent **direntries = NULL;
3147
int dir_fd = (int)TEMP_FAILURE_RETRY(openat(base, dirname,
3153
perror_plus("open");
3156
int numentries = scandirat(dir_fd, ".", &direntries,
3157
notdotentries, alphasort);
3158
if(numentries >= 0){
3159
for(int i = 0; i < numentries; i++){
3161
fprintf_plus(stderr, "Unlinking \"%s/%s\"\n",
3162
dirname, direntries[i]->d_name);
3164
dret = unlinkat(dir_fd, direntries[i]->d_name, 0);
3166
if(errno == EISDIR){
3167
dret = unlinkat(dir_fd, direntries[i]->d_name,
3170
if((dret == -1) and (errno == ENOTEMPTY)
3171
and (strcmp(direntries[i]->d_name, "private-keys-v1.d")
3172
== 0) and (level == 0)){
3173
/* Recurse only in this special case */
3174
clean_dir_at(dir_fd, direntries[i]->d_name, level+1);
3177
if((dret == -1) and (errno != ENOENT)){
3178
fprintf_plus(stderr, "unlink(\"%s/%s\"): %s\n", dirname,
3179
direntries[i]->d_name, strerror(errno));
3182
free(direntries[i]);
3185
/* need to clean even if 0 because man page doesn't specify */
3187
dret = unlinkat(base, dirname, AT_REMOVEDIR);
3188
if(dret == -1 and errno != ENOENT){
3189
perror_plus("rmdir");
3192
perror_plus("scandirat");
3020
3197
/* Removes the GPGME temp directory and all files inside */
3021
3198
if(tempdir != NULL){
3022
struct dirent **direntries = NULL;
3023
int tempdir_fd = (int)TEMP_FAILURE_RETRY(open(tempdir, O_RDONLY
3027
if(tempdir_fd == -1){
3028
perror_plus("open");
3031
#if __GLIBC_PREREQ(2, 15)
3032
int numentries = scandirat(tempdir_fd, ".", &direntries,
3033
notdotentries, alphasort);
3034
#else /* not __GLIBC_PREREQ(2, 15) */
3035
int numentries = scandir(tempdir, &direntries, notdotentries,
3037
#endif /* not __GLIBC_PREREQ(2, 15) */
3038
#else /* not __GLIBC__ */
3039
int numentries = scandir(tempdir, &direntries, notdotentries,
3041
#endif /* not __GLIBC__ */
3042
if(numentries >= 0){
3043
for(int i = 0; i < numentries; i++){
3044
ret = unlinkat(tempdir_fd, direntries[i]->d_name, 0);
3046
fprintf_plus(stderr, "unlinkat(open(\"%s\", O_RDONLY),"
3047
" \"%s\", 0): %s\n", tempdir,
3048
direntries[i]->d_name, strerror(errno));
3050
free(direntries[i]);
3053
/* need to clean even if 0 because man page doesn't specify */
3055
if(numentries == -1){
3056
perror_plus("scandir");
3058
ret = rmdir(tempdir);
3059
if(ret == -1 and errno != ENOENT){
3060
perror_plus("rmdir");
3063
TEMP_FAILURE_RETRY(close(tempdir_fd));
3199
clean_dir_at(-1, tempdir, 0);