r10656: BIG merge from trunk. Features not copied over
[Samba/nascimento.git] / source3 / rpc_server / srv_ntsvcs_nt.c
blob0bb9154aaf05952d32962a3213eeffb000c4d961
1 /*
2 * Unix SMB/CIFS implementation.
3 * RPC Pipe client / server routines
5 * Copyright (C) Gerald (Jerry) Carter 2005.
6 *
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 2 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, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "includes.h"
24 #undef DBGC_CLASS
25 #define DBGC_CLASS DBGC_RPC_SRV
27 /********************************************************************
28 ********************************************************************/
30 static char* get_device_path( const char *device )
32 static pstring path;
34 pstr_sprintf( path, "ROOT\\Legacy_%s\\0000", device );
36 return path;
39 /********************************************************************
40 ********************************************************************/
42 WERROR _ntsvcs_get_version( pipes_struct *p, NTSVCS_Q_GET_VERSION *q_u, NTSVCS_R_GET_VERSION *r_u )
44 r_u->version = 0x00000400; /* no idea what this means */
46 return WERR_OK;
49 /********************************************************************
50 ********************************************************************/
52 WERROR _ntsvcs_get_device_list_size( pipes_struct *p, NTSVCS_Q_GET_DEVICE_LIST_SIZE *q_u, NTSVCS_R_GET_DEVICE_LIST_SIZE *r_u )
54 fstring device;
55 const char *devicepath;
57 if ( !q_u->devicename )
58 return WERR_ACCESS_DENIED;
60 rpcstr_pull(device, q_u->devicename->buffer, sizeof(device), q_u->devicename->uni_str_len*2, 0);
61 devicepath = get_device_path( device );
63 r_u->size = strlen(devicepath) + 2;
65 return WERR_OK;
69 /********************************************************************
70 ********************************************************************/
72 WERROR _ntsvcs_get_device_list( pipes_struct *p, NTSVCS_Q_GET_DEVICE_LIST *q_u, NTSVCS_R_GET_DEVICE_LIST *r_u )
74 fstring device;
75 const char *devicepath;
77 if ( !q_u->devicename )
78 return WERR_ACCESS_DENIED;
80 rpcstr_pull(device, q_u->devicename->buffer, sizeof(device), q_u->devicename->uni_str_len*2, 0);
81 devicepath = get_device_path( device );
83 /* From the packet traces I've see, I think this really should be an array
84 of UNISTR2's. But I've never seen more than one string in spite of the
85 fact that the string in double NULL terminated. -- jerry */
87 init_unistr2( &r_u->devicepath, devicepath, UNI_STR_TERMINATE );
88 r_u->needed = r_u->devicepath.uni_str_len;
90 return WERR_OK;
93 /********************************************************************
94 ********************************************************************/
96 WERROR _ntsvcs_get_device_reg_property( pipes_struct *p, NTSVCS_Q_GET_DEVICE_REG_PROPERTY *q_u, NTSVCS_R_GET_DEVICE_REG_PROPERTY *r_u )
98 fstring devicepath;
99 char *ptr;
100 REGVAL_CTR *values;
101 REGISTRY_VALUE *val;
103 rpcstr_pull(devicepath, q_u->devicepath.buffer, sizeof(devicepath), q_u->devicepath.uni_str_len*2, 0);
105 switch( q_u->property ) {
106 case DEV_REGPROP_DESC:
107 /* just parse the service name from the device path and then
108 lookup the display name */
109 if ( !(ptr = strrchr_m( devicepath, '\\' )) )
110 return WERR_GENERAL_FAILURE;
111 *ptr = '\0';
113 if ( !(ptr = strrchr_m( devicepath, '_' )) )
114 return WERR_GENERAL_FAILURE;
115 ptr++;
117 if ( !(values = svcctl_fetch_regvalues( ptr, p->pipe_user.nt_user_token )) )
118 return WERR_GENERAL_FAILURE;
120 if ( !(val = regval_ctr_getvalue( values, "DisplayName" )) ) {
121 TALLOC_FREE( values );
122 return WERR_GENERAL_FAILURE;
125 r_u->unknown1 = 0x1; /* always 1...tested using a remove device manager connection */
126 r_u->size = reg_init_regval_buffer( &r_u->value, val );
127 r_u->needed = r_u->size;
129 TALLOC_FREE(values);
131 break;
133 default:
134 r_u->unknown1 = 0x00437c98;
135 return WERR_CM_NO_SUCH_VALUE;
138 return WERR_OK;
141 /********************************************************************
142 ********************************************************************/
144 WERROR _ntsvcs_validate_device_instance( pipes_struct *p, NTSVCS_Q_VALIDATE_DEVICE_INSTANCE *q_u, NTSVCS_R_VALIDATE_DEVICE_INSTANCE *r_u )
146 /* whatever dude */
147 return WERR_OK;
150 /********************************************************************
151 ********************************************************************/
153 WERROR _ntsvcs_get_hw_profile_info( pipes_struct *p, NTSVCS_Q_GET_HW_PROFILE_INFO *q_u, NTSVCS_R_GET_HW_PROFILE_INFO *r_u )
155 /* steal the incoming buffer */
157 r_u->buffer_size = q_u->buffer_size;
158 r_u->buffer = q_u->buffer;
160 /* Take the 5th Ammentment */
162 return WERR_CM_NO_MORE_HW_PROFILES;
165 /********************************************************************
166 ********************************************************************/
168 WERROR _ntsvcs_hw_profile_flags( pipes_struct *p, NTSVCS_Q_HW_PROFILE_FLAGS *q_u, NTSVCS_R_HW_PROFILE_FLAGS *r_u )
170 /* just nod your head */
172 return WERR_OK;