[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / libmsrpc / libmsrpc_internal.c
blob1323567aaff208250ca6387c1440b6a1432d0045
2 /*
3 * Unix SMB/CIFS implementation.
4 * MS-RPC client internal functions
5 * Copyright (C) Chris Nicholls 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.
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, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "libmsrpc.h"
24 #include "libmsrpc_internal.h"
26 char *cac_unistr_to_str( TALLOC_CTX * mem_ctx, uint16 * src, int num_bytes );
27 char *talloc_unistr2_to_ascii( TALLOC_CTX * mem_ctx, UNISTR2 str );
28 char *cac_unistr_ascii( TALLOC_CTX * mem_ctx, UNISTR src );
30 /*used to get a struct rpc_pipe_client* to be passed into rpccli* calls*/
31 struct rpc_pipe_client *cac_GetPipe( CacServerHandle * hnd, int pi_idx )
33 SMBCSRV *srv = NULL;
34 struct rpc_pipe_client *pipe_hnd = NULL;
36 if ( !hnd ) {
37 return NULL;
40 if ( hnd->_internal.pipes[pi_idx] == False ) {
41 hnd->status = NT_STATUS_INVALID_HANDLE;
42 return NULL;
45 srv = cac_GetServer( hnd );
46 if ( !srv ) {
47 hnd->status = NT_STATUS_INVALID_CONNECTION;
48 return NULL;
51 pipe_hnd = srv->cli->pipe_list;
53 while ( pipe_hnd != NULL && pipe_hnd->pipe_idx != pi_idx ) {
54 pipe_hnd = pipe_hnd->next;
57 return pipe_hnd;
60 /*takes a string like HKEY_LOCAL_MACHINE\HARDWARE\ACPI and returns the reg_type code and then a pointer to the start of the path (HARDWARE)*/
61 int cac_ParseRegPath( char *path, uint32 * reg_type, char **key_name )
64 if ( !path )
65 return CAC_FAILURE;
67 if ( strncmp( path, "HKLM", 4 ) == 0 ) {
68 *reg_type = HKEY_LOCAL_MACHINE;
69 *key_name = ( path[4] == '\\' ) ? path + 5 : NULL;
70 } else if ( strncmp( path, "HKEY_LOCAL_MACHINE", 18 ) == 0 ) {
71 *reg_type = HKEY_LOCAL_MACHINE;
72 *key_name = ( path[18] == '\\' ) ? path + 19 : NULL;
73 } else if ( strncmp( path, "HKCR", 4 ) == 0 ) {
74 *reg_type = HKEY_CLASSES_ROOT;
75 *key_name = ( path[4] == '\\' ) ? path + 5 : NULL;
76 } else if ( strncmp( path, "HKEY_CLASSES_ROOT", 17 ) == 0 ) {
77 *reg_type = HKEY_CLASSES_ROOT;
78 *key_name = ( path[17] == '\\' ) ? path + 18 : NULL;
79 } else if ( strncmp( path, "HKU", 3 ) == 0 ) {
80 *reg_type = HKEY_USERS;
81 *key_name = ( path[3] == '\\' ) ? path + 4 : NULL;
82 } else if ( strncmp( path, "HKEY_USERS", 10 ) == 0 ) {
83 *reg_type = HKEY_USERS;
84 *key_name = ( path[10] == '\\' ) ? path + 11 : NULL;
85 } else if ( strncmp( path, "HKPD", 4 ) == 0 ) {
86 *reg_type = HKEY_PERFORMANCE_DATA;
87 *key_name = ( path[4] == '\\' ) ? path + 5 : NULL;
88 } else if ( strncmp( path, "HKEY_PERFORMANCE_DATA", 21 ) == 0 ) {
89 *reg_type = HKEY_PERFORMANCE_DATA;
90 *key_name = ( path[21] == '\\' ) ? path + 22 : NULL;
91 } else {
92 return CAC_FAILURE;
95 return CAC_SUCCESS;
100 RPC_DATA_BLOB *cac_MakeRpcDataBlob( TALLOC_CTX * mem_ctx, uint32 data_type,
101 REG_VALUE_DATA data )
103 RPC_DATA_BLOB *blob = NULL;
104 int i;
105 uint32 size = 0;
106 uint8 *multi = NULL;
107 uint32 multi_idx = 0;
109 blob = talloc( mem_ctx, RPC_DATA_BLOB );
111 if ( !blob ) {
112 errno = ENOMEM;
113 return NULL;
116 switch ( data_type ) {
117 case REG_SZ:
118 init_rpc_blob_str( blob, data.reg_sz,
119 strlen( data.reg_sz ) + 1 );
120 break;
122 case REG_EXPAND_SZ:
123 init_rpc_blob_str( blob, data.reg_expand_sz,
124 strlen( data.reg_sz ) + 1 );
125 break;
127 case REG_BINARY:
128 init_rpc_blob_bytes( blob, data.reg_binary.data,
129 data.reg_binary.data_length );
130 break;
132 case REG_DWORD:
133 init_rpc_blob_uint32( blob, data.reg_dword );
134 break;
136 case REG_DWORD_BE:
137 init_rpc_blob_uint32( blob, data.reg_dword_be );
138 break;
140 case REG_MULTI_SZ:
141 /*need to find the size */
142 for ( i = 0; i < data.reg_multi_sz.num_strings; i++ ) {
143 size += strlen( data.reg_multi_sz.strings[i] ) + 1;
146 /**need a whole bunch of unicode strings in a row (seperated by null characters), with an extra null-character on the end*/
148 multi = TALLOC_ZERO_ARRAY( mem_ctx, uint8, ( size + 1 ) * 2 ); /*size +1 for the extra null character */
149 if ( !multi ) {
150 errno = ENOMEM;
151 break;
154 /*do it using rpcstr_push() */
155 multi_idx = 0;
156 for ( i = 0; i < data.reg_multi_sz.num_strings; i++ ) {
157 size_t len =
158 strlen( data.reg_multi_sz.strings[i] ) + 1;
160 rpcstr_push( ( multi + multi_idx ),
161 data.reg_multi_sz.strings[i], len * 2,
162 STR_TERMINATE );
164 /* x2 becuase it is a uint8 buffer */
165 multi_idx += len * 2;
168 /*now initialize the buffer as binary data */
169 init_rpc_blob_bytes( blob, multi, ( size + 1 ) * 2 );
171 break;
173 default:
174 TALLOC_FREE( blob );
175 blob = NULL;
176 return NULL;
179 if ( !( blob->buffer ) ) {
180 TALLOC_FREE( blob );
181 return NULL;
184 return blob;
187 /*turns a string in a uint16 array to a char array*/
188 char *cac_unistr_to_str( TALLOC_CTX * mem_ctx, uint16 * src, int num_bytes )
190 char *buf;
192 int i = 0;
194 uint32 str_len = 0;
196 /*don't allocate more space than we need */
197 while ( ( str_len ) < num_bytes / 2 && src[str_len] != 0x0000 )
198 str_len++;
200 /*need room for a '\0' */
201 str_len++;
203 buf = TALLOC_ARRAY( mem_ctx, char, str_len );
205 if ( !buf ) {
206 return NULL;
209 for ( i = 0; i < num_bytes / 2; i++ ) {
210 buf[i] = ( ( char * ) src )[2 * i];
213 buf[str_len - 1] = '\0';
215 return buf;
218 REG_VALUE_DATA *cac_MakeRegValueData( TALLOC_CTX * mem_ctx, uint32 data_type,
219 REGVAL_BUFFER buf )
221 REG_VALUE_DATA *data;
223 uint32 i;
225 /*all of the following used for MULTI_SZ data */
226 uint32 size = 0;
227 uint32 len = 0;
228 uint32 multi_idx = 0;
229 uint32 num_strings = 0;
230 char **strings = NULL;
232 data = talloc( mem_ctx, REG_VALUE_DATA );
233 if ( !data ) {
234 errno = ENOMEM;
235 return NULL;
238 switch ( data_type ) {
239 case REG_SZ:
240 data->reg_sz =
241 cac_unistr_to_str( mem_ctx, buf.buffer, buf.buf_len );
242 if ( !data->reg_sz ) {
243 TALLOC_FREE( data );
244 errno = ENOMEM;
245 data = NULL;
248 break;
250 case REG_EXPAND_SZ:
251 data->reg_expand_sz =
252 cac_unistr_to_str( mem_ctx, buf.buffer, buf.buf_len );
254 if ( !data->reg_expand_sz ) {
255 TALLOC_FREE( data );
256 errno = ENOMEM;
257 data = NULL;
260 break;
262 case REG_BINARY:
263 size = buf.buf_len;
265 data->reg_binary.data_length = size;
267 if (size) {
268 data->reg_binary.data =
269 ( uint8 * ) TALLOC_MEMDUP( mem_ctx, buf.buffer, size );
270 if ( !data->reg_binary.data ) {
271 TALLOC_FREE( data );
272 errno = ENOMEM;
273 data = NULL;
275 } else {
276 data->reg_binary.data = NULL;
278 break;
280 case REG_DWORD:
281 data->reg_dword = *( ( uint32 * ) buf.buffer );
282 break;
284 case REG_DWORD_BE:
285 data->reg_dword_be = *( ( uint32 * ) buf.buffer );
286 break;
288 case REG_MULTI_SZ:
289 size = buf.buf_len;
291 /*find out how many strings there are. size is # of bytes and we want to work uint16 */
292 for ( i = 0; i < ( size / 2 - 1 ); i++ ) {
293 if ( buf.buffer[i] == 0x0000 )
294 num_strings++;
296 /*buffer is suppsed to be terminated with \0\0, but it might not be */
297 if ( buf.buffer[i] == 0x0000
298 && buf.buffer[i + 1] == 0x0000 )
299 break;
302 if (num_strings) {
303 strings = TALLOC_ARRAY( mem_ctx, char *, num_strings );
305 if ( !strings ) {
306 errno = ENOMEM;
307 TALLOC_FREE( data );
308 break;
310 } else {
311 strings = NULL;
314 if ( num_strings == 0 ) /*then our work here is done */
315 break;
317 for ( i = 0; i < num_strings; i++ ) {
318 /*find out how many characters are in this string */
319 len = 0;
320 /*make sure we don't go past the end of the buffer and keep looping until we have a uni \0 */
321 while ( multi_idx + len < size / 2
322 && buf.buffer[multi_idx + len] != 0x0000 )
323 len++;
325 /*stay aware of the \0\0 */
326 len++;
328 strings[i] = TALLOC_ZERO_ARRAY( mem_ctx, char, len );
330 /*pull out the unicode string */
331 rpcstr_pull( strings[i], ( buf.buffer + multi_idx ),
332 len, -1, STR_TERMINATE );
334 /*keep track of where we are in the bigger array */
335 multi_idx += len;
338 data->reg_multi_sz.num_strings = num_strings;
339 data->reg_multi_sz.strings = strings;
341 break;
343 default:
344 TALLOC_FREE( data );
345 data = NULL;
348 return data;
351 SAM_USERINFO_CTR *cac_MakeUserInfoCtr( TALLOC_CTX * mem_ctx,
352 CacUserInfo * info )
354 SAM_USERINFO_CTR *ctr = NULL;
356 /*the flags we are 'setting'- include/passdb.h */
357 uint32 flags =
358 ACCT_USERNAME | ACCT_FULL_NAME | ACCT_PRIMARY_GID |
359 ACCT_DESCRIPTION | ACCT_COMMENT | ACCT_HOME_DIR |
360 ACCT_HOME_DRIVE | ACCT_LOGON_SCRIPT | ACCT_PROFILE |
361 ACCT_WORKSTATIONS | ACCT_FLAGS;
363 NTTIME logon_time;
364 NTTIME logoff_time;
365 NTTIME kickoff_time;
366 NTTIME pass_last_set_time;
367 NTTIME pass_can_change_time;
368 NTTIME pass_must_change_time;
370 UNISTR2 user_name;
371 UNISTR2 full_name;
372 UNISTR2 home_dir;
373 UNISTR2 dir_drive;
374 UNISTR2 log_scr;
375 UNISTR2 prof_path;
376 UNISTR2 desc;
377 UNISTR2 wkstas;
378 UNISTR2 mung_dial;
379 UNISTR2 unk;
381 ctr = talloc( mem_ctx, SAM_USERINFO_CTR );
382 if ( !ctr )
383 return NULL;
385 ZERO_STRUCTP( ctr->info.id23 );
387 ctr->info.id21 = talloc( mem_ctx, SAM_USER_INFO_21 );
388 if ( !ctr->info.id21 )
389 return NULL;
391 ctr->switch_value = 21;
393 ZERO_STRUCTP( ctr->info.id21 );
395 unix_to_nt_time( &logon_time, info->logon_time );
396 unix_to_nt_time( &logoff_time, info->logoff_time );
397 unix_to_nt_time( &kickoff_time, info->kickoff_time );
398 unix_to_nt_time( &pass_last_set_time, info->pass_last_set_time );
399 unix_to_nt_time( &pass_can_change_time, info->pass_can_change_time );
400 unix_to_nt_time( &pass_must_change_time,
401 info->pass_must_change_time );
403 /*initialize the strings */
404 init_unistr2( &user_name, info->username, UNI_STR_TERMINATE );
405 init_unistr2( &full_name, info->full_name, UNI_STR_TERMINATE );
406 init_unistr2( &home_dir, info->home_dir, UNI_STR_TERMINATE );
407 init_unistr2( &dir_drive, info->home_drive, UNI_STR_TERMINATE );
408 init_unistr2( &log_scr, info->logon_script, UNI_STR_TERMINATE );
409 init_unistr2( &prof_path, info->profile_path, UNI_STR_TERMINATE );
410 init_unistr2( &desc, info->description, UNI_STR_TERMINATE );
411 init_unistr2( &wkstas, info->workstations, UNI_STR_TERMINATE );
412 init_unistr2( &unk, "\0", UNI_STR_TERMINATE );
413 init_unistr2( &mung_dial, info->dial, UNI_STR_TERMINATE );
415 /*manually set passmustchange */
416 ctr->info.id21->passmustchange =
417 ( info->pass_must_change ) ? 0x01 : 0x00;
419 init_sam_user_info21W( ctr->info.id21, &logon_time, &logoff_time, &kickoff_time, &pass_last_set_time, &pass_can_change_time, &pass_must_change_time, &user_name, &full_name, &home_dir, &dir_drive, &log_scr, &prof_path, &desc, &wkstas, &unk, &mung_dial, info->lm_password, info->nt_password, info->rid, info->group_rid, info->acb_mask, flags, 168, /*logon divs */
420 info->logon_hours,
421 info->bad_passwd_count, info->logon_count );
423 return ctr;
427 char *talloc_unistr2_to_ascii( TALLOC_CTX * mem_ctx, UNISTR2 str )
429 char *buf = NULL;
431 if ( !mem_ctx )
432 return NULL;
434 buf = TALLOC_ARRAY( mem_ctx, char, ( str.uni_str_len + 1 ) );
435 if ( !buf )
436 return NULL;
438 unistr2_to_ascii( buf, &str, str.uni_str_len + 1 );
440 return buf;
443 CacUserInfo *cac_MakeUserInfo( TALLOC_CTX * mem_ctx, SAM_USERINFO_CTR * ctr )
445 CacUserInfo *info = NULL;
446 SAM_USER_INFO_21 *id21 = NULL;
448 if ( !ctr || ctr->switch_value != 21 )
449 return NULL;
451 info = talloc( mem_ctx, CacUserInfo );
452 if ( !info )
453 return NULL;
455 id21 = ctr->info.id21;
457 ZERO_STRUCTP( info );
459 info->logon_time = nt_time_to_unix( id21->logon_time );
460 info->logoff_time = nt_time_to_unix( id21->logoff_time );
461 info->kickoff_time = nt_time_to_unix( id21->kickoff_time );
462 info->pass_last_set_time =
463 nt_time_to_unix( id21->pass_last_set_time );
464 info->pass_can_change_time =
465 nt_time_to_unix( id21->pass_can_change_time );
466 info->pass_must_change_time =
467 nt_time_to_unix( id21->pass_must_change_time );
469 info->username =
470 talloc_unistr2_to_ascii( mem_ctx, id21->uni_user_name );
471 if ( !info->username )
472 return NULL;
474 info->full_name =
475 talloc_unistr2_to_ascii( mem_ctx, id21->uni_full_name );
476 if ( !info->full_name )
477 return NULL;
479 info->home_dir =
480 talloc_unistr2_to_ascii( mem_ctx, id21->uni_home_dir );
481 if ( !info->home_dir )
482 return NULL;
484 info->home_drive =
485 talloc_unistr2_to_ascii( mem_ctx, id21->uni_dir_drive );
486 if ( !info->home_drive )
487 return NULL;
489 info->logon_script =
490 talloc_unistr2_to_ascii( mem_ctx, id21->uni_logon_script );
491 if ( !info->logon_script )
492 return NULL;
494 info->profile_path =
495 talloc_unistr2_to_ascii( mem_ctx, id21->uni_profile_path );
496 if ( !info->profile_path )
497 return NULL;
499 info->description =
500 talloc_unistr2_to_ascii( mem_ctx, id21->uni_acct_desc );
501 if ( !info->description )
502 return NULL;
504 info->workstations =
505 talloc_unistr2_to_ascii( mem_ctx, id21->uni_workstations );
506 if ( !info->workstations )
507 return NULL;
509 info->dial =
510 talloc_unistr2_to_ascii( mem_ctx, id21->uni_munged_dial );
511 if ( !info->dial )
512 return NULL;
514 info->rid = id21->user_rid;
515 info->group_rid = id21->group_rid;
516 info->acb_mask = id21->acb_info;
517 info->bad_passwd_count = id21->bad_password_count;
518 info->logon_count = id21->logon_count;
520 memcpy( info->nt_password, id21->nt_pwd, 8 );
521 memcpy( info->lm_password, id21->lm_pwd, 8 );
523 info->logon_hours =
524 ( LOGON_HRS * ) TALLOC_MEMDUP( mem_ctx, &( id21->logon_hrs ),
525 sizeof( LOGON_HRS ) );
526 if ( !info->logon_hours )
527 return NULL;
529 info->pass_must_change = ( id21->passmustchange ) ? True : False;
531 return info;
534 CacGroupInfo *cac_MakeGroupInfo( TALLOC_CTX * mem_ctx, GROUP_INFO_CTR * ctr )
536 CacGroupInfo *info = NULL;
538 if ( !mem_ctx || !ctr || ctr->switch_value1 != 1 )
539 return NULL;
541 info = talloc( mem_ctx, CacGroupInfo );
542 if ( !info )
543 return NULL;
545 info->name =
546 talloc_unistr2_to_ascii( mem_ctx,
547 ctr->group.info1.uni_acct_name );
548 if ( !info->name )
549 return NULL;
551 info->description =
552 talloc_unistr2_to_ascii( mem_ctx,
553 ctr->group.info1.uni_acct_desc );
554 if ( !info->description )
555 return NULL;
557 info->num_members = ctr->group.info1.num_members;
559 return info;
562 GROUP_INFO_CTR *cac_MakeGroupInfoCtr( TALLOC_CTX * mem_ctx,
563 CacGroupInfo * info )
565 GROUP_INFO_CTR *ctr = NULL;
567 if ( !mem_ctx || !info )
568 return NULL;
570 ctr = talloc( mem_ctx, GROUP_INFO_CTR );
571 if ( !ctr )
572 return NULL;
574 ctr->switch_value1 = 1;
576 init_samr_group_info1( &( ctr->group.info1 ), info->name,
577 info->description, info->num_members );
579 return ctr;
582 CacAliasInfo *cac_MakeAliasInfo( TALLOC_CTX * mem_ctx, ALIAS_INFO_CTR ctr )
584 CacGroupInfo *info = NULL;
586 if ( !mem_ctx || ctr.level != 1 )
587 return NULL;
589 info = talloc( mem_ctx, CacAliasInfo );
590 if ( !info )
591 return NULL;
593 info->name =
594 talloc_unistr2_to_ascii( mem_ctx,
595 *( ctr.alias.info1.name.string ) );
596 if ( !info->name )
597 return NULL;
599 info->description =
600 talloc_unistr2_to_ascii( mem_ctx,
601 *( ctr.alias.info1.description.
602 string ) );
603 if ( !info->name )
604 return NULL;
606 info->num_members = ctr.alias.info1.num_member;
608 return info;
611 ALIAS_INFO_CTR *cac_MakeAliasInfoCtr( TALLOC_CTX * mem_ctx,
612 CacAliasInfo * info )
614 ALIAS_INFO_CTR *ctr = NULL;
616 if ( !mem_ctx || !info )
617 return NULL;
619 ctr = talloc( mem_ctx, ALIAS_INFO_CTR );
620 if ( !ctr )
621 return NULL;
623 ctr->level = 1;
625 init_samr_alias_info1( &( ctr->alias.info1 ), info->name,
626 info->num_members, info->description );
628 return ctr;
631 CacDomainInfo *cac_MakeDomainInfo( TALLOC_CTX * mem_ctx,
632 SAM_UNK_INFO_1 * info1,
633 SAM_UNK_INFO_2 * info2,
634 SAM_UNK_INFO_12 * info12 )
636 CacDomainInfo *info = NULL;
638 if ( !mem_ctx || !info1 || !info2 || !info12 )
639 return NULL;
641 info = talloc( mem_ctx, CacDomainInfo );
642 if ( !info )
643 return NULL;
645 info->min_pass_length = info1->min_length_password;
646 info->pass_history = info1->password_history;
648 cac_InitCacTime( &( info->expire ), info1->expire );
649 cac_InitCacTime( &( info->min_pass_age ), info1->min_passwordage );
651 info->server_role = info2->server_role;
652 info->num_users = info2->num_domain_usrs;
653 info->num_domain_groups = info2->num_domain_grps;
654 info->num_local_groups = info2->num_local_grps;
656 /*if these have been ZERO'd out we need to know. uni_str_len will be 0 */
657 if ( info2->uni_comment.uni_str_len == 0 ) {
658 info->comment = talloc_strdup( mem_ctx, "\0" );
659 } else {
660 info->comment =
661 talloc_unistr2_to_ascii( mem_ctx,
662 info2->uni_comment );
665 if ( info2->uni_domain.uni_str_len == 0 ) {
666 info->domain_name = talloc_strdup( mem_ctx, "\0" );
667 } else {
668 info->domain_name =
669 talloc_unistr2_to_ascii( mem_ctx, info2->uni_domain );
672 if ( info2->uni_server.uni_str_len == 0 ) {
673 info->server_name = talloc_strdup( mem_ctx, "\0" );
674 } else {
675 info->server_name =
676 talloc_unistr2_to_ascii( mem_ctx, info2->uni_server );
680 cac_InitCacTime( &( info->lockout_duration ), info12->duration );
681 cac_InitCacTime( &( info->lockout_reset ), info12->reset_count );
682 info->num_bad_attempts = info12->bad_attempt_lockout;
684 return info;
687 char *cac_unistr_ascii( TALLOC_CTX * mem_ctx, UNISTR src )
689 char *buf;
690 uint32 len;
692 if ( !mem_ctx || !src.buffer )
693 return NULL;
695 len = unistrlen( src.buffer ) + 1;
697 buf = TALLOC_ZERO_ARRAY( mem_ctx, char, len );
698 if ( !buf )
699 return NULL;
701 rpcstr_pull( buf, src.buffer, len, -1, STR_TERMINATE );
703 return buf;
706 CacService *cac_MakeServiceArray( TALLOC_CTX * mem_ctx,
707 ENUM_SERVICES_STATUS * svc,
708 uint32 num_services )
710 int i;
711 CacService *services = NULL;
713 if ( !mem_ctx || !svc )
714 return NULL;
716 if (num_services) {
717 services = TALLOC_ZERO_ARRAY( mem_ctx, CacService, num_services );
718 if ( !services )
719 return NULL;
720 } else {
721 services = NULL;
724 for ( i = 0; i < num_services; i++ ) {
725 services[i].service_name =
726 cac_unistr_ascii( mem_ctx, svc[i].servicename );
727 services[i].display_name =
728 cac_unistr_ascii( mem_ctx, svc[i].displayname );
730 if ( !services[i].service_name || !services[i].display_name )
731 return NULL;
733 services[i].status = svc[i].status;
736 return services;
739 int cac_InitCacServiceConfig( TALLOC_CTX * mem_ctx, SERVICE_CONFIG * src,
740 CacServiceConfig * dest )
742 if ( !src || !dest )
743 return CAC_FAILURE;
745 dest->exe_path =
746 talloc_unistr2_to_ascii( mem_ctx, *src->executablepath );
747 if ( !dest->exe_path )
748 return CAC_FAILURE;
750 dest->load_order_group =
751 talloc_unistr2_to_ascii( mem_ctx, *src->loadordergroup );
752 if ( !dest->load_order_group )
753 return CAC_FAILURE;
755 dest->dependencies =
756 talloc_unistr2_to_ascii( mem_ctx, *src->dependencies );
757 if ( !dest->dependencies )
758 return CAC_FAILURE;
760 dest->start_name =
761 talloc_unistr2_to_ascii( mem_ctx, *src->startname );
762 if ( !dest->start_name )
763 return CAC_FAILURE;
765 dest->display_name =
766 talloc_unistr2_to_ascii( mem_ctx, *src->displayname );
767 if ( !dest->display_name )
768 return CAC_FAILURE;
770 dest->type = src->service_type;
771 dest->start_type = src->start_type;
772 dest->error_control = src->error_control;
773 dest->tag_id = src->tag_id;
775 return CAC_SUCCESS;