Revert "s3/service: convert lp_force_group() to const"
[Samba.git] / source3 / winbindd / winbindd_misc.c
blob46273a99a1a5ad285e4564721c0df999c0d5af8c
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind daemon - miscellaneous other functions
6 Copyright (C) Tim Potter 2000
7 Copyright (C) Andrew Bartlett 2002
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.
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.
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/>.
23 #include "includes.h"
24 #include "winbindd.h"
25 #include "libcli/security/dom_sid.h"
27 #undef DBGC_CLASS
28 #define DBGC_CLASS DBGC_WINBIND
30 static char *get_trust_type_string(TALLOC_CTX *mem_ctx,
31 struct winbindd_tdc_domain *tdc,
32 struct winbindd_domain *domain)
34 enum netr_SchannelType secure_channel_type = SEC_CHAN_NULL;
35 char *s = NULL;
37 if (domain != NULL) {
38 secure_channel_type = domain->secure_channel_type;
41 switch (secure_channel_type) {
42 case SEC_CHAN_NULL: {
43 if (domain == NULL) {
44 DBG_ERR("Missing domain [%s]\n",
45 tdc->domain_name);
46 return NULL;
48 if (domain->routing_domain == NULL) {
49 DBG_ERR("Missing routing for domain [%s]\n",
50 tdc->domain_name);
51 return NULL;
53 s = talloc_asprintf(mem_ctx, "Routed (via %s)",
54 domain->routing_domain->name);
55 if (s == NULL) {
56 return NULL;
58 break;
61 case SEC_CHAN_LOCAL:
62 s = talloc_strdup(mem_ctx, "Local");
63 if (s == NULL) {
64 return NULL;
66 break;
68 case SEC_CHAN_WKSTA:
69 s = talloc_strdup(mem_ctx, "Workstation");
70 if (s == NULL) {
71 return NULL;
73 break;
75 case SEC_CHAN_BDC: {
76 int role = lp_server_role();
78 if (role == ROLE_DOMAIN_PDC) {
79 s = talloc_strdup(mem_ctx, "PDC");
80 if (s == NULL) {
81 return NULL;
83 break;
86 if (role == ROLE_DOMAIN_BDC) {
87 s = talloc_strdup(mem_ctx, "BDC");
88 if (s == NULL) {
89 return NULL;
91 break;
94 s = talloc_strdup(mem_ctx, "RWDC");
95 if (s == NULL) {
96 return NULL;
98 break;
101 case SEC_CHAN_RODC:
102 s = talloc_strdup(mem_ctx, "RODC");
103 if (s == NULL) {
104 return NULL;
106 break;
108 case SEC_CHAN_DNS_DOMAIN:
109 if (tdc->trust_attribs & LSA_TRUST_ATTRIBUTE_QUARANTINED_DOMAIN) {
110 s = talloc_strdup(mem_ctx, "External");
111 if (s == NULL) {
112 return NULL;
114 break;
116 if (tdc->trust_attribs & LSA_TRUST_ATTRIBUTE_WITHIN_FOREST) {
117 s = talloc_strdup(mem_ctx, "In Forest");
118 if (s == NULL) {
119 return NULL;
121 break;
123 if (tdc->trust_attribs & LSA_TRUST_ATTRIBUTE_TREAT_AS_EXTERNAL) {
124 s = talloc_strdup(mem_ctx, "External");
125 if (s == NULL) {
126 return NULL;
128 break;
130 if (tdc->trust_attribs & LSA_TRUST_ATTRIBUTE_FOREST_TRANSITIVE) {
131 s = talloc_strdup(mem_ctx, "Forest");
132 if (s == NULL) {
133 return NULL;
135 break;
137 s = talloc_strdup(mem_ctx, "External");
138 if (s == NULL) {
139 return NULL;
141 break;
143 case SEC_CHAN_DOMAIN:
144 s = talloc_strdup(mem_ctx, "External");
145 if (s == NULL) {
146 return NULL;
148 break;
150 default:
151 DBG_ERR("Unhandled secure_channel_type %d for domain[%s]\n",
152 secure_channel_type, tdc->domain_name);
153 return NULL;
156 return s;
159 static bool trust_is_inbound(struct winbindd_tdc_domain *domain)
161 if (domain->trust_flags & NETR_TRUST_FLAG_INBOUND) {
162 return true;
164 return false;
167 static bool trust_is_outbound(struct winbindd_tdc_domain *domain)
169 if (domain->trust_flags & NETR_TRUST_FLAG_OUTBOUND) {
170 return true;
172 return false;
175 static bool trust_is_transitive(struct winbindd_tdc_domain *domain)
177 bool transitive = false;
180 * Beware: order matters
183 if (domain->trust_attribs & LSA_TRUST_ATTRIBUTE_WITHIN_FOREST) {
184 transitive = true;
187 if (domain->trust_attribs & LSA_TRUST_ATTRIBUTE_FOREST_TRANSITIVE) {
188 transitive = true;
191 if (domain->trust_attribs & LSA_TRUST_ATTRIBUTE_NON_TRANSITIVE) {
192 transitive = false;
195 if (domain->trust_attribs & LSA_TRUST_ATTRIBUTE_QUARANTINED_DOMAIN) {
196 transitive = false;
199 if (domain->trust_flags & NETR_TRUST_FLAG_PRIMARY) {
200 transitive = true;
203 return transitive;
206 bool winbindd_list_trusted_domains(struct winbindd_cli_state *state)
208 struct winbindd_tdc_domain *dom_list = NULL;
209 size_t num_domains = 0;
210 int extra_data_len = 0;
211 char *extra_data = NULL;
212 int i = 0;
213 bool ret = false;
215 DEBUG(3, ("[%5lu]: list trusted domains\n",
216 (unsigned long)state->pid));
218 if( !wcache_tdc_fetch_list( &dom_list, &num_domains )) {
219 goto done;
222 extra_data = talloc_strdup(state->mem_ctx, "");
223 if (extra_data == NULL) {
224 goto done;
227 for ( i = 0; i < num_domains; i++ ) {
228 struct winbindd_domain *domain;
229 bool is_online = true;
230 struct winbindd_tdc_domain *d = NULL;
231 char *trust_type = NULL;
233 d = &dom_list[i];
234 domain = find_domain_from_name_noinit(d->domain_name);
235 if (domain) {
236 is_online = domain->online;
239 trust_type = get_trust_type_string(talloc_tos(), d, domain);
240 if (trust_type == NULL) {
241 continue;
244 extra_data = talloc_asprintf_append_buffer(
245 extra_data,
246 "%s\\%s\\%s\\%s\\%s\\%s\\%s\\%s\n",
247 d->domain_name,
248 d->dns_name ? d->dns_name : "",
249 sid_string_talloc(state->mem_ctx, &d->sid),
250 trust_type,
251 trust_is_transitive(d) ? "Yes" : "No",
252 trust_is_inbound(d) ? "Yes" : "No",
253 trust_is_outbound(d) ? "Yes" : "No",
254 is_online ? "Online" : "Offline" );
256 TALLOC_FREE(trust_type);
259 state->response->data.num_entries = num_domains;
261 extra_data_len = strlen(extra_data);
262 if (extra_data_len > 0) {
264 /* Strip the last \n */
265 extra_data[extra_data_len-1] = '\0';
267 state->response->extra_data.data = extra_data;
268 state->response->length += extra_data_len;
271 ret = true;
272 done:
273 TALLOC_FREE( dom_list );
274 return ret;
277 enum winbindd_result winbindd_dual_list_trusted_domains(struct winbindd_domain *domain,
278 struct winbindd_cli_state *state)
280 int i;
281 int extra_data_len = 0;
282 char *extra_data;
283 NTSTATUS result;
284 bool have_own_domain = False;
285 struct netr_DomainTrustList trusts;
287 DEBUG(3, ("[%5lu]: list trusted domains\n",
288 (unsigned long)state->pid));
290 result = wb_cache_trusted_domains(domain, state->mem_ctx, &trusts);
292 if (!NT_STATUS_IS_OK(result)) {
293 DEBUG(3, ("winbindd_dual_list_trusted_domains: trusted_domains returned %s\n",
294 nt_errstr(result) ));
295 return WINBINDD_ERROR;
298 extra_data = talloc_strdup(state->mem_ctx, "");
300 for (i=0; i<trusts.count; i++) {
302 if (trusts.array[i].sid == NULL) {
303 continue;
305 if (dom_sid_equal(trusts.array[i].sid, &global_sid_NULL)) {
306 continue;
309 extra_data = talloc_asprintf_append_buffer(
310 extra_data, "%s\\%s\\%s\\%u\\%u\\%u\n",
311 trusts.array[i].netbios_name, trusts.array[i].dns_name,
312 sid_string_talloc(state->mem_ctx, trusts.array[i].sid),
313 trusts.array[i].trust_flags,
314 (uint32_t)trusts.array[i].trust_type,
315 trusts.array[i].trust_attributes);
318 /* add our primary domain */
320 for (i=0; i<trusts.count; i++) {
321 if (strequal(trusts.array[i].netbios_name, domain->name)) {
322 have_own_domain = True;
323 break;
327 if (state->request->data.list_all_domains && !have_own_domain) {
328 extra_data = talloc_asprintf_append_buffer(
329 extra_data, "%s\\%s\\%s\n", domain->name,
330 domain->alt_name != NULL ?
331 domain->alt_name :
332 domain->name,
333 sid_string_talloc(state->mem_ctx, &domain->sid));
336 extra_data_len = strlen(extra_data);
337 if (extra_data_len > 0) {
339 /* Strip the last \n */
340 extra_data[extra_data_len-1] = '\0';
342 state->response->extra_data.data = extra_data;
343 state->response->length += extra_data_len;
346 return WINBINDD_OK;
349 bool winbindd_dc_info(struct winbindd_cli_state *cli)
351 struct winbindd_domain *domain;
352 char *dc_name, *dc_ip;
354 cli->request->domain_name[sizeof(cli->request->domain_name)-1] = '\0';
356 DEBUG(3, ("[%5lu]: domain_info [%s]\n", (unsigned long)cli->pid,
357 cli->request->domain_name));
359 if (cli->request->domain_name[0] != '\0') {
360 domain = find_trust_from_name_noinit(
361 cli->request->domain_name);
362 if (domain == NULL) {
363 DEBUG(10, ("Could not find domain %s\n",
364 cli->request->domain_name));
365 return false;
367 } else {
368 domain = find_our_domain();
371 if (!fetch_current_dc_from_gencache(
372 talloc_tos(), domain->name, &dc_name, &dc_ip)) {
373 DEBUG(10, ("fetch_current_dc_from_gencache(%s) failed\n",
374 domain->name));
375 return false;
378 cli->response->data.num_entries = 1;
379 cli->response->extra_data.data = talloc_asprintf(
380 cli->mem_ctx, "%s\n%s\n", dc_name, dc_ip);
382 TALLOC_FREE(dc_name);
383 TALLOC_FREE(dc_ip);
385 if (cli->response->extra_data.data == NULL) {
386 return false;
389 /* must add one to length to copy the 0 for string termination */
390 cli->response->length +=
391 strlen((char *)cli->response->extra_data.data) + 1;
393 return true;
396 bool winbindd_ping(struct winbindd_cli_state *state)
398 DEBUG(3, ("[%5lu]: ping\n", (unsigned long)state->pid));
399 return true;
402 /* List various tidbits of information */
404 bool winbindd_info(struct winbindd_cli_state *state)
407 DEBUG(3, ("[%5lu]: request misc info\n", (unsigned long)state->pid));
409 state->response->data.info.winbind_separator = *lp_winbind_separator();
410 fstrcpy(state->response->data.info.samba_version, samba_version_string());
411 return true;
414 /* Tell the client the current interface version */
416 bool winbindd_interface_version(struct winbindd_cli_state *state)
418 DEBUG(3, ("[%5lu]: request interface version (version = %d)\n",
419 (unsigned long)state->pid, WINBIND_INTERFACE_VERSION));
421 state->response->data.interface_version = WINBIND_INTERFACE_VERSION;
422 return true;
425 /* What domain are we a member of? */
427 bool winbindd_domain_name(struct winbindd_cli_state *state)
429 DEBUG(3, ("[%5lu]: request domain name\n", (unsigned long)state->pid));
431 fstrcpy(state->response->data.domain_name, lp_workgroup());
432 return true;
435 /* What's my name again? */
437 bool winbindd_netbios_name(struct winbindd_cli_state *state)
439 DEBUG(3, ("[%5lu]: request netbios name\n",
440 (unsigned long)state->pid));
442 fstrcpy(state->response->data.netbios_name, lp_netbios_name());
443 return true;
446 /* Where can I find the privileged pipe? */
448 bool winbindd_priv_pipe_dir(struct winbindd_cli_state *state)
450 char *priv_dir;
451 DEBUG(3, ("[%5lu]: request location of privileged pipe\n",
452 (unsigned long)state->pid));
454 priv_dir = get_winbind_priv_pipe_dir();
455 state->response->extra_data.data = talloc_move(state->mem_ctx,
456 &priv_dir);
458 /* must add one to length to copy the 0 for string termination */
459 state->response->length +=
460 strlen((char *)state->response->extra_data.data) + 1;
462 return true;