r6038: adding more flesh to 'net rpc service'
[samba.git] / source3 / include / rpc_svcctl.h
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB parameters and setup
4    Copyright (C) Andrew Tridgell              1992-1997,
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 #ifndef _RPC_SVCCTL_H /* _RPC_SVCCTL_H */
23 #define _RPC_SVCCTL_H 
24
25
26 /* svcctl pipe */
27
28 #define SVCCTL_CLOSE_SERVICE                    0x00
29 #define SVCCTL_CONTROL_SERVICE                  0x01
30 #define SVCCTL_QUERY_STATUS                     0x06
31 #define SVCCTL_ENUM_DEPENDENT_SERVICES_W        0x0d
32 #define SVCCTL_ENUM_SERVICES_STATUS_W           0x0e
33 #define SVCCTL_OPEN_SCMANAGER_W                 0x0f
34 #define SVCCTL_OPEN_SERVICE_W                   0x10
35 #define SVCCTL_QUERY_SERVICE_CONFIG_W           0x11
36 #define SVCCTL_START_SERVICE_W                  0x13
37 #define SVCCTL_GET_DISPLAY_NAME                 0x14
38 #define SVCCTL_QUERY_SERVICE_CONFIG2_W          0x27
39
40 /* ANSI versions not implemented currently 
41 #define SVCCTL_ENUM_SERVICES_STATUS_A           0x0e
42 #define SVCCTL_OPEN_SCMANAGER_A                 0x1b
43 */
44
45 /* SERVER_STATUS - type */
46
47 #define SVCCTL_TYPE_WIN32               0x00000030
48 #define SVCCTL_TYPE_DRIVER              0x0000000f
49
50 /* SERVER_STATUS - state */
51 #define SVCCTL_STATE_ACTIVE             0x00000001
52 #define SVCCTL_STATE_INACTIVE           0x00000002
53 #define SVCCTL_STATE_ALL                ( SVC_STATE_ACTIVE | SVC_STATE_INACTIVE )
54
55 /* SERVER_STATUS - CurrentState */
56
57 #define SVCCTL_STOPPED                  0x00000001
58 #define SVCCTL_START_PENDING            0x00000002
59 #define SVCCTL_STOP_PENDING             0x00000003
60 #define SVCCTL_RUNNING                  0x00000004
61 #define SVCCTL_CONTINUE_PENDING         0x00000005
62 #define SVCCTL_PAUSE_PENDING            0x00000006
63 #define SVCCTL_PAUSED                   0x00000007
64
65 /* SERVER_STATUS - ControlAccepted */
66
67 #define SVCCTL_ACCEPT_STOP                      0x00000001
68 #define SVCCTL_ACCEPT_PAUSE_CONTINUE            0x00000002
69 #define SVCCTL_ACCEPT_SHUTDOWN                  0x00000004
70 #define SVCCTL_ACCEPT_PARAMCHANGE               0x00000008
71 #define SVCCTL_ACCEPT_NETBINDCHANGE             0x00000010
72 #define SVCCTL_ACCEPT_HARDWAREPROFILECHANGE     0x00000020
73 #define SVCCTL_ACCEPT_POWEREVENT                0x00000040
74
75
76 /* utility structures for RPCs */
77
78 typedef struct {
79         uint32 type;
80         uint32 state;
81         uint32 controls_accepted;
82         uint32 win32_exit_code;
83         uint32 service_exit_code;
84         uint32 check_point;
85         uint32 wait_hint;
86 } SERVICE_STATUS;
87
88 typedef struct {
89         UNISTR servicename;
90         UNISTR displayname;
91         SERVICE_STATUS status;
92 } ENUM_SERVICES_STATUS;
93
94 typedef struct {
95         uint32 service_type;
96         uint32 start_type;
97         uint32 error_control;
98         UNISTR2 *executablepath;
99         UNISTR2 *loadordergroup;
100         uint32 tag_id;
101         UNISTR2 *dependencies;
102         UNISTR2 *startname;
103         UNISTR2 *displayname;
104 } SERVICE_CONFIG;
105
106
107 /* rpc structures */
108
109 /**************************/
110
111 typedef struct {
112         POLICY_HND handle;
113 } SVCCTL_Q_CLOSE_SERVICE;
114
115 typedef struct {
116         WERROR status;
117 } SVCCTL_R_CLOSE_SERVICE;
118
119 /**************************/
120
121 typedef struct {
122         UNISTR2 *servername;
123         UNISTR2 *database; 
124         uint32 access;
125 } SVCCTL_Q_OPEN_SCMANAGER;
126
127 typedef struct {
128         POLICY_HND handle;
129         WERROR status;
130 } SVCCTL_R_OPEN_SCMANAGER;
131
132 /**************************/
133
134 typedef struct {
135         POLICY_HND handle;
136         UNISTR2 servicename;
137         uint32  display_name_len;
138 } SVCCTL_Q_GET_DISPLAY_NAME;
139
140 typedef struct {
141         UNISTR2 displayname;
142         uint32 display_name_len;
143         WERROR status;
144 } SVCCTL_R_GET_DISPLAY_NAME;
145
146 /**************************/
147
148 typedef struct {
149         POLICY_HND handle;
150         UNISTR2 servicename;
151         uint32 access_mask;
152 } SVCCTL_Q_OPEN_SERVICE;
153
154 typedef struct {
155         POLICY_HND handle;
156         WERROR status;
157 } SVCCTL_R_OPEN_SERVICE;
158
159 /**************************/
160
161 typedef struct {
162         POLICY_HND handle;
163         uint32 parmcount;
164         UNISTR2_ARRAY parameters;
165 } SVCCTL_Q_START_SERVICE;
166
167 typedef struct {
168         WERROR status;
169 } SVCCTL_R_START_SERVICE;
170
171 /**************************/
172
173 typedef struct {
174         POLICY_HND handle;
175         uint32 control;
176 } SVCCTL_Q_CONTROL_SERVICE;
177
178 typedef struct {
179         SERVICE_STATUS svc_status;
180         WERROR status;
181 } SVCCTL_R_CONTROL_SERVICE;
182
183 /**************************/
184
185 typedef struct {
186         POLICY_HND handle;
187 } SVCCTL_Q_QUERY_STATUS;
188
189 typedef struct {
190         SERVICE_STATUS svc_status;
191         WERROR status;
192 } SVCCTL_R_QUERY_STATUS;
193
194 /**************************/
195
196 typedef struct {
197         POLICY_HND handle;
198         uint32 type;
199         uint32 state;
200         uint32 buffer_size;
201         uint32 *resume;
202 } SVCCTL_Q_ENUM_SERVICES_STATUS;
203
204 typedef struct {
205         RPC_BUFFER buffer;
206         uint32 needed;
207         uint32 returned;
208         uint32 *resume;
209         WERROR status;
210 } SVCCTL_R_ENUM_SERVICES_STATUS;
211
212 /**************************/
213
214 typedef struct {
215         POLICY_HND handle;
216         uint32 state;
217         uint32 buffer_size;
218 } SVCCTL_Q_ENUM_DEPENDENT_SERVICES;
219
220 typedef struct {
221         RPC_BUFFER buffer;
222         uint32 needed;
223         uint32 returned;
224         WERROR status;
225 } SVCCTL_R_ENUM_DEPENDENT_SERVICES;
226
227 /**************************/
228
229 typedef struct {
230         POLICY_HND handle;
231         uint32 buffer_size;
232 } SVCCTL_Q_QUERY_SERVICE_CONFIG;
233
234 typedef struct {
235         SERVICE_CONFIG config;
236         uint32 needed;
237         WERROR status;
238 } SVCCTL_R_QUERY_SERVICE_CONFIG;
239
240 #endif /* _RPC_SVCCTL_H */
241