/* Unix SMB/Netbios implementation. Version 2.0 mask_match tester Copyright (C) Andrew Tridgell 1999 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" static fstring password; static fstring username; static fstring workgroup; static int got_pass; static int numops = 1000; static BOOL showall; static BOOL analyze; #define FILENAME "locktest.dat" #define LOCKRANGE 100 #define READ_PCT 50 #define LOCK_PCT 25 #define UNLOCK_PCT 65 #define RANGE_MULTIPLE 1 struct record { char r1, r2; char conn, f; int start, len; char needed; }; static struct record preset[] = { #if 1 {36, 5, 1, 1, 1, 2, 1}, { 2, 6, 0, 1, 0, 2, 1}, {53, 92, 1, 1, 0, 0, 1}, {99, 11, 1, 1, 2, 1, 1}, #endif }; static struct record *recorded; static void print_brl(SMB_DEV_T dev, SMB_INO_T ino, int pid, enum brl_type lock_type, br_off start, br_off size) { printf("%6d %05x:%05x %s %9.0f %9.0f\n", (int)pid, (int)dev, (int)ino, lock_type==READ_LOCK?"R":"W", (double)start, (double)size); } /***************************************************** return a connection to a server *******************************************************/ struct cli_state *connect_one(char *share) { struct cli_state *c; struct nmb_name called, calling; char *server_n; fstring server; struct in_addr ip; extern struct in_addr ipzero; fstring myname; static int count; fstrcpy(server,share+2); share = strchr(server,'\\'); if (!share) return NULL; *share = 0; share++; server_n = server; ip = ipzero; slprintf(myname,sizeof(myname), "lock-%d-%d", getpid(), count++); make_nmb_name(&calling, myname, 0x0); make_nmb_name(&called , server, 0x20); again: ip = ipzero; /* have to open a new connection */ if (!(c=cli_initialise(NULL)) || (cli_set_port(c, 139) == 0) || !cli_connect(c, server_n, &ip)) { DEBUG(0,("Connection to %s failed\n", server_n)); return NULL; } if (!cli_session_request(c, &calling, &called)) { DEBUG(0,("session request to %s failed\n", called.name)); cli_shutdown(c); if (strcmp(called.name, "*SMBSERVER")) { make_nmb_name(&called , "*SMBSERVER", 0x20); goto again; } return NULL; } DEBUG(4,(" session request ok\n")); if (!cli_negprot(c)) { DEBUG(0,("protocol negotiation failed\n")); cli_shutdown(c); return NULL; } if (!got_pass) { char *pass = getpass("Password: "); if (pass) { pstrcpy(password, pass); } } if (!cli_session_setup(c, username, password, strlen(password), password, strlen(password), workgroup)) { DEBUG(0,("session setup failed: %s\n", cli_errstr(c))); return NULL; } /* * These next two lines are needed to emulate * old client behaviour for people who have * scripts based on client output. * QUESTION ? Do we want to have a 'client compatibility * mode to turn these on/off ? JRA. */ if (*c->server_domain || *c->server_os || *c->server_type) DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n", c->server_domain,c->server_os,c->server_type)); DEBUG(4,(" session setup ok\n")); if (!cli_send_tconX(c, share, "?????", password, strlen(password)+1)) { DEBUG(0,("tree connect failed: %s\n", cli_errstr(c))); cli_shutdown(c); return NULL; } DEBUG(4,(" tconx ok\n")); return c; } static void reconnect(struct cli_state *cli[2][2], int fnum[2][2][2], char *share1, char *share2) { int server, conn, f; char *share[2]; share[0] = share1; share[1] = share2; for (server=0;server<2;server++) for (conn=0;conn<2;conn++) { if (cli[server][conn]) { for (f=0;f<2;f++) { cli_close(cli[server][conn], fnum[server][conn][f]); } cli_ulogoff(cli[server][conn]); cli_shutdown(cli[server][conn]); free(cli[server][conn]); cli[server][conn] = NULL; } cli[server][conn] = connect_one(share[server]); if (!cli[server][conn]) { DEBUG(0,("Failed to connect to %s\n", share[server])); exit(1); } } } static BOOL test_one(struct cli_state *cli[2][2], int fnum[2][2][2], struct record *rec) { int conn = rec->conn; int f = rec->f; int start = rec->start; int len = rec->len; int r1 = rec->r1; int r2 = rec->r2; int op; BOOL ret1, ret2; if (r1 < READ_PCT) { op = READ_LOCK; } else { op = WRITE_LOCK; } if (r2 < LOCK_PCT) { /* set a lock */ ret1 = cli_lock(cli[0][conn], fnum[0][conn][f], start, len, 0, op); ret2 = cli_lock(cli[1][conn], fnum[1][conn][f], start, len, 0, op); if (showall || ret1 != ret2) { printf("lock conn=%d f=%d range=%d:%d op=%s -> %d:%d\n", conn, f, start, len, op==READ_LOCK?"READ_LOCK":"WRITE_LOCK", ret1, ret2); } if (showall) brl_forall(print_brl); if (ret1 != ret2) return False; } else if (r2 < LOCK_PCT+UNLOCK_PCT) { /* unset a lock */ ret1 = cli_unlock(cli[0][conn], fnum[0][conn][f], start, len); ret2 = cli_unlock(cli[1][conn], fnum[1][conn][f], start, len); if (showall || ret1 != ret2) { printf("unlock conn=%d f=%d %d:%d -> %d:%d\n", conn, f, start, len, ret1, ret2); } if (showall) brl_forall(print_brl); if (ret1 != ret2) return False; } else { /* reopen the file */ cli_close(cli[0][conn], fnum[0][conn][f]); cli_close(cli[1][conn], fnum[1][conn][f]); fnum[0][conn][f] = cli_open(cli[0][conn], FILENAME, O_RDWR|O_CREAT, DENY_NONE); fnum[1][conn][f] = cli_open(cli[1][conn], FILENAME, O_RDWR|O_CREAT, DENY_NONE); if (fnum[0][conn][f] == -1) { printf("failed to reopen on share1\n"); return False; } if (fnum[1][conn][f] == -1) { printf("failed to reopen on share2\n"); return False; } if (showall) { printf("reopen conn=%d f=%d\n", conn, f); brl_forall(print_brl); } } return True; } static void close_files(struct cli_state *cli[2][2], int fnum[2][2][2]) { int server, conn, f; for (server=0;server<2;server++) for (conn=0;conn<2;conn++) for (f=0;f<2;f++) { if (fnum[server][conn][f] != -1) { cli_close(cli[server][conn], fnum[server][conn][f]); fnum[server][conn][f] = -1; } } cli_unlink(cli[0][0], FILENAME); cli_unlink(cli[1][0], FILENAME); } static void open_files(struct cli_state *cli[2][2], int fnum[2][2][2]) { int server, conn, f; for (server=0;server<2;server++) for (conn=0;conn<2;conn++) for (f=0;f<2;f++) { fnum[server][conn][f] = cli_open(cli[server][conn], FILENAME, O_RDWR|O_CREAT, DENY_NONE); if (fnum[server][conn][f] == -1) { fprintf(stderr,"Failed to open fnum[%d][%d][%d]\n", server, conn, f); exit(1); } } } static int retest(struct cli_state *cli[2][2], int fnum[2][2][2], int n) { int i; printf("testing %d ...\n", n); for (i=0; i