summaryrefslogtreecommitdiffstats
path: root/utilities/smb4k_mv.cpp
blob: 7949722851a0d16a01b732e31a60b6d22a25d976 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
/***************************************************************************
    smb4k_mv  -  This is the move utility of Smb4K
                             -------------------
    begin                : Sa Nov 19 2005
    copyright            : (C) 2005-2007 by Alexander Reinholdt
    email                : dustpuppy@users.berlios.de
 ***************************************************************************/

/***************************************************************************
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful, but   *
 *   WITHOUT ANY WARRANTY; without even the implied warranty of            *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     *
 *   General Public License for more details.                              *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,   *
 *   MA  02110-1301 USA                                                    *
 ***************************************************************************/

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <locale.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <unistd.h>
#include <getopt.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
#include <iostream>
using namespace std;

#define SMB4K_MV_VERSION "0.4"

void info()
{
	cout << "This is smb4k_mv (version " << SMB4K_MV_VERSION << "), the move utility of Smb4K" << endl;
	cout << "Copyright (C) 2005-2007, Alexander Reinholdt" << endl;
	cout << endl;
	cout << "Usage:" << endl;
	cout << "  smb4k_mv {user}:{group} {perms} {src} {dest}" << endl;
	cout << "  smb4k_mv --help" << endl;
	cout << "  smb4k_mv --version" << endl;
	cout << endl;
	cout << "Arguments:" << endl;
	cout << "  {user}\tThe (new) owner of the file" << endl;
	cout << endl;
	cout << "  {group}\tThe (new) group of the file" << endl;
	cout << endl;
	cout << "  {perms}\tThe new permissions of the file" << endl;
	cout << endl;
	cout << "  {src}\t\tThe (full) path of the source file" << endl;
	cout << endl;
	cout << "  {dest}\tThe destination where the file will be moved to" << endl;
	cout << endl;
	cout << "  --help\tDisplay this help screen and exit." << endl;
	cout << "  --version\tDisplay the version information and exit." << endl;
	cout << endl;
}


void version()
{
	cout << "Version: " << SMB4K_MV_VERSION << endl;
}


bool find_program( const char *name, char *path )
{
	const char *paths[] = { "/bin/", "/sbin/", "/usr/bin/", "/usr/sbin/", "/usr/local/bin/", "/usr/local/sbin/" };
	string file = "";

	for ( uint i = 0; i < sizeof( paths ) / sizeof( char * ); i++ )
	{
		string p( paths[i] );
		p.append( name );

		if ( access( p.c_str(), X_OK ) == 0 )
		{
			file.assign( p );
			break;
		}
	}

	if ( !strcmp( file.c_str(), "" ) )
	{
		cerr << "smb4k_mv: Could not find " << name << " binary" << endl;

		return false;
	}

	int len = strlen( file.c_str() ) + 1;
	(void) strncpy( path, file.c_str(), len );
	path[len-1] = '\0';

	return true;
}


int main( int argc, char *argv[], char *envp[] )
{
	(void) setlocale( LC_ALL, "" );

	if ( argc < 2 )
	{
		info();
		exit( EXIT_FAILURE );
	}

	char *user_group = NULL;
	char *permissions = NULL;
	char *source = NULL;
	char *destination = NULL;

	int c;

	while ( 1 )
	{
		int option_index = 0;

		static struct option long_options[] =
		{
			{ "help", 0, 0, 0 },
			{ "version", 0, 0, 0 },
			{ 0, 0, 0, 0 }
		};

		c = getopt_long( argc, argv, "", long_options, &option_index );

		if ( c == -1 )
		{
			break;
		}

		switch ( c )
		{
			case 0:
			{
				// Get the length of the option string, create a
				// new string and copy the option into it:
				int len = strlen( long_options[option_index].name ) + 1;
				char opt[len];
				opt[0] = '\0';
				(void) strncpy( opt, long_options[option_index].name, len );
				opt[len-1] = '\0';

				// Now check which option has been provided:
				if ( !strncmp( opt, "help", len ) )
				{
					info();

					// That's it. Exit here.
					exit( EXIT_SUCCESS );
				}
				else if ( !strncmp( opt, "version", len ) )
				{
					version();

					// That's it. Exit here.
					exit( EXIT_SUCCESS );
				}
				else
				{
					break;
				}

				break;
			}
			case '?':
			{
				// Abort the program if an unknown option
				// is encountered:
				exit( EXIT_FAILURE );
			}
			default:
			{
				break;
			}
		}
	}

	if ( optind < argc )
	{
		while ( optind < argc )
		{
			if ( optind == 1 )
			{
				if ( strchr( argv[optind], ':' ) )
				{
					int len = strlen( argv[optind] ) + 1;
					user_group = new char[len];
					user_group[0] = '\0';
					(void) strncpy( user_group, argv[optind], len );
					user_group[len-1] = '\0';
				}
				else
				{
					cerr << "smb4k_mv: First argument must contain a colon" << endl;
					exit( EXIT_FAILURE );
				}
			}
			else if ( optind == 2 )
			{
				int i = 0;

				while ( argv[optind][i] )
				{
					if ( !isdigit( argv[optind][i] ) )
					{
						cerr << "smb4k_mv: Second argument must only contain digits" << endl;
						exit( EXIT_FAILURE );
					}

					i++;
				}

				int len = strlen( argv[optind] ) + 1;
				permissions = new char[len];
				permissions[0] = '\0';
				(void) strncpy( permissions, argv[optind], len );
				permissions[len-1] = '\0';
			}
			else if ( optind == 3 )
			{
				// We only want regular files to be moved:
				struct stat file_stat;

				if ( lstat( argv[optind], &file_stat ) == -1 )
				{
					int err = errno;
					cerr << "smb4k_mv: " << strerror( err ) << endl;
					exit( EXIT_FAILURE );
				}

				if ( !S_ISREG( file_stat.st_mode ) ||
				     S_ISFIFO( file_stat.st_mode ) ||
				     S_ISLNK( file_stat.st_mode ) )
				{
					cerr << "smb4k_mv: '" << argv[optind] << "' is not a regular file" << endl;
					exit( EXIT_FAILURE );
				}

				int len = strlen( argv[optind] ) + 1;
				source = new char[len];
				source[0] = '\0';
				(void) strncpy( source, argv[optind], len );
				source[len-1] = '\0';
			}
			else if ( optind == 4 )
			{
				// Be sure that the destination either does not
				// exist or that it is a regular file:
				struct stat file_stat;
				bool file_exists = true;

				if ( lstat( argv[optind], &file_stat ) == -1 )
				{
					int err = errno;

					// If the file does not exist, that's very good
					// for our purposes. Do not error out in that case.
					if ( err != ENOENT )
					{
						cerr << "smb4k_mv: " << strerror( err ) << endl;
						exit( EXIT_FAILURE );
					}
					else
					{
						file_exists = false;
					}
				}

				if ( file_exists )
				{
					if ( !S_ISREG( file_stat.st_mode ) ||
					     S_ISFIFO( file_stat.st_mode ) ||
					     S_ISLNK( file_stat.st_mode ) )
					{
						cerr << "smb4k_mv: '" << argv[optind] << "' is not a regular file" << endl;
						exit( EXIT_FAILURE );
					}
				}

				int len = strlen( argv[optind] ) + 1;
				destination = new char[len];
				destination[0] = '\0';
				(void) strncpy( destination, argv[optind], len );
				destination[len-1] = '\0';
			}
			else
			{
				cerr << "smb4k_mv: There are too many arguments" << endl;
				exit( EXIT_FAILURE );
			}

			optind++;
		}
	}

	int i;

	// Change owner and group:
	char chown_prog[255];
	chown_prog[0] = '\0';

	if ( !find_program( "chown", chown_prog ) )
	{
		exit( EXIT_FAILURE );
	}

	char *chown_argv[] = { chown_prog, user_group, source, NULL };

	if ( fork() == 0 )
	{
		if ( (i = execve( chown_argv[0], chown_argv, envp )) == -1 )
		{
			int err = errno;
			cerr << "smb4k_mv: " << strerror( err ) << endl;
			exit( EXIT_FAILURE );
		}
	}
	else
	{
		wait( &i );
	}

	// Apply new permissions:
	char chmod_prog[255];
	chmod_prog[0] = '\0';

	if ( !find_program( "chmod", chmod_prog ) )
	{
		exit( EXIT_FAILURE );
	}

	char *chmod_argv[] = { chmod_prog, permissions, source, NULL };

	if ( fork() == 0 )
	{
		if ( (i = execve( chmod_argv[0], chmod_argv, envp )) == -1 )
		{
			int err = errno;
			cerr << "smb4k_mv: " << strerror( err ) << endl;
			exit( EXIT_FAILURE );
		}
	}
	else
	{
		wait( &i );
	}

	// Now, finally, move the file:
	char mv_prog[255];
	mv_prog[0] = '\0';

	if ( !find_program( "mv", mv_prog ) )
	{
		exit( EXIT_FAILURE );
	}

	char *mv_argv[] = { mv_prog, source, destination, NULL };

	if ( fork() == 0 )
	{
		if ( (i = execve( mv_argv[0], mv_argv, envp )) == -1 )
		{
			int err = errno;
			cerr << "smb4k_mv: " << strerror( err ) << endl;
			exit( EXIT_FAILURE );
		}
	}
	else
	{
		wait( &i );
	}

	return EXIT_SUCCESS;
}