s3:torture:delete: untangle function call from result check
[kai/samba.git] / source3 / torture / masktest.c
index e80f9cd665c918879db1dcf4319906aa7e70c1f1..74f33a5cddcea10f77258b81c8d9ad4feceb91b4 100644 (file)
@@ -2,22 +2,27 @@
    Unix SMB/CIFS implementation.
    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 3 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, see <http://www.gnu.org/licenses/>.
 */
 
 #include "includes.h"
+#include "system/filesys.h"
+#include "trans2.h"
+#include "libsmb/libsmb.h"
+#include "libsmb/nmblib.h"
+#include "../libcli/smb/smbXcli_base.h"
 
 static fstring password;
 static fstring username;
@@ -34,7 +39,6 @@ static int ignore_dot_errors = 0;
 
 extern char *optarg;
 extern int optind;
-extern bool AllowDebugChange;
 
 /* a test fn for LANMAN mask support */
 static int ms_fnmatch_lanman_core(const char *pattern, const char *string)
@@ -141,7 +145,7 @@ static bool reg_match_one(struct cli_state *cli, const char *pattern, const char
 
        if (strcmp(file,"..") == 0) file = ".";
 
-       return ms_fnmatch(pattern, file, cli->protocol, False) == 0;
+       return ms_fnmatch(pattern, file, smbXcli_conn_protocol(cli->conn), False) == 0;
 }
 
 static char *reg_test(struct cli_state *cli, const char *pattern, const char *long_name, const char *short_name)
@@ -164,10 +168,8 @@ return a connection to a server
 static struct cli_state *connect_one(char *share)
 {
        struct cli_state *c;
-       struct nmb_name called, calling;
        char *server_n;
        char *server;
-       struct sockaddr_storage ss;
        NTSTATUS status;
 
        server = share+2;
@@ -178,41 +180,16 @@ static struct cli_state *connect_one(char *share)
 
        server_n = server;
 
-       zero_sockaddr(&ss);
-
-       make_nmb_name(&calling, "masktest", 0x0);
-       make_nmb_name(&called , server, 0x20);
-
- again:
-        zero_sockaddr(&ss);
-
-       /* have to open a new connection */
-       if (!(c=cli_initialise())) {
-               DEBUG(0,("Connection to %s failed\n", server_n));
-               return NULL;
-       }
-
-       status = cli_connect(c, server_n, &ss);
+       status = cli_connect_nb(server, NULL, 0, 0x20, "masktest",
+                               SMB_SIGNING_DEFAULT, 0, &c);
        if (!NT_STATUS_IS_OK(status)) {
-               DEBUG(0,("Connection to %s failed. Error %s\n", server_n, nt_errstr(status) ));
-               return NULL;
-       }
-
-       c->protocol = max_protocol;
-
-       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;
-               }
+               DEBUG(0,("Connection to %s failed. Error %s\n", server_n,
+                        nt_errstr(status)));
                return NULL;
        }
 
-       DEBUG(4,(" session request ok\n"));
-
-       status = cli_negprot(c);
+       status = smbXcli_negprot(c->conn, c->timeout, PROTOCOL_CORE,
+                                max_protocol);
        if (!NT_STATUS_IS_OK(status)) {
                DEBUG(0, ("protocol negotiation failed: %s\n",
                          nt_errstr(status)));
@@ -227,11 +204,12 @@ static struct cli_state *connect_one(char *share)
                }
        }
 
-       if (!NT_STATUS_IS_OK(cli_session_setup(c, username, 
-                                              password, strlen(password),
-                                              password, strlen(password),
-                                              lp_workgroup()))) {
-               DEBUG(0,("session setup failed: %s\n", cli_errstr(c)));
+       status = cli_session_setup(c, username,
+                                  password, strlen(password),
+                                  password, strlen(password),
+                                  lp_workgroup());
+       if (!NT_STATUS_IS_OK(status)) {
+               DEBUG(0, ("session setup failed: %s\n", nt_errstr(status)));
                return NULL;
        }
 
@@ -249,8 +227,8 @@ static struct cli_state *connect_one(char *share)
 
        DEBUG(4,(" session setup ok\n"));
 
-       status = cli_tcon_andx(c, share, "?????", password,
-                              strlen(password)+1);
+       status = cli_tree_connect(c, share, "?????", password,
+                                 strlen(password)+1);
        if (!NT_STATUS_IS_OK(status)) {
                DEBUG(0,("tree connect failed: %s\n", nt_errstr(status)));
                cli_shutdown(c);
@@ -263,10 +241,16 @@ static struct cli_state *connect_one(char *share)
 }
 
 static char *resultp;
-static file_info *f_info;
 
-static void listfn(const char *mnt, file_info *f, const char *s, void *state)
+struct rn_state {
+       char **pp_long_name;
+       char *short_name;
+};
+
+static NTSTATUS listfn(const char *mnt, struct file_info *f, const char *s,
+                  void *private_data)
 {
+       struct rn_state *state = (struct rn_state *)private_data;
        if (strcmp(f->name,".") == 0) {
                resultp[0] = '+';
        } else if (strcmp(f->name,"..") == 0) {
@@ -274,28 +258,44 @@ static void listfn(const char *mnt, file_info *f, const char *s, void *state)
        } else {
                resultp[2] = '+';
        }
-       f_info = f;
+
+       if (state == NULL) {
+               return NT_STATUS_INTERNAL_ERROR;
+       }
+
+       if (ISDOT(f->name) || ISDOTDOT(f->name))  {
+               return NT_STATUS_OK;
+       }
+
+
+       fstrcpy(state->short_name, f->short_name ? f->short_name : "");
+       strlower_m(state->short_name);
+       *state->pp_long_name = SMB_STRDUP(f->name);
+       if (!*state->pp_long_name) {
+               return NT_STATUS_NO_MEMORY;
+       }
+       strlower_m(*state->pp_long_name);
+       return NT_STATUS_OK;
 }
 
 static void get_real_name(struct cli_state *cli,
                          char **pp_long_name, fstring short_name)
 {
+       struct rn_state state;
+
+       state.pp_long_name = pp_long_name;
+       state.short_name = short_name;
+
        *pp_long_name = NULL;
        /* nasty hack to force level 260 listings - tridge */
-       cli->capabilities |= CAP_NT_SMBS;
        if (max_protocol <= PROTOCOL_LANMAN1) {
-               cli_list_new(cli, "\\masktest\\*.*", aHIDDEN | aDIR, listfn, NULL);
+               cli_list_trans(cli, "\\masktest\\*.*", FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY,
+                              SMB_FIND_FILE_BOTH_DIRECTORY_INFO, listfn,
+                              &state);
        } else {
-               cli_list_new(cli, "\\masktest\\*", aHIDDEN | aDIR, listfn, NULL);
-       }
-       if (f_info) {
-               fstrcpy(short_name, f_info->short_name);
-               strlower_m(short_name);
-               *pp_long_name = SMB_STRDUP(f_info->name);
-               if (!*pp_long_name) {
-                       return;
-               }
-               strlower_m(*pp_long_name);
+               cli_list_trans(cli, "\\masktest\\*", FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY,
+                              SMB_FIND_FILE_BOTH_DIRECTORY_INFO,
+                              listfn, &state);
        }
 
        if (*short_name == 0) {
@@ -311,7 +311,7 @@ static void get_real_name(struct cli_state *cli,
 
 static void testpair(struct cli_state *cli, const char *mask, const char *file)
 {
-       int fnum;
+       uint16_t fnum;
        fstring res1;
        char *res2;
        static int count;
@@ -322,8 +322,7 @@ static void testpair(struct cli_state *cli, const char *mask, const char *file)
 
        fstrcpy(res1, "---");
 
-       fnum = cli_open(cli, file, O_CREAT|O_TRUNC|O_RDWR, 0);
-       if (fnum == -1) {
+       if (!NT_STATUS_IS_OK(cli_openx(cli, file, O_CREAT|O_TRUNC|O_RDWR, 0, &fnum))) {
                DEBUG(0,("Can't create %s\n", file));
                return;
        }
@@ -331,14 +330,12 @@ static void testpair(struct cli_state *cli, const char *mask, const char *file)
 
        resultp = res1;
        fstrcpy(short_name, "");
-       f_info = NULL;
        get_real_name(cli, &long_name, short_name);
        if (!long_name) {
                return;
        }
-       f_info = NULL;
        fstrcpy(res1, "---");
-       cli_list(cli, mask, aHIDDEN | aDIR, listfn, NULL);
+       cli_list(cli, mask, FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY, listfn, NULL);
 
        res2 = reg_test(cli, mask, long_name, short_name);
 
@@ -350,7 +347,7 @@ static void testpair(struct cli_state *cli, const char *mask, const char *file)
                if (die_on_error) exit(1);
        }
 
-       cli_unlink(cli, file, aSYSTEM | aHIDDEN);
+       cli_unlink(cli, file, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
 
        if (count % 100 == 0) DEBUG(0,("%d\n", count));
        SAFE_FREE(long_name);
@@ -367,7 +364,7 @@ static void test_mask(int argc, char *argv[],
 
        cli_mkdir(cli, "\\masktest");
 
-       cli_unlink(cli, "\\masktest\\*", aSYSTEM | aHIDDEN);
+       cli_unlink(cli, "\\masktest\\*", FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
 
        if (argc >= 2) {
                while (argc >= 2) {
@@ -390,8 +387,8 @@ static void test_mask(int argc, char *argv[],
        while (1) {
                l1 = 1 + random() % 20;
                l2 = 1 + random() % 20;
-               mask = TALLOC_ARRAY(ctx, char, strlen("\\masktest\\")+1+22);
-               file = TALLOC_ARRAY(ctx, char, strlen("\\masktest\\")+1+22);
+               mask = talloc_array(ctx, char, strlen("\\masktest\\")+1+22);
+               file = talloc_array(ctx, char, strlen("\\masktest\\")+1+22);
                if (!mask || !file) {
                        goto finished;
                }
@@ -466,10 +463,7 @@ static void usage(void)
 
        setlinebuf(stdout);
 
-       dbf = x_stderr;
-
-       DEBUGLEVEL = 0;
-       AllowDebugChange = False;
+       lp_set_cmdline("log level", "0");
 
        if (argc < 2 || argv[1][0] == '-') {
                usage();
@@ -480,12 +474,13 @@ static void usage(void)
 
        all_string_sub(share,"/","\\",0);
 
-       setup_logging(argv[0],True);
+       setup_logging(argv[0], DEBUG_STDERR);
 
        argc -= 1;
        argv += 1;
 
-       lp_load(get_dyn_CONFIGFILE(),True,False,False,True);
+       load_case_tables();
+       lp_load_global(get_dyn_CONFIGFILE());
        load_interfaces();
 
        if (getenv("USER")) {
@@ -500,7 +495,7 @@ static void usage(void)
                        NumLoops = atoi(optarg);
                        break;
                case 'd':
-                       DEBUGLEVEL = atoi(optarg);
+                       lp_set_cmdline("log level", optarg);
                        break;
                case 'E':
                        die_on_error = 1;