SMB2 signing now works. The spec was wrong (and will be fixed in the
[ira/wip.git] / source4 / ntvfs / posix / pvfs_seek.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    POSIX NTVFS backend - seek
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 3 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, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include "vfs_posix.h"
24
25 /*
26   seek in a file
27 */
28 NTSTATUS pvfs_seek(struct ntvfs_module_context *ntvfs,
29                    struct ntvfs_request *req,
30                    union smb_seek *io)
31 {
32         struct pvfs_state *pvfs = ntvfs->private_data;
33         struct pvfs_file *f;
34         struct pvfs_file_handle *h;
35         NTSTATUS status;
36
37         f = pvfs_find_fd(pvfs, req, io->lseek.in.file.ntvfs);
38         if (!f) {
39                 return NT_STATUS_INVALID_HANDLE;
40         }
41         h = f->handle;
42
43         status = NT_STATUS_OK;
44
45         switch (io->lseek.in.mode) {
46         case SEEK_MODE_START:
47                 h->seek_offset = io->lseek.in.offset;
48                 break;
49
50         case SEEK_MODE_CURRENT:
51                 h->seek_offset += io->lseek.in.offset;
52                 break;
53
54         case SEEK_MODE_END:
55                 status = pvfs_resolve_name_fd(pvfs, h->fd, h->name);
56                 h->seek_offset = h->name->st.st_size + io->lseek.in.offset;
57                 break;
58         }
59
60         io->lseek.out.offset = h->seek_offset;
61
62         return status;
63 }
64