r7911: task_terminate() is defined in the macosx headers, so change the name
[samba.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 2 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, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24 #include "libcli/ldap/ldap.h"
25 #include "lib/events/events.h"
26 #include "lib/socket/socket.h"
27 #include "smbd/service_task.h"
28 #include "cldap_server/cldap_server.h"
29
30 /*
31   handle incoming cldap requests
32 */
33 static void cldapd_request_handler(struct cldap_socket *cldap, 
34                                    struct ldap_message *ldap_msg, 
35                                    const char *src_address, int src_port)
36 {
37         struct ldap_SearchRequest *search;
38         if (ldap_msg->type != LDAP_TAG_SearchRequest) {
39                 DEBUG(0,("Invalid CLDAP request type %d from %s:%d\n", 
40                          ldap_msg->type, src_address, src_port));
41                 return;
42         }
43
44         search = &ldap_msg->r.SearchRequest;
45
46         if (search->num_attributes == 1 &&
47             strcasecmp(search->attributes[0], "netlogon") == 0) {
48                 cldapd_netlogon_request(cldap, ldap_msg->messageid,
49                                         search->tree, src_address, src_port);
50         } else {
51                 DEBUG(0,("Unknown CLDAP search for '%s'\n", 
52                          ldb_filter_from_tree(ldap_msg, 
53                                               ldap_msg->r.SearchRequest.tree)));
54                 cldap_empty_reply(cldap, ldap_msg->messageid, src_address, src_port);
55         }
56 }
57
58
59 /*
60   start listening on the given address
61 */
62 static NTSTATUS cldapd_add_socket(struct cldapd_server *cldapd, const char *address)
63 {
64         struct cldap_socket *cldapsock;
65         NTSTATUS status;
66
67         /* listen for unicasts on the CLDAP port (389) */
68         cldapsock = cldap_socket_init(cldapd, cldapd->task->event_ctx);
69         NT_STATUS_HAVE_NO_MEMORY(cldapsock);
70
71         status = socket_listen(cldapsock->sock, address, lp_cldap_port(), 0, 0);
72         if (!NT_STATUS_IS_OK(status)) {
73                 DEBUG(0,("Failed to bind to %s:%d - %s\n", 
74                          address, lp_cldap_port(), nt_errstr(status)));
75                 talloc_free(cldapsock);
76                 return status;
77         }
78
79         cldap_set_incoming_handler(cldapsock, cldapd_request_handler, cldapd);
80
81         return NT_STATUS_OK;
82 }
83
84
85 /*
86   setup our listening sockets on the configured network interfaces
87 */
88 NTSTATUS cldapd_startup_interfaces(struct cldapd_server *cldapd)
89 {
90         int num_interfaces = iface_count();
91         TALLOC_CTX *tmp_ctx = talloc_new(cldapd);
92         NTSTATUS status;
93
94         /* if we are allowing incoming packets from any address, then
95            we need to bind to the wildcard address */
96         if (!lp_bind_interfaces_only()) {
97                 status = cldapd_add_socket(cldapd, "0.0.0.0");
98                 NT_STATUS_NOT_OK_RETURN(status);
99         } else {
100                 int i;
101
102                 for (i=0; i<num_interfaces; i++) {
103                         const char *address = talloc_strdup(tmp_ctx, iface_n_ip(i));
104                         status = cldapd_add_socket(cldapd, address);
105                         NT_STATUS_NOT_OK_RETURN(status);
106                 }
107         }
108
109         talloc_free(tmp_ctx);
110
111         return NT_STATUS_OK;
112 }
113
114 /*
115   startup the cldapd task
116 */
117 static void cldapd_task_init(struct task_server *task)
118 {
119         struct cldapd_server *cldapd;
120         NTSTATUS status;
121
122         if (iface_count() == 0) {
123                 task_server_terminate(task, "cldapd: no network interfaces configured");
124                 return;
125         }
126
127         cldapd = talloc(task, struct cldapd_server);
128         if (cldapd == NULL) {
129                 task_server_terminate(task, "cldapd: out of memory");
130                 return;
131         }
132
133         cldapd->task = task;
134         cldapd->samctx = NULL;
135
136         /* start listening on the configured network interfaces */
137         status = cldapd_startup_interfaces(cldapd);
138         if (!NT_STATUS_IS_OK(status)) {
139                 task_server_terminate(task, "cldapd failed to setup interfaces");
140                 return;
141         }
142 }
143
144
145 /*
146   initialise the cldapd server
147  */
148 static NTSTATUS cldapd_init(struct event_context *event_ctx, const struct model_ops *model_ops)
149 {
150         return task_server_startup(event_ctx, model_ops, cldapd_task_init);
151 }
152
153
154 /*
155   register ourselves as a available server
156 */
157 NTSTATUS server_service_cldapd_init(void)
158 {
159         return register_server_service("cldap", cldapd_init);
160 }