569
575
safer_gnutls_strerror(ret));
578
if(mc->dh_bits == 0){
579
/* Find out the optimal number of DH bits */
580
/* Try to read the private key file */
581
gnutls_datum_t buffer = { .data = NULL, .size = 0 };
583
int secfile = open(seckeyfilename, O_RDONLY);
584
size_t buffer_capacity = 0;
586
buffer_capacity = incbuffer((char **)&buffer.data,
588
(size_t)buffer_capacity);
589
if(buffer_capacity == 0){
590
perror_plus("incbuffer");
595
ssize_t bytes_read = read(secfile, buffer.data + buffer.size,
601
/* check bytes_read for failure */
608
buffer.size += (unsigned int)bytes_read;
612
/* If successful, use buffer to parse private key */
613
gnutls_sec_param_t sec_param = GNUTLS_SEC_PARAM_ULTRA;
614
if(buffer.data != NULL){
616
gnutls_openpgp_privkey_t privkey = NULL;
617
ret = gnutls_openpgp_privkey_init(&privkey);
618
if(ret != GNUTLS_E_SUCCESS){
619
fprintf_plus(stderr, "Error initializing OpenPGP key"
620
" structure: %s", safer_gnutls_strerror(ret));
624
ret = gnutls_openpgp_privkey_import(privkey, &buffer,
625
GNUTLS_OPENPGP_FMT_BASE64,
627
if(ret != GNUTLS_E_SUCCESS){
628
fprintf_plus(stderr, "Error importing OpenPGP key : %s",
629
safer_gnutls_strerror(ret));
635
/* Use private key to suggest an appropriate sec_param */
636
sec_param = gnutls_openpgp_privkey_sec_param(privkey);
637
gnutls_openpgp_privkey_deinit(privkey);
639
fprintf_plus(stderr, "This OpenPGP key implies using a"
640
" GnuTLS security parameter \"%s\".\n",
641
safe_string(gnutls_sec_param_get_name
647
if(sec_param == GNUTLS_SEC_PARAM_UNKNOWN){
648
/* Err on the side of caution */
649
sec_param = GNUTLS_SEC_PARAM_ULTRA;
651
fprintf_plus(stderr, "Falling back to security parameter"
653
safe_string(gnutls_sec_param_get_name
658
uret = gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, sec_param);
662
fprintf_plus(stderr, "A \"%s\" GnuTLS security parameter"
663
" implies %u DH bits; using that.\n",
664
safe_string(gnutls_sec_param_get_name
669
fprintf_plus(stderr, "Failed to get implied number of DH"
670
" bits for security parameter \"%s\"): %s\n",
671
safe_string(gnutls_sec_param_get_name(sec_param)),
672
safer_gnutls_strerror(ret));
676
fprintf_plus(stderr, "DH bits explicitly set to %u\n",
572
679
ret = gnutls_dh_params_generate2(mc->dh_params, mc->dh_bits);
573
680
if(ret != GNUTLS_E_SUCCESS){
574
fprintf_plus(stderr, "Error in GnuTLS prime generation: %s\n",
575
safer_gnutls_strerror(ret));
681
fprintf_plus(stderr, "Error in GnuTLS prime generation (%u bits):"
682
" %s\n", mc->dh_bits, safer_gnutls_strerror(ret));
702
809
return ret_errno;
705
/* Helper function to add_local_route() and remove_local_route() */
812
/* Helper function to add_local_route() and delete_local_route() */
706
813
__attribute__((nonnull, warn_unused_result))
707
static bool add_remove_local_route(const bool add,
814
static bool add_delete_local_route(const bool add,
708
815
const char *address,
709
816
AvahiIfIndex if_index){
711
818
char helper[] = "mandos-client-iprouteadddel";
712
819
char add_arg[] = "add";
713
char remove_arg[] = "remove";
820
char delete_arg[] = "delete";
821
char debug_flag[] = "--debug";
714
822
char *pluginhelperdir = getenv("MANDOSPLUGINHELPERDIR");
715
823
if(pluginhelperdir == NULL){
886
if(helperdir_fd == -1){
888
_exit(EX_UNAVAILABLE);
778
890
int helper_fd = (int)TEMP_FAILURE_RETRY(openat(helperdir_fd,
779
891
helper, O_RDONLY));
893
perror_plus("openat");
894
_exit(EX_UNAVAILABLE);
780
896
TEMP_FAILURE_RETRY(close(helperdir_fd));
782
898
#pragma GCC diagnostic push
783
899
#pragma GCC diagnostic ignored "-Wcast-qual"
785
901
if(fexecve(helper_fd, (char *const [])
786
{ helper, add ? add_arg : remove_arg, (char *)address,
787
interface, NULL }, environ) == -1){
902
{ helper, add ? add_arg : delete_arg, (char *)address,
903
interface, debug ? debug_flag : NULL, NULL },
789
906
#pragma GCC diagnostic pop
842
959
__attribute__((nonnull, warn_unused_result))
843
960
static bool add_local_route(const char *address,
844
961
AvahiIfIndex if_index){
845
return add_remove_local_route(true, address, if_index);
963
fprintf_plus(stderr, "Adding route to %s\n", address);
965
return add_delete_local_route(true, address, if_index);
848
968
__attribute__((nonnull, warn_unused_result))
849
static bool remove_local_route(const char *address,
969
static bool delete_local_route(const char *address,
850
970
AvahiIfIndex if_index){
851
return add_remove_local_route(false, address, if_index);
972
fprintf_plus(stderr, "Removing route to %s\n", address);
974
return add_delete_local_route(false, address, if_index);
854
977
/* Called when a Mandos server is found */
2097
2224
int main(int argc, char *argv[]){
2098
mandos_context mc = { .server = NULL, .dh_bits = 1024,
2225
mandos_context mc = { .server = NULL, .dh_bits = 0,
2099
2226
.priority = "SECURE256:!CTYPE-X.509:"
2100
"+CTYPE-OPENPGP", .current_server = NULL,
2227
"+CTYPE-OPENPGP:!RSA", .current_server = NULL,
2101
2228
.interfaces = NULL, .interfaces_size = 0 };
2102
2229
AvahiSServiceBrowser *sb = NULL;
2103
2230
error_t ret_errno;