/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-18 11:17:22 UTC
  • Revision ID: teddy@fukt.bsnet.se-20081018111722-jtbz35c031lxuuc9
* debian/mandos-client.docs (NEWS): Added.
* debian/mandos.docs (NEWS): - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#define _GNU_SOURCE             /* asprintf() */
2
2
#include <signal.h>             /* sig_atomic_t, struct sigaction,
3
 
                                   sigemptyset(), sigaddset(),
4
 
                                   sigaction, SIGINT, SIG_IGN, SIGHUP,
5
 
                                   SIGTERM, kill(), SIGKILL */
 
3
                                   sigemptyset(), sigaddset(), SIGINT,
 
4
                                   SIGHUP, SIGTERM, sigaction,
 
5
                                   SIG_IGN, kill(), SIGKILL */
6
6
#include <stddef.h>             /* NULL */
7
7
#include <stdlib.h>             /* getenv() */
8
8
#include <stdio.h>              /* asprintf(), perror() */
9
 
#include <stdlib.h>             /* EXIT_FAILURE, EXIT_SUCCESS,
10
 
                                   strtoul(), free() */
 
9
#include <stdlib.h>             /* EXIT_FAILURE, free(), strtoul(),
 
10
                                   EXIT_SUCCESS */
11
11
#include <sys/types.h>          /* pid_t, DIR, struct dirent,
12
12
                                   ssize_t */
13
13
#include <dirent.h>             /* opendir(), readdir(), closedir() */
 
14
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
 
15
#include <iso646.h>             /* not, or, and */
14
16
#include <unistd.h>             /* readlink(), fork(), execl(),
15
 
                                   _exit */
 
17
                                   sleep(), dup2() STDERR_FILENO,
 
18
                                   STDOUT_FILENO, _exit() */
16
19
#include <string.h>             /* memcmp() */
17
 
#include <iso646.h>             /* and */
18
20
#include <errno.h>              /* errno */
19
21
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
20
22
                                   WEXITSTATUS() */
25
27
  interrupted_by_signal = 1;
26
28
}
27
29
 
28
 
int main(__attribute__((unused))int argc, char **argv){
 
30
int main(__attribute__((unused))int argc,
 
31
         __attribute__((unused))char **argv){
29
32
  int ret = 0;
30
33
  
31
34
  /* Create prompt string */
76
79
      }
77
80
      /* Find the executable name by doing readlink() on the
78
81
         /proc/<pid>/exe link */
79
 
      char *exe_link;
80
 
      ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
81
 
      if(ret == -1){
82
 
        perror("asprintf");
83
 
        free(prompt);
84
 
        closedir(proc_dir);
85
 
        return EXIT_FAILURE;
86
 
      }
87
82
      char exe_target[sizeof(splashy_name)];
88
 
      ssize_t sret = readlink(exe_link, exe_target,
89
 
                              sizeof(exe_target));
 
83
      ssize_t sret;
 
84
      {
 
85
        char *exe_link;
 
86
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
 
87
        if(ret == -1){
 
88
          perror("asprintf");
 
89
          free(prompt);
 
90
          closedir(proc_dir);
 
91
          return EXIT_FAILURE;
 
92
        }
 
93
        
 
94
        /* Check that it refers to a symlink owned by root:root */
 
95
        struct stat exe_stat;
 
96
        ret = lstat(exe_link, &exe_stat);
 
97
        if(ret == -1){
 
98
          perror("lstat");
 
99
          free(exe_link);
 
100
          free(prompt);
 
101
          closedir(proc_dir);
 
102
          return EXIT_FAILURE;
 
103
        }
 
104
        if(not S_ISLNK(exe_stat.st_mode)
 
105
           or exe_stat.st_uid != 0
 
106
           or exe_stat.st_gid != 0){
 
107
          free(exe_link);
 
108
          continue;
 
109
        }
 
110
        
 
111
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
 
112
        free(exe_link);
 
113
      }
90
114
      if((sret == ((ssize_t)sizeof(exe_target)-1))
91
115
         and (memcmp(splashy_name, exe_target,
92
116
                     sizeof(exe_target)-1) == 0)){
116
140
      free(prompt);
117
141
      return EXIT_FAILURE;
118
142
    }
119
 
    if (old_action.sa_handler != SIG_IGN){
 
143
    if(old_action.sa_handler != SIG_IGN){
120
144
      ret = sigaction(SIGINT, &new_action, NULL);
121
145
      if(ret == -1){
122
146
        perror("sigaction");
130
154
      free(prompt);
131
155
      return EXIT_FAILURE;
132
156
    }
133
 
    if (old_action.sa_handler != SIG_IGN){
 
157
    if(old_action.sa_handler != SIG_IGN){
134
158
      ret = sigaction(SIGHUP, &new_action, NULL);
135
159
      if(ret == -1){
136
160
        perror("sigaction");
144
168
      free(prompt);
145
169
      return EXIT_FAILURE;
146
170
    }
147
 
    if (old_action.sa_handler != SIG_IGN){
 
171
    if(old_action.sa_handler != SIG_IGN){
148
172
      ret = sigaction(SIGTERM, &new_action, NULL);
149
173
      if(ret == -1){
150
174
        perror("sigaction");
169
193
      const char splashy_command[] = "/sbin/splashy_update";
170
194
      ret = execl(splashy_command, splashy_command, prompt,
171
195
                  (char *)NULL);
172
 
      if(not interrupted_by_signal and errno != ENOENT){
173
 
        /* Don't report "File not found", since splashy might not be
174
 
           installed. */
 
196
      if(not interrupted_by_signal){
175
197
        perror("execl");
176
198
      }
177
199
      free(prompt);
178
 
      return EXIT_FAILURE;
 
200
      _exit(EXIT_FAILURE);
179
201
    }
180
202
  }
181
203
  
183
205
  free(prompt);
184
206
  
185
207
  /* Wait for command to complete */
186
 
  int status;
187
 
  while(not interrupted_by_signal){
188
 
    waitpid(splashy_command_pid, &status, 0);
189
 
    if(not interrupted_by_signal
190
 
       and WIFEXITED(status) and WEXITSTATUS(status)==0){
191
 
      return EXIT_SUCCESS;
 
208
  if(not interrupted_by_signal and splashy_command_pid != 0){
 
209
    int status;
 
210
    ret = waitpid(splashy_command_pid, &status, 0);
 
211
    if(ret == -1){
 
212
      if(errno != EINTR){
 
213
        perror("waitpid");
 
214
      }
 
215
      if(errno == ECHILD){
 
216
        splashy_command_pid = 0;
 
217
      }
 
218
    } else {
 
219
      /* The child process has exited */
 
220
      splashy_command_pid = 0;
 
221
      if(not interrupted_by_signal and WIFEXITED(status)
 
222
         and WEXITSTATUS(status)==0){
 
223
        return EXIT_SUCCESS;
 
224
      }
192
225
    }
193
226
  }
194
227
  kill(splashy_pid, SIGTERM);
195
 
  if(interrupted_by_signal){
 
228
  if(interrupted_by_signal and splashy_command_pid != 0){
196
229
    kill(splashy_command_pid, SIGTERM);
197
230
  }
198
 
 
 
231
  sleep(2);
 
232
  while(kill(splashy_pid, 0) == 0){
 
233
    kill(splashy_pid, SIGKILL);
 
234
    sleep(1);
 
235
  }
199
236
  pid_t new_splashy_pid = fork();
200
237
  if(new_splashy_pid == 0){
201
 
    while(kill(splashy_pid, 0)){
202
 
      sleep(2);
203
 
      kill(splashy_pid, SIGKILL);
204
 
      sleep(1);
 
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");
205
245
    }
 
246
    
 
247
    setsid();
 
248
    ret = chdir("/");
 
249
/*     if(fork() != 0){ */
 
250
/*       _exit(EXIT_SUCCESS); */
 
251
/*     } */
206
252
    ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
207
253
    if(ret == -1){
208
254
      perror("dup2");
209
255
      _exit(EXIT_FAILURE);
210
256
    }
 
257
    
211
258
    execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
 
259
    if(not interrupted_by_signal){
 
260
      perror("execl");
 
261
    }
 
262
    _exit(EXIT_FAILURE);
212
263
  }
213
264
  
214
265
  return EXIT_FAILURE;