r16945: Sync trunk -> 3.0 for 3.0.24 code. Still need
[vlendec/samba-autobuild/.git] / source3 / client / client.c
index 6a9e57f86f861c6d1c74774a7a1e429e7ace8a2d..99fffa712321cf921dcffdc173297be0371c886a 100644 (file)
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
 
-#define NO_SYSLOG
-
 #include "includes.h"
 #include "client/client_proto.h"
 #ifndef REGISTER
 #define REGISTER 0
 #endif
 
+extern BOOL AllowDebugChange;
+extern BOOL override_logfile;
+extern char tar_type;
 extern BOOL in_client;
 static int port = 0;
 pstring cur_dir = "\\";
@@ -36,17 +37,14 @@ static pstring cd_path = "";
 static pstring service;
 static pstring desthost;
 static pstring username;
-static pstring password;
 static pstring calling_name;
-static BOOL use_kerberos;
-static BOOL got_pass;
 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(pstring tok);
 static int cmd_help(void);
@@ -62,7 +60,6 @@ time_t newer_than = 0;
 static int archive_level = 0;
 
 static BOOL translation = False;
-
 static BOOL have_ip;
 
 /* clitar bits insert */
@@ -74,8 +71,6 @@ extern BOOL tar_reset;
 
 static BOOL prompt = True;
 
-static int printmode = 1;
-
 static BOOL recurse = False;
 BOOL lowercase = False;
 
@@ -98,251 +93,11 @@ static unsigned int put_total_time_ms = 0;
 /* totals globals */
 static double dir_total;
 
-
-struct client_connection {
-       struct client_connection *prev, *next;
-       struct client_connection *parent;
-       struct cli_state *cli;
-       pstring mntpath;
-};
+/* root cli_state connection */
 
 struct cli_state *cli;
-static struct client_connection *connections;
-
-/********************************************************************
- Return a connection to a server.
-********************************************************************/
-
-static struct cli_state *do_connect( const char *server, const char *share,
-                                     BOOL show_sessetup )
-{
-       struct cli_state *c;
-       struct nmb_name called, calling;
-       const char *server_n;
-       struct in_addr ip;
-       pstring servicename;
-       char *sharename;
-       
-       /* make a copy so we don't modify the global string 'service' */
-       pstrcpy(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, calling_name, 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 ( show_sessetup ) {
-               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;
-}
-
-/********************************************************************
- Add a new connection to the list
-********************************************************************/
-
-static struct cli_state* cli_cm_connect( const char *server, const char *share,
-                                         BOOL show_hdr )
-{
-       struct client_connection *node, *pparent, *p;
-       
-       node = SMB_XMALLOC_P( struct client_connection );
-       
-       node->cli = do_connect( server, share, show_hdr );
-
-       if ( !node->cli ) {
-               SAFE_FREE( node );
-               return NULL;
-       }
-
-       pparent = NULL;
-       for ( p=connections; p; p=p->next ) {
-               if ( strequal(cli->desthost, p->cli->desthost) && strequal(cli->share, p->cli->share) )
-                       pparent = p;
-       }
-       
-       node->parent = pparent;
-       pstrcpy( node->mntpath, cur_dir );
-
-       DLIST_ADD( connections, node );
-
-       return node->cli;
-
-}
 
-/********************************************************************
- Return a connection to a server.
-********************************************************************/
-
-static struct cli_state* cli_cm_find( const char *server, const char *share )
-{
-       struct client_connection *p;
-
-       for ( p=connections; p; p=p->next ) {
-               if ( strequal(server, p->cli->desthost) && strequal(share,p->cli->share) )
-                       return p->cli;
-       }
-
-       return NULL;
-}
 
-/****************************************************************************
- open a client connection to a \\server\share.  Set's the current *cli 
- global variable as a side-effect (but only if the connection is successful).
-****************************************************************************/
-
-struct cli_state* cli_cm_open( const char *server, const char *share, BOOL show_hdr )
-{
-       struct cli_state *c;
-       
-       /* try to reuse an existing connection */
-
-       c = cli_cm_find( server, share );
-       
-       if ( !c )
-               c = cli_cm_connect( server, share, show_hdr );
-
-       return c;
-}
-
-/****************************************************************************
-****************************************************************************/
-
-struct cli_state* cli_cm_current( void )
-{
-       return cli;
-}
-
-/****************************************************************************
-****************************************************************************/
-
-static void cli_cm_shutdown( void )
-{
-
-       struct client_connection *p, *x;
-
-       for ( p=connections; p; ) {
-               cli_shutdown( p->cli );
-               x = p;
-               p = p->next;
-
-               SAFE_FREE( x );
-       }
-
-       connections = NULL;
-
-       return;
-}
-
-/****************************************************************************
-****************************************************************************/
-
-const char* cli_cm_get_mntpath( struct cli_state *pcli )
-{
-       struct client_connection *p;
-       
-       for ( p=connections; p; p=p->next ) {
-               if ( strequal(pcli->desthost, p->cli->desthost) && strequal(pcli->share, p->cli->share) )
-                       break;
-       }
-       
-       if ( !p )
-               return NULL;
-               
-       return p->mntpath;
-}
 
 /****************************************************************************
  Write to a local file with CR/LF->LF translation if appropriate. Return the 
@@ -461,8 +216,9 @@ static int do_dskattr(void)
        struct cli_state *targetcli;
        pstring targetpath;
 
-       if ( !cli_resolve_path( cli, cur_dir, &targetcli, 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(targetcli, &bsize, &total, &avail)) {
@@ -500,7 +256,7 @@ static int do_cd(char *newdir)
        struct cli_state *targetcli;
        SMB_STRUCT_STAT sbuf;
        uint32 attributes;
-       pstring fullpath;
+       int ret = 1;
       
        dos_format(newdir);
 
@@ -513,7 +269,7 @@ static int do_cd(char *newdir)
        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, "\\");
        }
        
@@ -522,7 +278,7 @@ static int do_cd(char *newdir)
        pstrcat(cur_dir,"\\");
        dos_clean_name(cur_dir);
        
-       if ( !cli_resolve_path( cli, dname, &targetcli, targetpath ) ) {
+       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;
@@ -532,9 +288,10 @@ static int do_cd(char *newdir)
        if ( strequal(targetpath,"\\" ) )
                return 0;   
                
-       /* use a trans2_qpathinfo to test directories for modern servers */
+       /* Use a trans2_qpathinfo to test directories for modern servers.
+          Except Win9x doesn't support the qpathinfo_basic() call..... */ 
        
-       if ( targetcli->protocol >= PROTOCOL_LANMAN2 ) {
+       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);
@@ -546,21 +303,23 @@ static int do_cd(char *newdir)
                        pstrcpy(cur_dir,saved_dir);
                        goto out;
                }               
-       }
-       else {
+       } 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;
 }
 
 /****************************************************************************
@@ -620,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;
        }
 }
@@ -688,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';
@@ -704,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 = SMB_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);
                }
@@ -754,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);
@@ -771,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;
@@ -826,8 +599,9 @@ void do_list(const char *mask,uint16 attribute,void (*fn)(file_info *),BOOL rec,
                        
                        /* check for dfs */
                        
-                       if ( !cli_resolve_path( cli, head, &targetcli, targetpath ) ) {
+                       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;
                        }
                        
@@ -852,7 +626,7 @@ void do_list(const char *mask,uint16 attribute,void (*fn)(file_info *),BOOL rec,
        } else {
                /* check for dfs */
                        
-               if ( cli_resolve_path( cli, mask, &targetcli, targetpath ) ) {
+               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);
                }
@@ -880,7 +654,7 @@ static int cmd_dir(void)
        dir_total = 0;
        if (strcmp(cur_dir, "\\") != 0) {
                pstrcpy(mask,cur_dir);
-               if(mask[strlen(mask)-1]!='\\')
+               if ((mask[0] != '\0') && (mask[strlen(mask)-1]!='\\'))
                        pstrcat(mask,"\\");
        } else {
                pstrcpy(mask, "\\");
@@ -919,7 +693,7 @@ static int cmd_du(void)
        
        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))) {
@@ -953,7 +727,7 @@ 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;
@@ -965,14 +739,24 @@ static int do_get(char *rname, char *lname, BOOL reget)
                strlower_m(lname);
        }
 
-       if ( !cli_resolve_path( cli, rname, &targetcli, 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 ( 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) {
@@ -1231,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 == '\\')
@@ -1261,7 +1045,7 @@ static BOOL do_mkdir(char *name)
        struct cli_state *targetcli;
        pstring targetname;
        
-       if ( !cli_resolve_path( cli, name, &targetcli, targetname ) ) {
+       if ( !cli_resolve_path( "", cli, name, &targetcli, targetname ) ) {
                d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
                return False;
        }
@@ -1377,7 +1161,7 @@ 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;
@@ -1386,7 +1170,7 @@ static int do_put(char *rname, char *lname, BOOL reput)
        struct cli_state *targetcli;
        pstring targetname;
        
-       if ( !cli_resolve_path( cli, rname, &targetcli, targetname ) ) {
+       if ( !cli_resolve_path( "", cli, rname, &targetcli, targetname ) ) {
                d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
                return 1;
        }
@@ -1559,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);
        }
 }
 
@@ -1609,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;
@@ -1617,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;
        
@@ -1646,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 = 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;
@@ -1664,7 +1448,7 @@ static int file_find(struct file_list **list, const char *directory,
                }
         }
 
-       closedir(dir);
+       sys_closedir(dir);
        return 0;
 }
 
@@ -1843,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;
@@ -1898,7 +1681,7 @@ static int cmd_open(void)
        }
        pstrcat(mask,buf);
 
-       if ( !cli_resolve_path( cli, mask, &targetcli, targetname ) ) {
+       if ( !cli_resolve_path( "", cli, mask, &targetcli, targetname ) ) {
                d_printf("open %s: %s\n", mask, cli_errstr(cli));
                return 1;
        }
@@ -1928,7 +1711,7 @@ static int cmd_rmdir(void)
        }
        pstrcat(mask,buf);
 
-       if ( !cli_resolve_path( cli, mask, &targetcli, targetname ) ) {
+       if ( !cli_resolve_path( "", cli, mask, &targetcli, targetname ) ) {
                d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
                return 1;
        }
@@ -1964,7 +1747,7 @@ static int cmd_link(void)
        pstrcat(oldname,buf);
        pstrcat(newname,buf2);
 
-       if ( !cli_resolve_path( cli, oldname, &targetcli, targetname ) ) {
+       if ( !cli_resolve_path( "", cli, oldname, &targetcli, targetname ) ) {
                d_printf("link %s: %s\n", oldname, cli_errstr(cli));
                return 1;
        }
@@ -2039,7 +1822,7 @@ static int cmd_chmod(void)
        mode = (mode_t)strtol(buf, NULL, 8);
        pstrcat(src,buf2);
 
-       if ( !cli_resolve_path( cli, src, &targetcli, targetname ) ) {
+       if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
                d_printf("chmod %s: %s\n", src, cli_errstr(cli));
                return 1;
        }
@@ -2187,7 +1970,7 @@ static int cmd_getfacl(void)
 
        pstrcat(src,name);
        
-       if ( !cli_resolve_path( cli, src, &targetcli, targetname ) ) {
+       if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
                d_printf("stat %s: %s\n", src, cli_errstr(cli));
                return 1;
        }
@@ -2335,6 +2118,7 @@ static int cmd_stat(void)
        fstring mode_str;
        SMB_STRUCT_STAT sbuf;
        struct cli_state *targetcli;
+       struct tm *lt;
        pstring targetname;
  
        if (!SERVER_HAS_UNIX_CIFS(cli)) {
@@ -2352,7 +2136,7 @@ static int cmd_stat(void)
        pstrcat(src,name);
 
        
-       if ( !cli_resolve_path( cli, src, &targetcli, targetname ) ) {
+       if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
                d_printf("stat %s: %s\n", src, cli_errstr(cli));
                return 1;
        }
@@ -2389,13 +2173,28 @@ static int cmd_stat(void)
                (unsigned int)sbuf.st_uid, 
                (unsigned int)sbuf.st_gid);
 
-       strftime(mode_str, sizeof(mode_str), "%F %T %z", localtime(&sbuf.st_atime));
+       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);
 
-       strftime(mode_str, sizeof(mode_str), "%F %T %z", localtime(&sbuf.st_mtime));
+       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);
 
-       strftime(mode_str, sizeof(mode_str), "%F %T %z", localtime(&sbuf.st_ctime));
+       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;
@@ -2428,7 +2227,7 @@ static int cmd_chown(void)
        gid = (gid_t)atoi(buf2);
        pstrcat(src,buf3);
 
-       if ( !cli_resolve_path( cli, src, &targetcli, targetname ) ) {
+       if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
                d_printf("chown %s: %s\n", src, cli_errstr(cli));
                return 1;
        }
@@ -2477,6 +2276,25 @@ 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.
 ****************************************************************************/
@@ -2500,7 +2318,7 @@ static int cmd_hardlink(void)
        pstrcat(src,buf);
        pstrcat(dest,buf2);
 
-       if ( !cli_resolve_path( cli, src, &targetcli, targetname ) ) {
+       if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
                d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
                return 1;
        }
@@ -2544,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;
        }
@@ -2625,43 +2443,6 @@ 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.
  ****************************************************************************/
@@ -2752,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;
@@ -2774,6 +2555,57 @@ static void browse_fn(const char *name, uint32 m,
        }
 }
 
+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.
 ****************************************************************************/
@@ -2786,6 +2618,10 @@ static BOOL browse_host(BOOL sort)
                d_printf("\t---------       ----      -------\n");
        }
 
+       if (browse_host_rpc(sort)) {
+               return True;
+       }
+
        if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
                d_printf("Error returning browse list: %s\n", cli_errstr(cli));
 
@@ -2870,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),
@@ -2899,13 +2734,7 @@ static int cmd_logon(void)
 
 static int cmd_list_connect(void)
 {
-       struct client_connection *p;
-       int i;
-
-       for ( p=connections,i=0; p; p=p->next,i++ ) {
-               d_printf("%d:\tserver=%s, share=%s\n", 
-                       i, p->cli->desthost, p->cli->share );
-       }
+       cli_cm_display();
 
        return 0;
 }
@@ -2919,7 +2748,7 @@ static int cmd_show_connect( void )
        struct cli_state *targetcli;
        pstring targetpath;
        
-       if ( !cli_resolve_path( cli, cur_dir, &targetcli, targetpath ) ) {
+       if ( !cli_resolve_path( "", cli, cur_dir, &targetcli, targetpath ) ) {
                d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
                return 1;
        }
@@ -2977,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}},
@@ -2997,6 +2825,7 @@ static struct
   {"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}},
@@ -3075,7 +2904,7 @@ static int process_command_string(char *cmd)
        /* establish the connection if not already */
        
        if (!cli) {
-               cli = cli_cm_connect(desthost, service, True);
+               cli = cli_cm_open(desthost, service, True);
                if (!cli)
                        return 0;
        }
@@ -3123,7 +2952,7 @@ 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;
 
@@ -3168,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 = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
-       if (!info.matches) return NULL;
+       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;
 
@@ -3185,8 +3020,9 @@ 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;
@@ -3331,11 +3167,20 @@ 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));
+       }
 }
 
 /****************************************************************************
@@ -3391,12 +3236,18 @@ static int process(char *base_directory)
 {
        int rc = 0;
 
-       cli = cli_cm_connect(desthost, service, True);
+       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);
@@ -3414,7 +3265,7 @@ static int process(char *base_directory)
 
 static int do_host_query(char *query_host)
 {
-       cli = cli_cm_connect(query_host, "IPC$", True);
+       cli = cli_cm_open(query_host, "IPC$", True);
        if (!cli)
                return 1;
 
@@ -3426,8 +3277,8 @@ static int do_host_query(char *query_host)
                   else but port 139... */
 
                cli_cm_shutdown();
-               port = 139;
-               cli = cli_cm_connect(query_host, "IPC$", True);
+               cli_cm_set_port( 139 );
+               cli = cli_cm_open(query_host, "IPC$", True);
        }
 
        if (cli == NULL) {
@@ -3452,14 +3303,20 @@ static int do_tar_op(char *base_directory)
 
        /* do we already have a connection? */
        if (!cli) {
-               cli = cli_cm_connect(desthost, service, True);
+               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();
 
@@ -3478,6 +3335,7 @@ 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, calling_name, 0x0);
        make_nmb_name(&called , desthost, name_type);
@@ -3487,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) */
 
-       if (!(cli=cli_initialise(NULL)) || (cli_set_port(cli, port) != port) ||
+       msg_port = port ? port : 139;
+
+       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;
@@ -3514,13 +3377,10 @@ static int do_message_op(void)
 
  int main(int argc,char *argv[])
 {
-       extern BOOL AllowDebugChange;
-       extern BOOL override_logfile;
        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;
@@ -3549,6 +3409,7 @@ static int do_message_op(void)
                POPT_TABLEEND
        };
        
+       load_case_tables();
 
 #ifdef KANJI
        pstrcpy(term_code, KANJI);
@@ -3568,8 +3429,9 @@ static int do_message_op(void)
         /* 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);
@@ -3585,9 +3447,10 @@ static int do_message_op(void)
                         * 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':
@@ -3596,9 +3459,14 @@ static int do_message_op(void)
                                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;
@@ -3644,7 +3512,12 @@ static int do_message_op(void)
        }
 
        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)
@@ -3663,7 +3536,7 @@ static int do_message_op(void)
        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);
        }
@@ -3675,6 +3548,8 @@ static int do_message_op(void)
 
        if ( strlen(calling_name) != 0 )
                set_global_myname( calling_name );
+       else
+               pstrcpy( calling_name, global_myname() );
 
        if(poptPeekArg(pc)) {
                pstrcpy(service,poptGetArg(pc));  
@@ -3705,11 +3580,10 @@ static int do_message_op(void)
 
        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));
 
@@ -3735,8 +3609,9 @@ static int do_message_op(void)
                        *p = 0;
                        p++;
                        sscanf(p, "%x", &name_type);
+                       cli_cm_set_dest_name_type( name_type );
                }
-  
+
                return do_host_query(qhost);
        }