r16945: Sync trunk -> 3.0 for 3.0.24 code. Still need
[vlendec/samba-autobuild/.git] / source3 / client / client.c
index d4ad5fa1fe2b9dd280a45377a48cd2a4e63b4c20..99fffa712321cf921dcffdc173297be0371c886a 100644 (file)
@@ -1,9 +1,10 @@
 /* 
    Unix SMB/CIFS implementation.
    SMB client
-   Copyright (C) Andrew Tridgell 1994-1998
-   Copyright (C) Simo Sorce 2001-2002
-   Copyright (C) Jelmer Vernooij 2003
+   Copyright (C) Andrew Tridgell          1994-1998
+   Copyright (C) Simo Sorce               2001-2002
+   Copyright (C) Jelmer Vernooij          2003
+   Copyright (C) Gerald (Jerry) Carter    2004
    
    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
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
 
-#define NO_SYSLOG
-
 #include "includes.h"
-#include "../client/client_proto.h"
+#include "client/client_proto.h"
 #ifndef REGISTER
 #define REGISTER 0
 #endif
 
-struct cli_state *cli;
+extern BOOL AllowDebugChange;
+extern BOOL override_logfile;
+extern char tar_type;
 extern BOOL in_client;
 static int port = 0;
 pstring cur_dir = "\\";
@@ -36,18 +37,16 @@ static pstring cd_path = "";
 static pstring service;
 static pstring desthost;
 static pstring username;
-static pstring password;
-static BOOL use_kerberos;
-static BOOL got_pass;
+static pstring calling_name;
 static BOOL grepable=False;
 static char *cmdstr = NULL;
 
 static int io_bufsize = 64512;
 
 static int name_type = 0x20;
-static int max_protocol = PROTOCOL_NT1;
+extern int max_protocol;
 
-static int process_tok(fstring tok);
+static int process_tok(pstring tok);
 static int cmd_help(void);
 
 /* 30 second timeout on most commands */
@@ -61,7 +60,6 @@ time_t newer_than = 0;
 static int archive_level = 0;
 
 static BOOL translation = False;
-
 static BOOL have_ip;
 
 /* clitar bits insert */
@@ -73,8 +71,6 @@ extern BOOL tar_reset;
 
 static BOOL prompt = True;
 
-static int printmode = 1;
-
 static BOOL recurse = False;
 BOOL lowercase = False;
 
@@ -97,10 +93,11 @@ static unsigned int put_total_time_ms = 0;
 /* totals globals */
 static double dir_total;
 
-#define USENMB
+/* root cli_state connection */
+
+struct cli_state *cli;
+
 
-/* some forward declarations */
-static struct cli_state *do_connect(const char *server, const char *share);
 
 /****************************************************************************
  Write to a local file with CR/LF->LF translation if appropriate. Return the 
@@ -216,9 +213,16 @@ static void send_message(void)
 static int do_dskattr(void)
 {
        int total, bsize, avail;
+       struct cli_state *targetcli;
+       pstring targetpath;
+
+       if ( !cli_resolve_path( "", cli, cur_dir, &targetcli, targetpath ) ) {
+               d_printf("Error in dskattr: %s\n", cli_errstr(cli));
+               return 1;
+       }
 
-       if (!cli_dskattr(cli, &bsize, &total, &avail)) {
-               d_printf("Error in dskattr: %s\n",cli_errstr(cli)); 
+       if (!cli_dskattr(targetcli, &bsize, &total, &avail)) {
+               d_printf("Error in dskattr: %s\n",cli_errstr(targetcli)); 
                return 1;
        }
 
@@ -248,34 +252,74 @@ static int do_cd(char *newdir)
        char *p = newdir;
        pstring saved_dir;
        pstring dname;
+       pstring targetpath;
+       struct cli_state *targetcli;
+       SMB_STRUCT_STAT sbuf;
+       uint32 attributes;
+       int ret = 1;
       
        dos_format(newdir);
 
-       /* Save the current directory in case the
-          new directory is invalid */
+       /* Save the current directory in case the new directory is invalid */
+
        pstrcpy(saved_dir, cur_dir);
+
        if (*p == '\\')
                pstrcpy(cur_dir,p);
        else
                pstrcat(cur_dir,p);
-       if (*(cur_dir+strlen(cur_dir)-1) != '\\') {
+
+       if ((cur_dir[0] != '\0') && (*(cur_dir+strlen(cur_dir)-1) != '\\')) {
                pstrcat(cur_dir, "\\");
        }
+       
        dos_clean_name(cur_dir);
-       pstrcpy(dname,cur_dir);
+       pstrcpy( dname, cur_dir );
        pstrcat(cur_dir,"\\");
        dos_clean_name(cur_dir);
        
-       if (!strequal(cur_dir,"\\")) {
-               if (!cli_chkpath(cli, dname)) {
-                       d_printf("cd %s: %s\n", dname, cli_errstr(cli));
+       if ( !cli_resolve_path( "", cli, dname, &targetcli, targetpath ) ) {
+               d_printf("cd %s: %s\n", dname, cli_errstr(cli));
+               pstrcpy(cur_dir,saved_dir);
+               goto out;
+       }
+
+       
+       if ( strequal(targetpath,"\\" ) )
+               return 0;   
+               
+       /* Use a trans2_qpathinfo to test directories for modern servers.
+          Except Win9x doesn't support the qpathinfo_basic() call..... */ 
+       
+       if ( targetcli->protocol >  PROTOCOL_LANMAN2 && !targetcli->win95 ) {
+               if ( !cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
+                       d_printf("cd %s: %s\n", dname, cli_errstr(targetcli));
+                       pstrcpy(cur_dir,saved_dir);
+                       goto out;
+               }
+               
+               if ( !(attributes&FILE_ATTRIBUTE_DIRECTORY) ) {
+                       d_printf("cd %s: not a directory\n", dname);
+                       pstrcpy(cur_dir,saved_dir);
+                       goto out;
+               }               
+       } else {
+               pstrcat( targetpath, "\\" );
+               dos_clean_name( targetpath );
+               
+               if ( !cli_chkpath(targetcli, targetpath) ) {
+                       d_printf("cd %s: %s\n", dname, cli_errstr(targetcli));
                        pstrcpy(cur_dir,saved_dir);
+                       goto out;
                }
        }
+
+       ret = 0;
+
+out:
        
        pstrcpy(cd_path,cur_dir);
-
-       return 0;
+       return ret;
 }
 
 /****************************************************************************
@@ -284,9 +328,9 @@ static int do_cd(char *newdir)
 
 static int cmd_cd(void)
 {
-       fstring buf;
+       pstring buf;
        int rc = 0;
-
+               
        if (next_token_nr(NULL,buf,NULL,sizeof(buf)))
                rc = do_cd(buf);
        else
@@ -335,7 +379,7 @@ static void display_finfo(file_info *finfo)
                         finfo->name,
                         attrib_string(finfo->mode),
                         (double)finfo->size,
-                        asctime(LocalTime(&t)));
+                        time_to_asc(&t));
                dir_total += finfo->size;
        }
 }
@@ -387,7 +431,7 @@ static void init_do_list_queue(void)
 {
        reset_do_list_queue();
        do_list_queue_size = 1024;
-       do_list_queue = malloc(do_list_queue_size);
+       do_list_queue = SMB_MALLOC(do_list_queue_size);
        if (do_list_queue == 0) { 
                d_printf("malloc fail for size %d\n",
                         (int)do_list_queue_size);
@@ -403,7 +447,14 @@ static void adjust_do_list_queue(void)
         * If the starting point of the queue is more than half way through,
         * move everything toward the beginning.
         */
-       if (do_list_queue && (do_list_queue_start == do_list_queue_end)) {
+
+       if (do_list_queue == NULL) {
+               DEBUG(4,("do_list_queue is empty\n"));
+               do_list_queue_start = do_list_queue_end = 0;
+               return;
+       }
+               
+       if (do_list_queue_start == do_list_queue_end) {
                DEBUG(4,("do_list_queue is empty\n"));
                do_list_queue_start = do_list_queue_end = 0;
                *do_list_queue = '\0';
@@ -419,19 +470,17 @@ static void adjust_do_list_queue(void)
 
 static void add_to_do_list_queue(const char* entry)
 {
-       char *dlq;
        long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
        while (new_end > do_list_queue_size) {
                do_list_queue_size *= 2;
                DEBUG(4,("enlarging do_list_queue to %d\n",
                         (int)do_list_queue_size));
-               dlq = Realloc(do_list_queue, do_list_queue_size);
-               if (! dlq) {
+               do_list_queue = SMB_REALLOC(do_list_queue, do_list_queue_size);
+               if (! do_list_queue) {
                        d_printf("failure enlarging do_list_queue to %d bytes\n",
                                 (int)do_list_queue_size);
                        reset_do_list_queue();
                } else {
-                       do_list_queue = dlq;
                        memset(do_list_queue + do_list_queue_size / 2,
                               0, do_list_queue_size / 2);
                }
@@ -469,8 +518,16 @@ static int do_list_queue_empty(void)
  A helper for do_list.
 ****************************************************************************/
 
-static void do_list_helper(file_info *f, const char *mask, void *state)
+static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
 {
+       char *dir_end;
+
+       /* save the directory */
+       pstrcpy( f->dir, mask );
+       if ( (dir_end = strrchr( f->dir, '\\' )) != NULL ) {
+               *dir_end = '\0';
+       }
+
        if (f->mode & aDIR) {
                if (do_list_dirs && do_this_one(f)) {
                        do_list_fn(f);
@@ -486,7 +543,8 @@ static void do_list_helper(file_info *f, const char *mask, void *state)
                                return;
                        }
 
-                       pstrcpy(mask2, mask);
+                       pstrcpy(mask2, mntpoint);
+                       pstrcat(mask2, mask);
                        p = strrchr_m(mask2,'\\');
                        if (!p)
                                return;
@@ -510,6 +568,8 @@ static void do_list_helper(file_info *f, const char *mask, void *state)
 void do_list(const char *mask,uint16 attribute,void (*fn)(file_info *),BOOL rec, BOOL dirs)
 {
        static int in_do_list = 0;
+       struct cli_state *targetcli;
+       pstring targetpath;
 
        if (in_do_list && rec) {
                fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
@@ -536,7 +596,16 @@ void do_list(const char *mask,uint16 attribute,void (*fn)(file_info *),BOOL rec,
                         */
                        pstring head;
                        pstrcpy(head, do_list_queue_head());
-                       cli_list(cli, head, attribute, do_list_helper, NULL);
+                       
+                       /* check for dfs */
+                       
+                       if ( !cli_resolve_path( "", cli, head, &targetcli, targetpath ) ) {
+                               d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
+                               remove_do_list_queue_head();
+                               continue;
+                       }
+                       
+                       cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
                        remove_do_list_queue_head();
                        if ((! do_list_queue_empty()) && (fn == display_finfo)) {
                                char* next_file = do_list_queue_head();
@@ -555,9 +624,15 @@ void do_list(const char *mask,uint16 attribute,void (*fn)(file_info *),BOOL rec,
                        }
                }
        } else {
-               if (cli_list(cli, mask, attribute, do_list_helper, NULL) == -1) {
-                       d_printf("%s listing %s\n", cli_errstr(cli), mask);
+               /* check for dfs */
+                       
+               if ( cli_resolve_path( "", cli, mask, &targetcli, targetpath ) ) {
+                       if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) 
+                               d_printf("%s listing %s\n", cli_errstr(targetcli), targetpath);
                }
+               else
+                       d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
+               
        }
 
        in_do_list = 0;
@@ -572,19 +647,23 @@ static int cmd_dir(void)
 {
        uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
        pstring mask;
-       fstring buf;
+       pstring buf;
        char *p=buf;
        int rc;
        
        dir_total = 0;
-       pstrcpy(mask,cur_dir);
-       if(mask[strlen(mask)-1]!='\\')
-               pstrcat(mask,"\\");
+       if (strcmp(cur_dir, "\\") != 0) {
+               pstrcpy(mask,cur_dir);
+               if ((mask[0] != '\0') && (mask[strlen(mask)-1]!='\\'))
+                       pstrcat(mask,"\\");
+       } else {
+               pstrcpy(mask, "\\");
+       }
        
        if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
                dos_format(p);
                if (*p == '\\')
-                       pstrcpy(mask,p);
+                       pstrcpy(mask,p + 1);
                else
                        pstrcat(mask,p);
        } else {
@@ -608,13 +687,13 @@ static int cmd_du(void)
 {
        uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
        pstring mask;
-       fstring buf;
+       pstring buf;
        char *p=buf;
        int rc;
        
        dir_total = 0;
        pstrcpy(mask,cur_dir);
-       if(mask[strlen(mask)-1]!='\\')
+       if ((mask[0] != '\0') && (mask[strlen(mask)-1]!='\\'))
                pstrcat(mask,"\\");
        
        if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
@@ -648,18 +727,37 @@ static int do_get(char *rname, char *lname, BOOL reget)
        struct timeval tp_start;
        int read_size = io_bufsize;
        uint16 attr;
-       size_t size;
+       SMB_OFF_T size;
        off_t start = 0;
        off_t nread = 0;
        int rc = 0;
+       struct cli_state *targetcli;
+       pstring targetname;
 
-       GetTimeOfDay(&tp_start);
 
        if (lowercase) {
                strlower_m(lname);
        }
 
-       fnum = cli_open(cli, rname, O_RDONLY, DENY_NONE);
+       if ( !cli_resolve_path( "", cli, rname, &targetcli, targetname ) ) {
+               d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
+               return 1;
+       }
+
+       GetTimeOfDay(&tp_start);
+       
+       if ( targetcli->dfsroot ) {
+               pstring path;
+
+               /* we need to refer to the full \server\share\path format 
+                  for dfs shares */
+
+               pstrcpy( path, targetname );
+               cli_dfs_make_full_path( targetname, targetcli->desthost, 
+                       targetcli->share, path);
+       }
+
+       fnum = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE);
 
        if (fnum == -1) {
                d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
@@ -689,25 +787,25 @@ static int do_get(char *rname, char *lname, BOOL reget)
        }
 
 
-       if (!cli_qfileinfo(cli, fnum, 
+       if (!cli_qfileinfo(targetcli, fnum, 
                           &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
-           !cli_getattrE(cli, fnum, 
+           !cli_getattrE(targetcli, fnum, 
                          &attr, &size, NULL, NULL, NULL)) {
-               d_printf("getattrib: %s\n",cli_errstr(cli));
+               d_printf("getattrib: %s\n",cli_errstr(targetcli));
                return 1;
        }
 
-       DEBUG(2,("getting file %s of size %.0f as %s ", 
+       DEBUG(1,("getting file %s of size %.0f as %s ", 
                 rname, (double)size, lname));
 
-       if(!(data = (char *)malloc(read_size))) { 
+       if(!(data = (char *)SMB_MALLOC(read_size))) { 
                d_printf("malloc fail for size %d\n", read_size);
-               cli_close(cli, fnum);
+               cli_close(targetcli, fnum);
                return 1;
        }
 
        while (1) {
-               int n = cli_read(cli, fnum, data, nread + start, read_size);
+               int n = cli_read(targetcli, fnum, data, nread + start, read_size);
 
                if (n <= 0)
                        break;
@@ -730,7 +828,7 @@ static int do_get(char *rname, char *lname, BOOL reget)
 
        SAFE_FREE(data);
        
-       if (!cli_close(cli, fnum)) {
+       if (!cli_close(targetcli, fnum)) {
                d_printf("Error %s closing remote file\n",cli_errstr(cli));
                rc = 1;
        }
@@ -754,7 +852,7 @@ static int do_get(char *rname, char *lname, BOOL reget)
                get_total_time_ms += this_time;
                get_total_size += nread;
                
-               DEBUG(2,("(%3.1f kb/s) (average %3.1f kb/s)\n",
+               DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
                         nread / (1.024*this_time + 1.0e-4),
                         get_total_size / (1.024*get_total_time_ms)));
        }
@@ -862,13 +960,13 @@ static void do_mget(file_info *finfo)
 
 static int cmd_more(void)
 {
-       fstring rname,lname,pager_cmd;
+       pstring rname,lname,pager_cmd;
        char *pager;
        int fd;
        int rc = 0;
 
-       fstrcpy(rname,cur_dir);
-       fstrcat(rname,"\\");
+       pstrcpy(rname,cur_dir);
+       pstrcat(rname,"\\");
        
        slprintf(lname,sizeof(lname)-1, "%s/smbmore.XXXXXX",tmpdir());
        fd = smb_mkstemp(lname);
@@ -905,7 +1003,7 @@ static int cmd_mget(void)
 {
        uint16 attribute = aSYSTEM | aHIDDEN;
        pstring mget_mask;
-       fstring buf;
+       pstring buf;
        char *p=buf;
 
        *mget_mask = 0;
@@ -917,7 +1015,7 @@ static int cmd_mget(void)
 
        while (next_token_nr(NULL,p,NULL,sizeof(buf))) {
                pstrcpy(mget_mask,cur_dir);
-               if(mget_mask[strlen(mget_mask)-1]!='\\')
+               if ((mget_mask[0] != '\0') && (mget_mask[strlen(mget_mask)-1]!='\\'))
                        pstrcat(mget_mask,"\\");
                
                if (*p == '\\')
@@ -944,9 +1042,17 @@ static int cmd_mget(void)
 
 static BOOL do_mkdir(char *name)
 {
-       if (!cli_mkdir(cli, name)) {
+       struct cli_state *targetcli;
+       pstring targetname;
+       
+       if ( !cli_resolve_path( "", cli, name, &targetcli, targetname ) ) {
+               d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
+               return False;
+       }
+
+       if (!cli_mkdir(targetcli, targetname)) {
                d_printf("%s making remote directory %s\n",
-                        cli_errstr(cli),name);
+                        cli_errstr(targetcli),name);
                return(False);
        }
 
@@ -959,7 +1065,7 @@ static BOOL do_mkdir(char *name)
 
 static BOOL do_altname(char *name)
 {
-       fstring altname;
+       pstring altname;
        if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
                d_printf("%s getting alt name for %s\n",
                         cli_errstr(cli),name);
@@ -976,7 +1082,7 @@ static BOOL do_altname(char *name)
 
 static int cmd_quit(void)
 {
-       cli_shutdown(cli);
+       cli_cm_shutdown();
        exit(0);
        /* NOTREACHED */
        return 0;
@@ -989,7 +1095,7 @@ static int cmd_quit(void)
 static int cmd_mkdir(void)
 {
        pstring mask;
-       fstring buf;
+       pstring buf;
        char *p=buf;
   
        pstrcpy(mask,cur_dir);
@@ -1031,7 +1137,7 @@ static int cmd_mkdir(void)
 static int cmd_altname(void)
 {
        pstring name;
-       fstring buf;
+       pstring buf;
        char *p=buf;
   
        pstrcpy(name,cur_dir);
@@ -1055,30 +1161,37 @@ static int do_put(char *rname, char *lname, BOOL reput)
 {
        int fnum;
        XFILE *f;
-       size_t start = 0;
+       SMB_OFF_T start = 0;
        off_t nread = 0;
        char *buf = NULL;
        int maxwrite = io_bufsize;
        int rc = 0;
-       
        struct timeval tp_start;
+       struct cli_state *targetcli;
+       pstring targetname;
+       
+       if ( !cli_resolve_path( "", cli, rname, &targetcli, targetname ) ) {
+               d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
+               return 1;
+       }
+       
        GetTimeOfDay(&tp_start);
 
        if (reput) {
-               fnum = cli_open(cli, rname, O_RDWR|O_CREAT, DENY_NONE);
+               fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE);
                if (fnum >= 0) {
-                       if (!cli_qfileinfo(cli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
-                           !cli_getattrE(cli, fnum, NULL, &start, NULL, NULL, NULL)) {
+                       if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
+                           !cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL)) {
                                d_printf("getattrib: %s\n",cli_errstr(cli));
                                return 1;
                        }
                }
        } else {
-               fnum = cli_open(cli, rname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
+               fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
        }
   
        if (fnum == -1) {
-               d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
+               d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
                return 1;
        }
 
@@ -1108,7 +1221,7 @@ static int do_put(char *rname, char *lname, BOOL reput)
        DEBUG(1,("putting file %s as %s ",lname,
                 rname));
   
-       buf = (char *)malloc(maxwrite);
+       buf = (char *)SMB_MALLOC(maxwrite);
        if (!buf) {
                d_printf("ERROR: Not enough memory!\n");
                return 1;
@@ -1126,7 +1239,7 @@ static int do_put(char *rname, char *lname, BOOL reput)
                        break;
                }
 
-               ret = cli_write(cli, fnum, 0, buf, nread + start, n);
+               ret = cli_write(targetcli, fnum, 0, buf, nread + start, n);
 
                if (n != ret) {
                        d_printf("Error writing file: %s\n", cli_errstr(cli));
@@ -1137,7 +1250,7 @@ static int do_put(char *rname, char *lname, BOOL reput)
                nread += n;
        }
 
-       if (!cli_close(cli, fnum)) {
+       if (!cli_close(targetcli, fnum)) {
                d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
                x_fclose(f);
                SAFE_FREE(buf);
@@ -1168,7 +1281,7 @@ static int do_put(char *rname, char *lname, BOOL reput)
        }
 
        if (f == x_stdin) {
-               cli_shutdown(cli);
+               cli_cm_shutdown();
                exit(0);
        }
        
@@ -1183,7 +1296,7 @@ static int cmd_put(void)
 {
        pstring lname;
        pstring rname;
-       fstring buf;
+       pstring buf;
        char *p=buf;
        
        pstrcpy(rname,cur_dir);
@@ -1230,15 +1343,15 @@ static struct file_list {
  Free a file_list structure.
 ****************************************************************************/
 
-static void free_file_list (struct file_list * list)
+static void free_file_list (struct file_list *list_head)
 {
-       struct file_list *tmp;
+       struct file_list *list, *next;
        
-       while (list) {
-               tmp = list;
-               DLIST_REMOVE(list, list);
-               SAFE_FREE(tmp->file_path);
-               SAFE_FREE(tmp);
+       for (list = list_head; list; list = next) {
+               next = list->next;
+               DLIST_REMOVE(list_head, list);
+               SAFE_FREE(list->file_path);
+               SAFE_FREE(list);
        }
 }
 
@@ -1280,7 +1393,7 @@ static int cmd_select(void)
 static int file_find(struct file_list **list, const char *directory, 
                      const char *expression, BOOL match)
 {
-       DIR *dir;
+       SMB_STRUCT_DIR *dir;
        struct file_list *entry;
         struct stat statbuf;
         int ret;
@@ -1288,7 +1401,7 @@ static int file_find(struct file_list **list, const char *directory,
        BOOL isdir;
        const char *dname;
 
-        dir = opendir(directory);
+        dir = sys_opendir(directory);
        if (!dir)
                return -1;
        
@@ -1317,14 +1430,14 @@ static int file_find(struct file_list **list, const char *directory,
                                
                                if (ret == -1) {
                                        SAFE_FREE(path);
-                                       closedir(dir);
+                                       sys_closedir(dir);
                                        return -1;
                                }
                        }
-                       entry = (struct file_list *) malloc(sizeof (struct file_list));
+                       entry = SMB_MALLOC_P(struct file_list);
                        if (!entry) {
                                d_printf("Out of memory in file_find\n");
-                               closedir(dir);
+                               sys_closedir(dir);
                                return -1;
                        }
                        entry->file_path = path;
@@ -1335,7 +1448,7 @@ static int file_find(struct file_list **list, const char *directory,
                }
         }
 
-       closedir(dir);
+       sys_closedir(dir);
        return 0;
 }
 
@@ -1345,7 +1458,7 @@ static int file_find(struct file_list **list, const char *directory,
 
 static int cmd_mput(void)
 {
-       fstring buf;
+       pstring buf;
        char *p=buf;
        
        while (next_token_nr(NULL,p,NULL,sizeof(buf))) {
@@ -1443,7 +1556,7 @@ static int do_cancel(int job)
 
 static int cmd_cancel(void)
 {
-       fstring buf;
+       pstring buf;
        int job; 
 
        if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
@@ -1514,8 +1627,7 @@ static void do_del(file_info *finfo)
 {
        pstring mask;
 
-       pstrcpy(mask,cur_dir);
-       pstrcat(mask,finfo->name);
+       pstr_sprintf( mask, "%s\\%s", finfo->dir, finfo->name );
 
        if (finfo->mode & aDIR) 
                return;
@@ -1532,7 +1644,7 @@ static void do_del(file_info *finfo)
 static int cmd_del(void)
 {
        pstring mask;
-       fstring buf;
+       pstring buf;
        uint16 attribute = aSYSTEM | aHIDDEN;
 
        if (recurse)
@@ -1557,7 +1669,9 @@ static int cmd_del(void)
 static int cmd_open(void)
 {
        pstring mask;
-       fstring buf;
+       pstring buf;
+       struct cli_state *targetcli;
+       pstring targetname;
        
        pstrcpy(mask,cur_dir);
        
@@ -1567,7 +1681,12 @@ static int cmd_open(void)
        }
        pstrcat(mask,buf);
 
-       cli_open(cli, mask, O_RDWR, DENY_ALL);
+       if ( !cli_resolve_path( "", cli, mask, &targetcli, targetname ) ) {
+               d_printf("open %s: %s\n", mask, cli_errstr(cli));
+               return 1;
+       }
+       
+       cli_nt_create(targetcli, targetname, FILE_READ_DATA);
 
        return 0;
 }
@@ -1580,7 +1699,9 @@ static int cmd_open(void)
 static int cmd_rmdir(void)
 {
        pstring mask;
-       fstring buf;
+       pstring buf;
+       struct cli_state *targetcli;
+       pstring targetname;
   
        pstrcpy(mask,cur_dir);
        
@@ -1590,9 +1711,14 @@ static int cmd_rmdir(void)
        }
        pstrcat(mask,buf);
 
-       if (!cli_rmdir(cli, mask)) {
+       if ( !cli_resolve_path( "", cli, mask, &targetcli, targetname ) ) {
+               d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
+               return 1;
+       }
+       
+       if (!cli_rmdir(targetcli, targetname)) {
                d_printf("%s removing remote directory file %s\n",
-                        cli_errstr(cli),mask);
+                        cli_errstr(targetcli),mask);
        }
        
        return 0;
@@ -1604,28 +1730,35 @@ static int cmd_rmdir(void)
 
 static int cmd_link(void)
 {
-       pstring src,dest;
-       fstring buf,buf2;
+       pstring oldname,newname;
+       pstring buf,buf2;
+       struct cli_state *targetcli;
+       pstring targetname;
   
-       if (!SERVER_HAS_UNIX_CIFS(cli)) {
-               d_printf("Server doesn't support UNIX CIFS calls.\n");
-               return 1;
-       }
-
-       pstrcpy(src,cur_dir);
-       pstrcpy(dest,cur_dir);
+       pstrcpy(oldname,cur_dir);
+       pstrcpy(newname,cur_dir);
   
        if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) || 
            !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
-               d_printf("link <src> <dest>\n");
+               d_printf("link <oldname> <newname>\n");
                return 1;
        }
 
-       pstrcat(src,buf);
-       pstrcat(dest,buf2);
+       pstrcat(oldname,buf);
+       pstrcat(newname,buf2);
 
-       if (!cli_unix_hardlink(cli, src, dest)) {
-               d_printf("%s linking files (%s -> %s)\n", cli_errstr(cli), src, dest);
+       if ( !cli_resolve_path( "", cli, oldname, &targetcli, targetname ) ) {
+               d_printf("link %s: %s\n", oldname, cli_errstr(cli));
+               return 1;
+       }
+       
+       if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
+               d_printf("Server doesn't support UNIX CIFS calls.\n");
+               return 1;
+       }
+       
+       if (!cli_unix_hardlink(targetcli, targetname, newname)) {
+               d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
                return 1;
        }  
 
@@ -1638,29 +1771,28 @@ static int cmd_link(void)
 
 static int cmd_symlink(void)
 {
-       pstring src,dest;
-       fstring buf,buf2;
+       pstring oldname,newname;
+       pstring buf,buf2;
   
        if (!SERVER_HAS_UNIX_CIFS(cli)) {
                d_printf("Server doesn't support UNIX CIFS calls.\n");
                return 1;
        }
 
-       pstrcpy(src,cur_dir);
-       pstrcpy(dest,cur_dir);
+       pstrcpy(newname,cur_dir);
        
        if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) || 
            !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
-               d_printf("symlink <src> <dest>\n");
+               d_printf("symlink <oldname> <newname>\n");
                return 1;
        }
 
-       pstrcat(src,buf);
-       pstrcat(dest,buf2);
+       pstrcpy(oldname,buf);
+       pstrcat(newname,buf2);
 
-       if (!cli_unix_symlink(cli, src, dest)) {
+       if (!cli_unix_symlink(cli, oldname, newname)) {
                d_printf("%s symlinking files (%s -> %s)\n",
-                       cli_errstr(cli), src, dest);
+                       cli_errstr(cli), newname, oldname);
                return 1;
        } 
 
@@ -1675,13 +1807,10 @@ static int cmd_chmod(void)
 {
        pstring src;
        mode_t mode;
-       fstring buf, buf2;
+       pstring buf, buf2;
+       struct cli_state *targetcli;
+       pstring targetname;
   
-       if (!SERVER_HAS_UNIX_CIFS(cli)) {
-               d_printf("Server doesn't support UNIX CIFS calls.\n");
-               return 1;
-       }
-
        pstrcpy(src,cur_dir);
        
        if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) || 
@@ -1693,15 +1822,385 @@ static int cmd_chmod(void)
        mode = (mode_t)strtol(buf, NULL, 8);
        pstrcat(src,buf2);
 
-       if (!cli_unix_chmod(cli, src, mode)) {
+       if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
+               d_printf("chmod %s: %s\n", src, cli_errstr(cli));
+               return 1;
+       }
+       
+       if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
+               d_printf("Server doesn't support UNIX CIFS calls.\n");
+               return 1;
+       }
+       
+       if (!cli_unix_chmod(targetcli, targetname, mode)) {
                d_printf("%s chmod file %s 0%o\n",
-                       cli_errstr(cli), src, (unsigned int)mode);
+                       cli_errstr(targetcli), src, (unsigned int)mode);
+               return 1;
+       } 
+
+       return 0;
+}
+
+static const char *filetype_to_str(mode_t mode)
+{
+       if (S_ISREG(mode)) {
+               return "regular file";
+       } else if (S_ISDIR(mode)) {
+               return "directory";
+       } else 
+#ifdef S_ISCHR
+       if (S_ISCHR(mode)) {
+               return "character device";
+       } else
+#endif
+#ifdef S_ISBLK
+       if (S_ISBLK(mode)) {
+               return "block device";
+       } else
+#endif
+#ifdef S_ISFIFO
+       if (S_ISFIFO(mode)) {
+               return "fifo";
+       } else
+#endif
+#ifdef S_ISLNK
+       if (S_ISLNK(mode)) {
+               return "symbolic link";
+       } else
+#endif
+#ifdef S_ISSOCK
+       if (S_ISSOCK(mode)) {
+               return "socket";
+       } else
+#endif
+       return "";
+}
+
+static char rwx_to_str(mode_t m, mode_t bt, char ret)
+{
+       if (m & bt) {
+               return ret;
+       } else {
+               return '-';
+       }
+}
+
+static char *unix_mode_to_str(char *s, mode_t m)
+{
+       char *p = s;
+       const char *str = filetype_to_str(m);
+
+       switch(str[0]) {
+               case 'd':
+                       *p++ = 'd';
+                       break;
+               case 'c':
+                       *p++ = 'c';
+                       break;
+               case 'b':
+                       *p++ = 'b';
+                       break;
+               case 'f':
+                       *p++ = 'p';
+                       break;
+               case 's':
+                       *p++ = str[1] == 'y' ? 'l' : 's';
+                       break;
+               case 'r':
+               default:
+                       *p++ = '-';
+                       break;
+       }
+       *p++ = rwx_to_str(m, S_IRUSR, 'r');
+       *p++ = rwx_to_str(m, S_IWUSR, 'w');
+       *p++ = rwx_to_str(m, S_IXUSR, 'x');
+       *p++ = rwx_to_str(m, S_IRGRP, 'r');
+       *p++ = rwx_to_str(m, S_IWGRP, 'w');
+       *p++ = rwx_to_str(m, S_IXGRP, 'x');
+       *p++ = rwx_to_str(m, S_IROTH, 'r');
+       *p++ = rwx_to_str(m, S_IWOTH, 'w');
+       *p++ = rwx_to_str(m, S_IXOTH, 'x');
+       *p++ = '\0';
+       return s;
+}
+
+/****************************************************************************
+ Utility function for UNIX getfacl.
+****************************************************************************/
+
+static char *perms_to_string(fstring permstr, unsigned char perms)
+{
+       fstrcpy(permstr, "---");
+       if (perms & SMB_POSIX_ACL_READ) {
+               permstr[0] = 'r';
+       }
+       if (perms & SMB_POSIX_ACL_WRITE) {
+               permstr[1] = 'w';
+       }
+       if (perms & SMB_POSIX_ACL_EXECUTE) {
+               permstr[2] = 'x';
+       }
+       return permstr;
+}
+
+/****************************************************************************
+ UNIX getfacl.
+****************************************************************************/
+
+static int cmd_getfacl(void)
+{
+       pstring src, name;
+       uint16 major, minor;
+       uint32 caplow, caphigh;
+       char *retbuf = NULL;
+       size_t rb_size = 0;
+       SMB_STRUCT_STAT sbuf;
+       uint16 num_file_acls = 0;
+       uint16 num_dir_acls = 0;
+       uint16 i;
+       struct cli_state *targetcli;
+       pstring targetname;
+       pstrcpy(src,cur_dir);
+       
+       if (!next_token_nr(NULL,name,NULL,sizeof(name))) {
+               d_printf("stat file\n");
+               return 1;
+       }
+
+       pstrcat(src,name);
+       
+       if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
+               d_printf("stat %s: %s\n", src, cli_errstr(cli));
+               return 1;
+       }
+       
+       if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
+               d_printf("Server doesn't support UNIX CIFS calls.\n");
+               return 1;
+       }
+       
+       if (!cli_unix_extensions_version(targetcli, &major, &minor, &caplow, &caphigh)) {
+               d_printf("Can't get UNIX CIFS version from server.\n");
+               return 1;
+       }
+
+       if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
+               d_printf("This server supports UNIX extensions but doesn't support POSIX ACLs.\n");
+               return 1;
+       }
+
+
+       if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
+               d_printf("%s getfacl doing a stat on file %s\n",
+                       cli_errstr(targetcli), src);
                return 1;
        } 
 
+       if (!cli_unix_getfacl(targetcli, targetname, &rb_size, &retbuf)) {
+               d_printf("%s getfacl file %s\n",
+                       cli_errstr(targetcli), src);
+               return 1;
+       } 
+
+       /* ToDo : Print out the ACL values. */
+       if (SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION || rb_size < 6) {
+               d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
+                       src, (unsigned int)CVAL(retbuf,0) );
+               SAFE_FREE(retbuf);
+               return 1;
+       }
+
+       num_file_acls = SVAL(retbuf,2);
+       num_dir_acls = SVAL(retbuf,4);
+       if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
+               d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
+                       src,
+                       (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
+                       (unsigned int)rb_size);
+
+               SAFE_FREE(retbuf);
+               return 1;
+       }
+
+       d_printf("# file: %s\n", src);
+       d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_uid, (unsigned int)sbuf.st_gid);
+
+       if (num_file_acls == 0 && num_dir_acls == 0) {
+               d_printf("No acls found.\n");
+       }
+
+       for (i = 0; i < num_file_acls; i++) {
+               uint32 uorg;
+               fstring permstring;
+               unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
+               unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
+
+               switch(tagtype) {
+                       case SMB_POSIX_ACL_USER_OBJ:
+                               d_printf("user::");
+                               break;
+                       case SMB_POSIX_ACL_USER:
+                               uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
+                               d_printf("user:%u:", uorg);
+                               break;
+                       case SMB_POSIX_ACL_GROUP_OBJ:
+                               d_printf("group::");
+                               break;
+                       case SMB_POSIX_ACL_GROUP:
+                               uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
+                               d_printf("group:%u", uorg);
+                               break;
+                       case SMB_POSIX_ACL_MASK:
+                               d_printf("mask::");
+                               break;
+                       case SMB_POSIX_ACL_OTHER:
+                               d_printf("other::");
+                               break;
+                       default:
+                               d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
+                                       src, (unsigned int)tagtype );
+                               SAFE_FREE(retbuf);
+                               return 1;
+               }
+
+               d_printf("%s\n", perms_to_string(permstring, perms));
+       }
+
+       for (i = 0; i < num_dir_acls; i++) {
+               uint32 uorg;
+               fstring permstring;
+               unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
+               unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
+
+               switch(tagtype) {
+                       case SMB_POSIX_ACL_USER_OBJ:
+                               d_printf("default:user::");
+                               break;
+                       case SMB_POSIX_ACL_USER:
+                               uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
+                               d_printf("default:user:%u:", uorg);
+                               break;
+                       case SMB_POSIX_ACL_GROUP_OBJ:
+                               d_printf("default:group::");
+                               break;
+                       case SMB_POSIX_ACL_GROUP:
+                               uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
+                               d_printf("default:group:%u", uorg);
+                               break;
+                       case SMB_POSIX_ACL_MASK:
+                               d_printf("default:mask::");
+                               break;
+                       case SMB_POSIX_ACL_OTHER:
+                               d_printf("default:other::");
+                               break;
+                       default:
+                               d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
+                                       src, (unsigned int)tagtype );
+                               SAFE_FREE(retbuf);
+                               return 1;
+               }
+
+               d_printf("%s\n", perms_to_string(permstring, perms));
+       }
+
+       SAFE_FREE(retbuf);
        return 0;
 }
 
+/****************************************************************************
+ UNIX stat.
+****************************************************************************/
+
+static int cmd_stat(void)
+{
+       pstring src, name;
+       fstring mode_str;
+       SMB_STRUCT_STAT sbuf;
+       struct cli_state *targetcli;
+       struct tm *lt;
+       pstring targetname;
+       if (!SERVER_HAS_UNIX_CIFS(cli)) {
+               d_printf("Server doesn't support UNIX CIFS calls.\n");
+               return 1;
+       }
+
+       pstrcpy(src,cur_dir);
+       
+       if (!next_token_nr(NULL,name,NULL,sizeof(name))) {
+               d_printf("stat file\n");
+               return 1;
+       }
+
+       pstrcat(src,name);
+
+       
+       if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
+               d_printf("stat %s: %s\n", src, cli_errstr(cli));
+               return 1;
+       }
+       
+       if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
+               d_printf("%s stat file %s\n",
+                       cli_errstr(targetcli), src);
+               return 1;
+       } 
+
+       /* Print out the stat values. */
+       d_printf("File: %s\n", src);
+       d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
+               (double)sbuf.st_size,
+               (unsigned int)sbuf.st_blocks,
+               filetype_to_str(sbuf.st_mode));
+
+#if defined(S_ISCHR) && defined(S_ISBLK)
+       if (S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode)) {
+               d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
+                       (double)sbuf.st_ino,
+                       (unsigned int)sbuf.st_nlink,
+                       unix_dev_major(sbuf.st_rdev),
+                       unix_dev_minor(sbuf.st_rdev));
+       } else 
+#endif
+               d_printf("Inode: %.0f\tLinks: %u\n",
+                       (double)sbuf.st_ino,
+                       (unsigned int)sbuf.st_nlink);
+
+       d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
+               ((int)sbuf.st_mode & 0777),
+               unix_mode_to_str(mode_str, sbuf.st_mode),
+               (unsigned int)sbuf.st_uid, 
+               (unsigned int)sbuf.st_gid);
+
+       lt = localtime(&sbuf.st_atime);
+       if (lt) {
+               strftime(mode_str, sizeof(mode_str), "%F %T %z", lt);
+       } else {
+               fstrcpy(mode_str, "unknown");
+       }
+       d_printf("Access: %s\n", mode_str);
+
+       lt = localtime(&sbuf.st_mtime);
+       if (lt) {
+               strftime(mode_str, sizeof(mode_str), "%F %T %z", lt);
+       } else {
+               fstrcpy(mode_str, "unknown");
+       }
+       d_printf("Modify: %s\n", mode_str);
+
+       lt = localtime(&sbuf.st_ctime);
+       if (lt) {
+               strftime(mode_str, sizeof(mode_str), "%F %T %z", lt);
+       } else {
+               fstrcpy(mode_str, "unknown");
+       }
+       d_printf("Change: %s\n", mode_str);
+       
+       return 0;
+}
+
+
 /****************************************************************************
  UNIX chown.
 ****************************************************************************/
@@ -1711,13 +2210,10 @@ static int cmd_chown(void)
        pstring src;
        uid_t uid;
        gid_t gid;
-       fstring buf, buf2, buf3;
+       pstring buf, buf2, buf3;
+       struct cli_state *targetcli;
+       pstring targetname;
   
-       if (!SERVER_HAS_UNIX_CIFS(cli)) {
-               d_printf("Server doesn't support UNIX CIFS calls.\n");
-               return 1;
-       }
-
        pstrcpy(src,cur_dir);
        
        if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) || 
@@ -1731,9 +2227,20 @@ static int cmd_chown(void)
        gid = (gid_t)atoi(buf2);
        pstrcat(src,buf3);
 
-       if (!cli_unix_chown(cli, src, uid, gid)) {
+       if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
+               d_printf("chown %s: %s\n", src, cli_errstr(cli));
+               return 1;
+       }
+
+
+       if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
+               d_printf("Server doesn't support UNIX CIFS calls.\n");
+               return 1;
+       }
+       
+       if (!cli_unix_chown(targetcli, targetname, uid, gid)) {
                d_printf("%s chown file %s uid=%d, gid=%d\n",
-                       cli_errstr(cli), src, (int)uid, (int)gid);
+                       cli_errstr(targetcli), src, (int)uid, (int)gid);
                return 1;
        } 
 
@@ -1747,7 +2254,7 @@ static int cmd_chown(void)
 static int cmd_rename(void)
 {
        pstring src,dest;
-       fstring buf,buf2;
+       pstring buf,buf2;
   
        pstrcpy(src,cur_dir);
        pstrcpy(dest,cur_dir);
@@ -1769,6 +2276,66 @@ static int cmd_rename(void)
        return 0;
 }
 
+/****************************************************************************
+ Print the volume name.
+****************************************************************************/
+
+static int cmd_volume(void)
+{
+       fstring volname;
+       uint32 serial_num;
+       time_t create_date;
+  
+       if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
+               d_printf("Errr %s getting volume info\n",cli_errstr(cli));
+               return 1;
+       }
+       
+       d_printf("Volume: |%s| serial number 0x%x\n", volname, (unsigned int)serial_num);
+       return 0;
+}
+
+/****************************************************************************
+ Hard link files using the NT call.
+****************************************************************************/
+
+static int cmd_hardlink(void)
+{
+       pstring src,dest;
+       pstring buf,buf2;
+       struct cli_state *targetcli;
+       pstring targetname;
+  
+       pstrcpy(src,cur_dir);
+       pstrcpy(dest,cur_dir);
+       
+       if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) || 
+           !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
+               d_printf("hardlink <src> <dest>\n");
+               return 1;
+       }
+
+       pstrcat(src,buf);
+       pstrcat(dest,buf2);
+
+       if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
+               d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
+               return 1;
+       }
+       
+       if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
+               d_printf("Server doesn't support UNIX CIFS calls.\n");
+               return 1;
+       }
+       
+       if (!cli_nt_hardlink(targetcli, targetname, dest)) {
+               d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
+               return 1;
+       }
+       
+       return 0;
+}
+
 /****************************************************************************
  Toggle the prompt flag.
 ****************************************************************************/
@@ -1787,7 +2354,7 @@ static int cmd_prompt(void)
 
 static int cmd_newer(void)
 {
-       fstring buf;
+       pstring buf;
        BOOL ok;
        SMB_STRUCT_STAT sbuf;
 
@@ -1795,7 +2362,7 @@ static int cmd_newer(void)
        if (ok && (sys_stat(buf,&sbuf) == 0)) {
                newer_than = sbuf.st_mtime;
                DEBUG(1,("Getting files newer than %s",
-                        asctime(LocalTime(&newer_than))));
+                        time_to_asc(&newer_than)));
        } else {
                newer_than = 0;
        }
@@ -1814,7 +2381,7 @@ static int cmd_newer(void)
 
 static int cmd_archive(void)
 {
-       fstring buf;
+       pstring buf;
 
        if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
                archive_level = atoi(buf);
@@ -1836,6 +2403,21 @@ static int cmd_lowercase(void)
        return 0;
 }
 
+/****************************************************************************
+ Toggle the case sensitive flag.
+****************************************************************************/
+
+static int cmd_setcase(void)
+{
+       BOOL orig_case_sensitive = cli_set_case_sensitive(cli, False);
+
+       cli_set_case_sensitive(cli, !orig_case_sensitive);
+       DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
+               "on":"off"));
+
+       return 0;
+}
+
 /****************************************************************************
  Toggle the recurse flag.
 ****************************************************************************/
@@ -1861,50 +2443,13 @@ static int cmd_translate(void)
        return 0;
 }
 
-/****************************************************************************
- Do a printmode command.
-****************************************************************************/
-
-static int cmd_printmode(void)
-{
-       fstring buf;
-       fstring mode;
-
-       if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
-               if (strequal(buf,"text")) {
-                       printmode = 0;      
-               } else {
-                       if (strequal(buf,"graphics"))
-                               printmode = 1;
-                       else
-                               printmode = atoi(buf);
-               }
-       }
-
-       switch(printmode) {
-               case 0: 
-                       fstrcpy(mode,"text");
-                       break;
-               case 1: 
-                       fstrcpy(mode,"graphics");
-                       break;
-               default: 
-                       slprintf(mode,sizeof(mode)-1,"%d",printmode);
-                       break;
-       }
-       
-       DEBUG(2,("the printmode is now %s\n",mode));
-
-       return 0;
-}
-
 /****************************************************************************
  Do the lcd command.
  ****************************************************************************/
 
 static int cmd_lcd(void)
 {
-       fstring buf;
+       pstring buf;
        pstring d;
        
        if (next_token_nr(NULL,buf,NULL,sizeof(buf)))
@@ -1949,7 +2494,7 @@ static int cmd_reput(void)
 {
        pstring local_name;
        pstring remote_name;
-       fstring buf;
+       pstring buf;
        char *p = buf;
        SMB_STRUCT_STAT st;
        
@@ -1988,7 +2533,7 @@ static void browse_fn(const char *name, uint32 m,
 
         *typestr=0;
 
-        switch (m)
+        switch (m & 7)
         {
           case STYPE_DISKTREE:
             fstrcpy(typestr,"Disk"); break;
@@ -2003,13 +2548,64 @@ static void browse_fn(const char *name, uint32 m,
           in any of these fields, they can corrupt the output.  We
           should remove them. */
        if (!grepable) {
-               d_printf("\t%-15.15s%-10.10s%s\n",
+               d_printf("\t%-15%-10.10s%s\n",
                                name,typestr,comment);
        } else {
                d_printf ("%s|%s|%s\n",typestr,name,comment);
        }
 }
 
+static BOOL browse_host_rpc(BOOL sort)
+{
+       NTSTATUS status;
+       struct rpc_pipe_client *pipe_hnd;
+       TALLOC_CTX *mem_ctx;
+       ENUM_HND enum_hnd;
+       WERROR werr;
+       SRV_SHARE_INFO_CTR ctr;
+       int i;
+
+       mem_ctx = talloc_new(NULL);
+       if (mem_ctx == NULL) {
+               DEBUG(0, ("talloc_new failed\n"));
+               return False;
+       }
+
+       init_enum_hnd(&enum_hnd, 0);
+
+       pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_SRVSVC, &status);
+
+       if (pipe_hnd == NULL) {
+               DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
+                          nt_errstr(status)));
+               TALLOC_FREE(mem_ctx);
+               return False;
+       }
+
+       werr = rpccli_srvsvc_net_share_enum(pipe_hnd, mem_ctx, 1, &ctr,
+                                           0xffffffff, &enum_hnd);
+
+       if (!W_ERROR_IS_OK(werr)) {
+               TALLOC_FREE(mem_ctx);
+               cli_rpc_pipe_close(pipe_hnd);
+               return False;
+       }
+
+       for (i=0; i<ctr.num_entries; i++) {
+               SRV_SHARE_INFO_1 *info = &ctr.share.info1[i];
+               char *name, *comment;
+               name = rpcstr_pull_unistr2_talloc(
+                       mem_ctx, &info->info_1_str.uni_netname);
+               comment = rpcstr_pull_unistr2_talloc(
+                       mem_ctx, &info->info_1_str.uni_remark);
+               browse_fn(name, info->info_1.type, comment, NULL);
+       }
+
+       TALLOC_FREE(mem_ctx);
+       cli_rpc_pipe_close(pipe_hnd);
+       return True;
+}
+
 /****************************************************************************
  Try and browse available connections on a host.
 ****************************************************************************/
@@ -2018,8 +2614,12 @@ static BOOL browse_host(BOOL sort)
 {
        int ret;
        if (!grepable) {
-               d_printf("\n\tSharename      Type      Comment\n");
-               d_printf("\t---------      ----      -------\n");
+               d_printf("\n\tSharename       Type      Comment\n");
+               d_printf("\t---------       ----      -------\n");
+       }
+
+       if (browse_host_rpc(sort)) {
+               return True;
        }
 
        if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
@@ -2037,7 +2637,7 @@ static void server_fn(const char *name, uint32 m,
 {
        
        if (!grepable){
-               d_printf("\t%-16.16s     %s\n", name, comment);
+               d_printf("\t%-16s     %s\n", name, comment);
        } else {
                d_printf("%s|%s|%s\n",(char *)state, name, comment);
        }
@@ -2049,6 +2649,8 @@ static void server_fn(const char *name, uint32 m,
 
 static BOOL list_servers(const char *wk_grp)
 {
+       fstring state;
+
        if (!cli->server_domain)
                return False;
 
@@ -2056,16 +2658,18 @@ static BOOL list_servers(const char *wk_grp)
                d_printf("\n\tServer               Comment\n");
                d_printf("\t---------            -------\n");
        };
+       fstrcpy( state, "Server" );
        cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
-                         "Server");
+                         state);
 
        if (!grepable) {
                d_printf("\n\tWorkgroup            Master\n");
                d_printf("\t---------            -------\n");
        }; 
 
+       fstrcpy( state, "Workgroup" );
        cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
-                         server_fn, "Workgroup");
+                         server_fn, state);
        return True;
 }
 
@@ -2093,7 +2697,7 @@ static int cmd_vuid(void)
 static int cmd_logon(void)
 {
        pstring l_username, l_password;
-       fstring buf,buf2;
+       pstring buf,buf2;
   
        if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
                d_printf("logon <username> [<password>]\n");
@@ -2102,15 +2706,14 @@ static int cmd_logon(void)
 
        pstrcpy(l_username, buf);
 
-       if (!next_token_nr(NULL,buf2,NULL,sizeof(buf))) {
+       if (!next_token_nr(NULL,buf2,NULL,sizeof(buf))) 
+       {
                char *pass = getpass("Password: ");
-               if (pass) {
+               if (pass) 
                        pstrcpy(l_password, pass);
-                       got_pass = 1;
-               }
-       } else {
+       } 
+       else
                pstrcpy(l_password, buf2);
-       }
 
        if (!cli_session_setup(cli, l_username, 
                               l_password, strlen(l_password),
@@ -2124,6 +2727,36 @@ static int cmd_logon(void)
        return 0;
 }
 
+
+/****************************************************************************
+ list active connections
+****************************************************************************/
+
+static int cmd_list_connect(void)
+{
+       cli_cm_display();
+
+       return 0;
+}
+
+/****************************************************************************
+ display the current active client connection
+****************************************************************************/
+
+static int cmd_show_connect( void )
+{
+       struct cli_state *targetcli;
+       pstring targetpath;
+       
+       if ( !cli_resolve_path( "", cli, cur_dir, &targetcli, targetpath ) ) {
+               d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
+               return 1;
+       }
+       
+       d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
+       return 0;
+}
+
 /* Some constants for completing filename arguments */
 
 #define COMPL_NONE        0          /* No completions */
@@ -2147,6 +2780,7 @@ static struct
   {"archive",cmd_archive,"<level>\n0=ignore archive bit\n1=only get archive files\n2=only get archive files and reset archive bit\n3=get all files and reset archive bit",{COMPL_NONE,COMPL_NONE}},
   {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
   {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
+  {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
   {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
   {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
   {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
@@ -2155,10 +2789,12 @@ static struct
   {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
   {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
   {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
+  {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
+  {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
   {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
   {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
   {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
-  {"link",cmd_link,"<src> <dest> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
+  {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
   {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},  
   {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
   {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
@@ -2170,7 +2806,6 @@ static struct
   {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
   {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
   {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
-  {"printmode",cmd_printmode,"<graphics or text> set the print mode",{COMPL_NONE,COMPL_NONE}},
   {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},  
   {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
   {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
@@ -2185,12 +2820,16 @@ static struct
   {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
   {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
   {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
-  {"symlink",cmd_symlink,"<src> <dest> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
+  {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
+  {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
   {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
   {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
   {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
+  {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
   {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
   {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
+  {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
+  {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
   
   /* Yes, this must be here, see crh's comment above. */
   {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
@@ -2202,7 +2841,7 @@ static struct
  abbreviations.
 ******************************************************************/
 
-static int process_tok(fstring tok)
+static int process_tok(pstring tok)
 {
        int i = 0, matches = 0;
        int cmd=0;
@@ -2235,7 +2874,7 @@ static int process_tok(fstring tok)
 static int cmd_help(void)
 {
        int i=0,j;
-       fstring buf;
+       pstring buf;
        
        if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
                if ((i = process_tok(buf)) >= 0)
@@ -2265,14 +2904,14 @@ static int process_command_string(char *cmd)
        /* establish the connection if not already */
        
        if (!cli) {
-               cli = do_connect(desthost, service);
+               cli = cli_cm_open(desthost, service, True);
                if (!cli)
                        return 0;
        }
        
        while (cmd[0] != '\0')    {
                char *p;
-               fstring tok;
+               pstring tok;
                int i;
                
                if ((p = strchr_m(cmd, ';')) == 0) {
@@ -2313,13 +2952,13 @@ typedef struct {
        int len;
 } completion_remote_t;
 
-static void completion_remote_filter(file_info *f, const char *mask, void *state)
+static void completion_remote_filter(const char *mnt, file_info *f, const char *mask, void *state)
 {
        completion_remote_t *info = (completion_remote_t *)state;
 
        if ((info->count < MAX_COMPLETIONS - 1) && (strncmp(info->text, f->name, info->len) == 0) && (strcmp(f->name, ".") != 0) && (strcmp(f->name, "..") != 0)) {
                if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
-                       info->matches[info->count] = strdup(f->name);
+                       info->matches[info->count] = SMB_STRDUP(f->name);
                else {
                        pstring tmp;
 
@@ -2330,7 +2969,7 @@ static void completion_remote_filter(file_info *f, const char *mask, void *state
                        pstrcat(tmp, f->name);
                        if (f->mode & aDIR)
                                pstrcat(tmp, "/");
-                       info->matches[info->count] = strdup(tmp);
+                       info->matches[info->count] = SMB_STRDUP(tmp);
                }
                if (info->matches[info->count] == NULL)
                        return;
@@ -2358,16 +2997,22 @@ static char **remote_completion(const char *text, int len)
        info.text = text;
        info.len = len;
                
-       if (len >= PATH_MAX)
+       if (len >= MIN(PATH_MAX,sizeof(pstring))) {
                return(NULL);
+       }
 
-       info.matches = (char **)malloc(sizeof(info.matches[0])*MAX_COMPLETIONS);
-       if (!info.matches) return NULL;
+       info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
+       if (!info.matches) {
+               return NULL;
+       }
        info.matches[0] = NULL;
 
-       for (i = len-1; i >= 0; i--)
-               if ((text[i] == '/') || (text[i] == '\\'))
+       for (i = len-1; i >= 0; i--) {
+               if ((text[i] == '/') || (text[i] == '\\')) {
                        break;
+               }
+       }
+
        info.text = text+i+1;
        info.samelen = info.len = len-i-1;
 
@@ -2375,16 +3020,17 @@ static char **remote_completion(const char *text, int len)
                strncpy(info.dirmask, text, i+1);
                info.dirmask[i+1] = 0;
                pstr_sprintf(dirmask, "%s%*s*", cur_dir, i-1, text);
-       } else
+       } else {
                pstr_sprintf(dirmask, "%s*", cur_dir);
+       }
 
        if (cli_list(cli, dirmask, aDIR | aSYSTEM | aHIDDEN, completion_remote_filter, &info) < 0)
                goto cleanup;
 
        if (info.count == 2)
-               info.matches[0] = strdup(info.matches[1]);
+               info.matches[0] = SMB_STRDUP(info.matches[1]);
        else {
-               info.matches[0] = malloc(info.samelen+1);
+               info.matches[0] = SMB_MALLOC(info.samelen+1);
                if (!info.matches[0])
                        goto cleanup;
                strncpy(info.matches[0], info.matches[1], info.samelen);
@@ -2437,16 +3083,18 @@ static char **completion_fn(const char *text, int start, int end)
                        return NULL;
        } else {
                char **matches;
-               int i, len, samelen, count=1;
+               int i, len, samelen = 0, count=1;
 
-               matches = (char **)malloc(sizeof(matches[0])*MAX_COMPLETIONS);
-               if (!matches) return NULL;
+               matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
+               if (!matches) {
+                       return NULL;
+               }
                matches[0] = NULL;
 
                len = strlen(text);
                for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
                        if (strncmp(text, commands[i].name, len) == 0) {
-                               matches[count] = strdup(commands[i].name);
+                               matches[count] = SMB_STRDUP(commands[i].name);
                                if (!matches[count])
                                        goto cleanup;
                                if (count == 1)
@@ -2463,10 +3111,10 @@ static char **completion_fn(const char *text, int start, int end)
                case 1:
                        goto cleanup;
                case 2:
-                       matches[0] = strdup(matches[1]);
+                       matches[0] = SMB_STRDUP(matches[1]);
                        break;
                default:
-                       matches[0] = malloc(samelen+1);
+                       matches[0] = SMB_MALLOC(samelen+1);
                        if (!matches[0])
                                goto cleanup;
                        strncpy(matches[0], matches[1], samelen);
@@ -2519,24 +3167,34 @@ static void readline_callback(void)
           session keepalives and then drop them here.
        */
        if (FD_ISSET(cli->fd,&fds)) {
-               receive_smb(cli->fd,cli->inbuf,0);
+               if (!receive_smb(cli->fd,cli->inbuf,0)) {
+                       DEBUG(0, ("Read from server failed, maybe it closed the "
+                               "connection\n"));
+                       return;
+               }
                goto again;
        }
       
-       cli_chkpath(cli, "\\");
+       /* Ping the server to keep the connection alive using SMBecho. */
+       {
+               unsigned char garbage[16];
+               memset(garbage, 0xf0, sizeof(garbage));
+               cli_echo(cli, garbage, sizeof(garbage));
+       }
 }
 
 /****************************************************************************
  Process commands on stdin.
 ****************************************************************************/
 
-static void process_stdin(void)
+static int process_stdin(void)
 {
        const char *ptr;
+       int rc = 0;
 
        while (1) {
-               fstring tok;
-               fstring the_prompt;
+               pstring tok;
+               pstring the_prompt;
                char *cline;
                pstring line;
                int i;
@@ -2560,130 +3218,14 @@ static void process_stdin(void)
                if (!next_token_nr(&ptr,tok,NULL,sizeof(tok))) continue;
 
                if ((i = process_tok(tok)) >= 0) {
-                       commands[i].fn();
+                       rc = commands[i].fn();
                } else if (i == -2) {
                        d_printf("%s: command abbreviation ambiguous\n",tok);
                } else {
                        d_printf("%s: command not found\n",tok);
                }
        }
-}
-
-/***************************************************** 
- Return a connection to a server.
-*******************************************************/
-
-static struct cli_state *do_connect(const char *server, const char *share)
-{
-       struct cli_state *c;
-       struct nmb_name called, calling;
-       const char *server_n;
-       struct in_addr ip;
-       fstring servicename;
-       char *sharename;
-       
-       /* make a copy so we don't modify the global string 'service' */
-       fstrcpy(servicename, share);
-       sharename = servicename;
-       if (*sharename == '\\') {
-               server = sharename+2;
-               sharename = strchr_m(server,'\\');
-               if (!sharename) return NULL;
-               *sharename = 0;
-               sharename++;
-       }
-
-       server_n = server;
-       
-       zero_ip(&ip);
-
-       make_nmb_name(&calling, global_myname(), 0x0);
-       make_nmb_name(&called , server, name_type);
-
- again:
-       zero_ip(&ip);
-       if (have_ip) ip = dest_ip;
-
-       /* have to open a new connection */
-       if (!(c=cli_initialise(NULL)) || (cli_set_port(c, port) != port) ||
-           !cli_connect(c, server_n, &ip)) {
-               d_printf("Connection to %s failed\n", server_n);
-               return NULL;
-       }
-
-       c->protocol = max_protocol;
-       c->use_kerberos = use_kerberos;
-       cli_setup_signing_state(c, cmdline_auth_info.signing_state);
-               
-
-       if (!cli_session_request(c, &calling, &called)) {
-               char *p;
-               d_printf("session request to %s failed (%s)\n", 
-                        called.name, cli_errstr(c));
-               cli_shutdown(c);
-               if ((p=strchr_m(called.name, '.'))) {
-                       *p = 0;
-                       goto again;
-               }
-               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)) {
-               d_printf("protocol negotiation failed\n");
-               cli_shutdown(c);
-               return NULL;
-       }
-
-       if (!got_pass) {
-               char *pass = getpass("Password: ");
-               if (pass) {
-                       pstrcpy(password, pass);
-                       got_pass = 1;
-               }
-       }
-
-       if (!cli_session_setup(c, username, 
-                              password, strlen(password),
-                              password, strlen(password),
-                              lp_workgroup())) {
-               /* if a password was not supplied then try again with a null username */
-               if (password[0] || !username[0] || use_kerberos ||
-                   !cli_session_setup(c, "", "", 0, "", 0, lp_workgroup())) { 
-                       d_printf("session setup failed: %s\n", cli_errstr(c));
-                       if (NT_STATUS_V(cli_nt_error(c)) == 
-                           NT_STATUS_V(NT_STATUS_MORE_PROCESSING_REQUIRED))
-                               d_printf("did you forget to run kinit?\n");
-                       cli_shutdown(c);
-                       return NULL;
-               }
-               d_printf("Anonymous login successful\n");
-       }
-
-       if (*c->server_domain) {
-               DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
-                       c->server_domain,c->server_os,c->server_type));
-       } else if (*c->server_os || *c->server_type){
-               DEBUG(1,("OS=[%s] Server=[%s]\n",
-                        c->server_os,c->server_type));
-       }               
-       DEBUG(4,(" session setup ok\n"));
-
-       if (!cli_send_tconX(c, sharename, "?????",
-                           password, strlen(password)+1)) {
-               d_printf("tree connect failed: %s\n", cli_errstr(c));
-               cli_shutdown(c);
-               return NULL;
-       }
-
-       DEBUG(4,(" tconx ok\n"));
-
-       return c;
+       return rc;
 }
 
 /****************************************************************************
@@ -2694,12 +3236,18 @@ static int process(char *base_directory)
 {
        int rc = 0;
 
-       cli = do_connect(desthost, service);
+       cli = cli_cm_open(desthost, service, True);
        if (!cli) {
                return 1;
        }
 
-       if (*base_directory) do_cd(base_directory);
+       if (*base_directory) {
+               rc = do_cd(base_directory);
+               if (rc) {
+                       cli_cm_shutdown();
+                       return rc;
+               }
+       }
        
        if (cmdstr) {
                rc = process_command_string(cmdstr);
@@ -2707,7 +3255,7 @@ static int process(char *base_directory)
                process_stdin();
        }
   
-       cli_shutdown(cli);
+       cli_cm_shutdown();
        return rc;
 }
 
@@ -2717,7 +3265,7 @@ static int process(char *base_directory)
 
 static int do_host_query(char *query_host)
 {
-       cli = do_connect(query_host, "IPC$");
+       cli = cli_cm_open(query_host, "IPC$", True);
        if (!cli)
                return 1;
 
@@ -2728,9 +3276,9 @@ static int do_host_query(char *query_host)
                /* Workgroups simply don't make sense over anything
                   else but port 139... */
 
-               cli_shutdown(cli);
-               port = 139;
-               cli = do_connect(query_host, "IPC$");
+               cli_cm_shutdown();
+               cli_cm_set_port( 139 );
+               cli = cli_cm_open(query_host, "IPC$", True);
        }
 
        if (cli == NULL) {
@@ -2740,12 +3288,11 @@ static int do_host_query(char *query_host)
 
        list_servers(lp_workgroup());
 
-       cli_shutdown(cli);
+       cli_cm_shutdown();
        
        return(0);
 }
 
-
 /****************************************************************************
  Handle a tar operation.
 ****************************************************************************/
@@ -2756,18 +3303,24 @@ static int do_tar_op(char *base_directory)
 
        /* do we already have a connection? */
        if (!cli) {
-               cli = do_connect(desthost, service);    
+               cli = cli_cm_open(desthost, service, True);
                if (!cli)
                        return 1;
        }
 
        recurse=True;
 
-       if (*base_directory) do_cd(base_directory);
+       if (*base_directory)  {
+               ret = do_cd(base_directory);
+               if (ret) {
+                       cli_cm_shutdown();
+                       return ret;
+               }
+       }
        
        ret=process_tar();
 
-       cli_shutdown(cli);
+       cli_cm_shutdown();
 
        return(ret);
 }
@@ -2782,8 +3335,9 @@ static int do_message_op(void)
        struct nmb_name called, calling;
        fstring server_name;
        char name_type_hex[10];
+       int msg_port;
 
-       make_nmb_name(&calling, global_myname(), 0x0);
+       make_nmb_name(&calling, calling_name, 0x0);
        make_nmb_name(&called , desthost, name_type);
 
        fstrcpy(server_name, desthost);
@@ -2791,9 +3345,14 @@ static int do_message_op(void)
        fstrcat(server_name, name_type_hex);
 
         zero_ip(&ip);
-       if (have_ip) ip = dest_ip;
+       if (have_ip) 
+               ip = dest_ip;
+
+       /* we can only do messages over port 139 (to windows clients at least) */
+
+       msg_port = port ? port : 139;
 
-       if (!(cli=cli_initialise(NULL)) || (cli_set_port(cli, port) != port) ||
+       if (!(cli=cli_initialise()) || (cli_set_port(cli, msg_port) != msg_port) ||
            !cli_connect(cli, server_name, &ip)) {
                d_printf("Connection to %s failed\n", desthost);
                return 1;
@@ -2801,50 +3360,27 @@ static int do_message_op(void)
 
        if (!cli_session_request(cli, &calling, &called)) {
                d_printf("session request failed\n");
-               cli_shutdown(cli);
+               cli_cm_shutdown();
                return 1;
        }
 
        send_message();
-       cli_shutdown(cli);
+       cli_cm_shutdown();
 
        return 0;
 }
 
 
-/**
- * Process "-L hostname" option.
- *
- * We don't actually do anything yet -- we just stash the name in a
- * global variable and do the query when all options have been read.
- **/
-
-static void remember_query_host(const char *arg,
-                               pstring query_host)
-{
-       char *slash;
-       
-       while (*arg == '\\' || *arg == '/')
-               arg++;
-       pstrcpy(query_host, arg);
-       if ((slash = strchr(query_host, '/'))
-           || (slash = strchr(query_host, '\\'))) {
-               *slash = 0;
-       }
-}
-
 /****************************************************************************
   main program
 ****************************************************************************/
 
  int main(int argc,char *argv[])
 {
-       extern BOOL AllowDebugChange;
-       fstring base_directory;
+       pstring base_directory;
        int opt;
        pstring query_host;
        BOOL message = False;
-       extern char tar_type;
        pstring term_code;
        static const char *new_name_resolve_order = NULL;
        poptContext pc;
@@ -2873,6 +3409,7 @@ static void remember_query_host(const char *arg,
                POPT_TABLEEND
        };
        
+       load_case_tables();
 
 #ifdef KANJI
        pstrcpy(term_code, KANJI);
@@ -2887,12 +3424,14 @@ static void remember_query_host(const char *arg,
           not it was set by a command line option */
           
        set_global_myworkgroup( "" );
+       set_global_myname( "" );
 
         /* set default debug level to 0 regardless of what smb.conf sets */
        setup_logging( "smbclient", True );
        DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
-       dbf = x_stderr;
-       x_setbuf( x_stderr, NULL );
+       if ((dbf = x_fdup(x_stderr))) {
+               x_setbuf( dbf, NULL );
+       }
 
        pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 
                                POPT_CONTEXT_KEEP_FIRST);
@@ -2908,9 +3447,10 @@ static void remember_query_host(const char *arg,
                         * to port 139 instead of port 445. srl,crh
                         */
                        name_type = 0x03; 
+                       cli_cm_set_dest_name_type( name_type );
                        pstrcpy(desthost,poptGetOptArg(pc));
-                       if( 0 == port )
-                               port = 139;
+                       if( !port )
+                               cli_cm_set_port( 139 );
                        message = True;
                        break;
                case 'I':
@@ -2919,15 +3459,20 @@ static void remember_query_host(const char *arg,
                                if (is_zero_ip(dest_ip))
                                        exit(1);
                                have_ip = True;
+
+                               cli_cm_set_dest_ip( dest_ip );
                        }
                        break;
                case 'E':
+                       if (dbf) {
+                               x_fclose(dbf);
+                       }
                        dbf = x_stderr;
                        display_set_stderr();
                        break;
 
                case 'L':
-                       remember_query_host(poptGetOptArg(pc), query_host);
+                       pstrcpy(query_host, poptGetOptArg(pc));
                        break;
                case 't':
                        pstrcpy(term_code, poptGetOptArg(pc));
@@ -2958,7 +3503,7 @@ static void remember_query_host(const char *arg,
                        }
                        break;
                case 'D':
-                       fstrcpy(base_directory,poptGetOptArg(pc));
+                       pstrcpy(base_directory,poptGetOptArg(pc));
                        break;
                case 'g':
                        grepable=True;
@@ -2967,7 +3512,12 @@ static void remember_query_host(const char *arg,
        }
 
        poptGetArg(pc);
-       
+
+       /* check for the -P option */
+
+       if ( port != 0 )
+               cli_cm_set_port( port );
+
        /*
         * Don't load debug level from smb.conf. It should be
         * set by cmdline arg or remain default (0)
@@ -2976,13 +3526,17 @@ static void remember_query_host(const char *arg,
        
        /* save the workgroup...
        
-          FIXME!! do we need to do tyhis for other options as well 
+          FIXME!! do we need to do this for other options as well 
           (or maybe a generic way to keep lp_load() from overwriting 
           everything)?  */
        
-       fstrcpy( new_workgroup, lp_workgroup() );               
+       fstrcpy( new_workgroup, lp_workgroup() );
+       pstrcpy( calling_name, global_myname() );
+       
+       if ( override_logfile )
+               setup_logging( lp_logfile(), False );
        
-       if (!lp_load(dyn_CONFIGFILE,True,False,False)) {
+       if (!lp_load(dyn_CONFIGFILE,True,False,False,True)) {
                fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
                        argv[0], dyn_CONFIGFILE);
        }
@@ -2992,6 +3546,11 @@ static void remember_query_host(const char *arg,
        if ( strlen(new_workgroup) != 0 )
                set_global_myworkgroup( new_workgroup );
 
+       if ( strlen(calling_name) != 0 )
+               set_global_myname( calling_name );
+       else
+               pstrcpy( calling_name, global_myname() );
+
        if(poptPeekArg(pc)) {
                pstrcpy(service,poptGetArg(pc));  
                /* Convert any '/' characters in the service name to '\' characters */
@@ -3021,11 +3580,10 @@ static void remember_query_host(const char *arg,
 
        poptFreeContext(pc);
 
-       pstrcpy(username, cmdline_auth_info.username);
-       pstrcpy(password, cmdline_auth_info.password);
+       /* store the username an password for dfs support */
 
-       use_kerberos = cmdline_auth_info.use_kerberos;
-       got_pass = cmdline_auth_info.got_pass;
+       cli_cm_set_credentials( &cmdline_auth_info );
+       pstrcpy(username, cmdline_auth_info.username);
 
        DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING));
 
@@ -3035,14 +3593,26 @@ static void remember_query_host(const char *arg,
                return do_tar_op(base_directory);
        }
 
-       if ((p=strchr_m(query_host,'#'))) {
-               *p = 0;
-               p++;
-               sscanf(p, "%x", &name_type);
-       }
-  
        if (*query_host) {
-               return do_host_query(query_host);
+               char *qhost = query_host;
+               char *slash;
+
+               while (*qhost == '\\' || *qhost == '/')
+                       qhost++;
+
+               if ((slash = strchr_m(qhost, '/'))
+                   || (slash = strchr_m(qhost, '\\'))) {
+                       *slash = 0;
+               }
+
+               if ((p=strchr_m(qhost, '#'))) {
+                       *p = 0;
+                       p++;
+                       sscanf(p, "%x", &name_type);
+                       cli_cm_set_dest_name_type( name_type );
+               }
+
+               return do_host_query(qhost);
        }
 
        if (message) {