]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/tool/tool.c
ngt_RandomStr(): Add implicit cast to "unsigned".
[ngircd-alex.git] / src / tool / tool.c
index c973539c987d0c0a5c5c716c356e354cf4df6325..df10918893348a4a1ef4205938e00db49eddb6b7 100644 (file)
@@ -1,27 +1,36 @@
 /*
  * ngIRCd -- The Next Generation IRC Daemon
- * Copyright (c)2001-2009 Alexander Barton (alex@barton.de)
+ * Copyright (c)2001-2010 Alexander Barton (alex@barton.de)
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
- *
- * Tool functions
  */
 
-
 #include "portab.h"
 
+/**
+ * @file
+ * Tool functions
+ */
+
 #include "imp.h"
 #include <assert.h>
 #include <ctype.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
+#include <sys/time.h>
 
 #include <netinet/in.h>
 
+#ifdef SYSLOG
+#define SYSLOG_NAMES 1
+#include <syslog.h>
+#endif
+
 #include "exp.h"
 #include "tool.h"
 
@@ -122,4 +131,120 @@ ngt_TrimLastChr( char *String, const char Chr)
 } /* ngt_TrimLastChr */
 
 
+/**
+ * Fill a String with random chars
+ */
+GLOBAL char *
+ngt_RandomStr( char *String, const size_t len)
+{
+       assert(String != NULL);
+
+       static const char chars[] = 
+               "0123456789ABCDEFGHIJKLMNO"
+               "PQRSTUVWXYZabcdefghijklmn"
+               "opqrstuvwxyz!\"#$&'()*+,-"
+               "./:;<=>?@[\\]^_`";
+
+       struct timeval t;
+       gettimeofday(&t, NULL);
+       srand((unsigned)(t.tv_usec * t.tv_sec));
+
+       for (size_t i = 0; i < len; ++i) {
+               String[i] = chars[rand() % (sizeof(chars) - 1)];
+       }
+
+       String[len] = '\0';
+
+       return String;
+} /* ngt_RandomStr */
+
+
+#ifdef SYSLOG
+
+
+#ifndef INTERNAL_MARK
+
+#ifndef _code
+typedef struct _code {
+        char    *c_name;
+        int     c_val;
+} CODE;
+#endif
+
+CODE facilitynames[] = {
+#ifdef LOG_AUTH
+       { "auth",       LOG_AUTH },
+#endif
+#ifdef LOG_AUTHPRIV
+       { "authpriv",   LOG_AUTHPRIV },
+#endif
+#ifdef LOG_CRON
+       { "cron",       LOG_CRON },
+#endif
+#ifdef LOG_DAEMON
+       { "daemon",     LOG_DAEMON },
+#endif
+#ifdef LOG_FTP
+       { "ftp",        LOG_FTP },
+#endif
+#ifdef LOG_LPR
+       { "lpr",        LOG_LPR },
+#endif
+#ifdef LOG_MAIL
+       { "mail",       LOG_MAIL },
+#endif
+#ifdef LOG_NEWS
+       { "news",       LOG_NEWS },
+#endif
+#ifdef LOG_UUCP
+       { "uucp",       LOG_UUCP },
+#endif
+#ifdef LOG_USER
+       { "user",       LOG_USER },
+#endif
+#ifdef LOG_LOCAL7
+       { "local0",     LOG_LOCAL0 },
+       { "local1",     LOG_LOCAL1 },
+       { "local2",     LOG_LOCAL2 },
+       { "local3",     LOG_LOCAL3 },
+       { "local4",     LOG_LOCAL4 },
+       { "local5",     LOG_LOCAL5 },
+       { "local6",     LOG_LOCAL6 },
+       { "local7",     LOG_LOCAL7 },
+#endif
+       { 0,            -1 }
+};
+
+#endif
+
+
+GLOBAL const char*
+ngt_SyslogFacilityName(int Facility)
+{
+       int i = 0;
+       while(facilitynames[i].c_name) {
+               if (facilitynames[i].c_val == Facility)
+                       return facilitynames[i].c_name;
+               i++;
+       }
+       return "unknown";
+}
+
+
+GLOBAL int
+ngt_SyslogFacilityID(char *Name, int DefaultFacility)
+{
+       int i = 0;
+       while(facilitynames[i].c_name) {
+               if (strcasecmp(facilitynames[i].c_name, Name) == 0)
+                       return facilitynames[i].c_val;
+               i++;
+       }
+       return DefaultFacility;
+}
+
+
+#endif
+
+
 /* -eof- */