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 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 10 | #include <linux/slab.h> |
| 11 | #include <linux/spinlock.h> |
| 12 | #include <linux/completion.h> |
| 13 | #include <linux/buffer_head.h> |
Christoph Hellwig | a569425 | 2007-07-17 04:04:28 -0700 | [diff] [blame] | 14 | #include <linux/exportfs.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> |
Fabio Massimo Di Nitto | 7d30859 | 2006-09-19 07:56:29 +0200 | [diff] [blame] | 17 | #include <linux/lm_interface.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 18 | |
| 19 | #include "gfs2.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 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" |
Steven Whitehouse | b276058 | 2008-10-14 16:05:55 +0100 | [diff] [blame^] | 25 | #include "super.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 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 | |
Steven Whitehouse | bb8d8a6 | 2007-06-01 14:11:58 +0100 | [diff] [blame] | 29 | #define GFS2_SMALL_FH_SIZE 4 |
Wendy Cheng | 35dcc52 | 2007-06-27 17:07:53 -0400 | [diff] [blame] | 30 | #define GFS2_LARGE_FH_SIZE 8 |
Steven Whitehouse | 3ebf449 | 2007-07-10 12:28:27 +0100 | [diff] [blame] | 31 | #define GFS2_OLD_FH_SIZE 10 |
Steven Whitehouse | bb8d8a6 | 2007-06-01 14:11:58 +0100 | [diff] [blame] | 32 | |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 33 | static int gfs2_encode_fh(struct dentry *dentry, __u32 *p, int *len, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 34 | int connectable) |
| 35 | { |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 36 | __be32 *fh = (__force __be32 *)p; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 37 | struct inode *inode = dentry->d_inode; |
Steven Whitehouse | c9fd430 | 2006-03-01 15:31:02 -0500 | [diff] [blame] | 38 | struct super_block *sb = inode->i_sb; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 39 | struct gfs2_inode *ip = GFS2_I(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 40 | |
Steven Whitehouse | 5acd396 | 2006-09-04 16:16:45 -0400 | [diff] [blame] | 41 | if (*len < GFS2_SMALL_FH_SIZE || |
| 42 | (connectable && *len < GFS2_LARGE_FH_SIZE)) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 43 | return 255; |
| 44 | |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 45 | fh[0] = cpu_to_be32(ip->i_no_formal_ino >> 32); |
| 46 | fh[1] = cpu_to_be32(ip->i_no_formal_ino & 0xFFFFFFFF); |
| 47 | fh[2] = cpu_to_be32(ip->i_no_addr >> 32); |
| 48 | fh[3] = cpu_to_be32(ip->i_no_addr & 0xFFFFFFFF); |
Steven Whitehouse | 5acd396 | 2006-09-04 16:16:45 -0400 | [diff] [blame] | 49 | *len = GFS2_SMALL_FH_SIZE; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 50 | |
Steven Whitehouse | c9fd430 | 2006-03-01 15:31:02 -0500 | [diff] [blame] | 51 | if (!connectable || inode == sb->s_root->d_inode) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 52 | return *len; |
| 53 | |
| 54 | spin_lock(&dentry->d_lock); |
| 55 | inode = dentry->d_parent->d_inode; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 56 | ip = GFS2_I(inode); |
| 57 | igrab(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 58 | spin_unlock(&dentry->d_lock); |
| 59 | |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 60 | fh[4] = cpu_to_be32(ip->i_no_formal_ino >> 32); |
| 61 | fh[5] = cpu_to_be32(ip->i_no_formal_ino & 0xFFFFFFFF); |
| 62 | fh[6] = cpu_to_be32(ip->i_no_addr >> 32); |
| 63 | fh[7] = cpu_to_be32(ip->i_no_addr & 0xFFFFFFFF); |
Steven Whitehouse | 5acd396 | 2006-09-04 16:16:45 -0400 | [diff] [blame] | 64 | *len = GFS2_LARGE_FH_SIZE; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 65 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 66 | iput(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 67 | |
| 68 | return *len; |
| 69 | } |
| 70 | |
| 71 | struct get_name_filldir { |
Al Viro | 629a21e | 2006-10-13 22:51:24 -0400 | [diff] [blame] | 72 | struct gfs2_inum_host inum; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 73 | char *name; |
| 74 | }; |
| 75 | |
Steven Whitehouse | 3699e3a | 2007-01-17 15:09:20 +0000 | [diff] [blame] | 76 | static int get_name_filldir(void *opaque, const char *name, int length, |
| 77 | loff_t offset, u64 inum, unsigned int type) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 78 | { |
Steven Whitehouse | 3699e3a | 2007-01-17 15:09:20 +0000 | [diff] [blame] | 79 | struct get_name_filldir *gnfd = opaque; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 80 | |
Steven Whitehouse | 3699e3a | 2007-01-17 15:09:20 +0000 | [diff] [blame] | 81 | if (inum != gnfd->inum.no_addr) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 82 | return 0; |
| 83 | |
| 84 | memcpy(gnfd->name, name, length); |
| 85 | gnfd->name[length] = 0; |
| 86 | |
| 87 | return 1; |
| 88 | } |
| 89 | |
| 90 | static int gfs2_get_name(struct dentry *parent, char *name, |
| 91 | struct dentry *child) |
| 92 | { |
| 93 | struct inode *dir = parent->d_inode; |
| 94 | struct inode *inode = child->d_inode; |
| 95 | struct gfs2_inode *dip, *ip; |
| 96 | struct get_name_filldir gnfd; |
| 97 | struct gfs2_holder gh; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 98 | u64 offset = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 99 | int error; |
| 100 | |
| 101 | if (!dir) |
| 102 | return -EINVAL; |
| 103 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 104 | if (!S_ISDIR(dir->i_mode) || !inode) |
| 105 | return -EINVAL; |
| 106 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 107 | dip = GFS2_I(dir); |
| 108 | ip = GFS2_I(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 109 | |
| 110 | *name = 0; |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 111 | gnfd.inum.no_addr = ip->i_no_addr; |
| 112 | gnfd.inum.no_formal_ino = ip->i_no_formal_ino; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 113 | gnfd.name = name; |
| 114 | |
| 115 | error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &gh); |
| 116 | if (error) |
| 117 | return error; |
| 118 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 119 | error = gfs2_dir_read(dir, &offset, &gnfd, get_name_filldir); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 120 | |
| 121 | gfs2_glock_dq_uninit(&gh); |
| 122 | |
| 123 | if (!error && !*name) |
| 124 | error = -ENOENT; |
| 125 | |
| 126 | return error; |
| 127 | } |
| 128 | |
| 129 | static struct dentry *gfs2_get_parent(struct dentry *child) |
| 130 | { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 131 | struct qstr dotdot; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 132 | struct dentry *dentry; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 133 | |
Steven Whitehouse | 7b62536 | 2006-09-05 15:56:17 -0400 | [diff] [blame] | 134 | /* |
Christoph Hellwig | 4400372 | 2008-08-11 15:49:04 +0200 | [diff] [blame] | 135 | * XXX(hch): it would be a good idea to keep this around as a |
| 136 | * static variable. |
Steven Whitehouse | 7b62536 | 2006-09-05 15:56:17 -0400 | [diff] [blame] | 137 | */ |
Christoph Hellwig | 4400372 | 2008-08-11 15:49:04 +0200 | [diff] [blame] | 138 | gfs2_str2qstr(&dotdot, ".."); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 139 | |
Christoph Hellwig | 4400372 | 2008-08-11 15:49:04 +0200 | [diff] [blame] | 140 | dentry = d_obtain_alias(gfs2_lookupi(child->d_inode, &dotdot, 1)); |
| 141 | if (!IS_ERR(dentry)) |
| 142 | dentry->d_op = &gfs2_dops; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 143 | return dentry; |
| 144 | } |
| 145 | |
Christoph Hellwig | 34c0d15 | 2007-10-21 16:42:14 -0700 | [diff] [blame] | 146 | static struct dentry *gfs2_get_dentry(struct super_block *sb, |
| 147 | struct gfs2_inum_host *inum) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 148 | { |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 149 | struct gfs2_sbd *sdp = sb->s_fs_info; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 150 | struct gfs2_holder i_gh, ri_gh, rgd_gh; |
| 151 | struct gfs2_rgrpd *rgd; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 152 | struct inode *inode; |
| 153 | struct dentry *dentry; |
| 154 | int error; |
| 155 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 156 | /* System files? */ |
| 157 | |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 158 | inode = gfs2_ilookup(sb, inum->no_addr); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 159 | if (inode) { |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 160 | if (GFS2_I(inode)->i_no_formal_ino != inum->no_formal_ino) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 161 | iput(inode); |
| 162 | return ERR_PTR(-ESTALE); |
| 163 | } |
| 164 | goto out_inode; |
| 165 | } |
| 166 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 167 | error = gfs2_glock_nq_num(sdp, inum->no_addr, &gfs2_inode_glops, |
Steven Whitehouse | 1c0f487 | 2007-01-22 12:10:39 -0500 | [diff] [blame] | 168 | LM_ST_SHARED, LM_FLAG_ANY, &i_gh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 169 | if (error) |
| 170 | return ERR_PTR(error); |
| 171 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 172 | error = gfs2_rindex_hold(sdp, &ri_gh); |
| 173 | if (error) |
| 174 | goto fail; |
| 175 | |
| 176 | error = -EINVAL; |
| 177 | rgd = gfs2_blk2rgrpd(sdp, inum->no_addr); |
| 178 | if (!rgd) |
| 179 | goto fail_rindex; |
| 180 | |
| 181 | error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_SHARED, 0, &rgd_gh); |
| 182 | if (error) |
| 183 | goto fail_rindex; |
| 184 | |
| 185 | error = -ESTALE; |
| 186 | if (gfs2_get_block_type(rgd, inum->no_addr) != GFS2_BLKST_DINODE) |
| 187 | goto fail_rgd; |
| 188 | |
| 189 | gfs2_glock_dq_uninit(&rgd_gh); |
| 190 | gfs2_glock_dq_uninit(&ri_gh); |
| 191 | |
Wendy Cheng | 35dcc52 | 2007-06-27 17:07:53 -0400 | [diff] [blame] | 192 | inode = gfs2_inode_lookup(sb, DT_UNKNOWN, |
Wendy Cheng | bb9bcf0 | 2007-06-27 17:07:08 -0400 | [diff] [blame] | 193 | inum->no_addr, |
Benjamin Marzinski | 7a9f53b | 2007-09-18 13:33:18 -0500 | [diff] [blame] | 194 | 0, 0); |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 195 | if (IS_ERR(inode)) { |
| 196 | error = PTR_ERR(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 197 | goto fail; |
| 198 | } |
| 199 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 200 | error = gfs2_inode_refresh(GFS2_I(inode)); |
| 201 | if (error) { |
| 202 | iput(inode); |
| 203 | goto fail; |
| 204 | } |
Wendy Cheng | 35dcc52 | 2007-06-27 17:07:53 -0400 | [diff] [blame] | 205 | |
| 206 | /* Pick up the works we bypass in gfs2_inode_lookup */ |
| 207 | if (inode->i_state & I_NEW) |
| 208 | gfs2_set_iop(inode); |
| 209 | |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 210 | if (GFS2_I(inode)->i_no_formal_ino != inum->no_formal_ino) { |
| 211 | iput(inode); |
| 212 | goto fail; |
| 213 | } |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 214 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 215 | error = -EIO; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 216 | if (GFS2_I(inode)->i_di.di_flags & GFS2_DIF_SYSTEM) { |
| 217 | iput(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 218 | goto fail; |
| 219 | } |
| 220 | |
| 221 | gfs2_glock_dq_uninit(&i_gh); |
| 222 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 223 | out_inode: |
Christoph Hellwig | 4400372 | 2008-08-11 15:49:04 +0200 | [diff] [blame] | 224 | dentry = d_obtain_alias(inode); |
| 225 | if (!IS_ERR(dentry)) |
| 226 | dentry->d_op = &gfs2_dops; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 227 | return dentry; |
| 228 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 229 | fail_rgd: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 230 | gfs2_glock_dq_uninit(&rgd_gh); |
| 231 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 232 | fail_rindex: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 233 | gfs2_glock_dq_uninit(&ri_gh); |
| 234 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 235 | fail: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 236 | gfs2_glock_dq_uninit(&i_gh); |
| 237 | return ERR_PTR(error); |
| 238 | } |
| 239 | |
Christoph Hellwig | 34c0d15 | 2007-10-21 16:42:14 -0700 | [diff] [blame] | 240 | static struct dentry *gfs2_fh_to_dentry(struct super_block *sb, struct fid *fid, |
| 241 | int fh_len, int fh_type) |
| 242 | { |
| 243 | struct gfs2_inum_host this; |
| 244 | __be32 *fh = (__force __be32 *)fid->raw; |
| 245 | |
| 246 | switch (fh_type) { |
| 247 | case GFS2_SMALL_FH_SIZE: |
| 248 | case GFS2_LARGE_FH_SIZE: |
| 249 | case GFS2_OLD_FH_SIZE: |
| 250 | this.no_formal_ino = ((u64)be32_to_cpu(fh[0])) << 32; |
| 251 | this.no_formal_ino |= be32_to_cpu(fh[1]); |
| 252 | this.no_addr = ((u64)be32_to_cpu(fh[2])) << 32; |
| 253 | this.no_addr |= be32_to_cpu(fh[3]); |
| 254 | return gfs2_get_dentry(sb, &this); |
| 255 | default: |
| 256 | return NULL; |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | static struct dentry *gfs2_fh_to_parent(struct super_block *sb, struct fid *fid, |
| 261 | int fh_len, int fh_type) |
| 262 | { |
| 263 | struct gfs2_inum_host parent; |
| 264 | __be32 *fh = (__force __be32 *)fid->raw; |
| 265 | |
| 266 | switch (fh_type) { |
| 267 | case GFS2_LARGE_FH_SIZE: |
| 268 | case GFS2_OLD_FH_SIZE: |
| 269 | parent.no_formal_ino = ((u64)be32_to_cpu(fh[4])) << 32; |
| 270 | parent.no_formal_ino |= be32_to_cpu(fh[5]); |
| 271 | parent.no_addr = ((u64)be32_to_cpu(fh[6])) << 32; |
| 272 | parent.no_addr |= be32_to_cpu(fh[7]); |
| 273 | return gfs2_get_dentry(sb, &parent); |
| 274 | default: |
| 275 | return NULL; |
| 276 | } |
| 277 | } |
| 278 | |
Christoph Hellwig | 3965516 | 2007-10-21 16:42:17 -0700 | [diff] [blame] | 279 | const struct export_operations gfs2_export_ops = { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 280 | .encode_fh = gfs2_encode_fh, |
Christoph Hellwig | 34c0d15 | 2007-10-21 16:42:14 -0700 | [diff] [blame] | 281 | .fh_to_dentry = gfs2_fh_to_dentry, |
| 282 | .fh_to_parent = gfs2_fh_to_parent, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 283 | .get_name = gfs2_get_name, |
| 284 | .get_parent = gfs2_get_parent, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 285 | }; |
| 286 | |