netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Ulogd2: ulogd2 warn when exiting on error
@ 2008-01-03 13:25 Eric Leblond
  2008-01-03 17:41 ` Pablo Neira Ayuso
  0 siblings, 1 reply; 2+ messages in thread
From: Eric Leblond @ 2008-01-03 13:25 UTC (permalink / raw)
  To: Netfilter Developer Mailing List


[-- Attachment #1.1: Type: text/plain, Size: 247 bytes --]

Hi,

This patch adds a warning message to ulogd2 when it exits on error. It
simply tell to look at the configuration file.

BR,
-- 
Éric Leblond, eleblond@inl.fr
Téléphone : 01 44 89 46 40, Fax : 01 44 89 45 01
INL, http://www.inl.fr

[-- Attachment #1.2: ulogd2-warn-when-exit.diff --]
[-- Type: text/x-patch, Size: 1805 bytes --]

=== src/ulogd.c
==================================================================
--- src/ulogd.c	(revision 4880)
+++ src/ulogd.c	(revision 4881)
@@ -315,6 +315,13 @@
 	}
 }
 
+static void warn_and_exit(int daemonize)
+{
+	if (!daemonize)
+		fprintf(stderr, "Fatal error, check logfile.\n");
+	exit(1);
+}
+
 /* clean results (set all values to 0 and free pointers) */
 static void ulogd_clean_results(struct ulogd_pluginstance *pi)
 {
@@ -914,44 +921,44 @@
 	if (config_register_file(ulogd_configfile)) {
 		ulogd_log(ULOGD_FATAL, "error registering configfile \"%s\"\n",
 			  ulogd_configfile);
-		exit(1);
+		warn_and_exit(daemonize);
 	}
 	
 	/* parse config file */
 	if (parse_conffile("global", &ulogd_kset)) {
 		ulogd_log(ULOGD_FATAL, "parse_conffile\n");
-		exit(1);
+		warn_and_exit(daemonize);
 	}
 
 	if (llist_empty(&ulogd_pi_stacks)) {
 		ulogd_log(ULOGD_FATAL, 
 			  "not even a single working plugin stack\n");
-		exit(1);
+		warn_and_exit(daemonize);
 	}
 
 	if (change_uid) {
 		ulogd_log(ULOGD_NOTICE, "Changing UID / GID\n");
 		if (setgid(gid)) {
 			ulogd_log(ULOGD_FATAL, "can't set GID %u\n", gid);
-			exit(1);
+			warn_and_exit(daemonize);
 		}
 		if (setegid(gid)) {
 			ulogd_log(ULOGD_FATAL, "can't set effective GID %u\n",
 				  gid);
-			exit(1);
+			warn_and_exit(daemonize);
 		}
 		if (initgroups(user, gid)) {
 			ulogd_log(ULOGD_FATAL, "can't set user secondary GID\n");
-			exit(1);
+			warn_and_exit(daemonize);
 		}
 		if (setuid(uid)) {
 			ulogd_log(ULOGD_FATAL, "can't set UID %u\n", uid);
-			exit(1);
+			warn_and_exit(daemonize);
 		}
 		if (seteuid(uid)) {
 			ulogd_log(ULOGD_FATAL, "can't set effective UID %u\n",
 				  uid);
-			exit(1);
+			warn_and_exit(daemonize);
 		}
 	}
 

[-- Attachment #2: Ceci est une partie de message numériquement signée --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Ulogd2: ulogd2 warn when exiting on error
  2008-01-03 13:25 Ulogd2: ulogd2 warn when exiting on error Eric Leblond
@ 2008-01-03 17:41 ` Pablo Neira Ayuso
  0 siblings, 0 replies; 2+ messages in thread
From: Pablo Neira Ayuso @ 2008-01-03 17:41 UTC (permalink / raw)
  To: Eric Leblond; +Cc: Netfilter Developer Mailing List

Eric Leblond wrote:
> This patch adds a warning message to ulogd2 when it exits on error. It
> simply tell to look at the configuration file.

Also applied.

-- 
"Los honestos son inadaptados sociales" -- Les Luthiers

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-01-03 17:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-03 13:25 Ulogd2: ulogd2 warn when exiting on error Eric Leblond
2008-01-03 17:41 ` Pablo Neira Ayuso

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).