David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. |
Steven Whitehouse | 3a8a9a1 | 2006-05-18 15:09:15 -0400 | [diff] [blame] | 3 | * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 4 | * |
| 5 | * This copyrighted material is made available to anyone wishing to use, |
| 6 | * modify, copy, or redistribute it subject to the terms and conditions |
Steven Whitehouse | e9fc2aa | 2006-09-01 11:05:15 -0400 | [diff] [blame] | 7 | * of the GNU General Public License version 2. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <linux/sched.h> |
| 11 | #include <linux/slab.h> |
| 12 | #include <linux/spinlock.h> |
| 13 | #include <linux/completion.h> |
| 14 | #include <linux/buffer_head.h> |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 15 | #include <linux/gfs2_ondisk.h> |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 16 | #include <linux/crc32.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 17 | |
| 18 | #include "gfs2.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 19 | #include "lm_interface.h" |
| 20 | #include "incore.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 21 | #include "dir.h" |
| 22 | #include "glock.h" |
| 23 | #include "glops.h" |
| 24 | #include "inode.h" |
| 25 | #include "ops_export.h" |
| 26 | #include "rgrp.h" |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 27 | #include "util.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 28 | |
| 29 | static struct dentry *gfs2_decode_fh(struct super_block *sb, |
| 30 | __u32 *fh, |
| 31 | int fh_len, |
| 32 | int fh_type, |
| 33 | int (*acceptable)(void *context, |
| 34 | struct dentry *dentry), |
| 35 | void *context) |
| 36 | { |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 37 | struct gfs2_fh_obj fh_obj; |
| 38 | struct gfs2_inum *this, parent; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 39 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 40 | if (fh_type != fh_len) |
| 41 | return NULL; |
| 42 | |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 43 | this = &fh_obj.this; |
| 44 | fh_obj.imode = DT_UNKNOWN; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 45 | memset(&parent, 0, sizeof(struct gfs2_inum)); |
| 46 | |
| 47 | switch (fh_type) { |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 48 | case 10: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 49 | parent.no_formal_ino = ((uint64_t)be32_to_cpu(fh[4])) << 32; |
| 50 | parent.no_formal_ino |= be32_to_cpu(fh[5]); |
| 51 | parent.no_addr = ((uint64_t)be32_to_cpu(fh[6])) << 32; |
| 52 | parent.no_addr |= be32_to_cpu(fh[7]); |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 53 | fh_obj.imode = be32_to_cpu(fh[8]); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 54 | case 4: |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 55 | this->no_formal_ino = ((uint64_t)be32_to_cpu(fh[0])) << 32; |
| 56 | this->no_formal_ino |= be32_to_cpu(fh[1]); |
| 57 | this->no_addr = ((uint64_t)be32_to_cpu(fh[2])) << 32; |
| 58 | this->no_addr |= be32_to_cpu(fh[3]); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 59 | break; |
| 60 | default: |
| 61 | return NULL; |
| 62 | } |
| 63 | |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 64 | return gfs2_export_ops.find_exported_dentry(sb, &fh_obj, &parent, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 65 | acceptable, context); |
| 66 | } |
| 67 | |
| 68 | static int gfs2_encode_fh(struct dentry *dentry, __u32 *fh, int *len, |
| 69 | int connectable) |
| 70 | { |
| 71 | struct inode *inode = dentry->d_inode; |
Steven Whitehouse | c9fd430 | 2006-03-01 15:31:02 -0500 | [diff] [blame] | 72 | struct super_block *sb = inode->i_sb; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 73 | struct gfs2_inode *ip = GFS2_I(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 74 | |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 75 | if (*len < 4 || (connectable && *len < 10)) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 76 | return 255; |
| 77 | |
| 78 | fh[0] = ip->i_num.no_formal_ino >> 32; |
| 79 | fh[0] = cpu_to_be32(fh[0]); |
| 80 | fh[1] = ip->i_num.no_formal_ino & 0xFFFFFFFF; |
| 81 | fh[1] = cpu_to_be32(fh[1]); |
| 82 | fh[2] = ip->i_num.no_addr >> 32; |
| 83 | fh[2] = cpu_to_be32(fh[2]); |
| 84 | fh[3] = ip->i_num.no_addr & 0xFFFFFFFF; |
| 85 | fh[3] = cpu_to_be32(fh[3]); |
| 86 | *len = 4; |
| 87 | |
Steven Whitehouse | c9fd430 | 2006-03-01 15:31:02 -0500 | [diff] [blame] | 88 | if (!connectable || inode == sb->s_root->d_inode) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 89 | return *len; |
| 90 | |
| 91 | spin_lock(&dentry->d_lock); |
| 92 | inode = dentry->d_parent->d_inode; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 93 | ip = GFS2_I(inode); |
| 94 | igrab(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 95 | spin_unlock(&dentry->d_lock); |
| 96 | |
| 97 | fh[4] = ip->i_num.no_formal_ino >> 32; |
| 98 | fh[4] = cpu_to_be32(fh[4]); |
| 99 | fh[5] = ip->i_num.no_formal_ino & 0xFFFFFFFF; |
| 100 | fh[5] = cpu_to_be32(fh[5]); |
| 101 | fh[6] = ip->i_num.no_addr >> 32; |
| 102 | fh[6] = cpu_to_be32(fh[6]); |
| 103 | fh[7] = ip->i_num.no_addr & 0xFFFFFFFF; |
| 104 | fh[7] = cpu_to_be32(fh[7]); |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 105 | |
| 106 | fh[8] = cpu_to_be32(inode->i_mode); |
| 107 | fh[9] = 0; /* pad to double word */ |
| 108 | *len = 10; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 109 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 110 | iput(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 111 | |
| 112 | return *len; |
| 113 | } |
| 114 | |
| 115 | struct get_name_filldir { |
| 116 | struct gfs2_inum inum; |
| 117 | char *name; |
| 118 | }; |
| 119 | |
| 120 | static int get_name_filldir(void *opaque, const char *name, unsigned int length, |
| 121 | uint64_t offset, struct gfs2_inum *inum, |
| 122 | unsigned int type) |
| 123 | { |
| 124 | struct get_name_filldir *gnfd = (struct get_name_filldir *)opaque; |
| 125 | |
| 126 | if (!gfs2_inum_equal(inum, &gnfd->inum)) |
| 127 | return 0; |
| 128 | |
| 129 | memcpy(gnfd->name, name, length); |
| 130 | gnfd->name[length] = 0; |
| 131 | |
| 132 | return 1; |
| 133 | } |
| 134 | |
| 135 | static int gfs2_get_name(struct dentry *parent, char *name, |
| 136 | struct dentry *child) |
| 137 | { |
| 138 | struct inode *dir = parent->d_inode; |
| 139 | struct inode *inode = child->d_inode; |
| 140 | struct gfs2_inode *dip, *ip; |
| 141 | struct get_name_filldir gnfd; |
| 142 | struct gfs2_holder gh; |
| 143 | uint64_t offset = 0; |
| 144 | int error; |
| 145 | |
| 146 | if (!dir) |
| 147 | return -EINVAL; |
| 148 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 149 | if (!S_ISDIR(dir->i_mode) || !inode) |
| 150 | return -EINVAL; |
| 151 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 152 | dip = GFS2_I(dir); |
| 153 | ip = GFS2_I(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 154 | |
| 155 | *name = 0; |
| 156 | gnfd.inum = ip->i_num; |
| 157 | gnfd.name = name; |
| 158 | |
| 159 | error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &gh); |
| 160 | if (error) |
| 161 | return error; |
| 162 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 163 | error = gfs2_dir_read(dir, &offset, &gnfd, get_name_filldir); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 164 | |
| 165 | gfs2_glock_dq_uninit(&gh); |
| 166 | |
| 167 | if (!error && !*name) |
| 168 | error = -ENOENT; |
| 169 | |
| 170 | return error; |
| 171 | } |
| 172 | |
| 173 | static struct dentry *gfs2_get_parent(struct dentry *child) |
| 174 | { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 175 | struct qstr dotdot; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 176 | struct inode *inode; |
| 177 | struct dentry *dentry; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 178 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 179 | gfs2_str2qstr(&dotdot, ".."); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 180 | inode = gfs2_lookupi(child->d_inode, &dotdot, 1, NULL); |
| 181 | |
| 182 | if (!inode) |
| 183 | return ERR_PTR(-ENOENT); |
| 184 | if (IS_ERR(inode)) |
| 185 | return ERR_PTR(PTR_ERR(inode)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 186 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 187 | dentry = d_alloc_anon(inode); |
| 188 | if (!dentry) { |
| 189 | iput(inode); |
| 190 | return ERR_PTR(-ENOMEM); |
| 191 | } |
| 192 | |
| 193 | return dentry; |
| 194 | } |
| 195 | |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 196 | static struct dentry *gfs2_get_dentry(struct super_block *sb, void *inum_obj) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 197 | { |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 198 | struct gfs2_sbd *sdp = sb->s_fs_info; |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 199 | struct gfs2_fh_obj *fh_obj = (struct gfs2_fh_obj *)inum_obj; |
| 200 | struct gfs2_inum *inum = &fh_obj->this; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 201 | struct gfs2_holder i_gh, ri_gh, rgd_gh; |
| 202 | struct gfs2_rgrpd *rgd; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 203 | struct inode *inode; |
| 204 | struct dentry *dentry; |
| 205 | int error; |
| 206 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 207 | /* System files? */ |
| 208 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 209 | inode = gfs2_ilookup(sb, inum); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 210 | if (inode) { |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 211 | if (GFS2_I(inode)->i_num.no_formal_ino != inum->no_formal_ino) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 212 | iput(inode); |
| 213 | return ERR_PTR(-ESTALE); |
| 214 | } |
| 215 | goto out_inode; |
| 216 | } |
| 217 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 218 | error = gfs2_glock_nq_num(sdp, inum->no_addr, &gfs2_inode_glops, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 219 | LM_ST_SHARED, LM_FLAG_ANY | GL_LOCAL_EXCL, |
| 220 | &i_gh); |
| 221 | if (error) |
| 222 | return ERR_PTR(error); |
| 223 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 224 | error = gfs2_rindex_hold(sdp, &ri_gh); |
| 225 | if (error) |
| 226 | goto fail; |
| 227 | |
| 228 | error = -EINVAL; |
| 229 | rgd = gfs2_blk2rgrpd(sdp, inum->no_addr); |
| 230 | if (!rgd) |
| 231 | goto fail_rindex; |
| 232 | |
| 233 | error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_SHARED, 0, &rgd_gh); |
| 234 | if (error) |
| 235 | goto fail_rindex; |
| 236 | |
| 237 | error = -ESTALE; |
| 238 | if (gfs2_get_block_type(rgd, inum->no_addr) != GFS2_BLKST_DINODE) |
| 239 | goto fail_rgd; |
| 240 | |
| 241 | gfs2_glock_dq_uninit(&rgd_gh); |
| 242 | gfs2_glock_dq_uninit(&ri_gh); |
| 243 | |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 244 | inode = gfs2_inode_lookup(sb, inum, fh_obj->imode); |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 245 | if (!inode) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 246 | goto fail; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 247 | if (IS_ERR(inode)) { |
| 248 | error = PTR_ERR(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 249 | goto fail; |
| 250 | } |
| 251 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 252 | error = gfs2_inode_refresh(GFS2_I(inode)); |
| 253 | if (error) { |
| 254 | iput(inode); |
| 255 | goto fail; |
| 256 | } |
| 257 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 258 | error = -EIO; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 259 | if (GFS2_I(inode)->i_di.di_flags & GFS2_DIF_SYSTEM) { |
| 260 | iput(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 261 | goto fail; |
| 262 | } |
| 263 | |
| 264 | gfs2_glock_dq_uninit(&i_gh); |
| 265 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 266 | out_inode: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 267 | dentry = d_alloc_anon(inode); |
| 268 | if (!dentry) { |
| 269 | iput(inode); |
| 270 | return ERR_PTR(-ENOMEM); |
| 271 | } |
| 272 | |
| 273 | return dentry; |
| 274 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 275 | fail_rgd: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 276 | gfs2_glock_dq_uninit(&rgd_gh); |
| 277 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 278 | fail_rindex: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 279 | gfs2_glock_dq_uninit(&ri_gh); |
| 280 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 281 | fail: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 282 | gfs2_glock_dq_uninit(&i_gh); |
| 283 | return ERR_PTR(error); |
| 284 | } |
| 285 | |
| 286 | struct export_operations gfs2_export_ops = { |
| 287 | .decode_fh = gfs2_decode_fh, |
| 288 | .encode_fh = gfs2_encode_fh, |
| 289 | .get_name = gfs2_get_name, |
| 290 | .get_parent = gfs2_get_parent, |
| 291 | .get_dentry = gfs2_get_dentry, |
| 292 | }; |
| 293 | |