]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/afp_config.c
fa7da0c9816679975cd9de02722dd3192e546d89
[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 all linked DSI objects from config
45  *
46  * Preserve object pointed to by "dsi".
47  * "dsi" can be NULL in which case all DSI objects _and_ the options object are freed 
48  */
49 void configfree(AFPObj *obj, DSI *dsi)
50 {
51     DSI *p, *q;
52
53     /* the master loaded the volumes for zeroconf, get rid of that */
54     unload_volumes(obj);
55
56     for (p = obj->dsi; p; p = q) {
57         q = p->next;
58         if (p == dsi)
59             continue;
60         close(p->socket);
61         free(p);
62     }
63
64     if (dsi) {
65         dsi->next = NULL;
66         obj->dsi = dsi;
67     } else {
68         afp_options_free(&obj->options);
69     }
70 }
71
72 /*!
73  * Get everything running
74  */
75 int configinit(AFPObj *obj)
76 {
77     EC_INIT;
78     DSI *dsi, **next = &obj->dsi;
79     char *p = NULL, *q = NULL, *savep;
80     const char *r;
81
82     auth_load(obj->options.uampath, obj->options.uamlist);
83     set_signature(&obj->options);
84
85     LOG(log_debug, logtype_afpd, "DSIConfigInit: hostname: %s, listen: %s, port: %s",
86         obj->options.hostname,
87         obj->options.listen ? obj->options.listen : "(default: hostname)",
88         obj->options.port);
89
90     /* obj->options->listen is of the from "IP[:port][,IP:[PORT], ...]" */
91     /* obj->options->port is the default port to listen (548) */
92
93     if (obj->options.listen) {
94         EC_NULL( q = p = strdup(obj->options.listen) );
95         EC_NULL( p = strtok_r(p, ", ", &savep) );
96     }
97
98     while (1) {
99         if ((dsi = dsi_init(obj, obj->options.hostname, p, obj->options.port)) == NULL)
100             break;
101
102         status_init(obj, dsi);
103         *next = dsi;
104         next = &dsi->next;
105         dsi->AFPobj = obj;
106
107         LOG(log_note, logtype_afpd, "Netatalk AFP/TCP listening on %s:%d",
108             getip_string((struct sockaddr *)&dsi->server),
109             getip_port((struct sockaddr *)&dsi->server));
110
111         if (p)
112             /* p is NULL if ! obj->options.listen */
113             p = strtok_r(NULL, ", ", &savep);
114         if (!p)
115             break;
116     }
117
118 #ifdef HAVE_LDAP
119     /* Parse afp.conf */
120     acl_ldap_readconfig(obj->iniconfig);
121 #endif /* HAVE_LDAP */
122
123     /* Now register with zeroconf, we also need the volumes for that */
124     if (! (obj->options.flags & OPTION_NOZEROCONF)) {
125         load_volumes(obj);
126         zeroconf_register(obj);
127     }
128
129     if ((r = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "fce listener", NULL))) {
130                 LOG(log_note, logtype_afpd, "Adding FCE listener: %s", r);
131                 fce_add_udp_socket(r);
132     }
133     if ((r = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "fce coalesce", NULL))) {
134                 LOG(log_note, logtype_afpd, "Fce coalesce: %s", r);
135                 fce_set_coalesce(r);
136     }
137     if ((r = iniparser_getstring(obj->iniconfig, INISEC_GLOBAL, "fce events", NULL))) {
138                 LOG(log_note, logtype_afpd, "Fce events: %s", r);
139                 fce_set_events(r);
140     }
141
142 EC_CLEANUP:
143     if (q)
144         free(q);
145     EC_EXIT;
146 }