]> git.karo-electronics.de Git - karo-tx-linux.git/blob - fs/xfs/linux-2.6/xfs_export.c
[XFS] Radix tree based inode caching
[karo-tx-linux.git] / fs / xfs / linux-2.6 / xfs_export.c
1 /*
2  * Copyright (c) 2004-2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 #include "xfs.h"
19 #include "xfs_types.h"
20 #include "xfs_inum.h"
21 #include "xfs_log.h"
22 #include "xfs_trans.h"
23 #include "xfs_sb.h"
24 #include "xfs_ag.h"
25 #include "xfs_dmapi.h"
26 #include "xfs_mount.h"
27 #include "xfs_export.h"
28
29 static struct dentry dotdot = { .d_name.name = "..", .d_name.len = 2, };
30
31 /*
32  * XFS encodes and decodes the fileid portion of NFS filehandles
33  * itself instead of letting the generic NFS code do it.  This
34  * allows filesystems with 64 bit inode numbers to be exported.
35  *
36  * Note that a side effect is that xfs_vget() won't be passed a
37  * zero inode/generation pair under normal circumstances.  As
38  * however a malicious client could send us such data, the check
39  * remains in that code.
40  */
41
42 STATIC struct dentry *
43 xfs_fs_decode_fh(
44         struct super_block      *sb,
45         __u32                   *fh,
46         int                     fh_len,
47         int                     fileid_type,
48         int (*acceptable)(
49                 void            *context,
50                 struct dentry   *de),
51         void                    *context)
52 {
53         xfs_fid2_t              ifid;
54         xfs_fid2_t              pfid;
55         void                    *parent = NULL;
56         int                     is64 = 0;
57         __u32                   *p = fh;
58
59 #if XFS_BIG_INUMS
60         is64 = (fileid_type & XFS_FILEID_TYPE_64FLAG);
61         fileid_type &= ~XFS_FILEID_TYPE_64FLAG;
62 #endif
63
64         /*
65          * Note that we only accept fileids which are long enough
66          * rather than allow the parent generation number to default
67          * to zero.  XFS considers zero a valid generation number not
68          * an invalid/wildcard value.  There's little point printk'ing
69          * a warning here as we don't have the client information
70          * which would make such a warning useful.
71          */
72         if (fileid_type > 2 ||
73             fh_len < xfs_fileid_length((fileid_type == 2), is64))
74                 return NULL;
75
76         p = xfs_fileid_decode_fid2(p, &ifid, is64);
77
78         if (fileid_type == 2) {
79                 p = xfs_fileid_decode_fid2(p, &pfid, is64);
80                 parent = &pfid;
81         }
82
83         fh = (__u32 *)&ifid;
84         return sb->s_export_op->find_exported_dentry(sb, fh, parent, acceptable, context);
85 }
86
87
88 STATIC int
89 xfs_fs_encode_fh(
90         struct dentry           *dentry,
91         __u32                   *fh,
92         int                     *max_len,
93         int                     connectable)
94 {
95         struct inode            *inode = dentry->d_inode;
96         int                     type = 1;
97         __u32                   *p = fh;
98         int                     len;
99         int                     is64 = 0;
100 #if XFS_BIG_INUMS
101         bhv_vfs_t               *vfs = vfs_from_sb(inode->i_sb);
102
103         if (!(vfs->vfs_flag & VFS_32BITINODES)) {
104                 /* filesystem may contain 64bit inode numbers */
105                 is64 = XFS_FILEID_TYPE_64FLAG;
106         }
107 #endif
108
109         /* Directories don't need their parent encoded, they have ".." */
110         if (S_ISDIR(inode->i_mode))
111             connectable = 0;
112
113         /*
114          * Only encode if there is enough space given.  In practice
115          * this means we can't export a filesystem with 64bit inodes
116          * over NFSv2 with the subtree_check export option; the other
117          * seven combinations work.  The real answer is "don't use v2".
118          */
119         len = xfs_fileid_length(connectable, is64);
120         if (*max_len < len)
121                 return 255;
122         *max_len = len;
123
124         p = xfs_fileid_encode_inode(p, inode, is64);
125         if (connectable) {
126                 spin_lock(&dentry->d_lock);
127                 p = xfs_fileid_encode_inode(p, dentry->d_parent->d_inode, is64);
128                 spin_unlock(&dentry->d_lock);
129                 type = 2;
130         }
131         BUG_ON((p - fh) != len);
132         return type | is64;
133 }
134
135 STATIC struct dentry *
136 xfs_fs_get_dentry(
137         struct super_block      *sb,
138         void                    *data)
139 {
140         bhv_vnode_t             *vp;
141         struct inode            *inode;
142         struct dentry           *result;
143         bhv_vfs_t               *vfsp = vfs_from_sb(sb);
144         int                     error;
145
146         error = bhv_vfs_vget(vfsp, &vp, (fid_t *)data);
147         if (error || vp == NULL)
148                 return ERR_PTR(-ESTALE) ;
149
150         inode = vn_to_inode(vp);
151         result = d_alloc_anon(inode);
152         if (!result) {
153                 iput(inode);
154                 return ERR_PTR(-ENOMEM);
155         }
156         return result;
157 }
158
159 STATIC struct dentry *
160 xfs_fs_get_parent(
161         struct dentry           *child)
162 {
163         int                     error;
164         bhv_vnode_t             *vp, *cvp;
165         struct dentry           *parent;
166
167         cvp = NULL;
168         vp = vn_from_inode(child->d_inode);
169         error = bhv_vop_lookup(vp, &dotdot, &cvp, 0, NULL, NULL);
170         if (unlikely(error))
171                 return ERR_PTR(-error);
172
173         parent = d_alloc_anon(vn_to_inode(cvp));
174         if (unlikely(!parent)) {
175                 VN_RELE(cvp);
176                 return ERR_PTR(-ENOMEM);
177         }
178         return parent;
179 }
180
181 struct export_operations xfs_export_operations = {
182         .decode_fh              = xfs_fs_decode_fh,
183         .encode_fh              = xfs_fs_encode_fh,
184         .get_parent             = xfs_fs_get_parent,
185         .get_dentry             = xfs_fs_get_dentry,
186 };