2 Unix SMB/Netbios implementation.
4 Files[] structure handling
5 Copyright (C) Andrew Tridgell 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.
24 extern int DEBUGLEVEL
;
26 static int real_max_open_files
;
28 #define VALID_FNUM(fnum) (((fnum) >= 0) && ((fnum) < real_max_open_files))
30 #define FILE_HANDLE_OFFSET 0x1000
32 static struct bitmap
*file_bmap
;
34 static files_struct
*Files
;
36 /* a fsp to use when chaining */
37 static files_struct
*chain_fsp
= NULL
;
38 /* a fsp to use to save when breaking an oplock. */
39 static files_struct
*oplock_save_chain_fsp
= NULL
;
41 static int files_used
;
43 /****************************************************************************
44 find first available file slot
45 ****************************************************************************/
46 files_struct
*file_new(connection_struct
*conn
)
49 static int first_file
;
50 files_struct
*fsp
, *next
;
52 /* we want to give out file handles differently on each new
53 connection because of a common bug in MS clients where they try to
54 reuse a file descriptor from an earlier smb connection. This code
55 increases the chance that the errant client will get an error rather
56 than causing corruption */
57 if (first_file
== 0) {
58 first_file
= (sys_getpid() ^ (int)time(NULL
)) % real_max_open_files
;
61 i
= bitmap_find(file_bmap
, first_file
);
64 * Before we give up, go through the open files
65 * and see if there are any files opened with a
66 * batch oplock. If so break the oplock and then
67 * re-use that entry (if it becomes closed).
68 * This may help as NT/95 clients tend to keep
69 * files batch oplocked for quite a long time
70 * after they have finished with them.
72 for (fsp
=Files
;fsp
;fsp
=next
) {
74 if (attempt_close_oplocked_file(fsp
)) {
75 return file_new(conn
);
79 DEBUG(0,("ERROR! Out of file structures\n"));
80 unix_ERR_class
= ERRSRV
;
81 unix_ERR_code
= ERRnofids
;
85 fsp
= (files_struct
*)malloc(sizeof(*fsp
));
87 unix_ERR_class
= ERRSRV
;
88 unix_ERR_code
= ERRnofids
;
96 first_file
= (i
+1) % real_max_open_files
;
98 bitmap_set(file_bmap
, i
);
101 fsp
->fnum
= i
+ FILE_HANDLE_OFFSET
;
102 string_set(&fsp
->fsp_name
,"");
104 DLIST_ADD(Files
, fsp
);
106 DEBUG(5,("allocated file structure %d, fnum = %d (%d used)\n",
107 i
, fsp
->fnum
, files_used
));
115 /****************************************************************************
116 close all open files for a connection
117 ****************************************************************************/
118 void file_close_conn(connection_struct
*conn
)
120 files_struct
*fsp
, *next
;
122 for (fsp
=Files
;fsp
;fsp
=next
) {
124 if (fsp
->conn
== conn
) {
125 close_file(fsp
,False
);
130 /****************************************************************************
131 initialise file structures
132 ****************************************************************************/
134 #define MAX_OPEN_FUDGEFACTOR 10
138 int request_max_open_files
= lp_max_open_files();
142 * Set the max_open files to be the requested
143 * max plus a fudgefactor to allow for the extra
144 * fd's we need such as log files etc...
146 real_lim
= set_maxfiles(request_max_open_files
+ MAX_OPEN_FUDGEFACTOR
);
148 real_max_open_files
= real_lim
- MAX_OPEN_FUDGEFACTOR
;
150 if(real_max_open_files
!= request_max_open_files
) {
151 DEBUG(1,("file_init: Information only: requested %d \
152 open files, %d are available.\n", request_max_open_files
, real_max_open_files
));
155 file_bmap
= bitmap_allocate(real_max_open_files
);
158 exit_server("out of memory in file_init");
162 * Ensure that pipe_handle_oppset is set correctly.
164 set_pipe_handle_offset(real_max_open_files
);
168 /****************************************************************************
169 close files open by a specified vuid
170 ****************************************************************************/
171 void file_close_user(int vuid
)
173 files_struct
*fsp
, *next
;
175 for (fsp
=Files
;fsp
;fsp
=next
) {
177 if (fsp
->vuid
== vuid
) {
178 close_file(fsp
,False
);
184 /****************************************************************************
185 Find a fsp given a device, inode and timevalue
186 If this is from a kernel oplock break request then tval may be NULL.
187 ****************************************************************************/
189 files_struct
*file_find_dit(SMB_DEV_T dev
, SMB_INO_T inode
, struct timeval
*tval
)
194 for (fsp
=Files
;fsp
;fsp
=fsp
->next
,count
++) {
197 fsp
->inode
== inode
&&
198 (tval
? (fsp
->open_time
.tv_sec
== tval
->tv_sec
) : True
) &&
199 (tval
? (fsp
->open_time
.tv_usec
== tval
->tv_usec
) : True
)) {
201 DLIST_PROMOTE(Files
, fsp
);
210 /****************************************************************************
211 Check if an fsp still exists.
212 ****************************************************************************/
214 files_struct
*file_find_fsp(files_struct
*orig_fsp
)
218 for (fsp
=Files
;fsp
;fsp
=fsp
->next
) {
226 /****************************************************************************
227 Find the first fsp given a device and inode.
228 ****************************************************************************/
230 files_struct
*file_find_di_first(SMB_DEV_T dev
, SMB_INO_T inode
)
234 for (fsp
=Files
;fsp
;fsp
=fsp
->next
) {
235 if ( fsp
->fd
!= -1 &&
237 fsp
->inode
== inode
)
244 /****************************************************************************
245 Find the next fsp having the same device and inode.
246 ****************************************************************************/
248 files_struct
*file_find_di_next(files_struct
*start_fsp
)
252 for (fsp
= start_fsp
->next
;fsp
;fsp
=fsp
->next
) {
253 if ( fsp
->fd
!= -1 &&
254 fsp
->dev
== start_fsp
->dev
&&
255 fsp
->inode
== start_fsp
->inode
)
262 /****************************************************************************
263 find a fsp that is open for printing
264 ****************************************************************************/
265 files_struct
*file_find_print(void)
269 for (fsp
=Files
;fsp
;fsp
=fsp
->next
) {
270 if (fsp
->print_file
) return fsp
;
277 /****************************************************************************
278 sync open files on a connection
279 ****************************************************************************/
280 void file_sync_all(connection_struct
*conn
)
282 files_struct
*fsp
, *next
;
284 for (fsp
=Files
;fsp
;fsp
=next
) {
286 if ((conn
== fsp
->conn
) && (fsp
->fd
!= -1)) {
293 /****************************************************************************
295 ****************************************************************************/
296 void file_free(files_struct
*fsp
)
298 DLIST_REMOVE(Files
, fsp
);
300 string_free(&fsp
->fsp_name
);
302 bitmap_clear(file_bmap
, fsp
->fnum
- FILE_HANDLE_OFFSET
);
305 DEBUG(5,("freed files structure %d (%d used)\n",
306 fsp
->fnum
, files_used
));
308 /* this is paranoia, just in case someone tries to reuse the
312 if (fsp
== chain_fsp
) chain_fsp
= NULL
;
318 /****************************************************************************
319 get a fsp from a packet given the offset of a 16 bit fnum
320 ****************************************************************************/
321 files_struct
*file_fsp(char *buf
, int where
)
326 if (chain_fsp
) return chain_fsp
;
328 fnum
= SVAL(buf
, where
);
330 for (fsp
=Files
;fsp
;fsp
=fsp
->next
, count
++) {
331 if (fsp
->fnum
== fnum
) {
334 DLIST_PROMOTE(Files
, fsp
);
342 /****************************************************************************
343 Reset the chained fsp - done at the start of a packet reply
344 ****************************************************************************/
346 void file_chain_reset(void)
351 /****************************************************************************
352 Save the chained fsp - done when about to do an oplock break.
353 ****************************************************************************/
355 void file_chain_save(void)
357 oplock_save_chain_fsp
= chain_fsp
;
360 /****************************************************************************
361 Restore the chained fsp - done after an oplock break.
362 ****************************************************************************/
363 void file_chain_restore(void)
365 chain_fsp
= oplock_save_chain_fsp
;