4 * Copyright (C) International Business Machines Corp., 2002,2008
5 * Author(s): Steve French (sfrench@us.ibm.com)
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.
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.
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
22 #include <linux/stat.h>
23 #include <linux/slab.h>
24 #include <linux/namei.h>
28 #include "cifsproto.h"
29 #include "cifs_debug.h"
30 #include "cifs_fs_sb.h"
33 cifs_hardlink(struct dentry
*old_file
, struct inode
*inode
,
34 struct dentry
*direntry
)
38 char *fromName
= NULL
;
40 struct cifs_sb_info
*cifs_sb_target
;
41 struct cifsTconInfo
*pTcon
;
42 struct cifsInodeInfo
*cifsInode
;
46 cifs_sb_target
= CIFS_SB(inode
->i_sb
);
47 pTcon
= cifs_sb_target
->tcon
;
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) */
52 fromName
= build_path_from_dentry(old_file
);
53 toName
= build_path_from_dentry(direntry
);
54 if ((fromName
== NULL
) || (toName
== NULL
)) {
59 /* if (cifs_sb_target->tcon->ses->capabilities & CAP_UNIX)*/
61 rc
= CIFSUnixCreateHardLink(xid
, pTcon
, fromName
, toName
,
62 cifs_sb_target
->local_nls
,
63 cifs_sb_target
->mnt_cifs_flags
&
64 CIFS_MOUNT_MAP_SPECIAL_CHR
);
66 rc
= CIFSCreateHardLink(xid
, pTcon
, fromName
, toName
,
67 cifs_sb_target
->local_nls
,
68 cifs_sb_target
->mnt_cifs_flags
&
69 CIFS_MOUNT_MAP_SPECIAL_CHR
);
70 if ((rc
== -EIO
) || (rc
== -EINVAL
))
74 d_drop(direntry
); /* force new lookup from server of target */
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 */
78 if (old_file
->d_inode
) {
79 cifsInode
= CIFS_I(old_file
->d_inode
);
81 old_file
->d_inode
->i_nlink
++;
82 /* BB should we make this contingent on superblock flag NOATIME? */
83 /* old_file->d_inode->i_ctime = CURRENT_TIME;*/
84 /* 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? */
89 /* if not oplocked will force revalidate to get info
90 on source file from srv */
93 /* Will update parent dir timestamps from srv within a second.
94 Would it really be worth it to set the parent dir (cifs
95 inode) time field to zero to force revalidate on parent
97 CIFS_I(inode)->time = 0; */
108 cifs_follow_link(struct dentry
*direntry
, struct nameidata
*nd
)
110 struct inode
*inode
= direntry
->d_inode
;
113 char *full_path
= NULL
;
114 char *target_path
= NULL
;
115 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
116 struct cifsTconInfo
*tcon
= cifs_sb
->tcon
;
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...
125 * rc = CIFSSMBQueryReparseLinkInfo(...)
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
133 if (!(tcon
->ses
->capabilities
& CAP_UNIX
)) {
138 full_path
= build_path_from_dentry(direntry
);
142 cFYI(1, "Full path: %s inode = 0x%p", full_path
, inode
);
144 rc
= CIFSSMBUnixQuerySymLink(xid
, tcon
, full_path
, &target_path
,
150 target_path
= ERR_PTR(rc
);
154 nd_set_link(nd
, target_path
);
159 cifs_symlink(struct inode
*inode
, struct dentry
*direntry
, const char *symname
)
161 int rc
= -EOPNOTSUPP
;
163 struct cifs_sb_info
*cifs_sb
;
164 struct cifsTconInfo
*pTcon
;
165 char *full_path
= NULL
;
166 struct inode
*newinode
= NULL
;
170 cifs_sb
= CIFS_SB(inode
->i_sb
);
171 pTcon
= cifs_sb
->tcon
;
173 full_path
= build_path_from_dentry(direntry
);
175 if (full_path
== NULL
) {
181 cFYI(1, "Full path: %s", full_path
);
182 cFYI(1, "symname is %s", symname
);
184 /* BB what if DFS and this volume is on different share? BB */
186 rc
= CIFSUnixCreateSymLink(xid
, pTcon
, full_path
, symname
,
189 rc = CIFSCreateReparseSymLink(xid, pTcon, fromName, toName,
190 cifs_sb_target->local_nls); */
194 rc
= cifs_get_inode_info_unix(&newinode
, full_path
,
197 rc
= cifs_get_inode_info(&newinode
, full_path
, NULL
,
198 inode
->i_sb
, xid
, NULL
);
201 cFYI(1, "Create symlink ok, getinodeinfo fail rc = %d",
205 direntry
->d_op
= &cifs_ci_dentry_ops
;
207 direntry
->d_op
= &cifs_dentry_ops
;
208 d_instantiate(direntry
, newinode
);
217 void cifs_put_link(struct dentry
*direntry
, struct nameidata
*nd
, void *cookie
)
219 char *p
= nd_get_link(nd
);