Samba 3: added Samba 3.0.24 sources
[tomato.git] / release / src / router / samba3 / source / utils / profiles.c
blobd40a2deea3bac6a76b687a696ba298bac5bf3875
1 /*
2 Samba Unix/Linux SMB client utility profiles.c
4 Copyright (C) Richard Sharpe, <rsharpe@richardsharpe.com> 2002
5 Copyright (C) Jelmer Vernooij (conversion to popt) 2003
6 Copyright (C) Gerald (Jerry) Carter 2005
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "includes.h"
24 #include "regfio.h"
26 /* GLOBAL VARIABLES */
28 DOM_SID old_sid, new_sid;
29 int change = 0, new_val = 0;
32 /********************************************************************
33 ********************************************************************/
35 static BOOL swap_sid_in_acl( SEC_DESC *sd, DOM_SID *s1, DOM_SID *s2 )
37 SEC_ACL *acl = sd->dacl;
38 int i;
39 BOOL update = False;
41 if ( sid_equal( sd->owner_sid, s1 ) ) {
42 sid_copy( sd->owner_sid, s2 );
43 update = True;
46 if ( sid_equal( sd->grp_sid, s1 ) ) {
47 sid_copy( sd->grp_sid, s2 );
48 update = True;
51 for ( i=0; i<acl->num_aces; i++ ) {
52 if ( sid_equal( &acl->ace[i].trustee, s1 ) ) {
53 sid_copy( &acl->ace[i].trustee, s2 );
54 update = True;
58 return update;
61 /********************************************************************
62 ********************************************************************/
64 static BOOL copy_registry_tree( REGF_FILE *infile, REGF_NK_REC *nk,
65 REGF_NK_REC *parent, REGF_FILE *outfile,
66 const char *parentpath )
68 REGF_NK_REC *key, *subkey;
69 SEC_DESC *new_sd;
70 REGVAL_CTR *values;
71 REGSUBKEY_CTR *subkeys;
72 int i;
73 pstring path;
75 /* swap out the SIDs in the security descriptor */
77 if ( !(new_sd = dup_sec_desc( outfile->mem_ctx, nk->sec_desc->sec_desc )) ) {
78 fprintf( stderr, "Failed to copy security descriptor!\n" );
79 return False;
82 if ( swap_sid_in_acl( new_sd, &old_sid, &new_sid ) )
83 DEBUG(2,("Updating ACL for %s\n", nk->keyname ));
85 if ( !(subkeys = TALLOC_ZERO_P( NULL, REGSUBKEY_CTR )) ) {
86 DEBUG(0,("copy_registry_tree: talloc() failure!\n"));
87 return False;
90 if ( !(values = TALLOC_ZERO_P( subkeys, REGVAL_CTR )) ) {
91 DEBUG(0,("copy_registry_tree: talloc() failure!\n"));
92 return False;
95 /* copy values into the REGVAL_CTR */
97 for ( i=0; i<nk->num_values; i++ ) {
98 regval_ctr_addvalue( values, nk->values[i].valuename, nk->values[i].type,
99 (const char *)nk->values[i].data, (nk->values[i].data_size & ~VK_DATA_IN_OFFSET) );
102 /* copy subkeys into the REGSUBKEY_CTR */
104 while ( (subkey = regfio_fetch_subkey( infile, nk )) ) {
105 regsubkey_ctr_addkey( subkeys, subkey->keyname );
108 key = regfio_write_key( outfile, nk->keyname, values, subkeys, new_sd, parent );
110 /* write each one of the subkeys out */
112 pstr_sprintf( path, "%s%s%s", parentpath, parent ? "\\" : "", nk->keyname );
114 nk->subkey_index = 0;
115 while ( (subkey = regfio_fetch_subkey( infile, nk )) ) {
116 if ( !copy_registry_tree( infile, subkey, key, outfile, path ) )
117 return False;
120 /* values is a talloc()'d child of subkeys here so just throw it all away */
122 TALLOC_FREE( subkeys );
124 DEBUG(1,("[%s]\n", path));
126 return True;
129 /*********************************************************************
130 *********************************************************************/
132 int main( int argc, char *argv[] )
134 int opt;
135 REGF_FILE *infile, *outfile;
136 REGF_NK_REC *nk;
137 pstring orig_filename, new_filename;
138 struct poptOption long_options[] = {
139 POPT_AUTOHELP
140 { "change-sid", 'c', POPT_ARG_STRING, NULL, 'c', "Provides SID to change" },
141 { "new-sid", 'n', POPT_ARG_STRING, NULL, 'n', "Provides SID to change to" },
142 POPT_COMMON_SAMBA
143 POPT_COMMON_VERSION
144 POPT_TABLEEND
146 poptContext pc;
148 load_case_tables();
150 /* setup logging options */
152 setup_logging( "profiles", True );
153 dbf = x_stderr;
154 x_setbuf( x_stderr, NULL );
156 pc = poptGetContext("profiles", argc, (const char **)argv, long_options,
157 POPT_CONTEXT_KEEP_FIRST);
159 poptSetOtherOptionHelp(pc, "<profilefile>");
161 /* Now, process the arguments */
163 while ((opt = poptGetNextOpt(pc)) != -1) {
164 switch (opt) {
165 case 'c':
166 change = 1;
167 if (!string_to_sid(&old_sid, poptGetOptArg(pc))) {
168 fprintf(stderr, "Argument to -c should be a SID in form of S-1-5-...\n");
169 poptPrintUsage(pc, stderr, 0);
170 exit(254);
172 break;
174 case 'n':
175 new_val = 1;
176 if (!string_to_sid(&new_sid, poptGetOptArg(pc))) {
177 fprintf(stderr, "Argument to -n should be a SID in form of S-1-5-...\n");
178 poptPrintUsage(pc, stderr, 0);
179 exit(253);
181 break;
186 poptGetArg(pc);
188 if (!poptPeekArg(pc)) {
189 poptPrintUsage(pc, stderr, 0);
190 exit(1);
193 if ((!change && new_val) || (change && !new_val)) {
194 fprintf(stderr, "You must specify both -c and -n if one or the other is set!\n");
195 poptPrintUsage(pc, stderr, 0);
196 exit(252);
199 pstrcpy( orig_filename, poptPeekArg(pc) );
200 pstr_sprintf( new_filename, "%s.new", orig_filename );
202 if ( !(infile = regfio_open( orig_filename, O_RDONLY, 0 )) ) {
203 fprintf( stderr, "Failed to open %s!\n", orig_filename );
204 fprintf( stderr, "Error was (%s)\n", strerror(errno) );
205 exit (1);
208 if ( !(outfile = regfio_open( new_filename, (O_RDWR|O_CREAT|O_TRUNC), (S_IREAD|S_IWRITE) )) ) {
209 fprintf( stderr, "Failed to open new file %s!\n", new_filename );
210 fprintf( stderr, "Error was (%s)\n", strerror(errno) );
211 exit (1);
214 /* actually do the update now */
216 if ((nk = regfio_rootkey( infile )) == NULL) {
217 fprintf(stderr, "Could not get rootkey\n");
218 exit(3);
221 if ( !copy_registry_tree( infile, nk, NULL, outfile, "" ) ) {
222 fprintf(stderr, "Failed to write updated registry file!\n");
223 exit(2);
226 /* cleanup */
228 regfio_close( infile );
229 regfio_close( outfile );
231 poptFreeContext(pc);
233 return( 0 );