blob: 13d770205c7e5bac9a3dd6f2a8fe454149ef8db4 [file] [log] [blame]
sewardj5ed7a392002-11-03 23:03:24 +00001
2/*--------------------------------------------------------------------*/
3/*--- A simple program to listen for valgrind logfile data. ---*/
4/*--- valgrind-listener.c ---*/
5/*--------------------------------------------------------------------*/
6
7/*
8 This file is part of Valgrind, an extensible x86 protected-mode
9 emulator for monitoring program execution on x86-Unixes.
10
11 Copyright (C) 2000-2002 Julian Seward
12 jseward@acm.org
13
14 This program is free software; you can redistribute it and/or
15 modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation; either version 2 of the
17 License, or (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
27 02111-1307, USA.
28
29 The GNU General Public License is contained in the file COPYING.
30*/
31
32
33/*---------------------------------------------------------------*/
34
sewardj5ed7a392002-11-03 23:03:24 +000035#include <stdio.h>
sewardjad19c692002-11-09 10:24:01 +000036#include <unistd.h>
sewardj5ed7a392002-11-03 23:03:24 +000037#include <string.h>
sewardj5ed7a392002-11-03 23:03:24 +000038#include <time.h>
39#include <fcntl.h>
40#include <stdlib.h>
sewardjad19c692002-11-09 10:24:01 +000041#include <signal.h>
42#include <sys/poll.h>
43#include <sys/types.h>
44#include <sys/socket.h>
45#include <netinet/in.h>
46
sewardj5ed7a392002-11-03 23:03:24 +000047
sewardj43354092002-11-06 00:15:50 +000048/* For VG_CLO_DEFAULT_LOGPORT and VG_EMAIL_ADDR. */
49#include "vg_include.h"
50
51
sewardj5ed7a392002-11-03 23:03:24 +000052/*---------------------------------------------------------------*/
53
sewardj43354092002-11-06 00:15:50 +000054/* The maximum allowable number concurrent connections. */
55#define M_CONNECTIONS 50
sewardj5ed7a392002-11-03 23:03:24 +000056
sewardj43354092002-11-06 00:15:50 +000057
58/*---------------------------------------------------------------*/
59
60__attribute__ ((noreturn))
61static void panic ( Char* str )
62{
63 fprintf(stderr,
64 "\nvalgrind-listener: the "
65 "`impossible' happened:\n %s\n", str);
66 fprintf(stderr,
67 "Please report this bug to: %s\n\n", VG_EMAIL_ADDR);
68 exit(1);
69}
70
71__attribute__ ((noreturn))
72static void my_assert_fail ( Char* expr, Char* file, Int line, Char* fn )
73{
74 fprintf(stderr,
75 "\nvalgrind-listener: %s:%d (%s): Assertion `%s' failed.\n",
76 file, line, fn, expr );
77 fprintf(stderr,
78 "Please report this bug to: %s\n\n", VG_EMAIL_ADDR);
79 exit(1);
80}
81
82#undef assert
83#undef VG__STRING
84
85#define VG__STRING(__str) #__str
86#define assert(expr) \
87 ((void) ((expr) ? 0 : \
88 (my_assert_fail (VG__STRING(expr), \
89 __FILE__, __LINE__, \
90 __PRETTY_FUNCTION__), 0)))
91
sewardj5ed7a392002-11-03 23:03:24 +000092
93/*---------------------------------------------------------------*/
94
95/* holds the fds for connections; zero if slot not in use. */
96int conn_count = 0;
sewardj43354092002-11-06 00:15:50 +000097int conn_fd[M_CONNECTIONS];
98struct pollfd conn_pollfd[M_CONNECTIONS];
sewardj5ed7a392002-11-03 23:03:24 +000099
100
101void set_nonblocking ( int sd )
102{
103 int res;
104 res = fcntl(sd, F_GETFL);
105 res = fcntl(sd, F_SETFL, res | O_NONBLOCK);
106 if (res != 0) {
107 perror("fcntl failed");
sewardj43354092002-11-06 00:15:50 +0000108 panic("set_nonblocking");
sewardj5ed7a392002-11-03 23:03:24 +0000109 }
110}
111
112void set_blocking ( int sd )
113{
114 int res;
115 res = fcntl(sd, F_GETFL);
116 res = fcntl(sd, F_SETFL, res & ~O_NONBLOCK);
117 if (res != 0) {
118 perror("fcntl failed");
sewardj43354092002-11-06 00:15:50 +0000119 panic("set_blocking");
sewardj5ed7a392002-11-03 23:03:24 +0000120 }
121}
122
123
124void copyout ( char* buf, int nbuf )
125{
126 int i;
127 for (i = 0; i < nbuf; i++) {
sewardj43354092002-11-06 00:15:50 +0000128 if (buf[i] == '\n') {
129 fprintf(stdout, "\n(%d) ", conn_count);
130 } else {
131 fwrite(&buf[i], 1, 1, stdout);
132 }
sewardj5ed7a392002-11-03 23:03:24 +0000133 }
sewardj7d3d1e62002-11-03 23:27:40 +0000134 fflush(stdout);
sewardj5ed7a392002-11-03 23:03:24 +0000135}
136
137int read_from_sd ( int sd )
138{
sewardjad19c692002-11-09 10:24:01 +0000139 char buf[100];
140 int n;
sewardj5ed7a392002-11-03 23:03:24 +0000141
sewardjad19c692002-11-09 10:24:01 +0000142 set_blocking(sd);
143 n = read(sd, buf, 99);
144 if (n <= 0) return 0; /* closed */
145 copyout(buf, n);
sewardj5ed7a392002-11-03 23:03:24 +0000146
sewardjad19c692002-11-09 10:24:01 +0000147 set_nonblocking(sd);
148 while (1) {
149 n = read(sd, buf, 100);
150 if (n <= 0) return 1; /* not closed */
151 copyout(buf, n);
152 }
sewardj5ed7a392002-11-03 23:03:24 +0000153}
154
155
156void snooze ( void )
157{
sewardj43354092002-11-06 00:15:50 +0000158 struct timespec req;
159 req.tv_sec = 0;
160 req.tv_nsec = 200 * 1000 * 1000;
161 nanosleep(&req,NULL);
sewardj5ed7a392002-11-03 23:03:24 +0000162}
163
164
sewardjad19c692002-11-09 10:24:01 +0000165/* returns 0 if invalid, else port # */
166int atoi_portno ( char* str )
167{
168 int n = 0;
169 while (1) {
170 if (*str == 0)
171 break;
172 if (*str < '0' || *str > '9')
173 return 0;
174 n = 10*n + (int)(*str - '0');
175 str++;
176 if (n >= 65536)
177 return 0;
178 }
179 if (n < 1024)
180 return 0;
181 return n;
182}
183
184
185void usage ( void )
186{
187 fprintf(stderr,
188 "\n"
189 "usage is:\n"
190 "\n"
sewardjcbf216e2002-11-13 19:42:30 +0000191 " valgrind-listener [--exit-at-zero|-e] [port-number]\n"
sewardjad19c692002-11-09 10:24:01 +0000192 "\n"
sewardjcbf216e2002-11-13 19:42:30 +0000193 " where --exit-at-zero or -e causes the listener to exit\n"
sewardjad19c692002-11-09 10:24:01 +0000194 " when the number of connections falls back to zero\n"
195 " (the default is to keep listening forever)\n"
196 "\n"
197 " port-number is the default port on which to listen for\n"
198 " connections. It must be between 1024 and 65535.\n"
199 " Current default is %d.\n"
200 "\n"
201 ,
202 VG_CLO_DEFAULT_LOGPORT
203 );
204 exit(1);
205}
206
207
208void banner ( char* str )
209{
210 time_t t;
211 t = time(NULL);
212 printf("valgrind-listener %s at %s", str, ctime(&t));
213}
214
215
216void exit_routine ( void )
217{
218 banner("exited");
219 exit(0);
220}
221
222
223void sigint_handler ( int signo )
224{
225 exit_routine();
226}
227
228
sewardj43354092002-11-06 00:15:50 +0000229int main (int argc, char** argv)
230{
sewardjad19c692002-11-09 10:24:01 +0000231 int i, j, k, res;
232 int main_sd, new_sd, client_len;
sewardj43354092002-11-06 00:15:50 +0000233 struct sockaddr_in client_addr, server_addr;
sewardj5ed7a392002-11-03 23:03:24 +0000234
sewardjad19c692002-11-09 10:24:01 +0000235 char /*bool*/ exit_when_zero = 0;
236 int port = VG_CLO_DEFAULT_LOGPORT;
237
238 for (i = 1; i < argc; i++) {
sewardjcbf216e2002-11-13 19:42:30 +0000239 if (0==strcmp(argv[i], "--exit-at-zero")
sewardjad19c692002-11-09 10:24:01 +0000240 || 0==strcmp(argv[i], "-e")) {
241 exit_when_zero = 1;
242 }
243 else
244 if (atoi_portno(argv[i]) > 0) {
245 port = atoi_portno(argv[i]);
246 }
247 else
248 usage();
249 }
250
251 banner("started");
252 signal(SIGINT, sigint_handler);
253
sewardj43354092002-11-06 00:15:50 +0000254 conn_count = 0;
255 for (i = 0; i < M_CONNECTIONS; i++)
256 conn_fd[i] = 0;
sewardj5ed7a392002-11-03 23:03:24 +0000257
sewardj43354092002-11-06 00:15:50 +0000258 /* create socket */
259 main_sd = socket(AF_INET, SOCK_STREAM, 0);
sewardj5ed7a392002-11-03 23:03:24 +0000260 if (main_sd < 0) {
sewardj43354092002-11-06 00:15:50 +0000261 perror("cannot open socket ");
262 panic("main -- create socket");
263 }
sewardj5ed7a392002-11-03 23:03:24 +0000264
sewardj43354092002-11-06 00:15:50 +0000265 /* bind server port */
266 server_addr.sin_family = AF_INET;
267 server_addr.sin_addr.s_addr = htonl(INADDR_ANY);
sewardjad19c692002-11-09 10:24:01 +0000268 server_addr.sin_port = htons(port);
sewardj5ed7a392002-11-03 23:03:24 +0000269
sewardj43354092002-11-06 00:15:50 +0000270 if (bind(main_sd, (struct sockaddr *) &server_addr,
271 sizeof(server_addr) ) < 0) {
272 perror("cannot bind port ");
273 panic("main -- bind port");
274 }
sewardj5ed7a392002-11-03 23:03:24 +0000275
sewardj43354092002-11-06 00:15:50 +0000276 res = listen(main_sd,M_CONNECTIONS);
277 if (res != 0) {
278 perror("listen failed ");
279 panic("main -- listen");
280 }
sewardj5ed7a392002-11-03 23:03:24 +0000281
sewardjad19c692002-11-09 10:24:01 +0000282 while (1) {
sewardj5ed7a392002-11-03 23:03:24 +0000283
sewardj43354092002-11-06 00:15:50 +0000284 snooze();
sewardj5ed7a392002-11-03 23:03:24 +0000285
sewardj43354092002-11-06 00:15:50 +0000286 /* enquire, using poll, whether there is any activity available on
287 the main socket descriptor. If so, someone is trying to
288 connect; get the fd and add it to our table thereof. */
289 { struct pollfd ufd;
290 while (1) {
291 ufd.fd = main_sd;
292 ufd.events = POLLIN;
293 ufd.revents = 0;
294 res = poll(&ufd, 1, 0);
295 if (res == 0) break;
sewardj5ed7a392002-11-03 23:03:24 +0000296
sewardj43354092002-11-06 00:15:50 +0000297 /* ok, we have someone waiting to connect. Get the sd. */
298 client_len = sizeof(client_addr);
sewardjad19c692002-11-09 10:24:01 +0000299 new_sd = accept(main_sd, (struct sockaddr *) &client_addr,
sewardj43354092002-11-06 00:15:50 +0000300 &client_len);
sewardjad19c692002-11-09 10:24:01 +0000301 if (new_sd < 0) {
sewardj43354092002-11-06 00:15:50 +0000302 perror("cannot accept connection ");
303 panic("main -- accept connection");
304 }
305
306 /* find a place to put it. */
sewardjad19c692002-11-09 10:24:01 +0000307 assert(new_sd > 0);
sewardj43354092002-11-06 00:15:50 +0000308 for (i = 0; i < M_CONNECTIONS; i++)
309 if (conn_fd[i] == 0)
310 break;
311
312 if (i >= M_CONNECTIONS) {
313 fprintf(stderr, "Too many concurrent connections. "
314 "Increase M_CONNECTIONS and recompile.\n");
315 panic("main -- too many concurrent connections");
316 }
317
sewardjad19c692002-11-09 10:24:01 +0000318 conn_fd[i] = new_sd;
sewardj43354092002-11-06 00:15:50 +0000319 conn_count++;
320 printf("\n(%d) -------------------- CONNECT "
321 "--------------------\n(%d)\n(%d) ",
322 conn_count, conn_count, conn_count);
323 fflush(stdout);
324 } /* while (1) */
325 }
326
327 /* We've processed all new connect requests. Listen for changes
328 to the current set of fds. */
329 j = 0;
330 for (i = 0; i < M_CONNECTIONS; i++) {
331 if (conn_fd[i] == 0)
332 continue;
333 conn_pollfd[j].fd = conn_fd[i];
334 conn_pollfd[j].events = POLLIN /* | POLLHUP | POLLNVAL */;
335 conn_pollfd[j].revents = 0;
336 j++;
337 }
338
339 res = poll(conn_pollfd, j, 0 /* return immediately. */ );
340 if (res < 0) {
341 perror("poll(main) failed");
342 panic("poll(main) failed");
343 }
344
345 /* nothing happened. go round again. */
346 if (res == 0) {
347 continue;
348 }
349
350 /* inspect the fds. */
351 for (i = 0; i < j; i++) {
352
353 if (conn_pollfd[i].revents & POLLIN) {
354 /* data is available on this fd */
355 res = read_from_sd(conn_pollfd[i].fd);
356
357 if (res == 0) {
358 /* the connection has been closed. */
359 /* this fd has been closed or otherwise gone bad; forget
360 about it. */
361 for (k = 0; k < M_CONNECTIONS; k++)
362 if (conn_fd[k] == conn_pollfd[i].fd)
363 break;
364 assert(k < M_CONNECTIONS);
365 conn_fd[k] = 0;
366 conn_count--;
367 printf("\n(%d) ------------------- DISCONNECT "
368 "-------------------\n(%d)\n(%d) ",
369 conn_count, conn_count, conn_count);
370 fflush(stdout);
sewardjad19c692002-11-09 10:24:01 +0000371 if (conn_count == 0 && exit_when_zero) {
372 printf("\n");
373 exit_routine();
374 }
sewardj43354092002-11-06 00:15:50 +0000375 }
sewardj5ed7a392002-11-03 23:03:24 +0000376 }
377
sewardj43354092002-11-06 00:15:50 +0000378 } /* for (i = 0; i < j; i++) */
379
sewardjad19c692002-11-09 10:24:01 +0000380 } /* while (1) */
sewardj5ed7a392002-11-03 23:03:24 +0000381
sewardjad19c692002-11-09 10:24:01 +0000382 /* NOTREACHED */
sewardj5ed7a392002-11-03 23:03:24 +0000383}
384
385
386/*--------------------------------------------------------------------*/
387/*--- end valgrind-listener.c ---*/
388/*--------------------------------------------------------------------*/