Use pidl for _svcctl_QueryServiceObjectSecurity().
[Samba/gebeck_regimport.git] / source3 / rpc_server / srv_svcctl_nt.c
blob2672647c1d3acab6146d10f52a410efbcd0ecb37
1 /*
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.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, see <http://www.gnu.org/licenses/>.
24 #include "includes.h"
26 #undef DBGC_CLASS
27 #define DBGC_CLASS DBGC_RPC_SRV
29 struct service_control_op {
30 const char *name;
31 SERVICE_CONTROL_OPS *ops;
34 #define SVCCTL_NUM_INTERNAL_SERVICES 4
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_count( service_list );
65 int i;
67 if ( !(svcctl_ops = TALLOC_ARRAY( NULL, struct service_control_op, num_services+1)) ) {
68 DEBUG(0,("init_service_op_table: talloc() failed!\n"));
69 return False;
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;
83 i++;
85 svcctl_ops[i].name = talloc_strdup( svcctl_ops, "NETLOGON" );
86 svcctl_ops[i].ops = &netlogon_svc_ops;
87 i++;
89 svcctl_ops[i].name = talloc_strdup( svcctl_ops, "RemoteRegistry" );
90 svcctl_ops[i].ops = &winreg_svc_ops;
91 i++;
93 svcctl_ops[i].name = talloc_strdup( svcctl_ops, "WINS" );
94 svcctl_ops[i].ops = &wins_svc_ops;
95 i++;
97 /* NULL terminate the array */
99 svcctl_ops[i].name = NULL;
100 svcctl_ops[i].ops = NULL;
102 return True;
105 /********************************************************************
106 ********************************************************************/
108 static struct service_control_op* find_service_by_name( const char *name )
110 int i;
112 for ( i=0; svcctl_ops[i].name; i++ ) {
113 if ( strequal( name, svcctl_ops[i].name ) )
114 return &svcctl_ops[i];
117 return NULL;
119 /********************************************************************
120 ********************************************************************/
122 static NTSTATUS svcctl_access_check( SEC_DESC *sec_desc, NT_USER_TOKEN *token,
123 uint32 access_desired, uint32 *access_granted )
125 NTSTATUS result;
127 if ( geteuid() == sec_initial_uid() ) {
128 DEBUG(5,("svcctl_access_check: using root's token\n"));
129 token = get_root_nt_token();
132 se_access_check( sec_desc, token, access_desired, access_granted, &result );
134 return result;
137 /********************************************************************
138 ********************************************************************/
140 static SEC_DESC* construct_scm_sd( TALLOC_CTX *ctx )
142 SEC_ACE ace[2];
143 SEC_ACCESS mask;
144 size_t i = 0;
145 SEC_DESC *sd;
146 SEC_ACL *acl;
147 size_t sd_size;
149 /* basic access for Everyone */
151 init_sec_access(&mask, SC_MANAGER_READ_ACCESS );
152 init_sec_ace(&ace[i++], &global_sid_World, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
154 /* Full Access 'BUILTIN\Administrators' */
156 init_sec_access(&mask,SC_MANAGER_ALL_ACCESS );
157 init_sec_ace(&ace[i++], &global_sid_Builtin_Administrators, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
160 /* create the security descriptor */
162 if ( !(acl = make_sec_acl(ctx, NT4_ACL_REVISION, i, ace)) )
163 return NULL;
165 if ( !(sd = make_sec_desc(ctx, SECURITY_DESCRIPTOR_REVISION_1,
166 SEC_DESC_SELF_RELATIVE, NULL, NULL, NULL,
167 acl, &sd_size)) )
168 return NULL;
170 return sd;
173 /******************************************************************
174 free() function for REGISTRY_KEY
175 *****************************************************************/
177 static void free_service_handle_info(void *ptr)
179 TALLOC_FREE( ptr );
182 /******************************************************************
183 Find a registry key handle and return a SERVICE_INFO
184 *****************************************************************/
186 static SERVICE_INFO *find_service_info_by_hnd(pipes_struct *p, POLICY_HND *hnd)
188 SERVICE_INFO *service_info = NULL;
190 if( !find_policy_by_hnd( p, hnd, (void **)(void *)&service_info) ) {
191 DEBUG(2,("find_service_info_by_hnd: handle not found"));
192 return NULL;
195 return service_info;
198 /******************************************************************
199 *****************************************************************/
201 static WERROR create_open_service_handle( pipes_struct *p, POLICY_HND *handle, uint32 type,
202 const char *service, uint32 access_granted )
204 SERVICE_INFO *info = NULL;
205 WERROR result = WERR_OK;
206 struct service_control_op *s_op;
208 if ( !(info = TALLOC_ZERO_P( NULL, SERVICE_INFO )) )
209 return WERR_NOMEM;
211 /* the Service Manager has a NULL name */
213 info->type = SVC_HANDLE_IS_SCM;
215 switch ( type ) {
216 case SVC_HANDLE_IS_SCM:
217 info->type = SVC_HANDLE_IS_SCM;
218 break;
220 case SVC_HANDLE_IS_DBLOCK:
221 info->type = SVC_HANDLE_IS_DBLOCK;
222 break;
224 case SVC_HANDLE_IS_SERVICE:
225 info->type = SVC_HANDLE_IS_SERVICE;
227 /* lookup the SERVICE_CONTROL_OPS */
229 if ( !(s_op = find_service_by_name( service )) ) {
230 result = WERR_NO_SUCH_SERVICE;
231 goto done;
234 info->ops = s_op->ops;
236 if ( !(info->name = talloc_strdup( info, s_op->name )) ) {
237 result = WERR_NOMEM;
238 goto done;
240 break;
242 default:
243 result = WERR_NO_SUCH_SERVICE;
244 goto done;
247 info->access_granted = access_granted;
249 /* store the SERVICE_INFO and create an open handle */
251 if ( !create_policy_hnd( p, handle, free_service_handle_info, info ) ) {
252 result = WERR_ACCESS_DENIED;
253 goto done;
256 done:
257 if ( !W_ERROR_IS_OK(result) )
258 free_service_handle_info( info );
260 return result;
263 /********************************************************************
264 ********************************************************************/
266 WERROR _svcctl_OpenSCManagerW(pipes_struct *p,
267 struct svcctl_OpenSCManagerW *r)
269 SEC_DESC *sec_desc;
270 uint32 access_granted = 0;
271 NTSTATUS status;
273 /* perform access checks */
275 if ( !(sec_desc = construct_scm_sd( p->mem_ctx )) )
276 return WERR_NOMEM;
278 se_map_generic( &r->in.access_mask, &scm_generic_map );
279 status = svcctl_access_check( sec_desc, p->pipe_user.nt_user_token, r->in.access_mask, &access_granted );
280 if ( !NT_STATUS_IS_OK(status) )
281 return ntstatus_to_werror( status );
283 return create_open_service_handle( p, r->out.handle, SVC_HANDLE_IS_SCM, NULL, access_granted );
286 /********************************************************************
287 _svcctl_OpenServiceW
288 ********************************************************************/
290 WERROR _svcctl_OpenServiceW(pipes_struct *p,
291 struct svcctl_OpenServiceW *r)
293 SEC_DESC *sec_desc;
294 uint32 access_granted = 0;
295 NTSTATUS status;
296 const char *service = NULL;
298 service = r->in.ServiceName;
299 if (!service) {
300 return WERR_NOMEM;
302 DEBUG(5, ("_svcctl_OpenServiceW: Attempting to open Service [%s], \n", service));
304 /* based on my tests you can open a service if you have a valid scm handle */
306 if ( !find_service_info_by_hnd( p, r->in.scmanager_handle) )
307 return WERR_BADFID;
309 /* perform access checks. Use the root token in order to ensure that we
310 retrieve the security descriptor */
312 if ( !(sec_desc = svcctl_get_secdesc( p->mem_ctx, service, get_root_nt_token() )) )
313 return WERR_NOMEM;
315 se_map_generic( &r->in.access_mask, &svc_generic_map );
316 status = svcctl_access_check( sec_desc, p->pipe_user.nt_user_token, r->in.access_mask, &access_granted );
317 if ( !NT_STATUS_IS_OK(status) )
318 return ntstatus_to_werror( status );
320 return create_open_service_handle( p, r->out.handle, SVC_HANDLE_IS_SERVICE, service, access_granted );
323 /********************************************************************
324 ********************************************************************/
326 WERROR _svcctl_CloseServiceHandle(pipes_struct *p, struct svcctl_CloseServiceHandle *r)
328 if ( !close_policy_hnd( p, r->in.handle ) )
329 return WERR_BADFID;
331 return WERR_OK;
334 /********************************************************************
335 _svcctl_GetServiceDisplayNameW
336 ********************************************************************/
338 WERROR _svcctl_GetServiceDisplayNameW(pipes_struct *p,
339 struct svcctl_GetServiceDisplayNameW *r)
341 const char *service;
342 const char *display_name;
343 SERVICE_INFO *info = find_service_info_by_hnd( p, r->in.handle );
345 /* can only use an SCM handle here */
347 if ( !info || (info->type != SVC_HANDLE_IS_SCM) )
348 return WERR_BADFID;
350 service = r->in.service_name;
352 display_name = svcctl_lookup_dispname(p->mem_ctx, service, p->pipe_user.nt_user_token );
353 if (!display_name) {
354 display_name = "";
357 *r->out.display_name = display_name;
358 *r->out.display_name_length = strlen(display_name);
360 return WERR_OK;
363 /********************************************************************
364 _svcctl_QueryServiceStatus
365 ********************************************************************/
367 WERROR _svcctl_QueryServiceStatus(pipes_struct *p,
368 struct svcctl_QueryServiceStatus *r)
370 SERVICE_INFO *info = find_service_info_by_hnd( p, r->in.handle );
372 /* perform access checks */
374 if ( !info || (info->type != SVC_HANDLE_IS_SERVICE) )
375 return WERR_BADFID;
377 if ( !(info->access_granted & SC_RIGHT_SVC_QUERY_STATUS) )
378 return WERR_ACCESS_DENIED;
380 /* try the service specific status call */
382 return info->ops->service_status( info->name, r->out.service_status );
385 /********************************************************************
386 ********************************************************************/
388 static int enumerate_status( TALLOC_CTX *ctx, ENUM_SERVICES_STATUS **status, NT_USER_TOKEN *token )
390 int num_services = 0;
391 int i;
392 ENUM_SERVICES_STATUS *st;
393 const char *display_name;
395 /* just count */
396 while ( svcctl_ops[num_services].name )
397 num_services++;
399 if ( !(st = TALLOC_ARRAY( ctx, ENUM_SERVICES_STATUS, num_services )) ) {
400 DEBUG(0,("enumerate_status: talloc() failed!\n"));
401 return -1;
404 for ( i=0; i<num_services; i++ ) {
405 init_unistr( &st[i].servicename, svcctl_ops[i].name );
407 display_name = svcctl_lookup_dispname(ctx, svcctl_ops[i].name, token );
408 init_unistr( &st[i].displayname, display_name ? display_name : "");
410 svcctl_ops[i].ops->service_status( svcctl_ops[i].name, &st[i].status );
413 *status = st;
415 return num_services;
418 /********************************************************************
419 ********************************************************************/
421 WERROR _svcctl_enum_services_status(pipes_struct *p, SVCCTL_Q_ENUM_SERVICES_STATUS *q_u, SVCCTL_R_ENUM_SERVICES_STATUS *r_u)
423 ENUM_SERVICES_STATUS *services = NULL;
424 int num_services;
425 int i = 0;
426 size_t buffer_size = 0;
427 WERROR result = WERR_OK;
428 SERVICE_INFO *info = find_service_info_by_hnd( p, &q_u->handle );
429 NT_USER_TOKEN *token = p->pipe_user.nt_user_token;
431 /* perform access checks */
433 if ( !info || (info->type != SVC_HANDLE_IS_SCM) )
434 return WERR_BADFID;
436 if ( !(info->access_granted & SC_RIGHT_MGR_ENUMERATE_SERVICE) ) {
437 return WERR_ACCESS_DENIED;
440 num_services = enumerate_status( p->mem_ctx, &services, token );
441 if (num_services == -1 ) {
442 return WERR_NOMEM;
445 for ( i=0; i<num_services; i++ ) {
446 buffer_size += svcctl_sizeof_enum_services_status(&services[i]);
449 buffer_size += buffer_size % 4;
451 if (buffer_size > q_u->buffer_size ) {
452 num_services = 0;
453 result = WERR_MORE_DATA;
456 rpcbuf_init(&r_u->buffer, q_u->buffer_size, p->mem_ctx);
458 if ( W_ERROR_IS_OK(result) ) {
459 for ( i=0; i<num_services; i++ )
460 svcctl_io_enum_services_status( "", &services[i], &r_u->buffer, 0 );
463 r_u->needed = (buffer_size > q_u->buffer_size) ? buffer_size : q_u->buffer_size;
464 r_u->returned = (uint32)num_services;
466 if ( !(r_u->resume = TALLOC_P( p->mem_ctx, uint32 )) )
467 return WERR_NOMEM;
469 *r_u->resume = 0x0;
471 return result;
474 /********************************************************************
475 _svcctl_StartServiceW
476 ********************************************************************/
478 WERROR _svcctl_StartServiceW(pipes_struct *p,
479 struct svcctl_StartServiceW *r)
481 SERVICE_INFO *info = find_service_info_by_hnd( p, r->in.handle );
483 /* perform access checks */
485 if ( !info || (info->type != SVC_HANDLE_IS_SERVICE) )
486 return WERR_BADFID;
488 if ( !(info->access_granted & SC_RIGHT_SVC_START) )
489 return WERR_ACCESS_DENIED;
491 return info->ops->start_service( info->name );
494 /********************************************************************
495 _svcctl_ControlService
496 ********************************************************************/
498 WERROR _svcctl_ControlService(pipes_struct *p,
499 struct svcctl_ControlService *r)
501 SERVICE_INFO *info = find_service_info_by_hnd( p, r->in.handle );
503 /* perform access checks */
505 if ( !info || (info->type != SVC_HANDLE_IS_SERVICE) )
506 return WERR_BADFID;
508 switch ( r->in.control ) {
509 case SVCCTL_CONTROL_STOP:
510 if ( !(info->access_granted & SC_RIGHT_SVC_STOP) )
511 return WERR_ACCESS_DENIED;
513 return info->ops->stop_service( info->name,
514 r->out.service_status );
516 case SVCCTL_CONTROL_INTERROGATE:
517 if ( !(info->access_granted & SC_RIGHT_SVC_QUERY_STATUS) )
518 return WERR_ACCESS_DENIED;
520 return info->ops->service_status( info->name,
521 r->out.service_status );
524 /* default control action */
526 return WERR_ACCESS_DENIED;
529 /********************************************************************
530 ********************************************************************/
532 WERROR _svcctl_enum_dependent_services( pipes_struct *p, SVCCTL_Q_ENUM_DEPENDENT_SERVICES *q_u, SVCCTL_R_ENUM_DEPENDENT_SERVICES *r_u )
534 SERVICE_INFO *info = find_service_info_by_hnd( p, &q_u->handle );
536 /* perform access checks */
538 if ( !info || (info->type != SVC_HANDLE_IS_SERVICE) )
539 return WERR_BADFID;
541 if ( !(info->access_granted & SC_RIGHT_SVC_ENUMERATE_DEPENDENTS) )
542 return WERR_ACCESS_DENIED;
544 /* we have to set the outgoing buffer size to the same as the
545 incoming buffer size (even in the case of failure */
547 rpcbuf_init( &r_u->buffer, q_u->buffer_size, p->mem_ctx );
549 r_u->needed = q_u->buffer_size;
551 /* no dependent services...basically a stub function */
552 r_u->returned = 0;
554 return WERR_OK;
557 /********************************************************************
558 ********************************************************************/
560 WERROR _svcctl_query_service_status_ex( pipes_struct *p, SVCCTL_Q_QUERY_SERVICE_STATUSEX *q_u, SVCCTL_R_QUERY_SERVICE_STATUSEX *r_u )
562 SERVICE_INFO *info = find_service_info_by_hnd( p, &q_u->handle );
563 uint32 buffer_size;
565 /* perform access checks */
567 if ( !info || (info->type != SVC_HANDLE_IS_SERVICE) )
568 return WERR_BADFID;
570 if ( !(info->access_granted & SC_RIGHT_SVC_QUERY_STATUS) )
571 return WERR_ACCESS_DENIED;
573 /* we have to set the outgoing buffer size to the same as the
574 incoming buffer size (even in the case of failure) */
576 rpcbuf_init( &r_u->buffer, q_u->buffer_size, p->mem_ctx );
577 r_u->needed = q_u->buffer_size;
579 switch ( q_u->level ) {
580 case SVC_STATUS_PROCESS_INFO:
582 SERVICE_STATUS_PROCESS svc_stat_proc;
584 /* Get the status of the service.. */
585 info->ops->service_status( info->name, &svc_stat_proc.status );
586 svc_stat_proc.process_id = sys_getpid();
587 svc_stat_proc.service_flags = 0x0;
589 svcctl_io_service_status_process( "", &svc_stat_proc, &r_u->buffer, 0 );
590 buffer_size = sizeof(SERVICE_STATUS_PROCESS);
591 break;
594 default:
595 return WERR_UNKNOWN_LEVEL;
599 buffer_size += buffer_size % 4;
600 r_u->needed = (buffer_size > q_u->buffer_size) ? buffer_size : q_u->buffer_size;
602 if (buffer_size > q_u->buffer_size )
603 return WERR_MORE_DATA;
605 return WERR_OK;
608 /********************************************************************
609 ********************************************************************/
611 static WERROR fill_svc_config( TALLOC_CTX *ctx, const char *name, SERVICE_CONFIG *config, NT_USER_TOKEN *token )
613 REGVAL_CTR *values;
614 REGISTRY_VALUE *val;
616 /* retrieve the registry values for this service */
618 if ( !(values = svcctl_fetch_regvalues( name, token )) )
619 return WERR_REG_CORRUPT;
621 /* now fill in the individual values */
623 config->displayname = TALLOC_ZERO_P( ctx, UNISTR2 );
624 if ( (val = regval_ctr_getvalue( values, "DisplayName" )) != NULL )
625 init_unistr2( config->displayname, regval_sz( val ), UNI_STR_TERMINATE );
626 else
627 init_unistr2( config->displayname, name, UNI_STR_TERMINATE );
629 if ( (val = regval_ctr_getvalue( values, "ObjectName" )) != NULL ) {
630 config->startname = TALLOC_ZERO_P( ctx, UNISTR2 );
631 init_unistr2( config->startname, regval_sz( val ), UNI_STR_TERMINATE );
634 if ( (val = regval_ctr_getvalue( values, "ImagePath" )) != NULL ) {
635 config->executablepath = TALLOC_ZERO_P( ctx, UNISTR2 );
636 init_unistr2( config->executablepath, regval_sz( val ), UNI_STR_TERMINATE );
639 /* a few hard coded values */
640 /* loadordergroup and dependencies are empty */
642 config->tag_id = 0x00000000; /* unassigned loadorder group */
643 config->service_type = SVCCTL_WIN32_OWN_PROC;
644 config->error_control = SVCCTL_SVC_ERROR_NORMAL;
646 /* set the start type. NetLogon and WINS are disabled to prevent
647 the client from showing the "Start" button (if of course the services
648 are not running */
650 if ( strequal( name, "NETLOGON" ) && ( lp_servicenumber(name) == -1 ) )
651 config->start_type = SVCCTL_DISABLED;
652 else if ( strequal( name, "WINS" ) && ( !lp_wins_support() ))
653 config->start_type = SVCCTL_DISABLED;
654 else
655 config->start_type = SVCCTL_DEMAND_START;
658 TALLOC_FREE( values );
660 return WERR_OK;
663 /********************************************************************
664 ********************************************************************/
666 WERROR _svcctl_query_service_config( pipes_struct *p, SVCCTL_Q_QUERY_SERVICE_CONFIG *q_u, SVCCTL_R_QUERY_SERVICE_CONFIG *r_u )
668 SERVICE_INFO *info = find_service_info_by_hnd( p, &q_u->handle );
669 uint32 buffer_size;
670 WERROR wresult;
672 /* perform access checks */
674 if ( !info || (info->type != SVC_HANDLE_IS_SERVICE) )
675 return WERR_BADFID;
677 if ( !(info->access_granted & SC_RIGHT_SVC_QUERY_CONFIG) )
678 return WERR_ACCESS_DENIED;
680 /* we have to set the outgoing buffer size to the same as the
681 incoming buffer size (even in the case of failure */
683 r_u->needed = q_u->buffer_size;
685 wresult = fill_svc_config( p->mem_ctx, info->name, &r_u->config, p->pipe_user.nt_user_token );
686 if ( !W_ERROR_IS_OK(wresult) )
687 return wresult;
689 buffer_size = svcctl_sizeof_service_config( &r_u->config );
690 r_u->needed = (buffer_size > q_u->buffer_size) ? buffer_size : q_u->buffer_size;
692 if (buffer_size > q_u->buffer_size ) {
693 ZERO_STRUCTP( &r_u->config );
694 return WERR_INSUFFICIENT_BUFFER;
697 return WERR_OK;
700 /********************************************************************
701 ********************************************************************/
703 WERROR _svcctl_query_service_config2( pipes_struct *p, SVCCTL_Q_QUERY_SERVICE_CONFIG2 *q_u, SVCCTL_R_QUERY_SERVICE_CONFIG2 *r_u )
705 SERVICE_INFO *info = find_service_info_by_hnd( p, &q_u->handle );
706 uint32 buffer_size;
708 /* perform access checks */
710 if ( !info || (info->type != SVC_HANDLE_IS_SERVICE) )
711 return WERR_BADFID;
713 if ( !(info->access_granted & SC_RIGHT_SVC_QUERY_CONFIG) )
714 return WERR_ACCESS_DENIED;
716 /* we have to set the outgoing buffer size to the same as the
717 incoming buffer size (even in the case of failure */
719 rpcbuf_init( &r_u->buffer, q_u->buffer_size, p->mem_ctx );
720 r_u->needed = q_u->buffer_size;
722 switch ( q_u->level ) {
723 case SERVICE_CONFIG_DESCRIPTION:
725 SERVICE_DESCRIPTION desc_buf;
726 const char *description;
728 description = svcctl_lookup_description(p->mem_ctx, info->name, p->pipe_user.nt_user_token );
730 ZERO_STRUCTP( &desc_buf );
732 init_service_description_buffer( &desc_buf, description ? description : "");
733 svcctl_io_service_description( "", &desc_buf, &r_u->buffer, 0 );
734 buffer_size = svcctl_sizeof_service_description( &desc_buf );
736 break;
738 break;
739 case SERVICE_CONFIG_FAILURE_ACTIONS:
741 SERVICE_FAILURE_ACTIONS actions;
743 /* nothing to say...just service the request */
745 ZERO_STRUCTP( &actions );
746 svcctl_io_service_fa( "", &actions, &r_u->buffer, 0 );
747 buffer_size = svcctl_sizeof_service_fa( &actions );
749 break;
751 break;
753 default:
754 return WERR_UNKNOWN_LEVEL;
757 buffer_size += buffer_size % 4;
758 r_u->needed = (buffer_size > q_u->buffer_size) ? buffer_size : q_u->buffer_size;
760 if (buffer_size > q_u->buffer_size )
761 return WERR_INSUFFICIENT_BUFFER;
763 return WERR_OK;
766 /********************************************************************
767 _svcctl_LockServiceDatabase
768 ********************************************************************/
770 WERROR _svcctl_LockServiceDatabase(pipes_struct *p,
771 struct svcctl_LockServiceDatabase *r)
773 SERVICE_INFO *info = find_service_info_by_hnd( p, r->in.handle );
775 /* perform access checks */
777 if ( !info || (info->type != SVC_HANDLE_IS_SCM) )
778 return WERR_BADFID;
780 if ( !(info->access_granted & SC_RIGHT_MGR_LOCK) )
781 return WERR_ACCESS_DENIED;
783 /* Just open a handle. Doesn't actually lock anything */
785 return create_open_service_handle( p, r->out.lock, SVC_HANDLE_IS_DBLOCK, NULL, 0 );
788 /********************************************************************
789 _svcctl_UnlockServiceDatabase
790 ********************************************************************/
792 WERROR _svcctl_UnlockServiceDatabase(pipes_struct *p,
793 struct svcctl_UnlockServiceDatabase *r)
795 SERVICE_INFO *info = find_service_info_by_hnd( p, r->in.lock );
798 if ( !info || (info->type != SVC_HANDLE_IS_DBLOCK) )
799 return WERR_BADFID;
801 return close_policy_hnd( p, r->out.lock) ? WERR_OK : WERR_BADFID;
804 /********************************************************************
805 _svcctl_QueryServiceObjectSecurity
806 ********************************************************************/
808 WERROR _svcctl_QueryServiceObjectSecurity(pipes_struct *p,
809 struct svcctl_QueryServiceObjectSecurity *r)
811 SERVICE_INFO *info = find_service_info_by_hnd( p, r->in.handle );
812 SEC_DESC *sec_desc;
813 NTSTATUS status;
814 uint8_t *buffer = NULL;
815 size_t len = 0;
818 /* only support the SCM and individual services */
820 if ( !info || !(info->type & (SVC_HANDLE_IS_SERVICE|SVC_HANDLE_IS_SCM)) )
821 return WERR_BADFID;
823 /* check access reights (according to MSDN) */
825 if ( !(info->access_granted & STD_RIGHT_READ_CONTROL_ACCESS) )
826 return WERR_ACCESS_DENIED;
828 /* TODO: handle something besides DACL_SECURITY_INFORMATION */
830 if ( (r->in.security_flags & DACL_SECURITY_INFORMATION) != DACL_SECURITY_INFORMATION )
831 return WERR_INVALID_PARAM;
833 /* lookup the security descriptor and marshall it up for a reply */
835 if ( !(sec_desc = svcctl_get_secdesc( p->mem_ctx, info->name, get_root_nt_token() )) )
836 return WERR_NOMEM;
838 *r->out.needed = ndr_size_security_descriptor( sec_desc, 0 );
840 if ( *r->out.needed > r->in.buffer_size ) {
841 ZERO_STRUCTP( &r->out.buffer );
842 return WERR_INSUFFICIENT_BUFFER;
845 status = marshall_sec_desc(p->mem_ctx, sec_desc, &buffer, &len);
846 if (!NT_STATUS_IS_OK(status)) {
847 return ntstatus_to_werror(status);
850 *r->out.needed = len;
851 r->out.buffer = buffer;
853 return WERR_OK;
856 /********************************************************************
857 ********************************************************************/
859 WERROR _svcctl_set_service_sec( pipes_struct *p, SVCCTL_Q_SET_SERVICE_SEC *q_u, SVCCTL_R_SET_SERVICE_SEC *r_u )
861 SERVICE_INFO *info = find_service_info_by_hnd( p, &q_u->handle );
862 SEC_DESC *sec_desc = NULL;
863 uint32 required_access;
865 if ( !info || !(info->type & (SVC_HANDLE_IS_SERVICE|SVC_HANDLE_IS_SCM)) )
866 return WERR_BADFID;
868 /* can't set the security de4scriptor on the ServiceControlManager */
870 if ( info->type == SVC_HANDLE_IS_SCM )
871 return WERR_ACCESS_DENIED;
873 /* check the access on the open handle */
875 switch ( q_u->security_flags ) {
876 case DACL_SECURITY_INFORMATION:
877 required_access = STD_RIGHT_WRITE_DAC_ACCESS;
878 break;
880 case OWNER_SECURITY_INFORMATION:
881 case GROUP_SECURITY_INFORMATION:
882 required_access = STD_RIGHT_WRITE_OWNER_ACCESS;
883 break;
885 case SACL_SECURITY_INFORMATION:
886 return WERR_INVALID_PARAM;
887 default:
888 return WERR_INVALID_PARAM;
891 if ( !(info->access_granted & required_access) )
892 return WERR_ACCESS_DENIED;
894 /* read the security descfriptor */
896 if ( !sec_io_desc("", &sec_desc, &q_u->buffer.prs, 0 ) )
897 return WERR_NOMEM;
899 /* store the new SD */
901 if ( !svcctl_set_secdesc( p->mem_ctx, info->name, sec_desc, p->pipe_user.nt_user_token ) )
902 return WERR_ACCESS_DENIED;
904 return WERR_OK;
908 WERROR _svcctl_DeleteService(pipes_struct *p, struct svcctl_DeleteService *r)
910 p->rng_fault_state = True;
911 return WERR_NOT_SUPPORTED;
914 WERROR _svcctl_SetServiceObjectSecurity(pipes_struct *p, struct svcctl_SetServiceObjectSecurity *r)
916 p->rng_fault_state = True;
917 return WERR_NOT_SUPPORTED;
920 WERROR _svcctl_SetServiceStatus(pipes_struct *p, struct svcctl_SetServiceStatus *r)
922 p->rng_fault_state = True;
923 return WERR_NOT_SUPPORTED;
926 WERROR _svcctl_NotifyBootConfigStatus(pipes_struct *p, struct svcctl_NotifyBootConfigStatus *r)
928 p->rng_fault_state = True;
929 return WERR_NOT_SUPPORTED;
932 WERROR _svcctl_SCSetServiceBitsW(pipes_struct *p, struct svcctl_SCSetServiceBitsW *r)
934 p->rng_fault_state = True;
935 return WERR_NOT_SUPPORTED;
938 WERROR _svcctl_ChangeServiceConfigW(pipes_struct *p, struct svcctl_ChangeServiceConfigW *r)
940 p->rng_fault_state = True;
941 return WERR_NOT_SUPPORTED;
944 WERROR _svcctl_CreateServiceW(pipes_struct *p, struct svcctl_CreateServiceW *r)
946 p->rng_fault_state = True;
947 return WERR_NOT_SUPPORTED;
950 WERROR _svcctl_EnumDependentServicesW(pipes_struct *p, struct svcctl_EnumDependentServicesW *r)
952 p->rng_fault_state = True;
953 return WERR_NOT_SUPPORTED;
956 WERROR _svcctl_EnumServicesStatusW(pipes_struct *p, struct svcctl_EnumServicesStatusW *r)
958 p->rng_fault_state = True;
959 return WERR_NOT_SUPPORTED;
962 WERROR _svcctl_QueryServiceConfigW(pipes_struct *p, struct svcctl_QueryServiceConfigW *r)
964 p->rng_fault_state = True;
965 return WERR_NOT_SUPPORTED;
968 WERROR _svcctl_QueryServiceLockStatusW(pipes_struct *p, struct svcctl_QueryServiceLockStatusW *r)
970 p->rng_fault_state = True;
971 return WERR_NOT_SUPPORTED;
974 WERROR _svcctl_GetServiceKeyNameW(pipes_struct *p, struct svcctl_GetServiceKeyNameW *r)
976 p->rng_fault_state = True;
977 return WERR_NOT_SUPPORTED;
980 WERROR _svcctl_SCSetServiceBitsA(pipes_struct *p, struct svcctl_SCSetServiceBitsA *r)
982 p->rng_fault_state = True;
983 return WERR_NOT_SUPPORTED;
986 WERROR _svcctl_ChangeServiceConfigA(pipes_struct *p, struct svcctl_ChangeServiceConfigA *r)
988 p->rng_fault_state = True;
989 return WERR_NOT_SUPPORTED;
992 WERROR _svcctl_CreateServiceA(pipes_struct *p, struct svcctl_CreateServiceA *r)
994 p->rng_fault_state = True;
995 return WERR_NOT_SUPPORTED;
998 WERROR _svcctl_EnumDependentServicesA(pipes_struct *p, struct svcctl_EnumDependentServicesA *r)
1000 p->rng_fault_state = True;
1001 return WERR_NOT_SUPPORTED;
1004 WERROR _svcctl_EnumServicesStatusA(pipes_struct *p, struct svcctl_EnumServicesStatusA *r)
1006 p->rng_fault_state = True;
1007 return WERR_NOT_SUPPORTED;
1010 WERROR _svcctl_OpenSCManagerA(pipes_struct *p, struct svcctl_OpenSCManagerA *r)
1012 p->rng_fault_state = True;
1013 return WERR_NOT_SUPPORTED;
1016 WERROR _svcctl_OpenServiceA(pipes_struct *p, struct svcctl_OpenServiceA *r)
1018 p->rng_fault_state = True;
1019 return WERR_NOT_SUPPORTED;
1022 WERROR _svcctl_QueryServiceConfigA(pipes_struct *p, struct svcctl_QueryServiceConfigA *r)
1024 p->rng_fault_state = True;
1025 return WERR_NOT_SUPPORTED;
1028 WERROR _svcctl_QueryServiceLockStatusA(pipes_struct *p, struct svcctl_QueryServiceLockStatusA *r)
1030 p->rng_fault_state = True;
1031 return WERR_NOT_SUPPORTED;
1034 WERROR _svcctl_StartServiceA(pipes_struct *p, struct svcctl_StartServiceA *r)
1036 p->rng_fault_state = True;
1037 return WERR_NOT_SUPPORTED;
1040 WERROR _svcctl_GetServiceDisplayNameA(pipes_struct *p, struct svcctl_GetServiceDisplayNameA *r)
1042 p->rng_fault_state = True;
1043 return WERR_NOT_SUPPORTED;
1046 WERROR _svcctl_GetServiceKeyNameA(pipes_struct *p, struct svcctl_GetServiceKeyNameA *r)
1048 p->rng_fault_state = True;
1049 return WERR_NOT_SUPPORTED;
1052 WERROR _svcctl_GetCurrentGroupeStateW(pipes_struct *p, struct svcctl_GetCurrentGroupeStateW *r)
1054 p->rng_fault_state = True;
1055 return WERR_NOT_SUPPORTED;
1058 WERROR _svcctl_EnumServiceGroupW(pipes_struct *p, struct svcctl_EnumServiceGroupW *r)
1060 p->rng_fault_state = True;
1061 return WERR_NOT_SUPPORTED;
1064 WERROR _svcctl_ChangeServiceConfig2A(pipes_struct *p, struct svcctl_ChangeServiceConfig2A *r)
1066 p->rng_fault_state = True;
1067 return WERR_NOT_SUPPORTED;
1070 WERROR _svcctl_ChangeServiceConfig2W(pipes_struct *p, struct svcctl_ChangeServiceConfig2W *r)
1072 p->rng_fault_state = True;
1073 return WERR_NOT_SUPPORTED;
1076 WERROR _svcctl_QueryServiceConfig2A(pipes_struct *p, struct svcctl_QueryServiceConfig2A *r)
1078 p->rng_fault_state = True;
1079 return WERR_NOT_SUPPORTED;
1082 WERROR _svcctl_QueryServiceConfig2W(pipes_struct *p, struct svcctl_QueryServiceConfig2W *r)
1084 p->rng_fault_state = True;
1085 return WERR_NOT_SUPPORTED;
1088 WERROR _svcctl_QueryServiceStatusEx(pipes_struct *p, struct svcctl_QueryServiceStatusEx *r)
1090 p->rng_fault_state = True;
1091 return WERR_NOT_SUPPORTED;
1094 WERROR _EnumServicesStatusExA(pipes_struct *p, struct EnumServicesStatusExA *r)
1096 p->rng_fault_state = True;
1097 return WERR_NOT_SUPPORTED;
1100 WERROR _EnumServicesStatusExW(pipes_struct *p, struct EnumServicesStatusExW *r)
1102 p->rng_fault_state = True;
1103 return WERR_NOT_SUPPORTED;
1106 WERROR _svcctl_SCSendTSMessage(pipes_struct *p, struct svcctl_SCSendTSMessage *r)
1108 p->rng_fault_state = True;
1109 return WERR_NOT_SUPPORTED;