s3: Add an async smbsock_connect
[Samba.git] / source3 / torture / nbio.c
bloba010c80985e6d9ec3abe839c29a4c15a1242f135
1 #define NBDEBUG 0
3 /*
4 Unix SMB/CIFS implementation.
5 SMB torture tester
6 Copyright (C) Andrew Tridgell 1997-1998
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
24 #define MAX_FILES 1000
26 static char buf[70000];
27 extern int line_count;
28 extern int nbio_id;
29 static int nprocs;
31 static struct {
32 int fd;
33 int handle;
34 } ftable[MAX_FILES];
36 static struct children {
37 double bytes_in, bytes_out;
38 int line;
39 int done;
40 } *children;
42 double nbio_total(void)
44 int i;
45 double total = 0;
46 for (i=0;i<nprocs;i++) {
47 total += children[i].bytes_out + children[i].bytes_in;
49 return total;
52 void nb_alarm(int ignore)
54 int i;
55 int lines=0, num_clients=0;
56 if (nbio_id != -1) return;
58 for (i=0;i<nprocs;i++) {
59 lines += children[i].line;
60 if (!children[i].done) num_clients++;
63 printf("%4d %8d %.2f MB/sec\r", num_clients, lines/nprocs, 1.0e-6 * nbio_total() / end_timer());
65 signal(SIGALRM, nb_alarm);
66 alarm(1);
69 void nbio_shmem(int n)
71 nprocs = n;
72 children = (struct children *)shm_setup(sizeof(*children) * nprocs);
73 if (!children) {
74 printf("Failed to setup shared memory!\n");
75 exit(1);
79 #if 0
80 static int ne_find_handle(int handle)
82 int i;
83 children[nbio_id].line = line_count;
84 for (i=0;i<MAX_FILES;i++) {
85 if (ftable[i].handle == handle) return i;
87 return -1;
89 #endif
91 static int find_handle(int handle)
93 int i;
94 children[nbio_id].line = line_count;
95 for (i=0;i<MAX_FILES;i++) {
96 if (ftable[i].handle == handle) return i;
98 printf("(%d) ERROR: handle %d was not found\n",
99 line_count, handle);
100 exit(1);
102 return -1; /* Not reached */
106 static struct cli_state *c;
108 static void sigsegv(int sig)
110 char line[200];
111 printf("segv at line %d\n", line_count);
112 slprintf(line, sizeof(line), "/usr/X11R6/bin/xterm -e gdb /proc/%d/exe %d",
113 (int)getpid(), (int)getpid());
114 if (system(line) == -1) {
115 printf("system() failed\n");
117 exit(1);
120 void nb_setup(struct cli_state *cli)
122 signal(SIGSEGV, sigsegv);
123 c = cli;
124 start_timer();
125 children[nbio_id].done = 0;
129 void nb_unlink(const char *fname)
131 if (!cli_unlink(c, fname)) {
132 #if NBDEBUG
133 printf("(%d) unlink %s failed (%s)\n",
134 line_count, fname, cli_errstr(c));
135 #endif
140 void nb_createx(const char *fname,
141 unsigned create_options, unsigned create_disposition, int handle)
143 int fd, i;
144 uint32 desired_access;
146 if (create_options & FILE_DIRECTORY_FILE) {
147 desired_access = FILE_READ_DATA;
148 } else {
149 desired_access = FILE_READ_DATA | FILE_WRITE_DATA;
152 fd = cli_nt_create_full(c, fname, 0,
153 desired_access,
154 0x0,
155 FILE_SHARE_READ|FILE_SHARE_WRITE,
156 create_disposition,
157 create_options, 0);
158 if (fd == -1 && handle != -1) {
159 printf("ERROR: cli_nt_create_full failed for %s - %s\n",
160 fname, cli_errstr(c));
161 exit(1);
163 if (fd != -1 && handle == -1) {
164 printf("ERROR: cli_nt_create_full succeeded for %s\n", fname);
165 exit(1);
167 if (fd == -1) return;
169 for (i=0;i<MAX_FILES;i++) {
170 if (ftable[i].handle == 0) break;
172 if (i == MAX_FILES) {
173 printf("(%d) file table full for %s\n", line_count,
174 fname);
175 exit(1);
177 ftable[i].handle = handle;
178 ftable[i].fd = fd;
181 void nb_writex(int handle, int offset, int size, int ret_size)
183 int i;
185 if (buf[0] == 0) memset(buf, 1, sizeof(buf));
187 i = find_handle(handle);
188 if (cli_write(c, ftable[i].fd, 0, buf, offset, size) != ret_size) {
189 printf("(%d) ERROR: write failed on handle %d, fd %d \
190 errno %d (%s)\n", line_count, handle, ftable[i].fd, errno, strerror(errno));
191 exit(1);
194 children[nbio_id].bytes_out += ret_size;
197 void nb_readx(int handle, int offset, int size, int ret_size)
199 int i, ret;
201 i = find_handle(handle);
202 if ((ret=cli_read(c, ftable[i].fd, buf, offset, size)) != ret_size) {
203 printf("(%d) ERROR: read failed on handle %d ofs=%d size=%d res=%d fd %d errno %d (%s)\n",
204 line_count, handle, offset, size, ret, ftable[i].fd, errno, strerror(errno));
205 exit(1);
207 children[nbio_id].bytes_in += ret_size;
210 void nb_close(int handle)
212 int i;
213 i = find_handle(handle);
214 if (!cli_close(c, ftable[i].fd)) {
215 printf("(%d) close failed on handle %d\n", line_count, handle);
216 exit(1);
218 ftable[i].handle = 0;
221 void nb_rmdir(const char *fname)
223 if (!cli_rmdir(c, fname)) {
224 printf("ERROR: rmdir %s failed (%s)\n",
225 fname, cli_errstr(c));
226 exit(1);
230 void nb_rename(const char *oldname, const char *newname)
232 if (!cli_rename(c, oldname, newname)) {
233 printf("ERROR: rename %s %s failed (%s)\n",
234 oldname, newname, cli_errstr(c));
235 exit(1);
240 void nb_qpathinfo(const char *fname)
242 cli_qpathinfo(c, fname, NULL, NULL, NULL, NULL, NULL);
245 void nb_qfileinfo(int fnum)
247 int i;
248 i = find_handle(fnum);
249 cli_qfileinfo(c, ftable[i].fd, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
252 void nb_qfsinfo(int level)
254 int bsize, total, avail;
255 /* this is not the right call - we need cli_qfsinfo() */
256 cli_dskattr(c, &bsize, &total, &avail);
259 static void find_fn(const char *mnt, file_info *finfo, const char *name, void *state)
261 /* noop */
264 void nb_findfirst(const char *mask)
266 cli_list(c, mask, 0, find_fn, NULL);
269 void nb_flush(int fnum)
271 int i;
272 i = find_handle(fnum);
273 /* hmmm, we don't have cli_flush() yet */
276 static int total_deleted;
278 static void delete_fn(const char *mnt, file_info *finfo, const char *name, void *state)
280 char *s, *n;
281 if (finfo->name[0] == '.') return;
283 n = SMB_STRDUP(name);
284 n[strlen(n)-1] = 0;
285 if (asprintf(&s, "%s%s", n, finfo->name) == -1) {
286 printf("asprintf failed\n");
287 return;
289 if (finfo->mode & aDIR) {
290 char *s2;
291 if (asprintf(&s2, "%s\\*", s) == -1) {
292 printf("asprintf failed\n");
293 return;
295 cli_list(c, s2, aDIR, delete_fn, NULL);
296 nb_rmdir(s);
297 } else {
298 total_deleted++;
299 nb_unlink(s);
301 free(s);
302 free(n);
305 void nb_deltree(const char *dname)
307 char *mask;
308 if (asprintf(&mask, "%s\\*", dname) == -1) {
309 printf("asprintf failed\n");
310 return;
313 total_deleted = 0;
314 cli_list(c, mask, aDIR, delete_fn, NULL);
315 free(mask);
316 cli_rmdir(c, dname);
318 if (total_deleted) printf("WARNING: Cleaned up %d files\n", total_deleted);
322 void nb_cleanup(void)
324 cli_rmdir(c, "clients");
325 children[nbio_id].done = 1;