blob: 524178fe8243df513af6e0083fb3f2db1d5764dc [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 *
Glenn L McGrath6ed77592002-12-12 10:54:48 +00005 * Copyright (C) 2000 by Gennady Feldman <gfeldman@gena01.com>
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +00006 *
Glenn L McGrath6ed77592002-12-12 10:54:48 +00007 * Maintainer: Gennady Feldman <gfeldman@gena01.com> as of Mar 12, 2001
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +00008 *
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>
Glenn L McGrathf7dd10f2003-09-26 01:03:16 +000036#include <unistd.h>
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +000037#include "busybox.h"
38
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +000039static const long KEY_ID = 0x414e4547; /*"GENA"*/
40
41static struct shbuf_ds {
42 int size; // size of data written
43 int head; // start of message list
44 int tail; // end of message list
45 char data[1]; // data/messages
46} *buf = NULL; // shared memory pointer
47
48
49// Semaphore operation structures
50static struct sembuf SMrup[1] = {{0, -1, IPC_NOWAIT | SEM_UNDO}}; // set SMrup
51static struct sembuf SMrdn[2] = {{1, 0}, {0, +1, SEM_UNDO}}; // set SMrdn
52
Eric Andersen8ffaf8d2001-03-23 17:04:47 +000053static int log_shmid = -1; // ipc shared memory id
54static int log_semid = -1; // ipc semaphore id
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +000055static jmp_buf jmp_env;
56
57static void error_exit(const char *str);
58static void interrupted(int sig);
59
60/*
61 * sem_up - up()'s a semaphore.
62 */
63static inline void sem_up(int semid)
64{
65 if ( semop(semid, SMrup, 1) == -1 )
66 error_exit("semop[SMrup]");
67}
68
69/*
70 * sem_down - down()'s a semaphore
71 */
72static inline void sem_down(int semid)
73{
74 if ( semop(semid, SMrdn, 2) == -1 )
75 error_exit("semop[SMrdn]");
76}
77
78extern int logread_main(int argc, char **argv)
79{
80 int i;
Glenn L McGrathf7dd10f2003-09-26 01:03:16 +000081 int follow=0;
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +000082
Glenn L McGrathf7dd10f2003-09-26 01:03:16 +000083 if (argc == 2 && strcmp(argv[1],"-f")==0) {
84 follow = 1;
85 } else {
86 /* no options, no getopt */
87 if (argc > 1)
88 bb_show_usage();
89 }
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +000090
91 // handle intrrupt signal
92 if (setjmp(jmp_env)) goto output_end;
93
94 // attempt to redefine ^C signal
95 signal(SIGINT, interrupted);
96
Eric Andersen8ffaf8d2001-03-23 17:04:47 +000097 if ( (log_shmid = shmget(KEY_ID, 0, 0)) == -1)
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +000098 error_exit("Can't find circular buffer");
99
100 // Attach shared memory to our char*
Eric Andersen8ffaf8d2001-03-23 17:04:47 +0000101 if ( (buf = shmat(log_shmid, NULL, SHM_RDONLY)) == NULL)
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +0000102 error_exit("Can't get access to circular buffer from syslogd");
103
Eric Andersen8ffaf8d2001-03-23 17:04:47 +0000104 if ( (log_semid = semget(KEY_ID, 0, 0)) == -1)
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +0000105 error_exit("Can't get access to semaphone(s) for circular buffer from syslogd");
106
Glenn L McGrathf7dd10f2003-09-26 01:03:16 +0000107 // Suppose atomic memory move
108 i = follow ? buf->tail : buf->head;
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +0000109
Glenn L McGrathf7dd10f2003-09-26 01:03:16 +0000110 do {
111#undef RC_LOGREAD
112#ifdef RC_LOGREAD
113 char *buf_data;
114 int log_len,j;
115#endif
116
117 sem_down(log_semid);
118
119 //printf("head: %i tail: %i size: %i\n",buf->head,buf->tail,buf->size);
120 if (buf->head == buf->tail || i==buf->tail) {
121 if (follow) {
122 sem_up(log_semid);
123 sleep(1); /* TODO: replace me with a sleep_on */
124 continue;
125 } else {
126 printf("<empty syslog>\n");
127 }
128 }
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +0000129
Glenn L McGrathf7dd10f2003-09-26 01:03:16 +0000130 // Read Memory
131#ifdef RC_LOGREAD
132 log_len = buf->tail - i;
133 if (log_len < 0)
134 log_len += buf->size;
135 buf_data = (char *)malloc(log_len);
136 if (!buf_data)
137 error_exit("malloc failed");
138
139 if (buf->tail < i) {
140 memcpy(buf_data, buf->data+i, buf->size-i);
141 memcpy(buf_data+buf->size-i, buf->data, buf->tail);
142 } else {
143 memcpy(buf_data, buf->data+i, buf->tail-i);
144 }
145 i = buf->tail;
146
147#else
148 while ( i != buf->tail) {
149 printf("%s", buf->data+i);
150 i+= strlen(buf->data+i) + 1;
151 if (i >= buf->size )
152 i=0;
153 }
154#endif
155 // release the lock on the log chain
156 sem_up(log_semid);
157
158#ifdef RC_LOGREAD
159 for (j=0; j < log_len; j+=strlen(buf_data+j)+1) {
160 printf("%s", buf_data+j);
161 if (follow)
162 fflush(stdout);
163 }
164 free(buf_data);
165#endif
166 } while (follow);
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +0000167
168output_end:
Eric Andersen8ffaf8d2001-03-23 17:04:47 +0000169 if (log_shmid != -1)
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +0000170 shmdt(buf);
171
172 return EXIT_SUCCESS;
173}
174
175static void interrupted(int sig){
176 signal(SIGINT, SIG_IGN);
177 longjmp(jmp_env, 1);
178}
179
180static void error_exit(const char *str){
181 perror(str);
182 //release all acquired resources
Eric Andersen8ffaf8d2001-03-23 17:04:47 +0000183 if (log_shmid != -1)
Mark Whitleyb0c2b7d2001-03-15 19:05:59 +0000184 shmdt(buf);
185
186 exit(1);
187}