r19832: better prototypes for the linearization functions:
[samba.git] / source / cldap_server / netlogon.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    CLDAP server - netlogon handling
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/ldb/include/ldb.h"
26 #include "lib/ldb/include/ldb_errors.h"
27 #include "lib/events/events.h"
28 #include "lib/socket/socket.h"
29 #include "smbd/service_task.h"
30 #include "cldap_server/cldap_server.h"
31 #include "librpc/gen_ndr/ndr_misc.h"
32 #include "dsdb/samdb/samdb.h"
33 #include "auth/auth.h"
34 #include "db_wrap.h"
35 #include "system/network.h"
36 #include "lib/socket/netif.h"
37
38 /*
39   fill in the cldap netlogon union for a given version
40 */
41 static NTSTATUS cldapd_netlogon_fill(struct cldapd_server *cldapd,
42                                      TALLOC_CTX *mem_ctx,
43                                      const char *domain,
44                                      const char *domain_guid,
45                                      const char *user,
46                                      const char *src_address,
47                                      uint32_t version,
48                                      union nbt_cldap_netlogon *netlogon)
49 {
50         const char *ref_attrs[] = {"nETBIOSName", "dnsRoot", "ncName", NULL};
51         const char *dom_attrs[] = {"objectGUID", NULL};
52         struct ldb_message **ref_res, **dom_res;
53         int ret, count = 0;
54         const char **services = lp_server_services();
55         uint32_t server_type;
56         const char *pdc_name;
57         struct GUID domain_uuid;
58         const char *realm;
59         const char *dns_domain;
60         const char *pdc_dns_name;
61         const char *flatname;
62         const char *server_site;
63         const char *client_site;
64         const char *pdc_ip;
65         struct ldb_dn *partitions_basedn;
66
67         partitions_basedn = samdb_partitions_dn(cldapd->samctx, mem_ctx);
68
69         /* the domain has an optional trailing . */
70         if (domain && domain[strlen(domain)-1] == '.') {
71                 domain = talloc_strndup(mem_ctx, domain, strlen(domain)-1);
72         }
73
74         if (domain) {
75                 struct ldb_result *dom_ldb_result;
76                 struct ldb_dn *dom_dn;
77                 /* try and find the domain */
78                 count = gendb_search(cldapd->samctx, mem_ctx, partitions_basedn, &ref_res, ref_attrs, 
79                                    "(&(&(objectClass=crossRef)(dnsRoot=%s))(nETBIOSName=*))", 
80                                    domain);
81                 if (count == 1) {
82                         dom_dn = samdb_result_dn(cldapd->samctx, mem_ctx, ref_res[0], "ncName", NULL);
83                         if (!dom_dn) {
84                                 return NT_STATUS_NO_SUCH_DOMAIN;
85                         }
86                         ret = ldb_search(cldapd->samctx, dom_dn,
87                                          LDB_SCOPE_BASE, "objectClass=domain", 
88                                          dom_attrs, &dom_ldb_result);
89                         if (ret != LDB_SUCCESS) {
90                                 DEBUG(2,("Error finding domain '%s'/'%s' in sam: %s\n", domain, ldb_dn_get_linearized(dom_dn), ldb_errstring(cldapd->samctx)));
91                                 return NT_STATUS_NO_SUCH_DOMAIN;
92                         }
93                         talloc_steal(mem_ctx, dom_ldb_result);
94                         if (dom_ldb_result->count != 1) {
95                                 DEBUG(2,("Error finding domain '%s'/'%s' in sam\n", domain, ldb_dn_get_linearized(dom_dn)));
96                                 return NT_STATUS_NO_SUCH_DOMAIN;
97                         }
98                         dom_res = dom_ldb_result->msgs;
99                 }
100         }
101
102         if (count == 0 && domain_guid) {
103                 /* OK, so no dice with the name, try and find the domain with the GUID */
104                 count = gendb_search(cldapd->samctx, mem_ctx, NULL, &dom_res, dom_attrs, 
105                                    "(&(objectClass=domainDNS)(objectGUID=%s))", 
106                                    domain_guid);
107                 if (count == 1) {
108                         /* try and find the domain */
109                         ret = gendb_search(cldapd->samctx, mem_ctx, partitions_basedn, &ref_res, ref_attrs, 
110                                            "(&(objectClass=crossRef)(ncName=%s))", 
111                                            ldb_dn_get_linearized(dom_res[0]->dn));
112                         if (ret != 1) {
113                                 DEBUG(2,("Unable to find referece to '%s' in sam\n",
114                                          ldb_dn_get_linearized(dom_res[0]->dn)));
115                                 return NT_STATUS_NO_SUCH_DOMAIN;
116                         }
117                 }
118         }
119
120         if (count == 0) {
121                 DEBUG(2,("Unable to find domain with name %s or GUID {%s}\n", domain, domain_guid));
122                 return NT_STATUS_NO_SUCH_DOMAIN;
123         }
124
125         server_type      = 
126                 NBT_SERVER_PDC | NBT_SERVER_GC | 
127                 NBT_SERVER_DS | NBT_SERVER_TIMESERV |
128                 NBT_SERVER_CLOSEST | NBT_SERVER_WRITABLE | 
129                 NBT_SERVER_GOOD_TIMESERV;
130
131         if (str_list_check(services, "ldap")) {
132                 server_type |= NBT_SERVER_LDAP;
133         }
134
135         if (str_list_check(services, "kdc")) {
136                 server_type |= NBT_SERVER_KDC;
137         }
138
139         pdc_name         = talloc_asprintf(mem_ctx, "\\\\%s", lp_netbios_name());
140         domain_uuid      = samdb_result_guid(dom_res[0], "objectGUID");
141         realm            = samdb_result_string(ref_res[0], "dnsRoot", lp_realm());
142         dns_domain       = samdb_result_string(ref_res[0], "dnsRoot", lp_realm());
143         pdc_dns_name     = talloc_asprintf(mem_ctx, "%s.%s", 
144                                            strlower_talloc(mem_ctx, lp_netbios_name()), 
145                                            dns_domain);
146
147         flatname         = samdb_result_string(ref_res[0], "nETBIOSName", lp_workgroup());
148         server_site      = "Default-First-Site-Name";
149         client_site      = "Default-First-Site-Name";
150         pdc_ip           = iface_best_ip(src_address);
151
152         ZERO_STRUCTP(netlogon);
153
154         switch (version & 0xF) {
155         case 0:
156         case 1:
157                 netlogon->logon1.type        = (user?19+2:19);
158                 netlogon->logon1.pdc_name    = pdc_name;
159                 netlogon->logon1.user_name   = user;
160                 netlogon->logon1.domain_name = flatname;
161                 netlogon->logon1.nt_version  = 1;
162                 netlogon->logon1.lmnt_token  = 0xFFFF;
163                 netlogon->logon1.lm20_token  = 0xFFFF;
164                 break;
165         case 2:
166         case 3:
167                 netlogon->logon3.type         = (user?19+2:19);
168                 netlogon->logon3.pdc_name     = pdc_name;
169                 netlogon->logon3.user_name    = user;
170                 netlogon->logon3.domain_name  = flatname;
171                 netlogon->logon3.domain_uuid  = domain_uuid;
172                 netlogon->logon3.forest       = realm;
173                 netlogon->logon3.dns_domain   = dns_domain;
174                 netlogon->logon3.pdc_dns_name = pdc_dns_name;
175                 netlogon->logon3.pdc_ip       = pdc_ip;
176                 netlogon->logon3.server_type  = server_type;
177                 netlogon->logon3.lmnt_token   = 0xFFFF;
178                 netlogon->logon3.lm20_token   = 0xFFFF;
179                 break;
180         case 4:
181         case 5:
182         case 6:
183         case 7:
184                 netlogon->logon5.type         = (user?23+2:23);
185                 netlogon->logon5.server_type  = server_type;
186                 netlogon->logon5.domain_uuid  = domain_uuid;
187                 netlogon->logon5.forest       = realm;
188                 netlogon->logon5.dns_domain   = dns_domain;
189                 netlogon->logon5.pdc_dns_name = pdc_dns_name;
190                 netlogon->logon5.domain       = flatname;
191                 netlogon->logon5.pdc_name     = lp_netbios_name();
192                 netlogon->logon5.user_name    = user;
193                 netlogon->logon5.server_site  = server_site;
194                 netlogon->logon5.client_site  = client_site;
195                 netlogon->logon5.lmnt_token   = 0xFFFF;
196                 netlogon->logon5.lm20_token   = 0xFFFF;
197                 break;
198         default:
199                 netlogon->logon13.type         = (user?23+2:23);
200                 netlogon->logon13.server_type  = server_type;
201                 netlogon->logon13.domain_uuid  = domain_uuid;
202                 netlogon->logon13.forest       = realm;
203                 netlogon->logon13.dns_domain   = dns_domain;
204                 netlogon->logon13.pdc_dns_name = pdc_dns_name;
205                 netlogon->logon13.domain       = flatname;
206                 netlogon->logon13.pdc_name     = lp_netbios_name();
207                 netlogon->logon13.user_name    = user;
208                 netlogon->logon13.server_site  = server_site;
209                 netlogon->logon13.client_site  = client_site;
210                 netlogon->logon13.unknown      = 10;
211                 netlogon->logon13.unknown2     = 2;
212                 netlogon->logon13.pdc_ip       = pdc_ip;
213                 netlogon->logon13.lmnt_token   = 0xFFFF;
214                 netlogon->logon13.lm20_token   = 0xFFFF;
215                 break;
216         }
217
218         return NT_STATUS_OK;
219 }
220
221
222 /*
223   handle incoming cldap requests
224 */
225 void cldapd_netlogon_request(struct cldap_socket *cldap, 
226                              uint32_t message_id,
227                              struct ldb_parse_tree *tree,
228                              struct socket_address *src)
229 {
230         struct cldapd_server *cldapd = talloc_get_type(cldap->incoming.private, struct cldapd_server);
231         int i;
232         const char *domain = NULL;
233         const char *host = NULL;
234         const char *user = NULL;
235         const char *domain_guid = NULL;
236         const char *domain_sid = NULL;
237         int acct_control = -1;
238         int version = -1;
239         union nbt_cldap_netlogon netlogon;
240         NTSTATUS status = NT_STATUS_INVALID_PARAMETER;
241
242         TALLOC_CTX *tmp_ctx = talloc_new(cldap);
243
244         if (tree->operation != LDB_OP_AND) goto failed;
245
246         /* extract the query elements */
247         for (i=0;i<tree->u.list.num_elements;i++) {
248                 struct ldb_parse_tree *t = tree->u.list.elements[i];
249                 if (t->operation != LDB_OP_EQUALITY) goto failed;
250                 if (strcasecmp(t->u.equality.attr, "DnsDomain") == 0) {
251                         domain = talloc_strndup(tmp_ctx, 
252                                                 (const char *)t->u.equality.value.data,
253                                                 t->u.equality.value.length);
254                 }
255                 if (strcasecmp(t->u.equality.attr, "Host") == 0) {
256                         host = talloc_strndup(tmp_ctx, 
257                                               (const char *)t->u.equality.value.data,
258                                               t->u.equality.value.length);
259                 }
260                 if (strcasecmp(t->u.equality.attr, "DomainGuid") == 0) {
261                         NTSTATUS enc_status;
262                         struct GUID guid;
263                         enc_status = ldap_decode_ndr_GUID(tmp_ctx, 
264                                                           t->u.equality.value, &guid);
265                         if (NT_STATUS_IS_OK(enc_status)) {
266                                 domain_guid = GUID_string(tmp_ctx, &guid);
267                         }
268                 }
269                 if (strcasecmp(t->u.equality.attr, "DomainSid") == 0) {
270                         domain_sid = talloc_strndup(tmp_ctx, 
271                                                     (const char *)t->u.equality.value.data,
272                                                     t->u.equality.value.length);
273                 }
274                 if (strcasecmp(t->u.equality.attr, "User") == 0) {
275                         user = talloc_strndup(tmp_ctx, 
276                                               (const char *)t->u.equality.value.data,
277                                               t->u.equality.value.length);
278                 }
279                 if (strcasecmp(t->u.equality.attr, "NtVer") == 0 &&
280                     t->u.equality.value.length == 4) {
281                         version = IVAL(t->u.equality.value.data, 0);
282                 }
283                 if (strcasecmp(t->u.equality.attr, "AAC") == 0 &&
284                     t->u.equality.value.length == 4) {
285                         acct_control = IVAL(t->u.equality.value.data, 0);
286                 }
287         }
288
289         if (domain_guid == NULL && domain == NULL) {
290                 domain = lp_realm();
291         }
292
293         if (version == -1) {
294                 goto failed;
295         }
296
297         DEBUG(5,("cldap netlogon query domain=%s host=%s user=%s version=%d guid=%s\n",
298                  domain, host, user, version, domain_guid));
299
300         status = cldapd_netlogon_fill(cldapd, tmp_ctx, domain, domain_guid, 
301                                       user, src->addr, 
302                                       version, &netlogon);
303         if (!NT_STATUS_IS_OK(status)) {
304                 goto failed;
305         }
306
307         status = cldap_netlogon_reply(cldap, message_id, src, version,
308                                       &netlogon);
309         if (!NT_STATUS_IS_OK(status)) {
310                 goto failed;
311         }
312
313         talloc_free(tmp_ctx);
314         return;
315         
316 failed:
317         DEBUG(2,("cldap netlogon query failed domain=%s host=%s version=%d - %s\n",
318                  domain, host, version, nt_errstr(status)));
319         talloc_free(tmp_ctx);
320         cldap_empty_reply(cldap, message_id, src);      
321 }