]> andersk Git - moira.git/blame - clients/moira/user.c
if you get a "not exported" error while manipulating a filesys, let
[moira.git] / clients / moira / user.c
CommitLineData
402461ad 1#if (!defined(lint) && !defined(SABER))
08345b74 2 static char rcsid_module_c[] = "$Header$";
3#endif lint
4
0a2c64cb 5/* This is the file user.c for the SMS Client, which allows a nieve
6 * user to quickly and easily maintain most parts of the SMS database.
7 * It Contains: Functions for manipulating user information.
08345b74 8 *
9 * Created: 5/9/88
10 * By: Chris D. Peterson
11 *
12 * $Source$
13 * $Author$
14 * $Header$
15 *
0a2c64cb 16 * Copyright 1988 by the Massachusetts Institute of Technology.
08345b74 17 *
18 * For further information on copyright and distribution
19 * see the file mit-copyright.h
20 */
21
08345b74 22#include <stdio.h>
23#include <strings.h>
08345b74 24#include <sms.h>
08345b74 25#include <menu.h>
26
461c03b6 27#include "mit-copyright.h"
0a2c64cb 28#include "defs.h"
29#include "f_defs.h"
461c03b6 30#include "globals.h"
31#include "infodefs.h"
32
08345b74 33#define LOGIN 0
34#define UID 1
402461ad 35#define BY_NAME 2
075fe5bb 36#define CLASS 3
08345b74 37
32de30b0 38/* Function Name: UserState
39 * Description: Convert a numeric state into a descriptive string.
40 * Arguments: state value
41 * Returns: pointer to statically allocated string.
42 */
43
44static char *states[] = { "Not registered",
45 "Active",
46 "Half registered",
47 "Marked for deletion",
48 "Not registerable" };
49
50static char *UserState(state)
51int state;
52{
53 if (state < 0 || state > 4)
54 return("Unknown");
55 return(states[state]);
56}
57
58
075fe5bb 59/* Function Name: PrintUserName
60 * Description: Print name of a user.
61 * Arguments: info - the information about a user.
62 * Returns: none.
63 */
64
65static void
66PrintUserName(info)
67char ** info;
68{
69 char buf[BUFSIZ], print_buf[BUFSIZ];
70 sprintf(buf, "%s, %s %s", info[U_LAST], info[U_FIRST], info[U_MIDDLE]);
71 sprintf(print_buf, "%-40s User Name: %s", buf, info[U_NAME]);
72 Put_message(print_buf);
73}
74
75/* Function Name: PrintUserInfo
76 * Description: Prints Information about a user.
77 * Arguments: info - an argument list with the user information
78 * in it.
79 * Returns: none
80 */
81
82static void
83PrintUserInfo(info)
84char ** info;
85{
86 char name[BUFSIZ], buf[BUFSIZ];
87
88 sprintf(name, "%s, %s %s", info[U_LAST], info[U_FIRST], info[U_MIDDLE]);
89 sprintf(buf, "Login name: %-10s Full name: %s", info[U_NAME], name);
90 Put_message(buf);
91 sprintf(buf, "User id: %-13s Login shell %-15s Class: %s",
92 info[U_UID], info[U_SHELL], info[U_CLASS]);
93 Put_message(buf);
94 sprintf(buf, "Account is: %-10s Encrypted MIT ID number: %s",
32de30b0 95 UserState(atoi(info[U_STATE])), info[U_MITID]);
075fe5bb 96 Put_message(buf);
97 sprintf(buf, MOD_FORMAT, info[U_MODBY], info[U_MODTIME],info[U_MODWITH]);
98 Put_message(buf);
99}
100
101/* Function Name: SetUserDefaults
102 * Description: Sets the default values for add user.
103 * Arguments: info - a blank user info array of char *'s.
104 * Returns: args - the filled info structure.
105 */
106
107static char **
108SetUserDefaults(info)
109char ** info;
110{
111 info[U_NAME] = Strsave(UNIQUE_LOGIN);
112 info[U_UID] = Strsave(UNIQUE_UID);
113 info[U_SHELL] = Strsave(DEFAULT_NONE);
114 info[U_LAST] = Strsave(DEFAULT_NONE);
115 info[U_FIRST] = Strsave(DEFAULT_NONE);
116 info[U_MIDDLE] = Strsave(DEFAULT_NONE);
117 info[U_STATE] = Strsave(DEFAULT_NO);
118 info[U_MITID] = Strsave(DEFAULT_NONE);
119 info[U_CLASS] = Strsave(DEFAULT_NONE);
120 info[U_MODTIME] = info[U_MODBY] = info[U_MODWITH] = info[U_END] = NULL;
121 return(info);
122}
461c03b6 123
08345b74 124/* Function Name: AskUserInfo.
125 * Description: This function askes the user for information about a
126 * machine and saves it into a structure.
127 * Arguments: info - a pointer the the structure to put the info into.
128 * flags - Flags asking us which info we want.
129 * Returns: the args to pass to the query.
130 * NOTES: the return args are not necessarily in the correct order to
131 * use the #defined names (e.g args[UID] is not the uid anymore).
132 */
133
461c03b6 134char **
135AskUserInfo(info, name)
08345b74 136char ** info;
137Bool name;
138{
075fe5bb 139 char temp_buf[BUFSIZ], *newname, *temp_ptr;
08345b74 140
075fe5bb 141 if (name) {
142 sprintf(temp_buf,"\nChanging Attributes of user %s.\n",info[U_NAME]);
143 Put_message(temp_buf);
144 }
08345b74 145 if (name) {
146 newname = Strsave(info[U_NAME]);
075fe5bb 147 GetValueFromUser("The new login name for this user", &newname);
08345b74 148 }
075fe5bb 149 else
150 GetValueFromUser("Login name for this user", &info[U_NAME]);
151
152 GetValueFromUser("User's UID", &info[U_UID]);
153 GetValueFromUser("User's shell", &info[U_SHELL]);
154 GetValueFromUser("User's last name", &info[U_LAST]);
155 GetValueFromUser("User's first name", &info[U_FIRST]);
156 GetValueFromUser("User's middle name", &info[U_MIDDLE]);
157 GetValueFromUser("User's status", &info[U_STATE]);
158 temp_ptr = Strsave(info[U_MITID]);
b3e25186 159 GetValueFromUser("User's (unencrypted) MIT ID number", &temp_ptr);
075fe5bb 160 if ( strcmp( temp_ptr, info[U_MITID] ) != 0) {
b3e25186 161 EncryptID(temp_buf, temp_ptr, info[U_FIRST], info[U_LAST]);
075fe5bb 162 free(info[U_MITID]);
163 info[U_MITID] = Strsave(temp_buf);
164 }
165 free(temp_ptr);
166 GetValueFromUser("User's MIT Year (class)", &info[U_CLASS]);
08345b74 167
168 FreeAndClear(&info[U_MODTIME], TRUE);
169 FreeAndClear(&info[U_MODBY], TRUE);
170 FreeAndClear(&info[U_MODWITH], TRUE);
171
172/*
173 * Slide the newname into the #2 slot, this screws up all future references
174 * to this list, since we slip the pointer into a info list it gets freed
175 * when the rest of the list gets freed.
176 */
177 if (name)
178 SlipInNewName(info, newname);
179
180 return(info);
181}
182
183/* Function Name: GetUserInfo
184 * Description: Stores the user information in a queue.
185 * Arguments: type - type of field given to get info, one of:
402461ad 186 * LOGIN, UID, BY_NAME, CLASS.
08345b74 187 * name1 - name of thing specified by type (wildcards okay)
188 * name2 - other name, only used in get user by first and last.
189 * (wildcards okay).
190 * Returns: the first element of the queue containing the user info.
191 */
192
193struct qelem *
461c03b6 194GetUserInfo(type, name1, name2)
08345b74 195int type;
196char *name1, *name2;
197{
198 char * args[2];
461c03b6 199 register int status;
200 struct qelem * elem = NULL;
08345b74 201
202 switch(type) {
203 case LOGIN:
204 args[0] = name1;
205 if ( (status = sms_query("get_user_by_login", 1, args,
461c03b6 206 StoreInfo, (char *) &elem)) != 0) {
85ca828a 207 com_err(program_name, status,
075fe5bb 208 " when attempting to get_user_by_login.");
08345b74 209 return (NULL);
210 }
211 break;
212 case UID:
213 args[0] = name1;
214 if ( (status = sms_query("get_user_by_uid", 1, args,
461c03b6 215 StoreInfo, (char *) &elem)) != 0) {
216 com_err(program_name, status,
075fe5bb 217 " when attempting to get_user_by_uid.");
08345b74 218 return (NULL);
219 }
220 break;
402461ad 221 case BY_NAME:
08345b74 222 args[0] = name1;
223 args[1] = name2;
075fe5bb 224 if ( (status = sms_query("get_user_by_name", 2, args,
461c03b6 225 StoreInfo, (char *) &elem)) != 0) {
226 com_err(program_name, status,
075fe5bb 227 " when attempting to get_user_by_name.");
08345b74 228 return (NULL);
229 }
230 break;
231 case CLASS:
232 args[0] = name1;
233 if ( (status = sms_query("get_user_by_class", 1, args,
461c03b6 234 StoreInfo, (char *) &elem)) != 0) {
235 com_err(program_name, status,
075fe5bb 236 " when attempting to get_user_by_class.");
08345b74 237 return (NULL);
238 }
239 break;
08345b74 240 }
241 return( QueueTop(elem) );
242}
243
075fe5bb 244/* Function Name: AddNewUser
245 * Description: Adds a new user to the database.
246 * Arguments: none.
08345b74 247 * Returns: DM_NORMAL.
248 */
249
250/* ARGSUSED */
251int
075fe5bb 252AddNewUser()
08345b74 253{
075fe5bb 254 register int status;
255 char ** args, *info[MAX_ARGS_SIZE];
256
257 args = AskUserInfo(SetUserDefaults(info), FALSE);
258 if ( (status = sms_query("add_user", CountArgs(args),
259 args, Scream, (char *) NULL)) != SMS_SUCCESS)
260 com_err(program_name, status, " in add_user");
261 else
262 Put_message("New user added to database.");
263 FreeInfo(args);
08345b74 264 return(DM_NORMAL);
265}
266
267
075fe5bb 268/* Function Name: GetLoginName
269 * Description: Asks the user for a login name and reserves
270 * it with kerberous.
271 * Arguments: none.
272 * Returns: a malloced login name for the user.
08345b74 273 */
274
075fe5bb 275static char *
276GetLoginName()
08345b74 277{
075fe5bb 278 char name[BUFSIZ];
279
280 Prompt_input("Login name for this user? ", name, BUFSIZ);
281
282 Put_message(
283 "KERBEROS code not added, did not reserve name with kerberos.");
284
285 return(Strsave(name));
286}
287
288
289/* Function Name: ChooseUser
290 * Description: Choose a user from a list and return the uid.
291 * Arguments: top - a queue of user information.
292 * Returns: uid - the malloced uid of the user that was chosen.
293 */
08345b74 294
075fe5bb 295static char *
296ChooseUser(elem)
297struct qelem * elem;
298{
08345b74 299 while (elem != NULL) {
075fe5bb 300 char ** info = (char **) elem->q_data;
301 PrintUserInfo(info);
302 switch(YesNoQuitQuestion("Is this the user you want (y/n/q)", FALSE)) {
303 case TRUE:
304 return(Strsave(info[U_UID]));
305 case FALSE:
306 break;
307 default: /* quit or ^C. */
308 return(NULL);
08345b74 309 }
310 elem = elem->q_forw;
311 }
075fe5bb 312 return(NULL);
08345b74 313}
314
075fe5bb 315/* Function Name: GetUidNumberFromName
316 * Description: Gets the users uid number, from the name.
317 * Arguments: none.
318 * Returns: uid - a malloced string containing the uid.
08345b74 319 */
320
075fe5bb 321static char *
322GetUidNumberFromName()
08345b74 323{
075fe5bb 324 char *args[5], *uid, first[BUFSIZ], last[BUFSIZ];
461c03b6 325 register int status;
075fe5bb 326 struct qelem * top = NULL;
327
328 Prompt_input("First Name: ", first, BUFSIZ);
329 Prompt_input("Last Name: ", last, BUFSIZ);
08345b74 330
075fe5bb 331 args[0] = first;
332 args[1] = last;
08345b74 333
075fe5bb 334 switch (status = sms_query("get_user_by_name", 2, args,
b3e25186 335 StoreInfo, (char *) &top)) {
075fe5bb 336 case SMS_SUCCESS:
337 break;
338 case SMS_NO_MATCH:
339 Put_message("There is no user in the database with that name.");
340 return(NULL);
341 default:
342 com_err(program_name, status, " in get_user_by_name.");
343 return(NULL);
08345b74 344 }
345
075fe5bb 346 top = QueueTop(top);
347 if (QueueCount(top) == 1) /* This is a unique name. */ {
348 char ** info = (char **) top->q_data;
349 Put_message("User ID Number retrieved for the user: ");
350 Put_message("");
351 PrintUserName(info);
352 uid = Strsave(info[U_UID]);
353 FreeQueue(top);
354 return(Strsave(uid));
355 }
08345b74 356
075fe5bb 357 Put_message("That name is not unique, choose the user that you want.");
358 uid = ChooseUser(top);
359 FreeQueue(top);
360 return(uid);
08345b74 361}
362
075fe5bb 363/* Function Name: SetUserPassword
364 * Description: Set the new kerberos password for this user.
365 * Arguments: name - kerberos principle name for this user, (login name).
366 * Returns: none.
08345b74 367 */
368
075fe5bb 369static void
370SetUserPassword(name)
371char * name;
08345b74 372{
075fe5bb 373 name = name; /* make saber happy. */
374 Put_message("Kerberos password not changed, code non-existant.");
375 /* clever message to call account_admin, if this fails. */
376}
08345b74 377
075fe5bb 378/* Function Name: GiveBackLogin
379 * Description: Gives back previously reserved kerberous principle.
380 * Arguments: name - principle to give back.
381 * Returns: void.
08345b74 382 */
383
075fe5bb 384static void
385GiveBackLogin(name)
386char * name;
08345b74 387{
075fe5bb 388 name = name; /* make saber happy. */
389 Put_message("kerberos code not implimented, name not given back.");
390 /* send mail to db maintainer if this fails. */
08345b74 391}
392
075fe5bb 393/* Function Name: RegisterUser
394 * Description: This function registers a user.
395 * Arguments: none.
396 * Returns: DM_NORMAL.
08345b74 397 */
398
08345b74 399int
075fe5bb 400RegisterUser()
08345b74 401{
075fe5bb 402 char * args[MAX_ARGS_SIZE];
403 char *login, *fstype = NULL;
404 char temp_buf[BUFSIZ];
405 register int status;
461c03b6 406
075fe5bb 407 Put_message("This function has NO kerberos support, so stange things");
408 Put_message("may happen if you use it to register a user.");
409
410 switch (YesNoQuestion("Do you know the users UID Number (y/n)", FALSE)) {
411 case TRUE:
412 Prompt_input("What is the UID number of the user? ", temp_buf, BUFSIZ);
413 args[0] = Strsave(temp_buf);
414 break;
415 case FALSE:
416 if ( (args[0] = GetUidNumberFromName()) == NULL)
417 return(DM_NORMAL);
418 break;
419 default:
420 return(DM_NORMAL);
461c03b6 421 }
075fe5bb 422
423 if ( ((login = args[1] = GetLoginName()) == NULL) ||
424 ( GetFSTypes(&fstype) == SUB_ERROR ) ) {
425 FreeInfo(args); /* This work because the NULL temination is ok. */
426 return(DM_NORMAL);
427 }
428 args[2] = fstype;
429 args[3] = NULL;
430
431 switch (status = sms_query("register_user", CountArgs(args),
432 args, Scream, (char *) NULL)) {
433 case SMS_SUCCESS:
434 sprintf(temp_buf, "User %s successfully registered.", login);
435 Put_message(temp_buf);
436 SetUserPassword(login);
437 break;
438 case SMS_IN_USE:
439 GiveBackLogin(login);
440 sprintf(temp_buf, "The username %s is already in use.", login);
441 Put_message(temp_buf);
442 break;
443 default:
444 com_err(program_name, status, " in register_user");
445 break;
446 }
447 FreeInfo(args);
448 return(DM_NORMAL);
08345b74 449}
450
075fe5bb 451/* Function Name: RealUpdateUser
452 * Description: actuall updates the user information.
453 * Arguments: info - all current information for the user fields.
454 * junk - an UNUSED boolean.
455 * Returns: none.
08345b74 456 */
457
075fe5bb 458/* ARGSUSED */
459static void
460RealUpdateUser(info, junk)
461char ** info;
462Bool junk;
08345b74 463{
075fe5bb 464 register int status;
465 char error_buf[BUFSIZ];
466 char ** args = AskUserInfo(info, TRUE);
467
468 if ( (status = sms_query("update_user", CountArgs(args),
469 args, Scream, (char *) NULL)) != SMS_SUCCESS) {
470 com_err(program_name, status, " in ModifyFields");
471 sprintf(error_buf, "User %s not updated due to errors.", info[NAME]);
472 Put_message(error_buf);
08345b74 473 }
08345b74 474}
475
075fe5bb 476/* Function Name: UpdateUser
477 * Description: Modify some of the information about a user.
478 * Arguments: argc, argv - login name of the user in argv[1].
08345b74 479 * Returns: DM_NORMAL.
480 */
481
075fe5bb 482/* ARGSUSED */
08345b74 483int
075fe5bb 484UpdateUser(argc, argv)
08345b74 485int argc;
486char **argv;
487{
075fe5bb 488 struct qelem * elem;
08345b74 489
075fe5bb 490 elem = GetUserInfo(LOGIN, argv[1], (char *) NULL);
491 QueryLoop(elem, NullPrint, RealUpdateUser, "Update the user");
08345b74 492
075fe5bb 493 FreeQueue(elem);
08345b74 494 return(DM_NORMAL);
495}
496
b3e25186 497/* Function Name: RealDeactivateUser
498 * Description: sets the user's status to 3.
499 * Arguments: info - all current information for the user fields
500 * one_item - indicates the user hasn't been queried yet
501 * Returns: none.
502 */
503
504static void
505RealDeactivateUser(info, one_item)
506char ** info;
507Bool one_item;
508{
509 register int status;
510 char txt_buf[BUFSIZ];
511 char * qargs[2];
512
513 if (one_item) {
514 sprintf(txt_buf, "Deactivate user %s (y/n)", info[NAME]);
334eb344 515 if (!YesNoQuestion(txt_buf, 2))
b3e25186 516 return;
517 }
518
519 qargs[0] = info[NAME];
520 qargs[1] = "3";
521 if ((status = sms_query("update_user_status", 2, qargs, Scream,
522 (char *) NULL)) != SMS_SUCCESS) {
523 com_err(program_name, status, " in update_user_status");
524 sprintf(txt_buf, "User %s not deactivated due to errors.", info[NAME]);
525 Put_message(txt_buf);
526 }
527}
528
529
530/* Function Name: DeactivateUser
531 * Description: sets the user's status to 3.
532 * Arguments: argc, argv - login name of the user in argv[1].
533 * Returns: DM_NORMAL.
534 */
535
536/* ARGSUSED */
537int
538DeactivateUser(argc, argv)
539int argc;
540char **argv;
541{
542 struct qelem * elem;
543
544 elem = GetUserInfo(LOGIN, argv[1], (char *) NULL);
545 QueryLoop(elem, NullPrint, RealDeactivateUser, "Deactivate user");
546
547 FreeQueue(elem);
548 return(DM_NORMAL);
549}
550
551
075fe5bb 552/* ------------------------- Top Menu ------------------------- */
553
554/* DeleteUser() in delete.c */
461c03b6 555
075fe5bb 556/* Function Name: DeleteUserByUid
557 * Description: Deletes the user given a uid number.
558 * Arguments: argc, argv - uid if user in argv[1].
08345b74 559 * Returns: DM_NORMAL.
075fe5bb 560 * NOTES: This just gets the username from the sms server
561 * and performs a DeleteUser().
08345b74 562 */
563
08345b74 564int
075fe5bb 565DeleteUserByUid(argc, argv)
08345b74 566int argc;
567char **argv;
568{
461c03b6 569 int status;
075fe5bb 570 struct qelem *elem = NULL;
571 char ** info;
572
573 if(!ValidName(argv[1]))
574 return(DM_NORMAL);
575
576 if ( (status = sms_query("get_user_by_uid", 1, argv+1, StoreInfo,
577 (char * ) &elem)) != SMS_SUCCESS)
578 com_err(program_name, status, " in get_user_by_uid");
579
580 info = (char **) elem->q_data;
581 argv[1] = info[U_NAME];
08345b74 582
075fe5bb 583 (void) DeleteUser(argc, argv);
08345b74 584 return(DM_NORMAL);
075fe5bb 585}
08345b74 586
075fe5bb 587/* ------------------------- Show User Information ------------------------- */
08345b74 588
589/* Function Name: ShowUserByLogin
590 * Description: Shows user information given a login name.
591 * Arguments: argc, argv - login name in argv[1].
592 * Returns: DM_NORMAL
593 */
594
595/* ARGSUSED */
596int
597ShowUserByLogin(argc, argv)
598int argc;
599char *argv[];
600{
601 struct qelem *top, *elem;
602
603 elem = top = GetUserInfo(LOGIN, argv[1], (char *) NULL);
075fe5bb 604 Loop(elem, PrintUserInfo);
08345b74 605
606 FreeQueue(top);
607 return (DM_NORMAL);
608}
609
610/* Function Name: RetrieveUserByName
611 * Description: Show information on a user give fist and/or last name.
612 * Arguments: argc, argv - argv[1] - first name.
613 * argv[2] - last name.
614 * Returns: DM_NORMAL.
615 */
616
617/* ARGSUSED */
618int
619ShowUserByName(argc, argv)
620int argc;
621char *argv[];
622{
075fe5bb 623 struct qelem *top;
3c1a8806 624 char buf[BUFSIZ];
08345b74 625
075fe5bb 626 top = GetUserInfo(BY_NAME, argv[1], argv[2]);
08345b74 627
075fe5bb 628 if (top == NULL) /* if there was an error then return. */
08345b74 629 return(DM_NORMAL);
630
075fe5bb 631 if (!PromptWithDefault("Print full information, or just the names (f/n)?",
334eb344 632 buf, 2, "f"))
075fe5bb 633 return(DM_NORMAL);
08345b74 634
3c1a8806 635 switch(buf[0]) {
075fe5bb 636 case 'F':
637 case 'f':
638 Loop(top, PrintUserInfo);
639 break;
640 case 'N':
641 case 'n':
642 Loop(top, PrintUserName);
643 break;
644 }
645
08345b74 646 FreeQueue(top);
647 return (DM_NORMAL);
648}
649
650/* Function Name: ShowUserByClass
651 * Description: Shows real and login names of all users in class.
652 * Arguments: argc, argv - argv[1] contains the class.
653 * Returns: none.
654 */
655
85ca828a 656/* ARGSUSED */
08345b74 657int
658ShowUserByClass(argc, argv)
659int argc;
660char **argv;
661{
075fe5bb 662 struct qelem *top;
08345b74 663
075fe5bb 664 top = GetUserInfo(CLASS, argv[1], (char *) NULL);
665 Loop(top, PrintUserName);
08345b74 666
667 FreeQueue(top);
668 return (DM_NORMAL);
669}
670
08345b74 671/*
672 * Local Variables:
673 * mode: c
674 * c-indent-level: 4
675 * c-continued-statement-offset: 4
676 * c-brace-offset: -4
677 * c-argdecl-indent: 4
678 * c-label-offset: -4
679 * End:
680 */
This page took 0.153129 seconds and 5 git commands to generate.