1 /* vi: set sw=4 ts=4: */
3 * circular buffer syslog implementation for busybox
5 * Copyright (C) 2000 by Gennady Feldman <gfeldman@cachier.com>
7 * Maintainer: Gennady Feldman <gena01@cachier.com> as of Mar 12, 2001
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
31 #include <sys/types.h>
38 #if __GNU_LIBRARY__ < 5
39 #error Sorry. Looks like you are using libc5.
40 #error libc5 shm support isnt good enough.
41 #error Please disable BB_FEATURE_IPC_SYSLOG
45 static const long KEY_ID = 0x414e4547; /*"GENA"*/
47 static struct shbuf_ds {
48 int size; // size of data written
49 int head; // start of message list
50 int tail; // end of message list
51 char data[1]; // data/messages
52 } *buf = NULL; // shared memory pointer
55 // Semaphore operation structures
56 static struct sembuf SMrup[1] = {{0, -1, IPC_NOWAIT | SEM_UNDO}}; // set SMrup
57 static struct sembuf SMrdn[2] = {{1, 0}, {0, +1, SEM_UNDO}}; // set SMrdn
59 static int log_shmid = -1; // ipc shared memory id
60 static int log_semid = -1; // ipc semaphore id
61 static jmp_buf jmp_env;
63 static void error_exit(const char *str);
64 static void interrupted(int sig);
67 * sem_up - up()'s a semaphore.
69 static inline void sem_up(int semid)
71 if ( semop(semid, SMrup, 1) == -1 )
72 error_exit("semop[SMrup]");
76 * sem_down - down()'s a semaphore
78 static inline void sem_down(int semid)
80 if ( semop(semid, SMrdn, 2) == -1 )
81 error_exit("semop[SMrdn]");
84 extern int logread_main(int argc, char **argv)
88 /* no options, no getopt */
92 // handle intrrupt signal
93 if (setjmp(jmp_env)) goto output_end;
95 // attempt to redefine ^C signal
96 signal(SIGINT, interrupted);
98 if ( (log_shmid = shmget(KEY_ID, 0, 0)) == -1)
99 error_exit("Can't find circular buffer");
101 // Attach shared memory to our char*
102 if ( (buf = shmat(log_shmid, NULL, SHM_RDONLY)) == NULL)
103 error_exit("Can't get access to circular buffer from syslogd");
105 if ( (log_semid = semget(KEY_ID, 0, 0)) == -1)
106 error_exit("Can't get access to semaphone(s) for circular buffer from syslogd");
112 //printf("head: %i tail: %i size: %i\n",buf->head,buf->tail,buf->size);
113 if (buf->head == buf->tail) {
114 printf("<empty syslog>\n");
117 while ( i != buf->tail) {
118 printf("%s", buf->data+i);
119 i+= strlen(buf->data+i) + 1;
132 static void interrupted(int sig){
133 signal(SIGINT, SIG_IGN);
137 static void error_exit(const char *str){
139 //release all acquired resources