]> git.ipfire.org Git - thirdparty/ulogd2.git/commitdiff
rename ulogd_LOCALTIME into ulogd_LOCAL, add local.hostname tag
authorlaforge <laforge>
Wed, 28 Aug 2002 09:37:20 +0000 (09:37 +0000)
committerYasuyuki Kozakai <yasuyuki.kozakai@toshiba.co.jp>
Wed, 21 May 2008 18:56:48 +0000 (03:56 +0900)
(Martin Kähmer)

Rules.make.in
extensions/ulogd_LOCAL.c [new file with mode: 0644]
extensions/ulogd_LOCALTIME.c
ulogd.spec

index 0f9c9376271899f189f5ae5846fe505db1569c4e..428b81fbce5b342a1f3ede1070b9d402f3bf02d9 100644 (file)
@@ -3,6 +3,7 @@
 prefix=@prefix@
 exec_prefix=@exec_prefix@
 sysconfdir=@sysconfdir@
+sbindir=@sbindir@
 
 ULOGD_CONFIGFILE=@sysconfdir@/ulogd.conf
 
@@ -26,7 +27,7 @@ LIBS=@LIBS@
 
 
 # Names of the plugins to be compiled
-ULOGD_SL:=BASE OPRINT PWSNIFF LOGEMU LOCALTIME
+ULOGD_SL:=BASE OPRINT PWSNIFF LOGEMU LOCAL
 
 # mysql output support
 #ULOGD_SL+=MYSQL
diff --git a/extensions/ulogd_LOCAL.c b/extensions/ulogd_LOCAL.c
new file mode 100644 (file)
index 0000000..3ecf2b5
--- /dev/null
@@ -0,0 +1,99 @@
+/*  ulogd_LOCAL.c, Version 0.3
+ *
+ *  ulogd interpreter plugin for: - local time of packet
+ *                                - hostname of localhost
+ *
+ *  (C) 2001-2002 by Florent AIDE <faide@alphacent.com>
+ *  with the help of Moez MKADMI <moez.mka@voila.fr>
+ *  shamelessly ripped from Harald Welte
+ *
+ *  2002 extended by Martin Kaehmer <teg@mompl.org>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License version 2 
+ *  as published by the Free Software Foundation
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ *
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <ulogd.h>
+#include <string.h>
+
+#ifdef DEBUG_LOCAL
+#define DEBUGP(x) ulogd_log(ULOGD_DEBUG, x)
+#else
+#define DEBUGP(format, args...)
+#endif
+
+
+static char hostname[255];
+
+
+static ulog_iret_t *_interp_local(ulog_interpreter_t *ip,
+                                  ulog_packet_msg_t *pkt)
+{
+    struct timeval tv;
+    ulog_iret_t *ret = ip->result;
+
+    /* Get date */
+    gettimeofday(&tv, NULL);
+
+    /* put date */
+    ret[0].value.ui32 = (unsigned long) tv.tv_sec;
+    ret[0].flags |= ULOGD_RETF_VALID;
+
+    ret[1].value.ptr = hostname;
+    ret[1].flags |= ULOGD_RETF_VALID;
+
+    return ret;
+}
+
+static ulog_iret_t local_rets[] = {
+    { NULL, NULL, 0, ULOGD_RET_UINT32, ULOGD_RETF_NONE, "local.time",
+      { ui32: 0 } },
+    { NULL, NULL, 0, ULOGD_RET_STRING, ULOGD_RETF_NONE, "local.hostname",
+      { ptr: NULL } },
+};
+
+static ulog_interpreter_t local_ip[] = { 
+
+    { NULL, "local", 0, &_interp_local, 2, &local_rets },
+    { NULL, "", 0, NULL, 0, NULL },
+};
+
+void _local_reg_ip(void)
+{
+    ulog_interpreter_t *ip = local_ip;
+    ulog_interpreter_t *p;
+
+    for (p = ip; p->interp; p++)
+        register_interpreter(p);
+
+}
+
+void _init(void)
+{
+    /* get hostname */
+    char *tmp;
+    if (gethostname(hostname, sizeof(hostname)) < 0) {
+        ulogd_log(ULOGD_FATAL, "can't gethostname(): %s\n",
+                  strerror(errno));
+        exit(2);
+    }
+    /* strip off everything after first '.' */
+    if (tmp = strchr(hostname, '.'))
+        *tmp = '\0';
+
+    _local_reg_ip();
+}
index d1a40ce6d0cf9b9df30501fa15e13c4b22cb8a24..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,76 +0,0 @@
-/* ulogd_LOCALTIME.c, Version 0.2
- *
- * ulogd locatime logger for each and every packet we see ;)
- *
- * (C) 2001-2002 by Florent AIDE <faide@alphacent.com>
- *     with the help of Moez MKADMI <moez.mka@voila.fr>
- * shamelessly ripped from Harald Welte
- *
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License version 2 
- *  as published by the Free Software Foundation
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- *
- *
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <ulogd.h>
-#include <string.h>
-
-#ifdef DEBUG_LOCALTIME
-#define DEBUGP(x) ulogd_log(ULOGD_DEBUG, x)
-#else
-#define DEBUGP(format, args...)
-#endif
-
-static ulog_iret_t *_interp_localtime(ulog_interpreter_t *ip, 
-                                     ulog_packet_msg_t *pkt)
-{
-       struct timeval tv;
-       ulog_iret_t *ret = ip->result;
-
-       /* Get date */
-       gettimeofday(&tv, NULL);
-
-       /* put date */
-       ret[0].value.ui32 = (unsigned long) tv.tv_sec; 
-       ret[0].flags |= ULOGD_RETF_VALID;
-
-       return ret;
-}
-
-static ulog_iret_t localtime_rets[] = {
-       { NULL, NULL, 0, ULOGD_RET_UINT32, ULOGD_RETF_NONE, "local.time", 
-         { ui32: 0 } },
-};
-
-static ulog_interpreter_t localtime_ip[] = { 
-
-       { NULL, "local", 0, &_interp_localtime, 1, &localtime_rets },
-       { NULL, "", 0, NULL, 0, NULL }, 
-};
-
-void _localtime_reg_ip(void)
-{
-       ulog_interpreter_t *ip = localtime_ip;
-       ulog_interpreter_t *p;
-
-       for (p = ip; p->interp; p++)
-               register_interpreter(p);
-
-}
-
-void _init(void)
-{
-       _localtime_reg_ip();
-}
index c29e1f34d769aeac32c589a86121dfb75f5e6085..045cec4142162675438be881ff38f91d8cc28f42 100644 (file)
@@ -59,7 +59,7 @@ rm -rf %{buildroot}
 %{_sysconfdir}/rc.d/init.d/ulogd
 %dir %{_libdir}/ulogd
 %{_libdir}/ulogd/ulogd_BASE.so
-%{_libdir}/ulogd/ulogd_LOCALTIME.so
+%{_libdir}/ulogd/ulogd_LOCAL.so
 %{_libdir}/ulogd/ulogd_LOGEMU.so
 %{_libdir}/ulogd/ulogd_OPRINT.so
 %{_libdir}/ulogd/ulogd_PWSNIFF.so