blob: ea881e659395eee7dd16710754d4343efd7142cd [file] [log] [blame]
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +00001/* vi: set sw=4 ts=4: */
2/*
3 * circular buffer syslog implementation for busybox
4 *
5 * Copyright (C) 2000 by Gennady Feldman <gfeldman@cachier.com>
6 *
7 * Maintainer: Gennady Feldman <gena01@cachier.com> as of Mar 12, 2001
8 *
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.
13 *
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.
18 *
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
22 * 02111-1307 USA
23 *
24 */
25
26
27#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
30#include <sys/ipc.h>
31#include <sys/types.h>
32#include <sys/sem.h>
33#include <sys/shm.h>
34#include <signal.h>
35#include <setjmp.h>
36#include "busybox.h"
37
38/* Stupid libc doesn't have a reliable way for use to know
39 * that libc5 is being used. Assume this is good enough */
40#if ! defined __GLIBC__ && ! defined __UCLIBC__
41#error Sorry. Looks like you are using libc5.
42#error libc5 shm support isnt good enough.
43#error Please disable BB_FEATURE_IPC_SYSLOG
44#endif
45
46
47static const long KEY_ID = 0x414e4547; /*"GENA"*/
48
49static struct shbuf_ds {
50 int size; // size of data written
51 int head; // start of message list
52 int tail; // end of message list
53 char data[1]; // data/messages
54} *buf = NULL; // shared memory pointer
55
56
57// Semaphore operation structures
58static struct sembuf SMrup[1] = {{0, -1, IPC_NOWAIT | SEM_UNDO}}; // set SMrup
59static struct sembuf SMrdn[2] = {{1, 0}, {0, +1, SEM_UNDO}}; // set SMrdn
60
61static int shmid = -1; // ipc shared memory id
62static int semid = -1; // ipc semaphore id
63static jmp_buf jmp_env;
64
65static void error_exit(const char *str);
66static void interrupted(int sig);
67
68/*
69 * sem_up - up()'s a semaphore.
70 */
71static inline void sem_up(int semid)
72{
73 if ( semop(semid, SMrup, 1) == -1 )
74 error_exit("semop[SMrup]");
75}
76
77/*
78 * sem_down - down()'s a semaphore
79 */
80static inline void sem_down(int semid)
81{
82 if ( semop(semid, SMrdn, 2) == -1 )
83 error_exit("semop[SMrdn]");
84}
85
86extern int logread_main(int argc, char **argv)
87{
88 int i;
89
90 /* no options, no getopt */
91 if (argc > 1)
92 show_usage();
93
94 // handle intrrupt signal
95 if (setjmp(jmp_env)) goto output_end;
96
97 // attempt to redefine ^C signal
98 signal(SIGINT, interrupted);
99
100 if ( (shmid = shmget(KEY_ID, 0, 0)) == -1)
101 error_exit("Can't find circular buffer");
102
103 // Attach shared memory to our char*
104 if ( (buf = shmat(shmid, NULL, SHM_RDONLY)) == NULL)
105 error_exit("Can't get access to circular buffer from syslogd");
106
107 if ( (semid = semget(KEY_ID, 0, 0)) == -1)
108 error_exit("Can't get access to semaphone(s) for circular buffer from syslogd");
109
110 sem_down(semid);
111 // Read Memory
112 i=buf->head;
113
114 //printf("head: %i tail: %i size: %i\n",buf->head,buf->tail,buf->size);
115 if (buf->head == buf->tail) {
116 printf("<empty syslog>\n");
117 }
118
119 while ( i != buf->tail) {
120 printf("%s", buf->data+i);
121 i+= strlen(buf->data+i) + 1;
122 if (i >= buf->size )
123 i=0;
124 }
125 sem_up(semid);
126
127output_end:
128 if (shmid != -1)
129 shmdt(buf);
130
131 return EXIT_SUCCESS;
132}
133
134static void interrupted(int sig){
135 signal(SIGINT, SIG_IGN);
136 longjmp(jmp_env, 1);
137}
138
139static void error_exit(const char *str){
140 perror(str);
141 //release all acquired resources
142 if (shmid != -1)
143 shmdt(buf);
144
145 exit(1);
146}