home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Wtestowe / Clico / UNIX / SAMBA / SOURCE / SAMBA.TAR / samba-1.9.17 / source / client.c < prev    next >
C/C++ Source or Header  |  1997-08-25  |  122KB  |  4,883 lines

  1. /* 
  2.    Unix SMB/Netbios implementation.
  3.    Version 1.9.
  4.    SMB client
  5.    Copyright (C) Andrew Tridgell 1994-1997
  6.    
  7.    This program is free software; you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License as published by
  9.    the Free Software Foundation; either version 2 of the License, or
  10.    (at your option) any later version.
  11.    
  12.    This program is distributed in the hope that it will be useful,
  13.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.    GNU General Public License for more details.
  16.    
  17.    You should have received a copy of the GNU General Public License
  18.    along with this program; if not, write to the Free Software
  19.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21.  
  22. #ifdef SYSLOG
  23. #undef SYSLOG
  24. #endif
  25.  
  26. #include "includes.h"
  27.  
  28. #ifndef REGISTER
  29. #define REGISTER 0
  30. #endif
  31.  
  32. pstring cur_dir = "\\";
  33. pstring cd_path = "";
  34. pstring service="";
  35. pstring desthost="";
  36. extern pstring myname;
  37. pstring password = "";
  38. pstring username="";
  39. pstring workgroup="";
  40. char *cmdstr="";
  41. BOOL got_pass = False;
  42. BOOL connect_as_printer = False;
  43. BOOL connect_as_ipc = False;
  44. extern struct in_addr ipzero;
  45.  
  46. char cryptkey[8];
  47. BOOL doencrypt=False;
  48.  
  49. extern pstring user_socket_options;
  50.  
  51. /* 30 second timeout on most commands */
  52. #define CLIENT_TIMEOUT (30*1000)
  53. #define SHORT_TIMEOUT (5*1000)
  54.  
  55. /* value for unused fid field in trans2 secondary request */
  56. #define FID_UNUSED (0xFFFF)
  57.  
  58. int name_type = 0x20;
  59.  
  60. int max_protocol = PROTOCOL_NT1;
  61.  
  62.  
  63. time_t newer_than = 0;
  64. int archive_level = 0;
  65.  
  66. extern pstring debugf;
  67. extern int DEBUGLEVEL;
  68.  
  69. BOOL translation = False;
  70.  
  71.  
  72. static BOOL send_trans_request(char *outbuf,int trans,
  73.                    char *name,int fid,int flags,
  74.                    char *data,char *param,uint16 *setup,
  75.                    int ldata,int lparam,int lsetup,
  76.                    int mdata,int mparam,int msetup);
  77. static BOOL receive_trans_response(char *inbuf,int trans,
  78.                                    int *data_len,int *param_len,
  79.                    char **data,char **param);
  80. static int interpret_long_filename(int level,char *p,file_info *finfo);
  81. static void dir_action(char *inbuf,char *outbuf,int attribute,file_info *finfo,BOOL recurse_dir,void (*fn)(),BOOL longdir);
  82. static int interpret_short_filename(char *p,file_info *finfo);
  83. static BOOL call_api(int prcnt,int drcnt,
  84.              int mprcnt,int mdrcnt,
  85.              int *rprcnt,int *rdrcnt,
  86.              char *param,char *data,
  87.              char **rparam,char **rdata);
  88. static BOOL do_this_one(file_info *finfo);
  89.  
  90. /* clitar bits insert */
  91. extern int blocksize;
  92. extern BOOL tar_inc;
  93. extern BOOL tar_reset;
  94. /* clitar bits end */
  95.  
  96.  
  97. int cnum = 0;
  98. int pid = 0;
  99. int gid = 0;
  100. int uid = 0;
  101. int mid = 0;
  102. int myumask = 0755;
  103.  
  104. int max_xmit = BUFFER_SIZE;
  105.  
  106. extern pstring scope;
  107.  
  108. BOOL prompt = True;
  109.  
  110. int printmode = 1;
  111.  
  112. BOOL recurse = False;
  113. BOOL lowercase = False;
  114.  
  115. BOOL have_ip = False;
  116.  
  117. struct in_addr dest_ip;
  118.  
  119. #define SEPARATORS " \t\n\r"
  120.  
  121. BOOL abort_mget = True;
  122.  
  123. extern int Protocol;
  124.  
  125. BOOL readbraw_supported = False;
  126. BOOL writebraw_supported = False;
  127.  
  128. pstring fileselection = "";
  129.  
  130. extern file_info def_finfo;
  131.  
  132. /* timing globals */
  133. int get_total_size = 0;
  134. int get_total_time_ms = 0;
  135. int put_total_size = 0;
  136. int put_total_time_ms = 0;
  137.  
  138. /* totals globals */
  139. int dir_total = 0;
  140.  
  141. extern int Client;
  142.  
  143. #define USENMB
  144.  
  145. #ifdef KANJI
  146. extern int coding_system;
  147. #define CNV_LANG(s) (coding_system == DOSV_CODE?s:dos_to_unix(s, False))
  148. #define CNV_INPUT(s) (coding_system == DOSV_CODE?s:unix_to_dos(s, True))
  149. static BOOL
  150. setup_term_code (char *code)
  151. {
  152.     int new;
  153.     new = interpret_coding_system (code, UNKNOWN_CODE);
  154.     if (new != UNKNOWN_CODE) {
  155.     coding_system = new;
  156.     return True;
  157.     }
  158.     return False;
  159. }
  160. #else
  161. #define CNV_LANG(s) dos2unix_format(s,False)
  162. #define CNV_INPUT(s) unix2dos_format(s,True)
  163. #endif
  164.  
  165. /****************************************************************************
  166. setup basics in a outgoing packet
  167. ****************************************************************************/
  168. void setup_pkt(char *outbuf)
  169. {
  170.   SSVAL(outbuf,smb_pid,pid);
  171.   SSVAL(outbuf,smb_uid,uid);
  172.   SSVAL(outbuf,smb_mid,mid);
  173.   if (Protocol > PROTOCOL_COREPLUS)
  174.     {
  175.       SCVAL(outbuf,smb_flg,0x8);
  176.       SSVAL(outbuf,smb_flg2,0x1);
  177.     }
  178. }
  179.  
  180. /****************************************************************************
  181. write to a local file with CR/LF->LF translation if appropriate. return the 
  182. number taken from the buffer. This may not equal the number written.
  183. ****************************************************************************/
  184. static int writefile(int f, char *b, int n)
  185. {
  186.   int i;
  187.  
  188.   if (!translation)
  189.     return(write(f,b,n));
  190.   
  191.   i = 0;
  192.   while (i < n)
  193.     {
  194.       if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n')
  195.     {
  196.       b++;i++;
  197.     }
  198.       if (write(f, b, 1) != 1)
  199.     {
  200.       break;
  201.     }
  202.       b++;
  203.       i++;
  204.     }
  205.   
  206.   return(i);
  207. }
  208.  
  209. /****************************************************************************
  210.   read from a file with LF->CR/LF translation if appropriate. return the 
  211.   number read. read approx n bytes.
  212. ****************************************************************************/
  213. static int readfile(char *b, int size, int n, FILE *f)
  214. {
  215.   int i;
  216.   int c;
  217.  
  218.   if (!translation || (size != 1))
  219.     return(fread(b,size,n,f));
  220.   
  221.   i = 0;
  222.   while (i < n)
  223.     {
  224.       if ((c = getc(f)) == EOF)
  225.     {
  226.       break;
  227.     }
  228.       
  229.       if (c == '\n') /* change all LFs to CR/LF */
  230.     {
  231.       b[i++] = '\r';
  232.       n++;
  233.     }
  234.       
  235.       if(i < n)
  236.         b[i++] = c;
  237.     }
  238.   
  239.   return(i);
  240. }
  241.  
  242.  
  243. /****************************************************************************
  244. read from a file with print translation. return the number read. read approx n
  245. bytes.
  246. ****************************************************************************/
  247. static int printread(FILE *f,char *b,int n)
  248. {
  249.   int i;
  250.  
  251.   i = readfile(b,1, n-1,f);
  252. #if FORMFEED
  253.   if (feof(f) && i>0)
  254.     b[i++] = '\014';
  255. #endif
  256.  
  257.   return(i);
  258. }
  259.  
  260. /****************************************************************************
  261. check for existance of a dir
  262. ****************************************************************************/
  263. static BOOL chkpath(char *path,BOOL report)
  264. {
  265.   fstring path2;
  266.   pstring inbuf,outbuf;
  267.   char *p;
  268.  
  269.   strcpy(path2,path);
  270.   trim_string(path2,NULL,"\\");
  271.   if (!*path2) *path2 = '\\';
  272.  
  273.   bzero(outbuf,smb_size);
  274.   set_message(outbuf,0,4 + strlen(path2),True);
  275.   SCVAL(outbuf,smb_com,SMBchkpth);
  276.   SSVAL(outbuf,smb_tid,cnum);
  277.   setup_pkt(outbuf);
  278.  
  279.   p = smb_buf(outbuf);
  280.   *p++ = 4;
  281.   strcpy(p,path2);
  282.  
  283.   send_smb(Client,outbuf);
  284.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  285.  
  286.   if (report && CVAL(inbuf,smb_rcls) != 0)
  287.     DEBUG(2,("chkpath: %s\n",smb_errstr(inbuf)));
  288.  
  289.   return(CVAL(inbuf,smb_rcls) == 0);
  290. }
  291.  
  292.  
  293. /****************************************************************************
  294. send a message
  295. ****************************************************************************/
  296. static void send_message(char *inbuf,char *outbuf)
  297. {
  298.   int total_len = 0;
  299.  
  300.   char *p;
  301.   int grp_id;
  302.  
  303.   /* send a SMBsendstrt command */
  304.   bzero(outbuf,smb_size);
  305.   set_message(outbuf,0,0,True);
  306.   CVAL(outbuf,smb_com) = SMBsendstrt;
  307.   SSVAL(outbuf,smb_tid,cnum);
  308.  
  309.   p = smb_buf(outbuf);
  310.   *p++ = 4;
  311.   strcpy(p,username);
  312.   p = skip_string(p,1);
  313.   *p++ = 4;
  314.   strcpy(p,desthost);
  315.   p = skip_string(p,1);
  316.  
  317.   set_message(outbuf,0,PTR_DIFF(p,smb_buf(outbuf)),False);
  318.  
  319.   send_smb(Client,outbuf);
  320.   
  321.  
  322.   if (!receive_smb(Client,inbuf,SHORT_TIMEOUT) || CVAL(inbuf,smb_rcls) != 0)
  323.     {
  324.       printf("SMBsendstrt failed. (%s)\n",smb_errstr(inbuf));
  325.       return;
  326.     }
  327.  
  328.   grp_id = SVAL(inbuf,smb_vwv0);
  329.  
  330.   printf("Connected. Type your message, ending it with a Control-D\n");
  331.  
  332.   while (!feof(stdin) && total_len < 1600)
  333.     {
  334.       int maxlen = MIN(1600 - total_len,127);
  335.       pstring msg;
  336.       int l=0;
  337.       int c;
  338.  
  339.       bzero(msg,smb_size);
  340.  
  341.       for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++)
  342.     {
  343.       if (c == '\n')
  344.         msg[l++] = '\r';
  345.       msg[l] = c;   
  346.     }
  347.  
  348.       CVAL(outbuf,smb_com) = SMBsendtxt;
  349.  
  350.       set_message(outbuf,1,l+3,True);
  351.  
  352.       SSVAL(outbuf,smb_vwv0,grp_id);
  353.  
  354.       p = smb_buf(outbuf);
  355.       *p = 1;
  356.       SSVAL(p,1,l);
  357.       memcpy(p+3,msg,l);
  358.  
  359.       send_smb(Client,outbuf);
  360.       
  361.  
  362.       if (!receive_smb(Client,inbuf,SHORT_TIMEOUT) || CVAL(inbuf,smb_rcls) != 0)
  363.     {
  364.       printf("SMBsendtxt failed (%s)\n",smb_errstr(inbuf));
  365.       return;
  366.     }      
  367.  
  368.       total_len += l;
  369.     }
  370.  
  371.   if (total_len >= 1600)
  372.     printf("the message was truncated to 1600 bytes ");
  373.   else
  374.     printf("sent %d bytes ",total_len);
  375.  
  376.   printf("(status was %d-%d)\n",CVAL(inbuf,smb_rcls),SVAL(inbuf,smb_err));
  377.  
  378.   CVAL(outbuf,smb_com) = SMBsendend;
  379.   set_message(outbuf,1,0,False);
  380.   SSVAL(outbuf,smb_vwv0,grp_id);
  381.  
  382.   send_smb(Client,outbuf);
  383.   
  384.  
  385.   if (!receive_smb(Client,inbuf,SHORT_TIMEOUT) || CVAL(inbuf,smb_rcls) != 0)
  386.     {
  387.       printf("SMBsendend failed (%s)\n",smb_errstr(inbuf));
  388.       return;
  389.     }      
  390. }
  391.  
  392.  
  393.  
  394. /****************************************************************************
  395. check the space on a device
  396. ****************************************************************************/
  397. static void do_dskattr(void)
  398. {
  399.   pstring inbuf,outbuf;
  400.  
  401.   bzero(outbuf,smb_size);
  402.   set_message(outbuf,0,0,True);
  403.   CVAL(outbuf,smb_com) = SMBdskattr;
  404.   SSVAL(outbuf,smb_tid,cnum);
  405.   setup_pkt(outbuf);
  406.  
  407.   send_smb(Client,outbuf);
  408.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  409.  
  410.   if (CVAL(inbuf,smb_rcls) != 0) 
  411.     DEBUG(0,("Error in dskattr: %s\n",smb_errstr(inbuf)));      
  412.  
  413.   DEBUG(0,("\n\t\t%d blocks of size %d. %d blocks available\n",
  414.     SVAL(inbuf,smb_vwv0),
  415.     SVAL(inbuf,smb_vwv1)*SVAL(inbuf,smb_vwv2),
  416.     SVAL(inbuf,smb_vwv3)));
  417. }
  418.  
  419. /****************************************************************************
  420. show cd/pwd
  421. ****************************************************************************/
  422. static void cmd_pwd(void)
  423. {
  424.   DEBUG(0,("Current directory is %s",CNV_LANG(service)));
  425.   DEBUG(0,("%s\n",CNV_LANG(cur_dir)));
  426. }
  427.  
  428.  
  429. /****************************************************************************
  430. change directory - inner section
  431. ****************************************************************************/
  432. static void do_cd(char *newdir)
  433. {
  434.   char *p = newdir;
  435.   pstring saved_dir;
  436.   pstring dname;
  437.       
  438.   /* Save the current directory in case the
  439.      new directory is invalid */
  440.   strcpy(saved_dir, cur_dir);
  441.   if (*p == '\\')
  442.     strcpy(cur_dir,p);
  443.   else
  444.     strcat(cur_dir,p);
  445.   if (*(cur_dir+strlen(cur_dir)-1) != '\\') {
  446.     strcat(cur_dir, "\\");
  447.   }
  448.   dos_clean_name(cur_dir);
  449.   strcpy(dname,cur_dir);
  450.   strcat(cur_dir,"\\");
  451.   dos_clean_name(cur_dir);
  452.  
  453.   if (!strequal(cur_dir,"\\"))
  454.     if (!chkpath(dname,True))
  455.       strcpy(cur_dir,saved_dir);
  456.  
  457.   strcpy(cd_path,cur_dir);
  458. }
  459.  
  460. /****************************************************************************
  461. change directory
  462. ****************************************************************************/
  463. static void cmd_cd(char *inbuf,char *outbuf)
  464. {
  465.   fstring buf;
  466.  
  467.   if (next_token(NULL,buf,NULL))
  468.     do_cd(buf);
  469.   else
  470.     DEBUG(0,("Current directory is %s\n",CNV_LANG(cur_dir)));
  471. }
  472.  
  473.  
  474. /****************************************************************************
  475.   display info about a file
  476.   ****************************************************************************/
  477. static void display_finfo(file_info *finfo)
  478. {
  479.   if (do_this_one(finfo)) {
  480.     time_t t = finfo->mtime; /* the time is assumed to be passed as GMT */
  481.     DEBUG(0,("  %-30s%7.7s%10d  %s",
  482.          CNV_LANG(finfo->name),
  483.        attrib_string(finfo->mode),
  484.        finfo->size,
  485.        asctime(LocalTime(&t))));
  486.     dir_total += finfo->size;
  487.   }
  488. }
  489.  
  490.  
  491. /****************************************************************************
  492.   do a directory listing, calling fn on each file found. Use the TRANSACT2
  493.   call for long filenames
  494.   ****************************************************************************/
  495. static int do_long_dir(char *inbuf,char *outbuf,char *Mask,int attribute,void (*fn)(),BOOL recurse_dir)
  496. {
  497.   int max_matches = 512;
  498.   int info_level = Protocol<PROTOCOL_NT1?1:260; /* NT uses 260, OS/2 uses 2. Both accept 1. */
  499.   char *p;
  500.   pstring mask;
  501.   file_info finfo;
  502.   int i;
  503.   char *dirlist = NULL;
  504.   int dirlist_len = 0;
  505.   int total_received = 0;
  506.   BOOL First = True;
  507.   char *resp_data=NULL;
  508.   char *resp_param=NULL;
  509.   int resp_data_len = 0;
  510.   int resp_param_len=0;
  511.  
  512.   int ff_resume_key = 0;
  513.   int ff_searchcount=0;
  514.   int ff_eos=0;
  515.   int ff_lastname=0;
  516.   int ff_dir_handle=0;
  517.   int loop_count = 0;
  518.  
  519.   uint16 setup;
  520.   pstring param;
  521.  
  522.   strcpy(mask,Mask);
  523.  
  524.   while (ff_eos == 0)
  525.     {
  526.       loop_count++;
  527.       if (loop_count > 200)
  528.     {
  529.       DEBUG(0,("Error: Looping in FIND_NEXT??\n"));
  530.       break;
  531.     }
  532.  
  533.       if (First)
  534.     {
  535.       setup = TRANSACT2_FINDFIRST;
  536.       SSVAL(param,0,attribute); /* attribute */
  537.       SSVAL(param,2,max_matches); /* max count */
  538.       SSVAL(param,4,8+4+2);    /* resume required + close on end + continue */
  539.       SSVAL(param,6,info_level); 
  540.       SIVAL(param,8,0);
  541.       strcpy(param+12,mask);
  542.     }
  543.       else
  544.     {
  545.       setup = TRANSACT2_FINDNEXT;
  546.       SSVAL(param,0,ff_dir_handle);
  547.       SSVAL(param,2,max_matches); /* max count */
  548.       SSVAL(param,4,info_level); 
  549.       SIVAL(param,6,ff_resume_key); /* ff_resume_key */
  550.       SSVAL(param,10,8+4+2);    /* resume required + close on end + continue */
  551.       strcpy(param+12,mask);
  552.  
  553.       DEBUG(5,("hand=0x%X resume=%d ff_lastname=%d mask=%s\n",
  554.            ff_dir_handle,ff_resume_key,ff_lastname,mask));
  555.     }
  556.       /* ??? original code added 1 pad byte after param */
  557.  
  558.       send_trans_request(outbuf,SMBtrans2,NULL,FID_UNUSED,0,
  559.              NULL,param,&setup,
  560.              0,12+strlen(mask)+1,1,
  561.              BUFFER_SIZE,10,0);
  562.  
  563.       if (!receive_trans_response(inbuf,SMBtrans2,
  564.                   &resp_data_len,&resp_param_len,
  565.                       &resp_data,&resp_param))
  566.     {
  567.       DEBUG(3,("FIND%s gave %s\n",First?"FIRST":"NEXT",smb_errstr(inbuf)));
  568.       break;
  569.     }
  570.  
  571.       /* parse out some important return info */
  572.       p = resp_param;
  573.       if (First)
  574.     {
  575.       ff_dir_handle = SVAL(p,0);
  576.       ff_searchcount = SVAL(p,2);
  577.       ff_eos = SVAL(p,4);
  578.       ff_lastname = SVAL(p,8);
  579.     }
  580.       else
  581.     {
  582.       ff_searchcount = SVAL(p,0);
  583.       ff_eos = SVAL(p,2);
  584.       ff_lastname = SVAL(p,6);
  585.     }
  586.  
  587.       if (ff_searchcount == 0) 
  588.     break;
  589.  
  590.       /* point to the data bytes */
  591.       p = resp_data;
  592.  
  593.       /* we might need the lastname for continuations */
  594.       if (ff_lastname > 0)
  595.     {
  596.       switch(info_level)
  597.         {
  598.         case 260:
  599.           ff_resume_key =0;
  600.           StrnCpy(mask,p+ff_lastname,resp_data_len-ff_lastname);
  601.           /* strcpy(mask,p+ff_lastname+94); */
  602.           break;
  603.         case 1:
  604.           strcpy(mask,p + ff_lastname + 1);
  605.           ff_resume_key = 0;
  606.           break;
  607.         }
  608.     }
  609.       else
  610.     strcpy(mask,"");
  611.   
  612.       /* and add them to the dirlist pool */
  613.       dirlist = Realloc(dirlist,dirlist_len + resp_data_len);
  614.  
  615.       if (!dirlist)
  616.     {
  617.       DEBUG(0,("Failed to expand dirlist\n"));
  618.       break;
  619.     }
  620.  
  621.       /* put in a length for the last entry, to ensure we can chain entries 
  622.      into the next packet */
  623.       {
  624.     char *p2;
  625.     for (p2=p,i=0;i<(ff_searchcount-1);i++)
  626.       p2 += interpret_long_filename(info_level,p2,NULL);
  627.     SSVAL(p2,0,resp_data_len - PTR_DIFF(p2,p));
  628.       }
  629.  
  630.       /* grab the data for later use */
  631.       memcpy(dirlist+dirlist_len,p,resp_data_len);
  632.       dirlist_len += resp_data_len;
  633.  
  634.       total_received += ff_searchcount;
  635.  
  636.       if (resp_data) free(resp_data); resp_data = NULL;
  637.       if (resp_param) free(resp_param); resp_param = NULL;
  638.  
  639.       DEBUG(3,("received %d entries (eos=%d resume=%d)\n",
  640.            ff_searchcount,ff_eos,ff_resume_key));
  641.  
  642.       First = False;
  643.     }
  644.  
  645.   if (!fn)
  646.     for (p=dirlist,i=0;i<total_received;i++)
  647.       {
  648.     p += interpret_long_filename(info_level,p,&finfo);
  649.     display_finfo(&finfo);
  650.       }
  651.  
  652.   for (p=dirlist,i=0;i<total_received;i++)
  653.     {
  654.       p += interpret_long_filename(info_level,p,&finfo);
  655.       dir_action(inbuf,outbuf,attribute,&finfo,recurse_dir,fn,True);
  656.     }
  657.  
  658.   /* free up the dirlist buffer */
  659.   if (dirlist) free(dirlist);
  660.   return(total_received);
  661. }
  662.  
  663.  
  664. /****************************************************************************
  665.   do a directory listing, calling fn on each file found
  666.   ****************************************************************************/
  667. static int do_short_dir(char *inbuf,char *outbuf,char *Mask,int attribute,void (*fn)(),BOOL recurse_dir)
  668. {
  669.   char *p;
  670.   int received = 0;
  671.   BOOL first = True;
  672.   char status[21];
  673.   int num_asked = (max_xmit - 100)/DIR_STRUCT_SIZE;
  674.   int num_received = 0;
  675.   int i;
  676.   char *dirlist = NULL;
  677.   pstring mask;
  678.   file_info finfo;
  679.  
  680.   finfo = def_finfo;
  681.  
  682.   bzero(status,21);
  683.  
  684.   strcpy(mask,Mask);
  685.   
  686.   while (1)
  687.     {
  688.       bzero(outbuf,smb_size);
  689.       if (first)    
  690.     set_message(outbuf,2,5 + strlen(mask),True);
  691.       else
  692.     set_message(outbuf,2,5 + 21,True);
  693.  
  694. #if FFIRST
  695.       if (Protocol >= PROTOCOL_LANMAN1)
  696.     CVAL(outbuf,smb_com) = SMBffirst;
  697.       else
  698. #endif
  699.     CVAL(outbuf,smb_com) = SMBsearch;
  700.  
  701.       SSVAL(outbuf,smb_tid,cnum);
  702.       setup_pkt(outbuf);
  703.  
  704.       SSVAL(outbuf,smb_vwv0,num_asked);
  705.       SSVAL(outbuf,smb_vwv1,attribute);
  706.   
  707.       p = smb_buf(outbuf);
  708.       *p++ = 4;
  709.       
  710.       if (first)
  711.     strcpy(p,mask);
  712.       else
  713.     strcpy(p,"");
  714.       p += strlen(p) + 1;
  715.       
  716.       *p++ = 5;
  717.       if (first)
  718.     SSVAL(p,0,0);
  719.       else
  720.     {
  721.       SSVAL(p,0,21);
  722.       p += 2;
  723.       memcpy(p,status,21);
  724.     }
  725.  
  726.       send_smb(Client,outbuf);
  727.       receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  728.  
  729.       received = SVAL(inbuf,smb_vwv0);
  730.  
  731.       DEBUG(5,("dir received %d\n",received));
  732.  
  733.       DEBUG(6,("errstr=%s\n",smb_errstr(inbuf)));
  734.  
  735.       if (received <= 0) break;
  736.  
  737.       first = False;
  738.  
  739.       dirlist = Realloc(dirlist,(num_received + received)*DIR_STRUCT_SIZE);
  740.  
  741.       if (!dirlist) 
  742.     return 0;
  743.  
  744.       p = smb_buf(inbuf) + 3;
  745.  
  746.       memcpy(dirlist+num_received*DIR_STRUCT_SIZE,
  747.          p,received*DIR_STRUCT_SIZE);
  748.  
  749.       memcpy(status,p + ((received-1)*DIR_STRUCT_SIZE),21);
  750.  
  751.       num_received += received;
  752.  
  753.       if (CVAL(inbuf,smb_rcls) != 0) break;
  754.     }
  755.  
  756. #if FFIRST
  757.   if (!first && Protocol >= PROTOCOL_LANMAN1)
  758.     {
  759.       bzero(outbuf,smb_size);
  760.       CVAL(outbuf,smb_com) = SMBfclose;
  761.  
  762.       SSVAL(outbuf,smb_tid,cnum);
  763.       setup_pkt(outbuf);
  764.  
  765.       p = smb_buf(outbuf);
  766.       *p++ = 4;
  767.       
  768.       strcpy(p,"");
  769.       p += strlen(p) + 1;
  770.       
  771.       *p++ = 5;
  772.       SSVAL(p,0,21);
  773.       p += 2;
  774.       memcpy(p,status,21);
  775.  
  776.       send_smb(Client,outbuf);
  777.       receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  778.  
  779.       if (CVAL(inbuf,smb_rcls) != 0) 
  780.     DEBUG(0,("Error closing search: %s\n",smb_errstr(inbuf)));      
  781.     }
  782. #endif
  783.  
  784.   if (!fn)
  785.     for (p=dirlist,i=0;i<num_received;i++)
  786.       {
  787.     p += interpret_short_filename(p,&finfo);
  788.     display_finfo(&finfo);
  789.       }
  790.  
  791.   for (p=dirlist,i=0;i<num_received;i++)
  792.     {
  793.       p += interpret_short_filename(p,&finfo);
  794.       dir_action(inbuf,outbuf,attribute,&finfo,recurse_dir,fn,False);
  795.     }
  796.  
  797.   if (dirlist) free(dirlist);
  798.   return(num_received);
  799. }
  800.  
  801.  
  802.  
  803. /****************************************************************************
  804.   do a directory listing, calling fn on each file found
  805.   ****************************************************************************/
  806. void do_dir(char *inbuf,char *outbuf,char *Mask,int attribute,void (*fn)(),BOOL recurse_dir)
  807. {
  808.   DEBUG(5,("do_dir(%s,%x,%s)\n",Mask,attribute,BOOLSTR(recurse_dir)));
  809.   if (Protocol >= PROTOCOL_LANMAN2)
  810.     {
  811.       if (do_long_dir(inbuf,outbuf,Mask,attribute,fn,recurse_dir) > 0)
  812.     return;
  813.     }
  814.  
  815.   expand_mask(Mask,False);
  816.   do_short_dir(inbuf,outbuf,Mask,attribute,fn,recurse_dir);
  817.   return;
  818. }
  819.  
  820. /*******************************************************************
  821.   decide if a file should be operated on
  822.   ********************************************************************/
  823. static BOOL do_this_one(file_info *finfo)
  824. {
  825.   if (finfo->mode & aDIR) return(True);
  826.  
  827.   if (newer_than && finfo->mtime < newer_than)
  828.     return(False);
  829.  
  830.   if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH))
  831.     return(False);
  832.  
  833.   return(True);
  834. }
  835.  
  836.  
  837. /*****************************************************************************
  838.  Convert a character pointer in a call_api() response to a form we can use.
  839.  This function contains code to prevent core dumps if the server returns 
  840.  invalid data.
  841. *****************************************************************************/
  842. static char *fix_char_ptr(unsigned int datap, unsigned int converter, char *rdata, int rdrcnt)
  843. {
  844. if( datap == 0 )        /* turn NULL pointers */
  845.   {                /* into zero length strings */
  846.   return "";
  847.   }
  848. else
  849.   {
  850.   unsigned int offset = datap - converter;
  851.  
  852.   if( offset >= rdrcnt )
  853.     {
  854.       DEBUG(1,("bad char ptr: datap=%u, converter=%u, rdata=%lu, rdrcnt=%d>", datap, converter, (unsigned long)rdata, rdrcnt));
  855.     return "<ERROR>";
  856.     }
  857.   else
  858.     {
  859.     return &rdata[offset];
  860.     }
  861.   }
  862. }
  863.  
  864. /****************************************************************************
  865. interpret a short filename structure
  866. The length of the structure is returned
  867. ****************************************************************************/
  868. static int interpret_short_filename(char *p,file_info *finfo)
  869. {
  870.   finfo->mode = CVAL(p,21);
  871.  
  872.   /* this date is converted to GMT by make_unix_date */
  873.   finfo->ctime = make_unix_date(p+22);
  874.   finfo->mtime = finfo->atime = finfo->ctime;
  875.   finfo->size = IVAL(p,26);
  876.   strcpy(finfo->name,p+30);
  877.   
  878.   return(DIR_STRUCT_SIZE);
  879. }
  880.  
  881. /****************************************************************************
  882. interpret a long filename structure - this is mostly guesses at the moment
  883. The length of the structure is returned
  884. The structure of a long filename depends on the info level. 260 is used
  885. by NT and 2 is used by OS/2
  886. ****************************************************************************/
  887. static int interpret_long_filename(int level,char *p,file_info *finfo)
  888. {
  889.   if (finfo)
  890.     memcpy(finfo,&def_finfo,sizeof(*finfo));
  891.  
  892.   switch (level)
  893.     {
  894.     case 1: /* OS/2 understands this */
  895.       if (finfo)
  896.     {
  897.       /* these dates are converted to GMT by make_unix_date */
  898.       finfo->ctime = make_unix_date2(p+4);
  899.       finfo->atime = make_unix_date2(p+8);
  900.       finfo->mtime = make_unix_date2(p+12);
  901.       finfo->size = IVAL(p,16);
  902.       finfo->mode = CVAL(p,24);
  903.       strcpy(finfo->name,p+27);
  904.     }
  905.       return(28 + CVAL(p,26));
  906.  
  907.     case 2: /* this is what OS/2 uses mostly */
  908.       if (finfo)
  909.     {
  910.       /* these dates are converted to GMT by make_unix_date */
  911.       finfo->ctime = make_unix_date2(p+4);
  912.       finfo->atime = make_unix_date2(p+8);
  913.       finfo->mtime = make_unix_date2(p+12);
  914.       finfo->size = IVAL(p,16);
  915.       finfo->mode = CVAL(p,24);
  916.       strcpy(finfo->name,p+31);
  917.     }
  918.       return(32 + CVAL(p,30));
  919.  
  920.       /* levels 3 and 4 are untested */
  921.     case 3:
  922.       if (finfo)
  923.     {
  924.       /* these dates are probably like the other ones */
  925.       finfo->ctime = make_unix_date2(p+8);
  926.       finfo->atime = make_unix_date2(p+12);
  927.       finfo->mtime = make_unix_date2(p+16);
  928.       finfo->size = IVAL(p,20);
  929.       finfo->mode = CVAL(p,28);
  930.       strcpy(finfo->name,p+33);
  931.     }
  932.       return(SVAL(p,4)+4);
  933.  
  934.     case 4:
  935.       if (finfo)
  936.     {
  937.       /* these dates are probably like the other ones */
  938.       finfo->ctime = make_unix_date2(p+8);
  939.       finfo->atime = make_unix_date2(p+12);
  940.       finfo->mtime = make_unix_date2(p+16);
  941.       finfo->size = IVAL(p,20);
  942.       finfo->mode = CVAL(p,28);
  943.       strcpy(finfo->name,p+37);
  944.     }
  945.       return(SVAL(p,4)+4);
  946.  
  947.     case 260: /* NT uses this, but also accepts 2 */
  948.       if (finfo)
  949.     {
  950.       int ret = SVAL(p,0);
  951.       int namelen;
  952.       p += 4; /* next entry offset */
  953.       p += 4; /* fileindex */
  954.  
  955.       /* these dates appear to arrive in a weird way. It seems to
  956.          be localtime plus the serverzone given in the initial
  957.          connect. This is GMT when DST is not in effect and one
  958.          hour from GMT otherwise. Can this really be right??
  959.  
  960.          I suppose this could be called kludge-GMT. Is is the GMT
  961.          you get by using the current DST setting on a different
  962.          localtime. It will be cheap to calculate, I suppose, as
  963.          no DST tables will be needed */
  964.  
  965.       finfo->ctime = interpret_long_date(p); p += 8;
  966.       finfo->atime = interpret_long_date(p); p += 8;
  967.       finfo->mtime = interpret_long_date(p); p += 8; p += 8;
  968.       finfo->size = IVAL(p,0); p += 8;
  969.       p += 8; /* alloc size */
  970.       finfo->mode = CVAL(p,0); p += 4;
  971.       namelen = IVAL(p,0); p += 4;
  972.       p += 4; /* EA size */
  973.       p += 2; /* short name len? */
  974.       p += 24; /* short name? */      
  975.       StrnCpy(finfo->name,p,namelen);
  976.       return(ret);
  977.     }
  978.       return(SVAL(p,0));
  979.     }
  980.  
  981.   DEBUG(1,("Unknown long filename format %d\n",level));
  982.   return(SVAL(p,0));
  983. }
  984.  
  985.  
  986.  
  987.  
  988. /****************************************************************************
  989.   act on the files in a dir listing
  990.   ****************************************************************************/
  991. static void dir_action(char *inbuf,char *outbuf,int attribute,file_info *finfo,BOOL recurse_dir,void (*fn)(),BOOL longdir)
  992. {
  993.  
  994.   if (!((finfo->mode & aDIR) == 0 && *fileselection && 
  995.     !mask_match(finfo->name,fileselection,False,False)) &&
  996.       !(recurse_dir && (strequal(finfo->name,".") || 
  997.             strequal(finfo->name,".."))))
  998.     {
  999.       if (recurse_dir && (finfo->mode & aDIR))
  1000.     {
  1001.       pstring mask2;
  1002.       pstring sav_dir;
  1003.       strcpy(sav_dir,cur_dir);
  1004.       strcat(cur_dir,finfo->name);
  1005.       strcat(cur_dir,"\\");
  1006.       strcpy(mask2,cur_dir);
  1007.  
  1008.       if (!fn)
  1009.         DEBUG(0,("\n%s\n",CNV_LANG(cur_dir)));
  1010.  
  1011.       strcat(mask2,"*");
  1012.  
  1013.       if (longdir)
  1014.         do_long_dir(inbuf,outbuf,mask2,attribute,fn,True);      
  1015.       else
  1016.         do_dir(inbuf,outbuf,mask2,attribute,fn,True);
  1017.  
  1018.       strcpy(cur_dir,sav_dir);
  1019.     }
  1020.       else
  1021.     {
  1022.       if (fn && do_this_one(finfo))
  1023.         fn(finfo);
  1024.     }
  1025.     }
  1026. }
  1027.  
  1028.  
  1029. /****************************************************************************
  1030.   receive a SMB trans or trans2 response allocating the necessary memory
  1031.   ****************************************************************************/
  1032. static BOOL receive_trans_response(char *inbuf,int trans,
  1033.                                    int *data_len,int *param_len,
  1034.                    char **data,char **param)
  1035. {
  1036.   int total_data=0;
  1037.   int total_param=0;
  1038.   int this_data,this_param;
  1039.  
  1040.   *data_len = *param_len = 0;
  1041.  
  1042.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  1043.   show_msg(inbuf);
  1044.  
  1045.   /* sanity check */
  1046.   if (CVAL(inbuf,smb_com) != trans)
  1047.     {
  1048.       DEBUG(0,("Expected %s response, got command 0x%02x\n",
  1049.            trans==SMBtrans?"SMBtrans":"SMBtrans2", CVAL(inbuf,smb_com)));
  1050.       return(False);
  1051.     }
  1052.   if (CVAL(inbuf,smb_rcls) != 0)
  1053.     return(False);
  1054.  
  1055.   /* parse out the lengths */
  1056.   total_data = SVAL(inbuf,smb_tdrcnt);
  1057.   total_param = SVAL(inbuf,smb_tprcnt);
  1058.  
  1059.   /* allocate it */
  1060.   *data = Realloc(*data,total_data);
  1061.   *param = Realloc(*param,total_param);
  1062.  
  1063.   while (1)
  1064.     {
  1065.       this_data = SVAL(inbuf,smb_drcnt);
  1066.       this_param = SVAL(inbuf,smb_prcnt);
  1067.       if (this_data)
  1068.     memcpy(*data + SVAL(inbuf,smb_drdisp),
  1069.            smb_base(inbuf) + SVAL(inbuf,smb_droff),
  1070.            this_data);
  1071.       if (this_param)
  1072.     memcpy(*param + SVAL(inbuf,smb_prdisp),
  1073.            smb_base(inbuf) + SVAL(inbuf,smb_proff),
  1074.            this_param);
  1075.       *data_len += this_data;
  1076.       *param_len += this_param;
  1077.  
  1078.       /* parse out the total lengths again - they can shrink! */
  1079.       total_data = SVAL(inbuf,smb_tdrcnt);
  1080.       total_param = SVAL(inbuf,smb_tprcnt);
  1081.  
  1082.       if (total_data <= *data_len && total_param <= *param_len)
  1083.     break;
  1084.  
  1085.       receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  1086.       show_msg(inbuf);
  1087.  
  1088.       /* sanity check */
  1089.       if (CVAL(inbuf,smb_com) != trans)
  1090.     {
  1091.       DEBUG(0,("Expected %s response, got command 0x%02x\n",
  1092.            trans==SMBtrans?"SMBtrans":"SMBtrans2", CVAL(inbuf,smb_com)));
  1093.       return(False);
  1094.     }
  1095.       if (CVAL(inbuf,smb_rcls) != 0)
  1096.       return(False);
  1097.     }
  1098.   
  1099.   return(True);
  1100. }
  1101.  
  1102.  
  1103. /****************************************************************************
  1104.   get a directory listing
  1105.   ****************************************************************************/
  1106. static void cmd_dir(char *inbuf,char *outbuf)
  1107. {
  1108.   int attribute = aDIR | aSYSTEM | aHIDDEN;
  1109.   pstring mask;
  1110.   fstring buf;
  1111.   char *p=buf;
  1112.  
  1113.   dir_total = 0;
  1114.   strcpy(mask,cur_dir);
  1115.   if(mask[strlen(mask)-1]!='\\')
  1116.     strcat(mask,"\\");
  1117.  
  1118.   if (next_token(NULL,buf,NULL))
  1119.     {
  1120.       if (*p == '\\')
  1121.     strcpy(mask,p);
  1122.       else
  1123.     strcat(mask,p);
  1124.     }
  1125.   else {
  1126.     strcat(mask,"*");
  1127.   }
  1128.  
  1129.   do_dir(inbuf,outbuf,mask,attribute,NULL,recurse);
  1130.  
  1131.   do_dskattr();
  1132.  
  1133.   DEBUG(3, ("Total bytes listed: %d\n", dir_total));
  1134. }
  1135.  
  1136.  
  1137.  
  1138. /****************************************************************************
  1139.   get a file from rname to lname
  1140.   ****************************************************************************/
  1141. static void do_get(char *rname,char *lname,file_info *finfo1)
  1142. {  
  1143.   int handle=0,fnum;
  1144.   uint32 nread=0;
  1145.   char *p;
  1146.   BOOL newhandle = False;
  1147.   char *inbuf,*outbuf;
  1148.   file_info finfo;
  1149.   BOOL close_done = False;
  1150.   BOOL ignore_close_error = False;
  1151.   char *dataptr=NULL;
  1152.   int datalen=0;
  1153.  
  1154.   struct timeval tp_start;
  1155.   GetTimeOfDay(&tp_start);
  1156.  
  1157.   if (finfo1) 
  1158.     finfo = *finfo1;
  1159.   else
  1160.     finfo = def_finfo;
  1161.  
  1162.   if (lowercase)
  1163.     strlower(lname);
  1164.  
  1165.  
  1166.   inbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  1167.   outbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  1168.  
  1169.   if (!inbuf || !outbuf)
  1170.     {
  1171.       DEBUG(0,("out of memory\n"));
  1172.       return;
  1173.     }
  1174.  
  1175.   bzero(outbuf,smb_size);
  1176.   set_message(outbuf,15,1 + strlen(rname),True);
  1177.  
  1178.   CVAL(outbuf,smb_com) = SMBopenX;
  1179.   SSVAL(outbuf,smb_tid,cnum);
  1180.   setup_pkt(outbuf);
  1181.  
  1182.   SSVAL(outbuf,smb_vwv0,0xFF);
  1183.   SSVAL(outbuf,smb_vwv2,1);
  1184.   SSVAL(outbuf,smb_vwv3,(DENY_NONE<<4));
  1185.   SSVAL(outbuf,smb_vwv4,aSYSTEM | aHIDDEN);
  1186.   SSVAL(outbuf,smb_vwv5,aSYSTEM | aHIDDEN);
  1187.   SSVAL(outbuf,smb_vwv8,1);
  1188.   
  1189.   p = smb_buf(outbuf);
  1190.   strcpy(p,rname);
  1191.   p = skip_string(p,1);
  1192.  
  1193.   /* do a chained openX with a readX? */
  1194. #if 1
  1195.   if (finfo.size > 0)
  1196.     {
  1197.       DEBUG(3,("Chaining readX wth openX\n"));
  1198.       SSVAL(outbuf,smb_vwv0,SMBreadX);
  1199.       SSVAL(outbuf,smb_vwv1,smb_offset(p,outbuf));
  1200.       bzero(p,200);
  1201.       p -= smb_wct;
  1202.       SSVAL(p,smb_wct,10);
  1203.       SSVAL(p,smb_vwv0,0xFF);
  1204.       SSVAL(p,smb_vwv5,MIN(max_xmit-500,finfo.size));
  1205.       SSVAL(p,smb_vwv9,MIN(BUFFER_SIZE,finfo.size));
  1206.       smb_setlen(outbuf,smb_len(outbuf)+11*2+1);  
  1207.     }
  1208. #endif
  1209.  
  1210.   if(!strcmp(lname,"-"))
  1211.     handle = fileno(stdout);
  1212.   else 
  1213.     {
  1214.       handle = creat(lname,0644);
  1215.       newhandle = True;
  1216.     }
  1217.   if (handle < 0)
  1218.     {
  1219.       DEBUG(0,("Error opening local file %s\n",lname));
  1220.       free(inbuf);free(outbuf);
  1221.       return;
  1222.     }
  1223.  
  1224.   send_smb(Client,outbuf);
  1225.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  1226.  
  1227.   if (CVAL(inbuf,smb_rcls) != 0)
  1228.     {
  1229.       if (CVAL(inbuf,smb_rcls) == ERRSRV &&
  1230.       SVAL(inbuf,smb_err) == ERRnoresource &&
  1231.       reopen_connection(inbuf,outbuf))
  1232.     {
  1233.       do_get(rname,lname,finfo1);
  1234.       return;
  1235.     }
  1236.       DEBUG(0,("%s opening remote file %s\n",smb_errstr(inbuf),CNV_LANG(rname)));
  1237.       if(newhandle)
  1238.     close(handle);
  1239.       free(inbuf);free(outbuf);
  1240.       return;
  1241.     }
  1242.  
  1243.   strcpy(finfo.name,rname);
  1244.  
  1245.   if (!finfo1)
  1246.     {
  1247.       finfo.mode = SVAL(inbuf,smb_vwv3);
  1248.       /* these times arrive as LOCAL time, using the DST offset 
  1249.      corresponding to that time, we convert them to GMT */
  1250.       finfo.mtime = make_unix_date3(inbuf+smb_vwv4);
  1251.       finfo.atime = finfo.ctime = finfo.mtime;
  1252.       finfo.size = IVAL(inbuf,smb_vwv6);
  1253.     }
  1254.  
  1255.   DEBUG(3,("file %s attrib 0x%X\n",CNV_LANG(finfo.name),finfo.mode));
  1256.  
  1257.   fnum = SVAL(inbuf,smb_vwv2);
  1258.  
  1259.   /* we might have got some data from a chained readX */
  1260.   if (SVAL(inbuf,smb_vwv0) == SMBreadX)
  1261.     {
  1262.       p = (smb_base(inbuf)+SVAL(inbuf,smb_vwv1)) - smb_wct;
  1263.       datalen = SVAL(p,smb_vwv5);
  1264.       dataptr = smb_base(inbuf) + SVAL(p,smb_vwv6);
  1265.     }
  1266.   else
  1267.     {
  1268.       dataptr = NULL;
  1269.       datalen = 0;
  1270.     }
  1271.  
  1272.  
  1273.   DEBUG(2,("getting file %s of size %d bytes as %s ",
  1274.        CNV_LANG(finfo.name),
  1275.        finfo.size,
  1276.        lname));
  1277.  
  1278.   while (nread < finfo.size && !close_done)
  1279.     {
  1280.       int method = -1;
  1281.       static BOOL can_chain_close = True;
  1282.  
  1283.       p=NULL;
  1284.       
  1285.       DEBUG(3,("nread=%d max_xmit=%d fsize=%d\n",nread,max_xmit,finfo.size));
  1286.  
  1287.       /* 3 possible read types. readbraw if a large block is required.
  1288.      readX + close if not much left and read if neither is supported */
  1289.  
  1290.       /* we might have already read some data from a chained readX */
  1291.       if (dataptr && datalen>0)
  1292.     method=3;
  1293.  
  1294.       /* if we can finish now then readX+close */
  1295.       if (method<0 && can_chain_close && (Protocol >= PROTOCOL_LANMAN1) && 
  1296.       ((finfo.size - nread) < 
  1297.        (max_xmit - (2*smb_size + 13*SIZEOFWORD + 300))))
  1298.     method = 0;
  1299.  
  1300.       /* if we support readraw then use that */
  1301.       if (method<0 && readbraw_supported)
  1302.     method = 1;
  1303.  
  1304.       /* if we can then use readX */
  1305.       if (method<0 && (Protocol >= PROTOCOL_LANMAN1))
  1306.     method = 2;
  1307.  
  1308.       switch (method)
  1309.     {
  1310.       /* use readX */
  1311.     case 0:
  1312.     case 2:
  1313.       if (method == 0)
  1314.         close_done = True;
  1315.         
  1316.       /* use readX + close */
  1317.       bzero(outbuf,smb_size);
  1318.       set_message(outbuf,10,0,True);
  1319.       CVAL(outbuf,smb_com) = SMBreadX;
  1320.       SSVAL(outbuf,smb_tid,cnum);
  1321.       setup_pkt(outbuf);
  1322.       
  1323.       if (close_done)
  1324.         {
  1325.           CVAL(outbuf,smb_vwv0) = SMBclose;
  1326.           SSVAL(outbuf,smb_vwv1,smb_offset(smb_buf(outbuf),outbuf));
  1327.         }
  1328.       else
  1329.         CVAL(outbuf,smb_vwv0) = 0xFF;          
  1330.       
  1331.       SSVAL(outbuf,smb_vwv2,fnum);
  1332.       SIVAL(outbuf,smb_vwv3,nread);
  1333.       SSVAL(outbuf,smb_vwv5,MIN(max_xmit-200,finfo.size - nread));
  1334.       SSVAL(outbuf,smb_vwv6,0);
  1335.       SIVAL(outbuf,smb_vwv7,0);
  1336.       SSVAL(outbuf,smb_vwv9,MIN(BUFFER_SIZE,finfo.size-nread));
  1337.       
  1338.       if (close_done)
  1339.         {
  1340.           p = smb_buf(outbuf);
  1341.           bzero(p,9);
  1342.           
  1343.           CVAL(p,0) = 3;
  1344.           SSVAL(p,1,fnum);
  1345.           SIVALS(p,3,-1);
  1346.           
  1347.           /* now set the total packet length */
  1348.           smb_setlen(outbuf,smb_len(outbuf)+9);
  1349.         }
  1350.       
  1351.       send_smb(Client,outbuf);
  1352.       receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  1353.       
  1354.       if (CVAL(inbuf,smb_rcls) != 0)
  1355.         {
  1356.           DEBUG(0,("Error %s reading remote file\n",smb_errstr(inbuf)));
  1357.           break;
  1358.         }
  1359.       
  1360.       if (close_done &&
  1361.           SVAL(inbuf,smb_vwv0) != SMBclose)
  1362.         {
  1363.           /* NOTE: WfWg sometimes just ignores the chained
  1364.          command! This seems to break the spec? */
  1365.           DEBUG(3,("Rejected chained close?\n"));
  1366.           close_done = False;
  1367.           can_chain_close = False;
  1368.           ignore_close_error = True;
  1369.         }
  1370.       
  1371.       datalen = SVAL(inbuf,smb_vwv5);
  1372.       dataptr = smb_base(inbuf) + SVAL(inbuf,smb_vwv6);
  1373.       break;
  1374.  
  1375.       /* use readbraw */
  1376.     case 1:
  1377.       {
  1378.         static int readbraw_size = BUFFER_SIZE;
  1379.       
  1380.         extern int Client;
  1381.         bzero(outbuf,smb_size);
  1382.         set_message(outbuf,8,0,True);
  1383.         CVAL(outbuf,smb_com) = SMBreadbraw;
  1384.         SSVAL(outbuf,smb_tid,cnum);
  1385.         setup_pkt(outbuf);
  1386.         SSVAL(outbuf,smb_vwv0,fnum);
  1387.         SIVAL(outbuf,smb_vwv1,nread);
  1388.         SSVAL(outbuf,smb_vwv3,MIN(finfo.size-nread,readbraw_size));
  1389.         SSVAL(outbuf,smb_vwv4,0);
  1390.         SIVALS(outbuf,smb_vwv5,-1);
  1391.         send_smb(Client,outbuf);
  1392.  
  1393.         /* Now read the raw data into the buffer and write it */      
  1394.         if(read_smb_length(Client,inbuf,0) == -1) {
  1395.           DEBUG(0,("Failed to read length in readbraw\n"));        
  1396.           exit(1);
  1397.         }
  1398.         
  1399.         /* Even though this is not an smb message, smb_len
  1400.            returns the generic length of an smb message */
  1401.         datalen = smb_len(inbuf);
  1402.  
  1403.         if (datalen == 0)
  1404.           {
  1405.         /* we got a readbraw error */
  1406.         DEBUG(4,("readbraw error - reducing size\n"));
  1407.         readbraw_size = (readbraw_size * 9) / 10;
  1408.         
  1409.         if (readbraw_size < max_xmit)
  1410.           {
  1411.             DEBUG(0,("disabling readbraw\n"));
  1412.             readbraw_supported = False;
  1413.           }
  1414.         
  1415.         dataptr=NULL;
  1416.         continue;
  1417.           }
  1418.  
  1419.         if(read_data(Client,inbuf,datalen) != datalen) {
  1420.           DEBUG(0,("Failed to read data in readbraw\n"));
  1421.           exit(1);
  1422.         }
  1423.         dataptr = inbuf;
  1424.       }
  1425.       break;
  1426.  
  1427.     case 3:
  1428.       /* we've already read some data with a chained readX */
  1429.       break;
  1430.  
  1431.     default:
  1432.       /* use plain read */
  1433.       bzero(outbuf,smb_size);
  1434.       set_message(outbuf,5,0,True);
  1435.       CVAL(outbuf,smb_com) = SMBread;
  1436.       SSVAL(outbuf,smb_tid,cnum);
  1437.       setup_pkt(outbuf);
  1438.  
  1439.       SSVAL(outbuf,smb_vwv0,fnum);
  1440.       SSVAL(outbuf,smb_vwv1,MIN(max_xmit-200,finfo.size - nread));
  1441.       SIVAL(outbuf,smb_vwv2,nread);
  1442.       SSVAL(outbuf,smb_vwv4,finfo.size - nread);
  1443.  
  1444.       send_smb(Client,outbuf);
  1445.       receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  1446.  
  1447.       if (CVAL(inbuf,smb_rcls) != 0)
  1448.         {
  1449.           DEBUG(0,("Error %s reading remote file\n",smb_errstr(inbuf)));
  1450.           break;
  1451.         }
  1452.  
  1453.       datalen = SVAL(inbuf,smb_vwv0);
  1454.       dataptr = smb_buf(inbuf) + 3;
  1455.       break;
  1456.     }
  1457.  
  1458.       if (writefile(handle,dataptr,datalen) != datalen)
  1459.     {
  1460.       DEBUG(0,("Error writing local file\n"));
  1461.       break;
  1462.     }
  1463.       
  1464.       nread += datalen;
  1465.       if (datalen == 0) 
  1466.     {
  1467.       DEBUG(0,("Error reading file %s. Got %d bytes\n",CNV_LANG(rname),nread));
  1468.       break;
  1469.     }
  1470.  
  1471.       dataptr=NULL;
  1472.       datalen=0;
  1473.     }
  1474.  
  1475.  
  1476.  
  1477.   if (!close_done)
  1478.     {
  1479.       bzero(outbuf,smb_size);
  1480.       set_message(outbuf,3,0,True);
  1481.       CVAL(outbuf,smb_com) = SMBclose;
  1482.       SSVAL(outbuf,smb_tid,cnum);
  1483.       setup_pkt(outbuf);
  1484.       
  1485.       SSVAL(outbuf,smb_vwv0,fnum);
  1486.       SIVALS(outbuf,smb_vwv1,-1);
  1487.       
  1488.       send_smb(Client,outbuf);
  1489.       receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  1490.       
  1491.       if (!ignore_close_error && CVAL(inbuf,smb_rcls) != 0)
  1492.     {
  1493.       DEBUG(0,("Error %s closing remote file\n",smb_errstr(inbuf)));
  1494.       if(newhandle)
  1495.         close(handle);
  1496.       free(inbuf);free(outbuf);
  1497.       return;
  1498.     }
  1499.     }
  1500.  
  1501.   if(newhandle)
  1502.     close(handle);
  1503.  
  1504.   if (archive_level >= 2 && (finfo.mode & aARCH)) {
  1505.     bzero(outbuf,smb_size);
  1506.     set_message(outbuf,8,strlen(rname)+4,True);
  1507.     CVAL(outbuf,smb_com) = SMBsetatr;
  1508.     SSVAL(outbuf,smb_tid,cnum);
  1509.     setup_pkt(outbuf);
  1510.     SSVAL(outbuf,smb_vwv0,finfo.mode & ~(aARCH));
  1511.     SIVALS(outbuf,smb_vwv1,0);
  1512.     p = smb_buf(outbuf);
  1513.     *p++ = 4;
  1514.     strcpy(p,rname);
  1515.     p += strlen(p)+1;
  1516.     *p++ = 4;
  1517.     *p = 0;
  1518.     send_smb(Client,outbuf);
  1519.     receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  1520.   }
  1521.  
  1522.   {
  1523.     struct timeval tp_end;
  1524.     int this_time;
  1525.  
  1526.     GetTimeOfDay(&tp_end);
  1527.     this_time = 
  1528.       (tp_end.tv_sec - tp_start.tv_sec)*1000 +
  1529.     (tp_end.tv_usec - tp_start.tv_usec)/1000;
  1530.     get_total_time_ms += this_time;
  1531.     get_total_size += finfo.size;
  1532.  
  1533.     DEBUG(1,("(%g kb/s) (average %g kb/s)\n",
  1534.          finfo.size / (1.024*this_time + 1.0e-4),
  1535.          get_total_size / (1.024*get_total_time_ms)));
  1536.   }
  1537.  
  1538.   free(inbuf);free(outbuf);
  1539. }
  1540.  
  1541.  
  1542. /****************************************************************************
  1543.   get a file
  1544.   ****************************************************************************/
  1545. static void cmd_get(void)
  1546. {
  1547.   pstring lname;
  1548.   pstring rname;
  1549.   char *p;
  1550.  
  1551.   strcpy(rname,cur_dir);
  1552.   strcat(rname,"\\");
  1553.  
  1554.   p = rname + strlen(rname);
  1555.  
  1556.   if (!next_token(NULL,p,NULL)) {
  1557.     DEBUG(0,("get <filename>\n"));
  1558.     return;
  1559.   }
  1560.   strcpy(lname,p);
  1561.   dos_clean_name(rname);
  1562.     
  1563.   next_token(NULL,lname,NULL);
  1564.  
  1565.   do_get(rname,lname,NULL);
  1566. }
  1567.  
  1568.  
  1569. /****************************************************************************
  1570.   do a mget operation on one file
  1571.   ****************************************************************************/
  1572. static void do_mget(file_info *finfo)
  1573. {
  1574.   pstring rname;
  1575.   pstring quest;
  1576.  
  1577.   if (strequal(finfo->name,".") || strequal(finfo->name,".."))
  1578.     return;
  1579.  
  1580.   if (abort_mget)
  1581.     {
  1582.       DEBUG(0,("mget aborted\n"));
  1583.       return;
  1584.     }
  1585.  
  1586.   if (finfo->mode & aDIR)
  1587.     sprintf(quest,"Get directory %s? ",CNV_LANG(finfo->name));
  1588.   else
  1589.     sprintf(quest,"Get file %s? ",CNV_LANG(finfo->name));
  1590.  
  1591.   if (prompt && !yesno(quest)) return;
  1592.  
  1593.   if (finfo->mode & aDIR)
  1594.     {
  1595.       pstring saved_curdir;
  1596.       pstring mget_mask;
  1597.       char *inbuf,*outbuf;
  1598.  
  1599.       inbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  1600.       outbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  1601.  
  1602.       if (!inbuf || !outbuf)
  1603.     {
  1604.       DEBUG(0,("out of memory\n"));
  1605.       return;
  1606.     }
  1607.  
  1608.       strcpy(saved_curdir,cur_dir);
  1609.  
  1610.       strcat(cur_dir,finfo->name);
  1611.       strcat(cur_dir,"\\");
  1612.  
  1613.       unix_format(finfo->name);
  1614.       {
  1615.     if (lowercase)
  1616.       strlower(finfo->name);
  1617.  
  1618.     if (!directory_exist(finfo->name,NULL) && 
  1619.         sys_mkdir(finfo->name,0777) != 0) 
  1620.       {
  1621.         DEBUG(0,("failed to create directory %s\n",CNV_LANG(finfo->name)));
  1622.         strcpy(cur_dir,saved_curdir);
  1623.         free(inbuf);free(outbuf);
  1624.         return;
  1625.       }
  1626.  
  1627.     if (sys_chdir(finfo->name) != 0)
  1628.       {
  1629.         DEBUG(0,("failed to chdir to directory %s\n",CNV_LANG(finfo->name)));
  1630.         strcpy(cur_dir,saved_curdir);
  1631.         free(inbuf);free(outbuf);
  1632.         return;
  1633.       }
  1634.       }       
  1635.  
  1636.       strcpy(mget_mask,cur_dir);
  1637.       strcat(mget_mask,"*");
  1638.       
  1639.       do_dir((char *)inbuf,(char *)outbuf,
  1640.          mget_mask,aSYSTEM | aHIDDEN | aDIR,do_mget,False);
  1641.       chdir("..");
  1642.       strcpy(cur_dir,saved_curdir);
  1643.       free(inbuf);free(outbuf);
  1644.     }
  1645.   else
  1646.     {
  1647.       strcpy(rname,cur_dir);
  1648.       strcat(rname,finfo->name);
  1649.       do_get(rname,finfo->name,finfo);
  1650.     }
  1651. }
  1652.  
  1653. /****************************************************************************
  1654. view the file using the pager
  1655. ****************************************************************************/
  1656. static void cmd_more(void)
  1657. {
  1658.   fstring rname,lname,tmpname,pager_cmd;
  1659.   char *pager;
  1660.  
  1661.   strcpy(rname,cur_dir);
  1662.   strcat(rname,"\\");
  1663.   sprintf(tmpname,"%s/smbmore.%d",tmpdir(),(int)getpid());
  1664.   strcpy(lname,tmpname);
  1665.  
  1666.   if (!next_token(NULL,rname+strlen(rname),NULL)) {
  1667.     DEBUG(0,("more <filename>\n"));
  1668.     return;
  1669.   }
  1670.   dos_clean_name(rname);
  1671.  
  1672.   do_get(rname,lname,NULL);
  1673.  
  1674.   pager=getenv("PAGER");
  1675.   sprintf(pager_cmd,"%s %s",(pager? pager:PAGER), tmpname);
  1676.   system(pager_cmd);
  1677.   unlink(tmpname);
  1678. }
  1679.  
  1680.  
  1681.  
  1682. /****************************************************************************
  1683. do a mget command
  1684. ****************************************************************************/
  1685. static void cmd_mget(char *inbuf,char *outbuf)
  1686. {
  1687.   int attribute = aSYSTEM | aHIDDEN;
  1688.   pstring mget_mask;
  1689.   fstring buf;
  1690.   char *p=buf;
  1691.  
  1692.   *mget_mask = 0;
  1693.  
  1694.   if (recurse)
  1695.     attribute |= aDIR;
  1696.  
  1697.   abort_mget = False;
  1698.  
  1699.   while (next_token(NULL,p,NULL))
  1700.     {
  1701.       strcpy(mget_mask,cur_dir);
  1702.       if(mget_mask[strlen(mget_mask)-1]!='\\')
  1703.     strcat(mget_mask,"\\");
  1704.  
  1705.       if (*p == '\\')
  1706.     strcpy(mget_mask,p);
  1707.       else
  1708.     strcat(mget_mask,p);
  1709.       do_dir((char *)inbuf,(char *)outbuf,mget_mask,attribute,do_mget,False);
  1710.     }
  1711.  
  1712.   if (! *mget_mask)
  1713.     {
  1714.       strcpy(mget_mask,cur_dir);
  1715.       if(mget_mask[strlen(mget_mask)-1]!='\\')
  1716.     strcat(mget_mask,"\\");
  1717.       strcat(mget_mask,"*");
  1718.       do_dir((char *)inbuf,(char *)outbuf,mget_mask,attribute,do_mget,False);
  1719.     }
  1720. }
  1721.  
  1722. /****************************************************************************
  1723. make a directory of name "name"
  1724. ****************************************************************************/
  1725. static BOOL do_mkdir(char *name)
  1726. {
  1727.   char *p;
  1728.   char *inbuf,*outbuf;
  1729.  
  1730.   inbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  1731.   outbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  1732.  
  1733.   if (!inbuf || !outbuf)
  1734.     {
  1735.       DEBUG(0,("out of memory\n"));
  1736.       return False;
  1737.     }
  1738.  
  1739.   bzero(outbuf,smb_size);
  1740.   set_message(outbuf,0,2 + strlen(name),True);
  1741.   
  1742.   CVAL(outbuf,smb_com) = SMBmkdir;
  1743.   SSVAL(outbuf,smb_tid,cnum);
  1744.   setup_pkt(outbuf);
  1745.  
  1746.   
  1747.   p = smb_buf(outbuf);
  1748.   *p++ = 4;      
  1749.   strcpy(p,name);
  1750.   
  1751.   send_smb(Client,outbuf);
  1752.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  1753.   
  1754.   if (CVAL(inbuf,smb_rcls) != 0)
  1755.     {
  1756.       DEBUG(0,("%s making remote directory %s\n",
  1757.            smb_errstr(inbuf),CNV_LANG(name)));
  1758.  
  1759.       free(inbuf);free(outbuf);
  1760.       return(False);
  1761.     }
  1762.  
  1763.   free(inbuf);free(outbuf);
  1764.   return(True);
  1765. }
  1766.  
  1767.  
  1768. /****************************************************************************
  1769.   make a directory
  1770.   ****************************************************************************/
  1771. static void cmd_mkdir(char *inbuf,char *outbuf)
  1772. {
  1773.   pstring mask;
  1774.   fstring buf;
  1775.   char *p=buf;
  1776.   
  1777.   strcpy(mask,cur_dir);
  1778.  
  1779.   if (!next_token(NULL,p,NULL))
  1780.     {
  1781.       if (!recurse)
  1782.     DEBUG(0,("mkdir <dirname>\n"));
  1783.       return;
  1784.     }
  1785.   strcat(mask,p);
  1786.  
  1787.   if (recurse)
  1788.     {
  1789.       pstring ddir;
  1790.       pstring ddir2;
  1791.       *ddir2 = 0;
  1792.  
  1793.       strcpy(ddir,mask);
  1794.       trim_string(ddir,".",NULL);
  1795.       p = strtok(ddir,"/\\");
  1796.       while (p)
  1797.     {
  1798.       strcat(ddir2,p);
  1799.       if (!chkpath(ddir2,False))
  1800.         {          
  1801.           do_mkdir(ddir2);
  1802.         }
  1803.       strcat(ddir2,"\\");
  1804.       p = strtok(NULL,"/\\");
  1805.     }     
  1806.     }
  1807.   else
  1808.     do_mkdir(mask);
  1809. }
  1810.  
  1811.  
  1812. /*******************************************************************
  1813.   write to a file using writebraw
  1814.   ********************************************************************/
  1815. static int smb_writeraw(char *outbuf,int fnum,int pos,char *buf,int n)
  1816. {
  1817.   extern int Client;
  1818.   pstring inbuf;
  1819.  
  1820.   bzero(outbuf,smb_size);
  1821.   bzero(inbuf,smb_size);  
  1822.   set_message(outbuf,Protocol>PROTOCOL_COREPLUS?12:10,0,True);
  1823.  
  1824.   CVAL(outbuf,smb_com) = SMBwritebraw;
  1825.   SSVAL(outbuf,smb_tid,cnum);
  1826.   setup_pkt(outbuf);
  1827.  
  1828.   SSVAL(outbuf,smb_vwv0,fnum);
  1829.   SSVAL(outbuf,smb_vwv1,n);
  1830.   SIVAL(outbuf,smb_vwv3,pos);
  1831.   SSVAL(outbuf,smb_vwv7,1);
  1832.  
  1833.   send_smb(Client,outbuf);
  1834.   
  1835.   if (!receive_smb(Client,inbuf,CLIENT_TIMEOUT) || CVAL(inbuf,smb_rcls) != 0)
  1836.     return(0);
  1837.  
  1838.   _smb_setlen(buf-4,n);        /* HACK! XXXX */
  1839.  
  1840.   if (write_socket(Client,buf-4,n+4) != n+4)
  1841.     return(0);
  1842.  
  1843.   if (!receive_smb(Client,inbuf,CLIENT_TIMEOUT) || CVAL(inbuf,smb_rcls) != 0) {
  1844.     DEBUG(0,("Error writing remote file (2)\n"));
  1845.     return(0);
  1846.   }
  1847.   return(SVAL(inbuf,smb_vwv0));
  1848. }
  1849.       
  1850.  
  1851.  
  1852. /*******************************************************************
  1853.   write to a file
  1854.   ********************************************************************/
  1855. static int smb_writefile(char *outbuf,int fnum,int pos,char *buf,int n)
  1856. {
  1857.   pstring inbuf;
  1858.  
  1859.   if (writebraw_supported && n > (max_xmit-200)) 
  1860.     return(smb_writeraw(outbuf,fnum,pos,buf,n));
  1861.  
  1862.   bzero(outbuf,smb_size);
  1863.   bzero(inbuf,smb_size);
  1864.   set_message(outbuf,5,n + 3,True);
  1865.  
  1866.   CVAL(outbuf,smb_com) = SMBwrite;
  1867.   SSVAL(outbuf,smb_tid,cnum);
  1868.   setup_pkt(outbuf);
  1869.  
  1870.   SSVAL(outbuf,smb_vwv0,fnum);
  1871.   SSVAL(outbuf,smb_vwv1,n);
  1872.   SIVAL(outbuf,smb_vwv2,pos);
  1873.   SSVAL(outbuf,smb_vwv4,0);
  1874.   CVAL(smb_buf(outbuf),0) = 1;
  1875.   SSVAL(smb_buf(outbuf),1,n);
  1876.  
  1877.   memcpy(smb_buf(outbuf)+3,buf,n);
  1878.  
  1879.   send_smb(Client,outbuf);
  1880.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  1881.  
  1882.   if (CVAL(inbuf,smb_rcls) != 0) {
  1883.     DEBUG(0,("%s writing remote file\n",smb_errstr(inbuf)));
  1884.     return(0);
  1885.   }
  1886.   return(SVAL(inbuf,smb_vwv0));
  1887. }
  1888.       
  1889.  
  1890.  
  1891. /****************************************************************************
  1892.   put a single file
  1893.   ****************************************************************************/
  1894. static void do_put(char *rname,char *lname,file_info *finfo)
  1895. {
  1896.   int fnum;
  1897.   FILE *f;
  1898.   int nread=0;
  1899.   char *p;
  1900.   char *inbuf,*outbuf; 
  1901.   time_t close_time = finfo->mtime;
  1902.   char *buf=NULL;
  1903.   static int maxwrite=0;
  1904.  
  1905.   struct timeval tp_start;
  1906.   GetTimeOfDay(&tp_start);
  1907.  
  1908.   inbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  1909.   outbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  1910.  
  1911.   if (!inbuf || !outbuf)
  1912.     {
  1913.       DEBUG(0,("out of memory\n"));
  1914.       return;
  1915.     }
  1916.  
  1917.   bzero(outbuf,smb_size);
  1918.   set_message(outbuf,3,2 + strlen(rname),True);
  1919.  
  1920.   if (finfo->mtime == 0 || finfo->mtime == -1)
  1921.     finfo->mtime = finfo->atime = finfo->ctime = time(NULL);
  1922.  
  1923.   CVAL(outbuf,smb_com) = SMBcreate;
  1924.   SSVAL(outbuf,smb_tid,cnum);
  1925.   setup_pkt(outbuf);
  1926.  
  1927.   SSVAL(outbuf,smb_vwv0,finfo->mode);
  1928.   put_dos_date3(outbuf,smb_vwv1,finfo->mtime);
  1929.   
  1930.   p = smb_buf(outbuf);
  1931.   *p++ = 4;      
  1932.   strcpy(p,rname);
  1933.   
  1934.   send_smb(Client,outbuf);
  1935.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  1936.   
  1937.   if (CVAL(inbuf,smb_rcls) != 0)
  1938.     {
  1939.       DEBUG(0,("%s opening remote file %s\n",smb_errstr(inbuf),CNV_LANG(rname)));
  1940.  
  1941.       free(inbuf);free(outbuf);if (buf) free(buf);
  1942.       return;
  1943.     }
  1944.  
  1945.   f = fopen(lname,"r");
  1946.  
  1947.   if (!f)
  1948.     {
  1949.       DEBUG(0,("Error opening local file %s\n",lname));
  1950.       free(inbuf);free(outbuf);
  1951.       return;
  1952.     }
  1953.  
  1954.   
  1955.   fnum = SVAL(inbuf,smb_vwv0);
  1956.   if (finfo->size < 0)
  1957.     finfo->size = file_size(lname);
  1958.   
  1959.   DEBUG(1,("putting file %s of size %d bytes as %s ",lname,finfo->size,CNV_LANG(rname)));
  1960.   
  1961.   if (!maxwrite)
  1962.     maxwrite = writebraw_supported?MAX(max_xmit,BUFFER_SIZE):(max_xmit-200);
  1963.  
  1964.   while (nread < finfo->size)
  1965.     {
  1966.       int n = maxwrite;
  1967.       int ret;
  1968.  
  1969.       n = MIN(n,finfo->size - nread);
  1970.  
  1971.       buf = (char *)Realloc(buf,n+4);
  1972.   
  1973.       fseek(f,nread,SEEK_SET);
  1974.       if ((n = readfile(buf+4,1,n,f)) < 1)
  1975.     {
  1976.       DEBUG(0,("Error reading local file\n"));
  1977.       break;
  1978.     }      
  1979.  
  1980.       ret = smb_writefile(outbuf,fnum,nread,buf+4,n);
  1981.  
  1982.       if (n != ret) {
  1983.     if (!maxwrite) {
  1984.       DEBUG(0,("Error writing file\n"));
  1985.       break;
  1986.     } else {
  1987.       maxwrite /= 2;
  1988.       continue;
  1989.     }
  1990.       }
  1991.  
  1992.       nread += n;
  1993.     }
  1994.  
  1995.  
  1996.  
  1997.   bzero(outbuf,smb_size);
  1998.   set_message(outbuf,3,0,True);
  1999.   CVAL(outbuf,smb_com) = SMBclose;
  2000.   SSVAL(outbuf,smb_tid,cnum);
  2001.   setup_pkt(outbuf);
  2002.  
  2003.   SSVAL(outbuf,smb_vwv0,fnum);  
  2004.   put_dos_date3(outbuf,smb_vwv1,close_time);
  2005.  
  2006.   send_smb(Client,outbuf);
  2007.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  2008.   
  2009.   if (CVAL(inbuf,smb_rcls) != 0)
  2010.     {
  2011.       DEBUG(0,("%s closing remote file %s\n",smb_errstr(inbuf),CNV_LANG(rname)));
  2012.       fclose(f);
  2013.       free(inbuf);free(outbuf);
  2014.       if (buf) free(buf);
  2015.       return;
  2016.     }
  2017.  
  2018.   
  2019.   fclose(f);
  2020.   free(inbuf);free(outbuf);
  2021.   if (buf) free(buf);
  2022.  
  2023.   {
  2024.     struct timeval tp_end;
  2025.     int this_time;
  2026.  
  2027.     GetTimeOfDay(&tp_end);
  2028.     this_time = 
  2029.       (tp_end.tv_sec - tp_start.tv_sec)*1000 +
  2030.     (tp_end.tv_usec - tp_start.tv_usec)/1000;
  2031.     put_total_time_ms += this_time;
  2032.     put_total_size += finfo->size;
  2033.  
  2034.     DEBUG(1,("(%g kb/s) (average %g kb/s)\n",
  2035.          finfo->size / (1.024*this_time + 1.0e-4),
  2036.          put_total_size / (1.024*put_total_time_ms)));
  2037.   }
  2038.  
  2039.  
  2040.  
  2041. /****************************************************************************
  2042.   put a file
  2043.   ****************************************************************************/
  2044. static void cmd_put(void)
  2045. {
  2046.   pstring lname;
  2047.   pstring rname;
  2048.   fstring buf;
  2049.   char *p=buf;
  2050.   file_info finfo;
  2051.   finfo = def_finfo;
  2052.   
  2053.   strcpy(rname,cur_dir);
  2054.   strcat(rname,"\\");
  2055.   
  2056.   
  2057.   if (!next_token(NULL,p,NULL))
  2058.     {
  2059.       DEBUG(0,("put <filename>\n"));
  2060.       return;
  2061.     }
  2062.   strcpy(lname,p);
  2063.   
  2064.   if (next_token(NULL,p,NULL))
  2065.     strcat(rname,p);      
  2066.   else
  2067.     strcat(rname,lname);
  2068.  
  2069.   dos_clean_name(rname);
  2070.  
  2071.   {
  2072.     struct stat st;
  2073.     if (!file_exist(lname,&st)) {
  2074.       DEBUG(0,("%s does not exist\n",lname));
  2075.       return;
  2076.     }
  2077.     finfo.mtime = st.st_mtime;
  2078.   }
  2079.  
  2080.   do_put(rname,lname,&finfo);
  2081. }
  2082.  
  2083. /****************************************************************************
  2084.   seek in a directory/file list until you get something that doesn't start with
  2085.   the specified name
  2086.   ****************************************************************************/
  2087. static BOOL seek_list(FILE *f,char *name)
  2088. {
  2089.   pstring s;
  2090.   while (!feof(f))
  2091.     {
  2092.       if (fscanf(f,"%s",s) != 1) return(False);
  2093.       trim_string(s,"./",NULL);
  2094.       if (strncmp(s,name,strlen(name)) != 0)
  2095.     {
  2096.       strcpy(name,s);
  2097.       return(True);
  2098.     }
  2099.     }
  2100.       
  2101.   return(False);
  2102. }
  2103.  
  2104.  
  2105. /****************************************************************************
  2106.   set the file selection mask
  2107.   ****************************************************************************/
  2108. static void cmd_select(void)
  2109. {
  2110.   strcpy(fileselection,"");
  2111.   next_token(NULL,fileselection,NULL);
  2112. }
  2113.  
  2114.  
  2115. /****************************************************************************
  2116.   mput some files
  2117.   ****************************************************************************/
  2118. static void cmd_mput(void)
  2119. {
  2120.   pstring lname;
  2121.   pstring rname;
  2122.   file_info finfo;
  2123.   fstring buf;
  2124.   char *p=buf;
  2125.  
  2126.   finfo = def_finfo;
  2127.  
  2128.   
  2129.   while (next_token(NULL,p,NULL))
  2130.     {
  2131.       struct stat st;
  2132.       pstring cmd;
  2133.       pstring tmpname;
  2134.       FILE *f;
  2135.       
  2136.       sprintf(tmpname,"%s/ls.smb.%d",tmpdir(),(int)getpid());
  2137.       if (recurse)
  2138.     sprintf(cmd,"find . -name \"%s\" -print > %s",p,tmpname);
  2139.       else
  2140.     sprintf(cmd,"/bin/ls %s > %s",p,tmpname);
  2141.       system(cmd);
  2142.  
  2143.       f = fopen(tmpname,"r");
  2144.       if (!f) continue;
  2145.  
  2146.       while (!feof(f))
  2147.     {
  2148.       pstring quest;
  2149.  
  2150.       if (fscanf(f,"%s",lname) != 1) break;
  2151.       trim_string(lname,"./",NULL);
  2152.  
  2153.     again1:
  2154.  
  2155.       /* check if it's a directory */
  2156.       if (directory_exist(lname,&st))
  2157.         {
  2158.           if (!recurse) continue;
  2159.           sprintf(quest,"Put directory %s? ",lname);
  2160.           if (prompt && !yesno(quest)) 
  2161.         {
  2162.           strcat(lname,"/");
  2163.           if (!seek_list(f,lname))
  2164.             break;
  2165.           goto again1;            
  2166.         }
  2167.           
  2168.           strcpy(rname,cur_dir);
  2169.           strcat(rname,lname);
  2170.           if (!chkpath(rname,False) && !do_mkdir(rname)) {
  2171.         strcat(lname,"/");
  2172.         if (!seek_list(f,lname))
  2173.           break;
  2174.         goto again1;                      
  2175.           }
  2176.  
  2177.           continue;
  2178.         }
  2179.       else
  2180.         {
  2181.           sprintf(quest,"Put file %s? ",lname);
  2182.           if (prompt && !yesno(quest)) continue;
  2183.  
  2184.           strcpy(rname,cur_dir);
  2185.           strcat(rname,lname);
  2186.         }
  2187.       dos_format(rname);
  2188.  
  2189.       /* null size so do_put knows to ignore it */
  2190.       finfo.size = -1;
  2191.  
  2192.       /* set the date on the file */
  2193.       finfo.mtime = st.st_mtime;
  2194.  
  2195.       do_put(rname,lname,&finfo);
  2196.     }
  2197.       fclose(f);
  2198.       unlink(tmpname);
  2199.     }
  2200. }
  2201.  
  2202. /****************************************************************************
  2203.   cancel a print job
  2204.   ****************************************************************************/
  2205. static void do_cancel(int job)
  2206. {
  2207.   char *rparam = NULL;
  2208.   char *rdata = NULL;
  2209.   char *p;
  2210.   int rdrcnt,rprcnt;
  2211.   pstring param;
  2212.  
  2213.   bzero(param,sizeof(param));
  2214.  
  2215.   p = param;
  2216.   SSVAL(p,0,81);        /* DosPrintJobDel() */
  2217.   p += 2;
  2218.   strcpy(p,"W");
  2219.   p = skip_string(p,1);
  2220.   strcpy(p,"");
  2221.   p = skip_string(p,1);
  2222.   SSVAL(p,0,job);     
  2223.   p += 2;
  2224.  
  2225.   if (call_api(PTR_DIFF(p,param),0,
  2226.            6,1000,
  2227.            &rprcnt,&rdrcnt,
  2228.            param,NULL,
  2229.            &rparam,&rdata))
  2230.     {
  2231.       int res = SVAL(rparam,0);
  2232.  
  2233.       if (!res)
  2234.     printf("Job %d cancelled\n",job);
  2235.       else
  2236.     printf("Error %d calcelling job %d\n",res,job);
  2237.       return;
  2238.     }
  2239.   else
  2240.   printf("Server refused cancel request\n");
  2241.  
  2242.   if (rparam) free(rparam);
  2243.   if (rdata) free(rdata);
  2244.  
  2245.   return;
  2246. }
  2247.  
  2248.  
  2249. /****************************************************************************
  2250.   cancel a print job
  2251.   ****************************************************************************/
  2252. static void cmd_cancel(char *inbuf,char *outbuf )
  2253. {
  2254.   fstring buf;
  2255.   int job; 
  2256.  
  2257.   if (!connect_as_printer)
  2258.     {
  2259.       DEBUG(0,("WARNING: You didn't use the -P option to smbclient.\n"));
  2260.       DEBUG(0,("Trying to cancel print jobs without -P may fail\n"));
  2261.     }
  2262.  
  2263.   if (!next_token(NULL,buf,NULL)) {
  2264.     printf("cancel <jobid> ...\n");
  2265.     return;
  2266.   }
  2267.   do {
  2268.     job = atoi(buf);
  2269.     do_cancel(job);
  2270.   } while (next_token(NULL,buf,NULL));
  2271. }
  2272.  
  2273.  
  2274. /****************************************************************************
  2275.   get info on a file
  2276.   ****************************************************************************/
  2277. static void cmd_stat(char *inbuf,char *outbuf)
  2278. {
  2279.   fstring buf;
  2280.   pstring param;
  2281.   char *resp_data=NULL;
  2282.   char *resp_param=NULL;
  2283.   int resp_data_len = 0;
  2284.   int resp_param_len=0;
  2285.   char *p;
  2286.   uint16 setup = TRANSACT2_QPATHINFO;
  2287.  
  2288.   if (!next_token(NULL,buf,NULL)) {
  2289.     printf("stat <file>\n");
  2290.     return;
  2291.   }
  2292.  
  2293.   bzero(param,6);
  2294.   SSVAL(param,0,4); /* level */
  2295.   p = param+6;
  2296.   strcpy(p,cur_dir);
  2297.   strcat(p,buf);
  2298.  
  2299.   send_trans_request(outbuf,SMBtrans2,NULL,FID_UNUSED,0,
  2300.              NULL,param,&setup,
  2301.              0,6 + strlen(p)+1,1,
  2302.              BUFFER_SIZE,2,0);
  2303.  
  2304.   receive_trans_response(inbuf,SMBtrans2,
  2305.               &resp_data_len,&resp_param_len,
  2306.               &resp_data,&resp_param);
  2307.  
  2308.   if (resp_data) free(resp_data); resp_data = NULL;
  2309.   if (resp_param) free(resp_param); resp_param = NULL;
  2310. }
  2311.  
  2312.  
  2313. /****************************************************************************
  2314.   print a file
  2315.   ****************************************************************************/
  2316. static void cmd_print(char *inbuf,char *outbuf )
  2317. {
  2318.   int fnum;
  2319.   FILE *f = NULL;
  2320.   uint32 nread=0;
  2321.   pstring lname;
  2322.   pstring rname;
  2323.   char *p;
  2324.  
  2325.   if (!connect_as_printer)
  2326.     {
  2327.       DEBUG(0,("WARNING: You didn't use the -P option to smbclient.\n"));
  2328.       DEBUG(0,("Trying to print without -P may fail\n"));
  2329.     }
  2330.  
  2331.   if (!next_token(NULL,lname,NULL))
  2332.     {
  2333.       DEBUG(0,("print <filename>\n"));
  2334.       return;
  2335.     }
  2336.  
  2337.   strcpy(rname,lname);
  2338.   p = strrchr(rname,'/');
  2339.   if (p)
  2340.     {
  2341.       pstring tname;
  2342.       strcpy(tname,p+1);
  2343.       strcpy(rname,tname);
  2344.     }
  2345.  
  2346.   if ((int)strlen(rname) > 14)
  2347.     rname[14] = 0;
  2348.  
  2349.   if (strequal(lname,"-"))
  2350.     {
  2351.       f = stdin;
  2352.       strcpy(rname,"stdin");
  2353.     }
  2354.   
  2355.   dos_clean_name(rname);
  2356.  
  2357.   bzero(outbuf,smb_size);
  2358.   set_message(outbuf,2,2 + strlen(rname),True);
  2359.   
  2360.   CVAL(outbuf,smb_com) = SMBsplopen;
  2361.   SSVAL(outbuf,smb_tid,cnum);
  2362.   setup_pkt(outbuf);
  2363.  
  2364.   SSVAL(outbuf,smb_vwv0,0);
  2365.   SSVAL(outbuf,smb_vwv1,printmode);
  2366.   
  2367.   p = smb_buf(outbuf);
  2368.   *p++ = 4;      
  2369.   strcpy(p,rname);
  2370.   
  2371.   send_smb(Client,outbuf);
  2372.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  2373.   
  2374.   if (CVAL(inbuf,smb_rcls) != 0)
  2375.     {
  2376.       DEBUG(0,("%s opening printer for %s\n",smb_errstr(inbuf),CNV_LANG(rname)));
  2377.       return;
  2378.     }
  2379.   
  2380.   if (!f)
  2381.     f = fopen(lname,"r");
  2382.   if (!f)
  2383.     {
  2384.       DEBUG(0,("Error opening local file %s\n",lname));
  2385.       return;
  2386.     }
  2387.  
  2388.   
  2389.   fnum = SVAL(inbuf,smb_vwv0);
  2390.   
  2391.   DEBUG(1,("printing file %s as %s\n",lname,CNV_LANG(rname)));
  2392.   
  2393.   while (!feof(f))
  2394.     {
  2395.       int n;
  2396.   
  2397.       bzero(outbuf,smb_size);
  2398.       set_message(outbuf,1,3,True);
  2399.  
  2400.       /* for some strange reason the OS/2 print server can't handle large
  2401.      packets when printing. weird */
  2402.       n = MIN(1024,max_xmit-(smb_len(outbuf)+4));
  2403.  
  2404.       if (translation)
  2405.     n = printread(f,smb_buf(outbuf)+3,(int)(0.95*n));
  2406.       else
  2407.     n = readfile(smb_buf(outbuf)+3,1,n,f);
  2408.       if (n <= 0) 
  2409.     {
  2410.       DEBUG(0,("read gave %d\n",n));
  2411.       break;
  2412.     }
  2413.  
  2414.       smb_setlen(outbuf,smb_len(outbuf) + n);
  2415.  
  2416.       CVAL(outbuf,smb_com) = SMBsplwr;
  2417.       SSVAL(outbuf,smb_tid,cnum);
  2418.       setup_pkt(outbuf);
  2419.  
  2420.       SSVAL(outbuf,smb_vwv0,fnum);
  2421.       SSVAL(outbuf,smb_vwv1,n+3);
  2422.       CVAL(smb_buf(outbuf),0) = 1;
  2423.       SSVAL(smb_buf(outbuf),1,n);
  2424.  
  2425.       send_smb(Client,outbuf);
  2426.       receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  2427.  
  2428.       if (CVAL(inbuf,smb_rcls) != 0)
  2429.     {
  2430.       DEBUG(0,("%s printing remote file\n",smb_errstr(inbuf)));
  2431.       break;
  2432.     }
  2433.  
  2434.       nread += n;
  2435.     }
  2436.  
  2437.   DEBUG(2,("%d bytes printed\n",nread));
  2438.  
  2439.   bzero(outbuf,smb_size);
  2440.   set_message(outbuf,1,0,True);
  2441.   CVAL(outbuf,smb_com) = SMBsplclose;
  2442.   SSVAL(outbuf,smb_tid,cnum);
  2443.   setup_pkt(outbuf);
  2444.  
  2445.   SSVAL(outbuf,smb_vwv0,fnum);
  2446.  
  2447.   send_smb(Client,outbuf);
  2448.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  2449.   
  2450.   if (CVAL(inbuf,smb_rcls) != 0)
  2451.     {
  2452.       DEBUG(0,("%s closing print file\n",smb_errstr(inbuf)));
  2453.       if (f != stdin)
  2454.     fclose(f);
  2455.       return;
  2456.     }
  2457.  
  2458.   if (f != stdin)
  2459.     fclose(f);
  2460. }
  2461.  
  2462. /****************************************************************************
  2463. show a print queue - this is deprecated as it uses the old smb that
  2464. has limited support - the correct call is the cmd_p_queue_4() after this.
  2465. ****************************************************************************/
  2466. static void cmd_queue(char *inbuf,char *outbuf )
  2467. {
  2468.   int count;
  2469.   char *p;
  2470.  
  2471.   bzero(outbuf,smb_size);
  2472.   set_message(outbuf,2,0,True);
  2473.   
  2474.   CVAL(outbuf,smb_com) = SMBsplretq;
  2475.   SSVAL(outbuf,smb_tid,cnum);
  2476.   setup_pkt(outbuf);
  2477.  
  2478.   SSVAL(outbuf,smb_vwv0,32); /* a max of 20 entries is to be shown */
  2479.   SSVAL(outbuf,smb_vwv1,0); /* the index into the queue */
  2480.   
  2481.   send_smb(Client,outbuf);
  2482.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  2483.   
  2484.   if (CVAL(inbuf,smb_rcls) != 0)
  2485.     {
  2486.       DEBUG(0,("%s obtaining print queue\n",smb_errstr(inbuf)));
  2487.       return;
  2488.     }
  2489.  
  2490.   count = SVAL(inbuf,smb_vwv0);
  2491.   p = smb_buf(inbuf) + 3;
  2492.   if (count <= 0)
  2493.     {
  2494.       DEBUG(0,("No entries in the print queue\n"));
  2495.       return;
  2496.     }  
  2497.  
  2498.   {
  2499.     char status[20];
  2500.  
  2501.     DEBUG(0,("Job      Name              Size         Status\n"));
  2502.  
  2503.     while (count--)
  2504.       {
  2505.     switch (CVAL(p,4))
  2506.       {
  2507.       case 0x01: sprintf(status,"held or stopped"); break;
  2508.       case 0x02: sprintf(status,"printing"); break;
  2509.       case 0x03: sprintf(status,"awaiting print"); break;
  2510.       case 0x04: sprintf(status,"in intercept"); break;
  2511.       case 0x05: sprintf(status,"file had error"); break;
  2512.       case 0x06: sprintf(status,"printer error"); break;
  2513.       default: sprintf(status,"unknown"); break;
  2514.       }
  2515.  
  2516.     DEBUG(0,("%-6d   %-16.16s  %-9d    %s\n",
  2517.          SVAL(p,5),p+12,IVAL(p,7),status));
  2518.     p += 28;
  2519.       }
  2520.   }
  2521.   
  2522. }
  2523.  
  2524.  
  2525. /****************************************************************************
  2526. show information about a print queue
  2527. ****************************************************************************/
  2528. static void cmd_p_queue_4(char *inbuf,char *outbuf )
  2529. {
  2530.   char *rparam = NULL;
  2531.   char *rdata = NULL;
  2532.   char *p;
  2533.   int rdrcnt, rprcnt;
  2534.   pstring param;
  2535.   int result_code=0;
  2536.  
  2537.   if (!connect_as_printer)
  2538.     {
  2539.       DEBUG(0,("WARNING: You didn't use the -P option to smbclient.\n"));
  2540.       DEBUG(0,("Trying to print without -P may fail\n"));
  2541.     }
  2542.   
  2543.   bzero(param,sizeof(param));
  2544.  
  2545.   p = param;
  2546.   SSVAL(p,0,76);                        /* API function number 76 (DosPrintJobEnum) */
  2547.   p += 2;
  2548.   strcpy(p,"zWrLeh");                   /* parameter description? */
  2549.   p = skip_string(p,1);
  2550.   strcpy(p,"WWzWWDDzz");                /* returned data format */
  2551.   p = skip_string(p,1);
  2552.   strcpy(p,strrchr(service,'\\')+1);    /* name of queue */
  2553.   p = skip_string(p,1);
  2554.   SSVAL(p,0,2);                 /* API function level 2, PRJINFO_2 data structure */
  2555.   SSVAL(p,2,1000);                      /* size of bytes of returned data buffer */
  2556.   p += 4;
  2557.   strcpy(p,"");                         /* subformat */
  2558.   p = skip_string(p,1);
  2559.  
  2560.   DEBUG(1,("Calling DosPrintJobEnum()...\n"));
  2561.   if( call_api(PTR_DIFF(p,param), 0,
  2562.                10, 4096,
  2563.                &rprcnt, &rdrcnt,
  2564.                param, NULL,
  2565.                &rparam, &rdata) )
  2566.     {
  2567.       int converter;
  2568.       result_code = SVAL(rparam,0);
  2569.       converter = SVAL(rparam,2);             /* conversion factor */
  2570.  
  2571.       DEBUG(2,("returned %d bytes of parameters, %d bytes of data, %d records\n", rprcnt, rdrcnt, SVAL(rparam,4) ));
  2572.  
  2573.       if (result_code == 0)                   /* if no error, */
  2574.         {
  2575.           int i;
  2576.           uint16 JobId;
  2577.           uint16 Priority;
  2578.           uint32 Size;
  2579.           char *UserName;
  2580.           char *JobName;
  2581.           char *JobTimeStr;
  2582.           time_t JobTime;
  2583.           char PrinterName[20];
  2584.              
  2585.           strcpy(PrinterName,strrchr(service,'\\')+1);       /* name of queue */
  2586.           strlower(PrinterName);                             /* in lower case */
  2587.  
  2588.           p = rdata;                          /* received data */
  2589.           for( i = 0; i < SVAL(rparam,4); ++i)
  2590.             {
  2591.               JobId = SVAL(p,0);
  2592.               Priority = SVAL(p,2);
  2593.               UserName = fix_char_ptr(SVAL(p,4), converter, rdata, rdrcnt);
  2594.               strlower(UserName);
  2595.               Priority = SVAL(p,2);
  2596.               JobTime = make_unix_date3( p + 12);
  2597.               JobTimeStr = asctime(LocalTime( &JobTime));
  2598.               Size = IVAL(p,16);
  2599.               JobName = fix_char_ptr(SVAL(p,24), converter, rdata, rdrcnt);
  2600.             
  2601.  
  2602.               printf("%s-%u    %s    priority %u   %s    %s   %u bytes\n", 
  2603.         PrinterName, JobId, UserName,
  2604.                 Priority, JobTimeStr, JobName, Size);
  2605.    
  2606. #if 0 /* DEBUG code */
  2607.               printf("Job Id: \"%u\"\n", SVAL(p,0));
  2608.               printf("Priority: \"%u\"\n", SVAL(p,2));
  2609.             
  2610.               printf("User Name: \"%s\"\n", fix_char_ptr(SVAL(p,4), converter, rdata, rdrcnt) );
  2611.               printf("Position: \"%u\"\n", SVAL(p,8));
  2612.               printf("Status: \"%u\"\n", SVAL(p,10));
  2613.             
  2614.               JobTime = make_unix_date3( p + 12);
  2615.               printf("Submitted: \"%s\"\n", asctime(LocalTime(&JobTime)));
  2616.               printf("date: \"%u\"\n", SVAL(p,12));
  2617.  
  2618.               printf("Size: \"%u\"\n", SVAL(p,16));
  2619.               printf("Comment: \"%s\"\n", fix_char_ptr(SVAL(p,20), converter, rdata, rdrcnt) );
  2620.               printf("Document: \"%s\"\n", fix_char_ptr(SVAL(p,24), converter, rdata, rdrcnt) );
  2621. #endif /* DEBUG CODE */ 
  2622.               p += 28;
  2623.             }
  2624.         }
  2625.     }
  2626.   else                  /* call_api() failed */
  2627.     {
  2628.       printf("Failed, error = %d\n", result_code);
  2629.     }
  2630.  
  2631.   /* If any parameters or data were returned, free the storage. */
  2632.   if(rparam) free(rparam);
  2633.   if(rdata) free(rdata);
  2634.  
  2635.   return;
  2636. }
  2637.  
  2638. /****************************************************************************
  2639. show information about a print queue
  2640. ****************************************************************************/
  2641. static void cmd_qinfo(char *inbuf,char *outbuf )
  2642. {
  2643.   char *rparam = NULL;
  2644.   char *rdata = NULL;
  2645.   char *p;
  2646.   int rdrcnt, rprcnt;
  2647.   pstring param;
  2648.   int result_code=0;
  2649.   
  2650.   bzero(param,sizeof(param));
  2651.  
  2652.   p = param;
  2653.   SSVAL(p,0,70);             /* API function number 70 (DosPrintQGetInfo) */
  2654.   p += 2;
  2655.   strcpy(p,"zWrLh");            /* parameter description? */
  2656.   p = skip_string(p,1);
  2657.   strcpy(p,"zWWWWzzzzWWzzl");        /* returned data format */
  2658.   p = skip_string(p,1);
  2659.   strcpy(p,strrchr(service,'\\')+1);    /* name of queue */
  2660.   p = skip_string(p,1);
  2661.   SSVAL(p,0,3);                /* API function level 3, just queue info, no job info */
  2662.   SSVAL(p,2,1000);            /* size of bytes of returned data buffer */
  2663.   p += 4;
  2664.   strcpy(p,"");                /* subformat */
  2665.   p = skip_string(p,1);
  2666.  
  2667.   DEBUG(1,("Calling DosPrintQueueGetInfo()...\n"));
  2668.   if( call_api(PTR_DIFF(p,param), 0,
  2669.            10, 4096,
  2670.            &rprcnt, &rdrcnt,
  2671.            param, NULL,
  2672.            &rparam, &rdata) )
  2673.     {
  2674.     int converter;
  2675.     result_code = SVAL(rparam,0);
  2676.     converter = SVAL(rparam,2);        /* conversion factor */
  2677.  
  2678.     DEBUG(2,("returned %d bytes of parameters, %d bytes of data, %d records\n", rprcnt, rdrcnt, SVAL(rparam,4) ));
  2679.  
  2680.     if (result_code == 0)            /* if no error, */
  2681.         {
  2682.         p = rdata;                /* received data */
  2683.  
  2684.         printf("Name: \"%s\"\n", fix_char_ptr(SVAL(p,0), converter, rdata, rdrcnt) );
  2685.         printf("Priority: %u\n", SVAL(p,4) );
  2686.         printf("Start time: %u\n", SVAL(p,6) );
  2687.         printf("Until time: %u\n", SVAL(p,8) );
  2688.         printf("Seperator file: \"%s\"\n", fix_char_ptr(SVAL(p,12), converter, rdata, rdrcnt) );
  2689.         printf("Print processor: \"%s\"\n", fix_char_ptr(SVAL(p,16), converter, rdata, rdrcnt) );
  2690.         printf("Parameters: \"%s\"\n", fix_char_ptr(SVAL(p,20), converter, rdata, rdrcnt) );
  2691.         printf("Comment: \"%s\"\n", fix_char_ptr(SVAL(p,24), converter, rdata, rdrcnt) );
  2692.         printf("Status: %u\n", SVAL(p,28) );
  2693.         printf("Jobs: %u\n", SVAL(p,30) );
  2694.         printf("Printers: \"%s\"\n", fix_char_ptr(SVAL(p,32), converter, rdata, rdrcnt) );
  2695.         printf("Drivername: \"%s\"\n", fix_char_ptr(SVAL(p,36), converter, rdata, rdrcnt) );
  2696.  
  2697.         /* Dump the driver data */
  2698.         {
  2699.         int count, x, y, c;
  2700.         char *ddptr;
  2701.  
  2702.         ddptr = rdata + SVAL(p,40) - converter;
  2703.         if( SVAL(p,40) == 0 ) {count = 0;} else {count = IVAL(ddptr,0);}
  2704.         printf("Driverdata: size=%d, version=%u\n", count, IVAL(ddptr,4) );
  2705.  
  2706.         for(x=8; x < count; x+=16)
  2707.         {
  2708.         for(y=0; y < 16; y++)
  2709.             {
  2710.             if( (x+y) < count )
  2711.                 printf("%2.2X ", CVAL(ddptr,(x+y)) );
  2712.             else
  2713.                 fputs("   ", stdout);
  2714.             }
  2715.         for(y=0; y < 16 && (x+y) < count; y++)
  2716.             {
  2717.             c = CVAL(ddptr,(x+y));
  2718.             if(isprint(c))
  2719.                 fputc(c, stdout);
  2720.             else
  2721.                 fputc('.', stdout);
  2722.             }
  2723.         fputc('\n', stdout);
  2724.         }
  2725.         }
  2726.         
  2727.         }
  2728.     }
  2729.   else            /* call_api() failed */
  2730.       {
  2731.       printf("Failed, error = %d\n", result_code);
  2732.       }
  2733.  
  2734.   /* If any parameters or data were returned, free the storage. */
  2735.   if(rparam) free(rparam);
  2736.   if(rdata) free(rdata);
  2737.  
  2738.   return;
  2739. }
  2740.  
  2741. /****************************************************************************
  2742. delete some files
  2743. ****************************************************************************/
  2744. static void do_del(file_info *finfo)
  2745. {
  2746.   char *p;
  2747.   char *inbuf,*outbuf;
  2748.   pstring mask;
  2749.  
  2750.   strcpy(mask,cur_dir);
  2751.   strcat(mask,finfo->name);
  2752.  
  2753.   if (finfo->mode & aDIR) 
  2754.     return;
  2755.  
  2756.   inbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  2757.   outbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  2758.   
  2759.   if (!inbuf || !outbuf)
  2760.     {
  2761.       DEBUG(0,("out of memory\n"));
  2762.       return;
  2763.     }
  2764.  
  2765.   bzero(outbuf,smb_size);
  2766.   set_message(outbuf,1,2 + strlen(mask),True);
  2767.   
  2768.   CVAL(outbuf,smb_com) = SMBunlink;
  2769.   SSVAL(outbuf,smb_tid,cnum);
  2770.   setup_pkt(outbuf);
  2771.  
  2772.   SSVAL(outbuf,smb_vwv0,0);
  2773.   
  2774.   p = smb_buf(outbuf);
  2775.   *p++ = 4;      
  2776.   strcpy(p,mask);
  2777.   
  2778.   send_smb(Client,outbuf);
  2779.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  2780.   
  2781.   if (CVAL(inbuf,smb_rcls) != 0)
  2782.     DEBUG(0,("%s deleting remote file %s\n",smb_errstr(inbuf),CNV_LANG(mask)));
  2783.  
  2784.   free(inbuf);free(outbuf);
  2785.   
  2786. }
  2787.  
  2788. /****************************************************************************
  2789. delete some files
  2790. ****************************************************************************/
  2791. static void cmd_del(char *inbuf,char *outbuf )
  2792. {
  2793.   pstring mask;
  2794.   fstring buf;
  2795.   int attribute = aSYSTEM | aHIDDEN;
  2796.  
  2797.   if (recurse)
  2798.     attribute |= aDIR;
  2799.   
  2800.   strcpy(mask,cur_dir);
  2801.     
  2802.   if (!next_token(NULL,buf,NULL))
  2803.     {
  2804.       DEBUG(0,("del <filename>\n"));
  2805.       return;
  2806.     }
  2807.   strcat(mask,buf);
  2808.  
  2809.   do_dir((char *)inbuf,(char *)outbuf,mask,attribute,do_del,False);
  2810. }
  2811.  
  2812.  
  2813. /****************************************************************************
  2814. remove a directory
  2815. ****************************************************************************/
  2816. static void cmd_rmdir(char *inbuf,char *outbuf )
  2817. {
  2818.   pstring mask;
  2819.   fstring buf;
  2820.   char *p;
  2821.   
  2822.   strcpy(mask,cur_dir);
  2823.   
  2824.   if (!next_token(NULL,buf,NULL))
  2825.     {
  2826.       DEBUG(0,("rmdir <dirname>\n"));
  2827.       return;
  2828.     }
  2829.   strcat(mask,buf);
  2830.  
  2831.   bzero(outbuf,smb_size);
  2832.   set_message(outbuf,0,2 + strlen(mask),True);
  2833.   
  2834.   CVAL(outbuf,smb_com) = SMBrmdir;
  2835.   SSVAL(outbuf,smb_tid,cnum);
  2836.   setup_pkt(outbuf);
  2837.  
  2838.   
  2839.   p = smb_buf(outbuf);
  2840.   *p++ = 4;      
  2841.   strcpy(p,mask);
  2842.   
  2843.   send_smb(Client,outbuf);
  2844.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  2845.   
  2846.   if (CVAL(inbuf,smb_rcls) != 0)
  2847.     {
  2848.       DEBUG(0,("%s removing remote directory file %s\n",smb_errstr(inbuf),CNV_LANG(mask)));
  2849.       return;
  2850.     }
  2851.   
  2852. }
  2853.  
  2854. /****************************************************************************
  2855. rename some files
  2856. ****************************************************************************/
  2857. static void cmd_rename(char *inbuf,char *outbuf )
  2858. {
  2859.   pstring src,dest;
  2860.   fstring buf,buf2;
  2861.   char *p;
  2862.   
  2863.   strcpy(src,cur_dir);
  2864.   strcpy(dest,cur_dir);
  2865.   
  2866.   if (!next_token(NULL,buf,NULL) || !next_token(NULL,buf2,NULL))
  2867.     {
  2868.       DEBUG(0,("rename <src> <dest>\n"));
  2869.       return;
  2870.     }
  2871.   strcat(src,buf);
  2872.   strcat(dest,buf2);
  2873.  
  2874.   bzero(outbuf,smb_size);
  2875.   set_message(outbuf,1,4 + strlen(src) + strlen(dest),True);
  2876.   
  2877.   CVAL(outbuf,smb_com) = SMBmv;
  2878.   SSVAL(outbuf,smb_tid,cnum);
  2879.   SSVAL(outbuf,smb_vwv0,aHIDDEN | aDIR | aSYSTEM);
  2880.   setup_pkt(outbuf);
  2881.   
  2882.   p = smb_buf(outbuf);
  2883.   *p++ = 4;      
  2884.   strcpy(p,src);
  2885.   p = skip_string(p,1);
  2886.   *p++ = 4;      
  2887.   strcpy(p,dest);
  2888.   
  2889.   send_smb(Client,outbuf);
  2890.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  2891.   
  2892.   if (CVAL(inbuf,smb_rcls) != 0)
  2893.     {
  2894.       DEBUG(0,("%s renaming files\n",smb_errstr(inbuf)));
  2895.       return;
  2896.     }
  2897.   
  2898. }
  2899.  
  2900.  
  2901. /****************************************************************************
  2902. toggle the prompt flag
  2903. ****************************************************************************/
  2904. static void cmd_prompt(void)
  2905. {
  2906.   prompt = !prompt;
  2907.   DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
  2908. }
  2909.  
  2910.  
  2911. /****************************************************************************
  2912. set the newer than time
  2913. ****************************************************************************/
  2914. static void cmd_newer(void)
  2915. {
  2916.   fstring buf;
  2917.   BOOL ok;
  2918.   struct stat sbuf;
  2919.  
  2920.   ok = next_token(NULL,buf,NULL);
  2921.   if (ok && (sys_stat(buf,&sbuf) == 0))
  2922.     {
  2923.       newer_than = sbuf.st_mtime;
  2924.       DEBUG(1,("Getting files newer than %s",
  2925.            asctime(LocalTime(&newer_than))));
  2926.     }
  2927.   else
  2928.     newer_than = 0;
  2929.  
  2930.   if (ok && newer_than == 0)
  2931.     DEBUG(0,("Error setting newer-than time\n"));
  2932. }
  2933.  
  2934. /****************************************************************************
  2935. set the archive level
  2936. ****************************************************************************/
  2937. static void cmd_archive(void)
  2938. {
  2939.   fstring buf;
  2940.  
  2941.   if (next_token(NULL,buf,NULL)) {
  2942.     archive_level = atoi(buf);
  2943.   } else
  2944.     DEBUG(0,("Archive level is %d\n",archive_level));
  2945. }
  2946.  
  2947. /****************************************************************************
  2948. toggle the lowercaseflag
  2949. ****************************************************************************/
  2950. static void cmd_lowercase(void)
  2951. {
  2952.   lowercase = !lowercase;
  2953.   DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
  2954. }
  2955.  
  2956.  
  2957.  
  2958.  
  2959. /****************************************************************************
  2960. toggle the recurse flag
  2961. ****************************************************************************/
  2962. static void cmd_recurse(void)
  2963. {
  2964.   recurse = !recurse;
  2965.   DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
  2966. }
  2967.  
  2968. /****************************************************************************
  2969. toggle the translate flag
  2970. ****************************************************************************/
  2971. static void cmd_translate(void)
  2972. {
  2973.   translation = !translation;
  2974.   DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
  2975.     translation?"on":"off"));
  2976. }
  2977.  
  2978.  
  2979. /****************************************************************************
  2980. do a printmode command
  2981. ****************************************************************************/
  2982. static void cmd_printmode(void)
  2983. {
  2984.   fstring buf;
  2985.   fstring mode;
  2986.  
  2987.   if (next_token(NULL,buf,NULL))
  2988.     {
  2989.       if (strequal(buf,"text"))
  2990.     printmode = 0;      
  2991.       else
  2992.     {
  2993.       if (strequal(buf,"graphics"))
  2994.         printmode = 1;
  2995.       else
  2996.         printmode = atoi(buf);
  2997.     }
  2998.     }
  2999.  
  3000.   switch(printmode)
  3001.     {
  3002.     case 0: 
  3003.       strcpy(mode,"text");
  3004.       break;
  3005.     case 1: 
  3006.       strcpy(mode,"graphics");
  3007.       break;
  3008.     default: 
  3009.       sprintf(mode,"%d",printmode);
  3010.       break;
  3011.     }
  3012.  
  3013.   DEBUG(2,("the printmode is now %s\n",mode));
  3014. }
  3015.  
  3016. /****************************************************************************
  3017. do the lcd command
  3018. ****************************************************************************/
  3019. static void cmd_lcd(void)
  3020. {
  3021.   fstring buf;
  3022.   pstring d;
  3023.  
  3024.   if (next_token(NULL,buf,NULL))
  3025.     sys_chdir(buf);
  3026.   DEBUG(2,("the local directory is now %s\n",GetWd(d)));
  3027. }
  3028.  
  3029.  
  3030. /****************************************************************************
  3031. send a session request
  3032. ****************************************************************************/
  3033. static BOOL send_session_request(char *inbuf,char *outbuf)
  3034. {
  3035.   fstring dest;
  3036.   char *p;
  3037.   int len = 4;
  3038.   /* send a session request (RFC 8002) */
  3039.  
  3040.   strcpy(dest,desthost);
  3041.   p = strchr(dest,'.');
  3042.   if (p) *p = 0;
  3043.  
  3044.   /* put in the destination name */
  3045.   p = outbuf+len;
  3046.   name_mangle(dest,p,name_type); /* 0x20 is the SMB server NetBIOS type. */
  3047.   len += name_len(p);
  3048.  
  3049.   /* and my name */
  3050.   p = outbuf+len;
  3051.   name_mangle(myname,p,0);
  3052.   len += name_len(p);
  3053.  
  3054.   /* setup the packet length */
  3055.   _smb_setlen(outbuf,len);
  3056.   CVAL(outbuf,0) = 0x81;
  3057.  
  3058.   send_smb(Client,outbuf);
  3059.   DEBUG(5,("Sent session request\n"));
  3060.  
  3061.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  3062.  
  3063.   if (CVAL(inbuf,0) == 0x84) /* C. Hoch  9/14/95 Start */
  3064.     {
  3065.       /* For information, here is the response structure.
  3066.        * We do the byte-twiddling to for portability.
  3067.        struct RetargetResponse{
  3068.        unsigned char type;
  3069.        unsigned char flags;
  3070.        int16 length;
  3071.        int32 ip_addr;
  3072.        int16 port;
  3073.        };
  3074.        */
  3075.       extern int Client;
  3076.       int port = (CVAL(inbuf,8)<<8)+CVAL(inbuf,9);
  3077.       /* SESSION RETARGET */
  3078.       putip((char *)&dest_ip,inbuf+4);
  3079.  
  3080.       close_sockets();
  3081.       Client = open_socket_out(SOCK_STREAM, &dest_ip, port, LONG_CONNECT_TIMEOUT);
  3082.       if (Client == -1)
  3083.         return False;
  3084.  
  3085.       DEBUG(3,("Retargeted\n"));
  3086.  
  3087.       set_socket_options(Client,user_socket_options);
  3088.  
  3089.       /* Try again */
  3090.       return send_session_request(inbuf,outbuf);
  3091.     } /* C. Hoch 9/14/95 End */
  3092.  
  3093.  
  3094.   if (CVAL(inbuf,0) != 0x82)
  3095.     {
  3096.       int ecode = CVAL(inbuf,4);
  3097.       DEBUG(0,("Session request failed (%d,%d) with myname=%s destname=%s\n",
  3098.            CVAL(inbuf,0),ecode,myname,desthost));
  3099.       switch (ecode)
  3100.     {
  3101.     case 0x80: 
  3102.       DEBUG(0,("Not listening on called name\n")); 
  3103.       DEBUG(0,("Try to connect to another name (instead of %s)\n",desthost));
  3104.       DEBUG(0,("You may find the -I option useful for this\n"));
  3105.       break;
  3106.     case 0x81: 
  3107.       DEBUG(0,("Not listening for calling name\n")); 
  3108.       DEBUG(0,("Try to connect as another name (instead of %s)\n",myname));
  3109.       DEBUG(0,("You may find the -n option useful for this\n"));
  3110.       break;
  3111.     case 0x82: 
  3112.       DEBUG(0,("Called name not present\n")); 
  3113.       DEBUG(0,("Try to connect to another name (instead of %s)\n",desthost));
  3114.       DEBUG(0,("You may find the -I option useful for this\n"));
  3115.       break;
  3116.     case 0x83: 
  3117.       DEBUG(0,("Called name present, but insufficient resources\n")); 
  3118.       DEBUG(0,("Perhaps you should try again later?\n")); 
  3119.       break;
  3120.     default:
  3121.       DEBUG(0,("Unspecified error 0x%X\n",ecode)); 
  3122.       DEBUG(0,("Your server software is being unfriendly\n"));
  3123.       break;      
  3124.     }
  3125.       return(False);
  3126.     }
  3127.   return(True);
  3128. }
  3129.  
  3130. static struct {
  3131.   int prot;
  3132.   char *name;
  3133. } prots[] = {
  3134.   {PROTOCOL_CORE,"PC NETWORK PROGRAM 1.0"},
  3135.   {PROTOCOL_COREPLUS,"MICROSOFT NETWORKS 1.03"},
  3136.   {PROTOCOL_LANMAN1,"MICROSOFT NETWORKS 3.0"},
  3137.   {PROTOCOL_LANMAN1,"LANMAN1.0"},
  3138.   {PROTOCOL_LANMAN2,"LM1.2X002"},
  3139.   {PROTOCOL_LANMAN2,"Samba"},
  3140.   {PROTOCOL_NT1,"NT LM 0.12"},
  3141.   {PROTOCOL_NT1,"NT LANMAN 1.0"},
  3142.   {-1,NULL}
  3143. };
  3144.  
  3145.  
  3146. /****************************************************************************
  3147. send a login command
  3148. ****************************************************************************/
  3149. static BOOL send_login(char *inbuf,char *outbuf,BOOL start_session,BOOL use_setup)
  3150. {
  3151.   BOOL was_null = (!inbuf && !outbuf);
  3152.   int sesskey=0;
  3153.   time_t servertime = 0;
  3154.   extern int serverzone;
  3155.   int sec_mode=0;
  3156.   int crypt_len;
  3157.   int max_vcs=0;
  3158.   char *pass = NULL;  
  3159.   pstring dev;
  3160.   char *p;
  3161.   int numprots;
  3162.   int tries=0;
  3163.  
  3164.   if (was_null)
  3165.     {
  3166.       inbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  3167.       outbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  3168.     }
  3169.  
  3170. #if AJT
  3171.   if (strstr(service,"IPC$")) connect_as_ipc = True;
  3172. #endif
  3173.  
  3174.   strcpy(dev,"A:");
  3175.   if (connect_as_printer)
  3176.     strcpy(dev,"LPT1:");
  3177.   if (connect_as_ipc)
  3178.     strcpy(dev,"IPC");
  3179.  
  3180.  
  3181.   if (start_session && !send_session_request(inbuf,outbuf))
  3182.     {
  3183.       if (was_null)
  3184.     {
  3185.       free(inbuf);
  3186.       free(outbuf);
  3187.     }      
  3188.       return(False);
  3189.     }
  3190.  
  3191.   bzero(outbuf,smb_size);
  3192.  
  3193.   /* setup the protocol strings */
  3194.   {
  3195.     int plength;
  3196.  
  3197.     for (plength=0,numprots=0;
  3198.      prots[numprots].name && prots[numprots].prot<=max_protocol;
  3199.      numprots++)
  3200.       plength += strlen(prots[numprots].name)+2;
  3201.     
  3202.     set_message(outbuf,0,plength,True);
  3203.  
  3204.     p = smb_buf(outbuf);
  3205.     for (numprots=0;
  3206.      prots[numprots].name && prots[numprots].prot<=max_protocol;
  3207.      numprots++)
  3208.       {
  3209.     *p++ = 2;
  3210.     strcpy(p,prots[numprots].name);
  3211.     p += strlen(p) + 1;
  3212.       }
  3213.   }
  3214.  
  3215.   CVAL(outbuf,smb_com) = SMBnegprot;
  3216.   setup_pkt(outbuf);
  3217.  
  3218.   CVAL(smb_buf(outbuf),0) = 2;
  3219.  
  3220.   send_smb(Client,outbuf);
  3221.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  3222.  
  3223.   show_msg(inbuf);
  3224.  
  3225.   if (CVAL(inbuf,smb_rcls) != 0 || ((int)SVAL(inbuf,smb_vwv0) >= numprots))
  3226.     {
  3227.       DEBUG(0,("SMBnegprot failed. myname=%s destname=%s - %s \n",
  3228.         myname,desthost,smb_errstr(inbuf)));
  3229.       if (was_null)
  3230.     {
  3231.       free(inbuf);
  3232.       free(outbuf);
  3233.     }
  3234.       return(False);
  3235.     }
  3236.  
  3237.   Protocol = prots[SVAL(inbuf,smb_vwv0)].prot;
  3238.  
  3239.  
  3240.   if (Protocol < PROTOCOL_NT1) {    
  3241.     sec_mode = SVAL(inbuf,smb_vwv1);
  3242.     max_xmit = SVAL(inbuf,smb_vwv2);
  3243.     sesskey = IVAL(inbuf,smb_vwv6);
  3244.     serverzone = SVALS(inbuf,smb_vwv10)*60;
  3245.     /* this time is converted to GMT by make_unix_date */
  3246.     servertime = make_unix_date(inbuf+smb_vwv8);
  3247.     if (Protocol >= PROTOCOL_COREPLUS) {
  3248.       readbraw_supported = ((SVAL(inbuf,smb_vwv5) & 0x1) != 0);
  3249.       writebraw_supported = ((SVAL(inbuf,smb_vwv5) & 0x2) != 0);
  3250.     }
  3251.     crypt_len = smb_buflen(inbuf);
  3252.     memcpy(cryptkey,smb_buf(inbuf),8);
  3253.     DEBUG(3,("max mux %d\n",SVAL(inbuf,smb_vwv3)));
  3254.     max_vcs = SVAL(inbuf,smb_vwv4); 
  3255.     DEBUG(3,("max vcs %d\n",max_vcs)); 
  3256.     DEBUG(3,("max blk %d\n",SVAL(inbuf,smb_vwv5)));
  3257.   } else {
  3258.     /* NT protocol */
  3259.     sec_mode = CVAL(inbuf,smb_vwv1);
  3260.     max_xmit = IVAL(inbuf,smb_vwv3+1);
  3261.     sesskey = IVAL(inbuf,smb_vwv7+1);
  3262.     serverzone = SVALS(inbuf,smb_vwv15+1)*60;
  3263.     /* this time arrives in real GMT */
  3264.     servertime = interpret_long_date(inbuf+smb_vwv11+1);
  3265.     crypt_len = CVAL(inbuf,smb_vwv16+1);
  3266.     memcpy(cryptkey,smb_buf(inbuf),8);
  3267.     if (IVAL(inbuf,smb_vwv9+1) & 1)
  3268.       readbraw_supported = writebraw_supported = True;      
  3269.     DEBUG(3,("max mux %d\n",SVAL(inbuf,smb_vwv1+1)));
  3270.     max_vcs = SVAL(inbuf,smb_vwv2+1); 
  3271.     DEBUG(3,("max vcs %d\n",max_vcs));
  3272.     DEBUG(3,("max raw %d\n",IVAL(inbuf,smb_vwv5+1)));
  3273.     DEBUG(3,("capabilities 0x%x\n",IVAL(inbuf,smb_vwv9+1)));
  3274.   }
  3275.  
  3276.   DEBUG(3,("Sec mode %d\n",SVAL(inbuf,smb_vwv1)));
  3277.   DEBUG(3,("max xmt %d\n",max_xmit));
  3278.   DEBUG(3,("Got %d byte crypt key\n",crypt_len));
  3279.   DEBUG(3,("Chose protocol [%s]\n",prots[SVAL(inbuf,smb_vwv0)].name));
  3280.  
  3281.   doencrypt = ((sec_mode & 2) != 0);
  3282.  
  3283.   if (servertime) {
  3284.     static BOOL done_time = False;
  3285.     if (!done_time) {
  3286.       DEBUG(1,("Server time is %sTimezone is UTC%+02.1f\n",
  3287.            asctime(LocalTime(&servertime)),
  3288.            -(double)(serverzone/3600.0)));
  3289.       done_time = True;
  3290.     }
  3291.   }
  3292.  
  3293.  get_pass:
  3294.  
  3295.   if (got_pass)
  3296.     pass = password;
  3297.   else
  3298.     pass = (char *)getpass("Password: ");
  3299.  
  3300.   /* use a blank username for the 2nd try with a blank password */
  3301.   if (tries++ && !*pass)
  3302.     *username = 0;
  3303.  
  3304.   if (Protocol >= PROTOCOL_LANMAN1 && use_setup)
  3305.     {
  3306.       fstring pword;
  3307.       int passlen = strlen(pass)+1;
  3308.       strcpy(pword,pass);      
  3309.  
  3310. #ifdef SMB_PASSWD
  3311.       if (doencrypt && *pass) {
  3312.     DEBUG(3,("Using encrypted passwords\n"));
  3313.     passlen = 24;
  3314.     SMBencrypt((uchar *)pass,(uchar *)cryptkey,(uchar *)pword);
  3315.       }
  3316. #else
  3317.       doencrypt = False;
  3318. #endif
  3319.  
  3320.       /* if in share level security then don't send a password now */
  3321.       if (!(sec_mode & 1)) {strcpy(pword, "");passlen=1;} 
  3322.  
  3323.       /* send a session setup command */
  3324.       bzero(outbuf,smb_size);
  3325.  
  3326.       if (Protocol < PROTOCOL_NT1) {
  3327.     set_message(outbuf,10,1 + strlen(username) + passlen,True);
  3328.     CVAL(outbuf,smb_com) = SMBsesssetupX;
  3329.     setup_pkt(outbuf);
  3330.  
  3331.     CVAL(outbuf,smb_vwv0) = 0xFF;
  3332.     SSVAL(outbuf,smb_vwv2,max_xmit);
  3333.     SSVAL(outbuf,smb_vwv3,2);
  3334.     SSVAL(outbuf,smb_vwv4,max_vcs-1);
  3335.     SIVAL(outbuf,smb_vwv5,sesskey);
  3336.     SSVAL(outbuf,smb_vwv7,passlen);
  3337.     p = smb_buf(outbuf);
  3338.     memcpy(p,pword,passlen);
  3339.     p += passlen;
  3340.     strcpy(p,username);
  3341.       } else {
  3342.     if (!doencrypt) passlen--;
  3343.     /* for Win95 */
  3344.     set_message(outbuf,13,0,True);
  3345.     CVAL(outbuf,smb_com) = SMBsesssetupX;
  3346.     setup_pkt(outbuf);
  3347.  
  3348.     CVAL(outbuf,smb_vwv0) = 0xFF;
  3349.     SSVAL(outbuf,smb_vwv2,BUFFER_SIZE);
  3350.     SSVAL(outbuf,smb_vwv3,2);
  3351.     SSVAL(outbuf,smb_vwv4,getpid());
  3352.     SIVAL(outbuf,smb_vwv5,sesskey);
  3353.     SSVAL(outbuf,smb_vwv7,passlen);
  3354.     SSVAL(outbuf,smb_vwv8,0);
  3355.     p = smb_buf(outbuf);
  3356.     memcpy(p,pword,passlen); p += SVAL(outbuf,smb_vwv7);
  3357.     strcpy(p,username);p = skip_string(p,1);
  3358.     strcpy(p,workgroup);p = skip_string(p,1);
  3359.     strcpy(p,"Unix");p = skip_string(p,1);
  3360.     strcpy(p,"Samba");p = skip_string(p,1);
  3361.     set_message(outbuf,13,PTR_DIFF(p,smb_buf(outbuf)),False);
  3362.       }
  3363.  
  3364.       send_smb(Client,outbuf);
  3365.       receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  3366.  
  3367.       show_msg(inbuf);
  3368.  
  3369.       if (CVAL(inbuf,smb_rcls) != 0)
  3370.     {
  3371.       if (! *pass &&
  3372.           ((CVAL(inbuf,smb_rcls) == ERRDOS && 
  3373.         SVAL(inbuf,smb_err) == ERRnoaccess) ||
  3374.            (CVAL(inbuf,smb_rcls) == ERRSRV && 
  3375.         SVAL(inbuf,smb_err) == ERRbadpw)))
  3376.         {
  3377.           got_pass = False;
  3378.           DEBUG(3,("resending login\n"));
  3379.           goto get_pass;
  3380.         }
  3381.           
  3382.       DEBUG(0,("Session setup failed for username=%s myname=%s destname=%s   %s\n",
  3383.         username,myname,desthost,smb_errstr(inbuf)));
  3384.       DEBUG(0,("You might find the -U, -W or -n options useful\n"));
  3385.       DEBUG(0,("Sometimes you have to use `-n USERNAME' (particularly with OS/2)\n"));
  3386.       DEBUG(0,("Some servers also insist on uppercase-only passwords\n"));
  3387.       if (was_null)
  3388.         {
  3389.           free(inbuf);
  3390.           free(outbuf);
  3391.         }
  3392.       return(False);
  3393.     }
  3394.  
  3395.       if (Protocol >= PROTOCOL_NT1) {
  3396.     char *domain,*os,*lanman;
  3397.     p = smb_buf(inbuf);
  3398.     os = p;
  3399.     lanman = skip_string(os,1);
  3400.     domain = skip_string(lanman,1);
  3401.     if (*domain || *os || *lanman)
  3402.       DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",domain,os,lanman));
  3403.       }
  3404.  
  3405.       /* use the returned uid from now on */
  3406.       if (SVAL(inbuf,smb_uid) != uid)
  3407.     DEBUG(3,("Server gave us a UID of %d. We gave %d\n",
  3408.           SVAL(inbuf,smb_uid),uid));
  3409.       uid = SVAL(inbuf,smb_uid);
  3410.     }
  3411.  
  3412.   /* now we've got a connection - send a tcon message */
  3413.   bzero(outbuf,smb_size);
  3414.  
  3415.   if (strncmp(service,"\\\\",2) != 0)
  3416.     {
  3417.       DEBUG(0,("\nWarning: Your service name doesn't start with \\\\. This is probably incorrect.\n"));
  3418.       DEBUG(0,("Perhaps try replacing each \\ with \\\\ on the command line?\n\n"));
  3419.     }
  3420.  
  3421.  
  3422.  again2:
  3423.  
  3424.   {
  3425.     int passlen = strlen(pass)+1;
  3426.     fstring pword;
  3427.     strcpy(pword,pass);
  3428.  
  3429. #ifdef SMB_PASSWD
  3430.     if (doencrypt && *pass) {
  3431.       passlen=24;
  3432.       SMBencrypt((uchar *)pass,(uchar *)cryptkey,(uchar *)pword);      
  3433.     }
  3434. #endif
  3435.  
  3436.     /* if in user level security then don't send a password now */
  3437.     if ((sec_mode & 1)) {
  3438.       strcpy(pword, ""); passlen=1; 
  3439.     }
  3440.  
  3441.     if (Protocol <= PROTOCOL_COREPLUS) {
  3442.       set_message(outbuf,0,6 + strlen(service) + passlen + strlen(dev),True);
  3443.       CVAL(outbuf,smb_com) = SMBtcon;
  3444.       setup_pkt(outbuf);
  3445.  
  3446.       p = smb_buf(outbuf);
  3447.       *p++ = 0x04;
  3448.       strcpy(p, service);
  3449.       p = skip_string(p,1);
  3450.       *p++ = 0x04;
  3451.       memcpy(p,pword,passlen);
  3452.       p += passlen;
  3453.       *p++ = 0x04;
  3454.       strcpy(p, dev);
  3455.     }
  3456.     else {
  3457.       set_message(outbuf,4,2 + strlen(service) + passlen + strlen(dev),True);
  3458.       CVAL(outbuf,smb_com) = SMBtconX;
  3459.       setup_pkt(outbuf);
  3460.   
  3461.       SSVAL(outbuf,smb_vwv0,0xFF);
  3462.       SSVAL(outbuf,smb_vwv3,passlen);
  3463.   
  3464.       p = smb_buf(outbuf);
  3465.       memcpy(p,pword,passlen);
  3466.       p += passlen;
  3467.       strcpy(p,service);
  3468.       p = skip_string(p,1);
  3469.       strcpy(p,dev);
  3470.     }
  3471.   }
  3472.  
  3473.   send_smb(Client,outbuf);
  3474.   receive_smb(Client,inbuf,CLIENT_TIMEOUT);
  3475.  
  3476.   /* trying again with a blank password */
  3477.   if (CVAL(inbuf,smb_rcls) != 0 && 
  3478.       (int)strlen(pass) > 0 && 
  3479.       !doencrypt &&
  3480.       Protocol >= PROTOCOL_LANMAN1)
  3481.     {
  3482.       DEBUG(2,("first SMBtconX failed, trying again. %s\n",smb_errstr(inbuf)));
  3483.       strcpy(pass,"");
  3484.       goto again2;
  3485.     }  
  3486.  
  3487.   if (CVAL(inbuf,smb_rcls) != 0)
  3488.     {
  3489.       DEBUG(0,("SMBtconX failed. %s\n",smb_errstr(inbuf)));
  3490.       DEBUG(0,("Perhaps you are using the wrong sharename, username or password?\n"));
  3491.       DEBUG(0,("Some servers insist that these be in uppercase\n"));
  3492.       if (was_null)
  3493.     {
  3494.       free(inbuf);
  3495.       free(outbuf);
  3496.     }
  3497.       return(False);
  3498.     }
  3499.   
  3500.  
  3501.   if (Protocol <= PROTOCOL_COREPLUS) {
  3502.     max_xmit = SVAL(inbuf,smb_vwv0);
  3503.  
  3504.     cnum = SVAL(inbuf,smb_vwv1);
  3505.   }
  3506.   else {
  3507.     max_xmit = MIN(max_xmit,BUFFER_SIZE-4);
  3508.     if (max_xmit <= 0)
  3509.       max_xmit = BUFFER_SIZE - 4;
  3510.  
  3511.     cnum = SVAL(inbuf,smb_tid);
  3512.   }
  3513.  
  3514.   DEBUG(3,("Connected with cnum=%d max_xmit=%d\n",cnum,max_xmit));
  3515.  
  3516.   if (was_null)
  3517.     {
  3518.       free(inbuf);
  3519.       free(outbuf);
  3520.     }
  3521.   return True;
  3522. }
  3523.  
  3524.  
  3525. /****************************************************************************
  3526. send a logout command
  3527. ****************************************************************************/
  3528. static void send_logout(void )
  3529. {
  3530.   pstring inbuf,outbuf;
  3531.  
  3532.   bzero(outbuf,smb_size);
  3533.   set_message(outbuf,0,0,True);
  3534.   CVAL(outbuf,smb_com) = SMBtdis;
  3535.   SSVAL(outbuf,smb_tid,cnum);
  3536.   setup_pkt(outbuf);
  3537.  
  3538.   send_smb(Client,outbuf);
  3539.   receive_smb(Client,inbuf,SHORT_TIMEOUT);
  3540.  
  3541.   if (CVAL(inbuf,smb_rcls) != 0)
  3542.     {
  3543.       DEBUG(0,("SMBtdis failed %s\n",smb_errstr(inbuf)));
  3544.     }
  3545.  
  3546.   
  3547. #ifdef STATS
  3548.   stats_report();
  3549. #endif
  3550.   exit(0);
  3551. }
  3552.  
  3553.  
  3554.  
  3555. /****************************************************************************
  3556. call a remote api
  3557. ****************************************************************************/
  3558. static BOOL call_api(int prcnt,int drcnt,
  3559.              int mprcnt,int mdrcnt,
  3560.              int *rprcnt,int *rdrcnt,
  3561.              char *param,char *data,
  3562.              char **rparam,char **rdata)
  3563. {
  3564.   static char *inbuf=NULL;
  3565.   static char *outbuf=NULL;
  3566.  
  3567.   if (!inbuf) inbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  3568.   if (!outbuf) outbuf = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  3569.  
  3570.   send_trans_request(outbuf,SMBtrans,"\\PIPE\\LANMAN",0,0,
  3571.              data,param,NULL,
  3572.              drcnt,prcnt,0,
  3573.              mdrcnt,mprcnt,0);
  3574.  
  3575.   return (receive_trans_response(inbuf,SMBtrans,
  3576.                                  rdrcnt,rprcnt,
  3577.                                  rdata,rparam));
  3578. }
  3579.  
  3580. /****************************************************************************
  3581.   send a SMB trans or trans2 request
  3582.   ****************************************************************************/
  3583. static BOOL send_trans_request(char *outbuf,int trans,
  3584.                    char *name,int fid,int flags,
  3585.                    char *data,char *param,uint16 *setup,
  3586.                    int ldata,int lparam,int lsetup,
  3587.                    int mdata,int mparam,int msetup)
  3588. {
  3589.   int i;
  3590.   int this_ldata,this_lparam;
  3591.   int tot_data=0,tot_param=0;
  3592.   char *outdata,*outparam;
  3593.   pstring inbuf;
  3594.   char *p;
  3595.  
  3596.   this_lparam = MIN(lparam,max_xmit - (500+lsetup*SIZEOFWORD)); /* hack */
  3597.   this_ldata = MIN(ldata,max_xmit - (500+lsetup*SIZEOFWORD+this_lparam));
  3598.  
  3599.   bzero(outbuf,smb_size);
  3600.   set_message(outbuf,14+lsetup,0,True);
  3601.   CVAL(outbuf,smb_com) = trans;
  3602.   SSVAL(outbuf,smb_tid,cnum);
  3603.   setup_pkt(outbuf);
  3604.  
  3605.   outparam = smb_buf(outbuf)+(trans==SMBtrans ? strlen(name)+1 : 3);
  3606.   outdata = outparam+this_lparam;
  3607.  
  3608.   /* primary request */
  3609.   SSVAL(outbuf,smb_tpscnt,lparam);    /* tpscnt */
  3610.   SSVAL(outbuf,smb_tdscnt,ldata);    /* tdscnt */
  3611.   SSVAL(outbuf,smb_mprcnt,mparam);    /* mprcnt */
  3612.   SSVAL(outbuf,smb_mdrcnt,mdata);    /* mdrcnt */
  3613.   SCVAL(outbuf,smb_msrcnt,msetup);    /* msrcnt */
  3614.   SSVAL(outbuf,smb_flags,flags);    /* flags */
  3615.   SIVAL(outbuf,smb_timeout,0);        /* timeout */
  3616.   SSVAL(outbuf,smb_pscnt,this_lparam);    /* pscnt */
  3617.   SSVAL(outbuf,smb_psoff,smb_offset(outparam,outbuf)); /* psoff */
  3618.   SSVAL(outbuf,smb_dscnt,this_ldata);    /* dscnt */
  3619.   SSVAL(outbuf,smb_dsoff,smb_offset(outdata,outbuf)); /* dsoff */
  3620.   SCVAL(outbuf,smb_suwcnt,lsetup);    /* suwcnt */
  3621.   for (i=0;i<lsetup;i++)        /* setup[] */
  3622.     SSVAL(outbuf,smb_setup+i*SIZEOFWORD,setup[i]);
  3623.   p = smb_buf(outbuf);
  3624.   if (trans==SMBtrans)
  3625.     strcpy(p,name);            /* name[] */
  3626.   else
  3627.     {
  3628.       *p++ = 0;                /* put in a null smb_name */
  3629.       *p++ = 'D'; *p++ = ' ';        /* this was added because OS/2 does it */
  3630.     }
  3631.   if (this_lparam)            /* param[] */
  3632.     memcpy(outparam,param,this_lparam);
  3633.   if (this_ldata)            /* data[] */
  3634.     memcpy(outdata,data,this_ldata);
  3635.   set_message(outbuf,14+lsetup,        /* wcnt, bcc */
  3636.           PTR_DIFF(outdata+this_ldata,smb_buf(outbuf)),False);
  3637.  
  3638.   show_msg(outbuf);
  3639.   send_smb(Client,outbuf);
  3640.  
  3641.   if (this_ldata < ldata || this_lparam < lparam)
  3642.     {
  3643.       /* receive interim response */
  3644.       if (!receive_smb(Client,inbuf,SHORT_TIMEOUT) || CVAL(inbuf,smb_rcls) != 0)
  3645.     {
  3646.       DEBUG(0,("%s request failed (%s)\n",
  3647.                trans==SMBtrans?"SMBtrans":"SMBtrans2", smb_errstr(inbuf)));
  3648.       return(False);
  3649.     }      
  3650.  
  3651.       tot_data = this_ldata;
  3652.       tot_param = this_lparam;
  3653.  
  3654.       while (tot_data < ldata || tot_param < lparam)
  3655.     {
  3656.       this_lparam = MIN(lparam-tot_param,max_xmit - 500); /* hack */
  3657.       this_ldata = MIN(ldata-tot_data,max_xmit - (500+this_lparam));
  3658.  
  3659.       set_message(outbuf,trans==SMBtrans?8:9,0,True);
  3660.       CVAL(outbuf,smb_com) = trans==SMBtrans ? SMBtranss : SMBtranss2;
  3661.  
  3662.       outparam = smb_buf(outbuf);
  3663.       outdata = outparam+this_lparam;
  3664.  
  3665.       /* secondary request */
  3666.       SSVAL(outbuf,smb_tpscnt,lparam);    /* tpscnt */
  3667.       SSVAL(outbuf,smb_tdscnt,ldata);    /* tdscnt */
  3668.       SSVAL(outbuf,smb_spscnt,this_lparam);    /* pscnt */
  3669.       SSVAL(outbuf,smb_spsoff,smb_offset(outparam,outbuf)); /* psoff */
  3670.       SSVAL(outbuf,smb_spsdisp,tot_param);    /* psdisp */
  3671.       SSVAL(outbuf,smb_sdscnt,this_ldata);    /* dscnt */
  3672.       SSVAL(outbuf,smb_sdsoff,smb_offset(outdata,outbuf)); /* dsoff */
  3673.       SSVAL(outbuf,smb_sdsdisp,tot_data);    /* dsdisp */
  3674.       if (trans==SMBtrans2)
  3675.         SSVAL(outbuf,smb_sfid,fid);        /* fid */
  3676.       if (this_lparam)            /* param[] */
  3677.         memcpy(outparam,param,this_lparam);
  3678.       if (this_ldata)            /* data[] */
  3679.         memcpy(outdata,data,this_ldata);
  3680.       set_message(outbuf,trans==SMBtrans?8:9, /* wcnt, bcc */
  3681.               PTR_DIFF(outdata+this_ldata,smb_buf(outbuf)),False);
  3682.  
  3683.       show_msg(outbuf);
  3684.       send_smb(Client,outbuf);
  3685.  
  3686.       tot_data += this_ldata;
  3687.       tot_param += this_lparam;
  3688.     }
  3689.     }
  3690.  
  3691.     return(True);
  3692. }
  3693.  
  3694. /****************************************************************************
  3695. try and browse available connections on a host
  3696. ****************************************************************************/
  3697. static BOOL browse_host(BOOL sort)
  3698. {
  3699. #ifdef NOSTRCASECMP
  3700. /* If strcasecmp is already defined, remove it. */
  3701. #ifdef strcasecmp
  3702. #undef strcasecmp
  3703. #endif /* strcasecmp */
  3704. #define strcasecmp StrCaseCmp
  3705. #endif /* NOSTRCASECMP */
  3706.  
  3707.   extern int strcasecmp();
  3708.  
  3709.   char *rparam = NULL;
  3710.   char *rdata = NULL;
  3711.   char *p;
  3712.   int rdrcnt,rprcnt;
  3713.   pstring param;
  3714.   int count = -1;
  3715.  
  3716.   /* now send a SMBtrans command with api RNetShareEnum */
  3717.   p = param;
  3718.   SSVAL(p,0,0); /* api number */
  3719.   p += 2;
  3720.   strcpy(p,"WrLeh");
  3721.   p = skip_string(p,1);
  3722.   strcpy(p,"B13BWz");
  3723.   p = skip_string(p,1);
  3724.   SSVAL(p,0,1);
  3725.   SSVAL(p,2,BUFFER_SIZE);
  3726.   p += 4;
  3727.  
  3728.   if (call_api(PTR_DIFF(p,param),0,
  3729.            1024,BUFFER_SIZE,
  3730.                &rprcnt,&rdrcnt,
  3731.            param,NULL,
  3732.            &rparam,&rdata))
  3733.     {
  3734.       int res = SVAL(rparam,0);
  3735.       int converter=SVAL(rparam,2);
  3736.       int i;
  3737.       BOOL long_share_name=False;
  3738.       
  3739.       if (res == 0)
  3740.     {
  3741.       count=SVAL(rparam,4);
  3742.       p = rdata;
  3743.  
  3744.       if (count > 0)
  3745.         {
  3746.           printf("\n\tSharename      Type      Comment\n");
  3747.           printf("\t---------      ----      -------\n");
  3748.         }
  3749.  
  3750.       if (sort)
  3751.         qsort(p,count,20,QSORT_CAST strcasecmp);
  3752.  
  3753.       for (i=0;i<count;i++)
  3754.         {
  3755.           char *sname = p;
  3756.           int type = SVAL(p,14);
  3757.           int comment_offset = IVAL(p,16) & 0xFFFF;
  3758.           fstring typestr;
  3759.           *typestr=0;
  3760.  
  3761.           switch (type)
  3762.         {
  3763.         case STYPE_DISKTREE:
  3764.           strcpy(typestr,"Disk"); break;
  3765.         case STYPE_PRINTQ:
  3766.           strcpy(typestr,"Printer"); break;          
  3767.         case STYPE_DEVICE:
  3768.           strcpy(typestr,"Device"); break;
  3769.         case STYPE_IPC:
  3770.           strcpy(typestr,"IPC"); break;      
  3771.         }
  3772.  
  3773.           printf("\t%-15.15s%-10.10s%s\n",
  3774.              sname,
  3775.              typestr,
  3776.              comment_offset?rdata+comment_offset-converter:"");
  3777.       
  3778.           if (strlen(sname)>8) long_share_name=True;
  3779.       
  3780.           p += 20;
  3781.         }
  3782.  
  3783.       if (long_share_name) {
  3784.         printf("\nNOTE: There were share names longer than 8 chars.\nOn older clients these may not be accessible or may give browsing errors\n");
  3785.       }
  3786.     }
  3787.     }
  3788.   
  3789.   if (rparam) free(rparam);
  3790.   if (rdata) free(rdata);
  3791.  
  3792.   return(count>0);
  3793. }
  3794.  
  3795.  
  3796. /****************************************************************************
  3797. get some server info
  3798. ****************************************************************************/
  3799. static void server_info()
  3800. {
  3801.   char *rparam = NULL;
  3802.   char *rdata = NULL;
  3803.   char *p;
  3804.   int rdrcnt,rprcnt;
  3805.   pstring param;
  3806.  
  3807.   bzero(param,sizeof(param));
  3808.  
  3809.   p = param;
  3810.   SSVAL(p,0,63);         /* NetServerGetInfo()? */
  3811.   p += 2;
  3812.   strcpy(p,"WrLh");
  3813.   p = skip_string(p,1);
  3814.   strcpy(p,"zzzBBzz");
  3815.   p = skip_string(p,1);
  3816.   SSVAL(p,0,10); /* level 10 */
  3817.   SSVAL(p,2,1000);
  3818.   p += 6;
  3819.  
  3820.   if (call_api(PTR_DIFF(p,param),0,
  3821.            6,1000,
  3822.            &rprcnt,&rdrcnt,
  3823.            param,NULL,
  3824.            &rparam,&rdata))
  3825.     {
  3826.       int res = SVAL(rparam,0);
  3827.       int converter=SVAL(rparam,2);
  3828.  
  3829.       if (res == 0)
  3830.     {
  3831.       p = rdata;
  3832.  
  3833.       printf("\nServer=[%s] User=[%s] Workgroup=[%s] Domain=[%s]\n",
  3834.          rdata+SVAL(p,0)-converter,
  3835.          rdata+SVAL(p,4)-converter,
  3836.          rdata+SVAL(p,8)-converter,
  3837.          rdata+SVAL(p,14)-converter);
  3838.     }
  3839.     }
  3840.  
  3841.   if (rparam) free(rparam);
  3842.   if (rdata) free(rdata);
  3843.  
  3844.   return;
  3845. }
  3846.  
  3847.  
  3848. /****************************************************************************
  3849. try and browse available connections on a host
  3850. ****************************************************************************/
  3851. static BOOL list_servers(char *wk_grp)
  3852. {
  3853.   char *rparam = NULL;
  3854.   char *rdata = NULL;
  3855.   int rdrcnt,rprcnt;
  3856.   char *p,*svtype_p;
  3857.   pstring param;
  3858.   int uLevel = 1;
  3859.   int count = 0;
  3860.   BOOL ok = False;
  3861.   BOOL generic_request = False;
  3862.  
  3863.  
  3864.   if (strequal(wk_grp,"WORKGROUP")) {
  3865.     /* we won't specify a workgroup */
  3866.     generic_request = True;
  3867.   } 
  3868.  
  3869.   /* now send a SMBtrans command with api ServerEnum? */
  3870.   p = param;
  3871.   SSVAL(p,0,0x68); /* api number */
  3872.   p += 2;
  3873.  
  3874.   strcpy(p,generic_request?"WrLehDO":"WrLehDz");
  3875.   p = skip_string(p,1);
  3876.  
  3877.   strcpy(p,"B16BBDz");
  3878.  
  3879.   p = skip_string(p,1);
  3880.   SSVAL(p,0,uLevel);
  3881.   SSVAL(p,2,BUFFER_SIZE - SAFETY_MARGIN); /* buf length */
  3882.   p += 4;
  3883.  
  3884.   svtype_p = p;
  3885.   p += 4;
  3886.  
  3887.   if (!generic_request) {
  3888.     strcpy(p, wk_grp);
  3889.     p = skip_string(p,1);
  3890.   }
  3891.  
  3892.   /* first ask for a list of servers in this workgroup */
  3893.   SIVAL(svtype_p,0,SV_TYPE_ALL);
  3894.  
  3895.   if (call_api(PTR_DIFF(p+4,param),0,
  3896.            8,BUFFER_SIZE - SAFETY_MARGIN,
  3897.            &rprcnt,&rdrcnt,
  3898.            param,NULL,
  3899.            &rparam,&rdata))
  3900.     {
  3901.       int res = SVAL(rparam,0);
  3902.       int converter=SVAL(rparam,2);
  3903.       int i;
  3904.  
  3905.       if (res == 0) {    
  3906.     char *p2 = rdata;
  3907.     count=SVAL(rparam,4);
  3908.  
  3909.     if (count > 0) {
  3910.       printf("\n\nThis machine has a browse list:\n");
  3911.       printf("\n\tServer               Comment\n");
  3912.       printf("\t---------            -------\n");
  3913.     }
  3914.     
  3915.     for (i=0;i<count;i++) {
  3916.       char *sname = p2;
  3917.       int comment_offset = IVAL(p2,22) & 0xFFFF;
  3918.       printf("\t%-16.16s     %s\n",
  3919.          sname,
  3920.          comment_offset?rdata+comment_offset-converter:"");
  3921.  
  3922.       ok=True;
  3923.       p2 += 26;
  3924.     }
  3925.       }
  3926.     }
  3927.  
  3928.   if (rparam) {free(rparam); rparam = NULL;}
  3929.   if (rdata) {free(rdata); rdata = NULL;}
  3930.  
  3931.   /* now ask for a list of workgroups */
  3932.   SIVAL(svtype_p,0,SV_TYPE_DOMAIN_ENUM);
  3933.  
  3934.   if (call_api(PTR_DIFF(p+4,param),0,
  3935.            8,BUFFER_SIZE - SAFETY_MARGIN,
  3936.            &rprcnt,&rdrcnt,
  3937.            param,NULL,
  3938.            &rparam,&rdata))
  3939.     {
  3940.       int res = SVAL(rparam,0);
  3941.       int converter=SVAL(rparam,2);
  3942.       int i;
  3943.  
  3944.       if (res == 0) {
  3945.     char *p2 = rdata;
  3946.     count=SVAL(rparam,4);
  3947.  
  3948.     if (count > 0) {
  3949.       printf("\n\nThis machine has a workgroup list:\n");
  3950.       printf("\n\tWorkgroup            Master\n");
  3951.       printf("\t---------            -------\n");
  3952.     }
  3953.     
  3954.     for (i=0;i<count;i++) {
  3955.       char *sname = p2;
  3956.       int comment_offset = IVAL(p2,22) & 0xFFFF;
  3957.       printf("\t%-16.16s     %s\n",
  3958.          sname,
  3959.          comment_offset?rdata+comment_offset-converter:"");
  3960.       
  3961.       ok=True;
  3962.       p2 += 26;
  3963.     }
  3964.       }
  3965.     }
  3966.  
  3967.   if (rparam) free(rparam);
  3968.   if (rdata) free(rdata);
  3969.  
  3970.   return(ok);
  3971. }
  3972.  
  3973.  
  3974. /* This defines the commands supported by this client */
  3975. struct
  3976. {
  3977.   char *name;
  3978.   void (*fn)();
  3979.   char *description;
  3980. } commands[] = 
  3981. {
  3982.   {"ls",cmd_dir,"<mask> list the contents of the current directory"},
  3983.   {"dir",cmd_dir,"<mask> list the contents of the current directory"},
  3984.   {"lcd",cmd_lcd,"[directory] change/report the local current working directory"},
  3985.   {"cd",cmd_cd,"[directory] change/report the remote directory"},
  3986.   {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)"},
  3987.   {"get",cmd_get,"<remote name> [local name] get a file"},
  3988.   {"mget",cmd_mget,"<mask> get all the matching files"},
  3989.   {"put",cmd_put,"<local name> [remote name] put a file"},
  3990.   {"mput",cmd_mput,"<mask> put all matching files"},
  3991.   {"rename",cmd_rename,"<src> <dest> rename some files"},
  3992.   {"more",cmd_more,"<remote name> view a remote file with your pager"},  
  3993.   {"mask",cmd_select,"<mask> mask all filenames against this"},
  3994.   {"del",cmd_del,"<mask> delete all matching files"},
  3995.   {"rm",cmd_del,"<mask> delete all matching files"},
  3996.   {"mkdir",cmd_mkdir,"<directory> make a directory"},
  3997.   {"md",cmd_mkdir,"<directory> make a directory"},
  3998.   {"rmdir",cmd_rmdir,"<directory> remove a directory"},
  3999.   {"rd",cmd_rmdir,"<directory> remove a directory"},
  4000.   {"pq",cmd_p_queue_4,"enumerate the print queue"},
  4001.   {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput"},  
  4002.   {"recurse",cmd_recurse,"toggle directory recursion for mget and mput"},  
  4003.   {"translate",cmd_translate,"toggle text translation for printing"},  
  4004.   {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get"},  
  4005.   {"print",cmd_print,"<file name> print a file"},
  4006.   {"printmode",cmd_printmode,"<graphics or text> set the print mode"},
  4007.   {"queue",cmd_queue,"show the print queue"},
  4008.   {"qinfo",cmd_qinfo,"show print queue information"},
  4009.   {"cancel",cmd_cancel,"<jobid> cancel a print queue entry"},
  4010.   {"stat",cmd_stat,"<file> get info on a file (experimental!)"},
  4011.   {"quit",send_logout,"logoff the server"},
  4012.   {"q",send_logout,"logoff the server"},
  4013.   {"exit",send_logout,"logoff the server"},
  4014.   {"newer",cmd_newer,"<file> only mget files newer than the specified local file"},
  4015.   {"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"},
  4016.   {"tar",cmd_tar,"tar <c|x>[IXbgNa] current directory to/from <file name>" },
  4017.   {"blocksize",cmd_block,"blocksize <number> (default 20)" },
  4018.   {"tarmode",cmd_tarmode,
  4019.      "<full|inc|reset|noreset> tar's behaviour towards archive bits" },
  4020.   {"setmode",cmd_setmode,"filename <setmode string> change modes of file"},
  4021.   {"help",cmd_help,"[command] give help on a command"},
  4022.   {"?",cmd_help,"[command] give help on a command"},
  4023.   {"!",NULL,"run a shell command on the local system"},
  4024.   {"",NULL,NULL}
  4025. };
  4026.  
  4027.  
  4028. /*******************************************************************
  4029.   lookup a command string in the list of commands, including 
  4030.   abbreviations
  4031.   ******************************************************************/
  4032. static int process_tok(fstring tok)
  4033. {
  4034.   int i = 0, matches = 0;
  4035.   int cmd=0;
  4036.   int tok_len = strlen(tok);
  4037.   
  4038.   while (commands[i].fn != NULL)
  4039.     {
  4040.       if (strequal(commands[i].name,tok))
  4041.     {
  4042.       matches = 1;
  4043.       cmd = i;
  4044.       break;
  4045.     }
  4046.       else if (strnequal(commands[i].name, tok, tok_len+1))
  4047.     {
  4048.       matches++;
  4049.       cmd = i;
  4050.     }
  4051.       i++;
  4052.     }
  4053.   
  4054.   if (matches == 0)
  4055.     return(-1);
  4056.   else if (matches == 1)
  4057.     return(cmd);
  4058.   else
  4059.     return(-2);
  4060. }
  4061.  
  4062. /****************************************************************************
  4063. help
  4064. ****************************************************************************/
  4065. void cmd_help(void)
  4066. {
  4067.   int i=0,j;
  4068.   fstring buf;
  4069.  
  4070.   if (next_token(NULL,buf,NULL))
  4071.     {
  4072.       if ((i = process_tok(buf)) >= 0)
  4073.     DEBUG(0,("HELP %s:\n\t%s\n\n",commands[i].name,commands[i].description));            
  4074.     }
  4075.   else
  4076.     while (commands[i].description)
  4077.       {
  4078.     for (j=0; commands[i].description && (j<5); j++) {
  4079.       DEBUG(0,("%-15s",commands[i].name));
  4080.       i++;
  4081.     }
  4082.     DEBUG(0,("\n"));
  4083.       }
  4084. }
  4085.  
  4086. /****************************************************************************
  4087. open the client sockets
  4088. ****************************************************************************/
  4089. static BOOL open_sockets(int port )
  4090. {
  4091.   static int last_port;
  4092.   char *host;
  4093.   pstring service2;
  4094.   extern int Client;
  4095. #ifdef USENMB
  4096.   BOOL failed = True;
  4097. #endif
  4098.  
  4099.   if (port == 0) port=last_port;
  4100.   last_port=port;
  4101.  
  4102.   strupper(service);
  4103.  
  4104.   if (*desthost)
  4105.     {
  4106.       host = desthost;
  4107.     }
  4108.   else
  4109.     {
  4110.       strcpy(service2,service);
  4111.       host = strtok(service2,"\\/");
  4112.       if (!host) {
  4113.     DEBUG(0,("Badly formed host name\n"));
  4114.     return(False);
  4115.       }
  4116.       strcpy(desthost,host);
  4117.     }
  4118.  
  4119.   if (*myname == 0) {
  4120.       get_myname(myname,NULL);
  4121.   }
  4122.   strupper(myname);
  4123.  
  4124.   DEBUG(3,("Opening sockets\n"));
  4125.  
  4126.   if (!have_ip)
  4127.     {
  4128.       struct hostent *hp;
  4129.  
  4130.       if ((hp = Get_Hostbyname(host))) {
  4131.     putip((char *)&dest_ip,(char *)hp->h_addr);
  4132.     failed = False;
  4133.       } else {
  4134. #ifdef USENMB
  4135.     /* Try and resolve the name with the netbios server */
  4136.     int               bcast;
  4137.  
  4138.     if ((bcast = open_socket_in(SOCK_DGRAM, 0, 3,
  4139.                     interpret_addr(lp_socket_address()))) != -1) {
  4140.       set_socket_options(bcast, "SO_BROADCAST");
  4141.  
  4142.       if (name_query(bcast, host, name_type, True, True, *iface_bcast(dest_ip),
  4143.              &dest_ip,0)) {
  4144.         failed = False;
  4145.       }
  4146.       close (bcast);
  4147.     }
  4148. #endif
  4149.     if (failed) {
  4150.       DEBUG(0,("Get_Hostbyname: Unknown host %s.\n",host));
  4151.       return False;
  4152.     }
  4153.       }
  4154.     }
  4155.  
  4156.   Client = open_socket_out(SOCK_STREAM, &dest_ip, port, LONG_CONNECT_TIMEOUT);
  4157.   if (Client == -1)
  4158.     return False;
  4159.  
  4160.   DEBUG(3,("Connected\n"));
  4161.   
  4162.   set_socket_options(Client,user_socket_options);  
  4163.   
  4164.   return True;
  4165. }
  4166.  
  4167. /****************************************************************************
  4168. wait for keyboard activity, swallowing network packets
  4169. ****************************************************************************/
  4170. #ifdef CLIX
  4171. static char wait_keyboard(char *buffer)
  4172. #else
  4173. static void wait_keyboard(char *buffer)
  4174. #endif
  4175. {
  4176.   fd_set fds;
  4177.   int selrtn;
  4178.   struct timeval timeout;
  4179.   
  4180. #ifdef CLIX
  4181.   int delay = 0;
  4182. #endif
  4183.   
  4184.   while (1) 
  4185.     {
  4186.       extern int Client;
  4187.       FD_ZERO(&fds);
  4188.       FD_SET(Client,&fds);
  4189. #ifndef CLIX
  4190.       FD_SET(fileno(stdin),&fds);
  4191. #endif
  4192.  
  4193.       timeout.tv_sec = 20;
  4194.       timeout.tv_usec = 0;
  4195. #ifdef CLIX
  4196.       timeout.tv_sec = 0;
  4197. #endif
  4198.       selrtn = sys_select(&fds,&timeout);
  4199.       
  4200. #ifndef CLIX
  4201.       if (FD_ISSET(fileno(stdin),&fds))
  4202.       return;
  4203. #else
  4204.       {
  4205.     char ch;
  4206.     int readret;
  4207.  
  4208.     set_blocking(fileno(stdin), False);    
  4209.     readret = read_data( fileno(stdin), &ch, 1);
  4210.     set_blocking(fileno(stdin), True);
  4211.     if (readret == -1)
  4212.       {
  4213.         if (errno != EAGAIN)
  4214.           {
  4215.         /* should crash here */
  4216.         DEBUG(1,("readchar stdin failed\n"));
  4217.           }
  4218.       }
  4219.     else if (readret != 0)
  4220.       {
  4221.         return ch;
  4222.       }
  4223.       }
  4224. #endif
  4225.       if (FD_ISSET(Client,&fds))
  4226.       receive_smb(Client,buffer,0);
  4227.       
  4228. #ifdef CLIX
  4229.       delay++;
  4230.       if (delay > 100000)
  4231.     {
  4232.       delay = 0;
  4233.       chkpath("\\",False);
  4234.     }
  4235. #else
  4236.       chkpath("\\",False);
  4237. #endif
  4238.     }  
  4239. }
  4240.  
  4241.  
  4242. /****************************************************************************
  4243. close and open the connection again
  4244. ****************************************************************************/
  4245. BOOL reopen_connection(char *inbuf,char *outbuf)
  4246. {
  4247.   static int open_count=0;
  4248.  
  4249.   open_count++;
  4250.  
  4251.   if (open_count>5) return(False);
  4252.  
  4253.   DEBUG(1,("Trying to re-open connection\n"));
  4254.  
  4255.   set_message(outbuf,0,0,True);
  4256.   SCVAL(outbuf,smb_com,SMBtdis);
  4257.   SSVAL(outbuf,smb_tid,cnum);
  4258.   setup_pkt(outbuf);
  4259.  
  4260.   send_smb(Client,outbuf);
  4261.   receive_smb(Client,inbuf,SHORT_TIMEOUT);
  4262.  
  4263.   close_sockets();
  4264.   if (!open_sockets(0)) return(False);
  4265.  
  4266.   return(send_login(inbuf,outbuf,True,True));
  4267. }
  4268.  
  4269. /****************************************************************************
  4270.   process commands from the client
  4271. ****************************************************************************/
  4272. static BOOL process(char *base_directory)
  4273. {
  4274.   extern FILE *dbf;
  4275.   pstring line;
  4276.   char *cmd;
  4277.  
  4278.   char *InBuffer = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  4279.   char *OutBuffer = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  4280.  
  4281.   if ((InBuffer == NULL) || (OutBuffer == NULL)) 
  4282.     return(False);
  4283.   
  4284.   bzero(OutBuffer,smb_size);
  4285.  
  4286.   if (!send_login(InBuffer,OutBuffer,True,True))
  4287.     return(False);
  4288.  
  4289.   if (*base_directory) do_cd(base_directory);
  4290.  
  4291.   cmd = cmdstr;
  4292.   if (cmd[0] != '\0') while (cmd[0] != '\0')
  4293.     {
  4294.       char *p;
  4295.       fstring tok;
  4296.       int i;
  4297.  
  4298.       if ((p = strchr(cmd, ';')) == 0)
  4299.     {
  4300.       strncpy(line, cmd, 999);
  4301.       line[1000] = '\0';
  4302.       cmd += strlen(cmd);
  4303.     }
  4304.       else
  4305.     {
  4306.       if (p - cmd > 999) p = cmd + 999;
  4307.       strncpy(line, cmd, p - cmd);
  4308.       line[p - cmd] = '\0';
  4309.       cmd = p + 1;
  4310.     }
  4311.  
  4312.       /* input language code to internal one */
  4313.       CNV_INPUT (line);
  4314.       
  4315.       /* and get the first part of the command */
  4316.       {
  4317.     char *ptr = line;
  4318.     if (!next_token(&ptr,tok,NULL)) continue;
  4319.       }
  4320.  
  4321.       if ((i = process_tok(tok)) >= 0)
  4322.     commands[i].fn(InBuffer,OutBuffer);
  4323.       else if (i == -2)
  4324.     DEBUG(0,("%s: command abbreviation ambiguous\n",CNV_LANG(tok)));
  4325.       else
  4326.     DEBUG(0,("%s: command not found\n",CNV_LANG(tok)));
  4327.     }
  4328.   else while (!feof(stdin))
  4329.     {
  4330.       fstring tok;
  4331.       int i;
  4332.  
  4333.       bzero(OutBuffer,smb_size);
  4334.  
  4335.       /* display a prompt */
  4336.       DEBUG(0,("smb: %s> ", CNV_LANG(cur_dir)));
  4337.       fflush(dbf);
  4338.  
  4339. #ifdef CLIX
  4340.       line[0] = wait_keyboard(InBuffer);
  4341.       /* this might not be such a good idea... */
  4342.       if ( line[0] == EOF)
  4343.     break;
  4344. #else
  4345.       wait_keyboard(InBuffer);
  4346. #endif
  4347.   
  4348.       /* and get a response */
  4349. #ifdef CLIX
  4350.       fgets( &line[1],999, stdin);
  4351. #else
  4352.       if (!fgets(line,1000,stdin))
  4353.     break;
  4354. #endif
  4355.  
  4356.       /* input language code to internal one */
  4357.       CNV_INPUT (line);
  4358.  
  4359.       /* special case - first char is ! */
  4360.       if (*line == '!')
  4361.     {
  4362.       system(line + 1);
  4363.       continue;
  4364.     }
  4365.       
  4366.       /* and get the first part of the command */
  4367.       {
  4368.     char *ptr = line;
  4369.     if (!next_token(&ptr,tok,NULL)) continue;
  4370.       }
  4371.  
  4372.       if ((i = process_tok(tok)) >= 0)
  4373.     commands[i].fn(InBuffer,OutBuffer);
  4374.       else if (i == -2)
  4375.     DEBUG(0,("%s: command abbreviation ambiguous\n",CNV_LANG(tok)));
  4376.       else
  4377.     DEBUG(0,("%s: command not found\n",CNV_LANG(tok)));
  4378.     }
  4379.   
  4380.   send_logout();
  4381.   return(True);
  4382. }
  4383.  
  4384.  
  4385. /****************************************************************************
  4386. usage on the program
  4387. ****************************************************************************/
  4388. static void usage(char *pname)
  4389. {
  4390.   DEBUG(0,("Usage: %s service <password> [-p port] [-d debuglevel] [-l log] ",
  4391.        pname));
  4392.  
  4393. #ifdef KANJI
  4394.   DEBUG(0,("[-t termcode] "));
  4395. #endif /* KANJI */
  4396.  
  4397.   DEBUG(0,("\nVersion %s\n",VERSION));
  4398.   DEBUG(0,("\t-p port               listen on the specified port\n"));
  4399.   DEBUG(0,("\t-d debuglevel         set the debuglevel\n"));
  4400.   DEBUG(0,("\t-l log basename.      Basename for log/debug files\n"));
  4401.   DEBUG(0,("\t-n netbios name.      Use this name as my netbios name\n"));
  4402.   DEBUG(0,("\t-N                    don't ask for a password\n"));
  4403.   DEBUG(0,("\t-P                    connect to service as a printer\n"));
  4404.   DEBUG(0,("\t-M host               send a winpopup message to the host\n"));
  4405.   DEBUG(0,("\t-m max protocol       set the max protocol level\n"));
  4406.   DEBUG(0,("\t-L host               get a list of shares available on a host\n"));
  4407.   DEBUG(0,("\t-I dest IP            use this IP to connect to\n"));
  4408.   DEBUG(0,("\t-E                    write messages to stderr instead of stdout\n"));
  4409.   DEBUG(0,("\t-U username           set the network username\n"));
  4410.   DEBUG(0,("\t-W workgroup          set the workgroup name\n"));
  4411.   DEBUG(0,("\t-c command string     execute semicolon separated commands\n"));
  4412. #ifdef KANJI
  4413.   DEBUG(0,("\t-t terminal code      terminal i/o code {sjis|euc|jis7|jis8|junet|hex}\n"));
  4414. #endif /* KANJI */
  4415.   DEBUG(0,("\t-T<c|x>IXgbNa          command line tar\n"));
  4416.   DEBUG(0,("\t-D directory          start from directory\n"));
  4417.   DEBUG(0,("\n"));
  4418. }
  4419.  
  4420. /****************************************************************************
  4421.   main program
  4422. ****************************************************************************/
  4423.  int main(int argc,char *argv[])
  4424. {
  4425.   fstring base_directory;
  4426.   char *pname = argv[0];
  4427.   int port = SMB_PORT;
  4428.   int opt;
  4429.   extern FILE *dbf;
  4430.   extern char *optarg;
  4431.   extern int optind;
  4432.   pstring query_host;
  4433.   BOOL message = False;
  4434.   extern char tar_type;
  4435.   static pstring servicesf = CONFIGFILE;
  4436.  
  4437.   *query_host = 0;
  4438.   *base_directory = 0;
  4439.  
  4440.   DEBUGLEVEL = 2;
  4441.  
  4442.   setup_logging(pname,True);
  4443.  
  4444.   TimeInit();
  4445.   charset_initialise();
  4446.  
  4447.   pid = getpid();
  4448.   uid = getuid();
  4449.   gid = getgid();
  4450.   mid = pid + 100;
  4451.   myumask = umask(0);
  4452.   umask(myumask);
  4453.  
  4454.   if (getenv("USER"))
  4455.     {
  4456.       strcpy(username,getenv("USER"));
  4457.       strupper(username);
  4458.     }
  4459.  
  4460.   if (*username == 0 && getenv("LOGNAME"))
  4461.     {
  4462.       strcpy(username,getenv("LOGNAME"));
  4463.       strupper(username);
  4464.     }
  4465.  
  4466.   if (argc < 2)
  4467.     {
  4468.       usage(pname);
  4469.       exit(1);
  4470.     }
  4471.   
  4472.   if (*argv[1] != '-')
  4473.     {
  4474.  
  4475.       strcpy(service,argv[1]);  
  4476.       /* Convert any '/' characters in the service name to '\' characters */
  4477.       string_replace( service, '/','\\');
  4478.       argc--;
  4479.       argv++;
  4480.  
  4481.       if (count_chars(service,'\\') < 3)
  4482.     {
  4483.       usage(pname);
  4484.       printf("\n%s: Not enough '\\' characters in service\n",service);
  4485.       exit(1);
  4486.     }
  4487.  
  4488. /*
  4489.       if (count_chars(service,'\\') > 3)
  4490.     {
  4491.       usage(pname);
  4492.       printf("\n%s: Too many '\\' characters in service\n",service);
  4493.       exit(1);
  4494.     }
  4495.     */
  4496.  
  4497.       if (argc > 1 && (*argv[1] != '-'))
  4498.     {
  4499.       got_pass = True;
  4500.       strcpy(password,argv[1]);  
  4501.       memset(argv[1],'X',strlen(argv[1]));
  4502.       argc--;
  4503.       argv++;
  4504.     }
  4505.     }
  4506.  
  4507. #ifdef KANJI
  4508.   setup_term_code (KANJI);
  4509. #endif
  4510.   while ((opt = 
  4511.       getopt(argc, argv,"s:B:O:M:i:Nn:d:Pp:l:hI:EB:U:L:t:m:W:T:D:c:")) != EOF)
  4512.     switch (opt)
  4513.       {
  4514.       case 'm':
  4515.     max_protocol = interpret_protocol(optarg,max_protocol);
  4516.     break;
  4517.       case 'O':
  4518.     strcpy(user_socket_options,optarg);
  4519.     break;    
  4520.       case 'M':
  4521.     name_type = 0x03; /* messages are sent to NetBIOS name type 0x3 */
  4522.     strcpy(desthost,optarg);
  4523.     strupper(desthost);
  4524.     message = True;
  4525.     break;
  4526.       case 'B':
  4527.     iface_set_default(NULL,optarg,NULL);
  4528.     break;
  4529.       case 'D':
  4530.     strcpy(base_directory,optarg);
  4531.     break;
  4532.       case 'T':
  4533.     if (!tar_parseargs(argc, argv, optarg, optind)) {
  4534.       usage(pname);
  4535.       exit(1);
  4536.     }
  4537.     break;
  4538.       case 'i':
  4539.     strcpy(scope,optarg);
  4540.     break;
  4541.       case 'L':
  4542.     got_pass = True;
  4543.     strcpy(query_host,optarg);
  4544.     break;
  4545.       case 'U':
  4546.     {
  4547.       char *p;
  4548.     strcpy(username,optarg);
  4549.     if ((p=strchr(username,'%')))
  4550.       {
  4551.         *p = 0;
  4552.         strcpy(password,p+1);
  4553.         got_pass = True;
  4554.         memset(strchr(optarg,'%')+1,'X',strlen(password));
  4555.       }
  4556.     }
  4557.         
  4558.     break;
  4559.       case 'W':
  4560.     strcpy(workgroup,optarg);
  4561.     break;
  4562.       case 'E':
  4563.     dbf = stderr;
  4564.     break;
  4565.       case 'I':
  4566.     {
  4567.       dest_ip = *interpret_addr2(optarg);
  4568.       if (zero_ip(dest_ip)) exit(1);
  4569.       have_ip = True;
  4570.     }
  4571.     break;
  4572.       case 'n':
  4573.     strcpy(myname,optarg);
  4574.     break;
  4575.       case 'N':
  4576.     got_pass = True;
  4577.     break;
  4578.       case 'P':
  4579.     connect_as_printer = True;
  4580.     break;
  4581.       case 'd':
  4582.     if (*optarg == 'A')
  4583.       DEBUGLEVEL = 10000;
  4584.     else
  4585.       DEBUGLEVEL = atoi(optarg);
  4586.     break;
  4587.       case 'l':
  4588.     sprintf(debugf,"%s.client",optarg);
  4589.     break;
  4590.       case 'p':
  4591.     port = atoi(optarg);
  4592.     break;
  4593.       case 'c':
  4594.     cmdstr = optarg;
  4595.     got_pass = True;
  4596.     break;
  4597.       case 'h':
  4598.     usage(pname);
  4599.     exit(0);
  4600.     break;
  4601.       case 's':
  4602.     strcpy(servicesf, optarg);
  4603.     break;
  4604.       case 't':
  4605. #ifdef KANJI
  4606.     if (!setup_term_code (optarg)) {
  4607.         DEBUG(0, ("%s: unknown terminal code name\n", optarg));
  4608.         usage (pname);
  4609.         exit (1);
  4610.     }
  4611. #endif
  4612.     break;
  4613.       default:
  4614.     usage(pname);
  4615.     exit(1);
  4616.       }
  4617.  
  4618.   if (!tar_type && !*query_host && !*service && !message)
  4619.     {
  4620.       usage(pname);
  4621.       exit(1);
  4622.     }
  4623.  
  4624.  
  4625.   DEBUG(3,("%s client started (version %s)\n",timestring(),VERSION));
  4626.  
  4627.   if (!lp_load(servicesf,True)) {
  4628.     fprintf(stderr, "Can't load %s - run testparm to debug it\n", servicesf);
  4629.   }
  4630.  
  4631.   if (*workgroup == 0)
  4632.     strcpy(workgroup,lp_workgroup());
  4633.  
  4634.   load_interfaces();
  4635.   get_myname(*myname?NULL:myname,NULL);  
  4636.   strupper(myname);
  4637.  
  4638.   if (tar_type) {
  4639.     recurse=True;
  4640.  
  4641.     if (open_sockets(port)) {
  4642.         char *InBuffer = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  4643.     char *OutBuffer = (char *)malloc(BUFFER_SIZE + SAFETY_MARGIN);
  4644.     int ret;
  4645.  
  4646.     if ((InBuffer == NULL) || (OutBuffer == NULL)) 
  4647.       return(1);
  4648.  
  4649.     bzero(OutBuffer,smb_size);
  4650.     if (!send_login(InBuffer,OutBuffer,True,True))
  4651.       return(False);
  4652.  
  4653.     if (*base_directory) do_cd(base_directory);
  4654.  
  4655.     ret=process_tar(InBuffer, OutBuffer);
  4656.  
  4657.     send_logout();
  4658.     close_sockets();
  4659.     return(ret);
  4660.     } else
  4661.       return(1);
  4662.   }
  4663.   
  4664.   if (*query_host)
  4665.     {
  4666.       int ret = 0;
  4667.       sprintf(service,"\\\\%s\\IPC$",query_host);
  4668.       strupper(service);
  4669.       connect_as_ipc = True;
  4670.       if (open_sockets(port))
  4671.     {
  4672. #if 0
  4673.       *username = 0;
  4674. #endif
  4675.       if (!send_login(NULL,NULL,True,True))
  4676.         return(1);
  4677.  
  4678.       server_info();
  4679.       if (!browse_host(True)) {
  4680.         sleep(1);
  4681.         browse_host(True);
  4682.       }
  4683.       if (!list_servers(workgroup)) {
  4684.         sleep(1);
  4685.         list_servers(workgroup);
  4686.       }
  4687.  
  4688.       send_logout();
  4689.       close_sockets();
  4690.     }
  4691.  
  4692.       return(ret);
  4693.     }
  4694.  
  4695.   if (message)
  4696.     {
  4697.       int ret = 0;
  4698.       if (open_sockets(port))
  4699.     {
  4700.       pstring inbuf,outbuf;
  4701.       bzero(outbuf,smb_size);
  4702.       if (!send_session_request(inbuf,outbuf))
  4703.         return(1);
  4704.  
  4705.       send_message(inbuf,outbuf);
  4706.  
  4707.       close_sockets();
  4708.     }
  4709.  
  4710.       return(ret);
  4711.     }
  4712.  
  4713.   if (open_sockets(port))
  4714.     {
  4715.       if (!process(base_directory))
  4716.     {
  4717.       close_sockets();
  4718.       return(1);
  4719.     }
  4720.       close_sockets();
  4721.     }
  4722.   else
  4723.     return(1);
  4724.  
  4725.   return(0);
  4726. }
  4727.  
  4728.  
  4729. /* error code stuff - put together by Merik Karman
  4730.    merik@blackadder.dsh.oz.au */
  4731.  
  4732. typedef struct
  4733. {
  4734.   char *name;
  4735.   int code;
  4736.   char *message;
  4737. } err_code_struct;
  4738.  
  4739. /* Dos Error Messages */
  4740. err_code_struct dos_msgs[] = {
  4741.   {"ERRbadfunc",1,"Invalid function."},
  4742.   {"ERRbadfile",2,"File not found."},
  4743.   {"ERRbadpath",3,"Directory invalid."},
  4744.   {"ERRnofids",4,"No file descriptors available"},
  4745.   {"ERRnoaccess",5,"Access denied."},
  4746.   {"ERRbadfid",6,"Invalid file handle."},
  4747.   {"ERRbadmcb",7,"Memory control blocks destroyed."},
  4748.   {"ERRnomem",8,"Insufficient server memory to perform the requested function."},
  4749.   {"ERRbadmem",9,"Invalid memory block address."},
  4750.   {"ERRbadenv",10,"Invalid environment."},
  4751.   {"ERRbadformat",11,"Invalid format."},
  4752.   {"ERRbadaccess",12,"Invalid open mode."},
  4753.   {"ERRbaddata",13,"Invalid data."},
  4754.   {"ERR",14,"reserved."},
  4755.   {"ERRbaddrive",15,"Invalid drive specified."},
  4756.   {"ERRremcd",16,"A Delete Directory request attempted  to  remove  the  server's  current directory."},
  4757.   {"ERRdiffdevice",17,"Not same device."},
  4758.   {"ERRnofiles",18,"A File Search command can find no more files matching the specified criteria."},
  4759.   {"ERRbadshare",32,"The sharing mode specified for an Open conflicts with existing  FIDs  on the file."},
  4760.   {"ERRlock",33,"A Lock request conflicted with an existing lock or specified an  invalid mode,  or an Unlock requested attempted to remove a lock held by another process."},
  4761.   {"ERRfilexists",80,"The file named in a Create Directory, Make  New  File  or  Link  request already exists."},
  4762.   {"ERRbadpipe",230,"Pipe invalid."},
  4763.   {"ERRpipebusy",231,"All instances of the requested pipe are busy."},
  4764.   {"ERRpipeclosing",232,"Pipe close in progress."},
  4765.   {"ERRnotconnected",233,"No process on other end of pipe."},
  4766.   {"ERRmoredata",234,"There is more data to be returned."},
  4767.   {"ERRinvgroup",2455,"Invalid workgroup (try the -W option)"},
  4768.   {NULL,-1,NULL}};
  4769.  
  4770. /* Server Error Messages */
  4771. err_code_struct server_msgs[] = {
  4772.   {"ERRerror",1,"Non-specific error code."},
  4773.   {"ERRbadpw",2,"Bad password - name/password pair in a Tree Connect or Session Setup are invalid."},
  4774.   {"ERRbadtype",3,"reserved."},
  4775.   {"ERRaccess",4,"The requester does not have  the  necessary  access  rights  within  the specified  context for the requested function. The context is defined by the TID or the UID."},
  4776.   {"ERRinvnid",5,"The tree ID (TID) specified in a command was invalid."},
  4777.   {"ERRinvnetname",6,"Invalid network name in tree connect."},
  4778.   {"ERRinvdevice",7,"Invalid device - printer request made to non-printer connection or  non-printer request made to printer connection."},
  4779.   {"ERRqfull",49,"Print queue full (files) -- returned by open print file."},
  4780.   {"ERRqtoobig",50,"Print queue full -- no space."},
  4781.   {"ERRqeof",51,"EOF on print queue dump."},
  4782.   {"ERRinvpfid",52,"Invalid print file FID."},
  4783.   {"ERRsmbcmd",64,"The server did not recognize the command received."},
  4784.   {"ERRsrverror",65,"The server encountered an internal error, e.g., system file unavailable."},
  4785.   {"ERRfilespecs",67,"The file handle (FID) and pathname parameters contained an invalid  combination of values."},
  4786.   {"ERRreserved",68,"reserved."},
  4787.   {"ERRbadpermits",69,"The access permissions specified for a file or directory are not a valid combination.  The server cannot set the requested attribute."},
  4788.   {"ERRreserved",70,"reserved."},
  4789.   {"ERRsetattrmode",71,"The attribute mode in the Set File Attribute request is invalid."},
  4790.   {"ERRpaused",81,"Server is paused."},
  4791.   {"ERRmsgoff",82,"Not receiving messages."},
  4792.   {"ERRnoroom",83,"No room to buffer message."},
  4793.   {"ERRrmuns",87,"Too many remote user names."},
  4794.   {"ERRtimeout",88,"Operation timed out."},
  4795.   {"ERRnoresource",89,"No resources currently available for request."},
  4796.   {"ERRtoomanyuids",90,"Too many UIDs active on this session."},
  4797.   {"ERRbaduid",91,"The UID is not known as a valid ID on this session."},
  4798.   {"ERRusempx",250,"Temp unable to support Raw, use MPX mode."},
  4799.   {"ERRusestd",251,"Temp unable to support Raw, use standard read/write."},
  4800.   {"ERRcontmpx",252,"Continue in MPX mode."},
  4801.   {"ERRreserved",253,"reserved."},
  4802.   {"ERRreserved",254,"reserved."},
  4803.   {"ERRnosupport",0xFFFF,"Function not supported."},
  4804.   {NULL,-1,NULL}};
  4805.  
  4806. /* Hard Error Messages */
  4807. err_code_struct hard_msgs[] = {
  4808.   {"ERRnowrite",19,"Attempt to write on write-protected diskette."},
  4809.   {"ERRbadunit",20,"Unknown unit."},
  4810.   {"ERRnotready",21,"Drive not ready."},
  4811.   {"ERRbadcmd",22,"Unknown command."},
  4812.   {"ERRdata",23,"Data error (CRC)."},
  4813.   {"ERRbadreq",24,"Bad request structure length."},
  4814.   {"ERRseek",25 ,"Seek error."},
  4815.   {"ERRbadmedia",26,"Unknown media type."},
  4816.   {"ERRbadsector",27,"Sector not found."},
  4817.   {"ERRnopaper",28,"Printer out of paper."},
  4818.   {"ERRwrite",29,"Write fault."},
  4819.   {"ERRread",30,"Read fault."},
  4820.   {"ERRgeneral",31,"General failure."},
  4821.   {"ERRbadshare",32,"An open conflicts with an existing open."},
  4822.   {"ERRlock",33,"A Lock request conflicted with an existing lock or specified an invalid mode, or an Unlock requested attempted to remove a lock held by another process."},
  4823.   {"ERRwrongdisk",34,"The wrong disk was found in a drive."},
  4824.   {"ERRFCBUnavail",35,"No FCBs are available to process request."},
  4825.   {"ERRsharebufexc",36,"A sharing buffer has been exceeded."},
  4826.   {NULL,-1,NULL}};
  4827.  
  4828.  
  4829. struct
  4830. {
  4831.   int code;
  4832.   char *class;
  4833.   err_code_struct *err_msgs;
  4834. } err_classes[] = { 
  4835.   {0,"SUCCESS",NULL},
  4836.   {0x01,"ERRDOS",dos_msgs},
  4837.   {0x02,"ERRSRV",server_msgs},
  4838.   {0x03,"ERRHRD",hard_msgs},
  4839.   {0x04,"ERRXOS",NULL},
  4840.   {0xE1,"ERRRMX1",NULL},
  4841.   {0xE2,"ERRRMX2",NULL},
  4842.   {0xE3,"ERRRMX3",NULL},
  4843.   {0xFF,"ERRCMD",NULL},
  4844.   {-1,NULL,NULL}};
  4845.  
  4846.  
  4847. /****************************************************************************
  4848. return a SMB error string from a SMB buffer
  4849. ****************************************************************************/
  4850. char *smb_errstr(char *inbuf)
  4851. {
  4852.   static pstring ret;
  4853.   int class = CVAL(inbuf,smb_rcls);
  4854.   int num = SVAL(inbuf,smb_err);
  4855.   int i,j;
  4856.  
  4857.   for (i=0;err_classes[i].class;i++)
  4858.     if (err_classes[i].code == class)
  4859.       {
  4860.     if (err_classes[i].err_msgs)
  4861.       {
  4862.         err_code_struct *err = err_classes[i].err_msgs;
  4863.         for (j=0;err[j].name;j++)
  4864.           if (num == err[j].code)
  4865.         {
  4866.           if (DEBUGLEVEL > 0)
  4867.             sprintf(ret,"%s - %s (%s)",err_classes[i].class,
  4868.                 err[j].name,err[j].message);
  4869.           else
  4870.             sprintf(ret,"%s - %s",err_classes[i].class,err[j].name);
  4871.           return ret;
  4872.         }
  4873.       }
  4874.  
  4875.     sprintf(ret,"%s - %d",err_classes[i].class,num);
  4876.     return ret;
  4877.       }
  4878.   
  4879.   sprintf(ret,"Error: Unknown error (%d,%d)",class,num);
  4880.   return(ret);
  4881. }
  4882.