Some updates for libc5
[oweals/busybox.git] / sysklogd / logread.c
1 /* vi: set sw=4 ts=4: */\r
2 /*\r
3  * circular buffer syslog implementation for busybox\r
4  *\r
5  * Copyright (C) 2000 by Gennady Feldman <gfeldman@cachier.com>\r
6  *\r
7  * Maintainer: Gennady Feldman <gena01@cachier.com> as of Mar 12, 2001\r
8  *\r
9  * This program is free software; you can redistribute it and/or modify\r
10  * it under the terms of the GNU General Public License as published by\r
11  * the Free Software Foundation; either version 2 of the License, or\r
12  * (at your option) any later version.\r
13  *\r
14  * This program is distributed in the hope that it will be useful,\r
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r
17  * General Public License for more details.\r
18  *\r
19  * You should have received a copy of the GNU General Public License\r
20  * along with this program; if not, write to the Free Software\r
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA\r
22  * 02111-1307 USA\r
23  *\r
24  */\r
25 \r
26 \r
27 /* Stupid libc doesn't have a reliable way for use to know \r
28  * that libc5 is being used.   Assume this is good enough */ \r
29 #if defined __GLIBC__ || defined __UCLIBC__\r
30 #error Sorry.  Looks like you are using libc5.  \r
31 #error libc5 shm support isn't good enough.\r
32 #error Please disable BB_FEATURE_IPC_SYSLOG \r
33 #endif  \r
34 \r
35 #include <stdio.h>\r
36 #include <stdlib.h>\r
37 #include <string.h>\r
38 #include <sys/ipc.h>\r
39 #include <sys/types.h>\r
40 #include <sys/sem.h>\r
41 #include <sys/shm.h>\r
42 #include <signal.h>\r
43 #include <setjmp.h>\r
44 #include "busybox.h"\r
45 \r
46 static const long KEY_ID = 0x414e4547; /*"GENA"*/\r
47 \r
48 static struct shbuf_ds {\r
49         int size;               // size of data written\r
50         int head;               // start of message list\r
51         int tail;               // end of message list\r
52         char data[1];           // data/messages\r
53 } *buf = NULL;                  // shared memory pointer\r
54 \r
55 \r
56 // Semaphore operation structures\r
57 static struct sembuf SMrup[1] = {{0, -1, IPC_NOWAIT | SEM_UNDO}}; // set SMrup\r
58 static struct sembuf SMrdn[2] = {{1, 0}, {0, +1, SEM_UNDO}}; // set SMrdn\r
59 \r
60 static int      shmid = -1;     // ipc shared memory id\r
61 static int      semid = -1;     // ipc semaphore id\r
62 static jmp_buf  jmp_env;\r
63 \r
64 static void error_exit(const char *str);\r
65 static void interrupted(int sig);\r
66 \r
67 /*\r
68  * sem_up - up()'s a semaphore.\r
69  */\r
70 static inline void sem_up(int semid)\r
71 {\r
72         if ( semop(semid, SMrup, 1) == -1 ) \r
73                 error_exit("semop[SMrup]");\r
74 }\r
75 \r
76 /*\r
77  * sem_down - down()'s a semaphore\r
78  */                             \r
79 static inline void sem_down(int semid)\r
80 {\r
81         if ( semop(semid, SMrdn, 2) == -1 )\r
82                 error_exit("semop[SMrdn]");\r
83 }\r
84 \r
85 extern int logread_main(int argc, char **argv)\r
86 {\r
87         int i;\r
88         \r
89         /* no options, no getopt */\r
90         if (argc > 1)\r
91                 show_usage();\r
92         \r
93         // handle intrrupt signal\r
94         if (setjmp(jmp_env)) goto output_end;\r
95         \r
96         // attempt to redefine ^C signal\r
97         signal(SIGINT, interrupted);\r
98         \r
99         if ( (shmid = shmget(KEY_ID, 0, 0)) == -1)\r
100                 error_exit("Can't find circular buffer");\r
101         \r
102         // Attach shared memory to our char*\r
103         if ( (buf = shmat(shmid, NULL, SHM_RDONLY)) == NULL)\r
104                 error_exit("Can't get access to circular buffer from syslogd");\r
105 \r
106         if ( (semid = semget(KEY_ID, 0, 0)) == -1)\r
107                 error_exit("Can't get access to semaphone(s) for circular buffer from syslogd");\r
108 \r
109         sem_down(semid);        \r
110         // Read Memory \r
111         i=buf->head;\r
112 \r
113         //printf("head: %i tail: %i size: %i\n",buf->head,buf->tail,buf->size);\r
114         if (buf->head == buf->tail) {\r
115                 printf("<empty syslog>\n");\r
116         }\r
117         \r
118         while ( i != buf->tail) {\r
119                 printf("%s", buf->data+i);\r
120                 i+= strlen(buf->data+i) + 1;\r
121                 if (i >= buf->size )\r
122                         i=0;\r
123         }\r
124         sem_up(semid);\r
125 \r
126 output_end:\r
127         if (shmid != -1) \r
128                 shmdt(buf);\r
129                 \r
130         return EXIT_SUCCESS;            \r
131 }\r
132 \r
133 static void interrupted(int sig){\r
134         signal(SIGINT, SIG_IGN);\r
135         longjmp(jmp_env, 1);\r
136 }\r
137 \r
138 static void error_exit(const char *str){\r
139         perror(str);\r
140         //release all acquired resources\r
141         if (shmid != -1) \r
142                 shmdt(buf);\r
143 \r
144         exit(1);\r
145 }\r