X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fdaemon.h;h=25a34f8033f3b43690b036892da17a82a4415a30;hb=6c4c397f94ec5f5df6bcc178fb5fa4e84d3505fc;hp=d7b1a22a61060f9eb48f6b43d2d0b89dd501af0b;hpb=886df670ca5c391ffeb468dd2f30f02a81d257e6;p=libucw.git diff --git a/ucw/daemon.h b/ucw/daemon.h index d7b1a22a..25a34f80 100644 --- a/ucw/daemon.h +++ b/ucw/daemon.h @@ -1,7 +1,7 @@ /* * UCW Library -- Daemonization * - * (c) 2012 Martin Mares + * (c) 2012--2014 Martin Mares * * This software may be freely distributed and used according to the terms * of the GNU Lesser General Public License. @@ -16,12 +16,14 @@ #define daemon_control ucw_daemon_control #define daemon_exit ucw_daemon_exit #define daemon_init ucw_daemon_init +#define daemon_resolve_ugid ucw_daemon_resolve_ugid #define daemon_run ucw_daemon_run +#define daemon_switch_ugid ucw_daemon_switch_ugid #endif /** Parameters passed to the daemon helper. **/ struct daemon_params { - uns flags; // DAEMON_FLAG_xxx + uint flags; // DAEMON_FLAG_xxx const char *pid_file; // A path to PID file (optional) const char *run_as_user; // User name or "#uid" (optional) const char *run_as_group; // Group name or "#gid" (optional) @@ -63,6 +65,21 @@ void daemon_run(struct daemon_params *dp, void (*body)(struct daemon_params *dp) **/ void daemon_exit(struct daemon_params *dp); +/** + * Parse `run_as_user` and `run_as_group` and remember the results in internal fields. + * This is called automatically by daemon_init(), but also provided as a separate + * function in case you want to use daemon_switch_ugid(). Upon parse error, it calls die(). + **/ +void daemon_resolve_ugid(struct daemon_params *dp); + +/** + * Switch user and group as specified by the `run_as_user` and `run_as_group`. + * This is performed automatically by daemon_run(), but sometimes you might want to + * switch the user and group separately. In this case, you have to call daemon_resolve_ugid() + * beforehand. + **/ +void daemon_switch_ugid(struct daemon_params *dp); + #define DAEMON_ERR_LEN 256 /** Parameters passed to @daemon_control() **/