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
|
/* $OpenBSD: tcfsadduser.c,v 1.8 2000/06/20 18:15:57 aaron Exp $ */
/*
* Transparent Cryptographic File System (TCFS) for NetBSD
* Author and mantainer: Luigi Catuogno [luicat@tcfs.unisa.it]
*
* references: http://tcfs.dia.unisa.it
* tcfs-bsd@tcfs.unisa.it
*/
/*
* Base utility set v0.1
*/
#include <stdio.h>
#include <unistd.h>
#include <limits.h>
#include <string.h>
#include <miscfs/tcfs/tcfs.h>
#include "tcfslib.h"
#include "tcfserrors.h"
char *adduser_usage="Usage: %s [OPTION]...
Add an user entry to the TCFS database.
-l <user> Username to add to the TCFS database
-h Shows this help
-v Makes the output a little more verbose\n";
int
adduser_main(int argn, char *argv[])
{
char val;
int have_user = FALSE, be_verbose = FALSE;
char user[LOGIN_NAME_MAX + 1];
tcfspwdb *user_info;
/*
* Going to check the arguments
*/
while ((val = getopt(argn, argv, "g:l:hv")) != -1)
switch (val) {
case 'l':
strlcpy(user, optarg, sizeof(user));
have_user = 1;
break;
case 'h':
printf(adduser_usage, argv[0]);
exit(OK);
break;
case 'v':
be_verbose = TRUE;
break;
default:
fprintf(stderr,
"Try %s --help for more information.\n",
argv[0]);
exit(ER_UNKOPT);
break;
}
if (argn - optind)
tcfs_error(ER_UNKOPT, NULL);
/*
* Here we don't have to drop root privileges because only root
* should run us.
* However we can do better. Maybe in next versions.
*/
if (!have_user) {
printf("Username to add to TCFS database: ");
fgets(user, sizeof(user), stdin);
user[strlen(user) - 1] = '\0';
}
if (be_verbose)
printf("Creating a new entry for user %s in the TCFS database...\n", user);
/*
* Creating a new entry into the key database
*/
if (!tcfspwdbr_new(&user_info))
tcfs_error(ER_MEM, NULL);
if (!tcfspwdbr_edit(&user_info, F_USR, user))
tcfs_error(ER_MEM, NULL);
if (!tcfs_putpwnam(user, user_info, U_NEW))
tcfs_error(ER_CUSTOM, "Error: cannot add user.");
if (be_verbose)
printf("User entry created with success.\n");
tcfs_error(OK, NULL);
exit(0);
}
|