blob: 473ca8033656fc1c8ab14a7a9d78bafd12722217 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/link.c
3 *
Steve French366781c2008-01-25 10:12:41 +00004 * Copyright (C) International Business Machines Corp., 2002,2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 * the GNU Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21#include <linux/fs.h>
22#include <linux/stat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/namei.h>
25#include "cifsfs.h"
26#include "cifspdu.h"
27#include "cifsglob.h"
28#include "cifsproto.h"
29#include "cifs_debug.h"
30#include "cifs_fs_sb.h"
31
32int
33cifs_hardlink(struct dentry *old_file, struct inode *inode,
34 struct dentry *direntry)
35{
36 int rc = -EACCES;
37 int xid;
38 char *fromName = NULL;
39 char *toName = NULL;
40 struct cifs_sb_info *cifs_sb_target;
41 struct cifsTconInfo *pTcon;
42 struct cifsInodeInfo *cifsInode;
43
44 xid = GetXid();
45
46 cifs_sb_target = CIFS_SB(inode->i_sb);
47 pTcon = cifs_sb_target->tcon;
48
49/* No need to check for cross device links since server will do that
50 BB note DFS case in future though (when we may have to check) */
51
Steve French7f573562005-08-30 11:32:14 -070052 fromName = build_path_from_dentry(old_file);
53 toName = build_path_from_dentry(direntry);
Steve Frenchfb8c4b12007-07-10 01:16:18 +000054 if ((fromName == NULL) || (toName == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 rc = -ENOMEM;
56 goto cifs_hl_exit;
57 }
58
Steve Frenchc18c8422007-07-18 23:21:09 +000059/* if (cifs_sb_target->tcon->ses->capabilities & CAP_UNIX)*/
60 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 rc = CIFSUnixCreateHardLink(xid, pTcon, fromName, toName,
Steve Frenchfb8c4b12007-07-10 01:16:18 +000062 cifs_sb_target->local_nls,
Steve French737b7582005-04-28 22:41:06 -070063 cifs_sb_target->mnt_cifs_flags &
64 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 else {
66 rc = CIFSCreateHardLink(xid, pTcon, fromName, toName,
Steve Frenchfb8c4b12007-07-10 01:16:18 +000067 cifs_sb_target->local_nls,
Steve French737b7582005-04-28 22:41:06 -070068 cifs_sb_target->mnt_cifs_flags &
69 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +000070 if ((rc == -EIO) || (rc == -EINVAL))
71 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 }
73
Steve French31ec35d2006-11-16 20:54:20 +000074 d_drop(direntry); /* force new lookup from server of target */
75
76 /* if source file is cached (oplocked) revalidate will not go to server
77 until the file is closed or oplock broken so update nlinks locally */
Steve Frenchfb8c4b12007-07-10 01:16:18 +000078 if (old_file->d_inode) {
Steve French31ec35d2006-11-16 20:54:20 +000079 cifsInode = CIFS_I(old_file->d_inode);
Steve Frenchfb8c4b12007-07-10 01:16:18 +000080 if (rc == 0) {
Steve French31ec35d2006-11-16 20:54:20 +000081 old_file->d_inode->i_nlink++;
Steve French1b2b2122007-02-17 04:30:54 +000082/* BB should we make this contingent on superblock flag NOATIME? */
83/* old_file->d_inode->i_ctime = CURRENT_TIME;*/
Steve French31ec35d2006-11-16 20:54:20 +000084 /* parent dir timestamps will update from srv
85 within a second, would it really be worth it
86 to set the parent dir cifs inode time to zero
87 to force revalidate (faster) for it too? */
88 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +000089 /* if not oplocked will force revalidate to get info
Steve French31ec35d2006-11-16 20:54:20 +000090 on source file from srv */
91 cifsInode->time = 0;
92
Steve Frenchfb8c4b12007-07-10 01:16:18 +000093 /* Will update parent dir timestamps from srv within a second.
Steve French31ec35d2006-11-16 20:54:20 +000094 Would it really be worth it to set the parent dir (cifs
95 inode) time field to zero to force revalidate on parent
Steve Frenchfb8c4b12007-07-10 01:16:18 +000096 directory faster ie
Steve French31ec35d2006-11-16 20:54:20 +000097 CIFS_I(inode)->time = 0; */
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100cifs_hl_exit:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800101 kfree(fromName);
102 kfree(toName);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 FreeXid(xid);
104 return rc;
105}
106
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700107void *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108cifs_follow_link(struct dentry *direntry, struct nameidata *nd)
109{
110 struct inode *inode = direntry->d_inode;
Jeff Layton8b6427a2009-05-19 09:57:03 -0400111 int rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 int xid;
113 char *full_path = NULL;
Jeff Layton8b6427a2009-05-19 09:57:03 -0400114 char *target_path = NULL;
115 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
116 struct cifsTconInfo *tcon = cifs_sb->tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 xid = GetXid();
119
Jeff Layton8b6427a2009-05-19 09:57:03 -0400120 /*
121 * For now, we just handle symlinks with unix extensions enabled.
122 * Eventually we should handle NTFS reparse points, and MacOS
123 * symlink support. For instance...
124 *
125 * rc = CIFSSMBQueryReparseLinkInfo(...)
126 *
127 * For now, just return -EACCES when the server doesn't support posix
128 * extensions. Note that we still allow querying symlinks when posix
129 * extensions are manually disabled. We could disable these as well
130 * but there doesn't seem to be any harm in allowing the client to
131 * read them.
132 */
133 if (!(tcon->ses->capabilities & CAP_UNIX)) {
134 rc = -EACCES;
135 goto out;
136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Jeff Layton8b6427a2009-05-19 09:57:03 -0400138 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (!full_path)
Jeff Layton460b9692009-04-30 07:17:56 -0400140 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Joe Perchesb6b38f72010-04-21 03:50:45 +0000142 cFYI(1, "Full path: %s inode = 0x%p", full_path, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Jeff Layton8b6427a2009-05-19 09:57:03 -0400144 rc = CIFSSMBUnixQuerySymLink(xid, tcon, full_path, &target_path,
145 cifs_sb->local_nls);
146 kfree(full_path);
147out:
Jeff Layton460b9692009-04-30 07:17:56 -0400148 if (rc != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 kfree(target_path);
150 target_path = ERR_PTR(rc);
151 }
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 FreeXid(xid);
154 nd_set_link(nd, target_path);
Jeff Layton460b9692009-04-30 07:17:56 -0400155 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158int
159cifs_symlink(struct inode *inode, struct dentry *direntry, const char *symname)
160{
161 int rc = -EOPNOTSUPP;
162 int xid;
163 struct cifs_sb_info *cifs_sb;
164 struct cifsTconInfo *pTcon;
165 char *full_path = NULL;
166 struct inode *newinode = NULL;
167
168 xid = GetXid();
169
170 cifs_sb = CIFS_SB(inode->i_sb);
171 pTcon = cifs_sb->tcon;
172
Steve French7f573562005-08-30 11:32:14 -0700173 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000175 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530176 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530178 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180
Joe Perchesb6b38f72010-04-21 03:50:45 +0000181 cFYI(1, "Full path: %s", full_path);
182 cFYI(1, "symname is %s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 /* BB what if DFS and this volume is on different share? BB */
Steve Frenchc18c8422007-07-18 23:21:09 +0000185 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 rc = CIFSUnixCreateSymLink(xid, pTcon, full_path, symname,
187 cifs_sb->local_nls);
188 /* else
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000189 rc = CIFSCreateReparseSymLink(xid, pTcon, fromName, toName,
190 cifs_sb_target->local_nls); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 if (rc == 0) {
Steve Frenchc18c8422007-07-18 23:21:09 +0000193 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000195 inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 else
197 rc = cifs_get_inode_info(&newinode, full_path, NULL,
Steve French8b1327f2008-03-14 22:37:16 +0000198 inode->i_sb, xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 if (rc != 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000201 cFYI(1, "Create symlink ok, getinodeinfo fail rc = %d",
202 rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 } else {
Steve Frenchb92327f2005-08-22 20:09:43 -0700204 if (pTcon->nocase)
205 direntry->d_op = &cifs_ci_dentry_ops;
206 else
207 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 d_instantiate(direntry, newinode);
209 }
210 }
211
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800212 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 FreeXid(xid);
214 return rc;
215}
216
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700217void cifs_put_link(struct dentry *direntry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 char *p = nd_get_link(nd);
220 if (!IS_ERR(p))
221 kfree(p);
222}