Merge trunk for LP
[awesomized/libmemcached] / libtest / killpid.cc
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * uTest
4 *
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 *
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following disclaimer
16 * in the documentation and/or other materials provided with the
17 * distribution.
18 *
19 * * The names of its contributors may not be used to endorse or
20 * promote products derived from this software without specific prior
21 * written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 *
35 */
36
37 #include <libtest/common.h>
38
39 #include <cstdlib>
40 #include <cstring>
41 #include <iostream>
42
43 #include <libtest/killpid.h>
44 #include <libtest/stream.h>
45
46 using namespace libtest;
47
48 bool kill_pid(pid_t pid_arg)
49 {
50 if (pid_arg <= 1)
51 return false;
52
53 if ((::kill(pid_arg, SIGTERM) == -1))
54 {
55 switch (errno)
56 {
57 case EPERM:
58 perror(__func__);
59 Error << __func__ << " -> Does someone else have a process running locally for " << int(pid_arg) << "?";
60 return false;
61
62 case ESRCH:
63 perror(__func__);
64 Error << "Process " << int(pid_arg) << " not found.";
65 return false;
66
67 default:
68 case EINVAL:
69 perror(__func__);
70 return false;
71 }
72 }
73
74 int status= 0;
75 pid_t pid= waitpid(pid_arg, &status, 0);
76 if (pid == -1)
77 {
78 switch (errno)
79 {
80 case ECHILD:
81 return true;
82 }
83
84 Error << "Error occured while waitpid(" << strerror(errno) << ") on pid " << int(pid_arg);
85
86 return false;
87 }
88
89 if (WIFEXITED(status))
90 return true;
91
92 if (WCOREDUMP(status))
93 return true;
94
95 return false;
96 }
97
98
99 void kill_file(const std::string &filename)
100 {
101 FILE *fp;
102
103 if (filename.empty())
104 return;
105
106 if ((fp= fopen(filename.c_str(), "r")))
107 {
108 char pid_buffer[1024];
109
110 char *ptr= fgets(pid_buffer, sizeof(pid_buffer), fp);
111 fclose(fp);
112
113 if (ptr)
114 {
115 pid_t pid= (pid_t)atoi(pid_buffer);
116 if (pid != 0)
117 {
118 kill_pid(pid);
119 unlink(filename.c_str()); // If this happens we may be dealing with a dead server that left its pid file.
120 }
121 }
122 }
123 }