#define NBDEBUG 0 /* Unix SMB/Netbios implementation. Version 1.9. SMB torture tester Copyright (C) Andrew Tridgell 1997-1998 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define NO_SYSLOG #include "includes.h" #define MAX_FILES 1000 static char buf[70000]; extern int line_count; static struct { int fd; int handle; } ftable[MAX_FILES]; static struct cli_state *c; static void sigsegv(int sig) { char line[200]; printf("segv at line %d\n", line_count); slprintf(line, sizeof(line), "/usr/X11R6/bin/xterm -e gdb /proc/%d/exe %d", (int)getpid(), (int)getpid()); system(line); exit(1); } void nb_setup(struct cli_state *cli) { signal(SIGSEGV, sigsegv); c = cli; } void nb_unlink(char *fname) { strupper(fname); if (!cli_unlink(c, fname)) { #if NBDEBUG printf("(%d) unlink %s failed (%s)\n", line_count, fname, cli_errstr(c)); #endif } } void nb_open(char *fname, int handle, int size) { int fd, i; int flags = O_RDWR|O_CREAT; size_t st_size; static int count; strupper(fname); if (size == 0) flags |= O_TRUNC; fd = cli_open(c, fname, flags, DENY_NONE); if (fd == -1) { #if NBDEBUG printf("(%d) open %s failed for handle %d (%s)\n", line_count, fname, handle, cli_errstr(c)); #endif return; } cli_getattrE(c, fd, NULL, &st_size, NULL, NULL, NULL); if (size > st_size) { #if NBDEBUG printf("(%d) needs expanding %s to %d from %d\n", line_count, fname, size, (int)st_size); #endif } else if (size < st_size) { #if NBDEBUG printf("(%d) needs truncating %s to %d from %d\n", line_count, fname, size, (int)st_size); #endif } for (i=0;i