/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: 2009-09-06 05:37:34 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090906053734-uf180lq30ivv4nfy
* plugin-runner.c (getplugin, add_environment, main): Handle EINTR
                                                      properly.

* plugins.d/mandos-client.c (start_mandos_communication): Bug fix:
  move out "decrypted_buffer_size" to where it is needed.

* plugins.d/splashy.c (termination_handler): Save signal received.
  (main): Check return value from "sigaddset()".

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 <https://www.fukt.bsnet.se/~belorn/> and
 
23
 * <https://www.fukt.bsnet.se/~teddy/>.
 
24
 */
 
25
 
1
26
#define _GNU_SOURCE             /* asprintf() */
2
27
#include <signal.h>             /* sig_atomic_t, struct sigaction,
3
 
                                   sigemptyset(), sigaddset(),
4
 
                                   sigaction, SIGINT, SIG_IGN, SIGHUP,
5
 
                                   SIGTERM, kill(), SIGKILL */
 
28
                                   sigemptyset(), sigaddset(), SIGINT,
 
29
                                   SIGHUP, SIGTERM, sigaction,
 
30
                                   SIG_IGN, kill(), SIGKILL */
6
31
#include <stddef.h>             /* NULL */
7
32
#include <stdlib.h>             /* getenv() */
8
33
#include <stdio.h>              /* asprintf(), perror() */
9
 
#include <stdlib.h>             /* EXIT_FAILURE, EXIT_SUCCESS,
10
 
                                   strtoul(), free() */
 
34
#include <stdlib.h>             /* EXIT_FAILURE, free(),
 
35
                                   EXIT_SUCCESS */
11
36
#include <sys/types.h>          /* pid_t, DIR, struct dirent,
12
37
                                   ssize_t */
13
38
#include <dirent.h>             /* opendir(), readdir(), closedir() */
 
39
#include <inttypes.h>           /* intmax_t, strtoimax() */
 
40
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
 
41
#include <iso646.h>             /* not, or, and */
14
42
#include <unistd.h>             /* readlink(), fork(), execl(),
15
 
                                   _exit */
 
43
                                   sleep(), dup2() STDERR_FILENO,
 
44
                                   STDOUT_FILENO, _exit() */
16
45
#include <string.h>             /* memcmp() */
17
 
#include <iso646.h>             /* and */
18
46
#include <errno.h>              /* errno */
19
47
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
20
48
                                   WEXITSTATUS() */
21
49
 
22
50
sig_atomic_t interrupted_by_signal = 0;
 
51
int signal_received;
23
52
 
24
 
static void termination_handler(__attribute__((unused))int signum){
 
53
static void termination_handler(int signum){
 
54
  if(interrupted_by_signal){
 
55
    return;
 
56
  }
25
57
  interrupted_by_signal = 1;
 
58
  signal_received = signum;
26
59
}
27
60
 
28
61
int main(__attribute__((unused))int argc,
70
103
    for(struct dirent *proc_ent = readdir(proc_dir);
71
104
        proc_ent != NULL;
72
105
        proc_ent = readdir(proc_dir)){
73
 
      pid_t pid = (pid_t) strtoul(proc_ent->d_name, NULL, 10);
74
 
      if(pid == 0){
75
 
        /* Not a process */
76
 
        continue;
 
106
      pid_t pid;
 
107
      {
 
108
        intmax_t tmpmax;
 
109
        char *tmp;
 
110
        errno = 0;
 
111
        tmpmax = strtoimax(proc_ent->d_name, &tmp, 10);
 
112
        if(errno != 0 or tmp == proc_ent->d_name or *tmp != '\0'
 
113
           or tmpmax != (pid_t)tmpmax){
 
114
          /* Not a process */
 
115
          continue;
 
116
        }
 
117
        pid = (pid_t)tmpmax;
77
118
      }
78
119
      /* Find the executable name by doing readlink() on the
79
120
         /proc/<pid>/exe link */
88
129
          closedir(proc_dir);
89
130
          return EXIT_FAILURE;
90
131
        }
 
132
        
 
133
        /* Check that it refers to a symlink owned by root:root */
 
134
        struct stat exe_stat;
 
135
        ret = lstat(exe_link, &exe_stat);
 
136
        if(ret == -1){
 
137
          if(errno == ENOENT){
 
138
            free(exe_link);
 
139
            continue;
 
140
          }
 
141
          perror("lstat");
 
142
          free(exe_link);
 
143
          free(prompt);
 
144
          closedir(proc_dir);
 
145
          return EXIT_FAILURE;
 
146
        }
 
147
        if(not S_ISLNK(exe_stat.st_mode)
 
148
           or exe_stat.st_uid != 0
 
149
           or exe_stat.st_gid != 0){
 
150
          free(exe_link);
 
151
          continue;
 
152
        }
 
153
        
91
154
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
92
155
        free(exe_link);
93
156
      }
112
175
                     .sa_flags = 0 };
113
176
    sigemptyset(&new_action.sa_mask);
114
177
    sigaddset(&new_action.sa_mask, SIGINT);
 
178
    if(ret == -1){
 
179
      perror("sigaddset");
 
180
      free(prompt);
 
181
      return EXIT_FAILURE;
 
182
    }
115
183
    sigaddset(&new_action.sa_mask, SIGHUP);
 
184
    if(ret == -1){
 
185
      perror("sigaddset");
 
186
      free(prompt);
 
187
      return EXIT_FAILURE;
 
188
    }
116
189
    sigaddset(&new_action.sa_mask, SIGTERM);
 
190
    if(ret == -1){
 
191
      perror("sigaddset");
 
192
      free(prompt);
 
193
      return EXIT_FAILURE;
 
194
    }
117
195
    ret = sigaction(SIGINT, NULL, &old_action);
118
196
    if(ret == -1){
119
197
      perror("sigaction");
120
198
      free(prompt);
121
199
      return EXIT_FAILURE;
122
200
    }
123
 
    if (old_action.sa_handler != SIG_IGN){
 
201
    if(old_action.sa_handler != SIG_IGN){
124
202
      ret = sigaction(SIGINT, &new_action, NULL);
125
203
      if(ret == -1){
126
204
        perror("sigaction");
134
212
      free(prompt);
135
213
      return EXIT_FAILURE;
136
214
    }
137
 
    if (old_action.sa_handler != SIG_IGN){
 
215
    if(old_action.sa_handler != SIG_IGN){
138
216
      ret = sigaction(SIGHUP, &new_action, NULL);
139
217
      if(ret == -1){
140
218
        perror("sigaction");
148
226
      free(prompt);
149
227
      return EXIT_FAILURE;
150
228
    }
151
 
    if (old_action.sa_handler != SIG_IGN){
 
229
    if(old_action.sa_handler != SIG_IGN){
152
230
      ret = sigaction(SIGTERM, &new_action, NULL);
153
231
      if(ret == -1){
154
232
        perror("sigaction");
173
251
      const char splashy_command[] = "/sbin/splashy_update";
174
252
      ret = execl(splashy_command, splashy_command, prompt,
175
253
                  (char *)NULL);
176
 
      if(not interrupted_by_signal and errno != ENOENT){
177
 
        /* Don't report "File not found", since splashy might not be
178
 
           installed. */
 
254
      if(not interrupted_by_signal){
179
255
        perror("execl");
180
256
      }
181
257
      free(prompt);
182
 
      return EXIT_FAILURE;
 
258
      _exit(EXIT_FAILURE);
183
259
    }
184
260
  }
185
261
  
187
263
  free(prompt);
188
264
  
189
265
  /* Wait for command to complete */
190
 
  int status;
191
 
  while(not interrupted_by_signal){
192
 
    waitpid(splashy_command_pid, &status, 0);
193
 
    if(not interrupted_by_signal
194
 
       and WIFEXITED(status) and WEXITSTATUS(status)==0){
195
 
      return EXIT_SUCCESS;
 
266
  if(not interrupted_by_signal and splashy_command_pid != 0){
 
267
    int status;
 
268
    ret = waitpid(splashy_command_pid, &status, 0);
 
269
    if(ret == -1){
 
270
      if(errno != EINTR){
 
271
        perror("waitpid");
 
272
      }
 
273
      if(errno == ECHILD){
 
274
        splashy_command_pid = 0;
 
275
      }
 
276
    } else {
 
277
      /* The child process has exited */
 
278
      splashy_command_pid = 0;
 
279
      if(not interrupted_by_signal and WIFEXITED(status)
 
280
         and WEXITSTATUS(status)==0){
 
281
        return EXIT_SUCCESS;
 
282
      }
196
283
    }
197
284
  }
198
285
  kill(splashy_pid, SIGTERM);
199
 
  if(interrupted_by_signal){
 
286
  if(interrupted_by_signal and splashy_command_pid != 0){
200
287
    kill(splashy_command_pid, SIGTERM);
201
288
  }
202
 
  
 
289
  sleep(2);
 
290
  while(kill(splashy_pid, 0) == 0){
 
291
    kill(splashy_pid, SIGKILL);
 
292
    sleep(1);
 
293
  }
203
294
  pid_t new_splashy_pid = fork();
204
295
  if(new_splashy_pid == 0){
205
296
    /* Child; will become new splashy process */
206
 
    while(kill(splashy_pid, 0)){
207
 
      sleep(2);
208
 
      kill(splashy_pid, SIGKILL);
209
 
      sleep(1);
 
297
    
 
298
    /* Make the effective user ID (root) the only user ID instead of
 
299
       the real user ID (_mandos) */
 
300
    ret = setuid(geteuid());
 
301
    if(ret == -1){
 
302
      perror("setuid");
210
303
    }
 
304
    
 
305
    setsid();
 
306
    ret = chdir("/");
 
307
/*     if(fork() != 0){ */
 
308
/*       _exit(EXIT_SUCCESS); */
 
309
/*     } */
211
310
    ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
212
311
    if(ret == -1){
213
312
      perror("dup2");
214
313
      _exit(EXIT_FAILURE);
215
314
    }
 
315
    
216
316
    execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
 
317
    if(not interrupted_by_signal){
 
318
      perror("execl");
 
319
    }
 
320
    _exit(EXIT_FAILURE);
217
321
  }
218
322
  
219
323
  return EXIT_FAILURE;