2 * Unix SMB/CIFS implementation.
3 * RPC Pipe client / server routines
5 * Copyright (C) Marcin Krzysztof Porwit 2005.
7 * Largely Rewritten (Again) by:
8 * Copyright (C) Gerald (Jerry) Carter 2005.
9 * Copyright (C) Guenther Deschner 2008,2009.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <http://www.gnu.org/licenses/>.
26 #include "../librpc/gen_ndr/srv_svcctl.h"
29 #define DBGC_CLASS DBGC_RPC_SRV
31 struct service_control_op
{
33 SERVICE_CONTROL_OPS
*ops
;
36 /* handle external services */
37 extern SERVICE_CONTROL_OPS rcinit_svc_ops
;
39 /* builtin services (see service_db.c and services/svc_*.c */
40 extern SERVICE_CONTROL_OPS spoolss_svc_ops
;
41 extern SERVICE_CONTROL_OPS netlogon_svc_ops
;
42 extern SERVICE_CONTROL_OPS winreg_svc_ops
;
43 extern SERVICE_CONTROL_OPS wins_svc_ops
;
45 /* make sure this number patches the number of builtin
46 SERVICE_CONTROL_OPS structure listed above */
48 #define SVCCTL_NUM_INTERNAL_SERVICES 4
50 struct service_control_op
*svcctl_ops
;
52 static const struct generic_mapping scm_generic_map
=
53 { SC_MANAGER_READ_ACCESS
, SC_MANAGER_WRITE_ACCESS
, SC_MANAGER_EXECUTE_ACCESS
, SC_MANAGER_ALL_ACCESS
};
54 static const struct generic_mapping svc_generic_map
=
55 { SERVICE_READ_ACCESS
, SERVICE_WRITE_ACCESS
, SERVICE_EXECUTE_ACCESS
, SERVICE_ALL_ACCESS
};
58 /********************************************************************
59 ********************************************************************/
61 bool init_service_op_table( void )
63 const char **service_list
= lp_svcctl_list();
64 int num_services
= SVCCTL_NUM_INTERNAL_SERVICES
+ str_list_length( service_list
);
67 if ( !(svcctl_ops
= TALLOC_ARRAY( NULL
, struct service_control_op
, num_services
+1)) ) {
68 DEBUG(0,("init_service_op_table: talloc() failed!\n"));
72 /* services listed in smb.conf get the rc.init interface */
74 for ( i
=0; service_list
&& service_list
[i
]; i
++ ) {
75 svcctl_ops
[i
].name
= talloc_strdup( svcctl_ops
, service_list
[i
] );
76 svcctl_ops
[i
].ops
= &rcinit_svc_ops
;
79 /* add builtin services */
81 svcctl_ops
[i
].name
= talloc_strdup( svcctl_ops
, "Spooler" );
82 svcctl_ops
[i
].ops
= &spoolss_svc_ops
;
85 svcctl_ops
[i
].name
= talloc_strdup( svcctl_ops
, "NETLOGON" );
86 svcctl_ops
[i
].ops
= &netlogon_svc_ops
;
89 svcctl_ops
[i
].name
= talloc_strdup( svcctl_ops
, "RemoteRegistry" );
90 svcctl_ops
[i
].ops
= &winreg_svc_ops
;
93 svcctl_ops
[i
].name
= talloc_strdup( svcctl_ops
, "WINS" );
94 svcctl_ops
[i
].ops
= &wins_svc_ops
;
97 /* NULL terminate the array */
99 svcctl_ops
[i
].name
= NULL
;
100 svcctl_ops
[i
].ops
= NULL
;
105 /********************************************************************
106 ********************************************************************/
108 static struct service_control_op
* find_service_by_name( const char *name
)
112 for ( i
=0; svcctl_ops
[i
].name
; i
++ ) {
113 if ( strequal( name
, svcctl_ops
[i
].name
) )
114 return &svcctl_ops
[i
];
119 /********************************************************************
120 ********************************************************************/
122 static NTSTATUS
svcctl_access_check( SEC_DESC
*sec_desc
, NT_USER_TOKEN
*token
,
123 uint32 access_desired
, uint32
*access_granted
)
125 if ( geteuid() == sec_initial_uid() ) {
126 DEBUG(5,("svcctl_access_check: using root's token\n"));
127 token
= get_root_nt_token();
130 return se_access_check( sec_desc
, token
, access_desired
, access_granted
);
133 /********************************************************************
134 ********************************************************************/
136 static SEC_DESC
* construct_scm_sd( TALLOC_CTX
*ctx
)
144 /* basic access for Everyone */
146 init_sec_ace(&ace
[i
++], &global_sid_World
,
147 SEC_ACE_TYPE_ACCESS_ALLOWED
, SC_MANAGER_READ_ACCESS
, 0);
149 /* Full Access 'BUILTIN\Administrators' */
151 init_sec_ace(&ace
[i
++], &global_sid_Builtin_Administrators
,
152 SEC_ACE_TYPE_ACCESS_ALLOWED
, SC_MANAGER_ALL_ACCESS
, 0);
155 /* create the security descriptor */
157 if ( !(theacl
= make_sec_acl(ctx
, NT4_ACL_REVISION
, i
, ace
)) )
160 if ( !(sd
= make_sec_desc(ctx
, SECURITY_DESCRIPTOR_REVISION_1
,
161 SEC_DESC_SELF_RELATIVE
, NULL
, NULL
, NULL
,
168 /******************************************************************
169 Find a registry key handle and return a SERVICE_INFO
170 *****************************************************************/
172 static SERVICE_INFO
*find_service_info_by_hnd(pipes_struct
*p
, struct policy_handle
*hnd
)
174 SERVICE_INFO
*service_info
= NULL
;
176 if( !find_policy_by_hnd( p
, hnd
, (void **)(void *)&service_info
) ) {
177 DEBUG(2,("find_service_info_by_hnd: handle not found\n"));
184 /******************************************************************
185 *****************************************************************/
187 static WERROR
create_open_service_handle( pipes_struct
*p
, struct policy_handle
*handle
, uint32 type
,
188 const char *service
, uint32 access_granted
)
190 SERVICE_INFO
*info
= NULL
;
191 WERROR result
= WERR_OK
;
192 struct service_control_op
*s_op
;
194 if ( !(info
= TALLOC_ZERO_P( NULL
, SERVICE_INFO
)) )
197 /* the Service Manager has a NULL name */
199 info
->type
= SVC_HANDLE_IS_SCM
;
202 case SVC_HANDLE_IS_SCM
:
203 info
->type
= SVC_HANDLE_IS_SCM
;
206 case SVC_HANDLE_IS_DBLOCK
:
207 info
->type
= SVC_HANDLE_IS_DBLOCK
;
210 case SVC_HANDLE_IS_SERVICE
:
211 info
->type
= SVC_HANDLE_IS_SERVICE
;
213 /* lookup the SERVICE_CONTROL_OPS */
215 if ( !(s_op
= find_service_by_name( service
)) ) {
216 result
= WERR_NO_SUCH_SERVICE
;
220 info
->ops
= s_op
->ops
;
222 if ( !(info
->name
= talloc_strdup( info
, s_op
->name
)) ) {
229 result
= WERR_NO_SUCH_SERVICE
;
233 info
->access_granted
= access_granted
;
235 /* store the SERVICE_INFO and create an open handle */
237 if ( !create_policy_hnd( p
, handle
, info
) ) {
238 result
= WERR_ACCESS_DENIED
;
243 if ( !W_ERROR_IS_OK(result
) )
249 /********************************************************************
250 _svcctl_OpenSCManagerW
251 ********************************************************************/
253 WERROR
_svcctl_OpenSCManagerW(pipes_struct
*p
,
254 struct svcctl_OpenSCManagerW
*r
)
257 uint32 access_granted
= 0;
260 /* perform access checks */
262 if ( !(sec_desc
= construct_scm_sd( p
->mem_ctx
)) )
265 se_map_generic( &r
->in
.access_mask
, &scm_generic_map
);
266 status
= svcctl_access_check( sec_desc
, p
->server_info
->ptok
,
267 r
->in
.access_mask
, &access_granted
);
268 if ( !NT_STATUS_IS_OK(status
) )
269 return ntstatus_to_werror( status
);
271 return create_open_service_handle( p
, r
->out
.handle
, SVC_HANDLE_IS_SCM
, NULL
, access_granted
);
274 /********************************************************************
276 ********************************************************************/
278 WERROR
_svcctl_OpenServiceW(pipes_struct
*p
,
279 struct svcctl_OpenServiceW
*r
)
282 uint32 access_granted
= 0;
284 const char *service
= NULL
;
286 service
= r
->in
.ServiceName
;
290 DEBUG(5, ("_svcctl_OpenServiceW: Attempting to open Service [%s], \n", service
));
292 /* based on my tests you can open a service if you have a valid scm handle */
294 if ( !find_service_info_by_hnd( p
, r
->in
.scmanager_handle
) )
297 /* perform access checks. Use the root token in order to ensure that we
298 retrieve the security descriptor */
300 if ( !(sec_desc
= svcctl_get_secdesc( p
->mem_ctx
, service
, get_root_nt_token() )) )
303 se_map_generic( &r
->in
.access_mask
, &svc_generic_map
);
304 status
= svcctl_access_check( sec_desc
, p
->server_info
->ptok
,
305 r
->in
.access_mask
, &access_granted
);
306 if ( !NT_STATUS_IS_OK(status
) )
307 return ntstatus_to_werror( status
);
309 return create_open_service_handle( p
, r
->out
.handle
, SVC_HANDLE_IS_SERVICE
, service
, access_granted
);
312 /********************************************************************
313 _svcctl_CloseServiceHandle
314 ********************************************************************/
316 WERROR
_svcctl_CloseServiceHandle(pipes_struct
*p
,
317 struct svcctl_CloseServiceHandle
*r
)
319 if ( !close_policy_hnd( p
, r
->in
.handle
) )
322 ZERO_STRUCTP(r
->out
.handle
);
327 /********************************************************************
328 _svcctl_GetServiceDisplayNameW
329 ********************************************************************/
331 WERROR
_svcctl_GetServiceDisplayNameW(pipes_struct
*p
,
332 struct svcctl_GetServiceDisplayNameW
*r
)
335 const char *display_name
;
336 SERVICE_INFO
*info
= find_service_info_by_hnd( p
, r
->in
.handle
);
338 /* can only use an SCM handle here */
340 if ( !info
|| (info
->type
!= SVC_HANDLE_IS_SCM
) )
343 service
= r
->in
.service_name
;
345 display_name
= svcctl_lookup_dispname(p
->mem_ctx
, service
,
346 p
->server_info
->ptok
);
351 *r
->out
.display_name
= display_name
;
352 *r
->out
.display_name_length
= strlen(display_name
);
357 /********************************************************************
358 _svcctl_QueryServiceStatus
359 ********************************************************************/
361 WERROR
_svcctl_QueryServiceStatus(pipes_struct
*p
,
362 struct svcctl_QueryServiceStatus
*r
)
364 SERVICE_INFO
*info
= find_service_info_by_hnd( p
, r
->in
.handle
);
366 /* perform access checks */
368 if ( !info
|| (info
->type
!= SVC_HANDLE_IS_SERVICE
) )
371 if ( !(info
->access_granted
& SC_RIGHT_SVC_QUERY_STATUS
) )
372 return WERR_ACCESS_DENIED
;
374 /* try the service specific status call */
376 return info
->ops
->service_status( info
->name
, r
->out
.service_status
);
379 /********************************************************************
380 ********************************************************************/
382 static int enumerate_status( TALLOC_CTX
*ctx
, struct ENUM_SERVICE_STATUSW
**status
, NT_USER_TOKEN
*token
)
384 int num_services
= 0;
386 struct ENUM_SERVICE_STATUSW
*st
;
387 const char *display_name
;
390 while ( svcctl_ops
[num_services
].name
)
393 if ( !(st
= TALLOC_ARRAY( ctx
, struct ENUM_SERVICE_STATUSW
, num_services
)) ) {
394 DEBUG(0,("enumerate_status: talloc() failed!\n"));
398 for ( i
=0; i
<num_services
; i
++ ) {
399 st
[i
].service_name
= talloc_strdup(st
, svcctl_ops
[i
].name
);
401 display_name
= svcctl_lookup_dispname(ctx
, svcctl_ops
[i
].name
, token
);
402 st
[i
].display_name
= talloc_strdup(st
, display_name
? display_name
: "");
404 svcctl_ops
[i
].ops
->service_status( svcctl_ops
[i
].name
, &st
[i
].status
);
412 /********************************************************************
413 _svcctl_EnumServicesStatusW
414 ********************************************************************/
416 WERROR
_svcctl_EnumServicesStatusW(pipes_struct
*p
,
417 struct svcctl_EnumServicesStatusW
*r
)
419 struct ENUM_SERVICE_STATUSW
*services
= NULL
;
422 size_t buffer_size
= 0;
423 WERROR result
= WERR_OK
;
424 SERVICE_INFO
*info
= find_service_info_by_hnd( p
, r
->in
.handle
);
425 NT_USER_TOKEN
*token
= p
->server_info
->ptok
;
426 DATA_BLOB blob
= data_blob_null
;
428 /* perform access checks */
430 if ( !info
|| (info
->type
!= SVC_HANDLE_IS_SCM
) )
433 if ( !(info
->access_granted
& SC_RIGHT_MGR_ENUMERATE_SERVICE
) ) {
434 return WERR_ACCESS_DENIED
;
437 num_services
= enumerate_status( p
->mem_ctx
, &services
, token
);
438 if (num_services
== -1 ) {
442 for ( i
=0; i
<num_services
; i
++ ) {
443 buffer_size
+= ndr_size_ENUM_SERVICE_STATUSW(&services
[i
], NULL
, 0);
446 buffer_size
+= buffer_size
% 4;
448 if (buffer_size
> r
->in
.offered
) {
450 result
= WERR_MORE_DATA
;
453 if ( W_ERROR_IS_OK(result
) ) {
455 enum ndr_err_code ndr_err
;
456 struct ndr_push
*ndr
;
458 ndr
= ndr_push_init_ctx(p
->mem_ctx
, NULL
);
460 return WERR_INVALID_PARAM
;
463 ndr_err
= ndr_push_ENUM_SERVICE_STATUSW_array(
464 ndr
, num_services
, services
);
465 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
466 return ntstatus_to_werror(ndr_map_error2ntstatus(ndr_err
));
468 blob
= ndr_push_blob(ndr
);
469 memcpy(r
->out
.service
, blob
.data
, MIN(blob
.length
, r
->in
.offered
));
472 *r
->out
.needed
= (buffer_size
> r
->in
.offered
) ? buffer_size
: r
->in
.offered
;
473 *r
->out
.services_returned
= (uint32
)num_services
;
474 if (r
->out
.resume_handle
) {
475 *r
->out
.resume_handle
= 0;
481 /********************************************************************
482 _svcctl_StartServiceW
483 ********************************************************************/
485 WERROR
_svcctl_StartServiceW(pipes_struct
*p
,
486 struct svcctl_StartServiceW
*r
)
488 SERVICE_INFO
*info
= find_service_info_by_hnd( p
, r
->in
.handle
);
490 /* perform access checks */
492 if ( !info
|| (info
->type
!= SVC_HANDLE_IS_SERVICE
) )
495 if ( !(info
->access_granted
& SC_RIGHT_SVC_START
) )
496 return WERR_ACCESS_DENIED
;
498 return info
->ops
->start_service( info
->name
);
501 /********************************************************************
502 _svcctl_ControlService
503 ********************************************************************/
505 WERROR
_svcctl_ControlService(pipes_struct
*p
,
506 struct svcctl_ControlService
*r
)
508 SERVICE_INFO
*info
= find_service_info_by_hnd( p
, r
->in
.handle
);
510 /* perform access checks */
512 if ( !info
|| (info
->type
!= SVC_HANDLE_IS_SERVICE
) )
515 switch ( r
->in
.control
) {
516 case SVCCTL_CONTROL_STOP
:
517 if ( !(info
->access_granted
& SC_RIGHT_SVC_STOP
) )
518 return WERR_ACCESS_DENIED
;
520 return info
->ops
->stop_service( info
->name
,
521 r
->out
.service_status
);
523 case SVCCTL_CONTROL_INTERROGATE
:
524 if ( !(info
->access_granted
& SC_RIGHT_SVC_QUERY_STATUS
) )
525 return WERR_ACCESS_DENIED
;
527 return info
->ops
->service_status( info
->name
,
528 r
->out
.service_status
);
530 return WERR_INVALID_PARAM
;
534 /********************************************************************
535 _svcctl_EnumDependentServicesW
536 ********************************************************************/
538 WERROR
_svcctl_EnumDependentServicesW(pipes_struct
*p
,
539 struct svcctl_EnumDependentServicesW
*r
)
541 SERVICE_INFO
*info
= find_service_info_by_hnd( p
, r
->in
.service
);
543 /* perform access checks */
545 if ( !info
|| (info
->type
!= SVC_HANDLE_IS_SERVICE
) )
548 if ( !(info
->access_granted
& SC_RIGHT_SVC_ENUMERATE_DEPENDENTS
) )
549 return WERR_ACCESS_DENIED
;
551 switch (r
->in
.state
) {
552 case SERVICE_STATE_ACTIVE
:
553 case SERVICE_STATE_INACTIVE
:
554 case SERVICE_STATE_ALL
:
557 return WERR_INVALID_PARAM
;
560 /* we have to set the outgoing buffer size to the same as the
561 incoming buffer size (even in the case of failure */
562 /* this is done in the autogenerated server already - gd */
564 *r
->out
.needed
= r
->in
.offered
;
566 /* no dependent services...basically a stub function */
567 *r
->out
.services_returned
= 0;
572 /********************************************************************
573 _svcctl_QueryServiceStatusEx
574 ********************************************************************/
576 WERROR
_svcctl_QueryServiceStatusEx(pipes_struct
*p
,
577 struct svcctl_QueryServiceStatusEx
*r
)
579 SERVICE_INFO
*info
= find_service_info_by_hnd( p
, r
->in
.handle
);
582 /* perform access checks */
584 if ( !info
|| (info
->type
!= SVC_HANDLE_IS_SERVICE
) )
587 if ( !(info
->access_granted
& SC_RIGHT_SVC_QUERY_STATUS
) )
588 return WERR_ACCESS_DENIED
;
590 /* we have to set the outgoing buffer size to the same as the
591 incoming buffer size (even in the case of failure) */
592 *r
->out
.needed
= r
->in
.offered
;
594 switch ( r
->in
.info_level
) {
595 case SVC_STATUS_PROCESS_INFO
:
597 struct SERVICE_STATUS_PROCESS svc_stat_proc
;
598 enum ndr_err_code ndr_err
;
601 /* Get the status of the service.. */
602 info
->ops
->service_status( info
->name
, &svc_stat_proc
.status
);
603 svc_stat_proc
.process_id
= sys_getpid();
604 svc_stat_proc
.service_flags
= 0x0;
606 ndr_err
= ndr_push_struct_blob(&blob
, p
->mem_ctx
, NULL
,
608 (ndr_push_flags_fn_t
)ndr_push_SERVICE_STATUS_PROCESS
);
609 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
610 return WERR_INVALID_PARAM
;
613 r
->out
.buffer
= blob
.data
;
614 buffer_size
= sizeof(struct SERVICE_STATUS_PROCESS
);
619 return WERR_UNKNOWN_LEVEL
;
623 buffer_size
+= buffer_size
% 4;
624 *r
->out
.needed
= (buffer_size
> r
->in
.offered
) ? buffer_size
: r
->in
.offered
;
626 if (buffer_size
> r
->in
.offered
) {
627 return WERR_INSUFFICIENT_BUFFER
;
633 /********************************************************************
634 ********************************************************************/
636 static WERROR
fill_svc_config( TALLOC_CTX
*ctx
, const char *name
,
637 struct QUERY_SERVICE_CONFIG
*config
,
638 NT_USER_TOKEN
*token
)
640 struct regval_ctr
*values
;
641 struct regval_blob
*val
;
643 /* retrieve the registry values for this service */
645 if ( !(values
= svcctl_fetch_regvalues( name
, token
)) )
646 return WERR_REG_CORRUPT
;
648 /* now fill in the individual values */
650 if ( (val
= regval_ctr_getvalue( values
, "DisplayName" )) != NULL
)
651 config
->displayname
= regval_sz(val
);
653 config
->displayname
= name
;
655 if ( (val
= regval_ctr_getvalue( values
, "ObjectName" )) != NULL
) {
656 config
->startname
= regval_sz(val
);
659 if ( (val
= regval_ctr_getvalue( values
, "ImagePath" )) != NULL
) {
660 config
->executablepath
= regval_sz(val
);
663 /* a few hard coded values */
664 /* loadordergroup and dependencies are empty */
666 config
->tag_id
= 0x00000000; /* unassigned loadorder group */
667 config
->service_type
= SERVICE_TYPE_WIN32_OWN_PROCESS
;
668 config
->error_control
= SVCCTL_SVC_ERROR_NORMAL
;
670 /* set the start type. NetLogon and WINS are disabled to prevent
671 the client from showing the "Start" button (if of course the services
674 if ( strequal( name
, "NETLOGON" ) && ( lp_servicenumber(name
) == -1 ) )
675 config
->start_type
= SVCCTL_DISABLED
;
676 else if ( strequal( name
, "WINS" ) && ( !lp_wins_support() ))
677 config
->start_type
= SVCCTL_DISABLED
;
679 config
->start_type
= SVCCTL_DEMAND_START
;
682 TALLOC_FREE( values
);
687 /********************************************************************
688 _svcctl_QueryServiceConfigW
689 ********************************************************************/
691 WERROR
_svcctl_QueryServiceConfigW(pipes_struct
*p
,
692 struct svcctl_QueryServiceConfigW
*r
)
694 SERVICE_INFO
*info
= find_service_info_by_hnd( p
, r
->in
.handle
);
698 /* perform access checks */
700 if ( !info
|| (info
->type
!= SVC_HANDLE_IS_SERVICE
) )
703 if ( !(info
->access_granted
& SC_RIGHT_SVC_QUERY_CONFIG
) )
704 return WERR_ACCESS_DENIED
;
706 /* we have to set the outgoing buffer size to the same as the
707 incoming buffer size (even in the case of failure */
709 *r
->out
.needed
= r
->in
.offered
;
711 wresult
= fill_svc_config( p
->mem_ctx
, info
->name
, r
->out
.query
,
712 p
->server_info
->ptok
);
713 if ( !W_ERROR_IS_OK(wresult
) )
716 buffer_size
= ndr_size_QUERY_SERVICE_CONFIG(r
->out
.query
, NULL
, 0);
717 *r
->out
.needed
= (buffer_size
> r
->in
.offered
) ? buffer_size
: r
->in
.offered
;
719 if (buffer_size
> r
->in
.offered
) {
720 ZERO_STRUCTP(r
->out
.query
);
721 return WERR_INSUFFICIENT_BUFFER
;
727 /********************************************************************
728 _svcctl_QueryServiceConfig2W
729 ********************************************************************/
731 WERROR
_svcctl_QueryServiceConfig2W(pipes_struct
*p
,
732 struct svcctl_QueryServiceConfig2W
*r
)
734 SERVICE_INFO
*info
= find_service_info_by_hnd( p
, r
->in
.handle
);
737 /* perform access checks */
739 if ( !info
|| (info
->type
!= SVC_HANDLE_IS_SERVICE
) )
742 if ( !(info
->access_granted
& SC_RIGHT_SVC_QUERY_CONFIG
) )
743 return WERR_ACCESS_DENIED
;
745 /* we have to set the outgoing buffer size to the same as the
746 incoming buffer size (even in the case of failure */
747 *r
->out
.needed
= r
->in
.offered
;
749 switch ( r
->in
.info_level
) {
750 case SERVICE_CONFIG_DESCRIPTION
:
752 struct SERVICE_DESCRIPTION desc_buf
;
753 const char *description
;
754 enum ndr_err_code ndr_err
;
757 description
= svcctl_lookup_description(
758 p
->mem_ctx
, info
->name
, p
->server_info
->ptok
);
760 desc_buf
.description
= description
;
762 ndr_err
= ndr_push_struct_blob(&blob
, p
->mem_ctx
, NULL
,
764 (ndr_push_flags_fn_t
)ndr_push_SERVICE_DESCRIPTION
);
765 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
766 return WERR_INVALID_PARAM
;
769 buffer_size
= ndr_size_SERVICE_DESCRIPTION(&desc_buf
, NULL
, 0);
770 r
->out
.buffer
= blob
.data
;
775 case SERVICE_CONFIG_FAILURE_ACTIONS
:
777 struct SERVICE_FAILURE_ACTIONS actions
;
778 enum ndr_err_code ndr_err
;
781 /* nothing to say...just service the request */
783 ZERO_STRUCT( actions
);
785 ndr_err
= ndr_push_struct_blob(&blob
, p
->mem_ctx
, NULL
,
787 (ndr_push_flags_fn_t
)ndr_push_SERVICE_FAILURE_ACTIONS
);
788 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
789 return WERR_INVALID_PARAM
;
792 buffer_size
= ndr_size_SERVICE_FAILURE_ACTIONS(&actions
, NULL
, 0);
793 r
->out
.buffer
= blob
.data
;
800 return WERR_UNKNOWN_LEVEL
;
803 buffer_size
+= buffer_size
% 4;
804 *r
->out
.needed
= (buffer_size
> r
->in
.offered
) ? buffer_size
: r
->in
.offered
;
806 if (buffer_size
> r
->in
.offered
)
807 return WERR_INSUFFICIENT_BUFFER
;
812 /********************************************************************
813 _svcctl_LockServiceDatabase
814 ********************************************************************/
816 WERROR
_svcctl_LockServiceDatabase(pipes_struct
*p
,
817 struct svcctl_LockServiceDatabase
*r
)
819 SERVICE_INFO
*info
= find_service_info_by_hnd( p
, r
->in
.handle
);
821 /* perform access checks */
823 if ( !info
|| (info
->type
!= SVC_HANDLE_IS_SCM
) )
826 if ( !(info
->access_granted
& SC_RIGHT_MGR_LOCK
) )
827 return WERR_ACCESS_DENIED
;
829 /* Just open a handle. Doesn't actually lock anything */
831 return create_open_service_handle( p
, r
->out
.lock
, SVC_HANDLE_IS_DBLOCK
, NULL
, 0 );
834 /********************************************************************
835 _svcctl_UnlockServiceDatabase
836 ********************************************************************/
838 WERROR
_svcctl_UnlockServiceDatabase(pipes_struct
*p
,
839 struct svcctl_UnlockServiceDatabase
*r
)
841 SERVICE_INFO
*info
= find_service_info_by_hnd( p
, r
->in
.lock
);
844 if ( !info
|| (info
->type
!= SVC_HANDLE_IS_DBLOCK
) )
847 return close_policy_hnd( p
, r
->out
.lock
) ? WERR_OK
: WERR_BADFID
;
850 /********************************************************************
851 _svcctl_QueryServiceObjectSecurity
852 ********************************************************************/
854 WERROR
_svcctl_QueryServiceObjectSecurity(pipes_struct
*p
,
855 struct svcctl_QueryServiceObjectSecurity
*r
)
857 SERVICE_INFO
*info
= find_service_info_by_hnd( p
, r
->in
.handle
);
860 uint8_t *buffer
= NULL
;
864 /* only support the SCM and individual services */
866 if ( !info
|| !(info
->type
& (SVC_HANDLE_IS_SERVICE
|SVC_HANDLE_IS_SCM
)) )
869 /* check access reights (according to MSDN) */
871 if ( !(info
->access_granted
& STD_RIGHT_READ_CONTROL_ACCESS
) )
872 return WERR_ACCESS_DENIED
;
874 /* TODO: handle something besides DACL_SECURITY_INFORMATION */
876 if ( (r
->in
.security_flags
& DACL_SECURITY_INFORMATION
) != DACL_SECURITY_INFORMATION
)
877 return WERR_INVALID_PARAM
;
879 /* lookup the security descriptor and marshall it up for a reply */
881 if ( !(sec_desc
= svcctl_get_secdesc( p
->mem_ctx
, info
->name
, get_root_nt_token() )) )
884 *r
->out
.needed
= ndr_size_security_descriptor( sec_desc
, NULL
, 0 );
886 if ( *r
->out
.needed
> r
->in
.offered
) {
887 return WERR_INSUFFICIENT_BUFFER
;
890 status
= marshall_sec_desc(p
->mem_ctx
, sec_desc
, &buffer
, &len
);
891 if (!NT_STATUS_IS_OK(status
)) {
892 return ntstatus_to_werror(status
);
895 *r
->out
.needed
= len
;
896 r
->out
.buffer
= buffer
;
901 /********************************************************************
902 _svcctl_SetServiceObjectSecurity
903 ********************************************************************/
905 WERROR
_svcctl_SetServiceObjectSecurity(pipes_struct
*p
,
906 struct svcctl_SetServiceObjectSecurity
*r
)
908 SERVICE_INFO
*info
= find_service_info_by_hnd( p
, r
->in
.handle
);
909 SEC_DESC
*sec_desc
= NULL
;
910 uint32 required_access
;
913 if ( !info
|| !(info
->type
& (SVC_HANDLE_IS_SERVICE
|SVC_HANDLE_IS_SCM
)) )
916 /* can't set the security de4scriptor on the ServiceControlManager */
918 if ( info
->type
== SVC_HANDLE_IS_SCM
)
919 return WERR_ACCESS_DENIED
;
921 /* check the access on the open handle */
923 switch ( r
->in
.security_flags
) {
924 case DACL_SECURITY_INFORMATION
:
925 required_access
= STD_RIGHT_WRITE_DAC_ACCESS
;
928 case OWNER_SECURITY_INFORMATION
:
929 case GROUP_SECURITY_INFORMATION
:
930 required_access
= STD_RIGHT_WRITE_OWNER_ACCESS
;
933 case SACL_SECURITY_INFORMATION
:
934 return WERR_INVALID_PARAM
;
936 return WERR_INVALID_PARAM
;
939 if ( !(info
->access_granted
& required_access
) )
940 return WERR_ACCESS_DENIED
;
942 /* read the security descfriptor */
944 status
= unmarshall_sec_desc(p
->mem_ctx
,
948 if (!NT_STATUS_IS_OK(status
)) {
949 return ntstatus_to_werror(status
);
952 /* store the new SD */
954 if ( !svcctl_set_secdesc( p
->mem_ctx
, info
->name
, sec_desc
,
955 p
->server_info
->ptok
) )
956 return WERR_ACCESS_DENIED
;
962 WERROR
_svcctl_DeleteService(pipes_struct
*p
, struct svcctl_DeleteService
*r
)
964 p
->rng_fault_state
= True
;
965 return WERR_NOT_SUPPORTED
;
968 WERROR
_svcctl_SetServiceStatus(pipes_struct
*p
, struct svcctl_SetServiceStatus
*r
)
970 p
->rng_fault_state
= True
;
971 return WERR_NOT_SUPPORTED
;
974 WERROR
_svcctl_NotifyBootConfigStatus(pipes_struct
*p
, struct svcctl_NotifyBootConfigStatus
*r
)
976 p
->rng_fault_state
= True
;
977 return WERR_NOT_SUPPORTED
;
980 WERROR
_svcctl_SCSetServiceBitsW(pipes_struct
*p
, struct svcctl_SCSetServiceBitsW
*r
)
982 p
->rng_fault_state
= True
;
983 return WERR_NOT_SUPPORTED
;
986 WERROR
_svcctl_ChangeServiceConfigW(pipes_struct
*p
, struct svcctl_ChangeServiceConfigW
*r
)
988 p
->rng_fault_state
= True
;
989 return WERR_NOT_SUPPORTED
;
992 WERROR
_svcctl_CreateServiceW(pipes_struct
*p
, struct svcctl_CreateServiceW
*r
)
994 p
->rng_fault_state
= True
;
995 return WERR_NOT_SUPPORTED
;
998 WERROR
_svcctl_QueryServiceLockStatusW(pipes_struct
*p
, struct svcctl_QueryServiceLockStatusW
*r
)
1000 p
->rng_fault_state
= True
;
1001 return WERR_NOT_SUPPORTED
;
1004 WERROR
_svcctl_GetServiceKeyNameW(pipes_struct
*p
, struct svcctl_GetServiceKeyNameW
*r
)
1006 p
->rng_fault_state
= True
;
1007 return WERR_NOT_SUPPORTED
;
1010 WERROR
_svcctl_SCSetServiceBitsA(pipes_struct
*p
, struct svcctl_SCSetServiceBitsA
*r
)
1012 p
->rng_fault_state
= True
;
1013 return WERR_NOT_SUPPORTED
;
1016 WERROR
_svcctl_ChangeServiceConfigA(pipes_struct
*p
, struct svcctl_ChangeServiceConfigA
*r
)
1018 p
->rng_fault_state
= True
;
1019 return WERR_NOT_SUPPORTED
;
1022 WERROR
_svcctl_CreateServiceA(pipes_struct
*p
, struct svcctl_CreateServiceA
*r
)
1024 p
->rng_fault_state
= True
;
1025 return WERR_NOT_SUPPORTED
;
1028 WERROR
_svcctl_EnumDependentServicesA(pipes_struct
*p
, struct svcctl_EnumDependentServicesA
*r
)
1030 p
->rng_fault_state
= True
;
1031 return WERR_NOT_SUPPORTED
;
1034 WERROR
_svcctl_EnumServicesStatusA(pipes_struct
*p
, struct svcctl_EnumServicesStatusA
*r
)
1036 p
->rng_fault_state
= True
;
1037 return WERR_NOT_SUPPORTED
;
1040 WERROR
_svcctl_OpenSCManagerA(pipes_struct
*p
, struct svcctl_OpenSCManagerA
*r
)
1042 p
->rng_fault_state
= True
;
1043 return WERR_NOT_SUPPORTED
;
1046 WERROR
_svcctl_OpenServiceA(pipes_struct
*p
, struct svcctl_OpenServiceA
*r
)
1048 p
->rng_fault_state
= True
;
1049 return WERR_NOT_SUPPORTED
;
1052 WERROR
_svcctl_QueryServiceConfigA(pipes_struct
*p
, struct svcctl_QueryServiceConfigA
*r
)
1054 p
->rng_fault_state
= True
;
1055 return WERR_NOT_SUPPORTED
;
1058 WERROR
_svcctl_QueryServiceLockStatusA(pipes_struct
*p
, struct svcctl_QueryServiceLockStatusA
*r
)
1060 p
->rng_fault_state
= True
;
1061 return WERR_NOT_SUPPORTED
;
1064 WERROR
_svcctl_StartServiceA(pipes_struct
*p
, struct svcctl_StartServiceA
*r
)
1066 p
->rng_fault_state
= True
;
1067 return WERR_NOT_SUPPORTED
;
1070 WERROR
_svcctl_GetServiceDisplayNameA(pipes_struct
*p
, struct svcctl_GetServiceDisplayNameA
*r
)
1072 p
->rng_fault_state
= True
;
1073 return WERR_NOT_SUPPORTED
;
1076 WERROR
_svcctl_GetServiceKeyNameA(pipes_struct
*p
, struct svcctl_GetServiceKeyNameA
*r
)
1078 p
->rng_fault_state
= True
;
1079 return WERR_NOT_SUPPORTED
;
1082 WERROR
_svcctl_GetCurrentGroupeStateW(pipes_struct
*p
, struct svcctl_GetCurrentGroupeStateW
*r
)
1084 p
->rng_fault_state
= True
;
1085 return WERR_NOT_SUPPORTED
;
1088 WERROR
_svcctl_EnumServiceGroupW(pipes_struct
*p
, struct svcctl_EnumServiceGroupW
*r
)
1090 p
->rng_fault_state
= True
;
1091 return WERR_NOT_SUPPORTED
;
1094 WERROR
_svcctl_ChangeServiceConfig2A(pipes_struct
*p
, struct svcctl_ChangeServiceConfig2A
*r
)
1096 p
->rng_fault_state
= True
;
1097 return WERR_NOT_SUPPORTED
;
1100 WERROR
_svcctl_ChangeServiceConfig2W(pipes_struct
*p
, struct svcctl_ChangeServiceConfig2W
*r
)
1102 p
->rng_fault_state
= True
;
1103 return WERR_NOT_SUPPORTED
;
1106 WERROR
_svcctl_QueryServiceConfig2A(pipes_struct
*p
, struct svcctl_QueryServiceConfig2A
*r
)
1108 p
->rng_fault_state
= True
;
1109 return WERR_NOT_SUPPORTED
;
1112 WERROR
_EnumServicesStatusExA(pipes_struct
*p
, struct EnumServicesStatusExA
*r
)
1114 p
->rng_fault_state
= True
;
1115 return WERR_NOT_SUPPORTED
;
1118 WERROR
_EnumServicesStatusExW(pipes_struct
*p
, struct EnumServicesStatusExW
*r
)
1120 p
->rng_fault_state
= True
;
1121 return WERR_NOT_SUPPORTED
;
1124 WERROR
_svcctl_SCSendTSMessage(pipes_struct
*p
, struct svcctl_SCSendTSMessage
*r
)
1126 p
->rng_fault_state
= True
;
1127 return WERR_NOT_SUPPORTED
;