2 Unix SMB/Netbios implementation.
4 client directory list routines
5 Copyright (C) Andrew Tridgell 1994-1998
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.
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.
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.
27 /****************************************************************************
28 interpret a long filename structure - this is mostly guesses at the moment
29 The length of the structure is returned
30 The structure of a long filename depends on the info level. 260 is used
31 by NT and 2 is used by OS/2
32 ****************************************************************************/
33 static int interpret_long_filename(struct cli_state
*cli
,
34 int level
,char *p
,file_info
*finfo
)
36 extern file_info def_finfo
;
39 memcpy(finfo
,&def_finfo
,sizeof(*finfo
));
43 case 1: /* OS/2 understands this */
45 /* these dates are converted to GMT by make_unix_date */
46 finfo
->ctime
= make_unix_date2(p
+4);
47 finfo
->atime
= make_unix_date2(p
+8);
48 finfo
->mtime
= make_unix_date2(p
+12);
49 finfo
->size
= IVAL(p
,16);
50 finfo
->mode
= CVAL(p
,24);
51 clistr_pull(cli
, finfo
->name
, p
+27,
54 STR_TERMINATE
| STR_CONVERT
);
56 return(28 + CVAL(p
,26));
58 case 2: /* this is what OS/2 uses mostly */
60 /* these dates are converted to GMT by make_unix_date */
61 finfo
->ctime
= make_unix_date2(p
+4);
62 finfo
->atime
= make_unix_date2(p
+8);
63 finfo
->mtime
= make_unix_date2(p
+12);
64 finfo
->size
= IVAL(p
,16);
65 finfo
->mode
= CVAL(p
,24);
66 clistr_pull(cli
, finfo
->name
, p
+31,
69 STR_TERMINATE
| STR_CONVERT
);
71 return(32 + CVAL(p
,30));
73 /* levels 3 and 4 are untested */
76 /* these dates are probably like the other ones */
77 finfo
->ctime
= make_unix_date2(p
+8);
78 finfo
->atime
= make_unix_date2(p
+12);
79 finfo
->mtime
= make_unix_date2(p
+16);
80 finfo
->size
= IVAL(p
,20);
81 finfo
->mode
= CVAL(p
,28);
82 clistr_pull(cli
, finfo
->name
, p
+33,
85 STR_TERMINATE
| STR_CONVERT
);
91 /* these dates are probably like the other ones */
92 finfo
->ctime
= make_unix_date2(p
+8);
93 finfo
->atime
= make_unix_date2(p
+12);
94 finfo
->mtime
= make_unix_date2(p
+16);
95 finfo
->size
= IVAL(p
,20);
96 finfo
->mode
= CVAL(p
,28);
97 clistr_pull(cli
, finfo
->name
, p
+37,
100 STR_TERMINATE
| STR_CONVERT
);
104 case 260: /* NT uses this, but also accepts 2 */
108 p
+= 4; /* next entry offset */
109 p
+= 4; /* fileindex */
111 /* these dates appear to arrive in a
112 weird way. It seems to be localtime
113 plus the serverzone given in the
114 initial connect. This is GMT when
115 DST is not in effect and one hour
116 from GMT otherwise. Can this really
119 I suppose this could be called
120 kludge-GMT. Is is the GMT you get
121 by using the current DST setting on
122 a different localtime. It will be
123 cheap to calculate, I suppose, as
124 no DST tables will be needed */
126 finfo
->ctime
= interpret_long_date(p
); p
+= 8;
127 finfo
->atime
= interpret_long_date(p
); p
+= 8;
128 finfo
->mtime
= interpret_long_date(p
); p
+= 8; p
+= 8;
129 finfo
->size
= IVAL(p
,0); p
+= 8;
130 p
+= 8; /* alloc size */
131 finfo
->mode
= CVAL(p
,0); p
+= 4;
132 namelen
= IVAL(p
,0); p
+= 4;
133 p
+= 4; /* EA size */
137 /* stupid NT bugs. grr */
138 int flags
= STR_CONVERT
;
139 if (p
[1] == 0 && namelen
> 1) flags
|= STR_UNICODE
;
140 clistr_pull(cli
, finfo
->short_name
, p
,
141 sizeof(finfo
->short_name
),
144 p
+= 24; /* short name? */
145 clistr_pull(cli
, finfo
->name
, p
,
154 DEBUG(1,("Unknown long filename format %d\n",level
));
159 /****************************************************************************
160 do a directory listing, calling fn on each file found
161 ****************************************************************************/
162 int cli_list_new(struct cli_state
*cli
,const char *Mask
,uint16 attribute
,
163 void (*fn
)(file_info
*, const char *, void *), void *state
)
165 int max_matches
= 512;
171 char *dirlist
= NULL
;
173 int total_received
= -1;
175 int ff_searchcount
=0;
180 char *rparam
=NULL
, *rdata
=NULL
;
181 int param_len
, data_len
;
185 /* NT uses 260, OS/2 uses 2. Both accept 1. */
186 info_level
= (cli
->capabilities
&CAP_NT_SMBS
)?260:1;
190 while (ff_eos
== 0) {
192 if (loop_count
> 200) {
193 DEBUG(0,("Error: Looping in FIND_NEXT??\n"));
198 setup
= TRANSACT2_FINDFIRST
;
199 SSVAL(param
,0,attribute
); /* attribute */
200 SSVAL(param
,2,max_matches
); /* max count */
201 SSVAL(param
,4,4+2); /* resume required + close on end */
202 SSVAL(param
,6,info_level
);
205 p
+= clistr_push(cli
, param
+12, mask
, -1,
206 STR_TERMINATE
| STR_CONVERT
);
208 setup
= TRANSACT2_FINDNEXT
;
209 SSVAL(param
,0,ff_dir_handle
);
210 SSVAL(param
,2,max_matches
); /* max count */
211 SSVAL(param
,4,info_level
);
212 SIVAL(param
,6,0); /* ff_resume_key */
213 SSVAL(param
,10,8+4+2); /* continue + resume required + close on end */
215 p
+= clistr_push(cli
, param
+12, mask
, -1,
216 STR_TERMINATE
| STR_CONVERT
);
219 param_len
= PTR_DIFF(p
, param
);
221 if (!cli_send_trans(cli
, SMBtrans2
,
223 -1, 0, /* fid, flags */
224 &setup
, 1, 0, /* setup, length, max */
225 param
, param_len
, 10, /* param, length, max */
227 cli
->max_xmit
/* data, length, max */
232 if (!cli_receive_trans(cli
, SMBtrans2
,
234 &rdata
, &data_len
)) {
235 /* we need to work around a Win95 bug - sometimes
236 it gives ERRSRV/ERRerror temprarily */
239 cli_error(cli
, &eclass
, &ecode
, NULL
);
240 if (eclass
!= ERRSRV
|| ecode
!= ERRerror
) break;
245 if (total_received
== -1) total_received
= 0;
247 /* parse out some important return info */
250 ff_dir_handle
= SVAL(p
,0);
251 ff_searchcount
= SVAL(p
,2);
253 ff_lastname
= SVAL(p
,8);
255 ff_searchcount
= SVAL(p
,0);
257 ff_lastname
= SVAL(p
,6);
260 if (ff_searchcount
== 0)
263 /* point to the data bytes */
266 /* we might need the lastname for continuations */
267 if (ff_lastname
> 0) {
271 clistr_pull(cli
, mask
, p
+ff_lastname
,
273 data_len
-ff_lastname
,
278 clistr_pull(cli
, mask
, p
+ff_lastname
+1,
289 /* and add them to the dirlist pool */
290 dirlist
= Realloc(dirlist
,dirlist_len
+ data_len
);
293 DEBUG(0,("Failed to expand dirlist\n"));
297 /* put in a length for the last entry, to ensure we can chain entries
298 into the next packet */
299 for (p2
=p
,i
=0;i
<(ff_searchcount
-1);i
++)
300 p2
+= interpret_long_filename(cli
,info_level
,p2
,NULL
);
301 SSVAL(p2
,0,data_len
- PTR_DIFF(p2
,p
));
303 /* grab the data for later use */
304 memcpy(dirlist
+dirlist_len
,p
,data_len
);
305 dirlist_len
+= data_len
;
307 total_received
+= ff_searchcount
;
309 if (rdata
) free(rdata
); rdata
= NULL
;
310 if (rparam
) free(rparam
); rparam
= NULL
;
312 DEBUG(3,("received %d entries (eos=%d)\n",
313 ff_searchcount
,ff_eos
));
315 if (ff_searchcount
> 0) loop_count
= 0;
320 for (p
=dirlist
,i
=0;i
<total_received
;i
++) {
321 p
+= interpret_long_filename(cli
,info_level
,p
,&finfo
);
322 fn(&finfo
, Mask
, state
);
325 /* free up the dirlist buffer */
326 if (dirlist
) free(dirlist
);
327 return(total_received
);
332 /****************************************************************************
333 interpret a short filename structure
334 The length of the structure is returned
335 ****************************************************************************/
336 static int interpret_short_filename(struct cli_state
*cli
, char *p
,file_info
*finfo
)
338 extern file_info def_finfo
;
342 finfo
->mode
= CVAL(p
,21);
344 /* this date is converted to GMT by make_unix_date */
345 finfo
->ctime
= make_unix_date(p
+22);
346 finfo
->mtime
= finfo
->atime
= finfo
->ctime
;
347 finfo
->size
= IVAL(p
,26);
348 clistr_pull(cli
, finfo
->name
, p
+30, sizeof(finfo
->name
), 12, STR_CONVERT
|STR_ASCII
);
349 if (strcmp(finfo
->name
, "..") && strcmp(finfo
->name
, "."))
350 fstrcpy(finfo
->short_name
,finfo
->name
);
352 return(DIR_STRUCT_SIZE
);
356 /****************************************************************************
357 do a directory listing, calling fn on each file found
358 this uses the old SMBsearch interface. It is needed for testing Samba,
359 but should otherwise not be used
360 ****************************************************************************/
361 int cli_list_old(struct cli_state
*cli
,const char *Mask
,uint16 attribute
,
362 void (*fn
)(file_info
*, const char *, void *), void *state
)
368 int num_asked
= (cli
->max_xmit
- 100)/DIR_STRUCT_SIZE
;
369 int num_received
= 0;
371 char *dirlist
= NULL
;
379 memset(cli
->outbuf
,'\0',smb_size
);
380 memset(cli
->inbuf
,'\0',smb_size
);
382 set_message(cli
->outbuf
,2,0,True
);
384 CVAL(cli
->outbuf
,smb_com
) = SMBsearch
;
386 SSVAL(cli
->outbuf
,smb_tid
,cli
->cnum
);
387 cli_setup_packet(cli
);
389 SSVAL(cli
->outbuf
,smb_vwv0
,num_asked
);
390 SSVAL(cli
->outbuf
,smb_vwv1
,attribute
);
392 p
= smb_buf(cli
->outbuf
);
395 p
+= clistr_push(cli
, p
, first
?mask
:"", -1, STR_TERMINATE
|STR_CONVERT
);
407 cli_setup_bcc(cli
, p
);
409 if (!cli_receive_smb(cli
)) break;
411 received
= SVAL(cli
->inbuf
,smb_vwv0
);
412 if (received
<= 0) break;
416 dirlist
= Realloc(dirlist
,(num_received
+ received
)*DIR_STRUCT_SIZE
);
421 p
= smb_buf(cli
->inbuf
) + 3;
423 memcpy(dirlist
+num_received
*DIR_STRUCT_SIZE
,
424 p
,received
*DIR_STRUCT_SIZE
);
426 memcpy(status
,p
+ ((received
-1)*DIR_STRUCT_SIZE
),21);
428 num_received
+= received
;
430 if (CVAL(cli
->inbuf
,smb_rcls
) != 0) break;
434 memset(cli
->outbuf
,'\0',smb_size
);
435 memset(cli
->inbuf
,'\0',smb_size
);
437 set_message(cli
->outbuf
,2,0,True
);
438 CVAL(cli
->outbuf
,smb_com
) = SMBfclose
;
439 SSVAL(cli
->outbuf
,smb_tid
,cli
->cnum
);
440 cli_setup_packet(cli
);
442 SSVAL(cli
->outbuf
, smb_vwv0
, 0); /* find count? */
443 SSVAL(cli
->outbuf
, smb_vwv1
, attribute
);
445 p
= smb_buf(cli
->outbuf
);
455 cli_setup_bcc(cli
, p
);
457 if (!cli_receive_smb(cli
)) {
458 DEBUG(0,("Error closing search: %s\n",smb_errstr(cli
->inbuf
)));
462 for (p
=dirlist
,i
=0;i
<num_received
;i
++) {
464 p
+= interpret_short_filename(cli
, p
,&finfo
);
465 fn(&finfo
, Mask
, state
);
468 if (dirlist
) free(dirlist
);
469 return(num_received
);
473 /****************************************************************************
474 do a directory listing, calling fn on each file found
475 this auto-switches between old and new style
476 ****************************************************************************/
477 int cli_list(struct cli_state
*cli
,const char *Mask
,uint16 attribute
,
478 void (*fn
)(file_info
*, const char *, void *), void *state
)
480 if (cli
->protocol
<= PROTOCOL_LANMAN1
) {
481 return cli_list_old(cli
, Mask
, attribute
, fn
, state
);
483 return cli_list_new(cli
, Mask
, attribute
, fn
, state
);