source: MondoRescue/branches/2.2.9/mindi-busybox/sysklogd/logread.c@ 2729

Last change on this file since 2729 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 4.5 KB
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * circular buffer syslog implementation for busybox
4 *
5 * Copyright (C) 2000 by Gennady Feldman <gfeldman@gena01.com>
6 *
7 * Maintainer: Gennady Feldman <gfeldman@gena01.com> as of Mar 12, 2001
8 *
[2725]9 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]10 */
11
[1765]12#include "libbb.h"
[821]13#include <sys/ipc.h>
14#include <sys/sem.h>
15#include <sys/shm.h>
16
[1765]17#define DEBUG 0
[821]18
[2725]19/* our shared key (syslogd.c and logread.c must be in sync) */
[1765]20enum { KEY_ID = 0x414e4547 }; /* "GENA" */
21
[2725]22struct shbuf_ds {
[1765]23 int32_t size; // size of data - 1
24 int32_t tail; // end of message list
25 char data[1]; // messages
[2725]26};
[821]27
[2725]28static const struct sembuf init_sem[3] = {
29 {0, -1, IPC_NOWAIT | SEM_UNDO},
30 {1, 0}, {0, +1, SEM_UNDO}
31};
[821]32
[2725]33struct globals {
34 struct sembuf SMrup[1]; // {0, -1, IPC_NOWAIT | SEM_UNDO},
35 struct sembuf SMrdn[2]; // {1, 0}, {0, +1, SEM_UNDO}
36 struct shbuf_ds *shbuf;
37} FIX_ALIASING;
38#define G (*(struct globals*)&bb_common_bufsiz1)
39#define SMrup (G.SMrup)
40#define SMrdn (G.SMrdn)
41#define shbuf (G.shbuf)
42#define INIT_G() do { \
43 memcpy(SMrup, init_sem, sizeof(init_sem)); \
44} while (0)
[821]45
[2725]46static void error_exit(const char *str) NORETURN;
[1765]47static void error_exit(const char *str)
48{
49 //release all acquired resources
50 shmdt(shbuf);
51 bb_perror_msg_and_die(str);
52}
[821]53
54/*
55 * sem_up - up()'s a semaphore.
56 */
[1765]57static void sem_up(int semid)
[821]58{
[1765]59 if (semop(semid, SMrup, 1) == -1)
[821]60 error_exit("semop[SMrup]");
61}
62
[2725]63static void interrupted(int sig UNUSED_PARAM)
[821]64{
[1765]65 signal(SIGINT, SIG_IGN);
66 shmdt(shbuf);
[2725]67 exit(EXIT_SUCCESS);
[821]68}
69
[2725]70int logread_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
71int logread_main(int argc UNUSED_PARAM, char **argv)
[821]72{
[2725]73 unsigned cur;
[1765]74 int log_semid; /* ipc semaphore id */
75 int log_shmid; /* ipc shared memory id */
76 smallint follow = getopt32(argv, "f");
[821]77
[2725]78 INIT_G();
79
[1765]80 log_shmid = shmget(KEY_ID, 0, 0);
81 if (log_shmid == -1)
82 bb_perror_msg_and_die("can't find syslogd buffer");
[821]83
[1765]84 /* Attach shared memory to our char* */
85 shbuf = shmat(log_shmid, NULL, SHM_RDONLY);
86 if (shbuf == NULL)
87 bb_perror_msg_and_die("can't access syslogd buffer");
[821]88
[1765]89 log_semid = semget(KEY_ID, 0, 0);
90 if (log_semid == -1)
91 error_exit("can't get access to semaphores for syslogd buffer");
92
[821]93 signal(SIGINT, interrupted);
94
[1765]95 /* Suppose atomic memory read */
96 /* Max possible value for tail is shbuf->size - 1 */
97 cur = shbuf->tail;
[821]98
[1765]99 /* Loop for logread -f, one pass if there was no -f */
[821]100 do {
[1765]101 unsigned shbuf_size;
102 unsigned shbuf_tail;
103 const char *shbuf_data;
104#if ENABLE_FEATURE_LOGREAD_REDUCED_LOCKING
105 int i;
106 int len_first_part;
107 int len_total = len_total; /* for gcc */
108 char *copy = copy; /* for gcc */
[821]109#endif
[1765]110 if (semop(log_semid, SMrdn, 2) == -1)
111 error_exit("semop[SMrdn]");
[821]112
[1765]113 /* Copy the info, helps gcc to realize that it doesn't change */
114 shbuf_size = shbuf->size;
115 shbuf_tail = shbuf->tail;
116 shbuf_data = shbuf->data; /* pointer! */
[821]117
[1765]118 if (DEBUG)
119 printf("cur:%d tail:%i size:%i\n",
120 cur, shbuf_tail, shbuf_size);
121
122 if (!follow) {
123 /* advance to oldest complete message */
124 /* find NUL */
125 cur += strlen(shbuf_data + cur);
126 if (cur >= shbuf_size) { /* last byte in buffer? */
127 cur = strnlen(shbuf_data, shbuf_tail);
128 if (cur == shbuf_tail)
129 goto unlock; /* no complete messages */
130 }
131 /* advance to first byte of the message */
132 cur++;
133 if (cur >= shbuf_size) /* last byte in buffer? */
134 cur = 0;
135 } else { /* logread -f */
136 if (cur == shbuf_tail) {
[821]137 sem_up(log_semid);
[2725]138 fflush_all();
[1765]139 sleep(1); /* TODO: replace me with a sleep_on */
[821]140 continue;
141 }
142 }
143
[1765]144 /* Read from cur to tail */
145#if ENABLE_FEATURE_LOGREAD_REDUCED_LOCKING
146 len_first_part = len_total = shbuf_tail - cur;
147 if (len_total < 0) {
148 /* message wraps: */
149 /* [SECOND PART.........FIRST PART] */
150 /* ^data ^tail ^cur ^size */
151 len_total += shbuf_size;
[821]152 }
[1765]153 copy = xmalloc(len_total + 1);
154 if (len_first_part < 0) {
155 /* message wraps (see above) */
156 len_first_part = shbuf_size - cur;
157 memcpy(copy + len_first_part, shbuf_data, shbuf_tail);
158 }
159 memcpy(copy, shbuf_data + cur, len_first_part);
160 copy[len_total] = '\0';
161 cur = shbuf_tail;
[821]162#else
[1765]163 while (cur != shbuf_tail) {
164 fputs(shbuf_data + cur, stdout);
165 cur += strlen(shbuf_data + cur) + 1;
166 if (cur >= shbuf_size)
167 cur = 0;
[821]168 }
169#endif
[1765]170 unlock:
171 /* release the lock on the log chain */
[821]172 sem_up(log_semid);
173
[1765]174#if ENABLE_FEATURE_LOGREAD_REDUCED_LOCKING
175 for (i = 0; i < len_total; i += strlen(copy + i) + 1) {
176 fputs(copy + i, stdout);
[821]177 }
[1765]178 free(copy);
[821]179#endif
180 } while (follow);
181
[1765]182 shmdt(shbuf);
[821]183
[1765]184 fflush_stdout_and_exit(EXIT_SUCCESS);
[821]185}
Note: See TracBrowser for help on using the repository browser.