r2524: a simple pvfs rename implementation to make testing easier
[gd/samba-autobuild/.git] / source4 / ntvfs / posix / pvfs_rename.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    POSIX NTVFS backend - rename
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   rename a set of files
28 */
29 NTSTATUS pvfs_rename(struct smbsrv_request *req, union smb_rename *ren)
30 {
31         struct pvfs_state *pvfs = req->tcon->ntvfs_private;
32         NTSTATUS status;
33         struct pvfs_filename *name1, *name2;
34
35         if (ren->generic.level != RAW_RENAME_RENAME) {
36                 return NT_STATUS_INVALID_LEVEL;
37         }
38
39         /* resolve the cifs name to a posix name */
40         status = pvfs_resolve_name(pvfs, req, ren->rename.in.pattern1, 0, &name1);
41         if (!NT_STATUS_IS_OK(status)) {
42                 return status;
43         }
44
45         status = pvfs_resolve_name(pvfs, req, ren->rename.in.pattern2, 0, &name2);
46         if (!NT_STATUS_IS_OK(status)) {
47                 return status;
48         }
49
50         if (name1->has_wildcard || name2->has_wildcard) {
51                 DEBUG(3,("Rejecting wildcard rename '%s' -> '%s'\n", 
52                          ren->rename.in.pattern1, ren->rename.in.pattern2));
53                 return NT_STATUS_NOT_SUPPORTED;
54         }
55
56         if (!name1->exists) {
57                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
58         }
59
60         if (name2->exists) {
61                 return NT_STATUS_OBJECT_NAME_COLLISION;
62         }
63
64         if (rename(name1->full_name, name2->full_name) != 0) {
65                 return pvfs_map_errno(pvfs, errno);
66         }
67         
68         return NT_STATUS_OK;
69 }