Add an entry for the "check" command to the tdbtool manpage.
[Samba/gebeck_regimport.git] / source3 / include / rpc_svcctl.h
blob7dd849d5b41deeeb8a33dd3298bbb5c2ead94b9a
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
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 3 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, see <http://www.gnu.org/licenses/>.
21 #ifndef _RPC_SVCCTL_H /* _RPC_SVCCTL_H */
22 #define _RPC_SVCCTL_H
24 /* svcctl pipe */
26 #define SVCCTL_CLOSE_SERVICE 0x00
27 #define SVCCTL_CONTROL_SERVICE 0x01
28 #define SVCCTL_LOCK_SERVICE_DB 0x03
29 #define SVCCTL_QUERY_SERVICE_SEC 0x04
30 #define SVCCTL_SET_SERVICE_SEC 0x05
31 #define SVCCTL_QUERY_STATUS 0x06
32 #define SVCCTL_UNLOCK_SERVICE_DB 0x08
33 #define SVCCTL_ENUM_DEPENDENT_SERVICES_W 0x0d
34 #define SVCCTL_ENUM_SERVICES_STATUS_W 0x0e
35 #define SVCCTL_OPEN_SCMANAGER_W 0x0f
36 #define SVCCTL_OPEN_SERVICE_W 0x10
37 #define SVCCTL_QUERY_SERVICE_CONFIG_W 0x11
38 #define SVCCTL_START_SERVICE_W 0x13
39 #define SVCCTL_GET_DISPLAY_NAME 0x14
40 #define SVCCTL_QUERY_SERVICE_CONFIG2_W 0x27
41 #define SVCCTL_QUERY_SERVICE_STATUSEX_W 0x28
43 /* ANSI versions not implemented currently
44 #define SVCCTL_ENUM_SERVICES_STATUS_A 0x0e
45 #define SVCCTL_OPEN_SCMANAGER_A 0x1b
48 /* SERVER_STATUS - type */
50 #define SVCCTL_TYPE_WIN32 0x00000030
51 #define SVCCTL_TYPE_DRIVER 0x0000000f
53 /* SERVER_STATUS - state */
54 #define SVCCTL_STATE_ACTIVE 0x00000001
55 #define SVCCTL_STATE_INACTIVE 0x00000002
56 #define SVCCTL_STATE_ALL ( SVCCTL_STATE_ACTIVE | SVCCTL_STATE_INACTIVE )
58 /* SERVER_STATUS - CurrentState */
60 #define SVCCTL_STATE_UNKNOWN 0x00000000 /* only used internally to smbd */
61 #define SVCCTL_STOPPED 0x00000001
62 #define SVCCTL_START_PENDING 0x00000002
63 #define SVCCTL_STOP_PENDING 0x00000003
64 #define SVCCTL_RUNNING 0x00000004
65 #define SVCCTL_CONTINUE_PENDING 0x00000005
66 #define SVCCTL_PAUSE_PENDING 0x00000006
67 #define SVCCTL_PAUSED 0x00000007
69 /* SERVER_STATUS - ControlAccepted */
71 #define SVCCTL_ACCEPT_NONE 0x00000000
72 #define SVCCTL_ACCEPT_STOP 0x00000001
73 #define SVCCTL_ACCEPT_PAUSE_CONTINUE 0x00000002
74 #define SVCCTL_ACCEPT_SHUTDOWN 0x00000004
75 #define SVCCTL_ACCEPT_PARAMCHANGE 0x00000008
76 #define SVCCTL_ACCEPT_NETBINDCHANGE 0x00000010
77 #define SVCCTL_ACCEPT_HARDWAREPROFILECHANGE 0x00000020
78 #define SVCCTL_ACCEPT_POWEREVENT 0x00000040
80 /* SERVER_STATUS - ControlAccepted */
81 #define SVCCTL_SVC_ERROR_IGNORE 0x00000000
82 #define SVCCTL_SVC_ERROR_NORMAL 0x00000001
83 #define SVCCTL_SVC_ERROR_CRITICAL 0x00000002
84 #define SVCCTL_SVC_ERROR_SEVERE 0x00000003
86 /* QueryServiceConfig2 options */
87 #define SERVICE_CONFIG_DESCRIPTION 0x00000001
88 #define SERVICE_CONFIG_FAILURE_ACTIONS 0x00000002
91 /* Service Config - values for ServiceType field*/
93 #define SVCCTL_KERNEL_DRVR 0x00000001 /* doubtful we'll have these */
94 #define SVCCTL_FILE_SYSTEM_DRVR 0x00000002
95 #define SVCCTL_WIN32_OWN_PROC 0x00000010
96 #define SVCCTL_WIN32_SHARED_PROC 0x00000020
97 #define SVCCTL_WIN32_INTERACTIVE 0x00000100
99 /* Service Config - values for StartType field */
100 #define SVCCTL_BOOT_START 0x00000000
101 #define SVCCTL_SYSTEM_START 0x00000001
102 #define SVCCTL_AUTO_START 0x00000002
103 #define SVCCTL_DEMAND_START 0x00000003
104 #define SVCCTL_DISABLED 0x00000004
106 #define SVC_HANDLE_IS_SCM 0x0000001
107 #define SVC_HANDLE_IS_SERVICE 0x0000002
108 #define SVC_HANDLE_IS_DBLOCK 0x0000003
110 #define SVC_STATUS_PROCESS_INFO 0x00000000
112 /* utility structures for RPCs */
115 * "struct SERVICE_STATUS" comes from librpc/gen_ndr/svcctl.h
118 typedef struct SERVICE_STATUS SERVICE_STATUS;
120 typedef struct {
121 SERVICE_STATUS status;
122 uint32 process_id;
123 uint32 service_flags;
124 } SERVICE_STATUS_PROCESS;
127 typedef struct {
128 UNISTR servicename;
129 UNISTR displayname;
130 SERVICE_STATUS status;
131 } ENUM_SERVICES_STATUS;
133 typedef struct {
134 uint32 unknown;
135 UNISTR description;
136 } SERVICE_DESCRIPTION;
138 typedef struct {
139 uint32 type;
140 uint32 delay;
141 } SC_ACTION;
143 typedef struct {
144 uint32 reset_period;
145 UNISTR2 *rebootmsg; /* i have no idea if these are UNISTR2's. I can't get a good trace */
146 UNISTR2 *command;
147 uint32 num_actions;
148 SC_ACTION *actions;
149 } SERVICE_FAILURE_ACTIONS;
152 /* rpc structures */
154 /**************************/
156 typedef struct {
157 POLICY_HND handle;
158 uint32 type;
159 uint32 state;
160 uint32 buffer_size;
161 uint32 *resume;
162 } SVCCTL_Q_ENUM_SERVICES_STATUS;
164 typedef struct {
165 RPC_BUFFER buffer;
166 uint32 needed;
167 uint32 returned;
168 uint32 *resume;
169 WERROR status;
170 } SVCCTL_R_ENUM_SERVICES_STATUS;
172 /**************************/
174 typedef struct {
175 POLICY_HND handle;
176 uint32 level;
177 uint32 buffer_size;
178 } SVCCTL_Q_QUERY_SERVICE_CONFIG2;
180 typedef struct {
181 RPC_BUFFER buffer;
182 uint32 needed;
183 WERROR status;
184 } SVCCTL_R_QUERY_SERVICE_CONFIG2;
187 /**************************/
189 typedef struct {
190 POLICY_HND handle;
191 uint32 level;
192 uint32 buffer_size;
193 } SVCCTL_Q_QUERY_SERVICE_STATUSEX;
195 typedef struct {
196 RPC_BUFFER buffer;
197 uint32 needed;
198 WERROR status;
199 } SVCCTL_R_QUERY_SERVICE_STATUSEX;
201 #endif /* _RPC_SVCCTL_H */