/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 plugin-runner.c

* plugin-runner.c: Only space changes.
* plugins.d/mandos-client.c: - '' -
* plugins.d/password-prompt.c: - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  -*- coding: utf-8; mode: c; mode: orgtbl -*- */
 
1
/*  -*- coding: utf-8 -*- */
2
2
/*
3
3
 * Mandos plugin runner - Run Mandos plugins
4
4
 *
38
38
#include <sys/select.h>         /* fd_set, select(), FD_ZERO(),
39
39
                                   FD_SET(), FD_ISSET(), FD_CLR */
40
40
#include <sys/wait.h>           /* wait(), waitpid(), WIFEXITED(),
41
 
                                   WEXITSTATUS(), WTERMSIG(),
42
 
                                   WCOREDUMP() */
 
41
                                   WEXITSTATUS() */
43
42
#include <sys/stat.h>           /* struct stat, stat(), S_ISREG() */
44
43
#include <iso646.h>             /* and, or, not */
45
44
#include <dirent.h>             /* DIR, struct dirent, opendir(),
53
52
                                   close() */
54
53
#include <fcntl.h>              /* fcntl(), F_GETFD, F_SETFD,
55
54
                                   FD_CLOEXEC */
56
 
#include <string.h>             /* strsep, strlen(), asprintf(),
57
 
                                   strsignal() */
 
55
#include <string.h>             /* strsep, strlen(), asprintf() */
58
56
#include <errno.h>              /* errno */
59
57
#include <argp.h>               /* struct argp_option, struct
60
58
                                   argp_state, struct argp,
64
62
#include <signal.h>             /* struct sigaction, sigemptyset(),
65
63
                                   sigaddset(), sigaction(),
66
64
                                   sigprocmask(), SIG_BLOCK, SIGCHLD,
67
 
                                   SIG_UNBLOCK, kill(), sig_atomic_t
68
 
                                */
 
65
                                   SIG_UNBLOCK, kill() */
69
66
#include <errno.h>              /* errno, EBADF */
70
 
#include <inttypes.h>           /* intmax_t, PRIdMAX, strtoimax() */
71
67
 
72
68
#define BUFFER_SIZE 256
73
69
 
84
80
  char **environ;
85
81
  int envc;
86
82
  bool disabled;
87
 
  
 
83
 
88
84
  /* Variables used for running processes*/
89
85
  pid_t pid;
90
86
  int fd;
92
88
  size_t buffer_size;
93
89
  size_t buffer_length;
94
90
  bool eof;
95
 
  volatile sig_atomic_t completed;
96
 
  int status;
 
91
  volatile bool completed;
 
92
  volatile int status;
97
93
  struct plugin *next;
98
94
} plugin;
99
95
 
110
106
    }
111
107
  }
112
108
  /* Create a new plugin */
113
 
  plugin *new_plugin = NULL;
114
 
  do {
115
 
    new_plugin = malloc(sizeof(plugin));
116
 
  } while(new_plugin == NULL and errno == EINTR);
 
109
  plugin *new_plugin = malloc(sizeof(plugin));
117
110
  if(new_plugin == NULL){
118
111
    return NULL;
119
112
  }
120
113
  char *copy_name = NULL;
121
114
  if(name != NULL){
122
 
    do {
123
 
      copy_name = strdup(name);
124
 
    } while(copy_name == NULL and errno == EINTR);
 
115
    copy_name = strdup(name);
125
116
    if(copy_name == NULL){
126
 
      free(new_plugin);
127
117
      return NULL;
128
118
    }
129
119
  }
130
120
  
131
 
  *new_plugin = (plugin){ .name = copy_name,
132
 
                          .argc = 1,
133
 
                          .disabled = false,
134
 
                          .next = plugin_list };
 
121
  *new_plugin = (plugin) { .name = copy_name,
 
122
                           .argc = 1,
 
123
                           .disabled = false,
 
124
                           .next = plugin_list };
135
125
  
136
 
  do {
137
 
    new_plugin->argv = malloc(sizeof(char *) * 2);
138
 
  } while(new_plugin->argv == NULL and errno == EINTR);
 
126
  new_plugin->argv = malloc(sizeof(char *) * 2);
139
127
  if(new_plugin->argv == NULL){
140
128
    free(copy_name);
141
129
    free(new_plugin);
144
132
  new_plugin->argv[0] = copy_name;
145
133
  new_plugin->argv[1] = NULL;
146
134
  
147
 
  do {
148
 
    new_plugin->environ = malloc(sizeof(char *));
149
 
  } while(new_plugin->environ == NULL and errno == EINTR);
 
135
  new_plugin->environ = malloc(sizeof(char *));
150
136
  if(new_plugin->environ == NULL){
151
137
    free(copy_name);
152
138
    free(new_plugin->argv);
164
150
static bool add_to_char_array(const char *new, char ***array,
165
151
                              int *len){
166
152
  /* Resize the pointed-to array to hold one more pointer */
167
 
  do {
168
 
    *array = realloc(*array, sizeof(char *)
169
 
                     * (size_t) ((*len) + 2));
170
 
  } while(*array == NULL and errno == EINTR);
 
153
  *array = realloc(*array, sizeof(char *)
 
154
                   * (size_t) ((*len) + 2));
171
155
  /* Malloc check */
172
156
  if(*array == NULL){
173
157
    return false;
174
158
  }
175
159
  /* Make a copy of the new string */
176
 
  char *copy;
177
 
  do {
178
 
    copy = strdup(new);
179
 
  } while(copy == NULL and errno == EINTR);
 
160
  char *copy = strdup(new);
180
161
  if(copy == NULL){
181
162
    return false;
182
163
  }
208
189
    if(strncmp(*e, def, namelen + 1) == 0){
209
190
      /* It already exists */
210
191
      if(replace){
211
 
        char *new;
212
 
        do {
213
 
          new = realloc(*e, strlen(def) + 1);
214
 
        } while(new == NULL and errno == EINTR);
 
192
        char *new = realloc(*e, strlen(def) + 1);
215
193
        if(new == NULL){
216
194
          return false;
217
195
        }
227
205
/*
228
206
 * Based on the example in the GNU LibC manual chapter 13.13 "File
229
207
 * Descriptor Flags".
230
 
 | [[info:libc:Descriptor%20Flags][File Descriptor Flags]] |
 
208
 * *Note File Descriptor Flags:(libc)Descriptor Flags.
231
209
 */
232
210
static int set_cloexec_flag(int fd){
233
 
  int ret = TEMP_FAILURE_RETRY(fcntl(fd, F_GETFD, 0));
 
211
  int ret = fcntl(fd, F_GETFD, 0);
234
212
  /* If reading the flags failed, return error indication now. */
235
213
  if(ret < 0){
236
214
    return ret;
237
215
  }
238
216
  /* Store modified flag word in the descriptor. */
239
 
  return TEMP_FAILURE_RETRY(fcntl(fd, F_SETFD, ret | FD_CLOEXEC));
 
217
  return fcntl(fd, F_SETFD, ret | FD_CLOEXEC);
240
218
}
241
219
 
242
220
 
243
221
/* Mark processes as completed when they exit, and save their exit
244
222
   status. */
245
223
static void handle_sigchld(__attribute__((unused)) int sig){
246
 
  int old_errno = errno;
247
224
  while(true){
248
225
    plugin *proc = plugin_list;
249
226
    int status;
253
230
      break;
254
231
    }
255
232
    if(pid == -1){
256
 
      if(errno == ECHILD){
257
 
        /* No child processes */
258
 
        break;
 
233
      if(errno != ECHILD){
 
234
        perror("waitpid");
259
235
      }
260
 
      perror("waitpid");
 
236
      /* No child processes */
 
237
      break;
261
238
    }
262
239
    
263
240
    /* A child exited, find it in process_list */
269
246
      continue;
270
247
    }
271
248
    proc->status = status;
272
 
    proc->completed = 1;
 
249
    proc->completed = true;
273
250
  }
274
 
  errno = old_errno;
275
251
}
276
252
 
277
253
/* Prints out a password to stdout */
299
275
  }
300
276
  free(plugin_node->environ);
301
277
  free(plugin_node->buffer);
302
 
  
 
278
 
303
279
  /* Removes the plugin from the singly-linked list */
304
280
  if(plugin_node == plugin_list){
305
281
    /* First one - simple */
397
373
  };
398
374
  
399
375
  error_t parse_opt(int key, char *arg, __attribute__((unused))
400
 
                    struct argp_state *state){
401
 
    switch(key){
402
 
      char *tmp;
403
 
      intmax_t tmpmax;
 
376
                    struct argp_state *state) {
 
377
    switch(key) {
404
378
    case 'g':                   /* --global-options */
405
379
      if(arg != NULL){
406
 
        char *plugin_option;
407
 
        while((plugin_option = strsep(&arg, ",")) != NULL){
408
 
          if(plugin_option[0] == '\0'){
 
380
        char *p;
 
381
        while((p = strsep(&arg, ",")) != NULL){
 
382
          if(p[0] == '\0'){
409
383
            continue;
410
384
          }
411
 
          if(not add_argument(getplugin(NULL), plugin_option)){
 
385
          if(not add_argument(getplugin(NULL), p)){
412
386
            perror("add_argument");
413
387
            return ARGP_ERR_UNKNOWN;
414
388
          }
425
399
      break;
426
400
    case 'o':                   /* --options-for */
427
401
      if(arg != NULL){
428
 
        char *plugin_name = strsep(&arg, ":");
429
 
        if(plugin_name[0] == '\0'){
430
 
          break;
431
 
        }
432
 
        char *plugin_option;
433
 
        while((plugin_option = strsep(&arg, ",")) != NULL){
434
 
          if(not add_argument(getplugin(plugin_name), plugin_option)){
 
402
        char *p_name = strsep(&arg, ":");
 
403
        if(p_name[0] == '\0' or arg == NULL){
 
404
          break;
 
405
        }
 
406
        char *opt = strsep(&arg, ":");
 
407
        if(opt[0] == '\0' or opt == NULL){
 
408
          break;
 
409
        }
 
410
        char *p;
 
411
        while((p = strsep(&opt, ",")) != NULL){
 
412
          if(p[0] == '\0'){
 
413
            continue;
 
414
          }
 
415
          if(not add_argument(getplugin(p_name), p)){
435
416
            perror("add_argument");
436
417
            return ARGP_ERR_UNKNOWN;
437
418
          }
476
457
      plugindir = strdup(arg);
477
458
      if(plugindir == NULL){
478
459
        perror("strdup");
479
 
      }
 
460
      }      
480
461
      break;
481
462
    case 129:                   /* --config-file */
482
463
      /* This is already done by parse_opt_config_file() */
483
464
      break;
484
465
    case 130:                   /* --userid */
485
 
      errno = 0;
486
 
      tmpmax = strtoimax(arg, &tmp, 10);
487
 
      if(errno != 0 or tmp == arg or *tmp != '\0'
488
 
         or tmpmax != (uid_t)tmpmax){
489
 
        fprintf(stderr, "Bad user ID number: \"%s\", using %"
490
 
                PRIdMAX "\n", arg, (intmax_t)uid);
491
 
      } else {
492
 
        uid = (uid_t)tmpmax;
 
466
      /* In the GNU C library, uid_t is always unsigned int */
 
467
      ret = sscanf(arg, "%u", &uid);
 
468
      if(ret != 1){
 
469
        fprintf(stderr, "Bad user ID number: \"%s\", using %u\n", arg,
 
470
                uid);
493
471
      }
494
472
      break;
495
473
    case 131:                   /* --groupid */
496
 
      errno = 0;
497
 
      tmpmax = strtoimax(arg, &tmp, 10);
498
 
      if(errno != 0 or tmp == arg or *tmp != '\0'
499
 
         or tmpmax != (gid_t)tmpmax){
500
 
        fprintf(stderr, "Bad group ID number: \"%s\", using %"
501
 
                PRIdMAX "\n", arg, (intmax_t)gid);
502
 
      } else {
503
 
        gid = (gid_t)tmpmax;
 
474
      /* In the GNU C library, gid_t is always unsigned int */
 
475
      ret = sscanf(arg, "%u", &gid);
 
476
      if(ret != 1){
 
477
        fprintf(stderr, "Bad group ID number: \"%s\", using %u\n",
 
478
                arg, gid);
504
479
      }
505
480
      break;
506
481
    case 132:                   /* --debug */
530
505
     ignores everything but the --config-file option. */
531
506
  error_t parse_opt_config_file(int key, char *arg,
532
507
                                __attribute__((unused))
533
 
                                struct argp_state *state){
534
 
    switch(key){
 
508
                                struct argp_state *state) {
 
509
    switch(key) {
535
510
    case 'g':                   /* --global-options */
536
511
    case 'G':                   /* --global-env */
537
512
    case 'o':                   /* --options-for */
546
521
      if(argfile == NULL){
547
522
        perror("strdup");
548
523
      }
549
 
      break;
 
524
      break;      
550
525
    case 130:                   /* --userid */
551
526
    case 131:                   /* --groupid */
552
527
    case 132:                   /* --debug */
581
556
    conffp = fopen(AFILE, "r");
582
557
  } else {
583
558
    conffp = fopen(argfile, "r");
584
 
  }
 
559
  }  
585
560
  if(conffp != NULL){
586
561
    char *org_line = NULL;
587
562
    char *p, *arg, *new_arg, *line;
588
563
    size_t size = 0;
589
564
    const char whitespace_delims[] = " \r\t\f\v\n";
590
565
    const char comment_delim[] = "#";
591
 
    
 
566
 
592
567
    custom_argc = 1;
593
568
    custom_argv = malloc(sizeof(char*) * 2);
594
569
    if(custom_argv == NULL){
598
573
    }
599
574
    custom_argv[0] = argv[0];
600
575
    custom_argv[1] = NULL;
601
 
    
 
576
 
602
577
    /* for each line in the config file, strip whitespace and ignore
603
578
       commented text */
604
579
    while(true){
606
581
      if(sret == -1){
607
582
        break;
608
583
      }
609
 
      
 
584
 
610
585
      line = org_line;
611
586
      arg = strsep(&line, comment_delim);
612
587
      while((p = strsep(&arg, whitespace_delims)) != NULL){
631
606
          goto fallback;
632
607
        }
633
608
        custom_argv[custom_argc-1] = new_arg;
634
 
        custom_argv[custom_argc] = NULL;
 
609
        custom_argv[custom_argc] = NULL;        
635
610
      }
636
611
    }
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
 
    }
645
612
    free(org_line);
646
613
  } else {
647
614
    /* Check for harmful errors and go to fallback. Other errors might
680
647
      for(char **a = p->argv; *a != NULL; a++){
681
648
        fprintf(stderr, "\tArg: %s\n", *a);
682
649
      }
683
 
      fprintf(stderr, "...and %d environment variables\n", p->envc);
 
650
      fprintf(stderr, "...and %u environment variables\n", p->envc);
684
651
      for(char **a = p->environ; *a != NULL; a++){
685
652
        fprintf(stderr, "\t%s\n", *a);
686
653
      }
688
655
  }
689
656
  
690
657
  /* Strip permissions down to nobody */
 
658
  ret = setuid(uid);
 
659
  if(ret == -1){
 
660
    perror("setuid");
 
661
  }  
691
662
  setgid(gid);
692
663
  if(ret == -1){
693
664
    perror("setgid");
694
665
  }
695
 
  ret = setuid(uid);
696
 
  if(ret == -1){
697
 
    perror("setuid");
698
 
  }
699
666
  
700
667
  if(plugindir == NULL){
701
668
    dir = opendir(PDIR);
726
693
  
727
694
  /* Read and execute any executable in the plugin directory*/
728
695
  while(true){
729
 
    do {
730
 
      dirst = readdir(dir);
731
 
    } while(dirst == NULL and errno == EINTR);
 
696
    dirst = readdir(dir);
732
697
    
733
698
    /* All directory entries have been processed */
734
699
    if(dirst == NULL){
785
750
        continue;
786
751
      }
787
752
    }
788
 
    
 
753
 
789
754
    char *filename;
790
755
    if(plugindir == NULL){
791
 
      ret = TEMP_FAILURE_RETRY(asprintf(&filename, PDIR "/%s",
792
 
                                        dirst->d_name));
 
756
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
793
757
    } else {
794
 
      ret = TEMP_FAILURE_RETRY(asprintf(&filename, "%s/%s", plugindir,
795
 
                                        dirst->d_name));
 
758
      ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
796
759
    }
797
760
    if(ret < 0){
798
761
      perror("asprintf");
799
762
      continue;
800
763
    }
801
764
    
802
 
    ret = TEMP_FAILURE_RETRY(stat(filename, &st));
 
765
    ret = stat(filename, &st);
803
766
    if(ret == -1){
804
767
      perror("stat");
805
768
      free(filename);
806
769
      continue;
807
770
    }
808
 
    
 
771
 
809
772
    /* Ignore non-executable files */
810
 
    if(not S_ISREG(st.st_mode)
811
 
       or (TEMP_FAILURE_RETRY(access(filename, X_OK)) != 0)){
 
773
    if(not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
812
774
      if(debug){
813
775
        fprintf(stderr, "Ignoring plugin dir entry \"%s\""
814
776
                " with bad type or mode\n", filename);
860
822
    }
861
823
    
862
824
    int pipefd[2];
863
 
    ret = TEMP_FAILURE_RETRY(pipe(pipefd));
 
825
    ret = pipe(pipefd);
864
826
    if(ret == -1){
865
827
      perror("pipe");
866
828
      exitstatus = EXIT_FAILURE;
880
842
      goto fallback;
881
843
    }
882
844
    /* Block SIGCHLD until process is safely in process list */
883
 
    ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_BLOCK,
884
 
                                         &sigchld_action.sa_mask,
885
 
                                         NULL));
 
845
    ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
886
846
    if(ret < 0){
887
847
      perror("sigprocmask");
888
848
      exitstatus = EXIT_FAILURE;
889
849
      goto fallback;
890
850
    }
891
851
    /* Starting a new process to be watched */
892
 
    pid_t pid;
893
 
    do {
894
 
      pid = fork();
895
 
    } while(pid == -1 and errno == EINTR);
 
852
    pid_t pid = fork();
896
853
    if(pid == -1){
897
854
      perror("fork");
898
855
      exitstatus = EXIT_FAILURE;
936
893
      /* no return */
937
894
    }
938
895
    /* Parent process */
939
 
    TEMP_FAILURE_RETRY(close(pipefd[1])); /* Close unused write end of
940
 
                                             pipe */
 
896
    close(pipefd[1]);           /* Close unused write end of pipe */
941
897
    free(filename);
942
898
    plugin *new_plugin = getplugin(dirst->d_name);
943
899
    if(new_plugin == NULL){
944
900
      perror("getplugin");
945
 
      ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_UNBLOCK,
946
 
                                           &sigchld_action.sa_mask,
947
 
                                           NULL));
 
901
      ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
948
902
      if(ret < 0){
949
903
        perror("sigprocmask");
950
904
      }
957
911
    
958
912
    /* Unblock SIGCHLD so signal handler can be run if this process
959
913
       has already completed */
960
 
    ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_UNBLOCK,
961
 
                                         &sigchld_action.sa_mask,
962
 
                                         NULL));
 
914
    ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
963
915
    if(ret < 0){
964
916
      perror("sigprocmask");
965
917
      exitstatus = EXIT_FAILURE;
973
925
    }
974
926
  }
975
927
  
976
 
  TEMP_FAILURE_RETRY(closedir(dir));
 
928
  closedir(dir);
977
929
  dir = NULL;
978
 
  free_plugin(getplugin(NULL));
979
930
  
980
931
  for(plugin *p = plugin_list; p != NULL; p = p->next){
981
932
    if(p->pid != 0){
992
943
  while(plugin_list){
993
944
    fd_set rfds = rfds_all;
994
945
    int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
995
 
    if(select_ret == -1 and errno != EINTR){
 
946
    if(select_ret == -1){
996
947
      perror("select");
997
948
      exitstatus = EXIT_FAILURE;
998
949
      goto fallback;
1001
952
       from one of them */
1002
953
    for(plugin *proc = plugin_list; proc != NULL;){
1003
954
      /* Is this process completely done? */
1004
 
      if(proc->completed and proc->eof){
 
955
      if(proc->eof and proc->completed){
1005
956
        /* Only accept the plugin output if it exited cleanly */
1006
957
        if(not WIFEXITED(proc->status)
1007
958
           or WEXITSTATUS(proc->status) != 0){
1008
959
          /* Bad exit by plugin */
1009
 
          
 
960
 
1010
961
          if(debug){
1011
962
            if(WIFEXITED(proc->status)){
1012
 
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] exited with"
1013
 
                      " status %d\n", proc->name,
1014
 
                      (intmax_t) (proc->pid),
 
963
              fprintf(stderr, "Plugin %u exited with status %d\n",
 
964
                      (unsigned int) (proc->pid),
1015
965
                      WEXITSTATUS(proc->status));
1016
 
            } else if(WIFSIGNALED(proc->status)){
1017
 
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] killed by"
1018
 
                      " signal %d: %s\n", proc->name,
1019
 
                      (intmax_t) (proc->pid),
1020
 
                      WTERMSIG(proc->status),
1021
 
                      strsignal(WTERMSIG(proc->status)));
 
966
            } else if(WIFSIGNALED(proc->status)) {
 
967
              fprintf(stderr, "Plugin %u killed by signal %d\n",
 
968
                      (unsigned int) (proc->pid),
 
969
                      WTERMSIG(proc->status));
1022
970
            } else if(WCOREDUMP(proc->status)){
1023
 
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] dumped"
1024
 
                      " core\n", proc->name, (intmax_t) (proc->pid));
 
971
              fprintf(stderr, "Plugin %u dumped core\n",
 
972
                      (unsigned int) (proc->pid));
1025
973
            }
1026
974
          }
1027
975
          
1028
976
          /* Remove the plugin */
1029
977
          FD_CLR(proc->fd, &rfds_all);
1030
 
          
 
978
 
1031
979
          /* Block signal while modifying process_list */
1032
 
          ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_BLOCK,
1033
 
                                               &sigchld_action.sa_mask,
1034
 
                                               NULL));
 
980
          ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
1035
981
          if(ret < 0){
1036
982
            perror("sigprocmask");
1037
983
            exitstatus = EXIT_FAILURE;
1043
989
          proc = next_plugin;
1044
990
          
1045
991
          /* We are done modifying process list, so unblock signal */
1046
 
          ret = TEMP_FAILURE_RETRY(sigprocmask(SIG_UNBLOCK,
1047
 
                                               &sigchld_action.sa_mask,
1048
 
                                               NULL));
 
992
          ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask,
 
993
                            NULL);
1049
994
          if(ret < 0){
1050
995
            perror("sigprocmask");
1051
996
            exitstatus = EXIT_FAILURE;
1088
1033
        proc->buffer_size += BUFFER_SIZE;
1089
1034
      }
1090
1035
      /* Read from the process */
1091
 
      sret = TEMP_FAILURE_RETRY(read(proc->fd,
1092
 
                                     proc->buffer
1093
 
                                     + proc->buffer_length,
1094
 
                                     BUFFER_SIZE));
 
1036
      sret = read(proc->fd, proc->buffer + proc->buffer_length,
 
1037
                  BUFFER_SIZE);
1095
1038
      if(sret < 0){
1096
1039
        /* Read error from this process; ignore the error */
1097
1040
        proc = proc->next;
1105
1048
      }
1106
1049
    }
1107
1050
  }
1108
 
  
1109
 
  
 
1051
 
 
1052
 
1110
1053
 fallback:
1111
1054
  
1112
1055
  if(plugin_list == NULL or exitstatus != EXIT_SUCCESS){
1159
1102
  }
1160
1103
  
1161
1104
  /* Wait for any remaining child processes to terminate */
1162
 
  do {
 
1105
  do{
1163
1106
    ret = wait(NULL);
1164
1107
  } while(ret >= 0);
1165
1108
  if(errno != ECHILD){