/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 plugins.d/plymouth.c

  • Committer: Teddy Hogeborn
  • Date: 2017-09-03 08:53:22 UTC
  • Revision ID: teddy@recompile.se-20170903085322-rgmiij4v273kuubb
Fix another memory leak in plymouth plugin

* plugins.d/plymouth.c (get_pid): Free any individual direntries, not
  just the direntry list.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 * Copyright © 2010-2017 Teddy Hogeborn
6
6
 * Copyright © 2010-2017 Björn Påhlsson
7
7
 * 
8
 
 * This program is free software: you can redistribute it and/or
9
 
 * modify it under the terms of the GNU General Public License as
10
 
 * published by the Free Software Foundation, either version 3 of the
11
 
 * License, or (at your option) any later version.
12
 
 * 
13
 
 * This program is distributed in the hope that it will be useful, but
 
8
 * This file is part of Mandos.
 
9
 * 
 
10
 * Mandos is free software: you can redistribute it and/or modify it
 
11
 * under the terms of the GNU General Public License as published by
 
12
 * the Free Software Foundation, either version 3 of the License, or
 
13
 * (at your option) any later version.
 
14
 * 
 
15
 * Mandos is distributed in the hope that it will be useful, but
14
16
 * WITHOUT ANY WARRANTY; without even the implied warranty of
15
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16
18
 * General Public License for more details.
17
19
 * 
18
20
 * You should have received a copy of the GNU General Public License
19
 
 * along with this program.  If not, see
20
 
 * <http://www.gnu.org/licenses/>.
 
21
 * along with Mandos.  If not, see <http://www.gnu.org/licenses/>.
21
22
 * 
22
23
 * Contact the authors at <mandos@recompile.se>.
23
24
 */
298
299
      error_plus(0, errno, "scandir");
299
300
    }
300
301
    if(ret > 0){
301
 
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &proc_id);
302
 
      if(ret < 0){
303
 
        error_plus(0, errno, "sscanf");
 
302
      for(int i = ret-1; i >= 0; i--){
 
303
        if(proc_id == 0){
 
304
          ret = sscanf(direntries[i]->d_name, "%" SCNuMAX, &proc_id);
 
305
          if(ret < 0){
 
306
            error_plus(0, errno, "sscanf");
 
307
          }
 
308
        }
 
309
        free(direntries[i]);
304
310
      }
305
311
    }
306
312
    /* scandir might preallocate for this variable (man page unclear).
316
322
  return 0;
317
323
}
318
324
 
319
 
const char * const * getargv(pid_t pid){
 
325
char **getargv(pid_t pid){
320
326
  int cl_fd;
321
327
  char *cmdline_filename;
322
328
  ssize_t sret;
383
389
    return NULL;
384
390
  }
385
391
  argz_extract(cmdline, cmdline_len, argv); /* Create argv */
386
 
  return (const char * const *)argv;
 
392
  return argv;
387
393
}
388
394
 
389
395
int main(__attribute__((unused))int argc,
464
470
  }
465
471
  kill_and_wait(plymouth_command_pid);
466
472
  
467
 
  const char * const *plymouthd_argv;
 
473
  char **plymouthd_argv = NULL;
468
474
  pid_t pid = get_pid();
469
475
  if(pid == 0){
470
476
    error_plus(0, 0, "plymouthd pid not found");
471
 
    plymouthd_argv = plymouthd_default_argv;
472
477
  } else {
473
478
    plymouthd_argv = getargv(pid);
474
479
  }
477
482
                       { plymouth_path, "quit", NULL },
478
483
                       false, false);
479
484
  if(not bret){
 
485
    if(plymouthd_argv != NULL){
 
486
      free(*plymouthd_argv);
 
487
      free(plymouthd_argv);
 
488
    }
480
489
    exit(EXIT_FAILURE);
481
490
  }
482
 
  bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv,
 
491
  bret = exec_and_wait(NULL, plymouthd_path,
 
492
                       (plymouthd_argv != NULL)
 
493
                       ? (const char * const *)plymouthd_argv
 
494
                       : plymouthd_default_argv,
483
495
                       false, true);
 
496
  if(plymouthd_argv != NULL){
 
497
    free(*plymouthd_argv);
 
498
    free(plymouthd_argv);
 
499
  }
484
500
  if(not bret){
485
501
    exit(EXIT_FAILURE);
486
502
  }