37
37
#include <stddef.h>             /* NULL */
 
38
38
#include <string.h>             /* strlen(), memcmp() */
 
39
 
#include <stdio.h>              /* asprintf(), perror() */
 
 
39
#include <stdio.h>              /* asprintf(), perror(), sscanf() */
 
40
40
#include <unistd.h>             /* close(), write(), readlink(),
 
41
41
                                   read(), STDOUT_FILENO, sleep(),
 
42
42
                                   fork(), setuid(), geteuid(),
 
43
43
                                   setsid(), chdir(), dup2(),
 
44
44
                                   STDERR_FILENO, execv() */
 
45
 
#include <stdlib.h>             /* free(), EXIT_FAILURE, strtoul(),
 
46
 
                                   realloc(), EXIT_SUCCESS, malloc(),
 
 
45
#include <stdlib.h>             /* free(), EXIT_FAILURE, realloc(),
 
 
46
                                   EXIT_SUCCESS, malloc(), _exit() */
 
48
47
#include <stdlib.h>             /* getenv() */
 
49
48
#include <dirent.h>             /* opendir(), readdir(), closedir() */
 
 
49
#include <inttypes.h>           /* intmax_t, SCNdMAX */
 
50
50
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
 
52
52
sig_atomic_t interrupted_by_signal = 0;
 
 
170
170
    for(struct dirent *proc_ent = readdir(proc_dir);
 
171
171
        proc_ent != NULL;
 
172
172
        proc_ent = readdir(proc_dir)){
 
173
 
      pid_t pid = (pid_t) strtoul(proc_ent->d_name, NULL, 10);
 
 
177
        ret = sscanf(proc_ent->d_name, "%" SCNdMAX "%n", &tmpmax,
 
 
179
        if(ret < 1 or tmpmax != (pid_t)tmpmax
 
 
180
           or proc_ent->d_name[numchars] != '\0'){
 
178
186
      /* Find the executable name by doing readlink() on the
 
179
187
         /proc/<pid>/exe link */
 
 
209
221
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
 
215
224
      if((sret == ((ssize_t)sizeof(exe_target)-1))
 
216
225
         and (memcmp(usplash_name, exe_target,