be more verbose when sending a signal
[util-vserver.git] / util-vserver / lib_internal / util-exitlikeprocess.c
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 2004 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; version 2 of the License.
8 //  
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //  
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18
19 #ifdef HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #include "util.h"
24 #include <lib/internal.h>
25
26 #include <stdlib.h>
27 #include <sys/types.h>
28 #include <sys/resource.h>
29 #include <sys/wait.h>
30 #include <unistd.h>
31 #include <signal.h>
32 #include <sys/resource.h>
33
34 void
35 exitLikeProcess(int pid, char const *cmd)
36 {
37   int           status;
38   
39   if (wait4(pid, &status, 0,0)==-1) return;
40
41   if (WIFEXITED(status))
42     exit(WEXITSTATUS(status));
43
44   if (WIFSIGNALED(status)) {
45     struct rlimit       lim = { 0,0 };
46
47     if (cmd) {
48       char              buf[sizeof(int)*3 + 2];
49       size_t            l = utilvserver_fmt_uint(buf, pid);
50       
51       WRITE_MSG(2, "command '");
52       WRITE_STR(2, cmd);
53       WRITE_MSG(2, "' (pid ");
54       write    (2, buf, l);
55       WRITE_MSG(2, ") exited with signal ");
56       l = utilvserver_fmt_uint(buf, WTERMSIG(status));      
57       write    (2, buf, l);
58       WRITE_MSG(2, "; following it...\n");
59     }
60
61     // prevent coredumps which might override the real ones
62     setrlimit(RLIMIT_CORE, &lim);
63       
64     kill(getpid(), WTERMSIG(status));
65     exit(1);
66   }
67 }