sd-daemon.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. #ifndef foosddaemonhfoo
  2. #define foosddaemonhfoo
  3. /***
  4. This file is part of systemd.
  5. Copyright 2013 Lennart Poettering
  6. systemd is free software; you can redistribute it and/or modify it
  7. under the terms of the GNU Lesser General Public License as published by
  8. the Free Software Foundation; either version 2.1 of the License, or
  9. (at your option) any later version.
  10. systemd is distributed in the hope that it will be useful, but
  11. WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. Lesser General Public License for more details.
  14. You should have received a copy of the GNU Lesser General Public License
  15. along with systemd; If not, see <http://www.gnu.org/licenses/>.
  16. ***/
  17. #include <inttypes.h>
  18. #include <sys/types.h>
  19. #include "_sd-common.h"
  20. _SD_BEGIN_DECLARATIONS;
  21. /*
  22. The following functionality is provided:
  23. - Support for logging with log levels on stderr
  24. - File descriptor passing for socket-based activation
  25. - Daemon startup and status notification
  26. - Detection of systemd boots
  27. See sd-daemon(3) for more information.
  28. */
  29. /*
  30. Log levels for usage on stderr:
  31. fprintf(stderr, SD_NOTICE "Hello World!\n");
  32. This is similar to printk() usage in the kernel.
  33. */
  34. #define SD_EMERG "<0>" /* system is unusable */
  35. #define SD_ALERT "<1>" /* action must be taken immediately */
  36. #define SD_CRIT "<2>" /* critical conditions */
  37. #define SD_ERR "<3>" /* error conditions */
  38. #define SD_WARNING "<4>" /* warning conditions */
  39. #define SD_NOTICE "<5>" /* normal but significant condition */
  40. #define SD_INFO "<6>" /* informational */
  41. #define SD_DEBUG "<7>" /* debug-level messages */
  42. /* The first passed file descriptor is fd 3 */
  43. #define SD_LISTEN_FDS_START 3
  44. /*
  45. Returns how many file descriptors have been passed, or a negative
  46. errno code on failure. Optionally, removes the $LISTEN_FDS and
  47. $LISTEN_PID file descriptors from the environment (recommended, but
  48. problematic in threaded environments). If r is the return value of
  49. this function you'll find the file descriptors passed as fds
  50. SD_LISTEN_FDS_START to SD_LISTEN_FDS_START+r-1. Returns a negative
  51. errno style error code on failure. This function call ensures that
  52. the FD_CLOEXEC flag is set for the passed file descriptors, to make
  53. sure they are not passed on to child processes. If FD_CLOEXEC shall
  54. not be set, the caller needs to unset it after this call for all file
  55. descriptors that are used.
  56. See sd_listen_fds(3) for more information.
  57. */
  58. int sd_listen_fds(int unset_environment);
  59. int sd_listen_fds_with_names(int unset_environment, char ***names);
  60. /*
  61. Helper call for identifying a passed file descriptor. Returns 1 if
  62. the file descriptor is a FIFO in the file system stored under the
  63. specified path, 0 otherwise. If path is NULL a path name check will
  64. not be done and the call only verifies if the file descriptor
  65. refers to a FIFO. Returns a negative errno style error code on
  66. failure.
  67. See sd_is_fifo(3) for more information.
  68. */
  69. int sd_is_fifo(int fd, const char *path);
  70. /*
  71. Helper call for identifying a passed file descriptor. Returns 1 if
  72. the file descriptor is a special character device on the file
  73. system stored under the specified path, 0 otherwise.
  74. If path is NULL a path name check will not be done and the call
  75. only verifies if the file descriptor refers to a special character.
  76. Returns a negative errno style error code on failure.
  77. See sd_is_special(3) for more information.
  78. */
  79. int sd_is_special(int fd, const char *path);
  80. /*
  81. Helper call for identifying a passed file descriptor. Returns 1 if
  82. the file descriptor is a socket of the specified family (AF_INET,
  83. ...) and type (SOCK_DGRAM, SOCK_STREAM, ...), 0 otherwise. If
  84. family is 0 a socket family check will not be done. If type is 0 a
  85. socket type check will not be done and the call only verifies if
  86. the file descriptor refers to a socket. If listening is > 0 it is
  87. verified that the socket is in listening mode. (i.e. listen() has
  88. been called) If listening is == 0 it is verified that the socket is
  89. not in listening mode. If listening is < 0 no listening mode check
  90. is done. Returns a negative errno style error code on failure.
  91. See sd_is_socket(3) for more information.
  92. */
  93. int sd_is_socket(int fd, int family, int type, int listening);
  94. /*
  95. Helper call for identifying a passed file descriptor. Returns 1 if
  96. the file descriptor is an Internet socket, of the specified family
  97. (either AF_INET or AF_INET6) and the specified type (SOCK_DGRAM,
  98. SOCK_STREAM, ...), 0 otherwise. If version is 0 a protocol version
  99. check is not done. If type is 0 a socket type check will not be
  100. done. If port is 0 a socket port check will not be done. The
  101. listening flag is used the same way as in sd_is_socket(). Returns a
  102. negative errno style error code on failure.
  103. See sd_is_socket_inet(3) for more information.
  104. */
  105. int sd_is_socket_inet(int fd, int family, int type, int listening, uint16_t port);
  106. /*
  107. Helper call for identifying a passed file descriptor. Returns 1 if
  108. the file descriptor is an AF_UNIX socket of the specified type
  109. (SOCK_DGRAM, SOCK_STREAM, ...) and path, 0 otherwise. If type is 0
  110. a socket type check will not be done. If path is NULL a socket path
  111. check will not be done. For normal AF_UNIX sockets set length to
  112. 0. For abstract namespace sockets set length to the length of the
  113. socket name (including the initial 0 byte), and pass the full
  114. socket path in path (including the initial 0 byte). The listening
  115. flag is used the same way as in sd_is_socket(). Returns a negative
  116. errno style error code on failure.
  117. See sd_is_socket_unix(3) for more information.
  118. */
  119. int sd_is_socket_unix(int fd, int type, int listening, const char *path, size_t length);
  120. /*
  121. Helper call for identifying a passed file descriptor. Returns 1 if
  122. the file descriptor is a POSIX Message Queue of the specified name,
  123. 0 otherwise. If path is NULL a message queue name check is not
  124. done. Returns a negative errno style error code on failure.
  125. See sd_is_mq(3) for more information.
  126. */
  127. int sd_is_mq(int fd, const char *path);
  128. /*
  129. Informs systemd about changed daemon state. This takes a number of
  130. newline separated environment-style variable assignments in a
  131. string. The following variables are known:
  132. READY=1 Tells systemd that daemon startup is finished (only
  133. relevant for services of Type=notify). The passed
  134. argument is a boolean "1" or "0". Since there is
  135. little value in signaling non-readiness the only
  136. value daemons should send is "READY=1".
  137. STATUS=... Passes a single-line status string back to systemd
  138. that describes the daemon state. This is free-form
  139. and can be used for various purposes: general state
  140. feedback, fsck-like programs could pass completion
  141. percentages and failing programs could pass a human
  142. readable error message. Example: "STATUS=Completed
  143. 66% of file system check..."
  144. ERRNO=... If a daemon fails, the errno-style error code,
  145. formatted as string. Example: "ERRNO=2" for ENOENT.
  146. BUSERROR=... If a daemon fails, the D-Bus error-style error
  147. code. Example: "BUSERROR=org.freedesktop.DBus.Error.TimedOut"
  148. MAINPID=... The main pid of a daemon, in case systemd did not
  149. fork off the process itself. Example: "MAINPID=4711"
  150. WATCHDOG=1 Tells systemd to update the watchdog timestamp.
  151. Services using this feature should do this in
  152. regular intervals. A watchdog framework can use the
  153. timestamps to detect failed services. Also see
  154. sd_watchdog_enabled() below.
  155. FDSTORE=1 Store the file descriptors passed along with the
  156. message in the per-service file descriptor store,
  157. and pass them to the main process again on next
  158. invocation. This variable is only supported with
  159. sd_pid_notify_with_fds().
  160. Daemons can choose to send additional variables. However, it is
  161. recommended to prefix variable names not listed above with X_.
  162. Returns a negative errno-style error code on failure. Returns > 0
  163. if systemd could be notified, 0 if it couldn't possibly because
  164. systemd is not running.
  165. Example: When a daemon finished starting up, it could issue this
  166. call to notify systemd about it:
  167. sd_notify(0, "READY=1");
  168. See sd_notifyf() for more complete examples.
  169. See sd_notify(3) for more information.
  170. */
  171. int sd_notify(int unset_environment, const char *state);
  172. /*
  173. Similar to sd_notify() but takes a format string.
  174. Example 1: A daemon could send the following after initialization:
  175. sd_notifyf(0, "READY=1\n"
  176. "STATUS=Processing requests...\n"
  177. "MAINPID=%lu",
  178. (unsigned long) getpid());
  179. Example 2: A daemon could send the following shortly before
  180. exiting, on failure:
  181. sd_notifyf(0, "STATUS=Failed to start up: %s\n"
  182. "ERRNO=%i",
  183. strerror(errno),
  184. errno);
  185. See sd_notifyf(3) for more information.
  186. */
  187. int sd_notifyf(int unset_environment, const char *format, ...) _sd_printf_(2,3);
  188. /*
  189. Similar to sd_notify(), but send the message on behalf of another
  190. process, if the appropriate permissions are available.
  191. */
  192. int sd_pid_notify(pid_t pid, int unset_environment, const char *state);
  193. /*
  194. Similar to sd_notifyf(), but send the message on behalf of another
  195. process, if the appropriate permissions are available.
  196. */
  197. int sd_pid_notifyf(pid_t pid, int unset_environment, const char *format, ...) _sd_printf_(3,4);
  198. /*
  199. Similar to sd_pid_notify(), but also passes the specified fd array
  200. to the service manager for storage. This is particularly useful for
  201. FDSTORE=1 messages.
  202. */
  203. int sd_pid_notify_with_fds(pid_t pid, int unset_environment, const char *state, const int *fds, unsigned n_fds);
  204. /*
  205. Returns > 0 if the system was booted with systemd. Returns < 0 on
  206. error. Returns 0 if the system was not booted with systemd. Note
  207. that all of the functions above handle non-systemd boots just
  208. fine. You should NOT protect them with a call to this function. Also
  209. note that this function checks whether the system, not the user
  210. session is controlled by systemd. However the functions above work
  211. for both user and system services.
  212. See sd_booted(3) for more information.
  213. */
  214. int sd_booted(void);
  215. /*
  216. Returns > 0 if the service manager expects watchdog keep-alive
  217. events to be sent regularly via sd_notify(0, "WATCHDOG=1"). Returns
  218. 0 if it does not expect this. If the usec argument is non-NULL
  219. returns the watchdog timeout in µs after which the service manager
  220. will act on a process that has not sent a watchdog keep alive
  221. message. This function is useful to implement services that
  222. recognize automatically if they are being run under supervision of
  223. systemd with WatchdogSec= set. It is recommended for clients to
  224. generate keep-alive pings via sd_notify(0, "WATCHDOG=1") every half
  225. of the returned time.
  226. See sd_watchdog_enabled(3) for more information.
  227. */
  228. int sd_watchdog_enabled(int unset_environment, uint64_t *usec);
  229. _SD_END_DECLARATIONS;
  230. #endif