]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/main.c
Warning fixes.
[netatalk.git] / etc / afpd / main.c
1 /*
2  * $Id: main.c,v 1.11 2001-08-15 01:37:34 srittau Exp $
3  *
4  * Copyright (c) 1990,1993 Regents of The University of Michigan.
5  * All Rights Reserved.  See COPYRIGHT.
6  */
7
8 #ifdef HAVE_CONFIG_H
9 #include "config.h"
10 #endif /* HAVE_CONFIG_H */
11
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #ifdef HAVE_UNISTD_H
16 #include <unistd.h>
17 #endif /* HAVE_UNISTD_H */
18 #ifdef HAVE_FCNTL_H
19 #include <fcntl.h>
20 #endif /* HAVE_FCNTL_H */
21 #include <signal.h>
22
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #include <sys/param.h>
26 #include <sys/uio.h>
27 #include <sys/syslog.h>
28 #include <sys/time.h>
29 #include <sys/socket.h>
30
31 #include <errno.h>
32
33 #include <netatalk/endian.h>
34 #include <netatalk/at.h>
35 #include <atalk/compat.h>
36 #include <atalk/dsi.h>
37 #include <atalk/atp.h>
38 #include <atalk/asp.h>
39 #include <atalk/afp.h>
40 #include <atalk/adouble.h>
41 #include <atalk/paths.h>
42 #include <atalk/util.h>
43 #include <atalk/server_child.h>
44
45 #include "globals.h"
46 #include "afp_config.h"
47 #include "status.h"
48 #include "fork.h"
49 #include "uam_auth.h"
50
51 #ifdef TRU64
52 #include <sys/security.h>
53 #include <prot.h>
54 #include <sia.h>
55
56 static int argc = 0;
57 static char **argv = NULL;
58 #endif /* TRU64 */
59
60 #ifdef DID_MTAB
61 #include "parse_mtab.h"
62 #endif /* DID_MTAB */
63
64 unsigned char   nologin = 0;
65
66 struct afp_options default_options;
67 static AFPConfig *configs;
68 static server_child *server_children;
69 static fd_set save_rfds;
70
71 #ifdef TRU64
72 void afp_get_cmdline( int *ac, char ***av)
73 {
74   *ac = argc;
75   *av = argv;
76 }
77 #endif /* TRU64 */
78
79 static void afp_exit(const int i)
80 {
81   server_unlock(default_options.pidfile);
82   exit(i);
83 }
84
85 static void afp_goaway(int sig)
86 {
87 #ifndef NO_DDP
88     asp_kill(sig);
89 #endif /* ! NO_DDP */
90     dsi_kill(sig);
91     switch( sig ) {
92     case SIGTERM :
93       syslog( LOG_INFO, "shutting down on signal %d", sig );
94       break;
95     case SIGHUP :
96       /* w/ a configuration file, we can force a re-read if we want */
97       nologin++;
98       if ((nologin + 1) & 1) {
99         AFPConfig *config;
100
101         syslog(LOG_INFO, "re-reading configuration file");
102         for (config = configs; config; config = config->next)
103           if (config->server_cleanup)
104             config->server_cleanup(config);
105
106         configfree(configs, NULL);
107         if (!(configs = configinit(&default_options))) {
108           syslog(LOG_ERR, "config re-read: no servers configured");
109           afp_exit(1);
110         }
111         FD_ZERO(&save_rfds);
112         for (config = configs; config; config = config->next) {
113           if (config->fd < 0)
114             continue;
115           FD_SET(config->fd, &save_rfds);
116         }
117       } else {
118         syslog(LOG_INFO, "disallowing logins");
119         auth_unload();
120       }
121       break;
122     default :
123         syslog( LOG_ERR, "afp_goaway: bad signal" );
124     }
125     if ( sig == SIGTERM ) {
126       AFPConfig *config;
127       
128       for (config = configs; config; config = config->next) 
129         if (config->server_cleanup) 
130           config->server_cleanup(config);
131
132       afp_exit(0);
133     }
134     return;
135 }
136
137 static void child_handler()
138 {
139   server_child_handler(server_children);
140 }
141
142 int main( ac, av )
143     int         ac;
144     char        **av;
145 {
146     AFPConfig           *config;
147     fd_set              rfds;
148     struct sigaction    sv;
149     sigset_t            sigs;
150
151 #ifdef TRU64
152     argc = ac;
153     argv = av;
154     set_auth_parameters( ac, av );
155 #endif /* TRU64 */
156
157     umask( 0 );         /* so inherited file permissions work right */
158
159     afp_options_init(&default_options);
160     if (!afp_options_parse(ac, av, &default_options))
161       exit(1);
162     
163     switch(server_lock("afpd", default_options.pidfile, 
164                        default_options.flags & OPTION_DEBUG)) {
165     case -1: /* error */
166       exit(1);
167     case 0: /* child */
168       break;
169     default: /* server */
170       exit(0);
171     }
172
173 #ifdef DID_MTAB
174     /* if we are going to use afpd.mtab, load the file */
175     afpd_mount_table = afpd_mtab_parse ( AFPD_MTAB_FILE );
176 #endif /* DID_MTAB */
177
178     /* install child handler for asp and dsi. we do this before afp_goaway
179      * as afp_goaway references stuff from here. 
180      * XXX: this should really be setup after the initial connections. */
181     if (!(server_children = server_child_alloc(default_options.connections,
182                                                CHILD_NFORKS))) {
183       syslog( LOG_ERR, "main: server_child alloc: %s", strerror(errno) );
184       afp_exit(1);
185     }
186       
187     memset(&sv, 0, sizeof(sv));
188     sv.sa_handler = child_handler;
189     sigemptyset( &sv.sa_mask );
190     sv.sa_flags = SA_RESTART;
191     if ( sigaction( SIGCHLD, &sv, 0 ) < 0 ) {
192         syslog( LOG_ERR, "main: sigaction: %s", strerror(errno) );
193         afp_exit(1);
194     }
195
196     sv.sa_handler = afp_goaway;
197     sigemptyset( &sv.sa_mask );
198     sigaddset(&sv.sa_mask, SIGHUP);
199     sigaddset(&sv.sa_mask, SIGTERM);
200     sv.sa_flags = SA_RESTART;
201     if ( sigaction( SIGHUP, &sv, 0 ) < 0 ) {
202         syslog( LOG_ERR, "main: sigaction: %s", strerror(errno) );
203         afp_exit(1);
204     }
205     if ( sigaction( SIGTERM, &sv, 0 ) < 0 ) {
206         syslog( LOG_ERR, "main: sigaction: %s", strerror(errno) );
207         afp_exit(1);
208     }
209     
210     /* afpd.conf: not in config file: lockfile, connections, configfile
211      *            preference: command-line provides defaults.
212      *                        config file over-writes defaults.
213      *
214      * we also need to make sure that killing afpd during startup
215      * won't leave any lingering registered names around.
216      */
217
218     sigemptyset(&sigs);
219     sigaddset(&sigs, SIGHUP);
220     sigaddset(&sigs, SIGTERM);
221     sigprocmask(SIG_BLOCK, &sigs, NULL);
222     if (!(configs = configinit(&default_options))) {
223       syslog(LOG_ERR, "main: no servers configured: %s\n", strerror(errno));
224       afp_exit(1);
225     }
226     sigprocmask(SIG_UNBLOCK, &sigs, NULL);
227
228     /* watch atp and dsi sockets. */
229     FD_ZERO(&save_rfds);
230     for (config = configs; config; config = config->next) {
231       if (config->fd < 0) /* for proxies */
232         continue;
233       FD_SET(config->fd, &save_rfds);
234     }
235     
236     /* wait for an appleshare connection. parent remains in the loop
237      * while the children get handled by afp_over_{asp,dsi}.  this is
238      * currently vulnerable to a denial-of-service attack if a
239      * connection is made without an actual login attempt being made
240      * afterwards. establishing timeouts for logins is a possible 
241      * solution. */
242     while (1) {
243       rfds = save_rfds;
244       if (select(FD_SETSIZE, &rfds, NULL, NULL, NULL) < 0) {
245         if (errno == EINTR)
246           continue;
247         syslog(LOG_ERR, "main: can't wait for input: %s", strerror(errno));
248         break;
249       }
250       
251       for (config = configs; config; config = config->next) {
252         if (config->fd < 0)
253           continue;
254         if (FD_ISSET(config->fd, &rfds)) 
255           config->server_start(config, configs, server_children); 
256       }
257     }
258
259     return 0;
260 }