blob: ae888ce689a764e4fb99e7a729ca05d72c6ba405 [file] [log] [blame]
Brian Silvermand169fcd2013-02-27 13:18:47 -08001#include <stdio.h>
2#include <stdlib.h>
3#include <sys/types.h>
4#include <fcntl.h>
5#include <sys/inotify.h>
6#include <sys/stat.h>
7#include <sys/ioctl.h>
8#include <assert.h>
9#include <signal.h>
10#include <stdint.h>
11#include <errno.h>
12#include <string.h>
13#include <sys/wait.h>
14
15#include <map>
16#include <functional>
17#include <deque>
18#include <fstream>
19#include <queue>
20#include <list>
21#include <string>
22#include <vector>
23#include <memory>
24
25#include <event2/event.h>
26
27#include "aos/common/logging/logging.h"
28#include "aos/common/logging/logging_impl.h"
29#include "aos/atom_code/init.h"
30#include "aos/common/unique_malloc_ptr.h"
31#include "aos/common/time.h"
Brian Silverman5cc661b2013-02-27 15:23:36 -080032#include "aos/common/once.h"
Brian Silvermand169fcd2013-02-27 13:18:47 -080033
34// This is the main piece of code that starts all of the rest of the code and
35// restarts it when the binaries are modified.
36//
Brian Silverman5cc661b2013-02-27 15:23:36 -080037// NOTE: This program should never exit nicely. It catches all nice attempts to
38// exit, forwards them to all of the children that it has started, waits for
Brian Silvermand169fcd2013-02-27 13:18:47 -080039// them to exit nicely, and then SIGKILLs anybody left (which will always
40// include itself).
41
42using ::std::unique_ptr;
43
44namespace aos {
45namespace starter {
46
Brian Silvermand169fcd2013-02-27 13:18:47 -080047class EventBaseDeleter {
48 public:
49 void operator()(event_base *base) {
Brian Silvermand169fcd2013-02-27 13:18:47 -080050 event_base_free(base);
51 }
52};
53typedef unique_ptr<event_base, EventBaseDeleter> EventBaseUniquePtr;
Brian Silverman5cc661b2013-02-27 15:23:36 -080054EventBaseUniquePtr libevent_base;
Brian Silvermand169fcd2013-02-27 13:18:47 -080055
56class EventDeleter {
57 public:
58 void operator()(event *evt) {
Brian Silvermand169fcd2013-02-27 13:18:47 -080059 if (event_del(evt) != 0) {
60 LOG(WARNING, "event_del(%p) failed\n", evt);
61 }
62 }
63};
64typedef unique_ptr<event, EventDeleter> EventUniquePtr;
65
Brian Silverman5cc661b2013-02-27 15:23:36 -080066// Watches a file path for modifications. Once created, keeps watching until
67// destroyed or RemoveWatch() is called.
Brian Silvermand169fcd2013-02-27 13:18:47 -080068class FileWatch {
69 public:
70 // Will call callback(value) when filename is modified.
71 // If value is NULL, then a pointer to this object will be passed instead.
Brian Silverman5cc661b2013-02-27 15:23:36 -080072 //
73 // Watching for file creations is slightly different. To do that, pass true
74 // for create, the directory where the file will be created for filename, and
75 // the name of the file (without directory name) for check_filename.
Brian Silvermand169fcd2013-02-27 13:18:47 -080076 FileWatch(std::string filename,
77 std::function<void(void *)> callback, void *value,
78 bool create = false, std::string check_filename = "")
79 : filename_(filename), callback_(callback), value_(value),
80 check_filename_(check_filename) {
Brian Silverman5cc661b2013-02-27 15:23:36 -080081 init_once.Get();
82
Brian Silvermand169fcd2013-02-27 13:18:47 -080083 watch_ = inotify_add_watch(notify_fd, filename.c_str(),
84 create ? IN_CREATE : (IN_ATTRIB | IN_MODIFY));
85 if (watch_ == -1) {
Brian Silverman5cc661b2013-02-27 15:23:36 -080086 LOG(FATAL, "inotify_add_watch(%d, %s,"
87 " %s ? IN_CREATE : (IN_ATTRIB | IN_MODIFY)) failed with %d: %s\n",
88 notify_fd, filename.c_str(), create ? "true" : "false",
89 errno, strerror(errno));
Brian Silvermand169fcd2013-02-27 13:18:47 -080090 }
91 watchers[watch_] = this;
92 }
93 // Cleans up everything.
94 ~FileWatch() {
95 if (watch_ != -1) {
96 RemoveWatch();
97 }
98 }
99
100 // After calling this method, this object won't really be doing much of
Brian Silverman5cc661b2013-02-27 15:23:36 -0800101 // anything besides possibly running its callback or something.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800102 void RemoveWatch() {
103 assert(watch_ != -1);
Brian Silverman5cc661b2013-02-27 15:23:36 -0800104
Brian Silvermand169fcd2013-02-27 13:18:47 -0800105 if (inotify_rm_watch(notify_fd, watch_) == -1) {
106 LOG(WARNING, "inotify_rm_watch(%d, %d) failed with %d: %s\n",
107 notify_fd, watch_, errno, strerror(errno));
108 }
Brian Silverman5cc661b2013-02-27 15:23:36 -0800109
Brian Silvermand169fcd2013-02-27 13:18:47 -0800110 if (watchers[watch_] != this) {
Brian Silverman5cc661b2013-02-27 15:23:36 -0800111 LOG(WARNING, "watcher for %s (%p) didn't find itself in the map\n",
112 filename_.c_str(), this);
Brian Silvermand169fcd2013-02-27 13:18:47 -0800113 } else {
114 watchers.erase(watch_);
115 }
Brian Silvermanb1e4f6c2013-02-27 15:42:02 -0800116 LOG(DEBUG, "removed watch ID %d\n", watch_);
Brian Silvermand169fcd2013-02-27 13:18:47 -0800117 watch_ = -1;
118 }
119
Brian Silverman5cc661b2013-02-27 15:23:36 -0800120 private:
121 // Performs the static initialization. Called by init_once from the
122 // constructor.
123 static void *Init() {
124 notify_fd = inotify_init1(IN_CLOEXEC);
125 EventUniquePtr notify_event(event_new(libevent_base.get(), notify_fd,
126 EV_READ | EV_PERSIST,
127 FileWatch::INotifyReadable, NULL));
128 event_add(notify_event.release(), NULL);
129 return NULL;
Brian Silvermand169fcd2013-02-27 13:18:47 -0800130 }
131
132 // This gets set up as the callback for EV_READ on the inotify file
Brian Silverman5cc661b2013-02-27 15:23:36 -0800133 // descriptor. It calls FileNotified on the appropriate instance.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800134 static void INotifyReadable(int /*fd*/, short /*events*/, void *) {
135 unsigned int to_read;
Brian Silverman5cc661b2013-02-27 15:23:36 -0800136 // Use FIONREAD to figure out how many bytes there are to read.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800137 if (ioctl(notify_fd, FIONREAD, &to_read) < 0) {
138 LOG(FATAL, "FIONREAD(%d, %p) failed with %d: %s\n",
139 notify_fd, &to_read, errno, strerror(errno));
140 }
141 inotify_event *notifyevt = static_cast<inotify_event *>(malloc(to_read));
142 const char *end = reinterpret_cast<char *>(notifyevt) + to_read;
143 aos::unique_c_ptr<inotify_event> freer(notifyevt);
144
145 ssize_t ret = read(notify_fd, notifyevt, to_read);
146 if (ret < 0) {
147 LOG(FATAL, "read(%d, %p, %u) failed with %d: %s\n",
148 notify_fd, notifyevt, to_read, errno, strerror(errno));
149 }
150 if (static_cast<size_t>(ret) != to_read) {
151 LOG(ERROR, "read(%d, %p, %u) returned %zd instead of %u\n",
152 notify_fd, notifyevt, to_read, ret, to_read);
153 return;
154 }
155
Brian Silverman5cc661b2013-02-27 15:23:36 -0800156 // Keep looping through until we get to the end because inotify does return
157 // multiple events at once.
Brian Silvermanb1e4f6c2013-02-27 15:42:02 -0800158 while (reinterpret_cast<char *>(notifyevt) < end) {
Brian Silvermand169fcd2013-02-27 13:18:47 -0800159 if (watchers.count(notifyevt->wd) != 1) {
Brian Silverman5cc661b2013-02-27 15:23:36 -0800160 LOG(DEBUG, "couldn't find whose watch ID %d is\n", notifyevt->wd);
Brian Silvermanb1e4f6c2013-02-27 15:42:02 -0800161 } else {
162 watchers[notifyevt->wd]->FileNotified((notifyevt->len > 0) ?
163 notifyevt->name : NULL);
Brian Silvermand169fcd2013-02-27 13:18:47 -0800164 }
Brian Silvermand169fcd2013-02-27 13:18:47 -0800165
166 notifyevt = reinterpret_cast<inotify_event *>(
167 reinterpret_cast<char *>(notifyevt) +
168 sizeof(*notifyevt) + notifyevt->len);
Brian Silvermand169fcd2013-02-27 13:18:47 -0800169 }
170 }
171
Brian Silverman5cc661b2013-02-27 15:23:36 -0800172 // INotifyReadable calls this method whenever the watch for our file triggers.
173 void FileNotified(const char *filename) {
174 assert(watch_ != -1);
Brian Silvermanb1e4f6c2013-02-27 15:42:02 -0800175 LOG(DEBUG, "got a notification for %s\n", filename_.c_str());
Brian Silverman5cc661b2013-02-27 15:23:36 -0800176
177 if (!check_filename_.empty()) {
178 if (filename == NULL) {
179 return;
180 }
181 if (std::string(filename) != check_filename_) {
182 return;
183 }
184 }
185
186 callback_((value_ == NULL) ? this : value_);
Brian Silvermand169fcd2013-02-27 13:18:47 -0800187 }
188
Brian Silverman5cc661b2013-02-27 15:23:36 -0800189 // To make sure that Init gets called exactly once.
190 static ::aos::Once<void> init_once;
191
Brian Silvermand169fcd2013-02-27 13:18:47 -0800192 const std::string filename_;
193 const std::function<void(void *)> callback_;
194 void *const value_;
195 std::string check_filename_;
196
197 // The watch descriptor or -1 if we don't have one any more.
198 int watch_;
199
Brian Silverman5cc661b2013-02-27 15:23:36 -0800200 // Map from watch IDs to instances.
201 // <https://patchwork.kernel.org/patch/73192/> says they won't get reused, but
202 // that shouldn't be counted on because we might have a
203 // modified/different version/whatever kernel.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800204 static std::map<int, FileWatch *> watchers;
Brian Silverman5cc661b2013-02-27 15:23:36 -0800205 // The inotify(7) file descriptor.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800206 static int notify_fd;
207};
Brian Silverman5cc661b2013-02-27 15:23:36 -0800208::aos::Once<void> FileWatch::init_once(FileWatch::Init);
Brian Silvermand169fcd2013-02-27 13:18:47 -0800209std::map<int, FileWatch *> FileWatch::watchers;
210int FileWatch::notify_fd;
211
Brian Silverman5cc661b2013-02-27 15:23:36 -0800212// Runs the given command and returns its first line of output (not including
213// the \n). LOG(FATAL)s if the command has an exit status other than 0 or does
214// not print out an entire line.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800215std::string RunCommand(std::string command) {
Brian Silverman5cc661b2013-02-27 15:23:36 -0800216 // popen(3) might fail and not set it.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800217 errno = 0;
Brian Silverman5cc661b2013-02-27 15:23:36 -0800218 FILE *pipe = popen(command.c_str(), "r");
219 if (pipe == NULL) {
Brian Silvermand169fcd2013-02-27 13:18:47 -0800220 LOG(FATAL, "popen(\"%s\", \"r\") failed with %d: %s\n",
221 command.c_str(), errno, strerror(errno));
222 }
223
Brian Silverman5cc661b2013-02-27 15:23:36 -0800224 // result_size is how many bytes result is currently allocated to.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800225 size_t result_size = 128, read = 0;
226 unique_c_ptr<char> result(static_cast<char *>(malloc(result_size)));
227 while (true) {
Brian Silverman5cc661b2013-02-27 15:23:36 -0800228 // If we filled up the buffer, then realloc(3) it bigger.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800229 if (read == result_size) {
230 result_size *= 2;
231 void *new_result = realloc(result.get(), result_size);
232 if (new_result == NULL) {
Brian Silverman5cc661b2013-02-27 15:23:36 -0800233 LOG(FATAL, "realloc(%p, %zd) failed because of %d: %s\n",
234 result.get(), result_size, errno, strerror(errno));
Brian Silvermand169fcd2013-02-27 13:18:47 -0800235 } else {
236 result.release();
237 result = unique_c_ptr<char>(static_cast<char *>(new_result));
238 }
239 }
240
Brian Silverman5cc661b2013-02-27 15:23:36 -0800241 size_t ret = fread(result.get() + read, 1, result_size - read, pipe);
242 // If the read didn't fill up the whole buffer, check to see if it was
243 // because of an error.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800244 if (ret < result_size - read) {
Brian Silverman5cc661b2013-02-27 15:23:36 -0800245 if (ferror(pipe)) {
Brian Silvermand169fcd2013-02-27 13:18:47 -0800246 LOG(FATAL, "couldn't finish reading output of \"%s\"\n",
247 command.c_str());
248 }
249 }
250 read += ret;
251 if (read > 0 && result.get()[read - 1] == '\n') {
252 break;
253 }
254
Brian Silverman5cc661b2013-02-27 15:23:36 -0800255 if (feof(pipe)) {
256 LOG(FATAL, "`%s` failed. didn't print a whole line\n", command.c_str());
Brian Silvermand169fcd2013-02-27 13:18:47 -0800257 }
258 }
259
Brian Silverman5cc661b2013-02-27 15:23:36 -0800260 // Get rid of the first \n and anything after it.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800261 *strchrnul(result.get(), '\n') = '\0';
262
Brian Silverman5cc661b2013-02-27 15:23:36 -0800263 int child_status = pclose(pipe);
Brian Silvermand169fcd2013-02-27 13:18:47 -0800264 if (child_status == -1) {
Brian Silverman5cc661b2013-02-27 15:23:36 -0800265 LOG(FATAL, "pclose(%p) failed with %d: %s\n", pipe,
Brian Silvermand169fcd2013-02-27 13:18:47 -0800266 errno, strerror(errno));
267 }
268
269 if (child_status != 0) {
270 LOG(FATAL, "`%s` failed. return %d\n", command.c_str(), child_status);
271 }
272
273 return std::string(result.get());
274}
275
276// Will call callback(arg) after time.
277void Timeout(time::Time time, void (*callback)(int, short, void *), void *arg) {
278 EventUniquePtr timeout(evtimer_new(libevent_base.get(), callback, arg));
279 struct timeval time_timeval = time.ToTimeval();
280 evtimer_add(timeout.release(), &time_timeval);
281}
282
283// Represents a child process. It will take care of restarting itself etc.
284class Child {
285 public:
Brian Silverman5cc661b2013-02-27 15:23:36 -0800286 // command is the (space-separated) command to run and its arguments.
287 Child(const std::string &command) : pid_(-1),
Brian Silvermand169fcd2013-02-27 13:18:47 -0800288 restart_timeout_(
289 evtimer_new(libevent_base.get(), StaticDoRestart, this)) {
290 const char *start, *end;
291 start = command.c_str();
292 while (true) {
293 end = strchrnul(start, ' ');
294 args_.push_back(std::string(start, end - start));
295 start = end + 1;
296 if (*end == '\0') {
297 break;
298 }
299 }
300
Brian Silverman5cc661b2013-02-27 15:23:36 -0800301 original_binary_ = RunCommand("which " + args_[0]);
302 binary_ = original_binary_ + ".stm";
Brian Silvermand169fcd2013-02-27 13:18:47 -0800303
304 watcher_ = unique_ptr<FileWatch>(
Brian Silverman5cc661b2013-02-27 15:23:36 -0800305 new FileWatch(original_binary_, StaticFileModified, this));
Brian Silvermand169fcd2013-02-27 13:18:47 -0800306
307 Start();
308 }
309
310 pid_t pid() { return pid_; }
311
312 // This gets called whenever the actual process dies and should (probably) be
313 // restarted.
314 void ProcessDied() {
315 pid_ = -1;
316 restarts_.push(time::Time::Now());
317 if (restarts_.size() > kMaxRestartsNumber) {
318 time::Time oldest = restarts_.front();
319 restarts_.pop();
320 if ((time::Time::Now() - oldest) > kMaxRestartsTime) {
321 LOG(WARNING, "process %s getting restarted too often\n", name());
322 Timeout(kResumeWait, StaticStart, this);
323 return;
324 }
325 }
326 Start();
327 }
328
329 // Returns a name for logging purposes.
330 const char *name() {
331 return args_[0].c_str();
332 }
333
334 private:
335 struct CheckDiedStatus {
336 Child *self;
337 pid_t old_pid;
338 };
339
340 // How long to wait for a child to die nicely.
341 static const time::Time kProcessDieTime;
342
343 // How long to wait after the file is modified to restart it.
344 // This is important because some programs like modifying the binaries by
345 // writing them in little bits, which results in attempting to start partial
346 // binaries without this.
347 static const time::Time kRestartWaitTime;
348
Brian Silverman5cc661b2013-02-27 15:23:36 -0800349 // Only kMaxRestartsNumber restarts will be allowed in kMaxRestartsTime.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800350 static const time::Time kMaxRestartsTime;
351 static const size_t kMaxRestartsNumber = 5;
352 // How long to wait if it gets restarted too many times.
353 static const time::Time kResumeWait;
Brian Silverman5cc661b2013-02-27 15:23:36 -0800354
Brian Silvermand169fcd2013-02-27 13:18:47 -0800355 // A history of the times that this process has been restarted.
356 std::queue<time::Time, std::list<time::Time>> restarts_;
357
Brian Silverman5cc661b2013-02-27 15:23:36 -0800358 // The currently running child's PID or NULL.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800359 pid_t pid_;
360
Brian Silverman5cc661b2013-02-27 15:23:36 -0800361 // All of the arguments (including the name of the binary).
Brian Silvermand169fcd2013-02-27 13:18:47 -0800362 std::deque<std::string> args_;
Brian Silverman5cc661b2013-02-27 15:23:36 -0800363
364 // The name of the real binary that we were told to run.
365 std::string original_binary_;
366 // The name of the file that we're actually running.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800367 std::string binary_;
368
Brian Silverman5cc661b2013-02-27 15:23:36 -0800369 // Watches original_binary_.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800370 unique_ptr<FileWatch> watcher_;
371
372 // An event that restarts after kRestartWaitTime.
373 EventUniquePtr restart_timeout_;
374
375 static void StaticFileModified(void *self) {
376 static_cast<Child *>(self)->FileModified();
377 }
Brian Silverman5cc661b2013-02-27 15:23:36 -0800378
Brian Silvermand169fcd2013-02-27 13:18:47 -0800379 void FileModified() {
Brian Silvermanb1e4f6c2013-02-27 15:42:02 -0800380 LOG(DEBUG, "file for %s modified\n", name());
Brian Silvermand169fcd2013-02-27 13:18:47 -0800381 struct timeval restart_time_timeval = kRestartWaitTime.ToTimeval();
382 // This will reset the timeout again if it hasn't run yet.
383 evtimer_add(restart_timeout_.get(), &restart_time_timeval);
384 }
385
386 static void StaticDoRestart(int, short, void *self) {
387 static_cast<Child *>(self)->DoRestart();
388 }
389
Brian Silvermanb1e4f6c2013-02-27 15:42:02 -0800390 // Called after somebody else has finished modifying the file.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800391 void DoRestart() {
Brian Silvermanb1e4f6c2013-02-27 15:42:02 -0800392 // TODO(brians) see if mtime changed before actually restarting
Brian Silvermand169fcd2013-02-27 13:18:47 -0800393 if (pid_ != -1) {
394 LOG(DEBUG, "sending SIGTERM to child %d to restart it\n", pid_);
395 if (kill(pid_, SIGTERM) == -1) {
396 LOG(WARNING, "kill(%d, SIGTERM) failed with %d: %s\n",
397 pid_, errno, strerror(errno));
398 }
399 CheckDiedStatus *status = new CheckDiedStatus();
400 status->self = this;
401 status->old_pid = pid_;
402 Timeout(kProcessDieTime, StaticCheckDied, status);
403 }
404 }
405
406 static void StaticCheckDied(int, short, void *status_in) {
407 CheckDiedStatus *status = static_cast<CheckDiedStatus *>(status_in);
408 status->self->CheckDied(status->old_pid);
409 delete status;
410 }
Brian Silverman5cc661b2013-02-27 15:23:36 -0800411
412 // Checks to see if the child using the PID old_pid is still running.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800413 void CheckDied(pid_t old_pid) {
414 if (pid_ == old_pid) {
415 LOG(WARNING, "child %d refused to die\n", old_pid);
416 if (kill(old_pid, SIGKILL) == -1) {
417 LOG(WARNING, "kill(%d, SIGKILL) failed with %d: %s\n",
418 old_pid, errno, strerror(errno));
419 }
420 }
421 }
422
423 static void StaticStart(int, short, void *self) {
424 static_cast<Child *>(self)->Start();
425 }
Brian Silverman5cc661b2013-02-27 15:23:36 -0800426
427 // Actually starts the child.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800428 void Start() {
429 if (pid_ != -1) {
430 LOG(WARNING, "calling Start() but already have child %d running\n",
431 pid_);
Brian Silverman5cc661b2013-02-27 15:23:36 -0800432 if (kill(pid_, SIGKILL) == -1) {
433 LOG(WARNING, "kill(%d, SIGKILL) failed with %d: %s\n",
434 pid_, errno, strerror(errno));
435 return;
436 }
Brian Silvermand169fcd2013-02-27 13:18:47 -0800437 pid_ = -1;
438 }
Brian Silverman5cc661b2013-02-27 15:23:36 -0800439
440 // Remove the name that we run from (ie from a previous execution) and then
441 // hard link the real filename to it.
442 if (unlink(binary_.c_str()) != 0 && errno != ENOENT) {
443 LOG(FATAL, "removing %s failed because of %d: %s\n",
444 binary_.c_str(), errno, strerror(errno));
445 }
446 if (link(original_binary_.c_str(), binary_.c_str()) != 0) {
447 LOG(FATAL, "link('%s', '%s') failed because of %d: %s\n",
448 original_binary_.c_str(), binary_.c_str(), errno, strerror(errno));
449 }
450
Brian Silvermand169fcd2013-02-27 13:18:47 -0800451 if ((pid_ = fork()) == 0) {
452 ssize_t args_size = args_.size();
453 const char **argv = new const char *[args_size + 1];
454 for (int i = 0; i < args_size; ++i) {
455 argv[i] = args_[i].c_str();
456 }
457 argv[args_size] = NULL;
458 // The const_cast is safe because no code that might care if it gets
459 // modified can run afterwards.
460 execv(binary_.c_str(), const_cast<char **>(argv));
461 LOG(FATAL, "execv(%s, %p) failed with %d: %s\n",
462 binary_.c_str(), argv, errno, strerror(errno));
463 _exit(EXIT_FAILURE);
464 }
465 if (pid_ == -1) {
Brian Silverman5cc661b2013-02-27 15:23:36 -0800466 LOG(FATAL, "forking to run \"%s\" failed with %d: %s\n",
Brian Silvermand169fcd2013-02-27 13:18:47 -0800467 binary_.c_str(), errno, strerror(errno));
468 }
469 }
470};
471const time::Time Child::kProcessDieTime = time::Time::InSeconds(0.5);
472const time::Time Child::kMaxRestartsTime = time::Time::InSeconds(2);
473const time::Time Child::kResumeWait = time::Time::InSeconds(1.5);
474const time::Time Child::kRestartWaitTime = time::Time::InSeconds(1.5);
475
476// This is where all of the Child instances except core live.
477std::vector<unique_ptr<Child>> children;
Brian Silverman5cc661b2013-02-27 15:23:36 -0800478// A global place to hold on to which child is core.
479unique_ptr<Child> core;
Brian Silvermand169fcd2013-02-27 13:18:47 -0800480
Brian Silverman5cc661b2013-02-27 15:23:36 -0800481// Kills off the entire process group (including ourself).
482void KillChildren(bool try_nice) {
Brian Silvermand169fcd2013-02-27 13:18:47 -0800483 if (try_nice) {
484 static const int kNiceStopSignal = SIGTERM;
485 static const time::Time kNiceWaitTime = time::Time::InSeconds(1);
486
487 // Make sure that we don't just nicely stop ourself...
488 sigset_t mask;
489 sigemptyset(&mask);
490 sigaddset(&mask, kNiceStopSignal);
491 sigprocmask(SIG_BLOCK, &mask, NULL);
492
Brian Silverman5cc661b2013-02-27 15:23:36 -0800493 kill(-getpid(), kNiceStopSignal);
494
495 fflush(NULL);
Brian Silvermand169fcd2013-02-27 13:18:47 -0800496 time::SleepFor(kNiceWaitTime);
497 }
Brian Silverman5cc661b2013-02-27 15:23:36 -0800498
Brian Silvermand169fcd2013-02-27 13:18:47 -0800499 // Send SIGKILL to our whole process group, which will forcibly terminate any
500 // of them that are still running (us for sure, maybe more too).
Brian Silverman5cc661b2013-02-27 15:23:36 -0800501 kill(-getpid(), SIGKILL);
Brian Silvermand169fcd2013-02-27 13:18:47 -0800502}
503
Brian Silverman5cc661b2013-02-27 15:23:36 -0800504void ExitHandler() {
505 KillChildren(true);
Brian Silvermand169fcd2013-02-27 13:18:47 -0800506}
Brian Silverman5cc661b2013-02-27 15:23:36 -0800507
508void KillChildrenSignalHandler(int signum) {
509 // If we get SIGSEGV or some other random signal who knows what's happening
510 // and we should just kill everybody immediately.
511 // This is a list of all of the signals that mean some form of "nicely stop".
512 KillChildren(signum == SIGHUP || signum == SIGINT || signum == SIGQUIT ||
Brian Silvermand169fcd2013-02-27 13:18:47 -0800513 signum == SIGABRT || signum == SIGPIPE || signum == SIGTERM ||
514 signum == SIGXCPU);
515}
516
Brian Silverman5cc661b2013-02-27 15:23:36 -0800517// Returns the currently running child with PID pid or an empty unique_ptr.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800518const unique_ptr<Child> &FindChild(pid_t pid) {
519 for (auto it = children.begin(); it != children.end(); ++it) {
520 if (pid == (*it)->pid()) {
521 return *it;
522 }
523 }
524
525 if (pid == core->pid()) {
526 return core;
527 }
528
Brian Silverman5cc661b2013-02-27 15:23:36 -0800529 static const unique_ptr<Child> kNothing;
Brian Silvermand169fcd2013-02-27 13:18:47 -0800530 return kNothing;
531}
532
Brian Silverman5cc661b2013-02-27 15:23:36 -0800533// Gets set up as a libevent handler for SIGCHLD.
534// Handles calling Child::ProcessDied() on the appropriate one.
535void SigCHLDReceived(int /*fd*/, short /*events*/, void *) {
Brian Silvermand169fcd2013-02-27 13:18:47 -0800536 // In a while loop in case we miss any SIGCHLDs.
537 while (true) {
538 siginfo_t infop;
539 infop.si_pid = 0;
540 if (waitid(P_ALL, 0, &infop, WEXITED | WSTOPPED | WNOHANG) != 0) {
541 LOG(WARNING, "waitid failed with %d: %s", errno, strerror(errno));
Brian Silverman5cc661b2013-02-27 15:23:36 -0800542 continue;
Brian Silvermand169fcd2013-02-27 13:18:47 -0800543 }
Brian Silverman5cc661b2013-02-27 15:23:36 -0800544 // If there are no more child process deaths to process.
Brian Silvermand169fcd2013-02-27 13:18:47 -0800545 if (infop.si_pid == 0) {
Brian Silverman5cc661b2013-02-27 15:23:36 -0800546 return;
Brian Silvermand169fcd2013-02-27 13:18:47 -0800547 }
548
549 pid_t pid = infop.si_pid;
550 int status = infop.si_status;
551 const unique_ptr<Child> &child = FindChild(pid);
552 if (child) {
553 switch (infop.si_code) {
554 case CLD_EXITED:
555 LOG(WARNING, "child %d (%s) exited with status %d\n",
556 pid, child->name(), status);
557 break;
558 case CLD_DUMPED:
559 LOG(INFO, "child %d actually dumped core. "
560 "falling through to killed by signal case\n", pid);
561 case CLD_KILLED:
562 // If somebody (possibly us) sent it SIGTERM that means that they just
563 // want it to stop, so it stopping isn't a WARNING.
564 LOG((status == SIGTERM) ? DEBUG : WARNING,
565 "child %d (%s) was killed by signal %d (%s)\n",
566 pid, child->name(), status,
567 strsignal(status));
568 break;
569 case CLD_STOPPED:
570 LOG(WARNING, "child %d (%s) was stopped by signal %d "
571 "(giving it a SIGCONT(%d))\n",
572 pid, child->name(), status, SIGCONT);
573 kill(pid, SIGCONT);
574 continue;
575 default:
576 LOG(WARNING, "something happened to child %d (%s) (killing it)\n",
577 pid, child->name());
578 kill(pid, SIGKILL);
579 continue;
580 }
581 } else {
Brian Silverman5cc661b2013-02-27 15:23:36 -0800582 LOG(WARNING, "couldn't find a Child for pid %d\n", pid);
583 return;
Brian Silvermand169fcd2013-02-27 13:18:47 -0800584 }
585
Brian Silverman5cc661b2013-02-27 15:23:36 -0800586 if (child == core) {
587 LOG(FATAL, "core died\n");
588 }
Brian Silvermand169fcd2013-02-27 13:18:47 -0800589 child->ProcessDied();
590 }
591}
592
Brian Silverman5cc661b2013-02-27 15:23:36 -0800593// This is used for communicating the name of the file to read processes to
594// start from main to Run.
595const char *child_list_file;
596
Brian Silvermand169fcd2013-02-27 13:18:47 -0800597// This is the callback for when core creates the file indicating that it has
598// started.
599void Run(void *watch) {
600 // Make it so it doesn't keep on seeing random changes in /tmp.
601 static_cast<FileWatch *>(watch)->RemoveWatch();
602
603 // It's safe now because core is up.
604 aos::InitNRT();
605
606 std::ifstream list_file(child_list_file);
607
Brian Silvermand169fcd2013-02-27 13:18:47 -0800608 while (true) {
609 std::string child_name;
610 getline(list_file, child_name);
611 if ((list_file.rdstate() & std::ios_base::eofbit) != 0) {
612 break;
613 }
614 if (list_file.rdstate() != 0) {
615 LOG(FATAL, "reading input file %s failed\n", child_list_file);
616 }
617 children.push_back(unique_ptr<Child>(new Child(child_name)));
618 }
619
620 EventUniquePtr sigchld(event_new(libevent_base.get(), SIGCHLD,
Brian Silverman5cc661b2013-02-27 15:23:36 -0800621 EV_SIGNAL | EV_PERSIST,
622 SigCHLDReceived, NULL));
Brian Silvermand169fcd2013-02-27 13:18:47 -0800623 event_add(sigchld.release(), NULL);
624}
625
626void Main() {
627 logging::Init();
628 // TODO(brians) tell logging that using the root logger from here until we
629 // bring up shm is ok
630
Brian Silverman5cc661b2013-02-27 15:23:36 -0800631 if (setpgid(0 /*self*/, 0 /*make PGID the same as PID*/) != 0) {
632 LOG(FATAL, "setpgid(0, 0) failed with %d: %s\n", errno, strerror(errno));
633 }
Brian Silvermand169fcd2013-02-27 13:18:47 -0800634
635 // Make sure that we kill all children when we exit.
Brian Silverman5cc661b2013-02-27 15:23:36 -0800636 atexit(ExitHandler);
Brian Silvermand169fcd2013-02-27 13:18:47 -0800637 // Do it on some signals too (ones that we otherwise tend to receive and then
638 // leave all of our children going).
Brian Silverman5cc661b2013-02-27 15:23:36 -0800639 signal(SIGHUP, KillChildrenSignalHandler);
640 signal(SIGINT, KillChildrenSignalHandler);
641 signal(SIGQUIT, KillChildrenSignalHandler);
642 signal(SIGILL, KillChildrenSignalHandler);
643 signal(SIGABRT, KillChildrenSignalHandler);
644 signal(SIGFPE, KillChildrenSignalHandler);
645 signal(SIGSEGV, KillChildrenSignalHandler);
646 signal(SIGPIPE, KillChildrenSignalHandler);
647 signal(SIGTERM, KillChildrenSignalHandler);
648 signal(SIGBUS, KillChildrenSignalHandler);
649 signal(SIGXCPU, KillChildrenSignalHandler);
Brian Silvermand169fcd2013-02-27 13:18:47 -0800650
651 libevent_base = EventBaseUniquePtr(event_base_new());
652
Brian Silvermanb1e4f6c2013-02-27 15:42:02 -0800653 std::string core_touch_file = "/tmp/starter.";
Brian Silvermand169fcd2013-02-27 13:18:47 -0800654 core_touch_file += std::to_string(static_cast<intmax_t>(getpid()));
655 core_touch_file += ".core_touch_file";
Brian Silvermanb1e4f6c2013-02-27 15:42:02 -0800656 if (system(("touch '" + core_touch_file + "'").c_str()) != 0) {
657 LOG(FATAL, "running `touch '%s'` failed\n", core_touch_file.c_str());
658 }
659 FileWatch core_touch_file_watch(core_touch_file, Run, NULL);
Brian Silvermand169fcd2013-02-27 13:18:47 -0800660 core = unique_ptr<Child>(
Brian Silvermanb1e4f6c2013-02-27 15:42:02 -0800661 new Child("core " + core_touch_file));
Brian Silvermand169fcd2013-02-27 13:18:47 -0800662
663 FILE *pid_file = fopen("/tmp/starter.pid", "w");
664 if (pid_file == NULL) {
Brian Silverman5cc661b2013-02-27 15:23:36 -0800665 LOG(FATAL, "fopen(\"/tmp/starter.pid\", \"w\") failed with %d: %s\n",
Brian Silvermand169fcd2013-02-27 13:18:47 -0800666 errno, strerror(errno));
667 } else {
668 if (fprintf(pid_file, "%d", core->pid()) == -1) {
Brian Silverman5cc661b2013-02-27 15:23:36 -0800669 LOG(WARNING, "fprintf(%p, \"%%d\", %d) failed with %d: %s\n",
670 pid_file, core->pid(), errno, strerror(errno));
Brian Silvermand169fcd2013-02-27 13:18:47 -0800671 }
672 fclose(pid_file);
673 }
674
675 LOG(INFO, "waiting for %s to appear\n", core_touch_file.c_str());
676
677 event_base_dispatch(libevent_base.get());
678 LOG(FATAL, "event_base_dispatch(%p) returned\n", libevent_base.get());
679}
680
681} // namespace starter
682} // namespace aos
683
684int main(int argc, char *argv[]) {
685 if (argc < 2) {
686 fputs("starter: error: need an argument specifying what file to use\n",
687 stderr);
688 exit(EXIT_FAILURE);
689 } else if(argc > 2) {
690 fputs("starter: warning: too many arguments\n", stderr);
691 }
692 aos::starter::child_list_file = argv[1];
693
694 aos::starter::Main();
695}