/mandos/trunk

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

« back to all changes in this revision

Viewing changes to plugin-runner.c

merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  -*- coding: utf-8 -*- */
 
1
/*  -*- coding: utf-8; mode: c; mode: orgtbl -*- */
2
2
/*
3
3
 * Mandos plugin runner - Run Mandos plugins
4
4
 *
110
110
    }
111
111
  }
112
112
  /* Create a new plugin */
113
 
  plugin *new_plugin = malloc(sizeof(plugin));
 
113
  plugin *new_plugin = NULL;
 
114
  do {
 
115
    new_plugin = malloc(sizeof(plugin));
 
116
  } while(new_plugin == NULL and errno == EINTR);
114
117
  if(new_plugin == NULL){
115
118
    return NULL;
116
119
  }
117
120
  char *copy_name = NULL;
118
121
  if(name != NULL){
119
 
    copy_name = strdup(name);
 
122
    do {
 
123
      copy_name = strdup(name);
 
124
    } while(copy_name == NULL and errno == EINTR);
120
125
    if(copy_name == NULL){
121
126
      free(new_plugin);
122
127
      return NULL;
128
133
                          .disabled = false,
129
134
                          .next = plugin_list };
130
135
  
131
 
  new_plugin->argv = malloc(sizeof(char *) * 2);
 
136
  do {
 
137
    new_plugin->argv = malloc(sizeof(char *) * 2);
 
138
  } while(new_plugin->argv == NULL and errno == EINTR);
132
139
  if(new_plugin->argv == NULL){
133
140
    free(copy_name);
134
141
    free(new_plugin);
137
144
  new_plugin->argv[0] = copy_name;
138
145
  new_plugin->argv[1] = NULL;
139
146
  
140
 
  new_plugin->environ = malloc(sizeof(char *));
 
147
  do {
 
148
    new_plugin->environ = malloc(sizeof(char *));
 
149
  } while(new_plugin->environ == NULL and errno == EINTR);
141
150
  if(new_plugin->environ == NULL){
142
151
    free(copy_name);
143
152
    free(new_plugin->argv);
155
164
static bool add_to_char_array(const char *new, char ***array,
156
165
                              int *len){
157
166
  /* Resize the pointed-to array to hold one more pointer */
158
 
  *array = realloc(*array, sizeof(char *)
159
 
                   * (size_t) ((*len) + 2));
 
167
  do {
 
168
    *array = realloc(*array, sizeof(char *)
 
169
                     * (size_t) ((*len) + 2));
 
170
  } while(*array == NULL and errno == EINTR);
160
171
  /* Malloc check */
161
172
  if(*array == NULL){
162
173
    return false;
163
174
  }
164
175
  /* Make a copy of the new string */
165
 
  char *copy = strdup(new);
 
176
  char *copy;
 
177
  do {
 
178
    copy = strdup(new);
 
179
  } while(copy == NULL and errno == EINTR);
166
180
  if(copy == NULL){
167
181
    return false;
168
182
  }
194
208
    if(strncmp(*e, def, namelen + 1) == 0){
195
209
      /* It already exists */
196
210
      if(replace){
197
 
        char *new = realloc(*e, strlen(def) + 1);
 
211
        char *new;
 
212
        do {
 
213
          new = realloc(*e, strlen(def) + 1);
 
214
        } while(new == NULL and errno == EINTR);
198
215
        if(new == NULL){
199
216
          return false;
200
217
        }
210
227
/*
211
228
 * Based on the example in the GNU LibC manual chapter 13.13 "File
212
229
 * Descriptor Flags".
213
 
 * *Note File Descriptor Flags:(libc)Descriptor Flags.
 
230
 | [[info:libc:Descriptor%20Flags][File Descriptor Flags]] |
214
231
 */
215
232
static int set_cloexec_flag(int fd){
216
 
  int ret = fcntl(fd, F_GETFD, 0);
 
233
  int ret = TEMP_FAILURE_RETRY(fcntl(fd, F_GETFD, 0));
217
234
  /* If reading the flags failed, return error indication now. */
218
235
  if(ret < 0){
219
236
    return ret;
220
237
  }
221
238
  /* Store modified flag word in the descriptor. */
222
 
  return fcntl(fd, F_SETFD, ret | FD_CLOEXEC);
 
239
  return TEMP_FAILURE_RETRY(fcntl(fd, F_SETFD, ret | FD_CLOEXEC));
223
240
}
224
241
 
225
242
 
317
334
  fd_set rfds_all;
318
335
  int ret, maxfd = 0;
319
336
  ssize_t sret;
320
 
  intmax_t tmpmax;
321
337
  uid_t uid = 65534;
322
338
  gid_t gid = 65534;
323
339
  bool debug = false;
382
398
  
383
399
  error_t parse_opt(int key, char *arg, __attribute__((unused))
384
400
                    struct argp_state *state){
385
 
    char *tmp;
386
401
    switch(key){
 
402
      char *tmp;
 
403
      intmax_t tmpmax;
387
404
    case 'g':                   /* --global-options */
388
405
      if(arg != NULL){
389
406
        char *plugin_option;
617
634
        custom_argv[custom_argc] = NULL;
618
635
      }
619
636
    }
 
637
    do {
 
638
      ret = fclose(conffp);
 
639
    } while(ret == EOF and errno == EINTR);
 
640
    if(ret == EOF){
 
641
      perror("fclose");
 
642
      exitstatus = EXIT_FAILURE;
 
643
      goto fallback;
 
644
    }
620
645
    free(org_line);
621
646
  } else {
622
647
    /* Check for harmful errors and go to fallback. Other errors might
701
726
  
702
727
  /* Read and execute any executable in the plugin directory*/
703
728
  while(true){
704
 
    dirst = readdir(dir);
 
729
    do {
 
730
      dirst = readdir(dir);
 
731
    } while(dirst == NULL and errno == EINTR);
705
732
    
706
733
    /* All directory entries have been processed */
707
734
    if(dirst == NULL){
761
788
    
762
789
    char *filename;
763
790
    if(plugindir == NULL){
764
 
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
 
791
      ret = TEMP_FAILURE_RETRY(asprintf(&filename, PDIR "/%s",
 
792
                                        dirst->d_name));
765
793
    } else {
766
 
      ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
794
      ret = TEMP_FAILURE_RETRY(asprintf(&filename, "%s/%s", plugindir,
 
795
                                        dirst->d_name));
767
796
    }
768
797
    if(ret < 0){
769
798
      perror("asprintf");
770
799
      continue;
771
800
    }
772
801
    
773
 
    ret = stat(filename, &st);
 
802
    ret = TEMP_FAILURE_RETRY(stat(filename, &st));
774
803
    if(ret == -1){
775
804
      perror("stat");
776
805
      free(filename);
778
807
    }
779
808
    
780
809
    /* Ignore non-executable files */
781
 
    if(not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
 
810
    if(not S_ISREG(st.st_mode)
 
811
       or (TEMP_FAILURE_RETRY(access(filename, X_OK)) != 0)){
782
812
      if(debug){
783
813
        fprintf(stderr, "Ignoring plugin dir entry \"%s\""
784
814
                " with bad type or mode\n", filename);
830
860
    }
831
861
    
832
862
    int pipefd[2];
833
 
    ret = pipe(pipefd);
 
863
    ret = TEMP_FAILURE_RETRY(pipe(pipefd));
834
864
    if(ret == -1){
835
865
      perror("pipe");
836
866
      exitstatus = EXIT_FAILURE;
850
880
      goto fallback;
851
881
    }
852
882
    /* Block SIGCHLD until process is safely in process list */
853
 
    ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
883
    ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_BLOCK,
 
884
                                         &sigchld_action.sa_mask,
 
885
                                         NULL));
854
886
    if(ret < 0){
855
887
      perror("sigprocmask");
856
888
      exitstatus = EXIT_FAILURE;
857
889
      goto fallback;
858
890
    }
859
891
    /* Starting a new process to be watched */
860
 
    pid_t pid = fork();
 
892
    pid_t pid;
 
893
    do {
 
894
      pid = fork();
 
895
    } while(pid == -1 and errno == EINTR);
861
896
    if(pid == -1){
862
897
      perror("fork");
863
898
      exitstatus = EXIT_FAILURE;
901
936
      /* no return */
902
937
    }
903
938
    /* Parent process */
904
 
    close(pipefd[1]);           /* Close unused write end of pipe */
 
939
    TEMP_FAILURE_RETRY(close(pipefd[1])); /* Close unused write end of
 
940
                                             pipe */
905
941
    free(filename);
906
942
    plugin *new_plugin = getplugin(dirst->d_name);
907
943
    if(new_plugin == NULL){
908
944
      perror("getplugin");
909
 
      ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
945
      ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_UNBLOCK,
 
946
                                           &sigchld_action.sa_mask,
 
947
                                           NULL));
910
948
      if(ret < 0){
911
949
        perror("sigprocmask");
912
950
      }
919
957
    
920
958
    /* Unblock SIGCHLD so signal handler can be run if this process
921
959
       has already completed */
922
 
    ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
960
    ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_UNBLOCK,
 
961
                                         &sigchld_action.sa_mask,
 
962
                                         NULL));
923
963
    if(ret < 0){
924
964
      perror("sigprocmask");
925
965
      exitstatus = EXIT_FAILURE;
933
973
    }
934
974
  }
935
975
  
936
 
  closedir(dir);
 
976
  TEMP_FAILURE_RETRY(closedir(dir));
937
977
  dir = NULL;
938
978
  free_plugin(getplugin(NULL));
939
979
  
952
992
  while(plugin_list){
953
993
    fd_set rfds = rfds_all;
954
994
    int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
955
 
    if(select_ret == -1){
 
995
    if(select_ret == -1 and errno != EINTR){
956
996
      perror("select");
957
997
      exitstatus = EXIT_FAILURE;
958
998
      goto fallback;
989
1029
          FD_CLR(proc->fd, &rfds_all);
990
1030
          
991
1031
          /* Block signal while modifying process_list */
992
 
          ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
1032
          ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_BLOCK,
 
1033
                                               &sigchld_action.sa_mask,
 
1034
                                               NULL));
993
1035
          if(ret < 0){
994
1036
            perror("sigprocmask");
995
1037
            exitstatus = EXIT_FAILURE;
1001
1043
          proc = next_plugin;
1002
1044
          
1003
1045
          /* We are done modifying process list, so unblock signal */
1004
 
          ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask,
1005
 
                            NULL);
 
1046
          ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_UNBLOCK,
 
1047
                                               &sigchld_action.sa_mask,
 
1048
                                               NULL));
1006
1049
          if(ret < 0){
1007
1050
            perror("sigprocmask");
1008
1051
            exitstatus = EXIT_FAILURE;
1045
1088
        proc->buffer_size += BUFFER_SIZE;
1046
1089
      }
1047
1090
      /* Read from the process */
1048
 
      sret = read(proc->fd, proc->buffer + proc->buffer_length,
1049
 
                  BUFFER_SIZE);
 
1091
      sret = TEMP_FAILURE_RETRY(read(proc->fd,
 
1092
                                     proc->buffer
 
1093
                                     + proc->buffer_length,
 
1094
                                     BUFFER_SIZE));
1050
1095
      if(sret < 0){
1051
1096
        /* Read error from this process; ignore the error */
1052
1097
        proc = proc->next;
1114
1159
  }
1115
1160
  
1116
1161
  /* Wait for any remaining child processes to terminate */
1117
 
  do{
 
1162
  do {
1118
1163
    ret = wait(NULL);
1119
1164
  } while(ret >= 0);
1120
1165
  if(errno != ECHILD){