Use canonical mappings for file controls. Fixes W2KSP2 profile problems (I
[Samba/ekacnet.git] / source / smbd / files.c
blob27dfad7c483cb5666c9d42f3ec44cc050b55f428
1 /*
2 Unix SMB/Netbios implementation.
3 Version 1.9.
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.
22 #include "includes.h"
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)
48 int i;
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);
62 if (i == -1) {
63 /*
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) {
73 next=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;
82 return NULL;
85 fsp = (files_struct *)malloc(sizeof(*fsp));
86 if (!fsp) {
87 unix_ERR_class = ERRSRV;
88 unix_ERR_code = ERRnofids;
89 return NULL;
92 ZERO_STRUCTP(fsp);
93 fsp->fd = -1;
94 fsp->conn = conn;
96 first_file = (i+1) % real_max_open_files;
98 bitmap_set(file_bmap, i);
99 files_used++;
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));
109 chain_fsp = fsp;
111 return fsp;
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) {
123 next = fsp->next;
124 if (fsp->conn == conn) {
125 close_file(fsp,False);
130 /****************************************************************************
131 initialise file structures
132 ****************************************************************************/
134 #define MAX_OPEN_FUDGEFACTOR 10
136 void file_init(void)
138 int request_max_open_files = lp_max_open_files();
139 int real_lim;
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);
157 if (!file_bmap) {
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) {
176 next=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)
191 int count=0;
192 files_struct *fsp;
194 for (fsp=Files;fsp;fsp=fsp->next,count++) {
195 if (fsp->fd != -1 &&
196 fsp->dev == dev &&
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 )) {
200 if (count > 10) {
201 DLIST_PROMOTE(Files, fsp);
203 return fsp;
207 return NULL;
210 /****************************************************************************
211 Check if an fsp still exists.
212 ****************************************************************************/
214 files_struct *file_find_fsp(files_struct *orig_fsp)
216 files_struct *fsp;
218 for (fsp=Files;fsp;fsp=fsp->next) {
219 if (fsp == orig_fsp)
220 return fsp;
223 return NULL;
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)
232 files_struct *fsp;
234 for (fsp=Files;fsp;fsp=fsp->next) {
235 if ( fsp->fd != -1 &&
236 fsp->dev == dev &&
237 fsp->inode == inode )
238 return fsp;
241 return NULL;
244 /****************************************************************************
245 Find the next fsp having the same device and inode.
246 ****************************************************************************/
248 files_struct *file_find_di_next(files_struct *start_fsp)
250 files_struct *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 )
256 return fsp;
259 return NULL;
262 /****************************************************************************
263 find a fsp that is open for printing
264 ****************************************************************************/
265 files_struct *file_find_print(void)
267 files_struct *fsp;
269 for (fsp=Files;fsp;fsp=fsp->next) {
270 if (fsp->print_file) return fsp;
273 return NULL;
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) {
285 next=fsp->next;
286 if ((conn == fsp->conn) && (fsp->fd != -1)) {
287 sync_file(conn,fsp);
293 /****************************************************************************
294 free up a fsp
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);
303 files_used--;
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
309 information */
310 ZERO_STRUCTP(fsp);
312 if (fsp == chain_fsp) chain_fsp = NULL;
314 free(fsp);
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)
323 int fnum, count=0;
324 files_struct *fsp;
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) {
332 chain_fsp = fsp;
333 if (count > 10) {
334 DLIST_PROMOTE(Files, fsp);
336 return fsp;
339 return NULL;
342 /****************************************************************************
343 Reset the chained fsp - done at the start of a packet reply
344 ****************************************************************************/
346 void file_chain_reset(void)
348 chain_fsp = NULL;
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;