4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License version 2 for more details (a copy is included
14 * in the LICENSE file that accompanied this code).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.gnu.org/licenses/gpl-2.0.html
23 * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2014, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
34 #include <linux/stat.h>
35 #include <linux/version.h>
36 #define DEBUG_SUBSYSTEM S_LLITE
38 #include "llite_internal.h"
40 /* Must be called with lli_size_mutex locked */
41 static int ll_readlink_internal(struct inode *inode,
42 struct ptlrpc_request **request, char **symname)
44 struct ll_inode_info *lli = ll_i2info(inode);
45 struct ll_sb_info *sbi = ll_i2sbi(inode);
46 int rc, symlen = i_size_read(inode) + 1;
47 struct mdt_body *body;
48 struct md_op_data *op_data;
54 if (lli->lli_symlink_name) {
55 int print_limit = min_t(int, PAGE_SIZE - 128, symlen);
57 *symname = lli->lli_symlink_name;
59 * If the total CDEBUG() size is larger than a page, it
60 * will print a warning to the console, avoid this by
61 * printing just the last part of the symlink.
63 CDEBUG(D_INODE, "using cached symlink %s%.*s, len = %d\n",
64 print_limit < symlen ? "..." : "", print_limit,
65 (*symname) + symlen - print_limit, symlen);
69 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, symlen,
70 LUSTRE_OPC_ANY, NULL);
72 RETURN(PTR_ERR(op_data));
74 op_data->op_valid = OBD_MD_LINKNAME;
75 rc = md_getattr(sbi->ll_md_exp, op_data, request);
76 ll_finish_md_op_data(op_data);
79 CERROR("%s: inode "DFID": rc = %d\n",
80 ll_i2sbi(inode)->ll_fsname,
81 PFID(ll_inode2fid(inode)), rc);
85 body = req_capsule_server_get(&(*request)->rq_pill, &RMF_MDT_BODY);
86 LASSERT(body != NULL);
87 if ((body->mbo_valid & OBD_MD_LINKNAME) == 0) {
88 CERROR("OBD_MD_LINKNAME not set on reply\n");
89 GOTO(failed, rc = -EPROTO);
93 if (body->mbo_eadatasize != symlen) {
94 CERROR("%s: inode "DFID": symlink length %d not expected %d\n",
95 sbi->ll_fsname, PFID(ll_inode2fid(inode)),
96 body->mbo_eadatasize - 1, symlen - 1);
97 GOTO(failed, rc = -EPROTO);
100 *symname = req_capsule_server_get(&(*request)->rq_pill, &RMF_MDT_MD);
101 if (!*symname || strnlen(*symname, symlen) != symlen - 1) {
102 /* not full/NULL terminated */
103 CERROR("%s: inode "DFID": symlink not NULL terminated string of length %d\n",
105 PFID(ll_inode2fid(inode)), symlen - 1);
106 GOTO(failed, rc = -EPROTO);
109 OBD_ALLOC(lli->lli_symlink_name, symlen);
110 /* do not return an error if we cannot cache the symlink locally */
111 if (lli->lli_symlink_name) {
112 memcpy(lli->lli_symlink_name, *symname, symlen);
113 *symname = lli->lli_symlink_name;
121 #ifdef HAVE_SYMLINK_OPS_USE_NAMEIDATA
122 static void ll_put_link(struct dentry *dentry,
123 struct nameidata *nd, void *cookie)
125 # ifdef HAVE_IOP_GET_LINK
126 static void ll_put_link(void *cookie)
128 static void ll_put_link(struct inode *unused, void *cookie)
132 ptlrpc_req_finished(cookie);
135 #ifdef HAVE_SYMLINK_OPS_USE_NAMEIDATA
136 static void *ll_follow_link(struct dentry *dentry, struct nameidata *nd)
138 struct inode *inode = dentry->d_inode;
139 struct ptlrpc_request *request = NULL;
141 char *symname = NULL;
145 CDEBUG(D_VFSTRACE, "VFS Op\n");
147 * Limit the recursive symlink depth to 5 instead of default
148 * 8 links when kernel has 4k stack to prevent stack overflow.
149 * For 8k stacks we need to limit it to 7 for local servers.
151 if (THREAD_SIZE < 8192 && current->link_count >= 6) {
153 } else if (THREAD_SIZE == 8192 && current->link_count >= 8) {
156 ll_inode_size_lock(inode);
157 rc = ll_readlink_internal(inode, &request, &symname);
158 ll_inode_size_unlock(inode);
161 ptlrpc_req_finished(request);
163 symname = ERR_PTR(rc);
166 nd_set_link(nd, symname);
168 * symname may contain a pointer to the request message buffer,
169 * we delay request releasing until ll_put_link then.
174 # ifdef HAVE_IOP_GET_LINK
175 static const char *ll_get_link(struct dentry *dentry,
177 struct delayed_call *done)
179 struct ptlrpc_request *request;
180 char *symname = NULL;
184 CDEBUG(D_VFSTRACE, "VFS Op\n");
186 RETURN(ERR_PTR(-ECHILD));
187 ll_inode_size_lock(inode);
188 rc = ll_readlink_internal(inode, &request, &symname);
189 ll_inode_size_unlock(inode);
191 ptlrpc_req_finished(request);
196 * symname may contain a pointer to the request message buffer,
197 * we delay request releasing then.
199 set_delayed_call(done, ll_put_link, request);
203 static const char *ll_follow_link(struct dentry *dentry, void **cookie)
205 struct inode *inode = d_inode(dentry);
206 struct ptlrpc_request *request;
207 char *symname = NULL;
212 CDEBUG(D_VFSTRACE, "VFS Op\n");
213 ll_inode_size_lock(inode);
214 rc = ll_readlink_internal(inode, &request, &symname);
215 ll_inode_size_unlock(inode);
217 ptlrpc_req_finished(request);
222 * symname may contain a pointer to the request message buffer,
223 * we delay request releasing until ll_put_link then.
228 # endif /* HAVE_IOP_GET_LINK */
229 #endif /* HAVE_SYMLINK_OPS_USE_NAMEIDATA */
231 const struct inode_operations ll_fast_symlink_inode_operations = {
232 #ifdef HAVE_IOP_GENERIC_READLINK
233 .readlink = generic_readlink,
235 .setattr = ll_setattr,
236 #ifdef HAVE_IOP_GET_LINK
237 .get_link = ll_get_link,
239 .follow_link = ll_follow_link,
240 .put_link = ll_put_link,
242 .getattr = ll_getattr,
243 .permission = ll_inode_permission,
244 #ifdef HAVE_IOP_XATTR
245 .setxattr = ll_setxattr,
246 .getxattr = ll_getxattr,
247 .removexattr = ll_removexattr,
249 .listxattr = ll_listxattr,