r14540: fix a talloc hierachie problem,
[kai/samba-autobuild/.git] / source4 / ntvfs / posix / pvfs_flush.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    POSIX NTVFS backend - flush
5
6    Copyright (C) Andrew Tridgell 2004
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24 #include "vfs_posix.h"
25
26 /*
27   flush a single open file
28 */
29 static void pvfs_flush_file(struct pvfs_state *pvfs, struct pvfs_file *f)
30 {
31         if (f->handle->fd == -1) {
32                 return;
33         }
34         if (pvfs->flags & PVFS_FLAG_STRICT_SYNC) {
35                 fsync(f->handle->fd);
36         }
37 }
38
39 /*
40   flush a fnum
41 */
42 NTSTATUS pvfs_flush(struct ntvfs_module_context *ntvfs,
43                     struct ntvfs_request *req,
44                     union smb_flush *io)
45 {
46         struct pvfs_state *pvfs = ntvfs->private_data;
47         struct pvfs_file *f;
48
49         if (io->flush.in.file.fnum != 0xFFFF) {
50                 f = pvfs_find_fd(pvfs, req, io->flush.in.file.fnum);
51                 if (!f) {
52                         return NT_STATUS_INVALID_HANDLE;
53                 }
54                 pvfs_flush_file(pvfs, f);
55                 return NT_STATUS_OK;
56         }
57
58         if (!(pvfs->flags & PVFS_FLAG_STRICT_SYNC)) {
59                 return NT_STATUS_OK;
60         }
61
62         /* they are asking to flush all open files */
63         for (f=pvfs->files.list;f;f=f->next) {
64                 pvfs_flush_file(pvfs, f);
65         }
66
67         return NT_STATUS_OK;
68 }