Whamcloud - gitweb
Branch b1_6
[fs/lustre-release.git] / ldiskfs / kernel_patches / patches / iopen-2.6-fc5.patch
1 Index: linux-2.6.16.54-0.2.5/fs/ext3/iopen.c
2 ===================================================================
3 --- /dev/null
4 +++ linux-2.6.16.54-0.2.5/fs/ext3/iopen.c
5 @@ -0,0 +1,295 @@
6 +/*
7 + * linux/fs/ext3/iopen.c
8 + *
9 + * Special support for open by inode number
10 + *
11 + * Copyright (C) 2001 by Theodore Ts'o (tytso@alum.mit.edu).
12 + *
13 + * This file may be redistributed under the terms of the GNU General
14 + * Public License.
15 + *
16 + *
17 + * Invariants:
18 + *   - there is only ever a single DCACHE_NFSD_DISCONNECTED dentry alias
19 + *     for an inode at one time.
20 + *   - there are never both connected and DCACHE_NFSD_DISCONNECTED dentry
21 + *     aliases on an inode at the same time.
22 + *
23 + * If we have any connected dentry aliases for an inode, use one of those
24 + * in iopen_lookup().  Otherwise, we instantiate a single NFSD_DISCONNECTED
25 + * dentry for this inode, which thereafter will be found by the dcache
26 + * when looking up this inode number in __iopen__, so we don't return here
27 + * until it is gone.
28 + *
29 + * If we get an inode via a regular name lookup, then we "rename" the
30 + * NFSD_DISCONNECTED dentry to the proper name and parent.  This ensures
31 + * existing users of the disconnected dentry will continue to use the same
32 + * dentry as the connected users, and there will never be both kinds of
33 + * dentry aliases at one time.
34 + */
35 +
36 +#include <linux/sched.h>
37 +#include <linux/fs.h>
38 +#include <linux/ext3_jbd.h>
39 +#include <linux/jbd.h>
40 +#include <linux/ext3_fs.h>
41 +#include <linux/smp_lock.h>
42 +#include <linux/dcache.h>
43 +#include <linux/security.h>
44 +#include "iopen.h"
45 +
46 +#ifndef assert
47 +#define assert(test) J_ASSERT(test)
48 +#endif
49 +
50 +#define IOPEN_NAME_LEN 32
51 +
52 +/*
53 + * This implements looking up an inode by number.
54 + */
55 +static struct dentry *iopen_lookup(struct inode * dir, struct dentry *dentry,
56 +                                  struct nameidata *nd)
57 +{
58 +       struct inode *inode;
59 +       unsigned long ino;
60 +       struct list_head *lp;
61 +       struct dentry *alternate;
62 +       char buf[IOPEN_NAME_LEN];
63 +
64 +       if (dentry->d_name.len >= IOPEN_NAME_LEN)
65 +               return ERR_PTR(-ENAMETOOLONG);
66 +
67 +       memcpy(buf, dentry->d_name.name, dentry->d_name.len);
68 +       buf[dentry->d_name.len] = 0;
69 +
70 +       if (strcmp(buf, ".") == 0)
71 +               ino = dir->i_ino;
72 +       else if (strcmp(buf, "..") == 0)
73 +               ino = EXT3_ROOT_INO;
74 +       else
75 +               ino = simple_strtoul(buf, 0, 0);
76 +
77 +       if ((ino != EXT3_ROOT_INO &&
78 +            //ino != EXT3_ACL_IDX_INO &&
79 +            //ino != EXT3_ACL_DATA_INO &&
80 +            ino < EXT3_FIRST_INO(dir->i_sb)) ||
81 +           ino > le32_to_cpu(EXT3_SB(dir->i_sb)->s_es->s_inodes_count))
82 +               return ERR_PTR(-ENOENT);
83 +
84 +       inode = iget(dir->i_sb, ino);
85 +       if (!inode)
86 +               return ERR_PTR(-EACCES);
87 +       if (is_bad_inode(inode)) {
88 +               iput(inode);
89 +               return ERR_PTR(-ENOENT);
90 +       }
91 +
92 +       assert(list_empty(&dentry->d_alias));           /* d_instantiate */
93 +       assert(d_unhashed(dentry));                     /* d_rehash */
94 +
95 +       /* preferrably return a connected dentry */
96 +       spin_lock(&dcache_lock);
97 +       list_for_each(lp, &inode->i_dentry) {
98 +               alternate = list_entry(lp, struct dentry, d_alias);
99 +               assert(!(alternate->d_flags & DCACHE_DISCONNECTED));
100 +       }
101 +
102 +       if (!list_empty(&inode->i_dentry)) {
103 +               alternate = list_entry(inode->i_dentry.next,
104 +                                      struct dentry, d_alias);
105 +               dget_locked(alternate);
106 +               spin_lock(&alternate->d_lock);
107 +               alternate->d_flags |= DCACHE_REFERENCED;
108 +               spin_unlock(&alternate->d_lock);
109 +               iput(inode);
110 +               spin_unlock(&dcache_lock);
111 +               return alternate;
112 +       }
113 +       dentry->d_flags |= DCACHE_DISCONNECTED;
114 +
115 +       /* d_add(), but don't drop dcache_lock before adding dentry to inode */
116 +       list_add(&dentry->d_alias, &inode->i_dentry);   /* d_instantiate */
117 +       dentry->d_inode = inode;
118 +
119 +       d_rehash_cond(dentry, 0);       /* d_rehash */
120 +       spin_unlock(&dcache_lock);
121 +
122 +       return NULL;
123 +}
124 +
125 +/* This function is spliced into ext3_lookup and does the move of a
126 + * disconnected dentry (if it exists) to a connected dentry.
127 + */
128 +struct dentry *iopen_connect_dentry(struct dentry *dentry, struct inode *inode,
129 +                                   int rehash)
130 +{
131 +       struct dentry *tmp, *goal = NULL;
132 +       struct list_head *lp;
133 +
134 +       /* verify this dentry is really new */
135 +       assert(dentry->d_inode == NULL);
136 +       assert(list_empty(&dentry->d_alias));           /* d_instantiate */
137 +       if (rehash)
138 +               assert(d_unhashed(dentry));             /* d_rehash */
139 +       assert(list_empty(&dentry->d_subdirs));
140 +
141 +       spin_lock(&dcache_lock);
142 +       if (!inode)
143 +               goto do_rehash;
144 +
145 +       if (!test_opt(inode->i_sb, IOPEN))
146 +               goto do_instantiate;
147 +
148 +       /* preferrably return a connected dentry */
149 +       list_for_each(lp, &inode->i_dentry) {
150 +               tmp = list_entry(lp, struct dentry, d_alias);
151 +               if (tmp->d_flags & DCACHE_DISCONNECTED) {
152 +                       assert(tmp->d_alias.next == &inode->i_dentry);
153 +                       assert(tmp->d_alias.prev == &inode->i_dentry);
154 +                       goal = tmp;
155 +                       dget_locked(goal);
156 +                       break;
157 +               }
158 +       }
159 +
160 +       if (!goal)
161 +               goto do_instantiate;
162 +
163 +       /* Move the goal to the de hash queue */
164 +       goal->d_flags &= ~DCACHE_DISCONNECTED;
165 +       security_d_instantiate(goal, inode);
166 +       __d_drop(dentry);
167 +       d_rehash_cond(dentry, 0);
168 +       d_move_locked(goal, dentry);
169 +       spin_unlock(&dcache_lock);
170 +       iput(inode);
171 +
172 +       return goal;
173 +
174 +       /* d_add(), but don't drop dcache_lock before adding dentry to inode */
175 +do_instantiate:
176 +       list_add(&dentry->d_alias, &inode->i_dentry);   /* d_instantiate */
177 +       dentry->d_inode = inode;
178 +do_rehash:
179 +       if (rehash)
180 +               d_rehash_cond(dentry, 0);       /* d_rehash */
181 +       spin_unlock(&dcache_lock);
182 +
183 +       return NULL;
184 +}
185 +
186 +/*
187 + * Similar as d_instantiate() except that it drops the disconnected
188 + * dentry if any.
189 + */
190 +void iopen_d_instantiate(struct dentry *dentry, struct inode * inode)
191 +{
192 +       struct dentry *dis_dentry;
193 +
194 +       /* verify this dentry is really new */
195 +       assert(dentry->d_inode == NULL);
196 +       assert(list_empty(&dentry->d_alias));
197 +
198 +       spin_lock(&dcache_lock);
199 +       if (!inode || !test_opt(inode->i_sb, IOPEN) ||
200 +           list_empty(&inode->i_dentry))
201 +               goto do_instantiate;
202 +
203 +       /* a disconnected dentry has been added in our back,
204 +        * we have to drop this dentry, see bug 16362/15713*/
205 +       dis_dentry = list_entry(inode->i_dentry.next, struct dentry, d_alias);
206 +       spin_lock(&dis_dentry->d_lock);
207 +       assert(dis_dentry->d_alias.next == &inode->i_dentry);
208 +       assert(dis_dentry->d_alias.prev == &inode->i_dentry);
209 +       assert(dis_dentry->d_flags & DCACHE_DISCONNECTED);
210 +       __d_drop(dis_dentry);
211 +       list_del_init(&dis_dentry->d_alias);
212 +       spin_unlock(&dis_dentry->d_lock);
213 +
214 +do_instantiate:
215 +       if (inode)
216 +               list_add(&dentry->d_alias, &inode->i_dentry);
217 +       dentry->d_inode = inode;
218 +       spin_unlock(&dcache_lock);
219 +       security_d_instantiate(dentry, inode);
220 +}
221 +
222 +/*
223 + * These are the special structures for the iopen pseudo directory.
224 + */
225 +
226 +static struct inode_operations iopen_inode_operations = {
227 +       lookup:         iopen_lookup,           /* BKL held */
228 +};
229 +
230 +static struct file_operations iopen_file_operations = {
231 +       read:           generic_read_dir,
232 +};
233 +
234 +static int match_dentry(struct dentry *dentry, const char *name)
235 +{
236 +       int     len;
237 +
238 +       len = strlen(name);
239 +       if (dentry->d_name.len != len)
240 +               return 0;
241 +       if (strncmp(dentry->d_name.name, name, len))
242 +               return 0;
243 +       return 1;
244 +}
245 +
246 +/*
247 + * This function is spliced into ext3_lookup and returns 1 the file
248 + * name is __iopen__ and dentry has been filled in appropriately.
249 + */
250 +int ext3_check_for_iopen(struct inode *dir, struct dentry *dentry)
251 +{
252 +       struct inode *inode;
253 +
254 +       if (dir->i_ino != EXT3_ROOT_INO ||
255 +           !test_opt(dir->i_sb, IOPEN) ||
256 +           !match_dentry(dentry, "__iopen__"))
257 +               return 0;
258 +
259 +       inode = iget(dir->i_sb, EXT3_BAD_INO);
260 +
261 +       if (!inode)
262 +               return 0;
263 +       d_add(dentry, inode);
264 +       return 1;
265 +}
266 +
267 +/*
268 + * This function is spliced into read_inode; it returns 1 if inode
269 + * number is the one for /__iopen__, in which case the inode is filled
270 + * in appropriately.  Otherwise, this fuction returns 0.
271 + */
272 +int ext3_iopen_get_inode(struct inode *inode)
273 +{
274 +       if (inode->i_ino != EXT3_BAD_INO)
275 +               return 0;
276 +
277 +       inode->i_mode = S_IFDIR | S_IRUSR | S_IXUSR;
278 +       if (test_opt(inode->i_sb, IOPEN_NOPRIV))
279 +               inode->i_mode |= 0777;
280 +       inode->i_uid = 0;
281 +       inode->i_gid = 0;
282 +       inode->i_nlink = 1;
283 +       inode->i_size = 4096;
284 +       inode->i_atime = CURRENT_TIME;
285 +       inode->i_ctime = CURRENT_TIME;
286 +       inode->i_mtime = CURRENT_TIME;
287 +       EXT3_I(inode)->i_dtime = 0;
288 +       inode->i_blksize = PAGE_SIZE;   /* This is the optimal IO size
289 +                                        * (for stat), not the fs block
290 +                                        * size */
291 +       inode->i_blocks = 0;
292 +       inode->i_version = 1;
293 +       inode->i_generation = 0;
294 +
295 +       inode->i_op = &iopen_inode_operations;
296 +       inode->i_fop = &iopen_file_operations;
297 +       inode->i_mapping->a_ops = 0;
298 +
299 +       return 1;
300 +}
301 Index: linux-2.6.16.54-0.2.5/fs/ext3/iopen.h
302 ===================================================================
303 --- /dev/null
304 +++ linux-2.6.16.54-0.2.5/fs/ext3/iopen.h
305 @@ -0,0 +1,20 @@
306 +/*
307 + * iopen.h
308 + *
309 + * Special support for opening files by inode number.
310 + *
311 + * Copyright (C) 2001 by Theodore Ts'o (tytso@alum.mit.edu).
312 + *
313 + * This file may be redistributed under the terms of the GNU General
314 + * Public License.
315 + */
316 +
317 +extern int ext3_check_for_iopen(struct inode *dir, struct dentry *dentry);
318 +extern int ext3_iopen_get_inode(struct inode *inode);
319 +extern struct dentry *iopen_connect_dentry(struct dentry *dentry,
320 +                                          struct inode *inode, int rehash);
321 +extern void iopen_d_instantiate(struct dentry *dentry, struct inode * inode);
322 +
323 +#if !defined(HAVE_D_MOVE_LOCKED) && defined(HAVE___D_MOVE)
324 +#define d_move_locked(dentry, target) __d_move(dentry, target)
325 +#endif
326 Index: linux-2.6.16.54-0.2.5/fs/ext3/inode.c
327 ===================================================================
328 --- linux-2.6.16.54-0.2.5.orig/fs/ext3/inode.c
329 +++ linux-2.6.16.54-0.2.5/fs/ext3/inode.c
330 @@ -37,6 +37,7 @@
331  #include <linux/mpage.h>
332  #include <linux/uio.h>
333  #include "xattr.h"
334 +#include "iopen.h"
335  #include "acl.h"
336  
337  static int ext3_writepage_trans_blocks(struct inode *inode);
338 @@ -2448,6 +2449,8 @@ void ext3_read_inode(struct inode * inod
339         ei->i_default_acl = EXT3_ACL_NOT_CACHED;
340  #endif
341         ei->i_block_alloc_info = NULL;
342 +       if (ext3_iopen_get_inode(inode))
343 +               return;
344  
345         if (__ext3_get_inode_loc(inode, &iloc, 0))
346                 goto bad_inode;
347 Index: linux-2.6.16.54-0.2.5/fs/ext3/super.c
348 ===================================================================
349 --- linux-2.6.16.54-0.2.5.orig/fs/ext3/super.c
350 +++ linux-2.6.16.54-0.2.5/fs/ext3/super.c
351 @@ -675,6 +675,7 @@ enum {
352         Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
353         Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
354         Opt_ignore, Opt_barrier, Opt_err, Opt_resize, Opt_usrquota,
355 +       Opt_iopen, Opt_noiopen, Opt_iopen_nopriv,
356         Opt_grpquota
357  };
358  
359 @@ -723,6 +724,9 @@ static match_table_t tokens = {
360         {Opt_noquota, "noquota"},
361         {Opt_quota, "quota"},
362         {Opt_usrquota, "usrquota"},
363 +       {Opt_iopen, "iopen"},
364 +       {Opt_noiopen, "noiopen"},
365 +       {Opt_iopen_nopriv, "iopen_nopriv"},
366         {Opt_barrier, "barrier=%u"},
367         {Opt_err, NULL},
368         {Opt_resize, "resize"},
369 @@ -1037,6 +1041,18 @@ clear_qf_name:
370                         else
371                                 clear_opt(sbi->s_mount_opt, BARRIER);
372                         break;
373 +               case Opt_iopen:
374 +                       set_opt (sbi->s_mount_opt, IOPEN);
375 +                       clear_opt (sbi->s_mount_opt, IOPEN_NOPRIV);
376 +                       break;
377 +               case Opt_noiopen:
378 +                       clear_opt (sbi->s_mount_opt, IOPEN);
379 +                       clear_opt (sbi->s_mount_opt, IOPEN_NOPRIV);
380 +                       break;
381 +               case Opt_iopen_nopriv:
382 +                       set_opt (sbi->s_mount_opt, IOPEN);
383 +                       set_opt (sbi->s_mount_opt, IOPEN_NOPRIV);
384 +                       break;
385                 case Opt_ignore:
386                         break;
387                 case Opt_resize:
388 Index: linux-2.6.16.54-0.2.5/fs/ext3/namei.c
389 ===================================================================
390 --- linux-2.6.16.54-0.2.5.orig/fs/ext3/namei.c
391 +++ linux-2.6.16.54-0.2.5/fs/ext3/namei.c
392 @@ -39,6 +39,7 @@
393  
394  #include "namei.h"
395  #include "xattr.h"
396 +#include "iopen.h"
397  #include "acl.h"
398  
399  /*
400 @@ -1013,6 +1014,9 @@ static struct dentry *ext3_lookup(struct
401         if (dentry->d_name.len > EXT3_NAME_LEN)
402                 return ERR_PTR(-ENAMETOOLONG);
403  
404 +       if (ext3_check_for_iopen(dir, dentry))
405 +               return NULL;
406 +
407         bh = ext3_find_entry(dentry, &de);
408         inode = NULL;
409         if (bh) {
410 @@ -1028,7 +1032,8 @@ static struct dentry *ext3_lookup(struct
411                 if (!inode)
412                         return ERR_PTR(-EACCES);
413         }
414 -       return d_splice_alias(inode, dentry);
415 +
416 +       return iopen_connect_dentry(dentry, inode, 1);
417  }
418  
419  
420 @@ -1649,7 +1654,7 @@ static int ext3_add_nondir(handle_t *han
421         int err = ext3_add_entry(handle, dentry, inode);
422         if (!err) {
423                 ext3_mark_inode_dirty(handle, inode);
424 -               d_instantiate(dentry, inode);
425 +               iopen_d_instantiate(dentry, inode);
426                 return 0;
427         }
428         ext3_dec_count(handle, inode);
429 @@ -1811,7 +1816,7 @@ retry:
430         dir->i_nlink++;
431         ext3_update_dx_flag(dir);
432         ext3_mark_inode_dirty(handle, dir);
433 -       d_instantiate(dentry, inode);
434 +       iopen_d_instantiate(dentry, inode);
435  out_stop:
436         ext3_journal_stop(handle);
437         if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
438 @@ -2079,10 +2084,6 @@ static int ext3_rmdir (struct inode * di
439                               inode->i_nlink);
440         inode->i_version++;
441         inode->i_nlink = 0;
442 -       /* There's no need to set i_disksize: the fact that i_nlink is
443 -        * zero will ensure that the right thing happens during any
444 -        * recovery. */
445 -       inode->i_size = 0;
446         ext3_orphan_add(handle, inode);
447         inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
448         ext3_mark_inode_dirty(handle, inode);
449 @@ -2206,6 +2207,23 @@ out_stop:
450         return err;
451  }
452  
453 +/* Like ext3_add_nondir() except for call to iopen_connect_dentry */
454 +static int ext3_add_link(handle_t *handle, struct dentry *dentry,
455 +                        struct inode *inode)
456 +{
457 +       int err = ext3_add_entry(handle, dentry, inode);
458 +       if (!err) {
459 +               err = ext3_mark_inode_dirty(handle, inode);
460 +               if (err == 0) {
461 +                       dput(iopen_connect_dentry(dentry, inode, 0));
462 +                       return 0;
463 +               }
464 +       }
465 +       ext3_dec_count(handle, inode);
466 +       iput(inode);
467 +       return err;
468 +}
469 +
470  static int ext3_link (struct dentry * old_dentry,
471                 struct inode * dir, struct dentry *dentry)
472  {
473 @@ -2229,7 +2247,8 @@ retry:
474         ext3_inc_count(handle, inode);
475         atomic_inc(&inode->i_count);
476  
477 -       err = ext3_add_nondir(handle, dentry, inode);
478 +       err = ext3_add_link(handle, dentry, inode);
479 +       ext3_orphan_del(handle, inode);
480         ext3_journal_stop(handle);
481         if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
482                 goto retry;
483 Index: linux-2.6.16.54-0.2.5/fs/ext3/Makefile
484 ===================================================================
485 --- linux-2.6.16.54-0.2.5.orig/fs/ext3/Makefile
486 +++ linux-2.6.16.54-0.2.5/fs/ext3/Makefile
487 @@ -4,7 +4,7 @@
488  
489  obj-$(CONFIG_EXT3_FS) += ext3.o
490  
491 -ext3-y := balloc.o bitmap.o dir.o file.o fsync.o ialloc.o inode.o \
492 +ext3-y := balloc.o bitmap.o dir.o file.o fsync.o ialloc.o inode.o iopen.o \
493            ioctl.o namei.o super.o symlink.o hash.o resize.o
494  
495  ext3-$(CONFIG_EXT3_FS_XATTR)    += xattr.o xattr_user.o xattr_trusted.o
496 Index: linux-2.6.16.54-0.2.5/include/linux/ext3_fs.h
497 ===================================================================
498 --- linux-2.6.16.54-0.2.5.orig/include/linux/ext3_fs.h
499 +++ linux-2.6.16.54-0.2.5/include/linux/ext3_fs.h
500 @@ -375,6 +375,8 @@ struct ext3_inode {
501  #define EXT3_MOUNT_QUOTA               0x80000 /* Some quota option set */
502  #define EXT3_MOUNT_USRQUOTA            0x100000 /* "old" user quota */
503  #define EXT3_MOUNT_GRPQUOTA            0x200000 /* "old" group quota */
504 +#define EXT3_MOUNT_IOPEN               0x400000        /* Allow access via iopen */
505 +#define EXT3_MOUNT_IOPEN_NOPRIV                0x800000/* Make iopen world-readable */
506  
507  /* Compatibility, for having both ext2_fs.h and ext3_fs.h included at once */
508  #ifndef _LINUX_EXT2_FS_H