2 Unix SMB/CIFS implementation.
4 Copyright Matthieu Patou <mat@matws.net> 2010-2011
5 Copyright Stefan Metzmacher 2011
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "librpc/gen_ndr/dfsblobs.h"
23 #include "librpc/gen_ndr/ndr_dfsblobs.h"
24 #include "dsdb/samdb/samdb.h"
25 #include "auth/session.h"
26 #include "param/param.h"
27 #include "lib/tsocket/tsocket.h"
28 #include "dfs_server/dfs_server_ad.h"
29 #include "lib/util/util_net.h"
30 #include "libds/common/roles.h"
32 #define MAX_DFS_RESPONSE 56*1024 /* 56 Kb */
36 /* A DC set is a group of DC, they might have been grouped together
37 because they belong to the same site, or to site with same cost ...
44 static void shuffle_dc_set(struct dc_set
*list
)
48 for (i
= list
->count
; i
> 1; i
--) {
52 r
= generate_random() % i
;
54 tmp
= list
->names
[i
- 1];
55 list
->names
[i
- 1] = list
->names
[r
];
61 fill a referral type structure
63 static NTSTATUS
fill_normal_dfs_referraltype(TALLOC_CTX
*mem_ctx
,
64 struct dfs_referral_type
*ref
,
67 const char *server_path
, int isfirstoffset
)
72 ref
->version
= version
;
73 /* For the moment there is a bug with XP that doesn't
74 * seem to appreciate much level4 so we return just
75 * level 3 for everyone
77 ref
->referral
.v4
.server_type
= DFS_SERVER_NON_ROOT
;
78 /* "normal" referral seems to always include the GUID */
79 ref
->referral
.v4
.size
= 34;
82 ref
->referral
.v4
.entry_flags
= DFS_HEADER_FLAG_TARGET_BCK
;
84 ref
->referral
.v4
.ttl
= 900; /* As w2k8r2 */
85 ref
->referral
.v4
.referrals
.r1
.DFS_path
= talloc_strdup(mem_ctx
, dfs_path
);
86 if (ref
->referral
.v4
.referrals
.r1
.DFS_path
== NULL
) {
87 return NT_STATUS_NO_MEMORY
;
89 ref
->referral
.v4
.referrals
.r1
.DFS_alt_path
= talloc_strdup(mem_ctx
, dfs_path
);
90 if (ref
->referral
.v4
.referrals
.r1
.DFS_alt_path
== NULL
) {
91 return NT_STATUS_NO_MEMORY
;
93 ref
->referral
.v4
.referrals
.r1
.netw_address
= talloc_strdup(mem_ctx
, server_path
);
94 if (ref
->referral
.v4
.referrals
.r1
.netw_address
== NULL
) {
95 return NT_STATUS_NO_MEMORY
;
99 ref
->version
= version
;
100 ref
->referral
.v3
.server_type
= DFS_SERVER_NON_ROOT
;
101 /* "normal" referral seems to always include the GUID */
102 ref
->referral
.v3
.size
= 34;
104 ref
->referral
.v3
.entry_flags
= 0;
105 ref
->referral
.v3
.ttl
= 600; /* As w2k3 */
106 ref
->referral
.v3
.referrals
.r1
.DFS_path
= talloc_strdup(mem_ctx
, dfs_path
);
107 if (ref
->referral
.v3
.referrals
.r1
.DFS_path
== NULL
) {
108 return NT_STATUS_NO_MEMORY
;
110 ref
->referral
.v3
.referrals
.r1
.DFS_alt_path
= talloc_strdup(mem_ctx
, dfs_path
);
111 if (ref
->referral
.v3
.referrals
.r1
.DFS_alt_path
== NULL
) {
112 return NT_STATUS_NO_MEMORY
;
114 ref
->referral
.v3
.referrals
.r1
.netw_address
= talloc_strdup(mem_ctx
, server_path
);
115 if (ref
->referral
.v3
.referrals
.r1
.netw_address
== NULL
) {
116 return NT_STATUS_NO_MEMORY
;
120 return NT_STATUS_INVALID_LEVEL
;
124 fill a domain refererral
126 static NTSTATUS
fill_domain_dfs_referraltype(TALLOC_CTX
*mem_ctx
,
127 struct dfs_referral_type
*ref
,
136 DEBUG(8, ("Called fill_domain_dfs_referraltype\n"));
137 ref
->version
= version
;
138 ref
->referral
.v3
.server_type
= DFS_SERVER_NON_ROOT
;
140 /* We use to have variable size, on Windows 2008R2 it's the same
141 * and it seems that it gives better results so ... let's use the same
144 * Additional note: XP SP2 will ask for version 3 and SP3 for version 4.
147 * It's hard coded ... don't think it's a good way but the
148 * sizeof return not the correct values
150 * We have 18 if the GUID is not included 34 otherwise
153 /* Windows return without the guid when returning domain list
155 ref
->referral
.v3
.size
= 18;
157 ref
->referral
.v3
.size
= 34;
160 /* As seen in w2k8r2 it always return the null GUID */
161 ref
->referral
.v3
.size
= 34;
162 ref
->referral
.v3
.entry_flags
= DFS_FLAG_REFERRAL_DOMAIN_RESP
;
163 ref
->referral
.v3
.ttl
= 600; /* As w2k3 and w2k8r2*/
164 ref
->referral
.v3
.referrals
.r2
.special_name
= talloc_strdup(mem_ctx
,
166 if (ref
->referral
.v3
.referrals
.r2
.special_name
== NULL
) {
167 return NT_STATUS_NO_MEMORY
;
169 ref
->referral
.v3
.referrals
.r2
.nb_expanded_names
= numnames
;
170 /* Put the final terminator */
173 const char **names2
= talloc_array(mem_ctx
, const char *,
175 NT_STATUS_HAVE_NO_MEMORY(names2
);
176 for (i
= 0; i
<numnames
; i
++) {
177 names2
[i
] = talloc_asprintf(names2
, "\\%s", names
[i
]);
178 NT_STATUS_HAVE_NO_MEMORY(names2
[i
]);
180 names2
[numnames
] = NULL
;
181 ref
->referral
.v3
.referrals
.r2
.expanded_names
= names2
;
185 return NT_STATUS_INVALID_LEVEL
;
189 get the DCs list within a site
191 static NTSTATUS
get_dcs_insite(TALLOC_CTX
*ctx
, struct ldb_context
*ldb
,
192 struct ldb_dn
*sitedn
, struct dc_set
*list
,
195 static const char *attrs
[] = { "serverReference", NULL
};
196 static const char *attrs2
[] = { "dNSHostName", "sAMAccountName", NULL
};
197 struct ldb_result
*r
;
200 const char **dc_list
;
202 ret
= ldb_search(ldb
, ctx
, &r
, sitedn
, LDB_SCOPE_SUBTREE
, attrs
,
203 "(&(objectClass=server)(serverReference=*))");
204 if (ret
!= LDB_SUCCESS
) {
205 DEBUG(2,(__location__
": Failed to get list of servers - %s\n",
206 ldb_errstring(ldb
)));
207 return NT_STATUS_INTERNAL_ERROR
;
211 /* none in this site */
217 * need to search for all server object to know the size of the array.
218 * Search all the object of class server in this site
220 dc_list
= talloc_array(r
, const char *, r
->count
);
221 if (dc_list
== NULL
) {
223 return NT_STATUS_NO_MEMORY
;
226 /* TODO put some random here in the order */
227 list
->names
= talloc_realloc(list
, list
->names
, const char *, list
->count
+ r
->count
);
228 if (list
->names
== NULL
) {
230 return NT_STATUS_NO_MEMORY
;
233 for (i
= 0; i
<r
->count
; i
++) {
235 struct ldb_message
*msg
;
237 dn
= ldb_msg_find_attr_as_dn(ldb
, ctx
, r
->msgs
[i
], "serverReference");
239 return NT_STATUS_INTERNAL_ERROR
;
242 ret
= dsdb_search_one(ldb
, r
, &msg
, dn
, LDB_SCOPE_BASE
, attrs2
, 0, "(objectClass=computer)");
243 if (ret
!= LDB_SUCCESS
) {
244 DEBUG(2,(__location__
": Search for computer on %s failed - %s\n",
245 ldb_dn_get_linearized(dn
), ldb_errstring(ldb
)));
246 return NT_STATUS_INTERNAL_ERROR
;
250 const char *dns
= ldb_msg_find_attr_as_string(msg
, "dNSHostName", NULL
);
252 DEBUG(2,(__location__
": dNSHostName missing on %s\n",
253 ldb_dn_get_linearized(dn
)));
255 return NT_STATUS_INTERNAL_ERROR
;
258 list
->names
[list
->count
] = talloc_strdup(list
->names
, dns
);
259 if (list
->names
[list
->count
] == NULL
) {
261 return NT_STATUS_NO_MEMORY
;
265 const char *aname
= ldb_msg_find_attr_as_string(msg
, "sAMAccountName", NULL
);
267 DEBUG(2,(__location__
": sAMAccountName missing on %s\n",
268 ldb_dn_get_linearized(dn
)));
270 return NT_STATUS_INTERNAL_ERROR
;
273 tmp
= talloc_strdup(list
->names
, aname
);
276 return NT_STATUS_NO_MEMORY
;
279 /* Netbios name is also the sAMAccountName for
280 computer but without the final $ */
281 tmp
[strlen(tmp
) - 1] = '\0';
282 list
->names
[list
->count
] = tmp
;
288 shuffle_dc_set(list
);
298 static NTSTATUS
get_dcs(TALLOC_CTX
*ctx
, struct ldb_context
*ldb
,
299 const char *searched_site
, bool need_fqdn
,
300 struct dc_set
***pset_list
, uint32_t flags
)
303 * Flags will be used later to indicate things like least-expensive
304 * or same-site options
306 const char *attrs_none
[] = { NULL
};
307 const char *attrs3
[] = { "name", NULL
};
308 struct ldb_dn
*configdn
, *sitedn
, *dn
, *sitescontainerdn
;
309 struct ldb_result
*r
;
310 struct dc_set
**set_list
= NULL
;
313 uint32_t current_pos
= 0;
317 *pset_list
= set_list
= NULL
;
319 subctx
= talloc_new(ctx
);
320 NT_STATUS_HAVE_NO_MEMORY(subctx
);
322 configdn
= ldb_get_config_basedn(ldb
);
324 /* Let's search for the Site container */
325 ret
= ldb_search(ldb
, subctx
, &r
, configdn
, LDB_SCOPE_SUBTREE
, attrs_none
,
326 "(objectClass=sitesContainer)");
327 if (ret
!= LDB_SUCCESS
) {
328 DEBUG(2,(__location__
": Failed to find sitesContainer within %s - %s\n",
329 ldb_dn_get_linearized(configdn
), ldb_errstring(ldb
)));
331 return NT_STATUS_INTERNAL_ERROR
;
334 DEBUG(2,(__location__
": Expected 1 sitesContainer - found %u within %s\n",
335 r
->count
, ldb_dn_get_linearized(configdn
)));
337 return NT_STATUS_INTERNAL_ERROR
;
340 sitescontainerdn
= talloc_steal(subctx
, r
->msgs
[0]->dn
);
344 * TODO: Here we should have a more subtle handling
345 * for the case "same-site"
347 ret
= ldb_search(ldb
, subctx
, &r
, sitescontainerdn
, LDB_SCOPE_SUBTREE
,
348 attrs_none
, "(objectClass=server)");
349 if (ret
!= LDB_SUCCESS
) {
350 DEBUG(2,(__location__
": Failed to find servers within %s - %s\n",
351 ldb_dn_get_linearized(sitescontainerdn
), ldb_errstring(ldb
)));
353 return NT_STATUS_INTERNAL_ERROR
;
357 if (searched_site
!= NULL
&& searched_site
[0] != '\0') {
358 ret
= ldb_search(ldb
, subctx
, &r
, configdn
, LDB_SCOPE_SUBTREE
,
359 attrs_none
, "(&(name=%s)(objectClass=site))", searched_site
);
360 if (ret
!= LDB_SUCCESS
) {
362 return NT_STATUS_FOOBAR
;
363 } else if (r
->count
!= 1) {
365 return NT_STATUS_FOOBAR
;
368 /* All of this was to get the DN of the searched_site */
369 sitedn
= r
->msgs
[0]->dn
;
372 * We will realloc + 2 because we will need one additional place
373 * for element at current_pos + 1 for the NULL element
375 set_list
= talloc_realloc(subctx
, set_list
, struct dc_set
*, current_pos
+2);
376 if (set_list
== NULL
) {
378 return NT_STATUS_NO_MEMORY
;
381 set_list
[current_pos
] = talloc(set_list
, struct dc_set
);
382 if (set_list
[current_pos
] == NULL
) {
384 return NT_STATUS_NO_MEMORY
;
387 set_list
[current_pos
]->names
= NULL
;
388 set_list
[current_pos
]->count
= 0;
390 set_list
[current_pos
+1] = NULL
;
392 status
= get_dcs_insite(subctx
, ldb
, sitedn
,
393 set_list
[current_pos
], need_fqdn
);
394 if (!NT_STATUS_IS_OK(status
)) {
395 DEBUG(2,(__location__
": Failed to get DC from site %s - %s\n",
396 ldb_dn_get_linearized(sitedn
), nt_errstr(status
)));
404 /* Let's find all the sites */
405 ret
= ldb_search(ldb
, subctx
, &r
, configdn
, LDB_SCOPE_SUBTREE
, attrs3
, "(objectClass=site)");
406 if (ret
!= LDB_SUCCESS
) {
407 DEBUG(2,(__location__
": Failed to find any site containers in %s\n",
408 ldb_dn_get_linearized(configdn
)));
410 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
415 * We should randomize the order in the main site,
416 * it's mostly needed for sysvol/netlogon referral.
417 * Depending of flag we either randomize order of the
418 * not "in the same site DCs"
419 * or we randomize by group of site that have the same cost
420 * In the long run we want to manipulate an array of site_set
421 * All the site in one set have the same cost (if least-expansive options is selected)
422 * and we will put all the dc related to 1 site set into 1 DCs set.
423 * Within a site set, site order has to be randomized
425 * But for the moment we just return the list of sites
429 * We will realloc + 2 because we will need one additional place
430 * for element at current_pos + 1 for the NULL element
432 set_list
= talloc_realloc(subctx
, set_list
, struct dc_set
*,
434 if (set_list
== NULL
) {
436 return NT_STATUS_NO_MEMORY
;
439 set_list
[current_pos
] = talloc(ctx
, struct dc_set
);
440 if (set_list
[current_pos
] == NULL
) {
442 return NT_STATUS_NO_MEMORY
;
445 set_list
[current_pos
]->names
= NULL
;
446 set_list
[current_pos
]->count
= 0;
448 set_list
[current_pos
+1] = NULL
;
451 for (i
=0; i
<r
->count
; i
++) {
452 const char *site_name
= ldb_msg_find_attr_as_string(r
->msgs
[i
], "name", NULL
);
453 if (site_name
== NULL
) {
454 DEBUG(2,(__location__
": Failed to find name attribute in %s\n",
455 ldb_dn_get_linearized(r
->msgs
[i
]->dn
)));
457 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
460 if (searched_site
== NULL
||
461 strcmp(searched_site
, site_name
) != 0) {
462 DEBUG(2,(__location__
": Site: %s %s\n",
463 searched_site
, site_name
));
466 * Do all the site but the one of the client
467 * (because it has already been done ...)
471 status
= get_dcs_insite(subctx
, ldb
, dn
,
472 set_list
[current_pos
],
474 if (!NT_STATUS_IS_OK(status
)) {
481 *pset_list
= talloc_move(ctx
, &set_list
);
486 static NTSTATUS
dodomain_referral(struct loadparm_context
*lp_ctx
,
487 struct ldb_context
*sam_ctx
,
488 const struct tsocket_address
*client
,
489 struct dfs_GetDFSReferral
*r
)
492 * TODO for the moment we just return the local domain
495 const char *dns_domain
= lpcfg_dnsdomain(lp_ctx
);
496 const char *netbios_domain
= lpcfg_workgroup(lp_ctx
);
497 struct dfs_referral_type
*referrals
;
498 const char *referral_str
;
499 /* In the future this needs to be fetched from the ldb */
500 uint32_t found_domain
= 2;
502 if (lpcfg_server_role(lp_ctx
) != ROLE_ACTIVE_DIRECTORY_DC
) {
503 DEBUG(10 ,("Received a domain referral request on a non DC\n"));
504 return NT_STATUS_INVALID_PARAMETER
;
507 if (r
->in
.req
.max_referral_level
< 3) {
508 DEBUG(2,("invalid max_referral_level %u\n",
509 r
->in
.req
.max_referral_level
));
510 return NT_STATUS_UNSUCCESSFUL
;
513 r
->out
.resp
= talloc_zero(r
, struct dfs_referral_resp
);
514 if (r
->out
.resp
== NULL
) {
515 return NT_STATUS_NO_MEMORY
;
518 r
->out
.resp
->path_consumed
= 0;
519 r
->out
.resp
->header_flags
= 0; /* Do like w2k3 */
520 r
->out
.resp
->nb_referrals
= found_domain
; /* the fqdn one + the NT domain */
522 referrals
= talloc_zero_array(r
->out
.resp
,
523 struct dfs_referral_type
,
524 r
->out
.resp
->nb_referrals
);
525 if (referrals
== NULL
) {
526 return NT_STATUS_NO_MEMORY
;
528 r
->out
.resp
->referral_entries
= referrals
;
530 referral_str
= talloc_asprintf(r
, "\\%s", netbios_domain
);
531 if (referral_str
== NULL
) {
532 return NT_STATUS_NO_MEMORY
;
535 status
= fill_domain_dfs_referraltype(referrals
,
539 if (!NT_STATUS_IS_OK(status
)) {
540 DEBUG(2,("%s: Unable to fill domain referral structure - %s\n",
541 __location__
, nt_errstr(status
)));
545 referral_str
= talloc_asprintf(r
, "\\%s", dns_domain
);
546 if (referral_str
== NULL
) {
547 return NT_STATUS_NO_MEMORY
;
550 status
= fill_domain_dfs_referraltype(referrals
,
554 if (!NT_STATUS_IS_OK(status
)) {
555 DEBUG(2,("%s: Unable to fill domain referral structure - %s\n",
556 __location__
, nt_errstr(status
)));
564 * Handle the logic for dfs referral request like
565 * \\dns_domain or \\netbios_domain.
567 static NTSTATUS
dodc_referral(struct loadparm_context
*lp_ctx
,
568 struct ldb_context
*sam_ctx
,
569 const struct tsocket_address
*client
,
570 struct dfs_GetDFSReferral
*r
,
571 const char *domain_name
)
574 const char *site_name
= NULL
; /* Name of the site where the client is */
575 bool need_fqdn
= false;
577 const char **dc_list
= NULL
;
578 uint32_t num_dcs
= 0;
580 char *client_str
= NULL
;
581 struct dfs_referral_type
*referrals
;
582 const char *referral_str
;
584 if (lpcfg_server_role(lp_ctx
) != ROLE_ACTIVE_DIRECTORY_DC
) {
585 return NT_STATUS_INVALID_PARAMETER
;
588 if (r
->in
.req
.max_referral_level
< 3) {
589 DEBUG(2,("invalid max_referral_level %u\n",
590 r
->in
.req
.max_referral_level
));
591 return NT_STATUS_UNSUCCESSFUL
;
594 DEBUG(10, ("in this we have request for %s requested is %s\n",
595 domain_name
, r
->in
.req
.servername
));
597 if (strchr(domain_name
,'.')) {
601 if (tsocket_address_is_inet(client
, "ip")) {
602 client_str
= tsocket_address_inet_addr_string(client
, r
);
603 if (client_str
== NULL
) {
604 return NT_STATUS_NO_MEMORY
;
608 site_name
= samdb_client_site_name(sam_ctx
, r
, client_str
, NULL
, true);
610 status
= get_dcs(r
, sam_ctx
, site_name
, need_fqdn
, &set
, 0);
611 if (!NT_STATUS_IS_OK(status
)) {
612 DEBUG(3,("Unable to get list of DCs - %s\n",
617 for(i
=0; set
[i
]; i
++) {
620 dc_list
= talloc_realloc(r
, dc_list
, const char*,
621 num_dcs
+ set
[i
]->count
+ 1);
622 if (dc_list
== NULL
) {
623 return NT_STATUS_NO_MEMORY
;
626 for(j
=0; j
<set
[i
]->count
; j
++) {
627 dc_list
[num_dcs
+ j
] = talloc_move(dc_list
,
630 num_dcs
= num_dcs
+ set
[i
]->count
;
632 dc_list
[num_dcs
] = NULL
;
635 r
->out
.resp
= talloc_zero(r
, struct dfs_referral_resp
);
636 if (r
->out
.resp
== NULL
) {
637 return NT_STATUS_NO_MEMORY
;
640 r
->out
.resp
->path_consumed
= 0;
641 r
->out
.resp
->header_flags
= 0; /* Do like w2k3 */
642 r
->out
.resp
->nb_referrals
= 1;
644 referrals
= talloc_zero_array(r
->out
.resp
,
645 struct dfs_referral_type
,
646 r
->out
.resp
->nb_referrals
);
647 if (referrals
== NULL
) {
648 return NT_STATUS_NO_MEMORY
;
650 r
->out
.resp
->referral_entries
= referrals
;
652 if (r
->in
.req
.servername
[0] == '\\') {
653 referral_str
= talloc_asprintf(referrals
, "%s",
656 referral_str
= talloc_asprintf(referrals
, "\\%s",
659 if (referral_str
== NULL
) {
660 return NT_STATUS_NO_MEMORY
;
663 status
= fill_domain_dfs_referraltype(referrals
,
667 if (!NT_STATUS_IS_OK(status
)) {
668 DEBUG(2,("%s: Unable to fill domain referral structure - %s\n",
669 __location__
, nt_errstr(status
)));
677 * Handle the logic for dfs referral request like
678 * \\domain\sysvol or \\domain\netlogon
680 static NTSTATUS
dosysvol_referral(struct loadparm_context
*lp_ctx
,
681 struct ldb_context
*sam_ctx
,
682 const struct tsocket_address
*client
,
683 struct dfs_GetDFSReferral
*r
,
684 const char *domain_name
,
685 const char *dfs_name
)
687 const char *site_name
= NULL
; /* Name of the site where the client is */
688 bool need_fqdn
= false;
689 unsigned int i
, c
= 0, nb_entries
= 0;
691 char *client_str
= NULL
;
693 struct dfs_referral_type
*referrals
;
695 if (lpcfg_server_role(lp_ctx
) != ROLE_ACTIVE_DIRECTORY_DC
) {
696 return NT_STATUS_INVALID_PARAMETER
;
699 if (r
->in
.req
.max_referral_level
< 3) {
700 DEBUG(2,("invalid max_referral_level %u\n",
701 r
->in
.req
.max_referral_level
));
702 return NT_STATUS_UNSUCCESSFUL
;
705 DEBUG(10, ("in this we have request for %s and share %s requested is %s\n",
706 domain_name
, dfs_name
, r
->in
.req
.servername
));
708 if (strchr(domain_name
,'.')) {
712 if (tsocket_address_is_inet(client
, "ip")) {
713 client_str
= tsocket_address_inet_addr_string(client
, r
);
714 if (client_str
== NULL
) {
715 return NT_STATUS_NO_MEMORY
;
719 site_name
= samdb_client_site_name(sam_ctx
, r
, client_str
, NULL
, true);
721 status
= get_dcs(r
, sam_ctx
, site_name
, need_fqdn
, &set
, 0);
722 if (!NT_STATUS_IS_OK(status
)) {
723 DEBUG(3,("Unable to get list of DCs - %s\n",
728 for(i
=0; set
[i
]; i
++) {
729 nb_entries
= nb_entries
+ set
[i
]->count
;
732 r
->out
.resp
= talloc_zero(r
, struct dfs_referral_resp
);
733 if (r
->out
.resp
== NULL
) {
734 return NT_STATUS_NO_MEMORY
;
737 /* The length is expected in bytes */
738 r
->out
.resp
->path_consumed
= strlen_m(r
->in
.req
.servername
) * 2;
739 /* Do like w2k3 and like in 3.3.5.3 of MS-DFSC*/
740 r
->out
.resp
->header_flags
= DFS_HEADER_FLAG_STORAGE_SVR
;
741 r
->out
.resp
->nb_referrals
= nb_entries
;
743 referrals
= talloc_zero_array(r
->out
.resp
,
744 struct dfs_referral_type
,
745 r
->out
.resp
->nb_referrals
);
746 if (referrals
== NULL
) {
747 return NT_STATUS_NO_MEMORY
;
749 r
->out
.resp
->referral_entries
= referrals
;
752 for(i
=0; set
[i
]; i
++) {
755 for(j
=0; j
< set
[i
]->count
; j
++) {
756 struct dfs_referral_type
*ref
= &referrals
[c
];
757 const char *referral_str
;
759 referral_str
= talloc_asprintf(referrals
, "\\%s\\%s",
760 set
[i
]->names
[j
], dfs_name
);
761 if (referral_str
== NULL
) {
762 return NT_STATUS_NO_MEMORY
;
765 DEBUG(8,("Doing a dfs referral for %s with this value "
767 set
[i
]->names
[j
], referral_str
,
768 r
->in
.req
.servername
));
770 status
= fill_normal_dfs_referraltype(referrals
, ref
,
771 r
->in
.req
.max_referral_level
,
772 r
->in
.req
.servername
,
776 if (!NT_STATUS_IS_OK(status
)) {
777 DEBUG(2,("%s: Unable to fill domain referral "
779 __location__
, nt_errstr(status
)));
791 trans2 getdfsreferral implementation
793 NTSTATUS
dfs_server_ad_get_referrals(struct loadparm_context
*lp_ctx
,
794 struct ldb_context
*sam_ctx
,
795 const struct tsocket_address
*client
,
796 struct dfs_GetDFSReferral
*r
)
798 char *server_name
= NULL
;
799 char *dfs_name
= NULL
;
800 char *link_path
= NULL
;
801 const char *netbios_domain
;
802 const char *dns_domain
;
803 const char *netbios_name
;
804 const char *dns_name
;
805 const char **netbios_aliases
;
808 if (!lpcfg_host_msdfs(lp_ctx
)) {
809 return NT_STATUS_FS_DRIVER_REQUIRED
;
812 if (r
->in
.req
.servername
== NULL
) {
813 return NT_STATUS_INVALID_PARAMETER
;
816 DEBUG(8, ("Requested DFS name: %s length: %u\n",
817 r
->in
.req
.servername
,
818 (unsigned int)strlen_m(r
->in
.req
.servername
)*2));
821 * If the servername is "" then we are in a case of domain dfs
822 * and the client just searches for the list of local domain
823 * it is attached and also trusted ones.
825 if (strlen(r
->in
.req
.servername
) == 0) {
826 return dodomain_referral(lp_ctx
, sam_ctx
, client
, r
);
829 server_name
= talloc_strdup(r
, r
->in
.req
.servername
);
830 if (server_name
== NULL
) {
831 return NT_STATUS_NO_MEMORY
;
834 path_separator
= (*server_name
== '/') ? '/' : '\\';
836 while(*server_name
&& *server_name
== path_separator
) {
840 dfs_name
= strchr_m(server_name
, path_separator
);
841 if (dfs_name
!= NULL
) {
845 link_path
= strchr_m(dfs_name
, path_separator
);
846 if (link_path
!= NULL
) {
852 if (link_path
!= NULL
) {
854 * If it is a DFS Link we do not
857 return NT_STATUS_NOT_FOUND
;
860 netbios_domain
= lpcfg_workgroup(lp_ctx
);
861 dns_domain
= lpcfg_dnsdomain(lp_ctx
);
862 netbios_name
= lpcfg_netbios_name(lp_ctx
);
863 dns_name
= talloc_asprintf(r
, "%s.%s", netbios_name
, dns_domain
);
864 if (dns_name
== NULL
) {
865 return NT_STATUS_NO_MEMORY
;
868 if ((strcasecmp_m(server_name
, netbios_name
) == 0) ||
869 (strcasecmp_m(server_name
, dns_name
) == 0)) {
871 * If it is not domain related do not
874 return NT_STATUS_NOT_FOUND
;
877 if (is_ipaddress(server_name
)) {
879 * If it is not domain related do not
882 return NT_STATUS_NOT_FOUND
;
885 netbios_aliases
= lpcfg_netbios_aliases(lp_ctx
);
886 while (netbios_aliases
&& *netbios_aliases
) {
887 const char *netbios_alias
= *netbios_aliases
;
891 cmp
= strcasecmp_m(server_name
, netbios_alias
);
894 * If it is not domain related do not
897 return NT_STATUS_NOT_FOUND
;
900 dns_alias
= talloc_asprintf(r
, "%s.%s",
903 if (dns_alias
== NULL
) {
904 return NT_STATUS_NO_MEMORY
;
907 cmp
= strcasecmp_m(server_name
, dns_alias
);
908 talloc_free(dns_alias
);
911 * If it is not domain related do not
914 return NT_STATUS_NOT_FOUND
;
919 if ((strcasecmp_m(server_name
, netbios_domain
) != 0) &&
920 (strcasecmp_m(server_name
, dns_domain
) != 0)) {
922 * Not a domain we handle.
924 return NT_STATUS_INVALID_PARAMETER
;
928 * Here we have filtered the thing the requested name don't contain our DNS name.
929 * So if the share == NULL or if share in ("sysvol", "netlogon")
930 * then we proceed. In the first case it will be a dc refereal in the second it will
931 * be just a sysvol/netlogon referral.
933 if (dfs_name
== NULL
) {
934 return dodc_referral(lp_ctx
, sam_ctx
,
935 client
, r
, server_name
);
939 * Here we have filtered the thing the requested name don't contain our DNS name.
940 * So if the share == NULL or if share in ("sysvol", "netlogon")
941 * then we proceed. In the first case it will be a dc refereal in the second it will
942 * be just a sysvol/netlogon referral.
944 if (strcasecmp(dfs_name
, "sysvol") == 0 ||
945 strcasecmp(dfs_name
, "netlogon") == 0) {
946 return dosysvol_referral(lp_ctx
, sam_ctx
, client
, r
,
947 server_name
, dfs_name
);
950 /* By default until all the case are handled */
951 return NT_STATUS_NOT_FOUND
;