2 * Unix SMB/CIFS implementation.
3 * Service Control API Implementation
4 * Copyright (C) Gerald Carter 2005.
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 3 of the License, or
9 * (at your option) any later version.
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.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
22 /*********************************************************************
23 *********************************************************************/
25 static WERROR
rcinit_stop( const char *service
, SERVICE_STATUS
*status
)
30 if (asprintf(&command
, "%s/%s/%s stop",
31 get_dyn_LIBDIR(), SVCCTL_SCRIPT_DIR
, service
) < 0) {
35 /* we've already performed the access check when the service was opened */
38 ret
= smbrun( command
, &fd
);
41 DEBUGADD(5, ("rcinit_start: [%s] returned [%d]\n", command
, ret
));
46 ZERO_STRUCTP( status
);
47 status
->type
= 0x0020;
48 status
->state
= (ret
== 0 ) ? 0x0001 : 0x0004;
49 status
->controls_accepted
= 0x0005;
51 return ( ret
== 0 ) ? WERR_OK
: WERR_ACCESS_DENIED
;
54 /*********************************************************************
55 *********************************************************************/
57 static WERROR
rcinit_start( const char *service
)
62 if (asprintf(&command
, "%s/%s/%s start",
63 get_dyn_LIBDIR(), SVCCTL_SCRIPT_DIR
, service
) < 0) {
67 /* we've already performed the access check when the service was opened */
70 ret
= smbrun( command
, &fd
);
73 DEBUGADD(5, ("rcinit_start: [%s] returned [%d]\n", command
, ret
));
78 return ( ret
== 0 ) ? WERR_OK
: WERR_ACCESS_DENIED
;
81 /*********************************************************************
82 *********************************************************************/
84 static WERROR
rcinit_status( const char *service
, SERVICE_STATUS
*status
)
89 if (asprintf(&command
, "%s/%s/%s status",
90 get_dyn_LIBDIR(), SVCCTL_SCRIPT_DIR
, service
) < 0) {
94 /* we've already performed the access check when the service was opened */
95 /* assume as return code of 0 means that the service is ok. Anything else
99 ret
= smbrun( command
, &fd
);
102 DEBUGADD(5, ("rcinit_start: [%s] returned [%d]\n", command
, ret
));
107 ZERO_STRUCTP( status
);
108 status
->type
= 0x0020;
109 status
->state
= (ret
== 0 ) ? 0x0004 : 0x0001;
110 status
->controls_accepted
= 0x0005;
115 /*********************************************************************
116 *********************************************************************/
118 /* struct for svcctl control to manipulate rcinit service */
120 SERVICE_CONTROL_OPS rcinit_svc_ops
= {