r23661: Another static pstring
[amitay/samba.git] / source3 / rpc_server / srv_ntsvcs_nt.c
1 /* 
2  *  Unix SMB/CIFS implementation.
3  *  RPC Pipe client / server routines
4  *
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.
11  *  
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.
16  *  
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.
20  */
21
22 #include "includes.h"
23
24 #undef DBGC_CLASS
25 #define DBGC_CLASS DBGC_RPC_SRV
26
27 /********************************************************************
28 ********************************************************************/
29
30 static char* get_device_path(TALLOC_CTX *mem_ctx, const char *device )
31 {
32         return talloc_asprintf(mem_ctx, "ROOT\\Legacy_%s\\0000", device);
33 }
34
35 /********************************************************************
36 ********************************************************************/
37
38 WERROR _ntsvcs_get_version( pipes_struct *p, NTSVCS_Q_GET_VERSION *q_u, NTSVCS_R_GET_VERSION *r_u )
39 {
40         r_u->version = 0x00000400;      /* no idea what this means */
41                 
42         return WERR_OK;
43 }
44
45 /********************************************************************
46 ********************************************************************/
47
48 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 )
49 {
50         fstring device;
51         char *devicepath;
52
53         if ( !q_u->devicename )
54                 return WERR_ACCESS_DENIED;
55
56         rpcstr_pull(device, q_u->devicename->buffer, sizeof(device), q_u->devicename->uni_str_len*2, 0);
57
58         if (!(devicepath = get_device_path(p->mem_ctx, device))) {
59                 return WERR_NOMEM;
60         }
61
62         r_u->size = strlen(devicepath) + 2;
63
64         TALLOC_FREE(devicepath);
65
66         return WERR_OK;
67 }
68
69
70 /********************************************************************
71 ********************************************************************/
72
73 WERROR _ntsvcs_get_device_list( pipes_struct *p, NTSVCS_Q_GET_DEVICE_LIST *q_u, NTSVCS_R_GET_DEVICE_LIST *r_u )
74 {
75         fstring device;
76         char *devicepath;
77
78         if ( !q_u->devicename )
79                 return WERR_ACCESS_DENIED;
80
81         rpcstr_pull(device, q_u->devicename->buffer, sizeof(device), q_u->devicename->uni_str_len*2, 0);
82
83         if (!(devicepath = get_device_path(p->mem_ctx, device))) {
84                 return WERR_NOMEM;
85         }
86
87         /* This has to be DOUBLE NULL terminated */
88
89         init_unistr2( &r_u->devicepath, devicepath, UNI_STR_DBLTERMINATE );
90         TALLOC_FREE(devicepath);
91         r_u->needed = r_u->devicepath.uni_str_len;
92
93         return WERR_OK;
94 }
95
96 /********************************************************************
97 ********************************************************************/
98
99 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 )
100 {
101         fstring devicepath;
102         char *ptr;
103         REGVAL_CTR *values;
104         REGISTRY_VALUE *val;
105
106         rpcstr_pull(devicepath, q_u->devicepath.buffer, sizeof(devicepath), q_u->devicepath.uni_str_len*2, 0);
107
108         switch( q_u->property ) {
109         case DEV_REGPROP_DESC:
110                 /* just parse the service name from the device path and then 
111                    lookup the display name */
112                 if ( !(ptr = strrchr_m( devicepath, '\\' )) )
113                         return WERR_GENERAL_FAILURE;    
114                 *ptr = '\0';
115                 
116                 if ( !(ptr = strrchr_m( devicepath, '_' )) )
117                         return WERR_GENERAL_FAILURE;    
118                 ptr++;
119                 
120                 if ( !(values = svcctl_fetch_regvalues( ptr, p->pipe_user.nt_user_token )) )
121                         return WERR_GENERAL_FAILURE;    
122                 
123                 if ( !(val = regval_ctr_getvalue( values, "DisplayName" )) ) {
124                         TALLOC_FREE( values );
125                         return WERR_GENERAL_FAILURE;
126                 }
127                 
128                 r_u->unknown1 = 0x1;    /* always 1...tested using a remove device manager connection */
129                 r_u->size = reg_init_regval_buffer( &r_u->value, val );
130                 r_u->needed = r_u->size;
131
132                 TALLOC_FREE(values);
133
134                 break;
135                 
136         default:
137                 r_u->unknown1 = 0x00437c98;
138                 return WERR_CM_NO_SUCH_VALUE;
139         }
140
141         return WERR_OK;
142 }
143
144 /********************************************************************
145 ********************************************************************/
146
147 WERROR _ntsvcs_validate_device_instance( pipes_struct *p, NTSVCS_Q_VALIDATE_DEVICE_INSTANCE *q_u, NTSVCS_R_VALIDATE_DEVICE_INSTANCE *r_u )
148 {
149         /* whatever dude */
150         return WERR_OK;
151 }
152
153 /********************************************************************
154 ********************************************************************/
155
156 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 )
157 {
158         /* steal the incoming buffer */
159
160         r_u->buffer_size = q_u->buffer_size;
161         r_u->buffer = q_u->buffer;
162
163         /* Take the 5th Ammentment */
164
165         return WERR_CM_NO_MORE_HW_PROFILES;
166 }
167
168 /********************************************************************
169 ********************************************************************/
170
171 WERROR _ntsvcs_hw_profile_flags( pipes_struct *p, NTSVCS_Q_HW_PROFILE_FLAGS *q_u, NTSVCS_R_HW_PROFILE_FLAGS *r_u )
172 {       
173         /* just nod your head */
174         
175         return WERR_OK;
176 }
177