File: getkey.c

package info (click to toggle)
netdiag 1.2-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 3,268 kB
  • sloc: ansic: 23,895; sh: 5,544; makefile: 328; awk: 130
file content (689 lines) | stat: -rw-r--r-- 15,276 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
/*
 *	Copyright (c) 1998,2004 Rinet Corp., Novosibirsk, Russia
 *
 * Redistribution and use in source forms, with and without modification,
 * are permitted provided that this entire comment appears intact.
 *
 * THIS SOURCE CODE IS PROVIDED ``AS IS'' WITHOUT ANY WARRANTIES OF ANY KIND.
 */

#ifdef	HAVE_CONFIG_H
#include <config.h>
#endif

#ifdef	HAVE_SLCURSES
#include <slcurses.h>
#elif	HAVE_NCURSES
#include <ncurses.h>
#else
#include <curses.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "getkey.h"
#include "screen.h"
#include "session.h"
#include "trafshow.h"
#include "selector.h"
#include "show_if.h"
#include "show_stat.h"
#include "show_dump.h"
#include "events.h"
#include "netstat.h"
#include "help_page.h"


static void read_key(SESSION *sd, const unsigned char *data, int len);
static int scan_key(const unsigned char *buf, int len);
static void parse_key(int key, PCAP_HANDLER *ph);
static void init_edit_string(const char *prompter, const char *charset, int size);
static int edit_string(int ch);

/* edit string stuff */
static const char *numbers = "1234567890";
static const char *spaces = " ,.;@/\\";
static char prompt_buf[MAX_PARAM_LEN], cut_buf[MAX_PARAM_LEN];
static const char *char_set;
static int buf_size, cur, nb, win, scr, bartop, barlen, touch, show_win;


void
getkey_init(ph)
	PCAP_HANDLER *ph;
{
	SESSION *sd;

	if ((sd = session_open(0, 0, PlainFile)) == 0) {
		perror("session_open 0"); /* should not happen */
		exit(1);
	}
	session_setcallback(sd, 0, 0, read_key);
	session_setcookie(sd, ph);
	prompt_mode = 0;
}

static void
read_key(sd, data, len)
	SESSION *sd;
	const unsigned char *data;
	int len;
{
	/* sanity check */
	if (sd && data && len > 0) {
		int key = scan_key(data, len);
		if (key != -1)
			parse_key(key, (PCAP_HANDLER *)session_cookie(sd));
	}
}

static SELECTOR *
get_selector(ph_list)
	PCAP_HANDLER *ph_list;
{
	/* return current selector */
	switch (show_mode) {
	case Interfaces:
		return show_if_selector();
	case NetStat:
		return show_stat_selector(pcap_get_selected(ph_list));
	case FlowDump:
		/* nope */
		break;
	case HelpPage:
		return help_page_selector();
	}
	return 0;
}

static void
parse_key(key, ph_list)
	int key;
	PCAP_HANDLER *ph_list;
{
	int ch = key;
	PCAP_HANDLER *ph = 0;
	SELECTOR *sp = 0;
	struct timeval now;

	if (prompt_mode) {
		const char *txt = 0;
		int redraw = 1;
		if ((ch = edit_string(ch)) == 0) /* still edit */
			return;
		if (ch > 0) {
			switch (prompt_mode) {
			case 'r':	/* end of getting refresh time */
			case 'R':
				ch = atoi(prompt_buf);
				if (ch > 0 && ch != refresh_time) {
					if (ch < purge_time)
						refresh_time = ch;
					else	txt = "Refresh Time must be less than Purge Time";
				}
				break;
			case 'p':	/* end of getting purge time */
			case 'P':
				ch = atoi(prompt_buf);
				if (ch > 0 && ch != purge_time) {
					if (ch > refresh_time) {
						purge_time = ch;
						add_event(0, pcap_purge, ph_list);
						redraw = 0;
					} else	txt = "Purge Time must be bigger than Refresh Time";
				}
				break;
			case 'f':	/* end of getting filter expression */
			case 'F':
				if (!expression || strcmp(prompt_buf, expression)) {
					if (expression) free(expression);
					expression = strdup(prompt_buf);
					if ((txt = pcap_setexpr(ph_list, expression)) == 0) {
						if (prompt_mode == 'F') {
							add_event(0, pcap_clear, ph_list);
							redraw = 0;
						}
					}
				}
				break;
			case '/':	/* end of getting search string */
				if (prompt_buf[0] == '\0') {
					if (search) {
						free(search);
						search = 0;
						txt = "Search mode turned Off";
					}
				} else if (!search || strcmp(prompt_buf, search)) {
					if (search) free(search);
					search = strdup(prompt_buf);
				}
				break;
			case 'a':	/* end of getting aggregation masklen */
			case 'A':
				if (prompt_buf[0]) {
					ch = atoi(prompt_buf);
					if (ch < 0 || ch > ADDRBITLEN) {
						txt = "Wrong netmask length";
						break;
					}
				} else	ch = -1;
				if (show_mode == NetStat &&
				    (ph = pcap_get_selected(ph_list)) != 0) {
					if (ph->masklen != ch) {
						ph->masklen = ch;
						if (prompt_mode == 'A')
							netstat_purge(ph, 0);
					}
				} else {
					aggregate = ch;
					for (ph = ph_list; ph; ph = ph->next) {
						if (ph->masklen != aggregate) {
							ph->masklen = aggregate;
							if (prompt_mode == 'A')
								netstat_purge(ph, 0);
						}
					}
				}
				break;
			}
		}
		prompt_mode = 0;
		if (redraw)
			add_event(0, pcap_show, ph_list);
		if (txt)
			screen_status(txt);
		else	screen_update();
		return;
	}

	/* try global operation keys */
	switch (ch) {
	case K_ESC:	/* get back show mode */
	case 'q':
	case 'Q':
		switch (show_mode) {
		case Interfaces:
			exit(0);
		case NetStat:
			if ((ph = pcap_get_selected(ph_list)) != 0 && ph->top)
				pcaph_close(ph);
			else	show_mode = Interfaces;	
			pcap_show(ph_list);
			return;
		case FlowDump:
			show_dump_close();
			show_mode = NetStat;
			pcap_show(ph_list);
			return;
		case HelpPage:
			show_mode = help_page_mode();
			pcap_show(ph_list);
			return;
		}
		break;
	case K_CTRL('L'):	/* refresh screen */
		clear();
		refresh();
		pcap_show(ph_list);
		return;
	case 'h':	/* help page if any */
	case 'H':
	case '?':
	case K_F1:
		if (help_page_list(show_mode)) {
			show_mode = HelpPage;
			pcap_show(ph_list);
			return;
		}
		break;
	case 'r':	/* start to get refresh time */
	case 'R':
		if (show_mode != FlowDump) {
			prompt_mode = ch;
			snprintf(prompt_buf, sizeof(prompt_buf), "%d", refresh_time);
			init_edit_string("Refresh seconds: ", numbers, 5);
			selector_withdraw(get_selector(ph_list));
			screen_update();
			return;
		}
		break;
	case 'p':	/* start to get purge time */
	case 'P':
		if (show_mode != FlowDump) {
			prompt_mode = ch;
			snprintf(prompt_buf, sizeof(prompt_buf), "%d", purge_time);
			init_edit_string("Purge seconds: ", numbers, 5);
			selector_withdraw(get_selector(ph_list));
			screen_update();
			return;
		}
		break;
	case 'f':	/* start to get filter expression */
	case 'F':
		if (show_mode != FlowDump) {
			prompt_mode = ch;
			prompt_buf[0] = '\0';
			if (expression) {
				(void)strncpy(prompt_buf, expression, sizeof(prompt_buf));
				prompt_buf[sizeof(prompt_buf)-1] = '\0';
			}
			init_edit_string("Filter expression: ", 0, sizeof(prompt_buf));
			selector_withdraw(get_selector(ph_list));
			screen_update();
			return;
		}
		break;
	case '/':	/* start to get search string */
		if (show_mode != FlowDump) {
			prompt_mode = ch;
			prompt_buf[0] = '\0';
			if (search) {
				(void)strncpy(prompt_buf, search, sizeof(prompt_buf));
				prompt_buf[sizeof(prompt_buf)-1] = '\0';
			}
			init_edit_string("Search string: ", 0, sizeof(prompt_buf));
			selector_withdraw(get_selector(ph_list));
			screen_update();
			return;
		}
		break;
	case K_CTRL('_'):	/* turn off search mode */
		if (show_mode != FlowDump) {
			if (search) {
				free(search);
				search = 0;
				screen_status("Search mode turned Off");
			}
			return;
		}
		break;
	case 'a':	/* start to get aggregation masklen */
	case 'A':
		if (show_mode != FlowDump) {
			char buf[100];
			prompt_mode = ch;
			prompt_buf[0] = '\0';
			if (show_mode == NetStat &&
			    (ph = pcap_get_selected(ph_list)) != 0) {
				if (ph->masklen >= 0)
					snprintf(prompt_buf, sizeof(prompt_buf), "%d", ph->masklen);
				snprintf(buf, sizeof(buf), "%s aggregation netmask length: ", ph->name);
			} else {
				if (aggregate >= 0)
					snprintf(prompt_buf, sizeof(prompt_buf), "%d", aggregate);
				(void)strcpy(buf, "Aggregation netmask length: ");
			}
			init_edit_string(buf, numbers, 5);
			selector_withdraw(get_selector(ph_list));
			screen_update();
			return;
		}
		break;
	case K_CTRL('R'): /* reset all netstat hash */
		if (show_mode == Interfaces) {
			add_event(0, pcap_clear, ph_list);
			screen_status("Resetting all flows");
			return;
		}
		break;
	case 'n':	/* toggle numeric values to names conversion */
	case 'N':
		if (show_mode != FlowDump) {
			nflag ^= 1;
			if (ch == 'N') {
				add_event(0, pcap_show, ph_list);
			} else {
				screen_status("Numeric values turned %s",
					      nflag ? "On" : "Off");
			}
			return;
		}
		break;
	}

	/* prevent screen refresh overhead */
	gettimeofday(&now, 0);
	now.tv_sec += refresh_time;
	add_event(&now, pcap_show, ph_list);

	/* get current selector */
	switch (show_mode) {
	case Interfaces:
		sp = show_if_selector();
		break;
	case NetStat:
		if ((ph = pcap_get_selected(ph_list)) == 0)
			return;
		sp = show_stat_selector(ph);

		/* try special input for the show mode */
		if (show_stat_input(ph, ch)) {
			selector_redraw(sp);
			return;
		}
		break;
	case FlowDump:
		/* special input only for the show mode */
		show_dump_input(ch);
		return;
	case HelpPage:
		sp = help_page_selector();
		break;
	}

	/* try special input for the selecting */
	ch = selector_move(ch, sp);
	if (ch < 0) {
		selector_redraw(sp);
		return;
	}

	/* something selected */
	switch (show_mode) {
	case Interfaces:
		if ((ph = pcap_set_selected(ph_list, ch)) == 0)
			return; /* should not happen */
		/*selector_withdraw(sp);*/
		show_mode = NetStat;
		pcap_show(ph_list);
		return;
	case NetStat:
		/*selector_withdraw(sp);*/
		if (ph->masklen == -1) {
			if (show_dump_open(ph, show_stat_get(ph, ch)) == 0)
				show_mode = FlowDump;
		} else if (pcaph_create(ph, (struct netstat_header *)show_stat_get(ph, ch))) {
			pcap_show(ph_list);
		}
		return;
	case FlowDump:
		/* not reached; just to avoid compiler warning */
		return;
	case HelpPage:
		key = help_page_key(ch);
		if (key != -1 && key != 0) {
			show_mode = help_page_mode(); /* get back show mode */
			pcap_show(ph_list);
			parse_key(key, ph_list);
		}
		return;
	}
}

static int
scan_key(buf, len)
	const unsigned char *buf;
	int len;
{
	int i;

	if (buf[0] != ESCAPE) return buf[0];
	if (len == 1) return K_ESC;
	i = 1;
	if (buf[i] == '[' || buf[i] == 'O')
		if (++i >= len) return -1;

	switch (buf[i]) {
	case '\0':	/* xterm */
		return K_HOME;
	case 'A':
	case 'i':
		return K_UP;
	case 'B':
		return K_DOWN;
	case 'D':
		return K_LEFT;
	case 'C':
		return K_RIGHT;
	case 'I':	/* ansi  PgUp */
	case 'V':	/* at386 PgUp */
	case 'S':	/* 97801 PgUp */
	case 'v':	/* emacs style */
		return K_PAGEUP;
	case 'G':	/* ansi  PgDn */
	case 'U':	/* at386 PgDn */
	case 'T':	/* 97801 PgDn */
		return K_PAGEDOWN;
	case 'H':	/* at386  Home */
		return K_HOME;
	case 'F':	/* ansi   End */
	case 'Y':	/* at386  End */
		return K_END;
	case '5':	/* vt200 PgUp */
		return K_PAGEUP;
	case '6':	/* vt200 PgUp */
		return K_PAGEDOWN;
	case '1':	/* vt200 PgUp */
		if (++i >= len) return -1;
		switch(buf[i]) {	/* xterm */
		case '1':
			return K_F1;
		case '2':
			return K_F2;
		case '3':
			return K_F3;
		case '4':
			return K_F4;
		case '5':	/* RS/6000 PgUp is 150g, PgDn is 154g */
			if (++i >= len) return -1;
			if (buf[i] == '0')
				return K_PAGEUP;
			if (buf[i] == '4') 
				return K_PAGEDOWN;
		}
		return K_HOME;
	case '4':	/* vt200 PgUp */
		return K_END;
	case '2':	/* xterm */
	case 'L':
		return K_INS;
	case 'M':
		return K_F1;
	case 'N':
		return K_F2;
	case 'O':
		return K_F3;
	case 'P':
		return K_F4;
	}
	return -1;
}

static void
init_edit_string(prompter, charset, size)
	const char *prompter, *charset;
	int size;
{
	int i;

	char_set = charset;
	touch = 0;
	show_win = 0;

	*cut_buf = '\0';
	bartop = strlen(prompter);
	i = COLS - (bartop + 3);
	barlen = buf_size = size;
	if (barlen < 1 || barlen > i) {
		barlen = i;
		show_win = 1;
	}

	attrset(A_NORMAL);
	move(LINES-1, 0);
	clrtoeol();
	addstr(prompter);

	nb = strlen(prompt_buf);
	if (nb >= buf_size) nb = buf_size - 1;
	prompt_buf[nb] = '\0';
	cur = nb;

	win = cur / barlen;	/* window number */
	scr = cur % barlen;	/* screen position */

	if (show_win) mvprintw(LINES-1, COLS-2, "%-2d", win+1);

	attrset(A_STANDOUT);
	mvprintw(LINES-1, bartop, "%-*.*s", barlen, barlen, &prompt_buf[win * barlen]);

	screen_dock_cursor(LINES-1, bartop + scr);
}

static int
edit_string(ch)
	int ch;
{
	int i;

	switch (ch) {
	case K_ESC:
	case K_CR:
	case K_NL:
		prompt_buf[nb] = '\0';
		attrset(A_NORMAL);
		move(LINES-1, 0);
		clrtoeol();
		screen_dock_cursor(0, 0);
		return (ch == K_ESC ? -1 : 1);

	case K_PAGEUP:	/* move to begin of window */
		cur -= cur % barlen;
		break;
	case K_PAGEDOWN:/* move to end of window */
		if (strlen(&prompt_buf[cur]) < barlen)
			cur = nb;
		else	cur += barlen - cur % barlen - 1;
		break;
	case K_UP:	/* skip to previous word */
	case K_CTRL('P'):
		ch = 0;
		for (i = cur; i > 0; i--) {
			if (!ch) {
				if (strchr(spaces, prompt_buf[i-1]))
					ch++;
			} else if (!strchr(spaces, prompt_buf[i-1]))
				break;
		}
		cur = i;
		break;
	case K_DOWN:	/* skip to next word */
	case K_CTRL('N'):
		ch = 0;
		for (i = cur; i < nb; i++) {
			if (!ch) {
				if (strchr(spaces, prompt_buf[i]))
					ch++;
			} else if (!strchr(spaces, prompt_buf[i]))
				break;
		}
		cur = i;
		break;
	case K_HOME:	/* move to begin of line */
	case K_CTRL('A'):
		cur = 0;
		break;
	case K_END:	/* move to end of line */
	case K_CTRL('E'):
		cur = nb;
		break;
	case K_LEFT:	/* move cursor left */
	case K_CTRL('B'):
		if (cur > 0) cur--;
		break;
	case K_RIGHT:	/* move cursor right */
	case K_CTRL('F'):
		if (cur < nb) cur++;
		break;
	case K_BS:	/* backspace */
		if (nb && cur) {
			memmove(&prompt_buf[cur-1], &prompt_buf[cur], nb - cur);
			cur--;
			nb--;
		}
		break;
	case K_DEL:	/* delete */
	case K_CTRL('D'):
		if (nb && cur < nb) {
			memmove(&prompt_buf[cur], &prompt_buf[cur+1], nb - cur);
			nb--;
		}
		break;
	case K_CTRL('U'):	/* erase entire line */
		(void)strcpy(cut_buf, prompt_buf);
		nb = 0;
		cur = 0;
		break;
	case K_CTRL('W'):	/* erase last word */
		ch = 0;
		for (i = cur; i > 0; i--) {
			if (!ch) {
				if (strchr(spaces, prompt_buf[i-1]))
					ch++;
			} else if (!strchr(spaces, prompt_buf[i-1]))
				break;
		}
		if (cur > i) {
			memcpy(cut_buf, &prompt_buf[i], cur - i);
			cut_buf[cur - i] = '\0';
			memmove(&prompt_buf[i], &prompt_buf[cur], cur - i);
			nb -= cur - i;
			cur = i;
		}
		break;
	case K_CTRL('K'):	/* erase end of line */
		if (prompt_buf[cur] != '\0')
			(void)strcpy(cut_buf, &prompt_buf[cur]);
		nb = cur;
		break;
	case K_TAB:	/* insert cut_buf */
		i = strlen(cut_buf);
		if (i && (buf_size - 1) - strlen(prompt_buf) >= i) {
			memmove(&prompt_buf[cur+i], &prompt_buf[cur], nb - cur);
			memmove(&prompt_buf[cur], cut_buf, i);
			nb += i;
			cur += i;
		}
		break;
	default:
		if (ch < 32 || ch > 126)
			return 0; /* skip garbage chars */

		if (char_set && !strchr(char_set, ch)) {
			beep();
			return 0;
		}
		if (!touch) {
			nb = 0;
			cur = 0;
		}
		if (nb >= buf_size - 1) { /* no more space available */
			beep();
			return 0;
		}
		if (nb > cur)
			memmove(&prompt_buf[cur+1], &prompt_buf[cur], nb - cur);
		prompt_buf[cur++] = ch;
		nb++;
	}
	touch = 1;

	prompt_buf[nb] = '\0';

	win = cur / barlen;	/* window number */
	scr = cur % barlen;	/* screen position */

	attrset(A_STANDOUT);
	mvprintw(LINES-1, bartop, "%-*.*s", barlen, barlen, &prompt_buf[win * barlen]);
	if (show_win) {
		attrset(A_NORMAL);
		mvprintw(LINES-1, COLS-2, "%-2d", win+1);
	}

	screen_dock_cursor(LINES-1, bartop + scr);
	screen_update();
	return 0;
}