]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/staging/lustre/lustre/llite/llite_nfs.c
Merge tag 'iio-for-4.13b' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23...
[mirror_ubuntu-artful-kernel.git] / drivers / staging / lustre / lustre / llite / llite_nfs.c
CommitLineData
d7e09d03
PT
1/*
2 * GPL HEADER START
3 *
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 *
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.
9 *
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).
15 *
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
6a5b99a4 18 * http://www.gnu.org/licenses/gpl-2.0.html
d7e09d03 19 *
d7e09d03
PT
20 * GPL HEADER END
21 */
22/*
23 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
25 *
26 * Copyright (c) 2011, 2012, Intel Corporation.
27 */
28/*
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
31 *
32 * lustre/lustre/llite/llite_nfs.c
33 *
34 * NFS export of Lustre Light File System
35 *
36 * Author: Yury Umanets <umka@clusterfs.com>
37 * Author: Huang Hua <huanghua@clusterfs.com>
38 */
39
40#define DEBUG_SUBSYSTEM S_LLITE
d7e09d03
PT
41#include "llite_internal.h"
42#include <linux/exportfs.h>
43
44__u32 get_uuid2int(const char *name, int len)
45{
46 __u32 key0 = 0x12a3fe2d, key1 = 0x37abe8f9;
50ffcb7e 47
d7e09d03
PT
48 while (len--) {
49 __u32 key = key1 + (key0 ^ (*name++ * 7152373));
5b39bd5f
JP
50
51 if (key & 0x80000000)
52 key -= 0x7fffffff;
d7e09d03
PT
53 key1 = key0;
54 key0 = key;
55 }
56 return (key0 << 1);
57}
58
bd994071
FY
59void get_uuid2fsid(const char *name, int len, __kernel_fsid_t *fsid)
60{
61 __u64 key = 0, key0 = 0x12a3fe2d, key1 = 0x37abe8f9;
62
63 while (len--) {
64 key = key1 + (key0 ^ (*name++ * 7152373));
65 if (key & 0x8000000000000000ULL)
66 key -= 0x7fffffffffffffffULL;
67 key1 = key0;
68 key0 = key;
69 }
70
71 fsid->val[0] = key;
72 fsid->val[1] = key >> 32;
73}
74
d7e09d03
PT
75struct inode *search_inode_for_lustre(struct super_block *sb,
76 const struct lu_fid *fid)
77{
78 struct ll_sb_info *sbi = ll_s2sbi(sb);
79 struct ptlrpc_request *req = NULL;
80 struct inode *inode = NULL;
81 int eadatalen = 0;
82 unsigned long hash = cl_fid_build_ino(fid,
83 ll_need_32bit_api(sbi));
84 struct md_op_data *op_data;
85 int rc;
d7e09d03 86
1ada25dc 87 CDEBUG(D_INFO, "searching inode for:(%lu," DFID ")\n", hash, PFID(fid));
d7e09d03 88
2de35386 89 inode = ilookup5(sb, hash, ll_test_inode_by_fid, (void *)fid);
d7e09d03 90 if (inode)
0a3bdb00 91 return inode;
d7e09d03 92
44779340 93 rc = ll_get_default_mdsize(sbi, &eadatalen);
d7e09d03 94 if (rc)
0a3bdb00 95 return ERR_PTR(rc);
d7e09d03
PT
96
97 /* Because inode is NULL, ll_prep_md_op_data can not
c0894c6c
OD
98 * be used here. So we allocate op_data ourselves
99 */
496a51bd
JL
100 op_data = kzalloc(sizeof(*op_data), GFP_NOFS);
101 if (!op_data)
d7e09d03
PT
102 return ERR_PTR(-ENOMEM);
103
104 op_data->op_fid1 = *fid;
105 op_data->op_mode = eadatalen;
106 op_data->op_valid = OBD_MD_FLEASIZE;
107
108 /* mds_fid2dentry ignores f_type */
109 rc = md_getattr(sbi->ll_md_exp, op_data, &req);
97903a26 110 kfree(op_data);
d7e09d03 111 if (rc) {
1ada25dc 112 CDEBUG(D_INFO, "can't get object attrs, fid " DFID ", rc %d\n",
d7e09d03 113 PFID(fid), rc);
0a3bdb00 114 return ERR_PTR(rc);
d7e09d03
PT
115 }
116 rc = ll_prep_inode(&inode, req, sb, NULL);
117 ptlrpc_req_finished(req);
118 if (rc)
0a3bdb00 119 return ERR_PTR(rc);
d7e09d03 120
0a3bdb00 121 return inode;
d7e09d03
PT
122}
123
124struct lustre_nfs_fid {
125 struct lu_fid lnf_child;
126 struct lu_fid lnf_parent;
127};
128
129static struct dentry *
130ll_iget_for_nfs(struct super_block *sb, struct lu_fid *fid, struct lu_fid *parent)
131{
132 struct inode *inode;
133 struct dentry *result;
d7e09d03 134
d7e09d03 135 if (!fid_is_sane(fid))
0a3bdb00 136 return ERR_PTR(-ESTALE);
d7e09d03 137
cb776592
DE
138 CDEBUG(D_INFO, "Get dentry for fid: " DFID "\n", PFID(fid));
139
d7e09d03
PT
140 inode = search_inode_for_lustre(sb, fid);
141 if (IS_ERR(inode))
0a3bdb00 142 return ERR_CAST(inode);
d7e09d03
PT
143
144 if (is_bad_inode(inode)) {
145 /* we didn't find the right inode.. */
146 iput(inode);
0a3bdb00 147 return ERR_PTR(-ESTALE);
d7e09d03
PT
148 }
149
c1b66fcc
LS
150 result = d_obtain_alias(inode);
151 if (IS_ERR(result)) {
152 iput(inode);
153 return result;
154 }
155
d7e09d03 156 /**
c1b66fcc
LS
157 * In case d_obtain_alias() found a disconnected dentry, always update
158 * lli_pfid to allow later operation (normally open) have parent fid,
159 * which may be used by MDS to create data.
d7e09d03 160 */
c1b66fcc 161 if (parent) {
d7e09d03
PT
162 struct ll_inode_info *lli = ll_i2info(inode);
163
164 spin_lock(&lli->lli_lock);
165 lli->lli_pfid = *parent;
166 spin_unlock(&lli->lli_lock);
167 }
168
7f830d8d 169 /* N.B. d_obtain_alias() drops inode ref on error */
d7e09d03 170 result = d_obtain_alias(inode);
6dad4d89 171 if (!IS_ERR(result)) {
7126bc2e
AV
172 /*
173 * Need to signal to the ll_intent_file_open that
174 * we came from NFS and so opencache needs to be
175 * enabled for this one
176 */
177 ll_d2d(result)->lld_nfs_dentry = 1;
6dad4d89 178 }
d7e09d03 179
0a3bdb00 180 return result;
d7e09d03
PT
181}
182
d7e09d03
PT
183/**
184 * \a connectable - is nfsd will connect himself or this should be done
185 * at lustre
186 *
187 * The return value is file handle type:
188 * 1 -- contains child file handle;
189 * 2 -- contains child file handle and parent file handle;
190 * 255 -- error.
191 */
192static int ll_encode_fh(struct inode *inode, __u32 *fh, int *plen,
193 struct inode *parent)
194{
cb776592 195 int fileid_len = sizeof(struct lustre_nfs_fid) / 4;
d7e09d03 196 struct lustre_nfs_fid *nfs_fid = (void *)fh;
d7e09d03 197
1ada25dc 198 CDEBUG(D_INFO, "%s: encoding for (" DFID ") maxlen=%d minlen=%d\n",
97a075cd
JN
199 ll_get_fsname(inode->i_sb, NULL, 0),
200 PFID(ll_inode2fid(inode)), *plen, fileid_len);
d7e09d03 201
cb776592
DE
202 if (*plen < fileid_len) {
203 *plen = fileid_len;
204 return FILEID_INVALID;
205 }
d7e09d03
PT
206
207 nfs_fid->lnf_child = *ll_inode2fid(inode);
cb776592
DE
208 if (parent)
209 nfs_fid->lnf_parent = *ll_inode2fid(parent);
210 else
211 fid_zero(&nfs_fid->lnf_parent);
212 *plen = fileid_len;
d7e09d03 213
cb776592 214 return FILEID_LUSTRE;
d7e09d03
PT
215}
216
ac7576f4
MS
217static int ll_nfs_get_name_filldir(struct dir_context *ctx, const char *name,
218 int namelen, loff_t hash, u64 ino,
8dde0685 219 unsigned int type)
d7e09d03
PT
220{
221 /* It is hack to access lde_fid for comparison with lgd_fid.
c0894c6c
OD
222 * So the input 'name' must be part of the 'lu_dirent'.
223 */
d7e09d03 224 struct lu_dirent *lde = container_of0(name, struct lu_dirent, lde_name);
ac7576f4
MS
225 struct ll_getname_data *lgd =
226 container_of(ctx, struct ll_getname_data, ctx);
d7e09d03
PT
227 struct lu_fid fid;
228
229 fid_le_to_cpu(&fid, &lde->lde_fid);
230 if (lu_fid_eq(&fid, &lgd->lgd_fid)) {
231 memcpy(lgd->lgd_name, name, namelen);
232 lgd->lgd_name[namelen] = 0;
233 lgd->lgd_found = 1;
234 }
235 return lgd->lgd_found;
236}
237
238static int ll_get_name(struct dentry *dentry, char *name,
239 struct dentry *child)
240{
2b0143b5 241 struct inode *dir = d_inode(dentry);
d7e09d03 242 int rc;
0b09d381
PT
243 struct ll_getname_data lgd = {
244 .lgd_name = name,
2b0143b5 245 .lgd_fid = ll_i2info(d_inode(child))->lli_fid,
0b09d381
PT
246 .ctx.actor = ll_nfs_get_name_filldir,
247 };
307bef74 248 struct md_op_data *op_data;
218ba485 249 __u64 pos = 0;
d7e09d03 250
34e1f2bb
JL
251 if (!dir || !S_ISDIR(dir->i_mode)) {
252 rc = -ENOTDIR;
253 goto out;
254 }
d7e09d03 255
34e1f2bb
JL
256 if (!dir->i_fop) {
257 rc = -EINVAL;
258 goto out;
259 }
d7e09d03 260
307bef74 261 op_data = ll_prep_md_op_data(NULL, dir, dir, NULL, 0, 0,
262 LUSTRE_OPC_ANY, dir);
263 if (IS_ERR(op_data)) {
264 rc = PTR_ERR(op_data);
265 goto out;
266 }
267
bce1bbf4 268 op_data->op_max_pages = ll_i2sbi(dir)->ll_md_brw_pages;
5955102c 269 inode_lock(dir);
218ba485 270 rc = ll_dir_read(dir, &pos, op_data, &lgd.ctx);
5955102c 271 inode_unlock(dir);
307bef74 272 ll_finish_md_op_data(op_data);
d7e09d03
PT
273 if (!rc && !lgd.lgd_found)
274 rc = -ENOENT;
d7e09d03
PT
275out:
276 return rc;
277}
278
279static struct dentry *ll_fh_to_dentry(struct super_block *sb, struct fid *fid,
280 int fh_len, int fh_type)
281{
282 struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
283
cb776592 284 if (fh_type != FILEID_LUSTRE)
0a3bdb00 285 return ERR_PTR(-EPROTO);
d7e09d03 286
0a3bdb00 287 return ll_iget_for_nfs(sb, &nfs_fid->lnf_child, &nfs_fid->lnf_parent);
d7e09d03
PT
288}
289
290static struct dentry *ll_fh_to_parent(struct super_block *sb, struct fid *fid,
291 int fh_len, int fh_type)
292{
293 struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
294
cb776592 295 if (fh_type != FILEID_LUSTRE)
0a3bdb00 296 return ERR_PTR(-EPROTO);
d7e09d03 297
0a3bdb00 298 return ll_iget_for_nfs(sb, &nfs_fid->lnf_parent, NULL);
d7e09d03
PT
299}
300
ef21b1fb 301int ll_dir_get_parent_fid(struct inode *dir, struct lu_fid *parent_fid)
d7e09d03
PT
302{
303 struct ptlrpc_request *req = NULL;
d7e09d03 304 struct ll_sb_info *sbi;
d7e09d03 305 struct mdt_body *body;
ef21b1fb 306 static const char dotdot[] = "..";
d7e09d03
PT
307 struct md_op_data *op_data;
308 int rc;
309 int lmmsize;
d7e09d03
PT
310
311 LASSERT(dir && S_ISDIR(dir->i_mode));
312
313 sbi = ll_s2sbi(dir->i_sb);
314
1ada25dc 315 CDEBUG(D_INFO, "%s: getting parent for (" DFID ")\n",
97a075cd
JN
316 ll_get_fsname(dir->i_sb, NULL, 0),
317 PFID(ll_inode2fid(dir)));
d7e09d03 318
44779340 319 rc = ll_get_default_mdsize(sbi, &lmmsize);
d7e09d03 320 if (rc != 0)
ef21b1fb 321 return rc;
d7e09d03
PT
322
323 op_data = ll_prep_md_op_data(NULL, dir, NULL, dotdot,
324 strlen(dotdot), lmmsize,
325 LUSTRE_OPC_ANY, NULL);
326 if (IS_ERR(op_data))
ef21b1fb 327 return PTR_ERR(op_data);
d7e09d03
PT
328
329 rc = md_getattr_name(sbi->ll_md_exp, op_data, &req);
330 ll_finish_md_op_data(op_data);
331 if (rc) {
1ada25dc 332 CERROR("%s: failure inode " DFID " get parent: rc = %d\n",
97a075cd
JN
333 ll_get_fsname(dir->i_sb, NULL, 0),
334 PFID(ll_inode2fid(dir)), rc);
ef21b1fb 335 return rc;
d7e09d03
PT
336 }
337 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
1e5a6fa9
BJ
338 /*
339 * LU-3952: MDT may lost the FID of its parent, we should not crash
340 * the NFS server, ll_iget_for_nfs() will handle the error.
341 */
2e1b5b8b 342 if (body->mbo_valid & OBD_MD_FLID) {
1e5a6fa9 343 CDEBUG(D_INFO, "parent for " DFID " is " DFID "\n",
2e1b5b8b
JH
344 PFID(ll_inode2fid(dir)), PFID(&body->mbo_fid1));
345 *parent_fid = body->mbo_fid1;
1e5a6fa9 346 }
d7e09d03
PT
347
348 ptlrpc_req_finished(req);
ef21b1fb 349 return 0;
350}
351
352static struct dentry *ll_get_parent(struct dentry *dchild)
353{
354 struct lu_fid parent_fid = { 0 };
355 struct dentry *dentry;
356 int rc;
357
358 rc = ll_dir_get_parent_fid(dchild->d_inode, &parent_fid);
359 if (rc)
360 return ERR_PTR(rc);
361
362 dentry = ll_iget_for_nfs(dchild->d_inode->i_sb, &parent_fid, NULL);
363
364 return dentry;
d7e09d03
PT
365}
366
98aa7661 367const struct export_operations lustre_export_operations = {
22ea97f0
OD
368 .get_parent = ll_get_parent,
369 .encode_fh = ll_encode_fh,
370 .get_name = ll_get_name,
d7e09d03
PT
371 .fh_to_dentry = ll_fh_to_dentry,
372 .fh_to_parent = ll_fh_to_parent,
373};