Prepare Open vSwitch 1.1.2 release.
[sliver-openvswitch.git] / lib / daemon.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18 #include "daemon.h"
19 #include <errno.h>
20 #include <fcntl.h>
21 #include <signal.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <sys/resource.h>
25 #include <sys/wait.h>
26 #include <sys/stat.h>
27 #include <unistd.h>
28 #include "command-line.h"
29 #include "fatal-signal.h"
30 #include "dirs.h"
31 #include "lockfile.h"
32 #include "process.h"
33 #include "socket-util.h"
34 #include "timeval.h"
35 #include "util.h"
36 #include "vlog.h"
37
38 VLOG_DEFINE_THIS_MODULE(daemon);
39
40 /* --detach: Should we run in the background? */
41 static bool detach;
42
43 /* --pidfile: Name of pidfile (null if none). */
44 static char *pidfile;
45
46 /* Device and inode of pidfile, so we can avoid reopening it. */
47 static dev_t pidfile_dev;
48 static ino_t pidfile_ino;
49
50 /* --overwrite-pidfile: Create pidfile even if one already exists and is
51    locked? */
52 static bool overwrite_pidfile;
53
54 /* --no-chdir: Should we chdir to "/"? */
55 static bool chdir_ = true;
56
57 /* File descriptor used by daemonize_start() and daemonize_complete(). */
58 static int daemonize_fd = -1;
59
60 /* --monitor: Should a supervisory process monitor the daemon and restart it if
61  * it dies due to an error signal? */
62 static bool monitor;
63
64 static void check_already_running(void);
65 static int lock_pidfile(FILE *, int command);
66
67 /* Returns the file name that would be used for a pidfile if 'name' were
68  * provided to set_pidfile().  The caller must free the returned string. */
69 char *
70 make_pidfile_name(const char *name)
71 {
72     return (!name
73             ? xasprintf("%s/%s.pid", ovs_rundir(), program_name)
74             : abs_file_name(ovs_rundir(), name));
75 }
76
77 /* Sets up a following call to daemonize() to create a pidfile named 'name'.
78  * If 'name' begins with '/', then it is treated as an absolute path.
79  * Otherwise, it is taken relative to RUNDIR, which is $(prefix)/var/run by
80  * default.
81  *
82  * If 'name' is null, then program_name followed by ".pid" is used. */
83 void
84 set_pidfile(const char *name)
85 {
86     free(pidfile);
87     pidfile = make_pidfile_name(name);
88 }
89
90 /* Returns an absolute path to the configured pidfile, or a null pointer if no
91  * pidfile is configured.  The caller must not modify or free the returned
92  * string. */
93 const char *
94 get_pidfile(void)
95 {
96     return pidfile;
97 }
98
99 /* Sets that we do not chdir to "/". */
100 void
101 set_no_chdir(void)
102 {
103     chdir_ = false;
104 }
105
106 /* Will we chdir to "/" as part of daemonizing? */
107 bool
108 is_chdir_enabled(void)
109 {
110     return chdir_;
111 }
112
113 /* Normally, daemonize() or damonize_start() will terminate the program with a
114  * message if a locked pidfile already exists.  If this function is called, an
115  * existing pidfile will be replaced, with a warning. */
116 void
117 ignore_existing_pidfile(void)
118 {
119     overwrite_pidfile = true;
120 }
121
122 /* Sets up a following call to daemonize() to detach from the foreground
123  * session, running this process in the background.  */
124 void
125 set_detach(void)
126 {
127     detach = true;
128 }
129
130 /* Will daemonize() really detach? */
131 bool
132 get_detach(void)
133 {
134     return detach;
135 }
136
137 /* Sets up a following call to daemonize() to fork a supervisory process to
138  * monitor the daemon and restart it if it dies due to an error signal.  */
139 void
140 daemon_set_monitor(void)
141 {
142     monitor = true;
143 }
144
145 /* If a pidfile has been configured, creates it and stores the running
146  * process's pid in it.  Ensures that the pidfile will be deleted when the
147  * process exits. */
148 static void
149 make_pidfile(void)
150 {
151     long int pid = getpid();
152     struct stat s;
153     char *tmpfile;
154     FILE *file;
155     int error;
156
157     /* Create a temporary pidfile. */
158     tmpfile = xasprintf("%s.tmp%ld", pidfile, pid);
159     fatal_signal_add_file_to_unlink(tmpfile);
160     file = fopen(tmpfile, "w+");
161     if (!file) {
162         VLOG_FATAL("%s: create failed (%s)", tmpfile, strerror(errno));
163     }
164
165     if (fstat(fileno(file), &s) == -1) {
166         VLOG_FATAL("%s: fstat failed (%s)", tmpfile, strerror(errno));
167     }
168
169     fprintf(file, "%ld\n", pid);
170     if (fflush(file) == EOF) {
171         VLOG_FATAL("%s: write failed (%s)", tmpfile, strerror(errno));
172     }
173
174     error = lock_pidfile(file, F_SETLK);
175     if (error) {
176         VLOG_FATAL("%s: fcntl(F_SETLK) failed (%s)", tmpfile, strerror(error));
177     }
178
179     /* Rename or link it to the correct name. */
180     if (overwrite_pidfile) {
181         if (rename(tmpfile, pidfile) < 0) {
182             VLOG_FATAL("failed to rename \"%s\" to \"%s\" (%s)",
183                        tmpfile, pidfile, strerror(errno));
184         }
185     } else {
186         do {
187             error = link(tmpfile, pidfile) == -1 ? errno : 0;
188             if (error == EEXIST) {
189                 check_already_running();
190             }
191         } while (error == EINTR || error == EEXIST);
192         if (error) {
193             VLOG_FATAL("failed to link \"%s\" as \"%s\" (%s)",
194                        tmpfile, pidfile, strerror(error));
195         }
196     }
197
198     /* Ensure that the pidfile will get deleted on exit. */
199     fatal_signal_add_file_to_unlink(pidfile);
200
201     /* Delete the temporary pidfile if it still exists. */
202     if (!overwrite_pidfile) {
203         error = fatal_signal_unlink_file_now(tmpfile);
204         if (error) {
205             VLOG_FATAL("%s: unlink failed (%s)", tmpfile, strerror(error));
206         }
207     }
208
209     /* Clean up.
210      *
211      * We don't close 'file' because its file descriptor must remain open to
212      * hold the lock. */
213     pidfile_dev = s.st_dev;
214     pidfile_ino = s.st_ino;
215     free(tmpfile);
216     free(pidfile);
217     pidfile = NULL;
218 }
219
220 /* If configured with set_pidfile() or set_detach(), creates the pid file and
221  * detaches from the foreground session.  */
222 void
223 daemonize(void)
224 {
225     daemonize_start();
226     daemonize_complete();
227 }
228
229 static pid_t
230 fork_and_wait_for_startup(int *fdp)
231 {
232     int fds[2];
233     pid_t pid;
234
235     xpipe(fds);
236
237     pid = fork();
238     if (pid > 0) {
239         /* Running in parent process. */
240         size_t bytes_read;
241         char c;
242
243         close(fds[1]);
244         fatal_signal_fork();
245         if (read_fully(fds[0], &c, 1, &bytes_read) != 0) {
246             int retval;
247             int status;
248
249             do {
250                 retval = waitpid(pid, &status, 0);
251             } while (retval == -1 && errno == EINTR);
252
253             if (retval == pid
254                 && WIFEXITED(status)
255                 && WEXITSTATUS(status)) {
256                 /* Child exited with an error.  Convey the same error to
257                  * our parent process as a courtesy. */
258                 exit(WEXITSTATUS(status));
259             }
260
261             VLOG_FATAL("fork child failed to signal startup (%s)",
262                        strerror(errno));
263         }
264         close(fds[0]);
265         *fdp = -1;
266     } else if (!pid) {
267         /* Running in child process. */
268         close(fds[0]);
269         time_postfork();
270         lockfile_postfork();
271         *fdp = fds[1];
272     } else {
273         VLOG_FATAL("fork failed (%s)", strerror(errno));
274     }
275
276     return pid;
277 }
278
279 static void
280 fork_notify_startup(int fd)
281 {
282     if (fd != -1) {
283         size_t bytes_written;
284         int error;
285
286         error = write_fully(fd, "", 1, &bytes_written);
287         if (error) {
288             VLOG_FATAL("pipe write failed (%s)", strerror(error));
289         }
290
291         close(fd);
292     }
293 }
294
295 static bool
296 should_restart(int status)
297 {
298     if (WIFSIGNALED(status)) {
299         static const int error_signals[] = {
300             SIGABRT, SIGALRM, SIGBUS, SIGFPE, SIGILL, SIGPIPE, SIGSEGV,
301             SIGXCPU, SIGXFSZ
302         };
303
304         size_t i;
305
306         for (i = 0; i < ARRAY_SIZE(error_signals); i++) {
307             if (error_signals[i] == WTERMSIG(status)) {
308                 return true;
309             }
310         }
311     }
312     return false;
313 }
314
315 static void
316 monitor_daemon(pid_t daemon_pid)
317 {
318     /* XXX Should log daemon's stderr output at startup time. */
319     const char *saved_program_name;
320     time_t last_restart;
321     char *status_msg;
322     int crashes;
323
324     saved_program_name = program_name;
325     program_name = xasprintf("monitor(%s)", program_name);
326     status_msg = xstrdup("healthy");
327     last_restart = TIME_MIN;
328     crashes = 0;
329     for (;;) {
330         int retval;
331         int status;
332
333         proctitle_set("%s: monitoring pid %lu (%s)",
334                       saved_program_name, (unsigned long int) daemon_pid,
335                       status_msg);
336
337         do {
338             retval = waitpid(daemon_pid, &status, 0);
339         } while (retval == -1 && errno == EINTR);
340
341         if (retval == -1) {
342             VLOG_FATAL("waitpid failed (%s)", strerror(errno));
343         } else if (retval == daemon_pid) {
344             char *s = process_status_msg(status);
345             if (should_restart(status)) {
346                 free(status_msg);
347                 status_msg = xasprintf("%d crashes: pid %lu died, %s",
348                                        ++crashes,
349                                        (unsigned long int) daemon_pid, s);
350                 free(s);
351
352                 if (WCOREDUMP(status)) {
353                     /* Disable further core dumps to save disk space. */
354                     struct rlimit r;
355
356                     r.rlim_cur = 0;
357                     r.rlim_max = 0;
358                     if (setrlimit(RLIMIT_CORE, &r) == -1) {
359                         VLOG_WARN("failed to disable core dumps: %s",
360                                   strerror(errno));
361                     }
362                 }
363
364                 /* Throttle restarts to no more than once every 10 seconds. */
365                 if (time(NULL) < last_restart + 10) {
366                     VLOG_WARN("%s, waiting until 10 seconds since last "
367                               "restart", status_msg);
368                     for (;;) {
369                         time_t now = time(NULL);
370                         time_t wakeup = last_restart + 10;
371                         if (now >= wakeup) {
372                             break;
373                         }
374                         sleep(wakeup - now);
375                     }
376                 }
377                 last_restart = time(NULL);
378
379                 VLOG_ERR("%s, restarting", status_msg);
380                 daemon_pid = fork_and_wait_for_startup(&daemonize_fd);
381                 if (!daemon_pid) {
382                     break;
383                 }
384             } else {
385                 VLOG_INFO("pid %lu died, %s, exiting",
386                           (unsigned long int) daemon_pid, s);
387                 free(s);
388                 exit(0);
389             }
390         }
391     }
392     free(status_msg);
393
394     /* Running in new daemon process. */
395     proctitle_restore();
396     free((char *) program_name);
397     program_name = saved_program_name;
398 }
399
400 /* Close stdin, stdout, stderr.  If we're started from e.g. an SSH session,
401  * then this keeps us from holding that session open artificially. */
402 static void
403 close_standard_fds(void)
404 {
405     int null_fd = get_null_fd();
406     if (null_fd >= 0) {
407         dup2(null_fd, STDIN_FILENO);
408         dup2(null_fd, STDOUT_FILENO);
409         dup2(null_fd, STDERR_FILENO);
410     }
411 }
412
413 /* If daemonization is configured, then starts daemonization, by forking and
414  * returning in the child process.  The parent process hangs around until the
415  * child lets it know either that it completed startup successfully (by calling
416  * daemon_complete()) or that it failed to start up (by exiting with a nonzero
417  * exit code). */
418 void
419 daemonize_start(void)
420 {
421     daemonize_fd = -1;
422
423     if (detach) {
424         if (fork_and_wait_for_startup(&daemonize_fd) > 0) {
425             /* Running in parent process. */
426             exit(0);
427         }
428         /* Running in daemon or monitor process. */
429     }
430
431     if (monitor) {
432         int saved_daemonize_fd = daemonize_fd;
433         pid_t daemon_pid;
434
435         daemon_pid = fork_and_wait_for_startup(&daemonize_fd);
436         if (daemon_pid > 0) {
437             /* Running in monitor process. */
438             fork_notify_startup(saved_daemonize_fd);
439             close_standard_fds();
440             monitor_daemon(daemon_pid);
441         }
442         /* Running in daemon process. */
443     }
444
445     if (pidfile) {
446         make_pidfile();
447     }
448
449     /* Make sure that the unixctl commands for vlog get registered in a
450      * daemon, even before the first log message. */
451     vlog_init();
452 }
453
454 /* If daemonization is configured, then this function notifies the parent
455  * process that the child process has completed startup successfully.
456  *
457  * Calling this function more than once has no additional effect. */
458 void
459 daemonize_complete(void)
460 {
461     fork_notify_startup(daemonize_fd);
462     daemonize_fd = -1;
463
464     if (detach) {
465         setsid();
466         if (chdir_) {
467             ignore(chdir("/"));
468         }
469         close_standard_fds();
470         detach = false;
471     }
472 }
473
474 void
475 daemon_usage(void)
476 {
477     printf(
478         "\nDaemon options:\n"
479         "  --detach                run in background as daemon\n"
480         "  --no-chdir              do not chdir to '/'\n"
481         "  --pidfile[=FILE]        create pidfile (default: %s/%s.pid)\n"
482         "  --overwrite-pidfile     with --pidfile, start even if already "
483                                    "running\n",
484         ovs_rundir(), program_name);
485 }
486
487 static int
488 lock_pidfile__(FILE *file, int command, struct flock *lck)
489 {
490     int error;
491
492     lck->l_type = F_WRLCK;
493     lck->l_whence = SEEK_SET;
494     lck->l_start = 0;
495     lck->l_len = 0;
496     lck->l_pid = 0;
497
498     do {
499         error = fcntl(fileno(file), command, lck) == -1 ? errno : 0;
500     } while (error == EINTR);
501     return error;
502 }
503
504 static int
505 lock_pidfile(FILE *file, int command)
506 {
507     struct flock lck;
508
509     return lock_pidfile__(file, command, &lck);
510 }
511
512 static pid_t
513 read_pidfile__(const char *pidfile, bool delete_if_stale)
514 {
515     struct stat s, s2;
516     struct flock lck;
517     char line[128];
518     FILE *file;
519     int error;
520
521     if ((pidfile_ino || pidfile_dev)
522         && !stat(pidfile, &s)
523         && s.st_ino == pidfile_ino && s.st_dev == pidfile_dev) {
524         /* It's our own pidfile.  We can't afford to open it, because closing
525          * *any* fd for a file that a process has locked also releases all the
526          * locks on that file.
527          *
528          * Fortunately, we know the associated pid anyhow: */
529         return getpid();
530     }
531
532     file = fopen(pidfile, "r+");
533     if (!file) {
534         if (errno == ENOENT && delete_if_stale) {
535             return 0;
536         }
537         error = errno;
538         VLOG_WARN("%s: open: %s", pidfile, strerror(error));
539         goto error;
540     }
541
542     error = lock_pidfile__(file, F_GETLK, &lck);
543     if (error) {
544         VLOG_WARN("%s: fcntl: %s", pidfile, strerror(error));
545         goto error;
546     }
547     if (lck.l_type == F_UNLCK) {
548         /* pidfile exists but it isn't locked by anyone.  We need to delete it
549          * so that a new pidfile can go in its place.  But just calling
550          * unlink(pidfile) makes a nasty race: what if someone else unlinks it
551          * before we do and then replaces it by a valid pidfile?  We'd unlink
552          * their valid pidfile.  We do a little dance to avoid the race, by
553          * locking the invalid pidfile.  Only one process can have the invalid
554          * pidfile locked, and only that process has the right to unlink it. */
555         if (!delete_if_stale) {
556             error = ESRCH;
557             VLOG_DBG("%s: pid file is stale", pidfile);
558             goto error;
559         }
560
561         /* Get the lock. */
562         error = lock_pidfile(file, F_SETLK);
563         if (error) {
564             /* We lost a race with someone else doing the same thing. */
565             VLOG_WARN("%s: lost race to lock pidfile", pidfile);
566             goto error;
567         }
568
569         /* Is the file we have locked still named 'pidfile'? */
570         if (stat(pidfile, &s) || fstat(fileno(file), &s2)
571             || s.st_ino != s2.st_ino || s.st_dev != s2.st_dev) {
572             /* No.  We lost a race with someone else who got the lock before
573              * us, deleted the pidfile, and closed it (releasing the lock). */
574             error = EALREADY;
575             VLOG_WARN("%s: lost race to delete pidfile", pidfile);
576             goto error;
577         }
578
579         /* We won the right to delete the stale pidfile. */
580         if (unlink(pidfile)) {
581             error = errno;
582             VLOG_WARN("%s: failed to delete stale pidfile (%s)",
583                       pidfile, strerror(error));
584             goto error;
585         }
586         VLOG_DBG("%s: deleted stale pidfile", pidfile);
587         fclose(file);
588         return 0;
589     }
590
591     if (!fgets(line, sizeof line, file)) {
592         if (ferror(file)) {
593             error = errno;
594             VLOG_WARN("%s: read: %s", pidfile, strerror(error));
595         } else {
596             error = ESRCH;
597             VLOG_WARN("%s: read: unexpected end of file", pidfile);
598         }
599         goto error;
600     }
601
602     if (lck.l_pid != strtoul(line, NULL, 10)) {
603         /* The process that has the pidfile locked is not the process that
604          * created it.  It must be stale, with the process that has it locked
605          * preparing to delete it. */
606         error = ESRCH;
607         VLOG_WARN("%s: stale pidfile for pid %s being deleted by pid %ld",
608                   pidfile, line, (long int) lck.l_pid);
609         goto error;
610     }
611
612     fclose(file);
613     return lck.l_pid;
614
615 error:
616     if (file) {
617         fclose(file);
618     }
619     return -error;
620 }
621
622 /* Opens and reads a PID from 'pidfile'.  Returns the positive PID if
623  * successful, otherwise a negative errno value. */
624 pid_t
625 read_pidfile(const char *pidfile)
626 {
627     return read_pidfile__(pidfile, false);
628 }
629
630 /* Checks whether a process with the given 'pidfile' is already running and,
631  * if so, aborts.  If 'pidfile' is stale, deletes it. */
632 static void
633 check_already_running(void)
634 {
635     long int pid = read_pidfile__(pidfile, true);
636     if (pid > 0) {
637         VLOG_FATAL("%s: already running as pid %ld, aborting", pidfile, pid);
638     } else if (pid < 0) {
639         VLOG_FATAL("%s: pidfile check failed (%s), aborting",
640                    pidfile, strerror(-pid));
641     }
642 }