From 0c4b1ea0140ed5418fcbde3077d424ffa08a2dcf Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 21 Dec 1999 03:05:38 +0000 Subject: this was left out from the 2.0.6 merge (This used to be commit 7067aeecabaea8a35f7a27de4b44f1e11afd07b7) --- source3/utils/nbio.c | 236 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 236 insertions(+) create mode 100644 source3/utils/nbio.c (limited to 'source3/utils') diff --git a/source3/utils/nbio.c b/source3/utils/nbio.c new file mode 100644 index 0000000000..71ac959f11 --- /dev/null +++ b/source3/utils/nbio.c @@ -0,0 +1,236 @@ +#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", + getpid(), getpid()); + system(line); + exit(1); +} + +void nb_setup(struct cli_state *cli) +{ + signal(SIGSEGV, sigsegv); + /* to be like a true Windows client we need to negotiate oplocks */ + cli->use_oplocks = True; + 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