syslog.c 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. /*
  2. * Copyright (c) 1983, 1988, 1993
  3. * The Regents of the University of California. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 3. All advertising materials mentioning features or use of this software
  14. * must display the following acknowledgement:
  15. * This product includes software developed by the University of
  16. * California, Berkeley and its contributors.
  17. * 4. Neither the name of the University nor the names of its contributors
  18. * may be used to endorse or promote products derived from this software
  19. * without specific prior written permission.
  20. *
  21. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. * SUCH DAMAGE.
  32. */
  33. /*
  34. * SYSLOG -- print message on log file
  35. *
  36. * This routine looks a lot like printf, except that it outputs to the
  37. * log file instead of the standard output. Also:
  38. * adds a timestamp,
  39. * prints the module name in front of the message,
  40. * has some other formatting types (or will sometime),
  41. * adds a newline on the end of the message.
  42. *
  43. * The output of this routine is intended to be read by syslogd(8).
  44. *
  45. * Author: Eric Allman
  46. * Modified to use UNIX domain IPC by Ralph Campbell
  47. * Patched March 12, 1996 by A. Ian Vogelesang <vogelesang@hdshq.com>
  48. * - to correct the handling of message & format string truncation,
  49. * - to visibly tag truncated records to facilitate
  50. * investigation of such Bad Things with grep, and,
  51. * - to correct the handling of case where "write"
  52. * returns after writing only part of the message.
  53. * Rewritten by Martin Mares <mj@atrey.karlin.mff.cuni.cz> on May 14, 1997
  54. * - better buffer overrun checks.
  55. * - special handling of "%m" removed as we use GNU sprintf which handles
  56. * it automatically.
  57. * - Major code cleanup.
  58. */
  59. #define __FORCE_GLIBC
  60. #include <features.h>
  61. #include <sys/types.h>
  62. #include <sys/socket.h>
  63. #include <sys/file.h>
  64. #include <sys/signal.h>
  65. #include <sys/syslog.h>
  66. #include <sys/uio.h>
  67. #include <sys/wait.h>
  68. #include <netdb.h>
  69. #include <string.h>
  70. #include <time.h>
  71. #include <unistd.h>
  72. #include <errno.h>
  73. #include <stdarg.h>
  74. #include <paths.h>
  75. #include <stdio.h>
  76. #include <ctype.h>
  77. #include <signal.h>
  78. #include <bits/uClibc_mutex.h>
  79. __UCLIBC_MUTEX_STATIC(mylock, PTHREAD_MUTEX_INITIALIZER);
  80. /* !glibc_compat: glibc uses argv[0] by default
  81. * (default: if there was no openlog or if openlog passed NULL),
  82. * not string "syslog"
  83. */
  84. static const char *LogTag = "syslog"; /* string to tag the entry with */
  85. static int LogFile = -1; /* fd for log */
  86. static smalluint connected; /* have done connect */
  87. /* all bits in option argument for openlog fit in 8 bits */
  88. static smalluint LogStat = 0; /* status bits, set by openlog */
  89. /* default facility code if openlog is not called */
  90. /* (this fits in 8 bits even without >> 3 shift, but playing extra safe) */
  91. static smalluint LogFacility = LOG_USER >> 3;
  92. /* bits mask of priorities to be logged (eight prios - 8 bits is enough) */
  93. static smalluint LogMask = 0xff;
  94. /* AF_UNIX address of local logger (we use struct sockaddr
  95. * instead of struct sockaddr_un since "/dev/log" is small enough) */
  96. static const struct sockaddr SyslogAddr = {
  97. .sa_family = AF_UNIX, /* sa_family_t (usually a short) */
  98. .sa_data = _PATH_LOG /* char [14] */
  99. };
  100. static void
  101. closelog_intern(int sig)
  102. {
  103. /* mylock must be held by the caller */
  104. if (LogFile != -1) {
  105. (void) close(LogFile);
  106. }
  107. LogFile = -1;
  108. connected = 0;
  109. if (sig == 0) { /* called from closelog()? - reset to defaults */
  110. LogStat = 0;
  111. LogTag = "syslog";
  112. LogFacility = LOG_USER >> 3;
  113. LogMask = 0xff;
  114. }
  115. }
  116. static void
  117. openlog_intern(const char *ident, int logstat, int logfac)
  118. {
  119. int fd;
  120. int logType = SOCK_DGRAM;
  121. if (ident != NULL)
  122. LogTag = ident;
  123. LogStat = logstat;
  124. /* (we were checking also for logfac != 0, but it breaks
  125. * openlog(xx, LOG_KERN) since LOG_KERN == 0) */
  126. if ((logfac & ~LOG_FACMASK) == 0) /* if we don't have invalid bits */
  127. LogFacility = (unsigned)logfac >> 3;
  128. fd = LogFile;
  129. if (fd == -1) {
  130. retry:
  131. if (logstat & LOG_NDELAY) {
  132. LogFile = fd = socket(AF_UNIX, logType, 0);
  133. if (fd == -1) {
  134. return;
  135. }
  136. fcntl(fd, F_SETFD, FD_CLOEXEC);
  137. /* We don't want to block if e.g. syslogd is SIGSTOPed */
  138. fcntl(fd, F_SETFL, O_NONBLOCK | fcntl(fd, F_GETFL));
  139. }
  140. }
  141. if (fd != -1 && !connected) {
  142. if (connect(fd, &SyslogAddr, sizeof(SyslogAddr)) != -1) {
  143. connected = 1;
  144. } else {
  145. if (fd != -1) {
  146. close(fd);
  147. LogFile = fd = -1;
  148. }
  149. if (logType == SOCK_DGRAM) {
  150. logType = SOCK_STREAM;
  151. goto retry;
  152. }
  153. }
  154. }
  155. }
  156. /*
  157. * OPENLOG -- open system log
  158. */
  159. void
  160. openlog(const char *ident, int logstat, int logfac)
  161. {
  162. __UCLIBC_MUTEX_LOCK(mylock);
  163. openlog_intern(ident, logstat, logfac);
  164. __UCLIBC_MUTEX_UNLOCK(mylock);
  165. }
  166. libc_hidden_def(openlog)
  167. /*
  168. * syslog, vsyslog --
  169. * print message on log file; output is intended for syslogd(8).
  170. */
  171. void
  172. vsyslog(int pri, const char *fmt, va_list ap)
  173. {
  174. register char *p;
  175. char *last_chr, *head_end, *end, *stdp;
  176. time_t now;
  177. int fd, saved_errno;
  178. int rc;
  179. char tbuf[1024]; /* syslogd is unable to handle longer messages */
  180. /* Just throw out this message if pri has bad bits. */
  181. if ((pri & ~(LOG_PRIMASK|LOG_FACMASK)) != 0)
  182. return;
  183. saved_errno = errno;
  184. __UCLIBC_MUTEX_LOCK(mylock);
  185. /* See if we should just throw out this message according to LogMask. */
  186. if ((LogMask & LOG_MASK(LOG_PRI(pri))) == 0)
  187. goto getout;
  188. if (LogFile < 0 || !connected)
  189. openlog_intern(NULL, LogStat | LOG_NDELAY, (int)LogFacility << 3);
  190. /* Set default facility if none specified. */
  191. if ((pri & LOG_FACMASK) == 0)
  192. pri |= ((int)LogFacility << 3);
  193. /* Build the message. We know the starting part of the message can take
  194. * no longer than 64 characters plus length of the LogTag. So it's
  195. * safe to test only LogTag and use normal sprintf everywhere else.
  196. */
  197. (void)time(&now);
  198. stdp = p = tbuf + sprintf(tbuf, "<%d>%.15s ", pri, ctime(&now) + 4);
  199. /*if (LogTag) - always true */ {
  200. if (strlen(LogTag) < sizeof(tbuf) - 64)
  201. p += sprintf(p, "%s", LogTag);
  202. else
  203. p += sprintf(p, "<BUFFER OVERRUN ATTEMPT>");
  204. }
  205. if (LogStat & LOG_PID)
  206. p += sprintf(p, "[%d]", getpid());
  207. /*if (LogTag) - always true */ {
  208. *p++ = ':';
  209. *p++ = ' ';
  210. }
  211. head_end = p;
  212. /* We format the rest of the message. If the buffer becomes full, we mark
  213. * the message as truncated. Note that we require at least 2 free bytes
  214. * in the buffer as we might want to add "\r\n" there.
  215. */
  216. end = tbuf + sizeof(tbuf) - 1;
  217. __set_errno(saved_errno);
  218. p += vsnprintf(p, end - p, fmt, ap);
  219. if (p >= end || p < head_end) { /* Returned -1 in case of error... */
  220. static const char truncate_msg[12] = "[truncated] "; /* no NUL! */
  221. memmove(head_end + sizeof(truncate_msg), head_end,
  222. end - head_end - sizeof(truncate_msg));
  223. memcpy(head_end, truncate_msg, sizeof(truncate_msg));
  224. if (p < head_end) {
  225. while (p < end && *p) {
  226. p++;
  227. }
  228. }
  229. else {
  230. p = end - 1;
  231. }
  232. }
  233. last_chr = p;
  234. /* Output to stderr if requested. */
  235. if (LogStat & LOG_PERROR) {
  236. *last_chr = '\n';
  237. (void)write(STDERR_FILENO, stdp, last_chr - stdp + 1);
  238. }
  239. /* Output the message to the local logger using NUL as a message delimiter. */
  240. p = tbuf;
  241. *last_chr = '\0';
  242. if (LogFile >= 0) {
  243. do {
  244. /* can't just use write, it can result in SIGPIPE */
  245. rc = send(LogFile, p, last_chr + 1 - p, MSG_NOSIGNAL);
  246. if (rc < 0) {
  247. /* I don't think looping forever on EAGAIN is a good idea.
  248. * Imagine that syslogd is SIGSTOPed... */
  249. if (/* (errno != EAGAIN) && */ (errno != EINTR)) {
  250. closelog_intern(1); /* 1: do not reset LogXXX globals to default */
  251. goto write_err;
  252. }
  253. rc = 0;
  254. }
  255. p += rc;
  256. } while (p <= last_chr);
  257. goto getout;
  258. }
  259. write_err:
  260. /*
  261. * Output the message to the console; don't worry about blocking,
  262. * if console blocks everything will. Make sure the error reported
  263. * is the one from the syslogd failure.
  264. */
  265. /* should mode be O_WRONLY | O_NOCTTY? -- Uli */
  266. /* yes, but in Linux "/dev/console" never becomes ctty anyway -- vda */
  267. if ((LogStat & LOG_CONS) &&
  268. (fd = open(_PATH_CONSOLE, O_WRONLY | O_NOCTTY)) >= 0) {
  269. p = strchr(tbuf, '>') + 1;
  270. last_chr[0] = '\r';
  271. last_chr[1] = '\n';
  272. (void)write(fd, p, last_chr - p + 2);
  273. (void)close(fd);
  274. }
  275. getout:
  276. __UCLIBC_MUTEX_UNLOCK(mylock);
  277. }
  278. libc_hidden_def(vsyslog)
  279. void
  280. syslog(int pri, const char *fmt, ...)
  281. {
  282. va_list ap;
  283. va_start(ap, fmt);
  284. vsyslog(pri, fmt, ap);
  285. va_end(ap);
  286. }
  287. libc_hidden_def(syslog)
  288. /*
  289. * CLOSELOG -- close the system log
  290. */
  291. void
  292. closelog(void)
  293. {
  294. __UCLIBC_MUTEX_LOCK(mylock);
  295. closelog_intern(0); /* 0: reset LogXXX globals to default */
  296. __UCLIBC_MUTEX_UNLOCK(mylock);
  297. }
  298. libc_hidden_def(closelog)
  299. /* setlogmask -- set the log mask level */
  300. int setlogmask(int pmask)
  301. {
  302. int omask;
  303. omask = LogMask;
  304. if (pmask != 0) {
  305. __UCLIBC_MUTEX_LOCK(mylock);
  306. LogMask = pmask;
  307. __UCLIBC_MUTEX_UNLOCK(mylock);
  308. }
  309. return omask;
  310. }