| 1 | /*
|
|---|
| 2 | * Unix SMB/CIFS implementation.
|
|---|
| 3 | * RPC Pipe client / server routines
|
|---|
| 4 | * Copyright (C) Gerald Carter 2003
|
|---|
| 5 | *
|
|---|
| 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 2 of the License, or
|
|---|
| 9 | * (at your option) any later version.
|
|---|
| 10 | *
|
|---|
| 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.
|
|---|
| 15 | *
|
|---|
| 16 | * You should have received a copy of the GNU General Public License
|
|---|
| 17 | * along with this program; if not, write to the Free Software
|
|---|
| 18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|---|
| 19 | */
|
|---|
| 20 |
|
|---|
| 21 | /* This is the interface for the registry functions. */
|
|---|
| 22 |
|
|---|
| 23 | #include "includes.h"
|
|---|
| 24 |
|
|---|
| 25 | #undef DBGC_CLASS
|
|---|
| 26 | #define DBGC_CLASS DBGC_RPC_SRV
|
|---|
| 27 |
|
|---|
| 28 | /*******************************************************************
|
|---|
| 29 | ********************************************************************/
|
|---|
| 30 |
|
|---|
| 31 | static BOOL api_dsrole_get_primary_dominfo(pipes_struct *p)
|
|---|
| 32 | {
|
|---|
| 33 | DS_Q_GETPRIMDOMINFO q_u;
|
|---|
| 34 | DS_R_GETPRIMDOMINFO r_u;
|
|---|
| 35 | prs_struct *data = &p->in_data.data;
|
|---|
| 36 | prs_struct *rdata = &p->out_data.rdata;
|
|---|
| 37 |
|
|---|
| 38 | ZERO_STRUCT(q_u);
|
|---|
| 39 | ZERO_STRUCT(r_u);
|
|---|
| 40 |
|
|---|
| 41 | /* grab the request */
|
|---|
| 42 | if ( !ds_io_q_getprimdominfo("", &q_u, data, 0) )
|
|---|
| 43 | return False;
|
|---|
| 44 |
|
|---|
| 45 | /* construct reply. */
|
|---|
| 46 | r_u.status = _dsrole_get_primary_dominfo( p, &q_u, &r_u );
|
|---|
| 47 |
|
|---|
| 48 | if ( !ds_io_r_getprimdominfo("", &r_u, rdata, 0) )
|
|---|
| 49 | return False;
|
|---|
| 50 |
|
|---|
| 51 | return True;
|
|---|
| 52 | }
|
|---|
| 53 |
|
|---|
| 54 | /*******************************************************************
|
|---|
| 55 | stub functions for unimplemented RPC
|
|---|
| 56 | *******************************************************************/
|
|---|
| 57 |
|
|---|
| 58 | static BOOL api_dsrole_stub( pipes_struct *p )
|
|---|
| 59 | {
|
|---|
| 60 | DEBUG(0,("api_dsrole_stub: Hmmm....didn't know this RPC existed...\n"));
|
|---|
| 61 |
|
|---|
| 62 | return False;
|
|---|
| 63 | }
|
|---|
| 64 |
|
|---|
| 65 |
|
|---|
| 66 | /*******************************************************************
|
|---|
| 67 | array of \PIPE\lsass (new windows 2000 UUID) operations
|
|---|
| 68 | ********************************************************************/
|
|---|
| 69 | static struct api_struct api_lsa_ds_cmds[] = {
|
|---|
| 70 | { "DS_NOP", DS_NOP, api_dsrole_stub },
|
|---|
| 71 | { "DS_GETPRIMDOMINFO", DS_GETPRIMDOMINFO, api_dsrole_get_primary_dominfo }
|
|---|
| 72 |
|
|---|
| 73 | };
|
|---|
| 74 |
|
|---|
| 75 | void lsa_ds_get_pipe_fns( struct api_struct **fns, int *n_fns )
|
|---|
| 76 | {
|
|---|
| 77 | *fns = api_lsa_ds_cmds;
|
|---|
| 78 | *n_fns = sizeof(api_lsa_ds_cmds) / sizeof(struct api_struct);
|
|---|
| 79 | }
|
|---|
| 80 |
|
|---|
| 81 |
|
|---|
| 82 | NTSTATUS rpc_lsa_ds_init(void)
|
|---|
| 83 | {
|
|---|
| 84 | return rpc_pipe_register_commands(SMB_RPC_INTERFACE_VERSION, "lsa_ds", "lsa_ds", api_lsa_ds_cmds,
|
|---|
| 85 | sizeof(api_lsa_ds_cmds) / sizeof(struct api_struct));
|
|---|
| 86 | }
|
|---|