tevent: add tevent_req_defer_callback()
[Samba/gebeck_regimport.git] / source3 / lib / netapi / getdc.c
blobe753deacb09cfa0319404a3ba1218ed30f9a4f83
1 /*
2 * Unix SMB/CIFS implementation.
3 * NetApi GetDC Support
4 * Copyright (C) Guenther Deschner 2007
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
22 #include "../librpc/gen_ndr/ndr_netlogon_c.h"
23 #include "librpc/gen_ndr/libnetapi.h"
24 #include "lib/netapi/netapi.h"
25 #include "lib/netapi/netapi_private.h"
26 #include "lib/netapi/libnetapi.h"
28 /********************************************************************
29 ********************************************************************/
31 WERROR NetGetDCName_l(struct libnetapi_ctx *ctx,
32 struct NetGetDCName *r)
34 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetGetDCName);
37 /********************************************************************
38 ********************************************************************/
40 WERROR NetGetDCName_r(struct libnetapi_ctx *ctx,
41 struct NetGetDCName *r)
43 NTSTATUS status;
44 WERROR werr;
45 struct dcerpc_binding_handle *b;
47 werr = libnetapi_get_binding_handle(ctx, r->in.server_name,
48 &ndr_table_netlogon.syntax_id,
49 &b);
50 if (!W_ERROR_IS_OK(werr)) {
51 goto done;
54 status = dcerpc_netr_GetDcName(b, talloc_tos(),
55 r->in.server_name,
56 r->in.domain_name,
57 (const char **)r->out.buffer,
58 &werr);
60 if (!NT_STATUS_IS_OK(status)) {
61 werr = ntstatus_to_werror(status);
63 done:
65 return werr;
68 /********************************************************************
69 ********************************************************************/
71 WERROR NetGetAnyDCName_l(struct libnetapi_ctx *ctx,
72 struct NetGetAnyDCName *r)
74 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetGetAnyDCName);
77 /********************************************************************
78 ********************************************************************/
80 WERROR NetGetAnyDCName_r(struct libnetapi_ctx *ctx,
81 struct NetGetAnyDCName *r)
83 NTSTATUS status;
84 WERROR werr;
85 struct dcerpc_binding_handle *b;
87 werr = libnetapi_get_binding_handle(ctx, r->in.server_name,
88 &ndr_table_netlogon.syntax_id,
89 &b);
90 if (!W_ERROR_IS_OK(werr)) {
91 goto done;
94 status = dcerpc_netr_GetAnyDCName(b, talloc_tos(),
95 r->in.server_name,
96 r->in.domain_name,
97 (const char **)r->out.buffer,
98 &werr);
99 if (!NT_STATUS_IS_OK(status)) {
100 werr = ntstatus_to_werror(status);
101 goto done;
103 done:
105 return werr;
109 /********************************************************************
110 ********************************************************************/
112 WERROR DsGetDcName_l(struct libnetapi_ctx *ctx,
113 struct DsGetDcName *r)
115 NTSTATUS status;
116 struct libnetapi_private_ctx *priv;
118 priv = talloc_get_type_abort(ctx->private_data,
119 struct libnetapi_private_ctx);
121 status = dsgetdcname(ctx,
122 priv->msg_ctx,
123 r->in.domain_name,
124 r->in.domain_guid,
125 r->in.site_name,
126 r->in.flags,
127 (struct netr_DsRGetDCNameInfo **)r->out.dc_info);
128 if (!NT_STATUS_IS_OK(status)) {
129 libnetapi_set_error_string(ctx,
130 "failed to find DC: %s",
131 get_friendly_nt_error_msg(status));
134 return ntstatus_to_werror(status);
137 /********************************************************************
138 ********************************************************************/
140 WERROR DsGetDcName_r(struct libnetapi_ctx *ctx,
141 struct DsGetDcName *r)
143 WERROR werr;
144 NTSTATUS status = NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND;
145 struct dcerpc_binding_handle *b;
147 werr = libnetapi_get_binding_handle(ctx, r->in.server_name,
148 &ndr_table_netlogon.syntax_id,
149 &b);
150 if (!W_ERROR_IS_OK(werr)) {
151 goto done;
154 status = dcerpc_netr_DsRGetDCNameEx(b,
155 ctx,
156 r->in.server_name,
157 r->in.domain_name,
158 r->in.domain_guid,
159 r->in.site_name,
160 r->in.flags,
161 (struct netr_DsRGetDCNameInfo **)r->out.dc_info,
162 &werr);
163 if (NT_STATUS_IS_OK(status) && W_ERROR_IS_OK(werr)) {
164 goto done;
167 status = dcerpc_netr_DsRGetDCName(b,
168 ctx,
169 r->in.server_name,
170 r->in.domain_name,
171 r->in.domain_guid,
172 NULL,
173 r->in.flags,
174 (struct netr_DsRGetDCNameInfo **)r->out.dc_info,
175 &werr);
176 if (!NT_STATUS_IS_OK(status)) {
177 werr = ntstatus_to_werror(status);
178 goto done;
181 done:
182 return werr;