File: vluke.c

package info (click to toggle)
samba 2.2.3a-15
  • links: PTS
  • area: main
  • in suites: woody
  • size: 24,336 kB
  • ctags: 19,246
  • sloc: ansic: 179,555; sh: 6,888; perl: 2,091; makefile: 1,491; awk: 1,143; exp: 1,143; csh: 161
file content (41 lines) | stat: -rw-r--r-- 851 bytes parent folder | download | duplicates (3)
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
#include "parser.h"
#include "test.h"

int main(int argc, char *argv[])
{
	BOOL ret;
	char *fname, *test;
	int fd;	
	struct stat st;
	io_struct ps;

	if (argc < 3) {
		printf("usage: vluke <structure> <file>\n");
		exit(1);
	}

	test = argv[1];
	fname = argv[2];

	fd = open(fname,O_RDONLY);
	if (fd == -1) {
	  perror(fname);
	  exit(1);
	}
	fstat(fd, &st);

	io_init(&ps, 0, MARSHALL);
	ps.is_dynamic=True;
	io_read(&ps, fd, st.st_size, 0);
	ps.data_offset = 0;	
	ps.buffer_size = ps.grow_size;
	ps.io = UNMARSHALL;
	ps.autoalign = OPTION_autoalign;
	ret = run_test(test, &ps, PARSE_SCALARS|PARSE_BUFFERS);
	printf("\nret=%s\n", ret?"OK":"Bad");
	printf("Trailer is %d bytes\n\n", ps.grow_size - ps.data_offset);
	if (ps.grow_size - ps.data_offset > 0) {
		dump_data(0, ps.data_p + ps.data_offset, ps.grow_size - ps.data_offset);
	}
	return !ret;
}