Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/link.c |
| 3 | * |
Steve French | 366781c | 2008-01-25 10:12:41 +0000 | [diff] [blame] | 4 | * Copyright (C) International Business Machines Corp., 2002,2008 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * 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> |
| 23 | #include <linux/namei.h> |
| 24 | #include "cifsfs.h" |
| 25 | #include "cifspdu.h" |
| 26 | #include "cifsglob.h" |
| 27 | #include "cifsproto.h" |
| 28 | #include "cifs_debug.h" |
| 29 | #include "cifs_fs_sb.h" |
| 30 | |
| 31 | int |
| 32 | cifs_hardlink(struct dentry *old_file, struct inode *inode, |
| 33 | struct dentry *direntry) |
| 34 | { |
| 35 | int rc = -EACCES; |
| 36 | int xid; |
| 37 | char *fromName = NULL; |
| 38 | char *toName = NULL; |
| 39 | struct cifs_sb_info *cifs_sb_target; |
| 40 | struct cifsTconInfo *pTcon; |
| 41 | struct cifsInodeInfo *cifsInode; |
| 42 | |
| 43 | xid = GetXid(); |
| 44 | |
| 45 | cifs_sb_target = CIFS_SB(inode->i_sb); |
| 46 | pTcon = cifs_sb_target->tcon; |
| 47 | |
| 48 | /* No need to check for cross device links since server will do that |
| 49 | BB note DFS case in future though (when we may have to check) */ |
| 50 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 51 | fromName = build_path_from_dentry(old_file); |
| 52 | toName = build_path_from_dentry(direntry); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 53 | if ((fromName == NULL) || (toName == NULL)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | rc = -ENOMEM; |
| 55 | goto cifs_hl_exit; |
| 56 | } |
| 57 | |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 58 | /* if (cifs_sb_target->tcon->ses->capabilities & CAP_UNIX)*/ |
| 59 | if (pTcon->unix_ext) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | rc = CIFSUnixCreateHardLink(xid, pTcon, fromName, toName, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 61 | cifs_sb_target->local_nls, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 62 | cifs_sb_target->mnt_cifs_flags & |
| 63 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | else { |
| 65 | rc = CIFSCreateHardLink(xid, pTcon, fromName, toName, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 66 | cifs_sb_target->local_nls, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 67 | cifs_sb_target->mnt_cifs_flags & |
| 68 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 69 | if ((rc == -EIO) || (rc == -EINVAL)) |
| 70 | rc = -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Steve French | 31ec35d | 2006-11-16 20:54:20 +0000 | [diff] [blame] | 73 | d_drop(direntry); /* force new lookup from server of target */ |
| 74 | |
| 75 | /* if source file is cached (oplocked) revalidate will not go to server |
| 76 | until the file is closed or oplock broken so update nlinks locally */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 77 | if (old_file->d_inode) { |
Steve French | 31ec35d | 2006-11-16 20:54:20 +0000 | [diff] [blame] | 78 | cifsInode = CIFS_I(old_file->d_inode); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 79 | if (rc == 0) { |
Steve French | 31ec35d | 2006-11-16 20:54:20 +0000 | [diff] [blame] | 80 | old_file->d_inode->i_nlink++; |
Steve French | 1b2b212 | 2007-02-17 04:30:54 +0000 | [diff] [blame] | 81 | /* BB should we make this contingent on superblock flag NOATIME? */ |
| 82 | /* old_file->d_inode->i_ctime = CURRENT_TIME;*/ |
Steve French | 31ec35d | 2006-11-16 20:54:20 +0000 | [diff] [blame] | 83 | /* parent dir timestamps will update from srv |
| 84 | within a second, would it really be worth it |
| 85 | to set the parent dir cifs inode time to zero |
| 86 | to force revalidate (faster) for it too? */ |
| 87 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 88 | /* if not oplocked will force revalidate to get info |
Steve French | 31ec35d | 2006-11-16 20:54:20 +0000 | [diff] [blame] | 89 | on source file from srv */ |
| 90 | cifsInode->time = 0; |
| 91 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 92 | /* Will update parent dir timestamps from srv within a second. |
Steve French | 31ec35d | 2006-11-16 20:54:20 +0000 | [diff] [blame] | 93 | Would it really be worth it to set the parent dir (cifs |
| 94 | inode) time field to zero to force revalidate on parent |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 95 | directory faster ie |
Steve French | 31ec35d | 2006-11-16 20:54:20 +0000 | [diff] [blame] | 96 | CIFS_I(inode)->time = 0; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
| 99 | cifs_hl_exit: |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 100 | kfree(fromName); |
| 101 | kfree(toName); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | FreeXid(xid); |
| 103 | return rc; |
| 104 | } |
| 105 | |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 106 | void * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | cifs_follow_link(struct dentry *direntry, struct nameidata *nd) |
| 108 | { |
| 109 | struct inode *inode = direntry->d_inode; |
| 110 | int rc = -EACCES; |
| 111 | int xid; |
| 112 | char *full_path = NULL; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 113 | char *target_path = ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | struct cifs_sb_info *cifs_sb; |
| 115 | struct cifsTconInfo *pTcon; |
| 116 | |
| 117 | xid = GetXid(); |
| 118 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 119 | full_path = build_path_from_dentry(direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 121 | if (!full_path) |
| 122 | goto out_no_free; |
| 123 | |
| 124 | cFYI(1, ("Full path: %s inode = 0x%p", full_path, inode)); |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 125 | cifs_sb = CIFS_SB(inode->i_sb); |
| 126 | pTcon = cifs_sb->tcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | target_path = kmalloc(PATH_MAX, GFP_KERNEL); |
| 128 | if (!target_path) { |
| 129 | target_path = ERR_PTR(-ENOMEM); |
| 130 | goto out; |
| 131 | } |
| 132 | |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 133 | /* We could change this to: |
| 134 | if (pTcon->unix_ext) |
| 135 | but there does not seem any point in refusing to |
| 136 | get symlink info if we can, even if unix extensions |
| 137 | turned off for this mount */ |
| 138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | if (pTcon->ses->capabilities & CAP_UNIX) |
| 140 | rc = CIFSSMBUnixQuerySymLink(xid, pTcon, full_path, |
| 141 | target_path, |
| 142 | PATH_MAX-1, |
| 143 | cifs_sb->local_nls); |
| 144 | else { |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 145 | /* BB add read reparse point symlink code here */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | /* rc = CIFSSMBQueryReparseLinkInfo */ |
| 147 | /* BB Add code to Query ReparsePoint info */ |
| 148 | /* BB Add MAC style xsymlink check here if enabled */ |
| 149 | } |
| 150 | |
| 151 | if (rc == 0) { |
| 152 | |
| 153 | /* BB Add special case check for Samba DFS symlinks */ |
| 154 | |
| 155 | target_path[PATH_MAX-1] = 0; |
| 156 | } else { |
| 157 | kfree(target_path); |
| 158 | target_path = ERR_PTR(rc); |
| 159 | } |
| 160 | |
| 161 | out: |
| 162 | kfree(full_path); |
| 163 | out_no_free: |
| 164 | FreeXid(xid); |
| 165 | nd_set_link(nd, target_path); |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 166 | return NULL; /* No cookie */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | int |
| 170 | cifs_symlink(struct inode *inode, struct dentry *direntry, const char *symname) |
| 171 | { |
| 172 | int rc = -EOPNOTSUPP; |
| 173 | int xid; |
| 174 | struct cifs_sb_info *cifs_sb; |
| 175 | struct cifsTconInfo *pTcon; |
| 176 | char *full_path = NULL; |
| 177 | struct inode *newinode = NULL; |
| 178 | |
| 179 | xid = GetXid(); |
| 180 | |
| 181 | cifs_sb = CIFS_SB(inode->i_sb); |
| 182 | pTcon = cifs_sb->tcon; |
| 183 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 184 | full_path = build_path_from_dentry(direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 186 | if (full_path == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | FreeXid(xid); |
| 188 | return -ENOMEM; |
| 189 | } |
| 190 | |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 191 | cFYI(1, ("Full path: %s", full_path)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | cFYI(1, ("symname is %s", symname)); |
| 193 | |
| 194 | /* BB what if DFS and this volume is on different share? BB */ |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 195 | if (pTcon->unix_ext) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | rc = CIFSUnixCreateSymLink(xid, pTcon, full_path, symname, |
| 197 | cifs_sb->local_nls); |
| 198 | /* else |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 199 | rc = CIFSCreateReparseSymLink(xid, pTcon, fromName, toName, |
| 200 | cifs_sb_target->local_nls); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | if (rc == 0) { |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 203 | if (pTcon->unix_ext) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | rc = cifs_get_inode_info_unix(&newinode, full_path, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 205 | inode->i_sb, xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | else |
| 207 | rc = cifs_get_inode_info(&newinode, full_path, NULL, |
Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 208 | inode->i_sb, xid, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
| 210 | if (rc != 0) { |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 211 | cFYI(1, ("Create symlink ok, getinodeinfo fail rc = %d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | rc)); |
| 213 | } else { |
Steve French | b92327f | 2005-08-22 20:09:43 -0700 | [diff] [blame] | 214 | if (pTcon->nocase) |
| 215 | direntry->d_op = &cifs_ci_dentry_ops; |
| 216 | else |
| 217 | direntry->d_op = &cifs_dentry_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | d_instantiate(direntry, newinode); |
| 219 | } |
| 220 | } |
| 221 | |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 222 | kfree(full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | FreeXid(xid); |
| 224 | return rc; |
| 225 | } |
| 226 | |
| 227 | int |
| 228 | cifs_readlink(struct dentry *direntry, char __user *pBuffer, int buflen) |
| 229 | { |
| 230 | struct inode *inode = direntry->d_inode; |
| 231 | int rc = -EACCES; |
| 232 | int xid; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 233 | int oplock = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | struct cifs_sb_info *cifs_sb; |
| 235 | struct cifsTconInfo *pTcon; |
| 236 | char *full_path = NULL; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 237 | char *tmpbuffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | int len; |
| 239 | __u16 fid; |
| 240 | |
| 241 | xid = GetXid(); |
| 242 | cifs_sb = CIFS_SB(inode->i_sb); |
| 243 | pTcon = cifs_sb->tcon; |
| 244 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 245 | /* BB would it be safe against deadlock to grab this sem |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | even though rename itself grabs the sem and calls lookup? */ |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 247 | /* mutex_lock(&inode->i_sb->s_vfs_rename_mutex);*/ |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 248 | full_path = build_path_from_dentry(direntry); |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 249 | /* mutex_unlock(&inode->i_sb->s_vfs_rename_mutex);*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 251 | if (full_path == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | FreeXid(xid); |
| 253 | return -ENOMEM; |
| 254 | } |
| 255 | |
| 256 | cFYI(1, |
| 257 | ("Full path: %s inode = 0x%p pBuffer = 0x%p buflen = %d", |
| 258 | full_path, inode, pBuffer, buflen)); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 259 | if (buflen > PATH_MAX) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | len = PATH_MAX; |
| 261 | else |
| 262 | len = buflen; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 263 | tmpbuffer = kmalloc(len, GFP_KERNEL); |
| 264 | if (tmpbuffer == NULL) { |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 265 | kfree(full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | FreeXid(xid); |
| 267 | return -ENOMEM; |
| 268 | } |
| 269 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 270 | /* BB add read reparse point symlink code and |
| 271 | Unix extensions symlink code here BB */ |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 272 | /* We could disable this based on pTcon->unix_ext flag instead ... but why? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | if (cifs_sb->tcon->ses->capabilities & CAP_UNIX) |
| 274 | rc = CIFSSMBUnixQuerySymLink(xid, pTcon, full_path, |
| 275 | tmpbuffer, |
| 276 | len - 1, |
| 277 | cifs_sb->local_nls); |
Steve French | 1bd5bbc | 2006-09-28 03:35:57 +0000 | [diff] [blame] | 278 | else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 279 | cERROR(1, ("SFU style symlinks not implemented yet")); |
Steve French | 1bd5bbc | 2006-09-28 03:35:57 +0000 | [diff] [blame] | 280 | /* add open and read as in fs/cifs/inode.c */ |
Steve French | 1bd5bbc | 2006-09-28 03:35:57 +0000 | [diff] [blame] | 281 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN, GENERIC_READ, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 283 | OPEN_REPARSE_POINT, &fid, &oplock, NULL, |
| 284 | cifs_sb->local_nls, |
| 285 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 286 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 287 | if (!rc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | rc = CIFSSMBQueryReparseLinkInfo(xid, pTcon, full_path, |
| 289 | tmpbuffer, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 290 | len - 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | fid, |
| 292 | cifs_sb->local_nls); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 293 | if (CIFSSMBClose(xid, pTcon, fid)) { |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 294 | cFYI(1, ("Error closing junction point " |
| 295 | "(open for ioctl)")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | } |
Steve French | 646dd53 | 2008-05-15 01:50:56 +0000 | [diff] [blame] | 297 | /* If it is a DFS junction earlier we would have gotten |
| 298 | PATH_NOT_COVERED returned from server so we do |
| 299 | not need to request the DFS info here */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | } |
| 301 | } |
| 302 | /* BB Anything else to do to handle recursive links? */ |
| 303 | /* BB Should we be using page ops here? */ |
| 304 | |
| 305 | /* BB null terminate returned string in pBuffer? BB */ |
| 306 | if (rc == 0) { |
| 307 | rc = vfs_readlink(direntry, pBuffer, len, tmpbuffer); |
| 308 | cFYI(1, |
| 309 | ("vfs_readlink called from cifs_readlink returned %d", |
| 310 | rc)); |
| 311 | } |
| 312 | |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 313 | kfree(tmpbuffer); |
| 314 | kfree(full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | FreeXid(xid); |
| 316 | return rc; |
| 317 | } |
| 318 | |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 319 | void cifs_put_link(struct dentry *direntry, struct nameidata *nd, void *cookie) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | { |
| 321 | char *p = nd_get_link(nd); |
| 322 | if (!IS_ERR(p)) |
| 323 | kfree(p); |
| 324 | } |