/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/splashy.c

  • Committer: Teddy Hogeborn
  • Date: 2008-10-03 09:32:30 UTC
  • Revision ID: teddy@fukt.bsnet.se-20081003093230-rshn19e0c19zz12i
* .bzrignore (plugins.d/askpass-fifo): Added.

* Makefile (FORTIFY): Added "-fstack-protector-all".
  (mandos, mandos-keygen): Use more strict regexps when updating the
                           version number.

* mandos (Client.__init__): Use os.path.expandvars() and
                            os.path.expanduser() on the "secfile"
                            config value.

* plugins.d/splashy.c: Update comments and order of #include's.
  (main): Check user and group when looking for running splashy
          process.  Do not ignore ENOENT from execl().  Use _exit()
          instead of "return" when an error happens in child
          processes.  Bug fix: Only wait for splashy_update
          completion if it was started.  Bug fix: detect failing
          waitpid().  Only kill splashy_update if it is running.  Do
          the killing of the old splashy process before the fork().
          Do setsid() and setuid(geteuid()) before starting the new
          splashy.  Report failing execl().

* plugins.d/usplash.c: Update comments and order of #include's.
  (main): Check user and group when looking for running usplash
          process.  Do not report execv() error if interrupted by a
          signal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  -*- coding: utf-8 -*- */
2
 
/*
3
 
 * Splashy - Read a password from splashy and output it
4
 
 * 
5
 
 * Copyright © 2008,2009 Teddy Hogeborn
6
 
 * Copyright © 2008,2009 Björn Påhlsson
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
14
 
 * WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16
 
 * General Public License for more details.
17
 
 * 
18
 
 * 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
 
 * 
22
 
 * Contact the authors at <mandos@fukt.bsnet.se>.
23
 
 */
24
 
 
25
 
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY(), asprintf() */
 
1
#define _GNU_SOURCE             /* asprintf() */
26
2
#include <signal.h>             /* sig_atomic_t, struct sigaction,
27
3
                                   sigemptyset(), sigaddset(), SIGINT,
28
4
                                   SIGHUP, SIGTERM, sigaction,
30
6
#include <stddef.h>             /* NULL */
31
7
#include <stdlib.h>             /* getenv() */
32
8
#include <stdio.h>              /* asprintf(), perror() */
33
 
#include <stdlib.h>             /* EXIT_FAILURE, free(),
 
9
#include <stdlib.h>             /* EXIT_FAILURE, free(), strtoul(),
34
10
                                   EXIT_SUCCESS */
35
11
#include <sys/types.h>          /* pid_t, DIR, struct dirent,
36
12
                                   ssize_t */
37
13
#include <dirent.h>             /* opendir(), readdir(), closedir() */
38
 
#include <inttypes.h>           /* intmax_t, strtoimax() */
39
14
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
40
15
#include <iso646.h>             /* not, or, and */
41
16
#include <unistd.h>             /* readlink(), fork(), execl(),
42
17
                                   sleep(), dup2() STDERR_FILENO,
43
 
                                   STDOUT_FILENO, _exit(),
44
 
                                   pause() */
 
18
                                   STDOUT_FILENO, _exit() */
45
19
#include <string.h>             /* memcmp() */
46
20
#include <errno.h>              /* errno */
47
21
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
48
22
                                   WEXITSTATUS() */
49
23
 
50
 
#include <sysexits.h>           /* EX_OSERR, EX_OSFILE,
51
 
                                   EX_UNAVAILABLE */
52
 
 
53
24
sig_atomic_t interrupted_by_signal = 0;
54
 
int signal_received;
55
25
 
56
 
static void termination_handler(int signum){
57
 
  if(interrupted_by_signal){
58
 
    return;
59
 
  }
 
26
static void termination_handler(__attribute__((unused))int signum){
60
27
  interrupted_by_signal = 1;
61
 
  signal_received = signum;
62
28
}
63
29
 
64
30
int main(__attribute__((unused))int argc,
65
31
         __attribute__((unused))char **argv){
66
32
  int ret = 0;
 
33
  
 
34
  /* Create prompt string */
67
35
  char *prompt = NULL;
68
 
  DIR *proc_dir = NULL;
69
 
  pid_t splashy_pid = 0;
70
 
  pid_t splashy_command_pid = 0;
71
 
  int exitstatus = EXIT_FAILURE;
72
 
  
73
 
  /* Create prompt string */
74
36
  {
75
37
    const char *const cryptsource = getenv("cryptsource");
76
38
    const char *const crypttarget = getenv("crypttarget");
93
55
      }
94
56
    }
95
57
    if(ret == -1){
96
 
      prompt = NULL;
97
 
      exitstatus = EX_OSERR;
98
 
      goto failure;
 
58
      return EXIT_FAILURE;
99
59
    }
100
60
  }
101
61
  
102
62
  /* Find splashy process */
 
63
  pid_t splashy_pid = 0;
103
64
  {
104
65
    const char splashy_name[] = "/sbin/splashy";
105
 
    proc_dir = opendir("/proc");
 
66
    DIR *proc_dir = opendir("/proc");
106
67
    if(proc_dir == NULL){
107
 
      int e = errno;
 
68
      free(prompt);
108
69
      perror("opendir");
109
 
      switch(e){
110
 
      case EACCES:
111
 
      case ENOTDIR:
112
 
      case ELOOP:
113
 
      case ENOENT:
114
 
      default:
115
 
        exitstatus = EX_OSFILE;
116
 
        break;
117
 
      case ENAMETOOLONG:
118
 
      case EMFILE:
119
 
      case ENFILE:
120
 
      case ENOMEM:
121
 
        exitstatus = EX_OSERR;
122
 
        break;
123
 
      }
124
 
      goto failure;
 
70
      return EXIT_FAILURE;
125
71
    }
126
72
    for(struct dirent *proc_ent = readdir(proc_dir);
127
73
        proc_ent != NULL;
128
74
        proc_ent = readdir(proc_dir)){
129
 
      pid_t pid;
130
 
      {
131
 
        intmax_t tmpmax;
132
 
        char *tmp;
133
 
        errno = 0;
134
 
        tmpmax = strtoimax(proc_ent->d_name, &tmp, 10);
135
 
        if(errno != 0 or tmp == proc_ent->d_name or *tmp != '\0'
136
 
           or tmpmax != (pid_t)tmpmax){
137
 
          /* Not a process */
138
 
          continue;
139
 
        }
140
 
        pid = (pid_t)tmpmax;
 
75
      pid_t pid = (pid_t) strtoul(proc_ent->d_name, NULL, 10);
 
76
      if(pid == 0){
 
77
        /* Not a process */
 
78
        continue;
141
79
      }
142
80
      /* Find the executable name by doing readlink() on the
143
81
         /proc/<pid>/exe link */
148
86
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
149
87
        if(ret == -1){
150
88
          perror("asprintf");
151
 
          exitstatus = EX_OSERR;
152
 
          goto failure;
 
89
          free(prompt);
 
90
          closedir(proc_dir);
 
91
          return EXIT_FAILURE;
153
92
        }
154
93
        
155
94
        /* Check that it refers to a symlink owned by root:root */
156
95
        struct stat exe_stat;
157
96
        ret = lstat(exe_link, &exe_stat);
158
97
        if(ret == -1){
159
 
          if(errno == ENOENT){
160
 
            free(exe_link);
161
 
            continue;
162
 
          }
163
 
          int e = errno;
164
98
          perror("lstat");
165
99
          free(exe_link);
166
 
          switch(e){
167
 
          case EACCES:
168
 
          case ENOTDIR:
169
 
          case ELOOP:
170
 
          default:
171
 
            exitstatus = EX_OSFILE;
172
 
            break;
173
 
          case ENAMETOOLONG:
174
 
            exitstatus = EX_OSERR;
175
 
            break;
176
 
          }
177
 
          goto failure;
 
100
          free(prompt);
 
101
          closedir(proc_dir);
 
102
          return EXIT_FAILURE;
178
103
        }
179
104
        if(not S_ISLNK(exe_stat.st_mode)
180
105
           or exe_stat.st_uid != 0
194
119
      }
195
120
    }
196
121
    closedir(proc_dir);
197
 
    proc_dir = NULL;
198
122
  }
199
123
  if(splashy_pid == 0){
200
 
    exitstatus = EX_UNAVAILABLE;
201
 
    goto failure;
 
124
    free(prompt);
 
125
    return EXIT_FAILURE;
202
126
  }
203
127
  
204
128
  /* Set up the signal handler */
207
131
      new_action = { .sa_handler = termination_handler,
208
132
                     .sa_flags = 0 };
209
133
    sigemptyset(&new_action.sa_mask);
210
 
    ret = sigaddset(&new_action.sa_mask, SIGINT);
211
 
    if(ret == -1){
212
 
      perror("sigaddset");
213
 
      exitstatus = EX_OSERR;
214
 
      goto failure;
215
 
    }
216
 
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
217
 
    if(ret == -1){
218
 
      perror("sigaddset");
219
 
      exitstatus = EX_OSERR;
220
 
      goto failure;
221
 
    }
222
 
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
223
 
    if(ret == -1){
224
 
      perror("sigaddset");
225
 
      exitstatus = EX_OSERR;
226
 
      goto failure;
227
 
    }
 
134
    sigaddset(&new_action.sa_mask, SIGINT);
 
135
    sigaddset(&new_action.sa_mask, SIGHUP);
 
136
    sigaddset(&new_action.sa_mask, SIGTERM);
228
137
    ret = sigaction(SIGINT, NULL, &old_action);
229
138
    if(ret == -1){
230
139
      perror("sigaction");
231
 
      exitstatus = EX_OSERR;
232
 
      goto failure;
 
140
      free(prompt);
 
141
      return EXIT_FAILURE;
233
142
    }
234
143
    if(old_action.sa_handler != SIG_IGN){
235
144
      ret = sigaction(SIGINT, &new_action, NULL);
236
145
      if(ret == -1){
237
146
        perror("sigaction");
238
 
        exitstatus = EX_OSERR;
239
 
        goto failure;
 
147
        free(prompt);
 
148
        return EXIT_FAILURE;
240
149
      }
241
150
    }
242
151
    ret = sigaction(SIGHUP, NULL, &old_action);
243
152
    if(ret == -1){
244
153
      perror("sigaction");
245
 
      exitstatus = EX_OSERR;
246
 
      goto failure;
 
154
      free(prompt);
 
155
      return EXIT_FAILURE;
247
156
    }
248
157
    if(old_action.sa_handler != SIG_IGN){
249
158
      ret = sigaction(SIGHUP, &new_action, NULL);
250
159
      if(ret == -1){
251
160
        perror("sigaction");
252
 
        exitstatus = EX_OSERR;
253
 
        goto failure;
 
161
        free(prompt);
 
162
        return EXIT_FAILURE;
254
163
      }
255
164
    }
256
165
    ret = sigaction(SIGTERM, NULL, &old_action);
257
166
    if(ret == -1){
258
167
      perror("sigaction");
259
 
      exitstatus = EX_OSERR;
260
 
      goto failure;
 
168
      free(prompt);
 
169
      return EXIT_FAILURE;
261
170
    }
262
171
    if(old_action.sa_handler != SIG_IGN){
263
172
      ret = sigaction(SIGTERM, &new_action, NULL);
264
173
      if(ret == -1){
265
174
        perror("sigaction");
266
 
        exitstatus = EX_OSERR;
267
 
        goto failure;
 
175
        free(prompt);
 
176
        return EXIT_FAILURE;
268
177
      }
269
178
    }
270
179
  }
271
180
  
272
 
  if(interrupted_by_signal){
273
 
    goto failure;
274
 
  }
275
 
  
276
181
  /* Fork off the splashy command to prompt for password */
277
 
  splashy_command_pid = fork();
278
 
  if(splashy_command_pid != 0 and interrupted_by_signal){
279
 
    goto failure;
280
 
  }
281
 
  if(splashy_command_pid == -1){
282
 
    perror("fork");
283
 
    exitstatus = EX_OSERR;
284
 
    goto failure;
285
 
  }
286
 
  /* Child */
287
 
  if(splashy_command_pid == 0){
288
 
    if(not interrupted_by_signal){
 
182
  pid_t splashy_command_pid = 0;
 
183
  if(not interrupted_by_signal){
 
184
    splashy_command_pid = fork();
 
185
    if(splashy_command_pid == -1){
 
186
      if(not interrupted_by_signal){
 
187
        perror("fork");
 
188
      }
 
189
      return EXIT_FAILURE;
 
190
    }
 
191
    /* Child */
 
192
    if(splashy_command_pid == 0){
289
193
      const char splashy_command[] = "/sbin/splashy_update";
290
 
      execl(splashy_command, splashy_command, prompt, (char *)NULL);
291
 
      perror("execl");
 
194
      ret = execl(splashy_command, splashy_command, prompt,
 
195
                  (char *)NULL);
 
196
      if(not interrupted_by_signal){
 
197
        perror("execl");
 
198
      }
 
199
      free(prompt);
 
200
      _exit(EXIT_FAILURE);
292
201
    }
293
 
    free(prompt);
294
 
    _exit(EXIT_FAILURE);
295
202
  }
296
203
  
297
204
  /* Parent */
298
205
  free(prompt);
299
 
  prompt = NULL;
300
 
  
301
 
  if(interrupted_by_signal){
302
 
    goto failure;
303
 
  }
304
206
  
305
207
  /* Wait for command to complete */
306
 
  {
 
208
  if(not interrupted_by_signal and splashy_command_pid != 0){
307
209
    int status;
308
 
    do {
309
 
      ret = waitpid(splashy_command_pid, &status, 0);
310
 
    } while(ret == -1 and errno == EINTR
311
 
            and not interrupted_by_signal);
312
 
    if(interrupted_by_signal){
313
 
      goto failure;
314
 
    }
 
210
    ret = waitpid(splashy_command_pid, &status, 0);
315
211
    if(ret == -1){
316
 
      perror("waitpid");
 
212
      if(errno != EINTR){
 
213
        perror("waitpid");
 
214
      }
317
215
      if(errno == ECHILD){
318
216
        splashy_command_pid = 0;
319
217
      }
320
218
    } else {
321
219
      /* The child process has exited */
322
220
      splashy_command_pid = 0;
323
 
      if(WIFEXITED(status) and WEXITSTATUS(status) == 0){
 
221
      if(not interrupted_by_signal and WIFEXITED(status)
 
222
         and WEXITSTATUS(status)==0){
324
223
        return EXIT_SUCCESS;
325
224
      }
326
225
    }
327
226
  }
328
 
  
329
 
 failure:
330
 
  
331
 
  free(prompt);
332
 
  
333
 
  if(proc_dir != NULL){
334
 
    TEMP_FAILURE_RETRY(closedir(proc_dir));
335
 
  }
336
 
  
337
 
  if(splashy_command_pid != 0){
338
 
    TEMP_FAILURE_RETRY(kill(splashy_command_pid, SIGTERM));
339
 
    
340
 
    TEMP_FAILURE_RETRY(kill(splashy_pid, SIGTERM));
341
 
    sleep(2);
342
 
    while(TEMP_FAILURE_RETRY(kill(splashy_pid, 0)) == 0){
343
 
      TEMP_FAILURE_RETRY(kill(splashy_pid, SIGKILL));
344
 
      sleep(1);
345
 
    }
346
 
    pid_t new_splashy_pid = (pid_t)TEMP_FAILURE_RETRY(fork());
347
 
    if(new_splashy_pid == 0){
348
 
      /* Child; will become new splashy process */
349
 
      
350
 
      /* Make the effective user ID (root) the only user ID instead of
351
 
         the real user ID (_mandos) */
352
 
      ret = setuid(geteuid());
353
 
      if(ret == -1){
354
 
        perror("setuid");
355
 
      }
356
 
      
357
 
      setsid();
358
 
      ret = chdir("/");
359
 
      if(ret == -1){
360
 
        perror("chdir");
361
 
      }
362
 
/*       if(fork() != 0){ */
363
 
/*      _exit(EXIT_SUCCESS); */
364
 
/*       } */
365
 
      ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
366
 
      if(ret == -1){
367
 
        perror("dup2");
368
 
        _exit(EX_OSERR);
369
 
      }
370
 
      
371
 
      execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
372
 
      {
373
 
        int e = errno;
374
 
        perror("execl");
375
 
        switch(e){
376
 
        case EACCES:
377
 
        case ENOENT:
378
 
        case ENOEXEC:
379
 
        default:
380
 
          _exit(EX_UNAVAILABLE);
381
 
        case ENAMETOOLONG:
382
 
        case E2BIG:
383
 
        case ENOMEM:
384
 
          _exit(EX_OSERR);
385
 
        case ENOTDIR:
386
 
        case ELOOP:
387
 
          _exit(EX_OSFILE);
388
 
        }
389
 
      }
390
 
    }
391
 
  }
392
 
  
393
 
  if(interrupted_by_signal){
394
 
    struct sigaction signal_action;
395
 
    sigemptyset(&signal_action.sa_mask);
396
 
    signal_action.sa_handler = SIG_DFL;
397
 
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
398
 
                                            &signal_action, NULL));
399
 
    if(ret == -1){
400
 
      perror("sigaction");
401
 
    }
402
 
    do {
403
 
      ret = raise(signal_received);
404
 
    } while(ret != 0 and errno == EINTR);
405
 
    if(ret != 0){
406
 
      perror("raise");
407
 
      abort();
408
 
    }
409
 
    TEMP_FAILURE_RETRY(pause());
410
 
  }
411
 
  
412
 
  return exitstatus;
 
227
  kill(splashy_pid, SIGTERM);
 
228
  if(interrupted_by_signal and splashy_command_pid != 0){
 
229
    kill(splashy_command_pid, SIGTERM);
 
230
  }
 
231
  sleep(2);
 
232
  while(kill(splashy_pid, 0) == 0){
 
233
    kill(splashy_pid, SIGKILL);
 
234
    sleep(1);
 
235
  }
 
236
  pid_t new_splashy_pid = fork();
 
237
  if(new_splashy_pid == 0){
 
238
    /* Child; will become new splashy process */
 
239
    
 
240
    /* Make the effective user ID (root) the only user ID instead of
 
241
       the real user ID (mandos) */
 
242
    ret = setuid(geteuid());
 
243
    if(ret == -1){
 
244
      perror("setuid");
 
245
    }
 
246
    
 
247
    setsid();
 
248
    ret = chdir("/");
 
249
/*     if(fork() != 0){ */
 
250
/*       _exit(EXIT_SUCCESS); */
 
251
/*     } */
 
252
    ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
 
253
    if(ret == -1){
 
254
      perror("dup2");
 
255
      _exit(EXIT_FAILURE);
 
256
    }
 
257
    
 
258
    execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
 
259
    if(not interrupted_by_signal){
 
260
      perror("execl");
 
261
    }
 
262
    _exit(EXIT_FAILURE);
 
263
  }
 
264
  
 
265
  return EXIT_FAILURE;
413
266
}