/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

  • Committer: Teddy Hogeborn
  • Date: 2009-09-06 05:37:34 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090906053734-uf180lq30ivv4nfy
* plugin-runner.c (getplugin, add_environment, main): Handle EINTR
                                                      properly.

* plugins.d/mandos-client.c (start_mandos_communication): Bug fix:
  move out "decrypted_buffer_size" to where it is needed.

* plugins.d/splashy.c (termination_handler): Save signal received.
  (main): Check return value from "sigaddset()".

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
        }
213
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
 
709
726
  
710
727
  /* Read and execute any executable in the plugin directory*/
711
728
  while(true){
712
 
    dirst = readdir(dir);
 
729
    do{
 
730
      dirst = readdir(dir);
 
731
    }while(dirst == NULL and errno == EINTR);
713
732
    
714
733
    /* All directory entries have been processed */
715
734
    if(dirst == NULL){
769
788
    
770
789
    char *filename;
771
790
    if(plugindir == NULL){
772
 
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
 
791
      ret = TEMP_FAILURE_RETRY(asprintf(&filename, PDIR "/%s",
 
792
                                        dirst->d_name));
773
793
    } else {
774
 
      ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
794
      ret = TEMP_FAILURE_RETRY(asprintf(&filename, "%s/%s", plugindir,
 
795
                                        dirst->d_name));
775
796
    }
776
797
    if(ret < 0){
777
798
      perror("asprintf");
778
799
      continue;
779
800
    }
780
801
    
781
 
    ret = stat(filename, &st);
 
802
    ret = TEMP_FAILURE_RETRY(stat(filename, &st));
782
803
    if(ret == -1){
783
804
      perror("stat");
784
805
      free(filename);
786
807
    }
787
808
    
788
809
    /* Ignore non-executable files */
789
 
    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)){
790
812
      if(debug){
791
813
        fprintf(stderr, "Ignoring plugin dir entry \"%s\""
792
814
                " with bad type or mode\n", filename);
838
860
    }
839
861
    
840
862
    int pipefd[2];
841
 
    ret = pipe(pipefd);
 
863
    ret = TEMP_FAILURE_RETRY(pipe(pipefd));
842
864
    if(ret == -1){
843
865
      perror("pipe");
844
866
      exitstatus = EXIT_FAILURE;
858
880
      goto fallback;
859
881
    }
860
882
    /* Block SIGCHLD until process is safely in process list */
861
 
    ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
883
    ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_BLOCK,
 
884
                                         &sigchld_action.sa_mask,
 
885
                                         NULL));
862
886
    if(ret < 0){
863
887
      perror("sigprocmask");
864
888
      exitstatus = EXIT_FAILURE;
865
889
      goto fallback;
866
890
    }
867
891
    /* Starting a new process to be watched */
868
 
    pid_t pid = fork();
 
892
    pid_t pid;
 
893
    do{
 
894
      pid = fork();
 
895
    }while(pid == -1 and errno == EINTR);
869
896
    if(pid == -1){
870
897
      perror("fork");
871
898
      exitstatus = EXIT_FAILURE;
909
936
      /* no return */
910
937
    }
911
938
    /* Parent process */
912
 
    close(pipefd[1]);           /* Close unused write end of pipe */
 
939
    TEMP_FAILURE_RETRY(close(pipefd[1])); /* Close unused write end of
 
940
                                             pipe */
913
941
    free(filename);
914
942
    plugin *new_plugin = getplugin(dirst->d_name);
915
943
    if(new_plugin == NULL){
916
944
      perror("getplugin");
917
 
      ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
945
      ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_UNBLOCK,
 
946
                                           &sigchld_action.sa_mask,
 
947
                                           NULL));
918
948
      if(ret < 0){
919
949
        perror("sigprocmask");
920
950
      }
927
957
    
928
958
    /* Unblock SIGCHLD so signal handler can be run if this process
929
959
       has already completed */
930
 
    ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
960
    ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_UNBLOCK,
 
961
                                         &sigchld_action.sa_mask,
 
962
                                         NULL));
931
963
    if(ret < 0){
932
964
      perror("sigprocmask");
933
965
      exitstatus = EXIT_FAILURE;
941
973
    }
942
974
  }
943
975
  
944
 
  closedir(dir);
 
976
  TEMP_FAILURE_RETRY(closedir(dir));
945
977
  dir = NULL;
946
978
  free_plugin(getplugin(NULL));
947
979
  
960
992
  while(plugin_list){
961
993
    fd_set rfds = rfds_all;
962
994
    int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
963
 
    if(select_ret == -1){
 
995
    if(select_ret == -1 and errno != EINTR){
964
996
      perror("select");
965
997
      exitstatus = EXIT_FAILURE;
966
998
      goto fallback;
997
1029
          FD_CLR(proc->fd, &rfds_all);
998
1030
          
999
1031
          /* Block signal while modifying process_list */
1000
 
          ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
1032
          ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_BLOCK,
 
1033
                                               &sigchld_action.sa_mask,
 
1034
                                               NULL));
1001
1035
          if(ret < 0){
1002
1036
            perror("sigprocmask");
1003
1037
            exitstatus = EXIT_FAILURE;
1009
1043
          proc = next_plugin;
1010
1044
          
1011
1045
          /* We are done modifying process list, so unblock signal */
1012
 
          ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask,
1013
 
                            NULL);
 
1046
          ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_UNBLOCK,
 
1047
                                               &sigchld_action.sa_mask,
 
1048
                                               NULL));
1014
1049
          if(ret < 0){
1015
1050
            perror("sigprocmask");
1016
1051
            exitstatus = EXIT_FAILURE;
1053
1088
        proc->buffer_size += BUFFER_SIZE;
1054
1089
      }
1055
1090
      /* Read from the process */
1056
 
      sret = read(proc->fd, proc->buffer + proc->buffer_length,
1057
 
                  BUFFER_SIZE);
 
1091
      sret = TEMP_FAILURE_RETRY(read(proc->fd,
 
1092
                                     proc->buffer
 
1093
                                     + proc->buffer_length,
 
1094
                                     BUFFER_SIZE));
1058
1095
      if(sret < 0){
1059
1096
        /* Read error from this process; ignore the error */
1060
1097
        proc = proc->next;