/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to plugins.d/mandos-client.c

Merge from Björn:

* plugin-runner.c (main): Bug fix: For the "--options-for" option, do
                          not mangle arguments with colon characters.
                          Also support adding empty arguments.

* plugins.d/mandos-client.c: (mc): New global variable; moved from
                                   "main".
  (init_gpgme, pgp_packet_decrypt, init_gnutls_global,
  init_gnutls_session, start_mandos_communication): Removed "mc"
                                                    argument.  All
                                                    callers changed.

  (resolve_callback, browse_callback): Ignore "userdata" argument.
                                       All callers changed.
  (handle_sigterm): New function.
  (main): Add "handle_sigterm" as signal handler for SIGTERM before
          starting the main loop.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
37
37
 
38
38
#include <stdio.h>              /* fprintf(), stderr, fwrite(),
39
 
                                   stdout, ferror(), remove() */
 
39
                                   stdout, ferror(), sscanf(),
 
40
                                   remove() */
40
41
#include <stdint.h>             /* uint16_t, uint32_t */
41
42
#include <stddef.h>             /* NULL, size_t, ssize_t */
42
43
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
43
 
                                   srand(), strtof() */
 
44
                                   srand() */
44
45
#include <stdbool.h>            /* bool, false, true */
45
46
#include <string.h>             /* memset(), strcmp(), strlen(),
46
47
                                   strerror(), asprintf(), strcpy() */
55
56
#include <fcntl.h>              /* open() */
56
57
#include <dirent.h>             /* opendir(), struct dirent, readdir()
57
58
                                 */
58
 
#include <inttypes.h>           /* PRIu16, PRIdMAX, intmax_t,
59
 
                                   strtoimax() */
 
59
#include <inttypes.h>           /* PRIu16, intmax_t, SCNdMAX */
60
60
#include <assert.h>             /* assert() */
61
61
#include <errno.h>              /* perror(), errno */
62
62
#include <time.h>               /* nanosleep(), time() */
76
76
                                   argp_parse(), ARGP_KEY_ARG,
77
77
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
78
78
#include <signal.h>             /* sigemptyset(), sigaddset(),
79
 
                                   sigaction(), SIGTERM, sigaction,
80
 
                                   sig_atomic_t */
 
79
                                   sigaction(), SIGTERM, sigaction */
81
80
 
82
81
#ifdef __linux__
83
82
#include <sys/klog.h>           /* klogctl() */
84
 
#endif  /* __linux__ */
 
83
#endif
85
84
 
86
85
/* Avahi */
87
86
/* All Avahi types, constants and functions
134
133
} mandos_context;
135
134
 
136
135
/* global context so signal handler can reach it*/
137
 
mandos_context mc = { .simple_poll = NULL, .server = NULL,
138
 
                      .dh_bits = 1024, .priority = "SECURE256"
139
 
                      ":!CTYPE-X.509:+CTYPE-OPENPGP" };
 
136
mandos_context mc;
140
137
 
141
138
/*
142
 
 * Make additional room in "buffer" for at least BUFFER_SIZE more
143
 
 * bytes. "buffer_capacity" is how much is currently allocated,
144
 
 * "buffer_length" is how much is already used.
 
139
 * Make additional room in "buffer" for at least BUFFER_SIZE
 
140
 * additional bytes. "buffer_capacity" is how much is currently
 
141
 * allocated, "buffer_length" is how much is already used.
145
142
 */
146
143
size_t incbuffer(char **buffer, size_t buffer_length,
147
144
                  size_t buffer_capacity){
854
851
       the callback function is called the Avahi server will free the
855
852
       resolver for us. */
856
853
    
857
 
    if(avahi_s_service_resolver_new(mc.server, interface, protocol,
858
 
                                    name, type, domain, protocol, 0,
859
 
                                    resolve_callback, NULL) == NULL)
 
854
    if(!(avahi_s_service_resolver_new(mc.server, interface,
 
855
                                       protocol, name, type, domain,
 
856
                                       AVAHI_PROTO_INET6, 0,
 
857
                                       resolve_callback, NULL)))
860
858
      fprintf(stderr, "Avahi: Failed to resolve service '%s': %s\n",
861
859
              name, avahi_strerror(avahi_server_errno(mc.server)));
862
860
    break;
873
871
  }
874
872
}
875
873
 
876
 
sig_atomic_t quit_now = 0;
877
 
 
878
 
/* stop main loop after sigterm has been called */
879
874
static void handle_sigterm(__attribute__((unused)) int sig){
880
 
  if(quit_now){
881
 
    return;
882
 
  }
883
 
  quit_now = 1;
884
875
  int old_errno = errno;
885
 
  if(mc.simple_poll != NULL){
886
 
    avahi_simple_poll_quit(mc.simple_poll);
887
 
  }
 
876
  avahi_simple_poll_quit(mc.simple_poll);
888
877
  errno = old_errno;
889
878
}
890
879
 
893
882
  int error;
894
883
  int ret;
895
884
  intmax_t tmpmax;
896
 
  char *tmp;
 
885
  int numchars;
897
886
  int exitcode = EXIT_SUCCESS;
898
887
  const char *interface = "eth0";
899
888
  struct ifreq network;
907
896
  const char *seckey = PATHDIR "/" SECKEY;
908
897
  const char *pubkey = PATHDIR "/" PUBKEY;
909
898
  
 
899
  /* Initialize Mandos context */
 
900
  mc = (mandos_context){ .simple_poll = NULL, .server = NULL,
 
901
                         .dh_bits = 1024, .priority = "SECURE256"
 
902
                         ":!CTYPE-X.509:+CTYPE-OPENPGP" };
910
903
  bool gnutls_initialized = false;
911
904
  bool gpgme_initialized = false;
912
 
  float delay = 2.5f;
913
 
  
 
905
  double delay = 2.5;
 
906
 
914
907
  struct sigaction old_sigterm_action;
915
908
  struct sigaction sigterm_action = { .sa_handler = handle_sigterm };
916
909
  
970
963
        pubkey = arg;
971
964
        break;
972
965
      case 129:                 /* --dh-bits */
973
 
        errno = 0;
974
 
        tmpmax = strtoimax(arg, &tmp, 10);
975
 
        if(errno != 0 or tmp == arg or *tmp != '\0'
976
 
           or tmpmax != (typeof(mc.dh_bits))tmpmax){
 
966
        ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
967
        if(ret < 1 or tmpmax != (typeof(mc.dh_bits))tmpmax
 
968
           or arg[numchars] != '\0'){
977
969
          fprintf(stderr, "Bad number of DH bits\n");
978
970
          exit(EXIT_FAILURE);
979
971
        }
983
975
        mc.priority = arg;
984
976
        break;
985
977
      case 131:                 /* --delay */
986
 
        errno = 0;
987
 
        delay = strtof(arg, &tmp);
988
 
        if(errno != 0 or tmp == arg or *tmp != '\0'){
 
978
        ret = sscanf(arg, "%lf%n", &delay, &numchars);
 
979
        if(ret < 1 or arg[numchars] != '\0'){
989
980
          fprintf(stderr, "Bad delay\n");
990
981
          exit(EXIT_FAILURE);
991
982
        }
1012
1003
    }
1013
1004
  }
1014
1005
  
1015
 
  if(not debug){
1016
 
    avahi_set_log_function(empty_log);
1017
 
  }
1018
 
  
1019
 
  /* Initialize Avahi early so avahi_simple_poll_quit() can be called
1020
 
     from the signal handler */
1021
 
  /* Initialize the pseudo-RNG for Avahi */
1022
 
  srand((unsigned int) time(NULL));
1023
 
  mc.simple_poll = avahi_simple_poll_new();
1024
 
  if(mc.simple_poll == NULL){
1025
 
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1026
 
    exitcode = EXIT_FAILURE;
1027
 
    goto end;
1028
 
  }
1029
 
  
1030
 
  sigemptyset(&sigterm_action.sa_mask);
1031
 
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1032
 
  if(ret == -1){
1033
 
    perror("sigaddset");
1034
 
    exitcode = EXIT_FAILURE;
1035
 
    goto end;
1036
 
  }
1037
 
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1038
 
  if(ret == -1){
1039
 
    perror("sigaddset");
1040
 
    exitcode = EXIT_FAILURE;
1041
 
    goto end;
1042
 
  }
1043
 
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1044
 
  if(ret == -1){
1045
 
    perror("sigaddset");
1046
 
    exitcode = EXIT_FAILURE;
1047
 
    goto end;
1048
 
  }
1049
 
  ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
1050
 
  if(ret == -1){
1051
 
    perror("sigaction");
1052
 
    exitcode = EXIT_FAILURE;
1053
 
    goto end;
1054
 
  }  
1055
 
  
1056
1006
  /* If the interface is down, bring it up */
1057
1007
  if(interface[0] != '\0'){
1058
1008
#ifdef __linux__
1064
1014
      restore_loglevel = false;
1065
1015
      perror("klogctl");
1066
1016
    }
1067
 
#endif  /* __linux__ */
 
1017
#endif
1068
1018
    
1069
1019
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1070
1020
    if(sd < 0){
1077
1027
          perror("klogctl");
1078
1028
        }
1079
1029
      }
1080
 
#endif  /* __linux__ */
 
1030
#endif
1081
1031
      goto end;
1082
1032
    }
1083
1033
    strcpy(network.ifr_name, interface);
1091
1041
          perror("klogctl");
1092
1042
        }
1093
1043
      }
1094
 
#endif  /* __linux__ */
 
1044
#endif
1095
1045
      exitcode = EXIT_FAILURE;
1096
1046
      goto end;
1097
1047
    }
1108
1058
            perror("klogctl");
1109
1059
          }
1110
1060
        }
1111
 
#endif  /* __linux__ */
 
1061
#endif
1112
1062
        goto end;
1113
1063
      }
1114
1064
    }
1138
1088
        perror("klogctl");
1139
1089
      }
1140
1090
    }
1141
 
#endif  /* __linux__ */
 
1091
#endif
1142
1092
  }
1143
1093
  
1144
1094
  uid = getuid();
1197
1147
      goto end;
1198
1148
    }
1199
1149
    uint16_t port;
1200
 
    errno = 0;
1201
 
    tmpmax = strtoimax(address+1, &tmp, 10);
1202
 
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
1203
 
       or tmpmax != (uint16_t)tmpmax){
 
1150
    ret = sscanf(address+1, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
1151
    if(ret < 1 or tmpmax != (uint16_t)tmpmax
 
1152
       or address[numchars+1] != '\0'){
1204
1153
      fprintf(stderr, "Bad port number\n");
1205
1154
      exitcode = EXIT_FAILURE;
1206
1155
      goto end;
1223
1172
    }
1224
1173
    goto end;
1225
1174
  }
1226
 
    
 
1175
  
 
1176
  if(not debug){
 
1177
    avahi_set_log_function(empty_log);
 
1178
  }
 
1179
  
 
1180
  /* Initialize the pseudo-RNG for Avahi */
 
1181
  srand((unsigned int) time(NULL));
 
1182
  
 
1183
  /* Allocate main Avahi loop object */
 
1184
  mc.simple_poll = avahi_simple_poll_new();
 
1185
  if(mc.simple_poll == NULL){
 
1186
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
 
1187
    exitcode = EXIT_FAILURE;
 
1188
    goto end;
 
1189
  }
 
1190
  
1227
1191
  {
1228
1192
    AvahiServerConfig config;
1229
1193
    /* Do not publish any local Zeroconf records */
1252
1216
  
1253
1217
  /* Create the Avahi service browser */
1254
1218
  sb = avahi_s_service_browser_new(mc.server, if_index,
1255
 
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
 
1219
                                   AVAHI_PROTO_INET6, "_mandos._tcp",
1256
1220
                                   NULL, 0, browse_callback, NULL);
1257
1221
  if(sb == NULL){
1258
1222
    fprintf(stderr, "Failed to create service browser: %s\n",
1261
1225
    goto end;
1262
1226
  }
1263
1227
  
 
1228
  sigemptyset(&sigterm_action.sa_mask);
 
1229
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
 
1230
  if(ret == -1){
 
1231
    perror("sigaddset");
 
1232
    exitcode = EXIT_FAILURE;
 
1233
    goto end;
 
1234
  }
 
1235
  ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
 
1236
  if(ret == -1){
 
1237
    perror("sigaction");
 
1238
    exitcode = EXIT_FAILURE;
 
1239
    goto end;
 
1240
  }  
 
1241
  
1264
1242
  /* Run the main loop */
1265
1243
  
1266
1244
  if(debug){