/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

Merge from Teddy:

* New upstream release.
* debian/rules: Build with BROKEN_PIE set on mips and mipsel
  architectures - fixes FTBFS there.
* New upstream release.
* Do not copy unnecessary files to initrd (Closes: #551907)

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
                                   STDOUT_FILENO, _exit(),
44
44
                                   pause() */
45
45
#include <string.h>             /* memcmp() */
46
 
#include <errno.h>              /* errno */
 
46
#include <errno.h>              /* errno, EACCES, ENOTDIR, ELOOP,
 
47
                                   ENOENT, ENAMETOOLONG, EMFILE,
 
48
                                   ENFILE, ENOMEM, ENOEXEC, EINVAL,
 
49
                                   E2BIG, EFAULT, EIO, ETXTBSY,
 
50
                                   EISDIR, ELIBBAD, EPERM, EINTR,
 
51
                                   ECHILD */
47
52
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
48
53
                                   WEXITSTATUS() */
 
54
#include <sysexits.h>           /* EX_OSERR, EX_OSFILE,
 
55
                                   EX_UNAVAILABLE */
49
56
 
50
57
sig_atomic_t interrupted_by_signal = 0;
51
58
int signal_received;
65
72
  DIR *proc_dir = NULL;
66
73
  pid_t splashy_pid = 0;
67
74
  pid_t splashy_command_pid = 0;
 
75
  int exitstatus = EXIT_FAILURE;
68
76
  
69
77
  /* Create prompt string */
70
78
  {
90
98
    }
91
99
    if(ret == -1){
92
100
      prompt = NULL;
 
101
      exitstatus = EX_OSERR;
93
102
      goto failure;
94
103
    }
95
104
  }
99
108
    const char splashy_name[] = "/sbin/splashy";
100
109
    proc_dir = opendir("/proc");
101
110
    if(proc_dir == NULL){
 
111
      int e = errno;
102
112
      perror("opendir");
 
113
      switch(e){
 
114
      case EACCES:
 
115
      case ENOTDIR:
 
116
      case ELOOP:
 
117
      case ENOENT:
 
118
      default:
 
119
        exitstatus = EX_OSFILE;
 
120
        break;
 
121
      case ENAMETOOLONG:
 
122
      case EMFILE:
 
123
      case ENFILE:
 
124
      case ENOMEM:
 
125
        exitstatus = EX_OSERR;
 
126
        break;
 
127
      }
103
128
      goto failure;
104
129
    }
105
130
    for(struct dirent *proc_ent = readdir(proc_dir);
127
152
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
128
153
        if(ret == -1){
129
154
          perror("asprintf");
 
155
          exitstatus = EX_OSERR;
130
156
          goto failure;
131
157
        }
132
158
        
138
164
            free(exe_link);
139
165
            continue;
140
166
          }
 
167
          int e = errno;
141
168
          perror("lstat");
142
169
          free(exe_link);
 
170
          switch(e){
 
171
          case EACCES:
 
172
          case ENOTDIR:
 
173
          case ELOOP:
 
174
          default:
 
175
            exitstatus = EX_OSFILE;
 
176
            break;
 
177
          case ENAMETOOLONG:
 
178
            exitstatus = EX_OSERR;
 
179
            break;
 
180
          }
143
181
          goto failure;
144
182
        }
145
183
        if(not S_ISLNK(exe_stat.st_mode)
163
201
    proc_dir = NULL;
164
202
  }
165
203
  if(splashy_pid == 0){
 
204
    exitstatus = EX_UNAVAILABLE;
166
205
    goto failure;
167
206
  }
168
207
  
175
214
    ret = sigaddset(&new_action.sa_mask, SIGINT);
176
215
    if(ret == -1){
177
216
      perror("sigaddset");
 
217
      exitstatus = EX_OSERR;
178
218
      goto failure;
179
219
    }
180
220
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
181
221
    if(ret == -1){
182
222
      perror("sigaddset");
 
223
      exitstatus = EX_OSERR;
183
224
      goto failure;
184
225
    }
185
226
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
186
227
    if(ret == -1){
187
228
      perror("sigaddset");
 
229
      exitstatus = EX_OSERR;
188
230
      goto failure;
189
231
    }
190
232
    ret = sigaction(SIGINT, NULL, &old_action);
191
233
    if(ret == -1){
192
234
      perror("sigaction");
 
235
      exitstatus = EX_OSERR;
193
236
      goto failure;
194
237
    }
195
238
    if(old_action.sa_handler != SIG_IGN){
196
239
      ret = sigaction(SIGINT, &new_action, NULL);
197
240
      if(ret == -1){
198
241
        perror("sigaction");
 
242
        exitstatus = EX_OSERR;
199
243
        goto failure;
200
244
      }
201
245
    }
202
246
    ret = sigaction(SIGHUP, NULL, &old_action);
203
247
    if(ret == -1){
204
248
      perror("sigaction");
 
249
      exitstatus = EX_OSERR;
205
250
      goto failure;
206
251
    }
207
252
    if(old_action.sa_handler != SIG_IGN){
208
253
      ret = sigaction(SIGHUP, &new_action, NULL);
209
254
      if(ret == -1){
210
255
        perror("sigaction");
 
256
        exitstatus = EX_OSERR;
211
257
        goto failure;
212
258
      }
213
259
    }
214
260
    ret = sigaction(SIGTERM, NULL, &old_action);
215
261
    if(ret == -1){
216
262
      perror("sigaction");
 
263
      exitstatus = EX_OSERR;
217
264
      goto failure;
218
265
    }
219
266
    if(old_action.sa_handler != SIG_IGN){
220
267
      ret = sigaction(SIGTERM, &new_action, NULL);
221
268
      if(ret == -1){
222
269
        perror("sigaction");
 
270
        exitstatus = EX_OSERR;
223
271
        goto failure;
224
272
      }
225
273
    }
236
284
  }
237
285
  if(splashy_command_pid == -1){
238
286
    perror("fork");
 
287
    exitstatus = EX_OSERR;
239
288
    goto failure;
240
289
  }
241
290
  /* Child */
243
292
    if(not interrupted_by_signal){
244
293
      const char splashy_command[] = "/sbin/splashy_update";
245
294
      execl(splashy_command, splashy_command, prompt, (char *)NULL);
 
295
      int e = errno;
246
296
      perror("execl");
 
297
      switch(e){
 
298
      case EACCES:
 
299
      case ENOENT:
 
300
      case ENOEXEC:
 
301
      case EINVAL:
 
302
        _exit(EX_UNAVAILABLE);
 
303
      case ENAMETOOLONG:
 
304
      case E2BIG:
 
305
      case ENOMEM:
 
306
      case EFAULT:
 
307
      case EIO:
 
308
      case EMFILE:
 
309
      case ENFILE:
 
310
      case ETXTBSY:
 
311
      default:
 
312
        _exit(EX_OSERR);
 
313
      case ENOTDIR:
 
314
      case ELOOP:
 
315
      case EISDIR:
 
316
      case ELIBBAD:
 
317
      case EPERM:
 
318
        _exit(EX_OSFILE);
 
319
      }
247
320
    }
248
321
    free(prompt);
249
322
    _exit(EXIT_FAILURE);
320
393
      ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
321
394
      if(ret == -1){
322
395
        perror("dup2");
323
 
        _exit(EXIT_FAILURE);
 
396
        _exit(EX_OSERR);
324
397
      }
325
 
    
 
398
      
326
399
      execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
327
 
      perror("execl");
328
 
      _exit(EXIT_FAILURE);
 
400
      {
 
401
        int e = errno;
 
402
        perror("execl");
 
403
        switch(e){
 
404
        case EACCES:
 
405
        case ENOENT:
 
406
        case ENOEXEC:
 
407
        default:
 
408
          _exit(EX_UNAVAILABLE);
 
409
        case ENAMETOOLONG:
 
410
        case E2BIG:
 
411
        case ENOMEM:
 
412
          _exit(EX_OSERR);
 
413
        case ENOTDIR:
 
414
        case ELOOP:
 
415
          _exit(EX_OSFILE);
 
416
        }
 
417
      }
329
418
    }
330
419
  }
331
420
  
348
437
    TEMP_FAILURE_RETRY(pause());
349
438
  }
350
439
  
351
 
  return EXIT_FAILURE;
 
440
  return exitstatus;
352
441
}