/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 plugins.d/usplash.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:
36
36
                                   dirent */
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(),
47
 
                                   _exit() */
 
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() */
50
49
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
170
169
    for(struct dirent *proc_ent = readdir(proc_dir);
171
170
        proc_ent != NULL;
172
171
        proc_ent = readdir(proc_dir)){
173
 
      pid_t pid = (pid_t) strtoul(proc_ent->d_name, NULL, 10);
174
 
      if(pid == 0){
 
172
      pid_t pid;
 
173
      /* In the GNU C library, pid_t is always int */
 
174
      ret = sscanf(proc_ent->d_name, "%d", &pid);
 
175
      if(ret != 1){
175
176
        /* Not a process */
176
177
        continue;
177
178
      }
193
194
        struct stat exe_stat;
194
195
        ret = lstat(exe_link, &exe_stat);
195
196
        if(ret == -1){
 
197
          if(errno == ENOENT){
 
198
            free(exe_link);
 
199
            continue;
 
200
          }
196
201
          perror("lstat");
197
202
          free(exe_link);
198
203
          free(prompt);
208
213
        
209
214
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
210
215
        free(exe_link);
211
 
        if(sret == -1){
212
 
          continue;
213
 
        }
214
216
      }
215
217
      if((sret == ((ssize_t)sizeof(exe_target)-1))
216
218
         and (memcmp(usplash_name, exe_target,
485
487
    /* Child; will become new usplash process */
486
488
    
487
489
    /* Make the effective user ID (root) the only user ID instead of
488
 
       the real user ID (mandos) */
 
490
       the real user ID (_mandos) */
489
491
    ret = setuid(geteuid());
490
492
    if(ret == -1){
491
493
      perror("setuid");