]> andersk Git - moira.git/blobdiff - clients/moira/user.c
tcsh is dead. Long live bash.
[moira.git] / clients / moira / user.c
index e084f0addcff3bb22a5e47a819278c6de8e496d2..0ed1762ec22f3a7ff710a5e87b3fd9fd7ed68fbe 100644 (file)
@@ -1,42 +1,40 @@
-#if (!defined(lint) && !defined(SABER))
-  static char rcsid_module_c[] = "$Header$";
-#endif
-
-/*     This is the file user.c for the MOIRA Client, which allows a nieve
- *      user to quickly and easily maintain most parts of the MOIRA database.
+/* $Id$
+ *
+ *     This is the file user.c for the Moira Client, which allows users
+ *      to quickly and easily maintain most parts of the Moira database.
  *     It Contains: Functions for manipulating user information.
  *
  *     Created:        5/9/88
  *     By:             Chris D. Peterson
  *
- *      $Source$
- *      $Author$
- *      $Header$
- *
- *     Copyright 1988 by the Massachusetts Institute of Technology.
- *
- *     For further information on copyright and distribution
- *     see the file mit-copyright.h
+ * Copyright (C) 1988-1998 by the Massachusetts Institute of Technology.
+ * For copying and distribution information, please see the file
+ * <mit-copyright.h>.
  */
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
+#include <mit-copyright.h>
 #include <moira.h>
 #include <moira_site.h>
-#include <menu.h>
-#include <ctype.h>
-#include <sys/time.h>
-#ifdef GDSS
-#include <des.h>
-#include <krb.h>
-#include <gdss.h>
-#endif
-#include "mit-copyright.h"
 #include "defs.h"
 #include "f_defs.h"
 #include "globals.h"
 
+#include <ctype.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <time.h>
+
+#include <krb.h>
+
+RCSID("$Header$");
+
+void CorrectCapitalization(char **name);
+char **AskUserInfo(char **info, Bool name);
+struct mqelem *GetUserInfo(int type, char *name1, char *name2);
+static void PrintLogin(char **info);
+struct mqelem *GetUserBySponsor(char *type, char *name);
+
 #define LOGIN 0
 #define UID   1
 #define BY_NAME  2
 #define ID 4
 
 #ifdef ATHENA
-#define DEFAULT_SHELL "/bin/athena/tcsh"
+#define DEFAULT_SHELL "/bin/athena/bash"
 #else
-#define DEFAULT_SHELL "/bin/csh"
+#define DEFAULT_SHELL "/bin/bash"
 #endif
 #define DEFAULT_CLASS "?"
 
+#define DEFAULT_WINCONSOLESHELL "cmd"
+#define DEFAULT_WINHOMEDIR "[DFS]"
+#define DEFAULT_WINPROFILEDIR "[DFS]"
 
 /*     Function Name: UserState
  *     Description: Convert a numeric state into a descriptive string.
@@ -65,7 +66,9 @@ static char *states[] = {
   "Not registerable (4)",
   "Enrolled/Registerable (5)",
   "Enrolled/Not Registerable (6)",
-  "Half Enrolled (7)"
+  "Half Enrolled (7)",
+  "Registerable, Kerberos only (8)",
+  "Active, Kerberos only (9)"
 };
 
 static char *UserState(int state)
@@ -104,38 +107,39 @@ static void PrintUserName(char **info)
 
 static void PrintUserInfo(char **info)
 {
-  char name[BUFSIZ], buf[BUFSIZ];
+  char name[BUFSIZ], buf[BUFSIZ], sponsor[BUFSIZ];
   int status;
-#ifdef GDSS
-  SigInfo si;
-#endif
 
   sprintf(name, "%s, %s %s", info[U_LAST], info[U_FIRST], info[U_MIDDLE]);
   sprintf(buf, "Login name: %-20s Full name: %s", info[U_NAME], name);
   Put_message(buf);
-  sprintf(buf, "User id: %-23s Login shell %-10s Class: %s",
-         info[U_UID], info[U_SHELL], info[U_CLASS]);
+  sprintf(buf, "User id: %-23s Login shell: %-10s",
+         info[U_UID], info[U_SHELL]);
   Put_message(buf);
-
-#ifdef GDSS
-  sprintf(buf, "%s:%s", info[U_NAME], info[U_MITID]);
-  si.rawsig = NULL;
-  status = GDSS_Verify(buf, strlen(buf), info[U_SIGNATURE], &si);
-#else /* GDSS */
-  status = 0;
-#endif /* GDSS */
-
-  sprintf(buf, "Account is: %-20s MIT ID number: %s Signed: %s",
-         UserState(atoi(info[U_STATE])), info[U_MITID],
-         *info[U_SIGNATURE] ? (status ? "Bad" : "Yes") : "No");
+  sprintf(buf, "Class: %-25s Windows Console Shell: %-10s",
+         info[U_CLASS], info[U_WINCONSOLESHELL]);
   Put_message(buf);
-  if (atoi(info[U_SECURE]))
-    sprintf(buf, "Secure password set on %s.", atot(info[U_SECURE]));
-  else
-    sprintf(buf, "No secure password set.");
+  sprintf(sponsor, "%s %s", info[U_SPONSOR_TYPE], info[U_SPONSOR_NAME]);
+  sprintf(buf, "Sponsor: %-23s Expiration date: %s", sponsor,  info[U_EXPIRATION]);
   Put_message(buf);
+  sprintf(buf, "Account is: %-20s MIT ID number: %s",
+         UserState(atoi(info[U_STATE])), info[U_MITID]);
+  Put_message(buf);
+  sprintf(buf, "Windows Home Directory: %s", info[U_WINHOMEDIR]);
+  Put_message(buf);
+  sprintf(buf, "Windows Profile Directory: %s", info[U_WINPROFILEDIR]);
+  Put_message(buf);
+  status = atoi(info[U_STATE]);
+  if (status == 0 || status == 2)
+    {
+      sprintf(buf, "User %s secure Account Coupon to register",
+             atoi(info[U_SECURE]) ? "needs" : "does not need");
+      Put_message(buf);
+    }
   sprintf(buf, "Comments: %s", info[U_COMMENT]);
   Put_message(buf);
+  sprintf(buf, "Created  by %s on %s.", info[U_CREATOR], info[U_CREATED]);
+  Put_message(buf);
   sprintf(buf, MOD_FORMAT, info[U_MODBY], info[U_MODTIME], info[U_MODWITH]);
   Put_message(buf);
 }
@@ -148,19 +152,26 @@ static void PrintUserInfo(char **info)
 
 static char **SetUserDefaults(char **info)
 {
-  info[U_NAME] = Strsave(UNIQUE_LOGIN);
-  info[U_UID] = Strsave(UNIQUE_UID);
-  info[U_SHELL] = Strsave(DEFAULT_SHELL);
-  info[U_LAST] = Strsave(DEFAULT_NONE);
-  info[U_FIRST] = Strsave(DEFAULT_NONE);
-  info[U_MIDDLE] = Strsave(DEFAULT_NONE);
-  info[U_STATE] = Strsave(DEFAULT_NO);
-  info[U_MITID] = Strsave(DEFAULT_NONE);
-  info[U_CLASS] = Strsave(DEFAULT_CLASS);
-  info[U_COMMENT] = Strsave("");
-  info[U_SIGNATURE] = Strsave("");
-  info[U_SECURE] = Strsave("0");
+  info[U_NAME] = strdup(UNIQUE_LOGIN);
+  info[U_UID] = strdup(UNIQUE_UID);
+  info[U_SHELL] = strdup(DEFAULT_SHELL);
+  info[U_WINCONSOLESHELL] = strdup(DEFAULT_WINCONSOLESHELL);
+  info[U_LAST] = strdup(DEFAULT_NONE);
+  info[U_FIRST] = strdup(DEFAULT_NONE);
+  info[U_MIDDLE] = strdup(DEFAULT_NONE);
+  info[U_STATE] = strdup(DEFAULT_NO);
+  info[U_MITID] = strdup(DEFAULT_NONE);
+  info[U_CLASS] = strdup(DEFAULT_CLASS);
+  info[U_COMMENT] = strdup("");
+  info[U_SIGNATURE] = strdup("");
+  info[U_SECURE] = strdup("0");
+  info[U_WINHOMEDIR] = strdup(DEFAULT_WINHOMEDIR);
+  info[U_WINPROFILEDIR] = strdup(DEFAULT_WINPROFILEDIR);
+  info[U_SPONSOR_TYPE] = strdup("NONE");
+  info[U_SPONSOR_NAME] = strdup("NONE");
+  info[U_EXPIRATION] = strdup("");
   info[U_MODTIME] = info[U_MODBY] = info[U_MODWITH] = info[U_END] = NULL;
+  info[U_CREATED] = info[U_CREATOR] = NULL;
   return info;
 }
 
@@ -169,7 +180,7 @@ static char **SetUserDefaults(char **info)
  * offer to correct it if not.
  */
 
-int CorrectCapitalization(char **name)
+void CorrectCapitalization(char **name)
 {
   char temp_buf[BUFSIZ], fixname[BUFSIZ];
 
@@ -179,10 +190,10 @@ int CorrectCapitalization(char **name)
     {
       Put_message("You entered a name which does not follow the capitalization conventions.");
       sprintf(temp_buf, "Correct it to \"%s\"", fixname);
-      if (YesNoQuestion(temp_buf, 1) == TRUE)
+      if (YesNoQuestion(temp_buf, 0) == TRUE)
        {
          free(*name);
-         *name = strsave(fixname);
+         *name = strdup(fixname);
        }
     }
 }
@@ -200,10 +211,7 @@ int CorrectCapitalization(char **name)
 
 char **AskUserInfo(char **info, Bool name)
 {
-  int i;
-#ifdef GDSS
-  SigInfo si;
-#endif
+  int state;
   char temp_buf[BUFSIZ], *newname;
 
   if (name)
@@ -213,7 +221,7 @@ char **AskUserInfo(char **info, Bool name)
     }
   else
     {
-      struct qelem *elem = NULL;
+      struct mqelem *elem = NULL;
       char *argv[3];
 
       if (GetValueFromUser("User's last name", &info[U_LAST]) == SUB_ERROR)
@@ -228,7 +236,7 @@ char **AskUserInfo(char **info, Bool name)
       argv[0] = info[U_FIRST];
       argv[1] = info[U_LAST];
       if (do_mr_query("get_user_account_by_name", 2, argv,
-                     StoreInfo, (char *) &elem) == MR_SUCCESS)
+                     StoreInfo, &elem) == MR_SUCCESS)
        {
          Put_message("A user by that name already exists in the database.");
          Loop(QueueTop(elem), PrintUserInfo);
@@ -240,7 +248,7 @@ char **AskUserInfo(char **info, Bool name)
     }
   if (name)
     {
-      newname = Strsave(info[U_NAME]);
+      newname = strdup(info[U_NAME]);
       if (GetValueFromUser("The new login name for this user", &newname) ==
          SUB_ERROR)
        return NULL;
@@ -249,10 +257,29 @@ char **AskUserInfo(char **info, Bool name)
           SUB_ERROR)
     return NULL;
 
+  strcpy(temp_buf, info[U_UID]);
   if (GetValueFromUser("User's UID", &info[U_UID]) == SUB_ERROR)
     return NULL;
+  if (strcmp(info[U_UID], UNIQUE_UID) && strcmp(info[U_UID], temp_buf))
+    {
+      struct mqelem *elem = NULL;
+      if (do_mr_query("get_user_account_by_uid", 1, &info[U_UID],
+                     StoreInfo, &elem) == MR_SUCCESS)
+       {
+         Put_message("A user with that uid already exists in the database.");
+         Loop(QueueTop(elem), PrintUserInfo);
+         Loop(QueueTop(elem), FreeInfo);
+         FreeQueue(elem);
+         if (YesNoQuestion("Add new user anyway", TRUE) != TRUE)
+           return NULL;
+       }
+    }
+
   if (GetValueFromUser("User's shell", &info[U_SHELL]) == SUB_ERROR)
     return NULL;
+  if (GetValueFromUser("Windows console shell", &info[U_WINCONSOLESHELL])
+      == SUB_ERROR)
+    return NULL;
   if (name)
     {
       if (GetValueFromUser("User's last name", &info[U_LAST]) == SUB_ERROR)
@@ -289,56 +316,41 @@ char **AskUserInfo(char **info, Bool name)
   if (GetValueFromUser("Comments", &info[U_COMMENT]) == SUB_ERROR)
     return NULL;
 
-  if (YesNoQuestion("Secure password set",
-                   atoi(info[U_SECURE]) ? TRUE : FALSE) == FALSE)
-    {
-      free(info[U_SECURE]);
-      info[U_SECURE] = strsave("0");
-    }
-  else if (!strcmp(info[U_SECURE], "0"))
-    {
-      char buf[16];
-      struct timeval tv;
+  if (GetValueFromUser("Windows Home Directory", &info[U_WINHOMEDIR]) ==
+      SUB_ERROR)
+    return NULL;
 
-      gettimeofday(&tv, NULL);
-      sprintf(buf, "%ld", (long) tv.tv_sec);
-      free(info[U_SECURE]);
-      info[U_SECURE] = strsave(buf);
-    }
+  if (GetValueFromUser("Windows Profile Directory", &info[U_WINPROFILEDIR]) ==
+      SUB_ERROR)
+    return NULL;
+
+  if (GetTypeFromUser("User's sponsor type", "ace_type", &info[U_SPONSOR_TYPE])
+      == SUB_ERROR)
+    return NULL;
+  if (strcmp(info[U_SPONSOR_TYPE], "NONE") &&
+      GetValueFromUser("Sponsor's Name", &info[U_SPONSOR_NAME]) == SUB_ERROR)
+    return NULL;
+
+  if (GetValueFromUser("Expiration date", &info[U_EXPIRATION]) == SUB_ERROR)
+    return NULL;
 
-  /* Sign record */
-#ifdef GDSS
-  if (strcmp(info[U_NAME], UNIQUE_LOGIN))
+  state = atoi(info[U_STATE]);
+  if (!name || state == 0 || state == 2)
     {
-      if (name)
-       sprintf(temp_buf, "%s:%s", newname, info[U_MITID]);
+      if (YesNoQuestion("User needs secure Account Coupon to register",
+                       atoi(info[U_SECURE]) ? TRUE : FALSE) == FALSE)
+       {
+         free(info[U_SECURE]);
+         info[U_SECURE] = strdup("0");
+       }
       else
-       sprintf(temp_buf, "%s:%s", info[U_NAME], info[U_MITID]);
-      si.rawsig = NULL;
-      i = GDSS_Verify(temp_buf, strlen(temp_buf), info[U_SIGNATURE], &si);
-      /* If it's already signed OK, don't resign it. */
-      if (i != GDSS_SUCCESS)
        {
-         free(info[U_SIGNATURE]);
-         info[U_SIGNATURE] = malloc(GDSS_Sig_Size() * 2);
-       sign_again:
-         i = GDSS_Sign(temp_buf, strlen(temp_buf), info[U_SIGNATURE]);
-         if (i != GDSS_SUCCESS)
-           com_err(program_name, gdss2et(i), "Failed to create signature");
-         else
-           {
-             unsigned char buf[256];
-             si.rawsig = buf;
-             i = GDSS_Verify(temp_buf, strlen(temp_buf),
-                             info[U_SIGNATURE], &si);
-             if (strlen(buf) > 68)
-               goto sign_again;
-           }
+         free(info[U_SECURE]);
+         info[U_SECURE] = strdup("1");
        }
     }
-#else /* GDSS */
-  info[U_SIGNATURE] = strsave("");
-#endif /* GDSS */
+
+  info[U_SIGNATURE] = strdup("");
 
   FreeAndClear(&info[U_MODTIME], TRUE);
   FreeAndClear(&info[U_MODBY], TRUE);
@@ -366,18 +378,18 @@ char **AskUserInfo(char **info, Bool name)
  *
  */
 
-struct qelem *GetUserInfo(int type, char *name1, char *name2)
+struct mqelem *GetUserInfo(int type, char *name1, char *name2)
 {
   char *args[2];
   int status;
-  struct qelem *elem = NULL;
+  struct mqelem *elem = NULL;
 
   switch (type)
     {
     case LOGIN:
       args[0] = name1;
       if ((status = do_mr_query("get_user_account_by_login", 1, args,
-                               StoreInfo, (char *) &elem)))
+                               StoreInfo, &elem)))
        {
          com_err(program_name, status,
                  " when attempting to get_user_account_by_login.");
@@ -387,7 +399,7 @@ struct qelem *GetUserInfo(int type, char *name1, char *name2)
     case UID:
       args[0] = name1;
       if ((status = do_mr_query("get_user_account_by_uid", 1, args,
-                               StoreInfo, (char *) &elem)))
+                               StoreInfo, &elem)))
        {
          com_err(program_name, status,
                  " when attempting to get_user_account_by_uid.");
@@ -398,7 +410,7 @@ struct qelem *GetUserInfo(int type, char *name1, char *name2)
       args[0] = name1;
       args[1] = name2;
       if ((status = do_mr_query("get_user_account_by_name", 2, args,
-                               StoreInfo, (char *) &elem)))
+                               StoreInfo, &elem)))
        {
          com_err(program_name, status,
                  " when attempting to get_user_account_by_name.");
@@ -408,7 +420,7 @@ struct qelem *GetUserInfo(int type, char *name1, char *name2)
     case CLASS:
       args[0] = name1;
       if ((status = do_mr_query("get_user_account_by_class", 1, args,
-                               StoreInfo, (char *) &elem)))
+                               StoreInfo, &elem)))
        {
          com_err(program_name, status,
                  " when attempting to get_user_account_by_class.");
@@ -418,7 +430,7 @@ struct qelem *GetUserInfo(int type, char *name1, char *name2)
     case ID:
       args[0] = name1;
       if ((status = do_mr_query("get_user_account_by_id", 1, args,
-                               StoreInfo, (char *) &elem)))
+                               StoreInfo, &elem)))
        {
          com_err(program_name, status,
                  " when attempting to get_user_account_by_id.");
@@ -435,7 +447,7 @@ struct qelem *GetUserInfo(int type, char *name1, char *name2)
  *     Returns: DM_NORMAL.
  */
 
-int AddNewUser(void)
+int AddNewUser(int argc, char **argv)
 {
   int status;
   char **args, *info[MAX_ARGS_SIZE];
@@ -446,7 +458,7 @@ int AddNewUser(void)
       return DM_NORMAL;
     }
   if ((status = do_mr_query("add_user_account", CountArgs(args),
-                           args, Scream, NULL)))
+                           args, NULL, NULL)))
     com_err(program_name, status, " in add_user_account");
   else
     Put_message("New user added to database.");
@@ -466,7 +478,7 @@ static char *GetLoginName(void)
 {
   char *name;
 
-  name = strsave("");
+  name = strdup("");
   if (GetValueFromUser("Login name for this user? ", &name) == SUB_ERROR)
     return NULL;
   Put_message("KERBEROS code not added, did not reserve name with kerberos.");
@@ -480,16 +492,16 @@ static char *GetLoginName(void)
  *     Returns: uid - the malloced uid of the user that was chosen.
  */
 
-static char *ChooseUser(struct qelem *elem)
+static char *ChooseUser(struct mqelem *elem)
 {
   while (elem)
     {
-      char **info = (char **) elem->q_data;
+      char **info = elem->q_data;
       PrintUserInfo(info);
       switch (YesNoQuitQuestion("Is this the user you want (y/n/q)", FALSE))
        {
        case TRUE:
-         return Strsave(info[U_UID]);
+         return strdup(info[U_UID]);
        case FALSE:
          break;
        default:                /* quit or ^C. */
@@ -510,7 +522,7 @@ static char *GetUidNumberFromName(void)
 {
   char *args[5], *uid, first[BUFSIZ], last[BUFSIZ];
   int status;
-  struct qelem *top = NULL;
+  struct mqelem *top = NULL;
 
   if (!Prompt_input("First Name: ", first, BUFSIZ))
     return NULL;
@@ -523,7 +535,7 @@ static char *GetUidNumberFromName(void)
   args[1] = last;
 
   switch ((status = do_mr_query("get_user_account_by_name", 2, args,
-                               StoreInfo, (char *) &top)))
+                               StoreInfo, &top)))
     {
     case MR_SUCCESS:
       break;
@@ -538,13 +550,13 @@ static char *GetUidNumberFromName(void)
   top = QueueTop(top);
   if (QueueCount(top) == 1) /* This is a unique name. */
     {
-      char **info = (char **) top->q_data;
+      char **info = top->q_data;
       Put_message("User ID Number retrieved for the user: ");
       Put_message("");
       PrintUserName(info);
-      uid = Strsave(info[U_UID]);
+      uid = strdup(info[U_UID]);
       FreeQueue(top);
-      return Strsave(uid);
+      return strdup(uid);
     }
 
   Put_message("That name is not unique, choose the user that you want.");
@@ -575,7 +587,7 @@ static void SetUserPassword(char *name)
 static void GiveBackLogin(char *name)
 {
   name = name;                 /* make saber happy. */
-  Put_message("kerberos code not implimented, name not given back.");
+  Put_message("kerberos code not implemented, name not given back.");
   /* send mail to db maintainer if this fails. */
 }
 
@@ -585,12 +597,15 @@ static void GiveBackLogin(char *name)
  *     Returns: DM_NORMAL.
  */
 
-int RegisterUser(void)
+int RegisterUser(int argc, char **argv)
 {
   char *args[MAX_ARGS_SIZE];
-  char *login, *fstype = NULL;
+  char *login, *potype = NULL;
   char temp_buf[BUFSIZ];
-  int status;
+  int status, i;
+
+  for (i = 0; i < MAX_ARGS_SIZE; i++)
+    args[i] = NULL;
 
   Put_message("This function has NO kerberos support, so strange things");
   Put_message("may happen if you use it to register a user.");
@@ -599,7 +614,7 @@ int RegisterUser(void)
     {
     case TRUE:
       Prompt_input("What is the UID number of the user? ", temp_buf, BUFSIZ);
-      args[0] = Strsave(temp_buf);
+      args[0] = strdup(temp_buf);
       break;
     case FALSE:
       if (!(args[0] = GetUidNumberFromName()))
@@ -610,9 +625,8 @@ int RegisterUser(void)
     }
 
   sprintf(temp_buf, "u%s", args[0]);
-  login = strsave(temp_buf);
-  if ((GetValueFromUser("Login name for this user? ", &login) == SUB_ERROR) ||
-      (GetFSTypes(&fstype, FALSE) == SUB_ERROR))
+  login = strdup(temp_buf);
+  if (GetValueFromUser("Login name for this user? ", &login) == SUB_ERROR)
     {
       args[1] = login;
       FreeInfo(args);     /* This work because the NULL temination is ok. */
@@ -620,11 +634,27 @@ int RegisterUser(void)
     }
   Put_message("KERBEROS code not added, did not reserve name with kerberos.");
   args[1] = login;
-  args[2] = fstype;
+  
+  sprintf(temp_buf, "IMAP");
+  potype = strdup(temp_buf);
+  if (GetValueFromUser("P.O. Box Type for this user? ", &potype) == SUB_ERROR)
+    {
+      args[2] = potype;
+      FreeInfo(args);
+      return DM_NORMAL;
+    }
+  if (strcmp(potype, "POP") && strcmp(potype, "IMAP") && strcmp(potype, "EXCHANGE"))
+    {
+      sprintf(temp_buf, "Unknown P.O. Box type.");
+      Put_message(temp_buf);
+      FreeInfo(args);
+      return DM_NORMAL;
+    }
+  args[2] = potype;
   args[3] = NULL;
 
   switch ((status = do_mr_query("register_user", CountArgs(args),
-                               args, Scream, NULL)))
+                               args, NULL, NULL)))
     {
     case MR_SUCCESS:
       sprintf(temp_buf, "User %s successfully registered.", login);
@@ -663,7 +693,7 @@ static void RealUpdateUser(char **info, Bool junk)
       return;
     }
   if ((status = do_mr_query("update_user_account", CountArgs(args),
-                           args, Scream, NULL)))
+                           args, NULL, NULL)))
     {
       com_err(program_name, status, " in ModifyFields");
       sprintf(error_buf, "User %s not updated due to errors.", info[NAME]);
@@ -679,7 +709,7 @@ static void RealUpdateUser(char **info, Bool junk)
 
 int UpdateUser(int argc, char **argv)
 {
-  struct qelem *elem;
+  struct mqelem *elem;
 
   elem = GetUserInfo(LOGIN, argv[1], NULL);
   QueryLoop(elem, NullPrint, RealUpdateUser, "Update the user");
@@ -700,7 +730,7 @@ static void RealDeactivateUser(char **info, Bool one_item)
   int status;
   char txt_buf[BUFSIZ];
   char *qargs[2], **args;
-  struct qelem *elem = NULL;
+  struct mqelem *elem = NULL;
 
   if (one_item)
     {
@@ -711,7 +741,7 @@ static void RealDeactivateUser(char **info, Bool one_item)
 
   qargs[0] = info[NAME];
   qargs[1] = "3";
-  if ((status = do_mr_query("update_user_status", 2, qargs, Scream, NULL)))
+  if ((status = do_mr_query("update_user_status", 2, qargs, NULL, NULL)))
     {
       com_err(program_name, status, " in update_user_status");
       sprintf(txt_buf, "User %s not deactivated due to errors.", info[NAME]);
@@ -721,18 +751,18 @@ static void RealDeactivateUser(char **info, Bool one_item)
                         FALSE) == TRUE)
     {
       status = do_mr_query("get_list_info", 1, &(info[NAME]), StoreInfo,
-                          (char *) &elem);
+                          &elem);
       if (status == MR_SUCCESS)
        {
-         args = (char **) (QueueTop(elem)->q_data);
+         args = QueueTop(elem)->q_data;
          free(args[L_ACTIVE]);
-         args[L_ACTIVE] = strsave("0");
+         args[L_ACTIVE] = strdup("0");
          FreeAndClear(&args[L_MODTIME], TRUE);
          FreeAndClear(&args[L_MODBY], TRUE);
          FreeAndClear(&args[L_MODWITH], TRUE);
-         SlipInNewName(args, args[L_NAME]);
+         SlipInNewName(args, strdup(args[L_NAME]));
          if ((status = do_mr_query("update_list", CountArgs(args), args,
-                                   Scream, NULL)))
+                                   NULL, NULL)))
            {
              com_err(program_name, status, " updating list, "
                      "not deactivating list or filesystem");
@@ -752,25 +782,23 @@ static void RealDeactivateUser(char **info, Bool one_item)
        }
 
       if ((status = do_mr_query("get_filesys_by_label", 1, &(info[NAME]),
-                               StoreInfo, (char *) &elem)))
+                               StoreInfo, &elem)))
        {
          com_err(program_name, status, " getting filsys info, "
                  "not deactivating filesystem");
-         FreeInfo(args);
-         FreeQueue(elem);
          return;
        }
-      args = (char **) (QueueTop(elem)->q_data);
+      args = QueueTop(elem)->q_data;
       free(args[FS_TYPE]);
-      args[FS_TYPE] = strsave("ERR");
+      args[FS_TYPE] = strdup("ERR");
       free(args[FS_COMMENTS]);
-      args[FS_COMMENTS] = strsave("Locker disabled; call 3-1325 for help");
+      args[FS_COMMENTS] = strdup("Locker disabled; call 3-1325 for help");
       FreeAndClear(&args[FS_MODTIME], TRUE);
       FreeAndClear(&args[FS_MODBY], TRUE);
       FreeAndClear(&args[FS_MODWITH], TRUE);
-      SlipInNewName(args, args[FS_NAME]);
+      SlipInNewName(args, strdup(args[FS_NAME]));
       if ((status = do_mr_query("update_filesys", CountArgs(args), args,
-                               Scream, NULL)))
+                               NULL, NULL)))
        {
          com_err(program_name, status, " updating filesystem, "
                  "not deactivating filesystem");
@@ -792,7 +820,7 @@ static void RealDeactivateUser(char **info, Bool one_item)
 
 int DeactivateUser(int argc, char **argv)
 {
-  struct qelem *elem;
+  struct mqelem *elem;
 
   elem = GetUserInfo(LOGIN, argv[1], NULL);
   QueryLoop(elem, NullPrint, RealDeactivateUser, "Deactivate user");
@@ -817,17 +845,17 @@ int DeactivateUser(int argc, char **argv)
 int DeleteUserByUid(int argc, char **argv)
 {
   int status;
-  struct qelem *elem = NULL;
+  struct mqelem *elem = NULL;
   char **info;
 
   if (!ValidName(argv[1]))
     return DM_NORMAL;
 
   if ((status = do_mr_query("get_user_account_by_uid", 1, argv + 1, StoreInfo,
-                           (char *) &elem)))
+                           &elem)))
     com_err(program_name, status, " in get_user_account_by_uid");
 
-  info = (char **) elem->q_data;
+  info = elem->q_data;
   argv[1] = info[U_NAME];
 
   DeleteUser(argc, argv);
@@ -844,7 +872,7 @@ int DeleteUserByUid(int argc, char **argv)
 
 int ShowUserByLogin(int argc, char *argv[])
 {
-  struct qelem *top, *elem;
+  struct mqelem *top, *elem;
 
   elem = top = GetUserInfo(LOGIN, argv[1], NULL);
   Loop(elem, PrintUserInfo);
@@ -862,7 +890,7 @@ int ShowUserByLogin(int argc, char *argv[])
 
 int ShowUserByName(int argc, char *argv[])
 {
-  struct qelem *top;
+  struct mqelem *top;
   char buf[BUFSIZ];
 
   top = GetUserInfo(BY_NAME, argv[1], argv[2]);
@@ -898,7 +926,7 @@ int ShowUserByName(int argc, char *argv[])
 
 int ShowUserByClass(int argc, char **argv)
 {
-  struct qelem *top;
+  struct mqelem *top;
 
   if (YesNoQuestion("This will take a long time.  Are you sure", 0) == FALSE)
     return DM_NORMAL;
@@ -918,7 +946,7 @@ int ShowUserByClass(int argc, char **argv)
 
 int ShowUserById(int argc, char *argv[])
 {
-  struct qelem *top, *elem;
+  struct mqelem *top, *elem;
 
   elem = top = GetUserInfo(ID, argv[1], NULL);
   Loop(elem, PrintUserInfo);
@@ -938,11 +966,11 @@ int ShowUserById(int argc, char *argv[])
 int GetKrbmap(int argc, char **argv)
 {
   int stat;
-  struct qelem *elem = NULL, *top;
+  struct mqelem *elem = NULL, *top;
   char buf[BUFSIZ];
 
   if ((stat = do_mr_query("get_kerberos_user_map", 2, &argv[1],
-                         StoreInfo, (char *)&elem)))
+                         StoreInfo, &elem)))
     {
       com_err(program_name, stat, " in GetKrbMap.");
       return DM_NORMAL;
@@ -952,7 +980,7 @@ int GetKrbmap(int argc, char **argv)
   Put_message("");
   while (elem)
     {
-      char **info = (char **) elem->q_data;
+      char **info = elem->q_data;
       sprintf(buf, "User: %-9s Principal: %s",
              info[KMAP_USER], info[KMAP_PRINCIPAL]);
       Put_message(buf);
@@ -981,7 +1009,7 @@ int AddKrbmap(int argc, char **argv)
       return DM_NORMAL;
     }
   if ((stat = do_mr_query("add_kerberos_user_map", 2, &argv[1],
-                         Scream, NULL)))
+                         NULL, NULL)))
     {
       com_err(program_name, stat, " in AddKrbMap.");
       if (stat == MR_EXISTS)
@@ -1003,102 +1031,205 @@ int DeleteKrbmap(int argc, char **argv)
   int stat;
 
   if ((stat = do_mr_query("delete_kerberos_user_map", 2, &argv[1],
-                         Scream, NULL)))
+                         NULL, NULL)))
     com_err(program_name, stat, " in DeleteKrbMap.");
   return DM_NORMAL;
 }
 
+int GetUserReservations(int argc, char **argv)
+{
+  int stat;
+  struct mqelem *elem = NULL, *top;
+  char buf[BUFSIZ];
 
-/*     Function Name: GetDirFlags
- *     Description: Shows MITdir listing preferences
- *     Arguments: argc, argv - argv[1] contains the user login name
- *     Returns: none.
- */
+  if ((stat = do_mr_query("get_user_reservations", 1, &argv[1],
+                         StoreInfo, &elem)))
+    {
+      com_err(program_name, stat, " in GetUserReservations.");
+      return DM_NORMAL;
+    }
 
-int GetDirFlags(int argc, char **argv)
+  top = elem = QueueTop(elem);
+  Put_message("");
+  if (!elem)
+    Put_message("No reservations for that user.");
+  while (elem)
+    {
+      char **info = elem->q_data;
+      sprintf(buf, "Reservation: %s", info[0]);
+      Put_message(buf);
+      elem = elem->q_forw;
+    }
+
+  FreeQueue(QueueTop(top));
+  return DM_NORMAL;  
+}
+
+int AddUserReservation(int argc, char **argv)
 {
-  int stat, flags;
-  struct qelem *elem = NULL;
-  char buf[BUFSIZ], **info;
+  int stat;
+  char buf[BUFSIZ];
+  
+  switch (stat = do_mr_query("add_user_reservation", 2, &argv[1],
+                            NULL, NULL))
+    {
+    case MR_SUCCESS:
+      break;
+    case MR_STRING:
+      sprintf(buf, "The reservation %s is not valid.", argv[2]);
+      Put_message(buf);
+      PrintReservationTypes();
+      break;
+    default:
+      com_err(program_name, stat, " in AddUserReservation.");
+      break;
+    }
+  
+  return DM_NORMAL;
+}
 
-  if (!ValidName(argv[1]))
-    return DM_NORMAL;
+int DelUserReservation(int argc, char **argv)
+{
+  int stat;
+  char buf[BUFSIZ];
 
-  if ((stat = do_mr_query("get_user_directory_flags", 1, &argv[1],
-                         StoreInfo, (char *)&elem)))
+  switch (stat = do_mr_query("delete_user_reservation", 2, &argv[1],
+                    NULL, NULL))
     {
-      com_err(program_name, stat, " in GetDirFlags.");
-      return DM_NORMAL;
+    case MR_SUCCESS:
+      break;
+    case MR_STRING:
+      sprintf(buf, "The reservation %s is not valid.", argv[2]);
+      Put_message(buf);
+      PrintReservationTypes();
+      break;
+    default:
+      com_err(program_name, stat, " in DelUserReservation.");
+      break;
     }
+  
+  return DM_NORMAL;
+}
 
-  info = (char **) QueueTop(elem)->q_data;
-  flags = atoi(info[0]);
-  FreeQueue(QueueTop(elem));
+int GetUserByReservation(int argc, char **argv)
+{
+  int stat;
+  struct mqelem *elem = NULL, *top;
+  char buf[BUFSIZ];
 
+  switch (stat = do_mr_query("get_user_by_reservation", 1, &argv[1],
+                    StoreInfo, &elem))
+    {
+    case MR_SUCCESS:
+      break;
+    case MR_STRING:
+      sprintf(buf, "The reservation %s is not valid.", argv[1]);
+      Put_message(buf);
+      PrintReservationTypes();
+      return DM_NORMAL;
+    default:
+      com_err(program_name, stat, " in GetUserByReservation.");
+      return DM_NORMAL;
+    }
+  
+  top = elem = QueueTop(elem);
   Put_message("");
-  sprintf(buf, "User: %s", argv[1]);
-  Put_message(buf);
-  if (flags & DIRFLAGS_SUPPRESS)
-      Put_message("Does NOT appear in the on-line directory.");
-  else
+  while (elem)
     {
-      Put_message("Does appear in the on-line directory.");
-      if (flags & DIRFLAGS_NONLOCAL)
-       Put_message("Is listed with non-MIT.EDU email address (if known)");
-      else
-       Put_message("Is listed with MIT.EDU email address.");
+      char **info = elem->q_data;
+      sprintf(buf, "User: %s", info[0]);
+      Put_message(buf);
+      elem = elem->q_forw;
     }
 
-  return DM_NORMAL;
+  FreeQueue(QueueTop(top));
+  return DM_NORMAL;  
 }
 
-/*     Function Name: SetDirFlags
- *     Description: Update online directory preferences
- *     Arguments: argc, argv - the login name of the user in argv[1].
- *     Returns: DM_NORMAL.
- */
+void PrintReservationTypes(void)
+{
+  int stat;
+  struct mqelem *elem = NULL, *top;
+  char buf[BUFSIZ];
+  char *qargs[2];
 
-int SetDirFlags(int argc, char **argv)
+  Put_message("Valid types of reservations are: ");
+  Put_message("");
+  qargs[0] = "*";
+  qargs[1] = "RESERVE";
+  qargs[2] = "*";
+  if ((stat = do_mr_query("get_alias", 3, &qargs[0],
+                         StoreInfo, &elem)))
+    {
+      com_err(program_name, stat, "in PrintReservationTypes.");
+    }
+  top = elem = QueueTop(elem);
+  while (elem)
+    {
+      char **info = elem->q_data;
+      sprintf(buf, "%s", info[2]);
+      Put_message(buf);
+      elem = elem->q_forw;
+    }
+
+  FreeQueue(QueueTop(top));  
+}
+
+int UserBySponsor(int argc, char **argv)
 {
-  int stat, flags;
-  char **info, buf[BUFSIZ], *args[2];
-  struct qelem *elem = NULL;
+  char buf[BUFSIZ], temp_buf[BUFSIZ], *type, *name;
+  struct mqelem *top;
 
-  if (!ValidName(argv[1]))
+  type = strdup("USER");
+  if (GetTypeFromUser("Type of sponsor", "search_ace_type", &type) == SUB_ERROR)
     return DM_NORMAL;
 
-  /* Fetch current prefs */
-  if ((stat = do_mr_query("get_user_directory_flags", 1, &argv[1],
-                         StoreInfo, (char *) &elem)))
+  sprintf(buf, "Name of %s", type);
+  name = strdup(user);
+  if (GetValueFromUser(buf, &name) == SUB_ERROR)
+    return DM_NORMAL;
+
+  switch (YesNoQuestion("Do you want a recursive search (y/n)", FALSE))
     {
-      com_err(program_name, stat, " in GetDirFlags.");
+    case TRUE:
+      sprintf(temp_buf, "R%s", type);     /* "USER to "RUSER", etc. */
+      free(type);
+      type = strdup(temp_buf);
+      break;
+    case FALSE:
+      break;
+    default:
       return DM_NORMAL;
     }
-  info = (char **) QueueTop(elem)->q_data;
-  flags = atoi(info[0]);
-  FreeQueue(QueueTop(elem));
 
-  sprintf(buf, "List %s in the on-line directory (y/n)", argv[1]);
-  if (YesNoQuestion(buf, !(flags & DIRFLAGS_SUPPRESS)))
-    flags &= ~DIRFLAGS_SUPPRESS;
-  else
-    flags |= DIRFLAGS_SUPPRESS;
-
-  sprintf(buf, "List MIT.EDU email address even when mail is "
-         "forwarded elsewhere? (y/n)");
-  if (YesNoQuestion(buf, !(flags & DIRFLAGS_NONLOCAL)))
-    flags &= ~DIRFLAGS_NONLOCAL;
-  else
-    flags |= DIRFLAGS_NONLOCAL;
-
-  args[0] = argv[1];
-  sprintf(buf, "%d", flags);
-  args[1] = buf;
-  if ((stat = do_mr_query("update_user_directory_flags", 2,
-                         args, Scream, NULL)))
-    com_err(program_name, stat, " in SetDirFlags");
-  else
-    Put_message("Directory preferences set.");
+  top = GetUserBySponsor(type, name);
+  Loop(top, PrintLogin);
 
+  FreeQueue(top);
   return DM_NORMAL;
 }
+
+static void PrintLogin(char **info)
+{
+     char buf[BUFSIZ];
+
+     sprintf(buf, "Login: %s", info[U_NAME]);
+     Put_message(buf);
+}
+
+struct mqelem *GetUserBySponsor(char *type, char *name)
+{
+  char *args[2];
+  struct mqelem *elem = NULL;
+  int status;
+
+  args[0] = type;
+  args[1] = name;
+  if ((status = do_mr_query("get_user_account_by_sponsor", 2, args, StoreInfo,
+                           &elem)))
+    {
+      com_err(program_name, status, " in get_user_account_by_sponsor");
+      return NULL;
+    }
+  return QueueTop(elem);
+}
This page took 0.080853 seconds and 4 git commands to generate.