2 * Unix SMB/CIFS implementation.
3 * RPC Pipe client / server routines
4 * Copyright (C) Andrew Tridgell 1992-1997,
5 * Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
6 * Copyright (C) Paul Ashton 1997,
7 * Copyright (C) Jeremy Allison 1998-2001,
8 * Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 /* This is the interface to the netlogon pipe. */
30 #define DBGC_CLASS DBGC_RPC_SRV
32 /*************************************************************************
34 *************************************************************************/
36 static BOOL
api_net_req_chal(pipes_struct
*p
)
40 prs_struct
*data
= &p
->in_data
.data
;
41 prs_struct
*rdata
= &p
->out_data
.rdata
;
46 /* grab the challenge... */
47 if(!net_io_q_req_chal("", &q_u
, data
, 0)) {
48 DEBUG(0,("api_net_req_chal: Failed to unmarshall NET_Q_REQ_CHAL.\n"));
52 r_u
.status
= _net_req_chal(p
, &q_u
, &r_u
);
54 /* store the response in the SMB stream */
55 if(!net_io_r_req_chal("", &r_u
, rdata
, 0)) {
56 DEBUG(0,("api_net_req_chal: Failed to marshall NET_R_REQ_CHAL.\n"));
63 /*************************************************************************
65 *************************************************************************/
67 static BOOL
api_net_auth(pipes_struct
*p
)
71 prs_struct
*data
= &p
->in_data
.data
;
72 prs_struct
*rdata
= &p
->out_data
.rdata
;
77 /* grab the challenge... */
78 if(!net_io_q_auth("", &q_u
, data
, 0)) {
79 DEBUG(0,("api_net_auth: Failed to unmarshall NET_Q_AUTH.\n"));
83 r_u
.status
= _net_auth(p
, &q_u
, &r_u
);
85 /* store the response in the SMB stream */
86 if(!net_io_r_auth("", &r_u
, rdata
, 0)) {
87 DEBUG(0,("api_net_auth: Failed to marshall NET_R_AUTH.\n"));
94 /*************************************************************************
96 *************************************************************************/
98 static BOOL
api_net_auth_2(pipes_struct
*p
)
102 prs_struct
*data
= &p
->in_data
.data
;
103 prs_struct
*rdata
= &p
->out_data
.rdata
;
108 /* grab the challenge... */
109 if(!net_io_q_auth_2("", &q_u
, data
, 0)) {
110 DEBUG(0,("api_net_auth_2: Failed to unmarshall NET_Q_AUTH_2.\n"));
114 r_u
.status
= _net_auth_2(p
, &q_u
, &r_u
);
116 /* store the response in the SMB stream */
117 if(!net_io_r_auth_2("", &r_u
, rdata
, 0)) {
118 DEBUG(0,("api_net_auth_2: Failed to marshall NET_R_AUTH_2.\n"));
125 /*************************************************************************
127 *************************************************************************/
129 static BOOL
api_net_srv_pwset(pipes_struct
*p
)
133 prs_struct
*data
= &p
->in_data
.data
;
134 prs_struct
*rdata
= &p
->out_data
.rdata
;
139 /* grab the challenge and encrypted password ... */
140 if(!net_io_q_srv_pwset("", &q_u
, data
, 0)) {
141 DEBUG(0,("api_net_srv_pwset: Failed to unmarshall NET_Q_SRV_PWSET.\n"));
145 r_u
.status
= _net_srv_pwset(p
, &q_u
, &r_u
);
147 /* store the response in the SMB stream */
148 if(!net_io_r_srv_pwset("", &r_u
, rdata
, 0)) {
149 DEBUG(0,("api_net_srv_pwset: Failed to marshall NET_R_SRV_PWSET.\n"));
156 /*************************************************************************
158 *************************************************************************/
160 static BOOL
api_net_sam_logoff(pipes_struct
*p
)
162 NET_Q_SAM_LOGOFF q_u
;
163 NET_R_SAM_LOGOFF r_u
;
164 prs_struct
*data
= &p
->in_data
.data
;
165 prs_struct
*rdata
= &p
->out_data
.rdata
;
170 if(!net_io_q_sam_logoff("", &q_u
, data
, 0)) {
171 DEBUG(0,("api_net_sam_logoff: Failed to unmarshall NET_Q_SAM_LOGOFF.\n"));
175 r_u
.status
= _net_sam_logoff(p
, &q_u
, &r_u
);
177 /* store the response in the SMB stream */
178 if(!net_io_r_sam_logoff("", &r_u
, rdata
, 0)) {
179 DEBUG(0,("api_net_sam_logoff: Failed to marshall NET_R_SAM_LOGOFF.\n"));
186 /*************************************************************************
188 *************************************************************************/
190 static BOOL
api_net_sam_logon(pipes_struct
*p
)
194 prs_struct
*data
= &p
->in_data
.data
;
195 prs_struct
*rdata
= &p
->out_data
.rdata
;
200 if(!net_io_q_sam_logon("", &q_u
, data
, 0)) {
201 DEBUG(0, ("api_net_sam_logon: Failed to unmarshall NET_Q_SAM_LOGON.\n"));
205 r_u
.status
= _net_sam_logon(p
, &q_u
, &r_u
);
207 /* store the response in the SMB stream */
208 if(!net_io_r_sam_logon("", &r_u
, rdata
, 0)) {
209 DEBUG(0,("api_net_sam_logon: Failed to marshall NET_R_SAM_LOGON.\n"));
216 /*************************************************************************
217 api_net_trust_dom_list:
218 *************************************************************************/
220 static BOOL
api_net_trust_dom_list(pipes_struct
*p
)
222 NET_Q_TRUST_DOM_LIST q_u
;
223 NET_R_TRUST_DOM_LIST r_u
;
224 prs_struct
*data
= &p
->in_data
.data
;
225 prs_struct
*rdata
= &p
->out_data
.rdata
;
230 /* grab the lsa trusted domain list query... */
231 if(!net_io_q_trust_dom("", &q_u
, data
, 0)) {
232 DEBUG(0,("api_net_trust_dom_list: Failed to unmarshall NET_Q_TRUST_DOM_LIST.\n"));
236 /* construct reply. */
237 r_u
.status
= _net_trust_dom_list(p
, &q_u
, &r_u
);
239 /* store the response in the SMB stream */
240 if(!net_io_r_trust_dom("", &r_u
, rdata
, 0)) {
241 DEBUG(0,("net_reply_trust_dom_list: Failed to marshall NET_R_TRUST_DOM_LIST.\n"));
248 /*************************************************************************
250 *************************************************************************/
252 static BOOL
api_net_logon_ctrl2(pipes_struct
*p
)
254 NET_Q_LOGON_CTRL2 q_u
;
255 NET_R_LOGON_CTRL2 r_u
;
256 prs_struct
*data
= &p
->in_data
.data
;
257 prs_struct
*rdata
= &p
->out_data
.rdata
;
263 /* grab the lsa netlogon ctrl2 query... */
264 if(!net_io_q_logon_ctrl2("", &q_u
, data
, 0)) {
265 DEBUG(0,("api_net_logon_ctrl2: Failed to unmarshall NET_Q_LOGON_CTRL2.\n"));
269 r_u
.status
= _net_logon_ctrl2(p
, &q_u
, &r_u
);
271 if(!net_io_r_logon_ctrl2("", &r_u
, rdata
, 0)) {
272 DEBUG(0,("net_reply_logon_ctrl2: Failed to marshall NET_R_LOGON_CTRL2.\n"));
279 /*************************************************************************
281 *************************************************************************/
283 static BOOL
api_net_logon_ctrl(pipes_struct
*p
)
285 NET_Q_LOGON_CTRL q_u
;
286 NET_R_LOGON_CTRL r_u
;
287 prs_struct
*data
= &p
->in_data
.data
;
288 prs_struct
*rdata
= &p
->out_data
.rdata
;
293 /* grab the lsa netlogon ctrl query... */
294 if(!net_io_q_logon_ctrl("", &q_u
, data
, 0)) {
295 DEBUG(0,("api_net_logon_ctrl: Failed to unmarshall NET_Q_LOGON_CTRL.\n"));
299 r_u
.status
= _net_logon_ctrl(p
, &q_u
, &r_u
);
301 if(!net_io_r_logon_ctrl("", &r_u
, rdata
, 0)) {
302 DEBUG(0,("net_reply_logon_ctrl2: Failed to marshall NET_R_LOGON_CTRL.\n"));
309 /*************************************************************************
310 api_net_sam_logon_ex:
311 *************************************************************************/
313 static BOOL
api_net_sam_logon_ex(pipes_struct
*p
)
315 NET_Q_SAM_LOGON_EX q_u
;
316 NET_R_SAM_LOGON_EX r_u
;
317 prs_struct
*data
= &p
->in_data
.data
;
318 prs_struct
*rdata
= &p
->out_data
.rdata
;
323 if(!net_io_q_sam_logon_ex("", &q_u
, data
, 0)) {
324 DEBUG(0, ("api_net_sam_logon_ex: Failed to unmarshall NET_Q_SAM_LOGON_EX.\n"));
328 r_u
.status
= _net_sam_logon_ex(p
, &q_u
, &r_u
);
330 /* store the response in the SMB stream */
331 if(!net_io_r_sam_logon_ex("", &r_u
, rdata
, 0)) {
332 DEBUG(0,("api_net_sam_logon_ex: Failed to marshall NET_R_SAM_LOGON_EX.\n"));
340 /*************************************************************************
341 api_ds_enum_dom_trusts:
342 *************************************************************************/
345 static BOOL
api_ds_enum_dom_trusts(pipes_struct
*p
)
347 DS_Q_ENUM_DOM_TRUSTS q_u
;
348 DS_R_ENUM_DOM_TRUSTS r_u
;
350 prs_struct
*data
= &p
->in_data
.data
;
351 prs_struct
*rdata
= &p
->out_data
.rdata
;
356 DEBUG(6,("api_ds_enum_dom_trusts\n"));
358 if ( !ds_io_q_enum_domain_trusts("", data
, 0, &q_u
) ) {
359 DEBUG(0,("api_ds_enum_domain_trusts: Failed to unmarshall DS_Q_ENUM_DOM_TRUSTS.\n"));
363 r_u
.status
= _ds_enum_dom_trusts(p
, &q_u
, &r_u
);
365 if ( !ds_io_r_enum_domain_trusts("", rdata
, 0, &r_u
) ) {
366 DEBUG(0,("api_ds_enum_domain_trusts: Failed to marshall DS_R_ENUM_DOM_TRUSTS.\n"));
370 DEBUG(6,("api_ds_enum_dom_trusts\n"));
376 /*******************************************************************
377 array of \PIPE\NETLOGON operations
378 ********************************************************************/
379 static struct api_struct api_net_cmds
[] =
381 { "NET_REQCHAL" , NET_REQCHAL
, api_net_req_chal
},
382 { "NET_AUTH" , NET_AUTH
, api_net_auth
},
383 { "NET_AUTH2" , NET_AUTH2
, api_net_auth_2
},
384 { "NET_SRVPWSET" , NET_SRVPWSET
, api_net_srv_pwset
},
385 { "NET_SAMLOGON" , NET_SAMLOGON
, api_net_sam_logon
},
386 { "NET_SAMLOGOFF" , NET_SAMLOGOFF
, api_net_sam_logoff
},
387 { "NET_LOGON_CTRL2" , NET_LOGON_CTRL2
, api_net_logon_ctrl2
},
388 { "NET_TRUST_DOM_LIST", NET_TRUST_DOM_LIST
, api_net_trust_dom_list
},
389 { "NET_LOGON_CTRL" , NET_LOGON_CTRL
, api_net_logon_ctrl
},
390 { "NET_SAMLOGON_EX" , NET_SAMLOGON_EX
, api_net_sam_logon_ex
},
392 { "DS_ENUM_DOM_TRUSTS", DS_ENUM_DOM_TRUSTS
, api_ds_enum_dom_trusts
}
396 void netlog_get_pipe_fns( struct api_struct
**fns
, int *n_fns
)
399 *n_fns
= sizeof(api_net_cmds
) / sizeof(struct api_struct
);
402 NTSTATUS
rpc_net_init(void)
404 return rpc_pipe_register_commands(SMB_RPC_INTERFACE_VERSION
, "NETLOGON", "lsass", api_net_cmds
,
405 sizeof(api_net_cmds
) / sizeof(struct api_struct
));