2 Unix SMB/CIFS implementation.
4 POSIX NTVFS backend - flush
6 Copyright (C) Andrew Tridgell 2004
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 3 of the License, or
11 (at your option) any later version.
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.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "vfs_posix.h"
26 flush a single open file
28 static void pvfs_flush_file(struct pvfs_state
*pvfs
, struct pvfs_file
*f
)
30 if (f
->handle
->fd
== -1) {
33 if (pvfs
->flags
& PVFS_FLAG_STRICT_SYNC
) {
41 NTSTATUS
pvfs_flush(struct ntvfs_module_context
*ntvfs
,
42 struct ntvfs_request
*req
,
45 struct pvfs_state
*pvfs
= talloc_get_type(ntvfs
->private_data
,
49 switch (io
->generic
.level
) {
52 /* TODO: take care of io->smb2.in.unknown */
53 f
= pvfs_find_fd(pvfs
, req
, io
->generic
.in
.file
.ntvfs
);
55 return NT_STATUS_INVALID_HANDLE
;
57 pvfs_flush_file(pvfs
, f
);
58 io
->smb2
.out
.reserved
= 0;
62 if (!(pvfs
->flags
& PVFS_FLAG_STRICT_SYNC
)) {
67 * they are asking to flush all open files
68 * for the given SMBPID
70 for (f
=pvfs
->files
.list
;f
;f
=f
->next
) {
71 if (f
->ntvfs
->smbpid
!= req
->smbpid
) continue;
73 pvfs_flush_file(pvfs
, f
);
79 return NT_STATUS_INVALID_LEVEL
;