ceph: simplify ceph_fh_to_dentry()
[firefly-linux-kernel-4.4.55.git] / fs / ceph / export.c
1 #include <linux/ceph/ceph_debug.h>
2
3 #include <linux/exportfs.h>
4 #include <linux/slab.h>
5 #include <asm/unaligned.h>
6
7 #include "super.h"
8 #include "mds_client.h"
9
10 /*
11  * Basic fh
12  */
13 struct ceph_nfs_fh {
14         u64 ino;
15 } __attribute__ ((packed));
16
17 /*
18  * Larger fh that includes parent ino.
19  */
20 struct ceph_nfs_confh {
21         u64 ino, parent_ino;
22 } __attribute__ ((packed));
23
24 static int ceph_encode_fh(struct inode *inode, u32 *rawfh, int *max_len,
25                           struct inode *parent_inode)
26 {
27         int type;
28         struct ceph_nfs_fh *fh = (void *)rawfh;
29         struct ceph_nfs_confh *cfh = (void *)rawfh;
30         int connected_handle_length = sizeof(*cfh)/4;
31         int handle_length = sizeof(*fh)/4;
32
33         /* don't re-export snaps */
34         if (ceph_snap(inode) != CEPH_NOSNAP)
35                 return -EINVAL;
36
37         if (parent_inode && (*max_len < connected_handle_length)) {
38                 *max_len = connected_handle_length;
39                 return FILEID_INVALID;
40         } else if (*max_len < handle_length) {
41                 *max_len = handle_length;
42                 return FILEID_INVALID;
43         }
44
45         if (parent_inode) {
46                 dout("encode_fh %llx with parent %llx\n",
47                      ceph_ino(inode), ceph_ino(parent_inode));
48                 cfh->ino = ceph_ino(inode);
49                 cfh->parent_ino = ceph_ino(parent_inode);
50                 *max_len = connected_handle_length;
51                 type = FILEID_INO32_GEN_PARENT;
52         } else {
53                 dout("encode_fh %llx\n", ceph_ino(inode));
54                 fh->ino = ceph_ino(inode);
55                 *max_len = handle_length;
56                 type = FILEID_INO32_GEN;
57         }
58         return type;
59 }
60
61 static struct dentry *__fh_to_dentry(struct super_block *sb, u64 ino)
62 {
63         struct ceph_mds_client *mdsc = ceph_sb_to_client(sb)->mdsc;
64         struct inode *inode;
65         struct dentry *dentry;
66         struct ceph_vino vino;
67         int err;
68
69         vino.ino = ino;
70         vino.snap = CEPH_NOSNAP;
71         inode = ceph_find_inode(sb, vino);
72         if (!inode) {
73                 struct ceph_mds_request *req;
74
75                 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_LOOKUPINO,
76                                                USE_ANY_MDS);
77                 if (IS_ERR(req))
78                         return ERR_CAST(req);
79
80                 req->r_ino1 = vino;
81                 req->r_num_caps = 1;
82                 err = ceph_mdsc_do_request(mdsc, NULL, req);
83                 inode = req->r_target_inode;
84                 if (inode)
85                         ihold(inode);
86                 ceph_mdsc_put_request(req);
87                 if (!inode)
88                         return ERR_PTR(-ESTALE);
89         }
90
91         dentry = d_obtain_alias(inode);
92         if (IS_ERR(dentry)) {
93                 iput(inode);
94                 return dentry;
95         }
96         err = ceph_init_dentry(dentry);
97         if (err < 0) {
98                 dput(dentry);
99                 return ERR_PTR(err);
100         }
101         dout("__fh_to_dentry %llx %p dentry %p\n", ino, inode, dentry);
102         return dentry;
103 }
104
105 /*
106  * convert regular fh to dentry
107  */
108 static struct dentry *ceph_fh_to_dentry(struct super_block *sb,
109                                         struct fid *fid,
110                                         int fh_len, int fh_type)
111 {
112         struct ceph_nfs_fh *fh = (void *)fid->raw;
113
114         if (fh_type != FILEID_INO32_GEN  &&
115             fh_type != FILEID_INO32_GEN_PARENT)
116                 return NULL;
117         if (fh_len < sizeof(*fh) / 4)
118                 return NULL;
119
120         dout("fh_to_dentry %llx\n", fh->ino);
121         return __fh_to_dentry(sb, fh->ino);
122 }
123
124 /*
125  * get parent, if possible.
126  *
127  * FIXME: we could do better by querying the mds to discover the
128  * parent.
129  */
130 static struct dentry *ceph_fh_to_parent(struct super_block *sb,
131                                          struct fid *fid,
132                                         int fh_len, int fh_type)
133 {
134         struct ceph_nfs_confh *cfh = (void *)fid->raw;
135         struct ceph_vino vino;
136         struct inode *inode;
137         struct dentry *dentry;
138         int err;
139
140         if (fh_type == 1)
141                 return ERR_PTR(-ESTALE);
142         if (fh_len < sizeof(*cfh) / 4)
143                 return ERR_PTR(-ESTALE);
144
145         pr_debug("fh_to_parent %llx/%d\n", cfh->parent_ino,
146                  cfh->parent_name_hash);
147
148         vino.ino = cfh->ino;
149         vino.snap = CEPH_NOSNAP;
150         inode = ceph_find_inode(sb, vino);
151         if (!inode)
152                 return ERR_PTR(-ESTALE);
153
154         dentry = d_obtain_alias(inode);
155         if (IS_ERR(dentry)) {
156                 pr_err("fh_to_parent %llx -- inode %p but ENOMEM\n",
157                        cfh->ino, inode);
158                 iput(inode);
159                 return dentry;
160         }
161         err = ceph_init_dentry(dentry);
162         if (err < 0) {
163                 iput(inode);
164                 return ERR_PTR(err);
165         }
166         dout("fh_to_parent %llx %p dentry %p\n", cfh->ino, inode, dentry);
167         return dentry;
168 }
169
170 const struct export_operations ceph_export_ops = {
171         .encode_fh = ceph_encode_fh,
172         .fh_to_dentry = ceph_fh_to_dentry,
173         .fh_to_parent = ceph_fh_to_parent,
174 };