8bbb4f860555ec8efce513846cb3aeddb01dcdce
[jelmer/samba4-debian.git] / source / ntvfs / posix / pvfs_write.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    POSIX NTVFS backend - write
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 "include/includes.h"
24 #include "vfs_posix.h"
25
26
27 /*
28   write to a file
29 */
30 NTSTATUS pvfs_write(struct ntvfs_module_context *ntvfs,
31                     struct smbsrv_request *req, union smb_write *wr)
32 {
33         struct pvfs_state *pvfs = ntvfs->private_data;
34         ssize_t ret;
35         struct pvfs_file *f;
36         NTSTATUS status;
37
38         if (wr->generic.level != RAW_WRITE_WRITEX) {
39                 return ntvfs_map_write(req, wr, ntvfs);
40         }
41
42         f = pvfs_find_fd(pvfs, req, wr->writex.in.fnum);
43         if (!f) {
44                 return NT_STATUS_INVALID_HANDLE;
45         }
46
47         if (f->name->dos.attrib & FILE_ATTRIBUTE_DIRECTORY) {
48                 return NT_STATUS_FILE_IS_A_DIRECTORY;
49         }
50
51         status = pvfs_check_lock(pvfs, f, req->smbpid, 
52                                  wr->writex.in.offset,
53                                  wr->writex.in.count,
54                                  WRITE_LOCK);
55         if (!NT_STATUS_IS_OK(status)) {
56                 return status;
57         }
58         
59         ret = pwrite(f->fd, 
60                      wr->writex.in.data, 
61                      wr->writex.in.count,
62                      wr->writex.in.offset);
63         if (ret == -1) {
64                 return map_nt_error_from_unix(errno);
65         }
66         
67         wr->writex.out.nwritten = ret;
68         wr->writex.out.remaining = 0; /* should fill this in? */
69         
70         return NT_STATUS_OK;
71 }