s4:cldap_server: Do not handle netlogon ourself anymore
[obnox/samba/samba-obnox.git] / source4 / cldap_server / cldap_server.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    CLDAP server task
5
6    Copyright (C) Andrew Tridgell        2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include <talloc.h>
24 #include "lib/messaging/irpc.h"
25 #include "smbd/service_task.h"
26 #include "smbd/service.h"
27 #include "cldap_server/cldap_server.h"
28 #include "system/network.h"
29 #include "lib/socket/netif.h"
30 #include <ldb.h>
31 #include <ldb_errors.h>
32 #include "dsdb/samdb/samdb.h"
33 #include "ldb_wrap.h"
34 #include "auth/auth.h"
35 #include "param/param.h"
36 #include "../lib/tsocket/tsocket.h"
37
38 NTSTATUS server_service_cldapd_init(void);
39
40 /*
41   handle incoming cldap requests
42 */
43 static void cldapd_request_handler(struct cldap_socket *cldap,
44                                    void *private_data,
45                                    struct cldap_incoming *in)
46 {
47         struct cldapd_server *cldapd = talloc_get_type(private_data,
48                                        struct cldapd_server);
49         struct ldap_SearchRequest *search;
50
51         if (in->ldap_msg->type != LDAP_TAG_SearchRequest) {
52                 DEBUG(0,("Invalid CLDAP request type %d from %s\n",
53                          in->ldap_msg->type,
54                          tsocket_address_string(in->src, in)));
55                 cldap_error_reply(cldap, in->ldap_msg->messageid, in->src,
56                                   LDAP_OPERATIONS_ERROR, "Invalid CLDAP request");
57                 talloc_free(in);
58                 return;
59         }
60
61         search = &in->ldap_msg->r.SearchRequest;
62
63         if (strcmp("", search->basedn) != 0) {
64                 DEBUG(0,("Invalid CLDAP basedn '%s' from %s\n",
65                          search->basedn,
66                          tsocket_address_string(in->src, in)));
67                 cldap_error_reply(cldap, in->ldap_msg->messageid, in->src,
68                                   LDAP_OPERATIONS_ERROR, "Invalid CLDAP basedn");
69                 talloc_free(in);
70                 return;
71         }
72
73         if (search->scope != LDAP_SEARCH_SCOPE_BASE) {
74                 DEBUG(0,("Invalid CLDAP scope %d from %s\n",
75                          search->scope,
76                          tsocket_address_string(in->src, in)));
77                 cldap_error_reply(cldap, in->ldap_msg->messageid, in->src,
78                                   LDAP_OPERATIONS_ERROR, "Invalid CLDAP scope");
79                 talloc_free(in);
80                 return;
81         }
82
83         cldapd_rootdse_request(cldap, cldapd, in,
84                                in->ldap_msg->messageid,
85                                search, in->src);
86         talloc_free(in);
87 }
88
89
90 /*
91   start listening on the given address
92 */
93 static NTSTATUS cldapd_add_socket(struct cldapd_server *cldapd, struct loadparm_context *lp_ctx,
94                                   const char *address)
95 {
96         struct cldap_socket *cldapsock;
97         struct tsocket_address *socket_address;
98         NTSTATUS status;
99         int ret;
100
101         ret = tsocket_address_inet_from_strings(cldapd,
102                                                 "ip",
103                                                 address,
104                                                 lpcfg_cldap_port(lp_ctx),
105                                                 &socket_address);
106         if (ret != 0) {
107                 status = map_nt_error_from_unix_common(errno);
108                 DEBUG(0,("invalid address %s:%d - %s:%s\n",
109                          address, lpcfg_cldap_port(lp_ctx),
110                          gai_strerror(ret), nt_errstr(status)));
111                 return status;
112         }
113
114         /* listen for unicasts on the CLDAP port (389) */
115         status = cldap_socket_init(cldapd,
116                                    socket_address,
117                                    NULL,
118                                    &cldapsock);
119         if (!NT_STATUS_IS_OK(status)) {
120                 DEBUG(0,("Failed to bind to %s - %s\n", 
121                          tsocket_address_string(socket_address, socket_address),
122                          nt_errstr(status)));
123                 talloc_free(socket_address);
124                 return status;
125         }
126         talloc_free(socket_address);
127
128         cldap_set_incoming_handler(cldapsock, cldapd->task->event_ctx,
129                                    cldapd_request_handler, cldapd);
130
131         return NT_STATUS_OK;
132 }
133
134 /*
135   setup our listening sockets on the configured network interfaces
136 */
137 static NTSTATUS cldapd_startup_interfaces(struct cldapd_server *cldapd, struct loadparm_context *lp_ctx,
138                                           struct interface *ifaces)
139 {
140         int i, num_interfaces;
141         TALLOC_CTX *tmp_ctx = talloc_new(cldapd);
142         NTSTATUS status;
143
144         num_interfaces = iface_list_count(ifaces);
145
146         /* if we are allowing incoming packets from any address, then
147            we need to bind to the wildcard address */
148         if (!lpcfg_bind_interfaces_only(lp_ctx)) {
149                 const char **wcard = iface_list_wildcard(cldapd, lp_ctx);
150                 NT_STATUS_HAVE_NO_MEMORY(wcard);
151                 for (i=0; wcard[i]; i++) {
152                         status = cldapd_add_socket(cldapd, lp_ctx, wcard[i]);
153                         NT_STATUS_NOT_OK_RETURN(status);
154                 }
155                 talloc_free(wcard);
156         }
157
158         /* now we have to also listen on the specific interfaces,
159            so that replies always come from the right IP */
160         for (i=0; i<num_interfaces; i++) {
161                 const char *address = talloc_strdup(tmp_ctx, iface_list_n_ip(ifaces, i));
162                 status = cldapd_add_socket(cldapd, lp_ctx, address);
163                 NT_STATUS_NOT_OK_RETURN(status);
164         }
165
166         talloc_free(tmp_ctx);
167
168         return NT_STATUS_OK;
169 }
170
171 /*
172   startup the cldapd task
173 */
174 static void cldapd_task_init(struct task_server *task)
175 {
176         struct cldapd_server *cldapd;
177         NTSTATUS status;
178         struct interface *ifaces;
179         
180         load_interface_list(task, task->lp_ctx, &ifaces);
181
182         if (iface_list_count(ifaces) == 0) {
183                 task_server_terminate(task, "cldapd: no network interfaces configured", false);
184                 return;
185         }
186
187         switch (lpcfg_server_role(task->lp_ctx)) {
188         case ROLE_STANDALONE:
189                 task_server_terminate(task, "cldap_server: no CLDAP server required in standalone configuration", 
190                                       false);
191                 return;
192         case ROLE_DOMAIN_MEMBER:
193                 task_server_terminate(task, "cldap_server: no CLDAP server required in member server configuration",
194                                       false);
195                 return;
196         case ROLE_ACTIVE_DIRECTORY_DC:
197                 /* Yes, we want an CLDAP server */
198                 break;
199         }
200
201         task_server_set_title(task, "task[cldapd]");
202
203         cldapd = talloc(task, struct cldapd_server);
204         if (cldapd == NULL) {
205                 task_server_terminate(task, "cldapd: out of memory", true);
206                 return;
207         }
208
209         cldapd->task = task;
210         cldapd->samctx = samdb_connect(cldapd, task->event_ctx, task->lp_ctx, system_session(task->lp_ctx), 0);
211         if (cldapd->samctx == NULL) {
212                 task_server_terminate(task, "cldapd failed to open samdb", true);
213                 return;
214         }
215
216         /* start listening on the configured network interfaces */
217         status = cldapd_startup_interfaces(cldapd, task->lp_ctx, ifaces);
218         if (!NT_STATUS_IS_OK(status)) {
219                 task_server_terminate(task, "cldapd failed to setup interfaces", true);
220                 return;
221         }
222
223         irpc_add_name(task->msg_ctx, "cldap_server");
224 }
225
226
227 /*
228   register ourselves as a available server
229 */
230 NTSTATUS server_service_cldapd_init(void)
231 {
232         return register_server_service("cldap", cldapd_task_init);
233 }