s4-cldap: Set DS_DNS_CONTROLLER bit if we are running RPC dnsserver
[samba.git] / source4 / cldap_server / netlogon.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    CLDAP server - netlogon handling
5
6    Copyright (C) Andrew Tridgell        2005
7    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2008
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22
23 #include "includes.h"
24 #include <ldb.h>
25 #include <ldb_errors.h>
26 #include "lib/events/events.h"
27 #include "smbd/service_task.h"
28 #include "cldap_server/cldap_server.h"
29 #include "librpc/gen_ndr/ndr_misc.h"
30 #include "libcli/ldap/ldap_ndr.h"
31 #include "libcli/security/security.h"
32 #include "dsdb/samdb/samdb.h"
33 #include "auth/auth.h"
34 #include "ldb_wrap.h"
35 #include "system/network.h"
36 #include "lib/socket/netif.h"
37 #include "param/param.h"
38 #include "../lib/tsocket/tsocket.h"
39 #include "libds/common/flag_mapping.h"
40 #include "lib/util/util_net.h"
41
42 /*
43   fill in the cldap netlogon union for a given version
44 */
45 NTSTATUS fill_netlogon_samlogon_response(struct ldb_context *sam_ctx,
46                                          TALLOC_CTX *mem_ctx,
47                                          const char *domain,
48                                          const char *netbios_domain,
49                                          struct dom_sid *domain_sid,
50                                          const char *domain_guid,
51                                          const char *user,
52                                          uint32_t acct_control,
53                                          const char *src_address,
54                                          uint32_t version,
55                                          struct loadparm_context *lp_ctx,
56                                          struct netlogon_samlogon_response *netlogon,
57                                          bool fill_on_blank_request)
58 {
59         const char *dom_attrs[] = {"objectGUID", NULL};
60         const char *none_attrs[] = {NULL};
61         struct ldb_result *dom_res = NULL, *user_res = NULL;
62         int ret;
63         const char **services = lpcfg_server_services(lp_ctx);
64         const char **rpc_services = lpcfg_dcerpc_endpoint_servers(lp_ctx);
65         uint32_t server_type;
66         const char *pdc_name;
67         struct GUID domain_uuid;
68         const char *dns_domain;
69         const char *forest_domain;
70         const char *pdc_dns_name;
71         const char *flatname;
72         const char *server_site;
73         const char *client_site;
74         const char *pdc_ip;
75         struct ldb_dn *domain_dn = NULL;
76         struct interface *ifaces;
77         bool user_known, am_rodc;
78         NTSTATUS status;
79
80         /* the domain parameter could have an optional trailing "." */
81         if (domain && domain[strlen(domain)-1] == '.') {
82                 domain = talloc_strndup(mem_ctx, domain, strlen(domain)-1);
83                 NT_STATUS_HAVE_NO_MEMORY(domain);
84         }
85
86         /* Lookup using long or short domainname */
87         if (domain && (strcasecmp_m(domain, lpcfg_dnsdomain(lp_ctx)) == 0)) {
88                 domain_dn = ldb_get_default_basedn(sam_ctx);
89         }
90         if (netbios_domain && (strcasecmp_m(netbios_domain, lpcfg_sam_name(lp_ctx)) == 0)) {
91                 domain_dn = ldb_get_default_basedn(sam_ctx);
92         }
93         if (domain_dn) {
94                 const char *domain_identifier = domain != NULL ? domain
95                                                         : netbios_domain;
96                 ret = ldb_search(sam_ctx, mem_ctx, &dom_res,
97                                  domain_dn, LDB_SCOPE_BASE, dom_attrs,
98                                  "objectClass=domain");
99                 if (ret != LDB_SUCCESS) {
100                         DEBUG(2,("Error finding domain '%s'/'%s' in sam: %s\n",
101                                  domain_identifier,
102                                  ldb_dn_get_linearized(domain_dn),
103                                  ldb_errstring(sam_ctx)));
104                         return NT_STATUS_NO_SUCH_DOMAIN;
105                 }
106                 if (dom_res->count != 1) {
107                         DEBUG(2,("Error finding domain '%s'/'%s' in sam\n",
108                                  domain_identifier,
109                                  ldb_dn_get_linearized(domain_dn)));
110                         return NT_STATUS_NO_SUCH_DOMAIN;
111                 }
112         }
113
114         /* Lookup using GUID or SID */
115         if ((dom_res == NULL) && (domain_guid || domain_sid)) {
116                 if (domain_guid) {
117                         struct GUID binary_guid;
118                         struct ldb_val guid_val;
119
120                         /* By this means, we ensure we don't have funny stuff in the GUID */
121
122                         status = GUID_from_string(domain_guid, &binary_guid);
123                         if (!NT_STATUS_IS_OK(status)) {
124                                 return status;
125                         }
126
127                         /* And this gets the result into the binary format we want anyway */
128                         status = GUID_to_ndr_blob(&binary_guid, mem_ctx, &guid_val);
129                         if (!NT_STATUS_IS_OK(status)) {
130                                 return status;
131                         }
132                         ret = ldb_search(sam_ctx, mem_ctx, &dom_res,
133                                                  NULL, LDB_SCOPE_SUBTREE, 
134                                                  dom_attrs, 
135                                                  "(&(objectCategory=DomainDNS)(objectGUID=%s))", 
136                                                  ldb_binary_encode(mem_ctx, guid_val));
137                 } else { /* domain_sid case */
138                         ret = ldb_search(sam_ctx, mem_ctx, &dom_res,
139                                          NULL, LDB_SCOPE_SUBTREE,
140                                          dom_attrs,
141                                          "(&(objectCategory=DomainDNS)(objectSid=%s))",
142                                          dom_sid_string(mem_ctx, domain_sid));
143                 }
144                 
145                 if (ret != LDB_SUCCESS) {
146                         DEBUG(2,("Unable to find a correct reference to GUID '%s' or SID '%s' in sam: %s\n",
147                                  domain_guid, dom_sid_string(mem_ctx, domain_sid),
148                                  ldb_errstring(sam_ctx)));
149                         return NT_STATUS_NO_SUCH_DOMAIN;
150                 } else if (dom_res->count == 1) {
151                         /* Ok, now just check it is our domain */
152                         if (ldb_dn_compare(ldb_get_default_basedn(sam_ctx),
153                                            dom_res->msgs[0]->dn) != 0) {
154                                 DEBUG(2,("The GUID '%s' or SID '%s' doesn't identify our domain\n",
155                                          domain_guid,
156                                          dom_sid_string(mem_ctx, domain_sid)));
157                                 return NT_STATUS_NO_SUCH_DOMAIN;
158                         }
159                 } else {
160                         DEBUG(2,("Unable to find a correct reference to GUID '%s' or SID '%s' in sam\n",
161                                  domain_guid, dom_sid_string(mem_ctx, domain_sid)));
162                         return NT_STATUS_NO_SUCH_DOMAIN;
163                 }
164         }
165
166         if (dom_res == NULL && fill_on_blank_request) {
167                 /* blank inputs gives our domain - tested against
168                    w2k8r2. Without this ADUC on Win7 won't start */
169                 domain_dn = ldb_get_default_basedn(sam_ctx);
170                 ret = ldb_search(sam_ctx, mem_ctx, &dom_res,
171                                  domain_dn, LDB_SCOPE_BASE, dom_attrs,
172                                  "objectClass=domain");
173                 if (ret != LDB_SUCCESS) {
174                         DEBUG(2,("Error finding domain '%s'/'%s' in sam: %s\n",
175                                  lpcfg_dnsdomain(lp_ctx),
176                                  ldb_dn_get_linearized(domain_dn),
177                                  ldb_errstring(sam_ctx)));
178                         return NT_STATUS_NO_SUCH_DOMAIN;
179                 }
180         }
181
182         if (dom_res == NULL) {
183                 DEBUG(2,(__location__ ": Unable to get domain information with no inputs\n"));
184                 return NT_STATUS_NO_SUCH_DOMAIN;
185         }
186
187         /* work around different inputs for not-specified users */
188         if (!user) {
189                 user = "";
190         }
191
192         /* Enquire about any valid username with just a CLDAP packet -
193          * if kerberos didn't also do this, the security folks would
194          * scream... */
195         if (user[0]) {                                                  \
196                 /* Only allow some bits to be enquired:  [MS-ATDS] 7.3.3.2 */
197                 if (acct_control == (uint32_t)-1) {
198                         acct_control = 0;
199                 }
200                 acct_control = acct_control & (ACB_TEMPDUP | ACB_NORMAL | ACB_DOMTRUST | ACB_WSTRUST | ACB_SVRTRUST);
201
202                 /* We must exclude disabled accounts, but otherwise do the bitwise match the client asked for */
203                 ret = ldb_search(sam_ctx, mem_ctx, &user_res,
204                                          dom_res->msgs[0]->dn, LDB_SCOPE_SUBTREE, 
205                                          none_attrs, 
206                                          "(&(objectClass=user)(samAccountName=%s)"
207                                          "(!(userAccountControl:" LDB_OID_COMPARATOR_AND ":=%u))"
208                                          "(userAccountControl:" LDB_OID_COMPARATOR_OR ":=%u))", 
209                                          ldb_binary_encode_string(mem_ctx, user),
210                                          UF_ACCOUNTDISABLE, ds_acb2uf(acct_control));
211                 if (ret != LDB_SUCCESS) {
212                         DEBUG(2,("Unable to find reference to user '%s' with ACB 0x%8x under %s: %s\n",
213                                  user, acct_control, ldb_dn_get_linearized(dom_res->msgs[0]->dn),
214                                  ldb_errstring(sam_ctx)));
215                         return NT_STATUS_NO_SUCH_USER;
216                 } else if (user_res->count == 1) {
217                         user_known = true;
218                 } else {
219                         user_known = false;
220                 }
221
222         } else {
223                 user_known = true;
224         }
225                 
226         server_type      = 
227                 DS_SERVER_DS | DS_SERVER_TIMESERV |
228                 DS_SERVER_GOOD_TIMESERV;
229
230         if (samdb_is_pdc(sam_ctx)) {
231                 server_type |= DS_SERVER_PDC;
232         }
233
234         if (dsdb_functional_level(sam_ctx) >= DS_DOMAIN_FUNCTION_2008) {
235                 server_type |= DS_SERVER_FULL_SECRET_DOMAIN_6;
236         }
237
238         if (samdb_is_gc(sam_ctx)) {
239                 server_type |= DS_SERVER_GC;
240         }
241
242         if (str_list_check(services, "ldap")) {
243                 server_type |= DS_SERVER_LDAP;
244         }
245
246         if (str_list_check(services, "kdc")) {
247                 server_type |= DS_SERVER_KDC;
248         }
249
250         if (str_list_check(rpc_services, "dnsserver")) {
251                 server_type |= DS_DNS_CONTROLLER;
252         }
253
254         if (samdb_rodc(sam_ctx, &am_rodc) == LDB_SUCCESS && !am_rodc) {
255                 server_type |= DS_SERVER_WRITABLE;
256         }
257
258         pdc_name         = talloc_asprintf(mem_ctx, "\\\\%s",
259                                            lpcfg_netbios_name(lp_ctx));
260         NT_STATUS_HAVE_NO_MEMORY(pdc_name);
261         domain_uuid      = samdb_result_guid(dom_res->msgs[0], "objectGUID");
262         dns_domain       = lpcfg_dnsdomain(lp_ctx);
263         forest_domain    = samdb_forest_name(sam_ctx, mem_ctx);
264         NT_STATUS_HAVE_NO_MEMORY(forest_domain);
265         pdc_dns_name     = talloc_asprintf(mem_ctx, "%s.%s", 
266                                            strlower_talloc(mem_ctx, 
267                                                            lpcfg_netbios_name(lp_ctx)),
268                                            dns_domain);
269         NT_STATUS_HAVE_NO_MEMORY(pdc_dns_name);
270         flatname         = lpcfg_workgroup(lp_ctx);
271
272         server_site      = samdb_server_site_name(sam_ctx, mem_ctx);
273         NT_STATUS_HAVE_NO_MEMORY(server_site);
274         client_site      = samdb_client_site_name(sam_ctx, mem_ctx,
275                                                   src_address, NULL);
276         NT_STATUS_HAVE_NO_MEMORY(client_site);
277         if (strcasecmp(server_site, client_site) == 0) {
278                 server_type |= DS_SERVER_CLOSEST;
279         }
280
281         load_interface_list(mem_ctx, lp_ctx, &ifaces);
282         if (src_address) {
283                 pdc_ip = iface_list_best_ip(ifaces, src_address);
284         } else {
285                 pdc_ip = iface_list_first_v4(ifaces);
286         }
287         if (pdc_ip == NULL || !is_ipaddress_v4(pdc_ip)) {
288                 /* this matches windows behaviour */
289                 pdc_ip = "127.0.0.1";
290         }
291
292         ZERO_STRUCTP(netlogon);
293
294         /* check if either of these bits is present */
295         if (version & (NETLOGON_NT_VERSION_5EX|NETLOGON_NT_VERSION_5EX_WITH_IP)) {
296                 uint32_t extra_flags = 0;
297                 netlogon->ntver = NETLOGON_NT_VERSION_5EX;
298
299                 /* could check if the user exists */
300                 if (user_known) {
301                         netlogon->data.nt5_ex.command      = LOGON_SAM_LOGON_RESPONSE_EX;
302                 } else {
303                         netlogon->data.nt5_ex.command      = LOGON_SAM_LOGON_USER_UNKNOWN_EX;
304                 }
305                 netlogon->data.nt5_ex.pdc_name     = pdc_name;
306                 netlogon->data.nt5_ex.user_name    = user;
307                 netlogon->data.nt5_ex.domain_name  = flatname;
308                 netlogon->data.nt5_ex.domain_uuid  = domain_uuid;
309                 netlogon->data.nt5_ex.forest       = forest_domain;
310                 netlogon->data.nt5_ex.dns_domain   = dns_domain;
311                 netlogon->data.nt5_ex.pdc_dns_name = pdc_dns_name;
312                 netlogon->data.nt5_ex.server_site  = server_site;
313                 netlogon->data.nt5_ex.client_site  = client_site;
314                 if (version & NETLOGON_NT_VERSION_5EX_WITH_IP) {
315                         /* note that this is always a IPV4 address */
316                         extra_flags = NETLOGON_NT_VERSION_5EX_WITH_IP;
317                         netlogon->data.nt5_ex.sockaddr.sockaddr_family    = 2;
318                         netlogon->data.nt5_ex.sockaddr.pdc_ip       = pdc_ip;
319                         netlogon->data.nt5_ex.sockaddr.remaining = data_blob_talloc_zero(mem_ctx, 8);
320                 }
321                 netlogon->data.nt5_ex.server_type  = server_type;
322                 netlogon->data.nt5_ex.nt_version   = NETLOGON_NT_VERSION_1|NETLOGON_NT_VERSION_5EX|extra_flags;
323                 netlogon->data.nt5_ex.lmnt_token   = 0xFFFF;
324                 netlogon->data.nt5_ex.lm20_token   = 0xFFFF;
325
326         } else if (version & NETLOGON_NT_VERSION_5) {
327                 netlogon->ntver = NETLOGON_NT_VERSION_5;
328
329                 /* could check if the user exists */
330                 if (user_known) {
331                         netlogon->data.nt5.command      = LOGON_SAM_LOGON_RESPONSE;
332                 } else {
333                         netlogon->data.nt5.command      = LOGON_SAM_LOGON_USER_UNKNOWN;
334                 }
335                 netlogon->data.nt5.pdc_name     = pdc_name;
336                 netlogon->data.nt5.user_name    = user;
337                 netlogon->data.nt5.domain_name  = flatname;
338                 netlogon->data.nt5.domain_uuid  = domain_uuid;
339                 netlogon->data.nt5.forest       = forest_domain;
340                 netlogon->data.nt5.dns_domain   = dns_domain;
341                 netlogon->data.nt5.pdc_dns_name = pdc_dns_name;
342                 netlogon->data.nt5.pdc_ip       = pdc_ip;
343                 netlogon->data.nt5.server_type  = server_type;
344                 netlogon->data.nt5.nt_version   = NETLOGON_NT_VERSION_1|NETLOGON_NT_VERSION_5;
345                 netlogon->data.nt5.lmnt_token   = 0xFFFF;
346                 netlogon->data.nt5.lm20_token   = 0xFFFF;
347
348         } else /* (version & NETLOGON_NT_VERSION_1) and all other cases */ {
349                 netlogon->ntver = NETLOGON_NT_VERSION_1;
350                 /* could check if the user exists */
351                 if (user_known) {
352                         netlogon->data.nt4.command      = LOGON_SAM_LOGON_RESPONSE;
353                 } else {
354                         netlogon->data.nt4.command      = LOGON_SAM_LOGON_USER_UNKNOWN;
355                 }
356                 netlogon->data.nt4.pdc_name    = pdc_name;
357                 netlogon->data.nt4.user_name   = user;
358                 netlogon->data.nt4.domain_name = flatname;
359                 netlogon->data.nt4.nt_version  = NETLOGON_NT_VERSION_1;
360                 netlogon->data.nt4.lmnt_token  = 0xFFFF;
361                 netlogon->data.nt4.lm20_token  = 0xFFFF;
362         }
363
364         return NT_STATUS_OK;
365 }
366
367
368 /*
369   handle incoming cldap requests
370 */
371 void cldapd_netlogon_request(struct cldap_socket *cldap,
372                              struct cldapd_server *cldapd,
373                              TALLOC_CTX *tmp_ctx,
374                              uint32_t message_id,
375                              struct ldb_parse_tree *tree,
376                              struct tsocket_address *src)
377 {
378         unsigned int i;
379         const char *domain = NULL;
380         const char *host = NULL;
381         const char *user = NULL;
382         const char *domain_guid = NULL;
383         struct dom_sid *domain_sid = NULL;
384         int acct_control = -1;
385         int version = -1;
386         struct netlogon_samlogon_response netlogon;
387         NTSTATUS status = NT_STATUS_INVALID_PARAMETER;
388
389         if (tree->operation != LDB_OP_AND) goto failed;
390
391         /* extract the query elements */
392         for (i=0;i<tree->u.list.num_elements;i++) {
393                 struct ldb_parse_tree *t = tree->u.list.elements[i];
394                 if (t->operation != LDB_OP_EQUALITY) goto failed;
395                 if (strcasecmp(t->u.equality.attr, "DnsDomain") == 0) {
396                         domain = talloc_strndup(tmp_ctx, 
397                                                 (const char *)t->u.equality.value.data,
398                                                 t->u.equality.value.length);
399                 }
400                 if (strcasecmp(t->u.equality.attr, "Host") == 0) {
401                         host = talloc_strndup(tmp_ctx, 
402                                               (const char *)t->u.equality.value.data,
403                                               t->u.equality.value.length);
404                 }
405                 if (strcasecmp(t->u.equality.attr, "DomainGuid") == 0) {
406                         NTSTATUS enc_status;
407                         struct GUID guid;
408                         enc_status = ldap_decode_ndr_GUID(tmp_ctx, 
409                                                           t->u.equality.value, &guid);
410                         if (NT_STATUS_IS_OK(enc_status)) {
411                                 domain_guid = GUID_string(tmp_ctx, &guid);
412                         }
413                 }
414                 if (strcasecmp(t->u.equality.attr, "DomainSid") == 0) {
415                         enum ndr_err_code ndr_err;
416
417                         domain_sid = talloc(tmp_ctx, struct dom_sid);
418                         if (domain_sid == NULL) {
419                                 goto failed;
420                         }
421                         ndr_err = ndr_pull_struct_blob(&t->u.equality.value,
422                                                        domain_sid, domain_sid,
423                                                        (ndr_pull_flags_fn_t)ndr_pull_dom_sid);
424                         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
425                                 talloc_free(domain_sid);
426                                 goto failed;
427                         }
428                 }
429                 if (strcasecmp(t->u.equality.attr, "User") == 0) {
430                         user = talloc_strndup(tmp_ctx, 
431                                               (const char *)t->u.equality.value.data,
432                                               t->u.equality.value.length);
433                 }
434                 if (strcasecmp(t->u.equality.attr, "NtVer") == 0 &&
435                     t->u.equality.value.length == 4) {
436                         version = IVAL(t->u.equality.value.data, 0);
437                 }
438                 if (strcasecmp(t->u.equality.attr, "AAC") == 0 &&
439                     t->u.equality.value.length == 4) {
440                         acct_control = IVAL(t->u.equality.value.data, 0);
441                 }
442         }
443
444         if ((domain == NULL) && (domain_guid == NULL) && (domain_sid == NULL)) {
445                 domain = lpcfg_dnsdomain(cldapd->task->lp_ctx);
446         }
447
448         if (version == -1) {
449                 goto failed;
450         }
451
452         DEBUG(5,("cldap netlogon query domain=%s host=%s user=%s version=%d guid=%s\n",
453                  domain, host, user, version, domain_guid));
454
455         status = fill_netlogon_samlogon_response(cldapd->samctx, tmp_ctx,
456                                                  domain, NULL, domain_sid,
457                                                  domain_guid,
458                                                  user, acct_control,
459                                                  tsocket_address_inet_addr_string(src, tmp_ctx),
460                                                  version, cldapd->task->lp_ctx,
461                                                  &netlogon, false);
462         if (!NT_STATUS_IS_OK(status)) {
463                 goto failed;
464         }
465
466         status = cldap_netlogon_reply(cldap, message_id, src, version, &netlogon);
467         if (!NT_STATUS_IS_OK(status)) {
468                 goto failed;
469         }
470
471         return;
472         
473 failed:
474         DEBUG(2,("cldap netlogon query failed domain=%s host=%s version=%d - %s\n",
475                  domain, host, version, nt_errstr(status)));
476         cldap_empty_reply(cldap, message_id, src);
477 }