Bump to version 1.22.1
[platform/upstream/busybox.git] / libbb / verror_msg.c
index 9270290..ee95be3 100644 (file)
 /*
  * Utility routines.
  *
- * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
+ * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  *
- * 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.
- *
- * 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
+ * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
-
-#include <stdio.h>
-#include <errno.h>
-#include <string.h>
-#include <stdlib.h>
 #include "libbb.h"
+#if ENABLE_FEATURE_SYSLOG
+# include <syslog.h>
+#endif
+
+smallint logmode = LOGMODE_STDIO;
+const char *msg_eol = "\n";
 
-extern void bb_verror_msg(const char *s, va_list p)
+void FAST_FUNC bb_verror_msg(const char *s, va_list p, const char* strerr)
 {
-       fflush(stdout);
-       fprintf(stderr, "%s: ", bb_applet_name);
-       vfprintf(stderr, s, p);
+       char *msg, *msg1;
+       int applet_len, strerr_len, msgeol_len, used;
+
+       if (!logmode)
+               return;
+
+       if (!s) /* nomsg[_and_die] uses NULL fmt */
+               s = ""; /* some libc don't like printf(NULL) */
+
+       used = vasprintf(&msg, s, p);
+       if (used < 0)
+               return;
+
+       /* This is ugly and costs +60 bytes compared to multiple
+        * fprintf's, but is guaranteed to do a single write.
+        * This is needed for e.g. httpd logging, when multiple
+        * children can produce log messages simultaneously. */
+
+       applet_len = strlen(applet_name) + 2; /* "applet: " */
+       strerr_len = strerr ? strlen(strerr) : 0;
+       msgeol_len = strlen(msg_eol);
+       /* can't use xrealloc: it calls error_msg on failure,
+        * that may result in a recursion */
+       /* +3 is for ": " before strerr and for terminating NUL */
+       msg1 = realloc(msg, applet_len + used + strerr_len + msgeol_len + 3);
+       if (!msg1) {
+               msg[used++] = '\n'; /* overwrites NUL */
+               applet_len = 0;
+       } else {
+               msg = msg1;
+               /* TODO: maybe use writev instead of memmoving? Need full_writev? */
+               memmove(msg + applet_len, msg, used);
+               used += applet_len;
+               strcpy(msg, applet_name);
+               msg[applet_len - 2] = ':';
+               msg[applet_len - 1] = ' ';
+               if (strerr) {
+                       if (s[0]) { /* not perror_nomsg? */
+                               msg[used++] = ':';
+                               msg[used++] = ' ';
+                       }
+                       strcpy(&msg[used], strerr);
+                       used += strerr_len;
+               }
+               strcpy(&msg[used], msg_eol);
+               used += msgeol_len;
+       }
+
+       if (logmode & LOGMODE_STDIO) {
+               fflush_all();
+               full_write(STDERR_FILENO, msg, used);
+       }
+#if ENABLE_FEATURE_SYSLOG
+       if (logmode & LOGMODE_SYSLOG) {
+               syslog(LOG_ERR, "%s", msg + applet_len);
+       }
+#endif
+       free(msg);
 }
 
+#ifdef VERSION_WITH_WRITEV
+/* Code size is approximately the same, but currently it's the only user
+ * of writev in entire bbox. __libc_writev in uclibc is ~50 bytes. */
+void FAST_FUNC bb_verror_msg(const char *s, va_list p, const char* strerr)
+{
+       int strerr_len, msgeol_len;
+       struct iovec iov[3];
 
-/* END CODE */
-/*
-Local Variables:
-c-file-style: "linux"
-c-basic-offset: 4
-tab-width: 4
-End:
-*/
+#define used   (iov[2].iov_len)
+#define msgv   (iov[2].iov_base)
+#define msgc   ((char*)(iov[2].iov_base))
+#define msgptr (&(iov[2].iov_base))
+
+       if (!logmode)
+               return;
+
+       if (!s) /* nomsg[_and_die] uses NULL fmt */
+               s = ""; /* some libc don't like printf(NULL) */
+
+       /* Prevent "derefing type-punned ptr will break aliasing rules" */
+       used = vasprintf((char**)(void*)msgptr, s, p);
+       if (used < 0)
+               return;
+
+       /* This is ugly and costs +60 bytes compared to multiple
+        * fprintf's, but is guaranteed to do a single write.
+        * This is needed for e.g. httpd logging, when multiple
+        * children can produce log messages simultaneously. */
+
+       strerr_len = strerr ? strlen(strerr) : 0;
+       msgeol_len = strlen(msg_eol);
+       /* +3 is for ": " before strerr and for terminating NUL */
+       msgv = xrealloc(msgv, used + strerr_len + msgeol_len + 3);
+       if (strerr) {
+               msgc[used++] = ':';
+               msgc[used++] = ' ';
+               strcpy(msgc + used, strerr);
+               used += strerr_len;
+       }
+       strcpy(msgc + used, msg_eol);
+       used += msgeol_len;
+
+       if (logmode & LOGMODE_STDIO) {
+               iov[0].iov_base = (char*)applet_name;
+               iov[0].iov_len = strlen(applet_name);
+               iov[1].iov_base = (char*)": ";
+               iov[1].iov_len = 2;
+               /*iov[2].iov_base = msgc;*/
+               /*iov[2].iov_len = used;*/
+               fflush_all();
+               writev(STDERR_FILENO, iov, 3);
+       }
+# if ENABLE_FEATURE_SYSLOG
+       if (logmode & LOGMODE_SYSLOG) {
+               syslog(LOG_ERR, "%s", msgc);
+       }
+# endif
+       free(msgc);
+}
+#endif
+
+
+void FAST_FUNC bb_error_msg_and_die(const char *s, ...)
+{
+       va_list p;
+
+       va_start(p, s);
+       bb_verror_msg(s, p, NULL);
+       va_end(p);
+       xfunc_die();
+}
+
+void FAST_FUNC bb_error_msg(const char *s, ...)
+{
+       va_list p;
+
+       va_start(p, s);
+       bb_verror_msg(s, p, NULL);
+       va_end(p);
+}