]> git.proxmox.com Git - mirror_ovs.git/blob - lib/daemon.h
14436f311eeb9da7783da837517e235d9224df83
[mirror_ovs.git] / lib / daemon.h
1 /*
2 * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc.
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 #ifndef DAEMON_H
18 #define DAEMON_H 1
19
20 #include <limits.h>
21 #include <stdbool.h>
22 #include <sys/types.h>
23
24 #define DAEMON_OPTION_ENUMS \
25 OPT_DETACH, \
26 OPT_NO_CHDIR, \
27 OPT_OVERWRITE_PIDFILE, \
28 OPT_PIDFILE, \
29 OPT_MONITOR
30
31 #define DAEMON_LONG_OPTIONS \
32 {"detach", no_argument, NULL, OPT_DETACH}, \
33 {"no-chdir", no_argument, NULL, OPT_NO_CHDIR}, \
34 {"pidfile", optional_argument, NULL, OPT_PIDFILE}, \
35 {"overwrite-pidfile", no_argument, NULL, OPT_OVERWRITE_PIDFILE}, \
36 {"monitor", no_argument, NULL, OPT_MONITOR}
37
38 #define DAEMON_OPTION_HANDLERS \
39 case OPT_DETACH: \
40 set_detach(); \
41 break; \
42 \
43 case OPT_NO_CHDIR: \
44 set_no_chdir(); \
45 break; \
46 \
47 case OPT_PIDFILE: \
48 set_pidfile(optarg); \
49 break; \
50 \
51 case OPT_OVERWRITE_PIDFILE: \
52 ignore_existing_pidfile(); \
53 break; \
54 \
55 case OPT_MONITOR: \
56 daemon_set_monitor(); \
57 break;
58
59 char *make_pidfile_name(const char *name);
60 void set_pidfile(const char *name);
61 const char *get_pidfile(void);
62 void set_no_chdir(void);
63 bool is_chdir_enabled(void);
64 void set_detach(void);
65 bool get_detach(void);
66 void daemon_set_monitor(void);
67 void daemon_save_fd(int fd);
68 void remove_pidfile_from_unlink(void);
69 void add_pidfile_to_unlink(void);
70 void daemonize(void);
71 void daemonize_start(void);
72 void daemonize_complete(void);
73 void ignore_existing_pidfile(void);
74 void daemon_usage(void);
75 pid_t read_pidfile(const char *name);
76 pid_t read_pidfile_if_exists(const char *name);
77
78 pid_t fork_and_clean_up(void);
79 void daemonize_post_detach(void);
80
81 #endif /* daemon.h */