procmon.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. /* Copyright (c) 2011-2012, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file procmon.c
  5. * \brief Process-termination monitor functions
  6. **/
  7. #include "procmon.h"
  8. #include "util.h"
  9. #ifdef HAVE_EVENT2_EVENT_H
  10. #include <event2/event.h>
  11. #else
  12. #include <event.h>
  13. #endif
  14. #ifdef HAVE_SIGNAL_H
  15. #include <signal.h>
  16. #endif
  17. #ifdef HAVE_ERRNO_H
  18. #include <errno.h>
  19. #endif
  20. #ifdef _WIN32
  21. #include <windows.h>
  22. #endif
  23. #if (0 == SIZEOF_PID_T) && defined(_WIN32)
  24. /* Windows does not define pid_t sometimes, but _getpid() returns an int.
  25. * Everybody else needs to have a pid_t. */
  26. typedef int pid_t;
  27. #define PID_T_FORMAT "%d"
  28. #elif (SIZEOF_PID_T == SIZEOF_INT) || (SIZEOF_PID_T == SIZEOF_SHORT)
  29. #define PID_T_FORMAT "%d"
  30. #elif (SIZEOF_PID_T == SIZEOF_LONG)
  31. #define PID_T_FORMAT "%ld"
  32. #elif (SIZEOF_PID_T == SIZEOF_INT64_T)
  33. #define PID_T_FORMAT I64_FORMAT
  34. #else
  35. #error Unknown: SIZEOF_PID_T
  36. #endif
  37. /* Define to 1 if process-termination monitors on this OS and Libevent
  38. version must poll for process termination themselves. */
  39. #define PROCMON_POLLS 1
  40. /* Currently we need to poll in some way on all systems. */
  41. #ifdef PROCMON_POLLS
  42. static void tor_process_monitor_poll_cb(evutil_socket_t unused1, short unused2,
  43. void *procmon_);
  44. #endif
  45. /* This struct may contain pointers into the original process
  46. * specifier string, but it should *never* contain anything which
  47. * needs to be freed. */
  48. /* DOCDOC parsed_process_specifier_t */
  49. struct parsed_process_specifier_t {
  50. pid_t pid;
  51. };
  52. /** Parse the process specifier given in <b>process_spec</b> into
  53. * *<b>ppspec</b>. Return 0 on success; return -1 and store an error
  54. * message into *<b>msg</b> on failure. The caller must not free the
  55. * returned error message. */
  56. static int
  57. parse_process_specifier(const char *process_spec,
  58. struct parsed_process_specifier_t *ppspec,
  59. const char **msg)
  60. {
  61. long pid_l;
  62. int pid_ok = 0;
  63. char *pspec_next;
  64. /* If we're lucky, long will turn out to be large enough to hold a
  65. * PID everywhere that Tor runs. */
  66. pid_l = tor_parse_long(process_spec, 0, 1, LONG_MAX, &pid_ok, &pspec_next);
  67. /* Reserve room in the ‘process specifier’ for additional
  68. * (platform-specific) identifying information beyond the PID, to
  69. * make our process-existence checks a bit less racy in a future
  70. * version. */
  71. if ((*pspec_next != 0) && (*pspec_next != ' ') && (*pspec_next != ':')) {
  72. pid_ok = 0;
  73. }
  74. ppspec->pid = (pid_t)(pid_l);
  75. if (!pid_ok || (pid_l != (long)(ppspec->pid))) {
  76. *msg = "invalid PID";
  77. goto err;
  78. }
  79. return 0;
  80. err:
  81. return -1;
  82. }
  83. /* DOCDOC tor_process_monitor_t */
  84. struct tor_process_monitor_t {
  85. /** Log domain for warning messages. */
  86. log_domain_mask_t log_domain;
  87. /** All systems: The best we can do in general is poll for the
  88. * process's existence by PID periodically, and hope that the kernel
  89. * doesn't reassign the same PID to another process between our
  90. * polls. */
  91. pid_t pid;
  92. #ifdef _WIN32
  93. /** Windows-only: Should we poll hproc? If false, poll pid
  94. * instead. */
  95. int poll_hproc;
  96. /** Windows-only: Get a handle to the process (if possible) and
  97. * periodically check whether the process we have a handle to has
  98. * ended. */
  99. HANDLE hproc;
  100. /* XXX023 We can and should have Libevent watch hproc for us,
  101. * if/when some version of Libevent 2.x can be told to do so. */
  102. #endif
  103. /* XXX023 On Linux, we can and should receive the 22nd
  104. * (space-delimited) field (‘starttime’) of /proc/$PID/stat from the
  105. * owning controller and store it, and poll once in a while to see
  106. * whether it has changed -- if so, the kernel has *definitely*
  107. * reassigned the owning controller's PID and we should exit. On
  108. * FreeBSD, we can do the same trick using either the 8th
  109. * space-delimited field of /proc/$PID/status on the seven FBSD
  110. * systems whose admins have mounted procfs, or the start-time field
  111. * of the process-information structure returned by kvmgetprocs() on
  112. * any system. The latter is ickier. */
  113. /* XXX023 On FreeBSD (and possibly other kqueue systems), we can and
  114. * should arrange to receive EVFILT_PROC NOTE_EXIT notifications for
  115. * pid, so we don't have to do such a heavyweight poll operation in
  116. * order to avoid the PID-reassignment race condition. (We would
  117. * still need to poll our own kqueue periodically until some version
  118. * of Libevent 2.x learns to receive these events for us.) */
  119. /** A Libevent event structure, to either poll for the process's
  120. * existence or receive a notification when the process ends. */
  121. struct event *e;
  122. /** A callback to be called when the process ends. */
  123. tor_procmon_callback_t cb;
  124. void *cb_arg; /**< A user-specified pointer to be passed to cb. */
  125. };
  126. /** Verify that the process specifier given in <b>process_spec</b> is
  127. * syntactically valid. Return 0 on success; return -1 and store an
  128. * error message into *<b>msg</b> on failure. The caller must not
  129. * free the returned error message. */
  130. int
  131. tor_validate_process_specifier(const char *process_spec,
  132. const char **msg)
  133. {
  134. struct parsed_process_specifier_t ppspec;
  135. tor_assert(msg != NULL);
  136. *msg = NULL;
  137. return parse_process_specifier(process_spec, &ppspec, msg);
  138. }
  139. #ifdef HAVE_EVENT2_EVENT_H
  140. #define PERIODIC_TIMER_FLAGS EV_PERSIST
  141. #else
  142. #define PERIODIC_TIMER_FLAGS (0)
  143. #endif
  144. /* DOCDOC poll_interval_tv */
  145. static struct timeval poll_interval_tv = {15, 0};
  146. /* Note: If you port this file to plain Libevent 2, you can make
  147. * poll_interval_tv const. It has to be non-const here because in
  148. * libevent 1.x, event_add expects a pointer to a non-const struct
  149. * timeval. */
  150. /** Create a process-termination monitor for the process specifier
  151. * given in <b>process_spec</b>. Return a newly allocated
  152. * tor_process_monitor_t on success; return NULL and store an error
  153. * message into *<b>msg</b> on failure. The caller must not free
  154. * the returned error message.
  155. *
  156. * When the monitored process terminates, call
  157. * <b>cb</b>(<b>cb_arg</b>).
  158. */
  159. tor_process_monitor_t *
  160. tor_process_monitor_new(struct event_base *base,
  161. const char *process_spec,
  162. log_domain_mask_t log_domain,
  163. tor_procmon_callback_t cb, void *cb_arg,
  164. const char **msg)
  165. {
  166. tor_process_monitor_t *procmon = tor_malloc(sizeof(tor_process_monitor_t));
  167. struct parsed_process_specifier_t ppspec;
  168. tor_assert(msg != NULL);
  169. *msg = NULL;
  170. if (procmon == NULL) {
  171. *msg = "out of memory";
  172. goto err;
  173. }
  174. procmon->log_domain = log_domain;
  175. if (parse_process_specifier(process_spec, &ppspec, msg))
  176. goto err;
  177. procmon->pid = ppspec.pid;
  178. #ifdef _WIN32
  179. procmon->hproc = OpenProcess(PROCESS_QUERY_INFORMATION | SYNCHRONIZE,
  180. FALSE,
  181. procmon->pid);
  182. if (procmon->hproc != NULL) {
  183. procmon->poll_hproc = 1;
  184. log_info(procmon->log_domain, "Successfully opened handle to process "
  185. PID_T_FORMAT"; "
  186. "monitoring it.",
  187. procmon->pid);
  188. } else {
  189. /* If we couldn't get a handle to the process, we'll try again the
  190. * first time we poll. */
  191. log_info(procmon->log_domain, "Failed to open handle to process "
  192. PID_T_FORMAT"; will "
  193. "try again later.",
  194. procmon->pid);
  195. }
  196. #endif
  197. procmon->cb = cb;
  198. procmon->cb_arg = cb_arg;
  199. #ifdef PROCMON_POLLS
  200. procmon->e = tor_event_new(base, -1 /* no FD */, PERIODIC_TIMER_FLAGS,
  201. tor_process_monitor_poll_cb, procmon);
  202. /* Note: If you port this file to plain Libevent 2, check that
  203. * procmon->e is non-NULL. We don't need to here because
  204. * tor_evtimer_new never returns NULL. */
  205. evtimer_add(procmon->e, &poll_interval_tv);
  206. #else
  207. #error OOPS?
  208. #endif
  209. return procmon;
  210. err:
  211. tor_process_monitor_free(procmon);
  212. return NULL;
  213. }
  214. #ifdef PROCMON_POLLS
  215. /** Libevent callback to poll for the existence of the process
  216. * monitored by <b>procmon_</b>. */
  217. static void
  218. tor_process_monitor_poll_cb(evutil_socket_t unused1, short unused2,
  219. void *procmon_)
  220. {
  221. tor_process_monitor_t *procmon = (tor_process_monitor_t *)(procmon_);
  222. int its_dead_jim;
  223. (void)unused1; (void)unused2;
  224. tor_assert(procmon != NULL);
  225. #ifdef _WIN32
  226. if (procmon->poll_hproc) {
  227. DWORD exit_code;
  228. if (!GetExitCodeProcess(procmon->hproc, &exit_code)) {
  229. char *errmsg = format_win32_error(GetLastError());
  230. log_warn(procmon->log_domain, "Error \"%s\" occurred while polling "
  231. "handle for monitored process "PID_T_FORMAT"; assuming "
  232. "it's dead.",
  233. errmsg, procmon->pid);
  234. tor_free(errmsg);
  235. its_dead_jim = 1;
  236. } else {
  237. its_dead_jim = (exit_code != STILL_ACTIVE);
  238. }
  239. } else {
  240. /* All we can do is try to open the process, and look at the error
  241. * code if it fails again. */
  242. procmon->hproc = OpenProcess(PROCESS_QUERY_INFORMATION | SYNCHRONIZE,
  243. FALSE,
  244. procmon->pid);
  245. if (procmon->hproc != NULL) {
  246. log_info(procmon->log_domain, "Successfully opened handle to monitored "
  247. "process "PID_T_FORMAT".",
  248. procmon->pid);
  249. its_dead_jim = 0;
  250. procmon->poll_hproc = 1;
  251. } else {
  252. DWORD err_code = GetLastError();
  253. char *errmsg = format_win32_error(err_code);
  254. /* When I tested OpenProcess's error codes on Windows 7, I
  255. * received error code 5 (ERROR_ACCESS_DENIED) for PIDs of
  256. * existing processes that I could not open and error code 87
  257. * (ERROR_INVALID_PARAMETER) for PIDs that were not in use.
  258. * Since the nonexistent-process error code is sane, I'm going
  259. * to assume that all errors other than ERROR_INVALID_PARAMETER
  260. * mean that the process we are monitoring is still alive. */
  261. its_dead_jim = (err_code == ERROR_INVALID_PARAMETER);
  262. if (!its_dead_jim)
  263. log_info(procmon->log_domain, "Failed to open handle to monitored "
  264. "process "PID_T_FORMAT", and error code %lu (%s) is not "
  265. "'invalid parameter' -- assuming the process is still alive.",
  266. procmon->pid,
  267. err_code, errmsg);
  268. tor_free(errmsg);
  269. }
  270. }
  271. #else
  272. /* Unix makes this part easy, if a bit racy. */
  273. its_dead_jim = kill(procmon->pid, 0);
  274. its_dead_jim = its_dead_jim && (errno == ESRCH);
  275. #endif
  276. log(its_dead_jim ? LOG_NOTICE : LOG_INFO,
  277. procmon->log_domain, "Monitored process "PID_T_FORMAT" is %s.",
  278. procmon->pid,
  279. its_dead_jim ? "dead" : "still alive");
  280. if (its_dead_jim) {
  281. procmon->cb(procmon->cb_arg);
  282. #ifndef HAVE_EVENT2_EVENT_H
  283. } else {
  284. evtimer_add(procmon->e, &poll_interval_tv);
  285. #endif
  286. }
  287. }
  288. #endif
  289. /** Free the process-termination monitor <b>procmon</b>. */
  290. void
  291. tor_process_monitor_free(tor_process_monitor_t *procmon)
  292. {
  293. if (procmon == NULL)
  294. return;
  295. #ifdef _WIN32
  296. if (procmon->hproc != NULL)
  297. CloseHandle(procmon->hproc);
  298. #endif
  299. if (procmon->e != NULL)
  300. tor_event_free(procmon->e);
  301. tor_free(procmon);
  302. }