merge with 0.30.213
[util-vserver.git] / lib_internal / util-exitlikeprocess.c
1 // $Id: util-exitlikeprocess.c 1954 2005-03-22 14:59:46Z ensc $    --*- 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 #include <stdio.h>
34
35 void
36 exitLikeProcess(int pid, char const *cmd, int ret)
37 {
38   int                   status;
39   
40   if (wait4(pid, &status, 0,0)==-1) {
41     
42     perror("wait()");
43     exit(ret);
44   }
45
46   if (WIFEXITED(status))
47     exit(WEXITSTATUS(status));
48
49   if (WIFSIGNALED(status)) {
50     struct rlimit       lim = { 0,0 };
51
52     if (cmd) {
53       char              buf[sizeof(int)*3 + 2];
54       size_t            l = utilvserver_fmt_uint(buf, pid);
55       
56       WRITE_MSG(2, "command '");
57       WRITE_STR(2, cmd);
58       WRITE_MSG(2, "' (pid ");
59       Vwrite   (2, buf, l);
60       WRITE_MSG(2, ") exited with signal ");
61       l = utilvserver_fmt_uint(buf, WTERMSIG(status));      
62       Vwrite   (2, buf, l);
63       WRITE_MSG(2, "; following it...\n");
64     }
65
66     // prevent coredumps which might override the real ones
67     setrlimit(RLIMIT_CORE, &lim);
68       
69     kill(getpid(), WTERMSIG(status));
70     exit(1);
71   }
72   else {
73     char                buf[sizeof(int)*3 + 2];
74     size_t              l = utilvserver_fmt_uint(buf, WTERMSIG(status));
75
76     WRITE_MSG(2, "Unexpected status ");
77     Vwrite   (2, buf, l);
78     WRITE_MSG(2, " from '");
79     if (cmd) {
80       WRITE_STR(2, cmd);
81       WRITE_MSG(2, " (pid ");
82     }
83     l = utilvserver_fmt_uint(buf, pid);
84     Vwrite   (2, buf, l);
85     if (cmd) WRITE_MSG(2, ")\n");
86     else     WRITE_MSG(2, "\n");
87
88     exit(ret);
89   }
90 }