aboutsummaryrefslogtreecommitdiff
path: root/duser.c
blob: 08ee93ce64249b1fa3e7b5b7f8f0fd8227c84cdf (plain) (blame)
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dirent.h>
#include <limits.h>
#include <ctype.h>
#include <errno.h>
#include <tre/regex.h>
#include <unistd.h>
#include <fcntl.h>
#include "duser.h"


char* basename(const char* path)
{
	char *ptr = strrchr(path, '/');
	return ptr ? ptr + 1 : (char*)path;
}

int user_del(record_t* rec)
{
	FILE *tfp;
	FILE *fp;
	int fd = 0;
	int bytes = 0;
	char buf[REGEX_MAX];
	char tmpfile[255];
	snprintf(tmpfile, sizeof(tmpfile), "/tmp/duser.%s.XXXXXX", basename(rec->file));
	if((fd = mkstemp(tmpfile)) < 0 || (tfp = fdopen(fd, "w+")) == NULL)
	{
		if(fd != -1)
		{
			close(fd);
			unlink(tmpfile);
		}
		fprintf(stderr, "%s: %s\n", tmpfile, strerror(errno));
		exit(1);
	}
	
	if((fp = fopen(rec->file, "r")) == NULL)
	{
		fprintf(stderr, "%s: %s\n", rec->file, strerror(errno));
		exit(1);
	}

	while(!feof(fp))
	{
		memset(buf, 0, sizeof(buf));
		fgets(buf, REGEX_MAX, fp);
		buf[strlen(buf) - 1] = '\0';
		if((strncmp(buf, rec->name, strlen(rec->name))) != 0 )
		{
			buf[strlen(buf)] = '\n';
			bytes = write(fd, buf, strlen(buf));
		}
	}
	//Rewind the temp file
	lseek(fd, 0L, SEEK_SET);
	//Close the original file
	fclose(fp);
	//Truncate original and copy data from tmp to original
	if((fp = fopen(rec->file, "w+")) == NULL)
	{
		fprintf(stderr, "%s: %s\n", rec->file, strerror(errno));
		exit(1);
	}

	while(!feof(tfp))
	{
		memset(buf, 0, sizeof(buf));
		fgets(buf, REGEX_MAX, tfp);
		buf[strlen(buf) - 1] = '\0';
		if((strncmp(buf, rec->name, strlen(rec->name))) != 0 )
		{
			buf[strlen(buf)] = '\n';
			if(buf[0] == '\n')
				buf[0] = '\0';

			bytes = fwrite(buf, strlen(buf), 1, fp);
		}
	}

	fclose(fp);
	close(fd);
	unlink(tmpfile);
	
	if(bytes)
		return bytes;

	return 0;
}
// VERIFY that the record is proper (useful for deletion of users)
int find_in_file_ex(record_t* rec)
{
	int match = -1;
	char buf[REGEX_MAX];
	FILE *fp;
	
	if((fp = fopen(rec->file, "r")) == NULL)
	{
		perror("find_in_file_ex");
		return -1;
	}
	
	while(!feof(fp))
	{
		fgets(buf, REGEX_MAX, fp);
		buf[strlen(buf) - 1] = '\0';
		if((strncmp(buf, rec->name, strlen(rec->name))) == 0) 
		{
			match = 1;
			break;
		}
	}

	fclose(fp);
	return match;
}

record_t* find_in_file(const char* filename, const char* needle)
{
	regmatch_t pmatch[10];
	regex_t preg;
	record_t record, *rptr;
	rptr = &record;
	rptr->index = 0;
	rptr->match = 0;
	
	int index = 0;
	char* base = basename(filename);
	char regex[REGEX_MAX];
	FILE *fp;
	if((fp = fopen(filename, "r")) == NULL)
	{
		fprintf(stderr, "Failed to process: %s\nReason: %s\n", base, strerror(errno));
		exit(1);
	}
	snprintf(regex, REGEX_MAX, regex_fmt, needle);
	strncpy(rptr->file, filename, PATH_MAX);
	snprintf(rptr->name, REGEX_MAX, "%s", needle);
	regcomp(&preg, regex, REG_EXTENDED|REG_ICASE|REG_NOSUB);
	while(!feof(fp))
	{
		char cmp[REGEX_MAX];
		memset(cmp, 0L, REGEX_MAX);
		fgets(cmp, REGEX_MAX, fp);
		cmp[strlen(cmp)-1] = '\0';
		if((regexec(&preg, cmp, 3, pmatch, REG_NOTBOL)) == 0)
		{
			rptr->match = 1;
			rptr->index = index;
		}
		index++;
		processed.lines++;
	}

	if(rptr->match)
		return rptr;
	else
		return NULL;

}

int get_file_count(const char* path)
{
	DIR *dp;
	struct dirent *ep;
	int file_count = 0;

	if((dp = opendir(path)) == NULL)
	{
		perror("opendir");
		exit(1);
	}

	while((ep = readdir(dp)))
	{
		if(ep->d_type == DT_REG && !strstr(ep->d_name, "."))
		{
			file_count++;
		}
	}
	closedir(dp);

	return file_count;
}

void free_file_list(char** list)
{
	int i = 0;
	for( i = 0 ; list[i] != NULL ; i++ )
	{
		free(list[i]);
	}
	free(list);
}

char** get_file_list(const char* path, int count)
{
	DIR *dp;
	struct dirent *ep;
	int i = 0;

	if((dp = opendir(path)) == NULL)
	{
		perror("opendir");
		exit(1);
	}

	char **list = (char**)calloc(count, REGEX_MAX);
	if(list == NULL)
	{
		perror("calloc");
		exit(1);
	}
	while((ep = readdir(dp)))
	{
		if(ep->d_type == DT_REG && !strstr(ep->d_name, "."))
		{
			list[i] = (char*)malloc(sizeof(char) * strlen(ep->d_name)+1);
			memset(list[i], 0L, strlen(ep->d_name));
			strncpy(list[i], ep->d_name, strlen(ep->d_name));
			i++;
		}
	}
	closedir(dp);
	return list;
}

void stats_init(stats_t *s)
{
	s->lines = 0;
	s->files = 0;
	s->matches = 0;
	s->added = 0;
	s->deleted = 0;
	s->modified = 0;
}

int user_list(const char* needle)
{
	processed.files = get_file_count(list_path);
	char** list;
	list = get_file_list(list_path, processed.files);

	printf("%20s%12s\n", "List", "At line");
	printf("\t\t%s\n", "================");
	int i = 0;
	for(i = 0 ; list[i] != NULL ; i++)
	{
		char tmp[PATH_MAX];
		sprintf(tmp, "%s%s", list_path, list[i]);
		record_t *rp;
		if((rp = find_in_file(tmp, needle)) != NULL)
		{
			printf("%20s\t%5d\n", basename(rp->file), rp->index);
			processed.matches++;
		}
	}
	free_file_list(list);	
	return 0;
}

void usage(const char* progname)
{
	printf("Domouser v0.1a - jhunk@stsci.edu\n");
	printf("Usage: %s command address [list]\n", progname);
	printf("Commands:\n");
	printf("  help		This usage statement\n");
	printf("  add		Add a user to a list\n");
	printf("  del		Delete a user from all lists\n");
	printf("  mod		Modify a user in a list\n");
	printf("  list		Find and list a user in all lists\n");
	printf("  look		Find user in specific list\n");
	printf("\n");
	exit(0);
}


int user_cmd(const char* arg)
{
	if(arg)
	{
		if((strcmp(arg, "del")) == 0)
		{
			return CMD_FLAG_DEL;
		}
		if((strcmp(arg, "add")) == 0)
		{
			return CMD_FLAG_ADD;
		}
		if((strcmp(arg, "mod")) == 0)
		{
			return CMD_FLAG_MOD;
		}
		if((strcmp(arg, "list")) == 0)
		{
			return CMD_FLAG_LIST;
		}
		if((strcmp(arg, "look")) == 0)
		{
			return CMD_FLAG_LOOK;
		}
		if((strcmp(arg, "help")) == 0)
		{
			return CMD_FLAG_HELP;
		}
	}
	else
		return CMD_FLAG_NULL;

	return CMD_FLAG_NULL;
}

int user_choice(char c)
{
	if(c == 'y' || c == 'Y')
		return 0;

	return 1;
}

int main(int argc, char* argv[])
{
	const char* progname = argv[0];
	const char* command = argv[1];
	const char* needle = argv[2];
	const char* single_list = argv[3];
	char filename[PATH_MAX];
	record_t *rec;

	stats_init(&processed);
	int c = 0;

	if(argc < 2)
	{
		usage(progname);
		return 0;
	}

	if(needle && single_list)
		snprintf(filename, PATH_MAX, "%s%s", list_path, single_list);

	c = user_cmd(command);
	switch(c)
	{
		case CMD_FLAG_DEL:
			if(needle == NULL)
			{
				printf("You must specify an email address\n");
				return -1;
			}
			else if(single_list == NULL)
			{
				printf("You must specify a list in which to delete '%s' from\n", needle);
				return -1;
			}
			
			if((rec = find_in_file(filename, needle)) == NULL)
			{
				printf("Record not found\n");
				return -1;
			}

			printf("Please review the information below:\n\n");
			printf("Email:    %s\n", rec->name);
			printf("At line:  %d\n", rec->index);
			printf("In File:  %s\n", basename(rec->file));
			printf("\nDo you wish to wish to delete this record? [y/N] ");
			
			char choice = getchar();
			if((user_choice(choice)) == 0)
			{
				int success = 0;
				if((success = user_del(rec)) > 0)
				{
					printf("Record deleted\n");
					rec = NULL;
				}
			}
			else
			{
				printf("Exiting...\n");
			}

			break;
		
		case CMD_FLAG_ADD:
			printf("add flag active\n");
			if(needle == NULL)
			{
				printf("You must specify an email address\n");
				return -1;
			}
			else if(single_list == NULL)
			{
				printf("You must specify a list in which to add '%s' to\n", needle);
				return -1;
			}
			break;

		case CMD_FLAG_MOD:
			printf("modify flag active\n");
			if(needle == NULL)
			{
				printf("You must specify an email address\n");
				return -1;
			}
			else if(single_list == NULL)
			{
				printf("You must specify a list in which to modify '%s' in\n", needle);
				return -1;
			}
			break;

		case CMD_FLAG_LIST:
			if(needle == NULL)
			{
				printf("You must specify an email address\n");
				return -1;
			}
			user_list(needle);
			break;

		case CMD_FLAG_LOOK:
			if(needle == NULL)
			{
				printf("You must specify an email address\n");
				return -1;
			}
			else if(single_list == NULL)
			{
				printf("You must specify a list in which to find '%s' in\n", needle);
				return -1;
			}
			
			rec = find_in_file(filename, needle);
			if(rec)
			{
				if(rec->match)
				{
					printf("Found '%s' at line %d of list '%s'\n", rec->name, rec->index, basename(rec->file));
				}
				else
				{
					printf("Corrupt record?  This is not supposed to happen.\n");
				}
			}
			else
			{
				printf("Not found in '%s'\n", single_list);
			}

			break;
		case CMD_FLAG_HELP:
			usage(progname);
			break;

		default:
			printf("'%s' is not a valid command\n", command);
			usage(progname);
			break;
	};
/*
	printf("\n%d matches\t%d files\t%d lines parsed\n", 
		processed.matches, processed.files, processed.lines);
*/
	return 0;
}