3 * $Id: daemon.c,v 1.8 1997/09/26 09:14:58 mdw Exp $
5 * Running a `become' daemon
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of `become'
14 * `Become' is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * `Become' is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with `become'; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 /*----- Revision history --------------------------------------------------*
32 * Revision 1.8 1997/09/26 09:14:58 mdw
33 * Merged blowfish branch into trunk.
35 * Revision 1.7.2.1 1997/09/26 09:08:05 mdw
36 * Use the Blowfish encryption algorithm instead of IDEA. This is partly
37 * because I prefer Blowfish (without any particularly strong evidence) but
38 * mainly because IDEA is patented and Blowfish isn't.
40 * Revision 1.7 1997/09/17 10:23:23 mdw
41 * Fix a typo. Port numbers are in network order now, so don't change them.
43 * Revision 1.6 1997/09/09 18:17:06 mdw
44 * Allow default port to be given as a service name or port number.
46 * Revision 1.5 1997/08/20 16:17:10 mdw
47 * More sensible restart routine: `_reinit' functions replaced by `_end' and
50 * Revision 1.4 1997/08/07 10:00:37 mdw
51 * (Log entry for previous version is bogus.) Read netgroups database.
52 * Give up privileges permanently on startup.
54 * Revision 1.2 1997/08/04 10:24:21 mdw
55 * Sources placed under CVS control.
57 * Revision 1.1 1997/07/21 13:47:50 mdw
62 /*----- Header files ------------------------------------------------------*/
64 /* --- ANSI headers --- */
73 /* --- Unix headers --- */
75 #include <sys/types.h>
77 #include <sys/socket.h>
79 #include <netinet/in.h>
81 #include <arpa/inet.h>
87 /* --- Local headers --- */
103 /*----- Arbitrary constants -----------------------------------------------*/
105 #define daemon__awakeEvery (30 * 60) /* Awaken this often to rescan */
107 /*----- Static variables --------------------------------------------------*/
109 static int daemon__running = 0; /* Am I running as a daemon? */
110 static int daemon__port = -1; /* No particular port yet */
111 static volatile sig_atomic_t daemon__rescan = 0; /* Rescan as soon as poss */
112 #define daemon__signum daemon__rescan /* Alias for readbility */
113 static int daemon__readKey = 0; /* Have I read a key? */
114 static unsigned char daemon__key[BLOWFISH_KEYSIZE]; /* Encryption key */
115 static jmp_buf daemon__dieBuf; /* Jump here to kill the daemon */
117 /*----- Main code ---------------------------------------------------------*/
119 /* --- @daemon_usePort@ --- *
121 * Arguments: @int port@ = port to use, please
125 * Use: Instructs the daemon to listen to the given port.
128 void daemon_usePort(int port)
133 /* --- @daemon_readKey@ --- *
135 * Arguments: @const char *kf@ = name of file containing key
139 * Use: Instructs the daemon to read the named key file.
142 void daemon_readKey(const char *kf)
146 if (!daemon__running)
149 if ((fp = fopen(kf, "r")) == 0) {
150 syslog(LOG_WARNING, "couldn't read key file: %e");
153 tx_getBits(daemon__key, 128, fp);
159 /* --- @daemon__readConfig@ --- *
161 * Arguments: @const char *cf@ = pointer to configuration file to use
163 * Returns: Zero if it worked, nonzero if it hurt...
165 * Use: Reads the configuration file, and other things.
168 static int daemon__readConfig(const char *cf)
173 if ((fp = fopen(cf, "r")) == 0)
178 if (!daemon__readKey)
179 daemon_readKey(file_KEY);
181 T( trace(TRACE_DAEMON, "daemon: read config file"); )
185 /* --- @daemon__restart@ --- *
187 * Arguments: @int sig@ = the signal number
191 * Use: Handles signals. Causes the configuration file to be reread.
194 static void daemon__restart(int sig)
197 signal(sig, daemon__restart);
200 /* --- @daemon__die@ --- *
202 * Arguments: @int sig@ = the signal number
204 * Returns: via @longjmp@
206 * Use: Handles other signals. Causes the daemon to die.
209 static void daemon__die(int sig)
211 daemon__signum = sig;
212 longjmp(daemon__dieBuf, 1);
215 /* --- @daemon__read@ --- *
217 * Arguments: @int fd@ = socket handle
221 * Use: Examines a buffer, and returns a response.
224 void daemon__read(int fd)
226 unsigned char buff[65536]; /* Buffer for incoming packets */
227 unsigned char rpl[crp_size]; /* Buffer for outgoing replies */
228 struct sockaddr_in sin; /* Address of packet sender */
229 char sender[64]; /* Sender's hostname (resolved) */
230 unsigned char sk[BLOWFISH_KEYSIZE]; /* Session key for reply */
231 request rq; /* Request buffer for verification */
233 /* --- Read the message --- */
236 int slen = sizeof(sin);
238 if (recvfrom(fd, (char *)buff, sizeof(buff), 0,
239 (struct sockaddr *)&sin, &slen) < 0) {
240 T( trace(TRACE_DAEMON, "daemon: error reading packet: %s",
242 syslog(LOG_INFO, "duff packet received: %e");
247 /* --- Resolve the host name --- */
250 struct hostent *he = gethostbyaddr((char *)&sin.sin_addr,
251 sizeof(sin.sin_addr),
255 he ? he->h_name : inet_ntoa(sin.sin_addr),
257 syslog(LOG_DEBUG, "packet received from %s", sender);
258 T( trace(TRACE_DAEMON, "daemon: received request from %s", sender); )
261 /* --- Unpack the block --- */
263 if (crypt_unpackRequest(&rq, buff, daemon__key, sk, rpl) == 0) {
265 T( trace(TRACE_DAEMON, "daemon: received corrupt or invalid request"); )
266 syslog(LOG_INFO, "packet from %s rejected", sender);
271 /* --- Fill in the sender's address in the request block --- */
273 rq.host = sin.sin_addr;
275 /* --- Build a reply block --- */
278 int answer = rule_check(&rq);
279 syslog(LOG_INFO, "request from %s for %i to become %i to run %s %s",
280 sender, rq.from, rq.to, rq.cmd, answer ? "granted" : "denied");
281 crypt_packReply(rpl, sk, answer);
285 /* --- Send the reply off --- */
287 sendto(fd, (char *)rpl, crp_size, 0, (struct sockaddr *)&sin, sizeof(sin));
288 T( trace(TRACE_DAEMON, "daemon: reply sent"); )
292 /* --- @daemon_init@ --- *
294 * Arguments: @const char *cf@ = pointer to name of configuration file
295 * @int port@ = port to listen to, or %$-1$% for default
299 * Use: Starts `become' up in daemon mode.
302 void daemon_init(const char *cf, int port)
306 /* --- Remove my root privileges --- *
308 * Just in case there's anything dodgy in my configuration file, or the
309 * user wants me to start on a funny port.
314 /* --- Initialise bits of the program --- */
324 openlog(quis(), 0, LOG_DAEMON);
325 syslog(LOG_NOTICE, "starting up");
327 if (daemon__readConfig(cf))
328 die("couldn't read configuration file");
330 /* --- Decide on a port to use --- *
332 * If I don't have a port yet (e.g., from the configuration file) then
333 * look it up in /etc/services under whatever name I was started as.
336 if (daemon__port == 0) {
337 struct servent *se = getservbyname(quis(), "udp");
339 die("no idea which port to listen to");
340 daemon__port = se->s_port;
343 /* --- Now set up a socket --- */
346 struct sockaddr_in sin;
348 if ((s = socket(PF_INET, SOCK_DGRAM, 0)) == -1)
349 die("couldn't create socket: %s", strerror(errno));
350 sin.sin_family = AF_INET;
351 sin.sin_port = daemon__port;
352 sin.sin_addr.s_addr = htonl(INADDR_ANY);
353 if (bind(s, (struct sockaddr *)&sin, sizeof(sin))) {
354 die("couldn't bind socket to port %i: %s",
355 ntohs(daemon__port), strerror(errno));
359 /* --- Fork off into the sunset --- */
366 /* --- Make a background process --- */
369 die("couldn't fork daemon: %s", strerror(errno));
373 /* --- Disconnect from the terminal --- */
377 /* --- Write my process id to a file --- */
379 if ((fp = fopen(file_PID, "w")) != 0) {
380 fprintf(fp, "%lu\n", (unsigned long)getpid());
383 T( trace(TRACE_DAEMON, "daemon: forked to pid %li", (long)getpid()); )
387 /* --- Program in daemon death mode --- */
389 if (setjmp(daemon__dieBuf)) {
391 if (daemon__signum == SIGQUIT && tracing() & TRACE_RULE) {
393 signal(SIGQUIT, daemon__die);
397 T( trace(TRACE_DAEMON, "daemon: killed by signal %i",
399 syslog(LOG_NOTICE, "killed by signal type %i", daemon__signum);
405 /* --- Set signal handlers --- */
407 signal(SIGHUP, daemon__restart);
408 signal(SIGQUIT, daemon__die);
409 signal(SIGINT, daemon__die);
410 signal(SIGTERM, daemon__die);
411 signal(SIGSEGV, daemon__die);
412 signal(SIGFPE, daemon__die);
413 signal(SIGBUS, daemon__die);
416 /* --- Now wait for something exciting to happen --- *
418 * Actually, every so often (5 minutes, perhaps) I need to wake up and
419 * rescan the users to see whether they've changed. Time to play with
426 /* --- Find when I am, and thus when I need to be awoken again --- */
428 when = time(0) + daemon__awakeEvery;
434 /* --- Set up the file descriptor tables --- */
439 /* --- Now wait for something interesting --- */
441 T( trace(TRACE_DAEMON, "daemon: waiting for requests"); )
442 i = select(FD_SETSIZE, &fds, 0, 0, 0);
444 /* --- Now, see if I need to rescan the config --- */
446 if (daemon__rescan || time(0) - when > 0) {
448 syslog(LOG_INFO, "rescanning configuration file");
459 if (daemon__readConfig(cf))
460 syslog(LOG_ERR, "error reading configuration file");
461 when = time(0) + daemon__awakeEvery;
464 /* --- Read the data from the request --- */
472 /*----- That's all, folks -------------------------------------------------*/