-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate_user.c
208 lines (186 loc) · 4.84 KB
/
update_user.c
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
/*
* Depends on: pwdblib.c
*
* Synopsis:
*
* Updates a users entry in the passwd file.
* It ask for new data for each item in struct pwdb_passwd
* If you just press enter for any question, the old information
* will be unchanged.
* If the user does not exist, it will add a new entry in the passwd file.
* The entered password will be stored in plaintext.
*
* Usage: update_user username
*
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "pwdblib.h" /* include header declarations for pwdblib.c */
int main(int argc,char **argv)
{
char *username;
char *buf;
size_t buflen, chread;
struct pwdb_passwd *p, *oldp;
int updt;
if (argc<2) {
printf("Usage: update_user username\n");
return(0);
}
username=argv[1];
oldp=pwdb_getpwnam(username);
if (oldp!=NULL)
updt=1;
else if ((oldp==NULL) && (pwdb_errno==PWDB_NOUSER))
updt=0;
else {
printf("pwdb_getpwnam return error: %s\n",pwdb_err2str(pwdb_errno));
return(0);
}
p=(struct pwdb_passwd *)malloc(sizeof(struct pwdb_passwd));
buf=NULL;
buflen=0;
p->pw_name=username;
chread=0;
while (1) {
printf("Password:");
chread=getline(&buf,&buflen,stdin);
buf[chread]='\0'; chread--; /* remove '\n' included by getline */
if ((!updt) && (chread<1))
printf("New user, so you must enter data\n");
if ((updt) && (chread<1)) {
p->pw_passwd=oldp->pw_passwd;
break;
}
if (chread>0) {
p->pw_passwd=(char *)malloc(sizeof(char)*(chread+1));
strncpy(p->pw_passwd,buf,chread);
p->pw_passwd[chread]='\0';
break;
}
}
chread=0;
while (1) {
printf("Uid:");
chread=getline(&buf,&buflen,stdin);
buf[chread]='\0'; chread--; /* remove '\n' included by getline */
if ((!updt) && (chread<1))
printf("New user, so you must enter data\n");
if ((updt) && (chread<1)) {
p->pw_uid=oldp->pw_uid;
break;
}
if (chread>0) {
p->pw_uid=atoi(buf);
break;
}
}
chread=0;
while (1) {
printf("Gid:");
chread=getline(&buf,&buflen,stdin);
buf[chread]='\0'; chread--; /* remove '\n' included by getline */
if ((!updt) && (chread<1))
printf("New user, so you must enter data\n");
if ((updt) && (chread<1)) {
p->pw_gid=oldp->pw_gid;
break;
}
if (chread>0) {
p->pw_gid=atoi(buf);
break;
}
}
chread=0;
while (1) {
printf("Real name:");
chread=getline(&buf,&buflen,stdin);
buf[chread]='\0'; chread--; /* remove '\n' included by getline */
if ((!updt) && (chread<1))
printf("New user, so you must enter data\n");
if ((updt) && (chread<1)) {
p->pw_gecos=oldp->pw_gecos;
break;
}
if (chread>0) {
p->pw_gecos=(char *)malloc(sizeof(char)*(chread+1));
strncpy(p->pw_gecos,buf,chread);
p->pw_gecos[chread]='\0';
break;
}
}
chread=0;
while (1) {
printf("Home directory:");
chread=getline(&buf,&buflen,stdin);
buf[chread]='\0'; chread--; /* remove '\n' included by getline */
if ((!updt) && (chread<1))
printf("New user, so you must enter data\n");
if ((updt) && (chread<1)) {
p->pw_dir=oldp->pw_dir;
break;
}
if (chread>0) {
p->pw_dir=(char *)malloc(sizeof(char)*(chread+1));
strncpy(p->pw_dir,buf,chread);
p->pw_dir[chread]='\0';
break;
}
}
chread=0;
while (1) {
printf("Shell:");
chread=getline(&buf,&buflen,stdin);
buf[chread]='\0'; chread--; /* remove '\n' included by getline */
if ((!updt) && (chread<1))
printf("New user, so you must enter data\n");
if ((updt) && (chread<1)) {
p->pw_shell=oldp->pw_shell;
break;
}
if (chread>0) {
p->pw_shell=(char *)malloc(sizeof(char)*(chread+1));
strncpy(p->pw_shell,buf,chread);
p->pw_shell[chread]='\0';
break;
}
}
chread=0;
while (1) {
printf("Failed:");
chread=getline(&buf,&buflen,stdin);
buf[chread]='\0'; chread--; /* remove '\n' included by getline */
if ((!updt) && (chread<1))
printf("New user, so you must enter data\n");
if ((updt) && (chread<1)) {
p->pw_failed=oldp->pw_failed;
break;
}
if (chread>0) {
p->pw_failed=atoi(buf);
break;
}
}
chread=0;
while (1) {
printf("Age:");
chread=getline(&buf,&buflen,stdin);
buf[chread]='\0'; chread--; /* remove '\n' included by getline */
if ((!updt) && (chread<1))
printf("New user, so you must enter data\n");
if ((updt) && (chread<1)) {
p->pw_age=oldp->pw_age;
break;
}
if (chread>0) {
p->pw_age=atoi(buf);
break;
}
}
if (pwdb_update_user(p)!=0) {
printf("pwdb_update_user returned error %s\n",pwdb_err2str(pwdb_errno));
}
return(0);
}