]> andersk Git - moira.git/blobdiff - server/mr_util.c
Remove `delete_user_by_uid' since it's never been used in any logs we have,
[moira.git] / server / mr_util.c
index f2375bf8fa87dc5a972fd374aaba19385c653865..1b5bb3378211aa12f5a529838b334c30190a1539 100644 (file)
  *     $Header$
  *
  *     Copyright (C) 1987 by the Massachusetts Institute of Technology
- *
- *     $Log$
- *     Revision 1.3  1987-06-04 01:35:28  wesommer
- *     Added better logging routines.
- *
- * Revision 1.2  87/06/03  16:08:07  wesommer
- * Fixes for lint.
- * 
- * Revision 1.1  87/06/02  20:07:32  wesommer
- * Initial revision
- * 
+ *     For copying and distribution information, please see the file
+ *     <mit-copyright.h>.
  */
 
 #ifndef lint
-static char *rcsid_sms_util_c = "$Header$";
+static char *rcsid_mr_util_c = "$Header$";
 #endif lint
 
-#include "sms_private.h"
-#include "sms_server.h"
-
+#include <mit-copyright.h>
+#include "mr_server.h"
+#include <com_err.h>
 #include <ctype.h>
-#include <strings.h>
+#include <sys/types.h>
+#include <string.h>
 
 extern char *whoami;
 
-/*
- * XXX WARNING! THIS DOES NO RANGE CHECKING!!!
- * This is a temporary hack...
- */
 char *
-requote(buf, cp)
+requote(buf, cp, len)
        char *buf;
        register char *cp;
 {
-       register char c;
-       *buf++ = '"';
-       for( ; c= *cp; cp++){
+       register int count = 0;
+       register unsigned char c;
+       if (len <= 2) return buf;
+       *buf++ = '"'; count++; len--;
+       for(; (count < 258) && (len > 1) && (c = *cp);
+           cp++, --len, ++count) {
                if (c == '\\' || c == '"') *buf++ = '\\';
                if (isprint(c)) *buf++ = c;
                else {
                        sprintf(buf, "\\%03o", c);
-                       buf = index(buf, '\0');
+                       buf = strchr(buf, '\0');
                }
        }
-       *buf++ = '"';
-       *buf = '\0';
+       if (len > 1) { *buf++ = '"'; count++; len--; }
+       if (len > 1) *buf = '\0';
        return buf;
 }
-/*
- * XXX WARNING! THIS DOES NO RANGE CHECKING!!!
- * This is a temporary hack...
- */
-log_args(argc, argv)
+
+void log_args(tag, version, argc, argv)
+       char *tag;
+       int version;
        int argc;
        char **argv;
 {
        char buf[BUFSIZ];
        register int i;
-       register char *bp = buf;
+       register char *bp;
        
-       for (i = 0; i < argc; i++) {
+       i = strlen(tag);
+       sprintf(buf, "%s[%d]: ", tag, version);
+       for (bp = buf; *bp; bp++);
+       
+       for (i = 0; i < argc && ((buf - bp) + BUFSIZ) > 2; i++) {
                if (i != 0) {
                        *bp++ = ',';
                        *bp++ = ' '; 
                }
-               bp = requote(bp, argv[i]);
+               bp = requote(bp, argv[i], (buf - bp) + BUFSIZ);
        }
        *bp = '\0';
-       com_err(whoami, 0, buf);
+       com_err(whoami, 0, "%s", buf);
 }
        
-void sms_com_err(whoami, code, message)
-       char *whoami;
-       int code;
-       char *message;
+void mr_com_err(whoami, code, fmt, pvar)
+       const char *whoami;
+       long code;
+       const char *fmt;
+       va_list pvar;
 {
-       extern char *error_message();
        extern client *cur_client;
        
-       struct iovec strings[7];
-       char buf[32];
-       if (cur_client)
-               (void) sprintf(buf, "[#%d]", cur_client->id);
-       else buf[0]='\0';
-       
-       strings[1].iov_base = buf;
-       strings[1].iov_len = strlen(buf);
-       
-       strings[0].iov_base = whoami;
        if (whoami) {
-               strings[0].iov_len = strlen(whoami);
-               strings[2].iov_base = ": ";
-               strings[2].iov_len = 2;
-       } else {
-               strings[0].iov_len = 0;
-               strings[2].iov_base = " ";
-               strings[2].iov_len = 1;
+               fputs(whoami, stderr);
+               if (cur_client) fprintf(stderr, "[#%d]", cur_client->id);
+               fputs(": ", stderr);
        }
        if (code) {
-               register char *errmsg = error_message(code);
-               strings[3].iov_base = errmsg;
-               strings[3].iov_len = strlen(errmsg);
-               strings[4].iov_base = " ";
-               strings[4].iov_len = 1;
-       } else {
-               strings[3].iov_len = 0;
-               strings[4].iov_len = 0;
+               fputs(error_message(code), stderr);
+       }
+       if (fmt) {
+               _doprnt(fmt, pvar, stderr);
+       }
+       putc('\n', stderr);
+}
+
+
+/* mr_trim_args: passed an argument vector, it will trim any trailing
+ * spaces on the args by writing a null into the string.  If an argument
+ * appears to be binary instead of ASCII, it will not be trimmed.
+ */
+
+int mr_trim_args(argc, argv)
+int argc;
+char **argv;
+{
+    register char **arg;
+    register unsigned char *p, *lastch;
+
+    for (arg = argv; argc--; arg++) {
+       for (lastch = p = (unsigned char *) *arg; *p; p++) {
+           /* If any byte in the string has the high bit set, assume
+            * that it is binary and we do not want to trim it.
+            * Setting p = lastch will cause us not to trim the string
+            * when we break out of this inner loop.
+            */
+           if (*p >= 0x80) {
+               p = lastch;
+               break;
+           }
+           if (!isspace(*p))
+             lastch = p;
+       }
+       if (p != lastch) {
+           if (isspace(*lastch))
+             *lastch = 0;
+           else
+             if (*(++lastch)) *lastch = 0;
        }
-       strings[5].iov_base = message;
-       strings[5].iov_len = strlen(message);
-       strings[6].iov_base = "\n";
-       strings[6].iov_len = 1;
-       (void) writev(2, strings, 7);
+    }
+    return(0);
+}
+
+
+/* returns a copy of the argv and all of it's strings */
+
+char **mr_copy_args(argv, argc)
+char **argv;
+int argc;
+{
+    char **a;
+    int i;
+
+    a = (char **) malloc(argc * sizeof(char *));
+    if (a == 0)
+      return(a);
+    for (i = 0; i < argc; i++)
+      a[i] = strsave(argv[i]);
+    return(a);
 }
This page took 0.037996 seconds and 4 git commands to generate.