/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: 2014-03-06 02:26:04 UTC
  • Revision ID: teddy@recompile.se-20140306022604-4uc43taz25cflgi3
Bug fix: Free all memory and give better messages when memory is full.

* plugin-runner.c (add_to_char_array): Bug fix: If realloc fails, do
                                       not change old array pointer.
  (add_environment): Bug fix: If realloc fails, do not change old
                     environment pointer.  Also rename "e" to "envdef"
                     for clarity.
  (main): Bug fix: If realloc fails, do not change old pointers.  Also
          wrap "#pragma GCC" with "#ifdef ___GNUC___".
* plugins.d/mandos-client.c (incbuffer): Bug fix: if realloc fails,
                                         free old buffer.
  (run_network_hooks): Moved variables "directory" and "ret" to their
                       innermost possible scope.
  (take_down_interface): Moved variables "sd", "ret_errno", and
                         "ret_setflags" to their innermost possible
                         scope.
  (main): Removed variable "interfaces_hooks_size".  Also, if argz_add
          fails when adding all found interfaces, the error message
          will now be correct.  Also print error message if, after
          having taken up an interface, argz_add fails to add
          interface to list of interfaces to be taken down.
* plugins.d/mandos-client.xml (OPTIONS): Explain better what "none"
                                         means as argument to
                                         "--interface" by negating
                                         sense.
* plugins.d/password-prompt.c (fprintf_plus): Removed (unused).

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
static bool add_to_char_array(const char *new, char ***array,
176
176
                              int *len){
177
177
  /* Resize the pointed-to array to hold one more pointer */
 
178
  char **new_array = NULL;
178
179
  do {
179
 
    *array = realloc(*array, sizeof(char *)
180
 
                     * (size_t) ((*len) + 2));
181
 
  } while(*array == NULL and errno == EINTR);
 
180
    new_array = realloc(*array, sizeof(char *)
 
181
                        * (size_t) ((*len) + 2));
 
182
  } while(new_array == NULL and errno == EINTR);
182
183
  /* Malloc check */
183
 
  if(*array == NULL){
 
184
  if(new_array == NULL){
184
185
    return false;
185
186
  }
 
187
  *array = new_array;
186
188
  /* Make a copy of the new string */
187
189
  char *copy;
188
190
  do {
217
219
  /* namelen = length of name of environment variable */
218
220
  size_t namelen = (size_t)(strchrnul(def, '=') - def);
219
221
  /* Search for this environment variable */
220
 
  for(char **e = p->environ; *e != NULL; e++){
221
 
    if(strncmp(*e, def, namelen + 1) == 0){
 
222
  for(char **envdef = p->environ; *envdef != NULL; envdef++){
 
223
    if(strncmp(*envdef, def, namelen + 1) == 0){
222
224
      /* It already exists */
223
225
      if(replace){
224
 
        char *new;
 
226
        char *new_envdef;
225
227
        do {
226
 
          new = realloc(*e, strlen(def) + 1);
227
 
        } while(new == NULL and errno == EINTR);
228
 
        if(new == NULL){
 
228
          new_envdef = realloc(*envdef, strlen(def) + 1);
 
229
        } while(new_envdef == NULL and errno == EINTR);
 
230
        if(new_envdef == NULL){
229
231
          return false;
230
232
        }
231
 
        *e = new;
232
 
        strcpy(*e, def);
 
233
        *envdef = new_envdef;
 
234
        strcpy(*envdef, def);
233
235
      }
234
236
      return true;
235
237
    }
664
666
        }
665
667
        
666
668
        custom_argc += 1;
667
 
        custom_argv = realloc(custom_argv, sizeof(char *)
668
 
                              * ((unsigned int) custom_argc + 1));
669
 
        if(custom_argv == NULL){
670
 
          error(0, errno, "realloc");
671
 
          exitstatus = EX_OSERR;
672
 
          free(org_line);
673
 
          goto fallback;
 
669
        {
 
670
          char **new_argv = realloc(custom_argv, sizeof(char *)
 
671
                                    * ((unsigned int)
 
672
                                       custom_argc + 1));
 
673
          if(new_argv == NULL){
 
674
            error(0, errno, "realloc");
 
675
            exitstatus = EX_OSERR;
 
676
            free(new_arg);
 
677
            free(org_line);
 
678
            goto fallback;
 
679
          } else {
 
680
            custom_argv = new_argv;
 
681
          }
674
682
        }
675
683
        custom_argv[custom_argc-1] = new_arg;
676
684
        custom_argv[custom_argc] = NULL;
856
864
                                           ".dpkg-old",
857
865
                                           ".dpkg-bak",
858
866
                                           ".dpkg-divert", NULL };
 
867
#ifdef __GNUC__
859
868
#pragma GCC diagnostic push
860
869
#pragma GCC diagnostic ignored "-Wcast-qual"
 
870
#endif
861
871
      for(const char **pre = (const char **)bad_prefixes;
862
872
          *pre != NULL; pre++){
 
873
#ifdef __GNUC__
863
874
#pragma GCC diagnostic pop
 
875
#endif
864
876
        size_t pre_len = strlen(*pre);
865
877
        if((d_name_len >= pre_len)
866
878
           and strncmp((dirst->d_name), *pre, pre_len) == 0){
875
887
      if(bad_name){
876
888
        continue;
877
889
      }
 
890
#ifdef __GNUC__
878
891
#pragma GCC diagnostic push
879
892
#pragma GCC diagnostic ignored "-Wcast-qual"
 
893
#endif
880
894
      for(const char **suf = (const char **)bad_suffixes;
881
895
          *suf != NULL; suf++){
 
896
#ifdef __GNUC__
882
897
#pragma GCC diagnostic pop
 
898
#endif
883
899
        size_t suf_len = strlen(*suf);
884
900
        if((d_name_len >= suf_len)
885
901
           and (strcmp((dirst->d_name) + d_name_len-suf_len, *suf)
1234
1250
      }
1235
1251
      /* Before reading, make the process' data buffer large enough */
1236
1252
      if(proc->buffer_length + BUFFER_SIZE > proc->buffer_size){
1237
 
        proc->buffer = realloc(proc->buffer, proc->buffer_size
1238
 
                               + (size_t) BUFFER_SIZE);
1239
 
        if(proc->buffer == NULL){
 
1253
        char *new_buffer = realloc(proc->buffer, proc->buffer_size
 
1254
                                   + (size_t) BUFFER_SIZE);
 
1255
        if(new_buffer == NULL){
1240
1256
          error(0, errno, "malloc");
1241
1257
          exitstatus = EX_OSERR;
1242
1258
          goto fallback;
1243
1259
        }
 
1260
        proc->buffer = new_buffer;
1244
1261
        proc->buffer_size += BUFFER_SIZE;
1245
1262
      }
1246
1263
      /* Read from the process */