]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/afp_config.c
Fix SIGHUP config reloading
[netatalk.git] / etc / afpd / afp_config.c
1 /*
2  * Copyright (c) 1997 Adrian Sun (asun@zoology.washington.edu)
3  * All Rights Reserved.  See COPYRIGHT.
4  */
5
6 #ifdef HAVE_CONFIG_H
7 #include "config.h"
8 #endif /* HAVE_CONFIG_H */
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13 #include <errno.h>
14 #include <string.h>
15 #include <unistd.h>
16 #include <ctype.h>
17 #include <sys/socket.h>
18 #include <netinet/in.h>
19 #include <arpa/inet.h>
20
21 #include <atalk/logger.h>
22 #include <atalk/util.h>
23 #include <atalk/dsi.h>
24 #include <atalk/afp.h>
25 #include <atalk/compat.h>
26 #include <atalk/server_child.h>
27 #include <atalk/globals.h>
28 #include <atalk/errchk.h>
29 #include <atalk/netatalk_conf.h>
30 #include <atalk/fce_api.h>
31
32 #ifdef HAVE_LDAP
33 #include <atalk/ldapconfig.h>
34 #endif
35
36 #include "afp_config.h"
37 #include "uam_auth.h"
38 #include "status.h"
39 #include "volume.h"
40 #include "afp_zeroconf.h"
41
42
43 /*!
44  * Free and cleanup config and DSI
45  *
46  * "dsi" can be NULL in which case all DSI objects and the config object is freed,
47  * otherwise its an afpd session child and only any unneeded DSI objects are freed
48  */
49 void configfree(AFPObj *obj, DSI *dsi)
50 {
51     DSI *p, *q;
52
53     if (!dsi) {
54         /* Master afpd reloading config */
55         auth_unload();
56         if (! (obj->options.flags & OPTION_NOZEROCONF)) {
57             unload_volumes(obj);
58             zeroconf_deregister();
59         }
60     }
61
62     /* Master and child releasing unneeded DSI handles */
63     for (p = obj->dsi; p; p = q) {
64         q = p->next;
65         if (p == dsi)
66             continue;
67         dsi_free(p);
68         free(p);
69     }
70     obj->dsi = NULL;
71
72     /* afpd session child passes dsi handle to obj handle */
73     if (dsi) {
74         dsi->next = NULL;
75         obj->dsi = dsi;
76     }
77 }
78
79 /*!
80  * Get everything running
81  */
82 int configinit(AFPObj *obj)
83 {
84     EC_INIT;
85     DSI *dsi, **next = &obj->dsi;
86     char *p = NULL, *q = NULL, *savep;
87     const char *r;
88
89     auth_load(obj->options.uampath, obj->options.uamlist);
90     set_signature(&obj->options);
91 #ifdef HAVE_LDAP
92     acl_ldap_freeconfig();
93 #endif /* HAVE_LDAP */
94
95     LOG(log_debug, logtype_afpd, "DSIConfigInit: hostname: %s, listen: %s, port: %s",
96         obj->options.hostname,
97         obj->options.listen ? obj->options.listen : "(default: hostname)",
98         obj->options.port);
99
100     /* obj->options->listen is of the from "IP[:port][,IP:[PORT], ...]" */
101     /* obj->options->port is the default port to listen (548) */
102
103     if (obj->options.listen) {
104         EC_NULL( q = p = strdup(obj->options.listen) );
105         EC_NULL( p = strtok_r(p, ", ", &savep) );
106     }
107
108     while (1) {
109         if ((dsi = dsi_init(obj, obj->options.hostname, p, obj->options.port)) == NULL)
110             break;
111
112         status_init(obj, dsi);
113         *next = dsi;
114         next = &dsi->next;
115         dsi->AFPobj = obj;
116
117         LOG(log_note, logtype_afpd, "Netatalk AFP/TCP listening on %s:%d",
118             getip_string((struct sockaddr *)&dsi->server),
119             getip_port((struct sockaddr *)&dsi->server));
120
121         if (p)
122             /* p is NULL if ! obj->options.listen */
123             p = strtok_r(NULL, ", ", &savep);
124         if (!p)
125             break;
126     }
127
128 #ifdef HAVE_LDAP
129     /* Parse afp.conf */
130     acl_ldap_readconfig(obj->iniconfig);
131 #endif /* HAVE_LDAP */
132
133     /* Now register with zeroconf, we also need the volumes for that */
134     if (! (obj->options.flags & OPTION_NOZEROCONF)) {
135         load_volumes(obj);
136         zeroconf_register(obj);
137     }
138
139     if ((r = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "fce listener", NULL))) {
140                 LOG(log_note, logtype_afpd, "Adding FCE listener: %s", r);
141                 fce_add_udp_socket(r);
142     }
143     if ((r = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "fce coalesce", NULL))) {
144                 LOG(log_note, logtype_afpd, "Fce coalesce: %s", r);
145                 fce_set_coalesce(r);
146     }
147     if ((r = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "fce events", NULL))) {
148                 LOG(log_note, logtype_afpd, "Fce events: %s", r);
149                 fce_set_events(r);
150     }
151
152 EC_CLEANUP:
153     if (q)
154         free(q);
155     EC_EXIT;
156 }