This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / fs / reiserfs / xattr.c
1 /*
2  * linux/fs/reiserfs/xattr.c
3  *
4  * Copyright (c) 2002 by Jeff Mahoney, <jeffm@suse.com>
5  *
6  */
7
8 /*
9  * In order to implement EA/ACLs in a clean, backwards compatible manner,
10  * they are implemented as files in a "private" directory.
11  * Each EA is in it's own file, with the directory layout like so (/ is assumed
12  * to be relative to fs root). Inside the /.reiserfs_priv/xattrs directory,
13  * directories named using the capital-hex form of the objectid and
14  * generation number are used. Inside each directory are individual files
15  * named with the name of the extended attribute.
16  *
17  * So, for objectid 12648430, we could have:
18  * /.reiserfs_priv/xattrs/C0FFEE.0/system.posix_acl_access
19  * /.reiserfs_priv/xattrs/C0FFEE.0/system.posix_acl_default
20  * /.reiserfs_priv/xattrs/C0FFEE.0/user.Content-Type
21  * .. or similar.
22  *
23  * The file contents are the text of the EA. The size is known based on the
24  * stat data describing the file.
25  *
26  * In the case of system.posix_acl_access and system.posix_acl_default, since
27  * these are special cases for filesystem ACLs, they are interpreted by the
28  * kernel, in addition, they are negatively and positively cached and attached
29  * to the inode so that unnecessary lookups are avoided.
30  */
31
32 #include <linux/reiserfs_fs.h>
33 #include <linux/dcache.h>
34 #include <linux/namei.h>
35 #include <linux/errno.h>
36 #include <linux/fs.h>
37 #include <linux/file.h>
38 #include <linux/pagemap.h>
39 #include <linux/xattr.h>
40 #include <linux/reiserfs_xattr.h>
41 #include <linux/reiserfs_acl.h>
42 #include <linux/mbcache.h>
43 #include <asm/uaccess.h>
44 #include <asm/checksum.h>
45 #include <linux/smp_lock.h>
46 #include <linux/stat.h>
47 #include <asm/semaphore.h>
48
49 #define FL_READONLY 128
50 #define FL_DIR_SEM_HELD 256
51 #define PRIVROOT_NAME ".reiserfs_priv"
52 #define XAROOT_NAME   "xattrs"
53
54 static struct reiserfs_xattr_handler *find_xattr_handler_prefix (const char *prefix);
55
56 static struct dentry *
57 create_xa_root (struct super_block *sb)
58 {
59     struct dentry *privroot = dget (REISERFS_SB(sb)->priv_root);
60     struct dentry *xaroot;
61
62     /* This needs to be created at mount-time */
63     if (!privroot)
64         return ERR_PTR(-EOPNOTSUPP);
65
66     xaroot = lookup_one_len (XAROOT_NAME, privroot, strlen (XAROOT_NAME));
67     if (IS_ERR (xaroot)) {
68         goto out;
69     } else if (!xaroot->d_inode) {
70         int err;
71         down (&privroot->d_inode->i_sem);
72         err = privroot->d_inode->i_op->mkdir (privroot->d_inode, xaroot, 0700);
73         up (&privroot->d_inode->i_sem);
74
75         if (err) {
76             dput (xaroot);
77             dput (privroot);
78             return ERR_PTR (err);
79         }
80         REISERFS_SB(sb)->xattr_root = dget (xaroot);
81     }
82
83 out:
84     dput (privroot);
85     return xaroot;
86 }
87
88 /* This will return a dentry, or error, refering to the xa root directory.
89  * If the xa root doesn't exist yet, the dentry will be returned without
90  * an associated inode. This dentry can be used with ->mkdir to create
91  * the xa directory. */
92 static struct dentry *
93 __get_xa_root (struct super_block *s)
94 {
95     struct dentry *privroot = dget (REISERFS_SB(s)->priv_root);
96     struct dentry *xaroot = NULL;
97
98     if (IS_ERR (privroot) || !privroot)
99         return privroot;
100
101     xaroot = lookup_one_len (XAROOT_NAME, privroot, strlen (XAROOT_NAME));
102     if (IS_ERR (xaroot)) {
103         goto out;
104     } else if (!xaroot->d_inode) {
105         dput (xaroot);
106         xaroot = NULL;
107         goto out;
108     }
109
110     REISERFS_SB(s)->xattr_root = dget (xaroot);
111
112 out:
113     dput (privroot);
114     return xaroot;
115 }
116
117 /* Returns the dentry (or NULL) referring to the root of the extended
118  * attribute directory tree. If it has already been retreived, it is used.
119  * Otherwise, we attempt to retreive it from disk. It may also return
120  * a pointer-encoded error.
121  */
122 static inline struct dentry *
123 get_xa_root (struct super_block *s)
124 {
125     struct dentry *dentry = dget (REISERFS_SB(s)->xattr_root);
126
127     if (!dentry)
128         dentry = __get_xa_root (s);
129
130     return dentry;
131 }
132
133 /* Opens the directory corresponding to the inode's extended attribute store.
134  * If flags allow, the tree to the directory may be created. If creation is
135  * prohibited, -ENODATA is returned. */
136 static struct dentry *
137 open_xa_dir (const struct inode *inode, int flags)
138 {
139     struct dentry *xaroot, *xadir;
140     char namebuf[17];
141
142     xaroot = get_xa_root (inode->i_sb);
143     if (IS_ERR (xaroot)) {
144         return xaroot;
145     } else if (!xaroot) {
146         if (flags == 0 || flags & XATTR_CREATE) {
147             xaroot = create_xa_root (inode->i_sb);
148             if (IS_ERR (xaroot))
149                 return xaroot;
150         }
151         if (!xaroot)
152             return ERR_PTR (-ENODATA);
153     }
154
155     /* ok, we have xaroot open */
156
157     snprintf (namebuf, sizeof (namebuf), "%X.%X",
158               le32_to_cpu (INODE_PKEY (inode)->k_objectid),
159               inode->i_generation);
160     xadir = lookup_one_len (namebuf, xaroot, strlen (namebuf));
161     if (IS_ERR (xadir)) {
162         dput (xaroot);
163         return xadir;
164     }
165
166     if (!xadir->d_inode) {
167         int err;
168         if (flags == 0 || flags & XATTR_CREATE) {
169             /* Although there is nothing else trying to create this directory,
170              * another directory with the same hash may be created, so we need
171              * to protect against that */
172             err = xaroot->d_inode->i_op->mkdir (xaroot->d_inode, xadir, 0700);
173             if (err) {
174                 dput (xaroot);
175                 dput (xadir);
176                 return ERR_PTR (err);
177             }
178         }
179         if (!xadir->d_inode) {
180             dput (xaroot);
181             dput (xadir);
182             return ERR_PTR (-ENODATA);
183         }
184         /* Newly created object.. Need to mark it private */
185         REISERFS_I(xadir->d_inode)->i_flags |= i_priv_object;
186     }
187
188     dput (xaroot);
189     return xadir;
190 }
191
192 /* Returns a dentry corresponding to a specific extended attribute file
193  * for the inode. If flags allow, the file is created. Otherwise, a
194  * valid or negative dentry, or an error is returned. */
195 static struct dentry *
196 get_xa_file_dentry (const struct inode *inode, const char *name, int flags)
197 {
198     struct dentry *xadir, *xafile;
199     int err = 0;
200
201     xadir = open_xa_dir (inode, flags);
202     if (IS_ERR (xadir)) {
203         return ERR_PTR (PTR_ERR (xadir));
204     } else if (xadir && !xadir->d_inode) {
205         dput (xadir);
206         return ERR_PTR (-ENODATA);
207     }
208
209     xafile = lookup_one_len (name, xadir, strlen (name));
210     if (IS_ERR (xafile)) {
211         dput (xadir);
212         return ERR_PTR (PTR_ERR (xafile));
213     }
214
215     if (xafile->d_inode) { /* file exists */
216         if (flags & XATTR_CREATE) {
217             err = -EEXIST;
218             dput (xafile);
219             goto out;
220         }
221     } else if (flags & XATTR_REPLACE || flags & FL_READONLY) {
222         goto out;
223     } else {
224         /* inode->i_sem is down, so nothing else can try to create
225          * the same xattr */
226         err = xadir->d_inode->i_op->create (xadir->d_inode, xafile,
227                                             0700|S_IFREG, NULL);
228
229         if (err) {
230             dput (xafile);
231             goto out;
232         }
233         /* Newly created object.. Need to mark it private */
234         REISERFS_I(xafile->d_inode)->i_flags |= i_priv_object;
235     }
236
237 out:
238     dput (xadir);
239     if (err)
240         xafile = ERR_PTR (err);
241     return xafile;
242 }
243
244
245 /* Opens a file pointer to the attribute associated with inode */
246 static struct file *
247 open_xa_file (const struct inode *inode, const char *name, int flags)
248 {
249     struct dentry *xafile;
250     struct file *fp;
251
252     xafile = get_xa_file_dentry (inode, name, flags);
253     if (IS_ERR (xafile))
254         return ERR_PTR (PTR_ERR (xafile));
255     else if (!xafile->d_inode) {
256         dput (xafile);
257         return ERR_PTR (-ENODATA);
258     }
259
260     fp = dentry_open (xafile, NULL, O_RDWR);
261     /* dentry_open dputs the dentry if it fails */
262
263     return fp;
264 }
265
266
267 /*
268  * this is very similar to fs/reiserfs/dir.c:reiserfs_readdir, but
269  * we need to drop the path before calling the filldir struct.  That
270  * would be a big performance hit to the non-xattr case, so I've copied
271  * the whole thing for now. --clm
272  *
273  * the big difference is that I go backwards through the directory,
274  * and don't mess with f->f_pos, but the idea is the same.  Do some
275  * action on each and every entry in the directory.
276  *
277  * we're called with i_sem held, so there are no worries about the directory
278  * changing underneath us.
279  */
280 static int __xattr_readdir(struct file * filp, void * dirent, filldir_t filldir)
281 {
282     struct inode *inode = filp->f_dentry->d_inode;
283     struct cpu_key pos_key;     /* key of current position in the directory (key of directory entry) */
284     INITIALIZE_PATH (path_to_entry);
285     struct buffer_head * bh;
286     int entry_num;
287     struct item_head * ih, tmp_ih;
288     int search_res;
289     char * local_buf;
290     loff_t next_pos;
291     char small_buf[32] ; /* avoid kmalloc if we can */
292     struct reiserfs_de_head *deh;
293     int d_reclen;
294     char * d_name;
295     off_t d_off;
296     ino_t d_ino;
297     struct reiserfs_dir_entry de;
298
299
300     /* form key for search the next directory entry using f_pos field of
301        file structure */
302     next_pos = max_reiserfs_offset(inode);
303
304     while (1) {
305 research:
306         if (next_pos <= DOT_DOT_OFFSET)
307             break;
308         make_cpu_key (&pos_key, inode, next_pos, TYPE_DIRENTRY, 3);
309
310         search_res = search_by_entry_key(inode->i_sb, &pos_key, &path_to_entry, &de);
311         if (search_res == IO_ERROR) {
312             // FIXME: we could just skip part of directory which could
313             // not be read
314             pathrelse(&path_to_entry);
315             return -EIO;
316         }
317
318         if (search_res == NAME_NOT_FOUND)
319             de.de_entry_num--;
320
321         set_de_name_and_namelen(&de);
322         entry_num = de.de_entry_num;
323         deh = &(de.de_deh[entry_num]);
324
325         bh = de.de_bh;
326         ih = de.de_ih;
327
328         if (!is_direntry_le_ih(ih)) {
329             reiserfs_warning(inode->i_sb, "not direntry %h", ih);
330             break;
331         }
332         copy_item_head(&tmp_ih, ih);
333
334         /* we must have found item, that is item of this directory, */
335         RFALSE( COMP_SHORT_KEYS (&(ih->ih_key), &pos_key),
336                 "vs-9000: found item %h does not match to dir we readdir %K",
337                 ih, &pos_key);
338
339         if (deh_offset(deh) <= DOT_DOT_OFFSET) {
340             break;
341         }
342
343         /* look for the previous entry in the directory */
344         next_pos = deh_offset (deh) - 1;
345
346         if (!de_visible (deh))
347             /* it is hidden entry */
348             continue;
349
350         d_reclen = entry_length(bh, ih, entry_num);
351         d_name = B_I_DEH_ENTRY_FILE_NAME (bh, ih, deh);
352         d_off = deh_offset (deh);
353         d_ino = deh_objectid (deh);
354
355         if (!d_name[d_reclen - 1])
356             d_reclen = strlen (d_name);
357
358         if (d_reclen > REISERFS_MAX_NAME(inode->i_sb->s_blocksize)){
359             /* too big to send back to VFS */
360             continue ;
361         }
362
363         /* Ignore the .reiserfs_priv entry */
364         if (reiserfs_xattrs (inode->i_sb) &&
365             !old_format_only(inode->i_sb) &&
366             deh_objectid (deh) == le32_to_cpu (INODE_PKEY(REISERFS_SB(inode->i_sb)->priv_root->d_inode)->k_objectid))
367           continue;
368
369         if (d_reclen <= 32) {
370           local_buf = small_buf ;
371         } else {
372             local_buf = reiserfs_kmalloc(d_reclen, GFP_NOFS, inode->i_sb) ;
373             if (!local_buf) {
374                 pathrelse (&path_to_entry);
375                 return -ENOMEM ;
376             }
377             if (item_moved (&tmp_ih, &path_to_entry)) {
378                 reiserfs_kfree(local_buf, d_reclen, inode->i_sb) ;
379
380                 /* sigh, must retry.  Do this same offset again */
381                 next_pos = d_off;
382                 goto research;
383             }
384         }
385
386         // Note, that we copy name to user space via temporary
387         // buffer (local_buf) because filldir will block if
388         // user space buffer is swapped out. At that time
389         // entry can move to somewhere else
390         memcpy (local_buf, d_name, d_reclen);
391
392         /* the filldir function might need to start transactions,
393          * or do who knows what.  Release the path now that we've
394          * copied all the important stuff out of the deh
395          */
396         pathrelse (&path_to_entry);
397
398         if (filldir (dirent, local_buf, d_reclen, d_off, d_ino,
399                      DT_UNKNOWN) < 0) {
400             if (local_buf != small_buf) {
401                 reiserfs_kfree(local_buf, d_reclen, inode->i_sb) ;
402             }
403             goto end;
404         }
405         if (local_buf != small_buf) {
406             reiserfs_kfree(local_buf, d_reclen, inode->i_sb) ;
407         }
408     } /* while */
409
410 end:
411     pathrelse (&path_to_entry);
412     return 0;
413 }
414
415 /*
416  * this could be done with dedicated readdir ops for the xattr files,
417  * but I want to get something working asap
418  * this is stolen from vfs_readdir
419  *
420  */
421 static
422 int xattr_readdir(struct file *file, filldir_t filler, void *buf)
423 {
424         struct inode *inode = file->f_dentry->d_inode;
425         int res = -ENOTDIR;
426         if (!file->f_op || !file->f_op->readdir)
427                 goto out;
428         down(&inode->i_sem);
429 //        down(&inode->i_zombie);
430         res = -ENOENT;
431         if (!IS_DEADDIR(inode)) {
432                 lock_kernel();
433                 res = __xattr_readdir(file, buf, filler);
434                 unlock_kernel();
435         }
436 //        up(&inode->i_zombie);
437         up(&inode->i_sem);
438 out:
439         return res;
440 }
441
442
443 /* Internal operations on file data */
444 static inline void
445 reiserfs_put_page(struct page *page)
446 {
447         kunmap(page);
448         page_cache_release(page);
449 }
450
451 static struct page *
452 reiserfs_get_page(struct inode *dir, unsigned long n)
453 {
454         struct address_space *mapping = dir->i_mapping;
455         struct page *page;
456         /* We can deadlock if we try to free dentries,
457            and an unlink/rmdir has just occured - GFP_NOFS avoids this */
458         mapping->flags = (mapping->flags & ~__GFP_BITS_MASK) | GFP_NOFS;
459         page = read_cache_page (mapping, n,
460                                 (filler_t*)mapping->a_ops->readpage, NULL);
461         if (!IS_ERR(page)) {
462                 wait_on_page_locked(page);
463                 kmap(page);
464                 if (!PageUptodate(page))
465                         goto fail;
466
467                 if (PageError(page))
468                         goto fail;
469         }
470         return page;
471
472 fail:
473         reiserfs_put_page(page);
474         return ERR_PTR(-EIO);
475 }
476
477 static inline __u32
478 xattr_hash (const char *msg, int len)
479 {
480     return csum_partial (msg, len, 0);
481 }
482
483 /* Generic extended attribute operations that can be used by xa plugins */
484
485 /*
486  * inode->i_sem: down
487  */
488 int
489 reiserfs_xattr_set (struct inode *inode, const char *name, const void *buffer,
490                     size_t buffer_size, int flags)
491 {
492     int err = 0;
493     struct file *fp;
494     struct page *page;
495     char *data;
496     struct address_space *mapping;
497     size_t file_pos = 0;
498     size_t buffer_pos = 0;
499     struct inode *xinode;
500     struct iattr newattrs;
501     __u32 xahash = 0;
502
503     if (IS_RDONLY (inode))
504         return -EROFS;
505
506     if (IS_IMMUTABLE (inode) || IS_APPEND (inode))
507         return -EPERM;
508
509     if (get_inode_sd_version (inode) == STAT_DATA_V1)
510         return -EOPNOTSUPP;
511
512     /* Empty xattrs are ok, they're just empty files, no hash */
513     if (buffer && buffer_size)
514         xahash = xattr_hash (buffer, buffer_size);
515
516 open_file:
517     fp = open_xa_file (inode, name, flags);
518     if (IS_ERR (fp)) {
519         err = PTR_ERR (fp);
520         goto out;
521     }
522
523     xinode = fp->f_dentry->d_inode;
524     REISERFS_I(inode)->i_flags |= i_has_xattr_dir;
525
526     /* we need to copy it off.. */
527     if (xinode->i_nlink > 1) {
528         fput(fp);
529         err = reiserfs_xattr_del (inode, name);
530         if (err < 0)
531             goto out;
532         /* We just killed the old one, we're not replacing anymore */
533         if (flags & XATTR_REPLACE)
534             flags &= ~XATTR_REPLACE;
535         goto open_file;
536     }
537
538     /* Resize it so we're ok to write there */
539     newattrs.ia_size = buffer_size;
540     newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
541     down (&xinode->i_sem);
542     err = notify_change(fp->f_dentry, &newattrs);
543     if (err)
544         goto out_filp;
545
546     mapping = xinode->i_mapping;
547     while (buffer_pos < buffer_size || buffer_pos == 0) {
548         size_t chunk;
549         size_t skip = 0;
550         size_t page_offset = (file_pos & (PAGE_CACHE_SIZE - 1));
551         if (buffer_size - buffer_pos > PAGE_CACHE_SIZE)
552             chunk = PAGE_CACHE_SIZE;
553         else
554             chunk = buffer_size - buffer_pos;
555
556         page = reiserfs_get_page (xinode, file_pos >> PAGE_CACHE_SHIFT);
557         if (IS_ERR (page)) {
558             err = PTR_ERR (page);
559             goto out_filp;
560         }
561
562         lock_page (page);
563         data = page_address (page);
564
565         if (file_pos == 0) {
566             struct reiserfs_xattr_header *rxh;
567             skip = file_pos = sizeof (struct reiserfs_xattr_header);
568             if (chunk + skip > PAGE_CACHE_SIZE)
569                 chunk = PAGE_CACHE_SIZE - skip;
570             rxh = (struct reiserfs_xattr_header *)data;
571             rxh->h_magic = cpu_to_le32 (REISERFS_XATTR_MAGIC);
572             rxh->h_hash = cpu_to_le32 (xahash);
573         }
574
575         err = mapping->a_ops->prepare_write (fp, page, page_offset,
576                                              page_offset + chunk + skip);
577         if (!err) {
578             if (buffer)
579                 memcpy (data + skip, buffer + buffer_pos, chunk);
580             err = mapping->a_ops->commit_write (fp, page, page_offset,
581                                                 page_offset + chunk + skip);
582         }
583         unlock_page (page);
584         reiserfs_put_page (page);
585         buffer_pos += chunk;
586         file_pos += chunk;
587         skip = 0;
588         if (err || buffer_size == 0 || !buffer)
589             break;
590     }
591
592     inode->i_ctime = CURRENT_TIME;
593     mark_inode_dirty (inode);
594
595 out_filp:
596     up (&xinode->i_sem);
597     fput(fp);
598
599 out:
600     return err;
601 }
602
603 /*
604  * inode->i_sem: down
605  */
606 int
607 reiserfs_xattr_get (const struct inode *inode, const char *name, void *buffer,
608                     size_t buffer_size)
609 {
610     ssize_t err = 0;
611     struct file *fp;
612     size_t isize;
613     size_t file_pos = 0;
614     size_t buffer_pos = 0;
615     struct page *page;
616     struct inode *xinode;
617     __u32 hash = 0;
618
619     if (name == NULL)
620         return -EINVAL;
621
622     /* We can't have xattrs attached to v1 items since they don't have
623      * generation numbers */
624     if (get_inode_sd_version (inode) == STAT_DATA_V1)
625         return -EOPNOTSUPP;
626
627     fp = open_xa_file (inode, name, FL_READONLY);
628     if (IS_ERR (fp)) {
629         err = PTR_ERR (fp);
630         goto out;
631     }
632
633     xinode = fp->f_dentry->d_inode;
634     isize = xinode->i_size;
635     REISERFS_I(inode)->i_flags |= i_has_xattr_dir;
636
637     /* Just return the size needed */
638     if (buffer == NULL) {
639         err = isize - sizeof (struct reiserfs_xattr_header);
640         goto out_dput;
641     }
642
643     if (buffer_size < isize - sizeof (struct reiserfs_xattr_header)) {
644         err = -ERANGE;
645         goto out_dput;
646     }
647
648     while (file_pos < isize) {
649         size_t chunk;
650         char *data;
651         size_t skip = 0;
652         if (isize - file_pos > PAGE_CACHE_SIZE)
653             chunk = PAGE_CACHE_SIZE;
654         else
655             chunk = isize - file_pos;
656
657         page = reiserfs_get_page (xinode, file_pos >> PAGE_CACHE_SHIFT);
658         if (IS_ERR (page)) {
659             err = PTR_ERR (page);
660             goto out_dput;
661         }
662
663         lock_page (page);
664         data = page_address (page);
665         if (file_pos == 0) {
666             struct reiserfs_xattr_header *rxh =
667                                         (struct reiserfs_xattr_header *)data;
668             skip = file_pos = sizeof (struct reiserfs_xattr_header);
669             chunk -= skip;
670             /* Magic doesn't match up.. */
671             if (rxh->h_magic != cpu_to_le32 (REISERFS_XATTR_MAGIC)) {
672                 unlock_page (page);
673                 reiserfs_put_page (page);
674                 reiserfs_warning (inode->i_sb, "Invalid magic for xattr (%s) "
675                                   "associated with %k", name,
676                                   INODE_PKEY (inode));
677                 err = -EIO;
678                 goto out_dput;
679             }
680             hash = le32_to_cpu (rxh->h_hash);
681         }
682         memcpy (buffer + buffer_pos, data + skip, chunk);
683         unlock_page (page);
684         reiserfs_put_page (page);
685         file_pos += chunk;
686         buffer_pos += chunk;
687         skip = 0;
688     }
689     err = isize - sizeof (struct reiserfs_xattr_header);
690
691     if (xattr_hash (buffer, isize - sizeof (struct reiserfs_xattr_header)) != hash) {
692         reiserfs_warning (inode->i_sb, "Invalid hash for xattr (%s) associated "
693                           "with %k", name, INODE_PKEY (inode));
694         err = -EIO;
695     }
696
697 out_dput:
698     fput(fp);
699
700 out:
701     return err;
702 }
703
704 static int
705 __reiserfs_xattr_del (struct dentry *xadir, const char *name, int namelen)
706 {
707     struct dentry *dentry;
708     struct inode *dir = xadir->d_inode;
709     int err = 0;
710
711     dentry = lookup_one_len (name, xadir, namelen);
712     if (IS_ERR (dentry)) {
713         err = PTR_ERR (dentry);
714         goto out;
715     } else if (!dentry->d_inode) {
716         err = -ENODATA;
717         goto out_file;
718     }
719
720     /* Skip directories.. */
721     if (S_ISDIR (dentry->d_inode->i_mode))
722         goto out_file;
723
724     if (!is_reiserfs_priv_object (dentry->d_inode)) {
725         reiserfs_warning (dir->i_sb, "OID %08x [%.*s/%.*s] doesn't have "
726                                      "priv flag set [parent is %sset].",
727                         le32_to_cpu (INODE_PKEY (dentry->d_inode)->k_objectid),
728                         xadir->d_name.len, xadir->d_name.name, namelen, name,
729                         is_reiserfs_priv_object (xadir->d_inode) ? "" : "not ");
730         dput (dentry);
731         return -EIO;
732     }
733
734     err = dir->i_op->unlink (dir, dentry);
735     if (!err)
736         d_delete (dentry);
737
738 out_file:
739     dput (dentry);
740
741 out:
742     return err;
743 }
744
745
746 int
747 reiserfs_xattr_del (struct inode *inode, const char *name)
748 {
749     struct dentry *dir;
750     int err;
751
752     if (IS_RDONLY (inode))
753         return -EROFS;
754
755     dir = open_xa_dir (inode, FL_READONLY);
756     if (IS_ERR (dir)) {
757         err = PTR_ERR (dir);
758         goto out;
759     }
760
761     err = __reiserfs_xattr_del (dir, name, strlen (name));
762     dput (dir);
763
764 out:
765     return err;
766 }
767
768 /* The following are side effects of other operations that aren't explicitly
769  * modifying extended attributes. This includes operations such as permissions
770  * or ownership changes, object deletions, etc. */
771
772 static int
773 reiserfs_delete_xattrs_filler (void *buf, const char *name, int namelen,
774                                loff_t offset, ino_t ino, unsigned int d_type)
775 {
776     struct dentry *xadir = (struct dentry *)buf;
777
778     return __reiserfs_xattr_del (xadir, name, namelen);
779
780 }
781
782 /* This is called w/ inode->i_sem downed */
783 int
784 reiserfs_delete_xattrs (struct inode *inode)
785 {
786     struct file *fp;
787     struct dentry *dir, *root;
788     int err = 0;
789
790     /* Skip out, an xattr has no xattrs associated with it */
791     if (is_reiserfs_priv_object (inode) ||
792         get_inode_sd_version (inode) == STAT_DATA_V1 ||
793         !reiserfs_xattrs(inode->i_sb))
794     {
795         return 0;
796     }
797     reiserfs_read_lock_xattrs (inode->i_sb);
798     dir = open_xa_dir (inode, FL_READONLY);
799     reiserfs_read_unlock_xattrs (inode->i_sb);
800     if (IS_ERR (dir)) {
801         err = PTR_ERR (dir);
802         goto out;
803     } else if (!dir->d_inode) {
804         dput (dir);
805         return 0;
806     }
807
808     fp = dentry_open (dir, NULL, O_RDWR);
809     if (IS_ERR (fp)) {
810         err = PTR_ERR (fp);
811         /* dentry_open dputs the dentry if it fails */
812         goto out;
813     }
814
815     lock_kernel ();
816     err = xattr_readdir (fp, reiserfs_delete_xattrs_filler, dir);
817     if (err) {
818         unlock_kernel ();
819         goto out_dir;
820     }
821
822     /* Leftovers besides . and .. -- that's not good. */
823     if (dir->d_inode->i_nlink <= 2) {
824         root = get_xa_root (inode->i_sb);
825         reiserfs_write_lock_xattrs (inode->i_sb);
826         err = vfs_rmdir (root->d_inode, dir);
827         reiserfs_write_unlock_xattrs (inode->i_sb);
828         dput (root);
829     } else {
830         reiserfs_warning (inode->i_sb,
831                           "Couldn't remove all entries in directory");
832     }
833     unlock_kernel ();
834
835 out_dir:
836     fput(fp);
837
838 out:
839     if (!err)
840         REISERFS_I(inode)->i_flags = REISERFS_I(inode)->i_flags & ~i_has_xattr_dir;
841     return err;
842 }
843
844 struct reiserfs_chown_buf {
845     struct inode *inode;
846     struct dentry *xadir;
847     struct iattr *attrs;
848 };
849
850 /* XXX: If there is a better way to do this, I'd love to hear about it */
851 static int
852 reiserfs_chown_xattrs_filler (void *buf, const char *name, int namelen,
853                                loff_t offset, ino_t ino, unsigned int d_type)
854 {
855     struct reiserfs_chown_buf *chown_buf = (struct reiserfs_chown_buf *)buf;
856     struct dentry *xafile, *xadir = chown_buf->xadir;
857     struct iattr *attrs = chown_buf->attrs;
858     int err = 0;
859
860     xafile = lookup_one_len (name, xadir, namelen);
861     if (IS_ERR (xafile))
862         return PTR_ERR (xafile);
863     else if (!xafile->d_inode) {
864         dput (xafile);
865         return -ENODATA;
866     }
867
868     if (!S_ISDIR (xafile->d_inode->i_mode))
869         err = notify_change (xafile, attrs);
870     dput (xafile);
871
872     return err;
873 }
874
875 int
876 reiserfs_chown_xattrs (struct inode *inode, struct iattr *attrs)
877 {
878     struct file *fp;
879     struct dentry *dir;
880     int err = 0;
881     struct reiserfs_chown_buf buf;
882     unsigned int ia_valid = attrs->ia_valid;
883
884     /* Skip out, an xattr has no xattrs associated with it */
885     if (is_reiserfs_priv_object (inode) ||
886         get_inode_sd_version (inode) == STAT_DATA_V1 ||
887         !reiserfs_xattrs(inode->i_sb))
888     {
889         return 0;
890     }
891     reiserfs_read_lock_xattrs (inode->i_sb);
892     dir = open_xa_dir (inode, FL_READONLY);
893     reiserfs_read_unlock_xattrs (inode->i_sb);
894     if (IS_ERR (dir)) {
895         if (PTR_ERR (dir) != -ENODATA)
896             err = PTR_ERR (dir);
897         goto out;
898     } else if (!dir->d_inode) {
899         dput (dir);
900         goto out;
901     }
902
903     fp = dentry_open (dir, NULL, O_RDWR);
904     if (IS_ERR (fp)) {
905         err = PTR_ERR (fp);
906         /* dentry_open dputs the dentry if it fails */
907         goto out;
908     }
909
910     lock_kernel ();
911
912     attrs->ia_valid &= (ATTR_UID | ATTR_GID | ATTR_CTIME);
913     buf.xadir = dir;
914     buf.attrs = attrs;
915     buf.inode = inode;
916
917     err = xattr_readdir (fp, reiserfs_chown_xattrs_filler, &buf);
918     if (err) {
919         unlock_kernel ();
920         goto out_dir;
921     }
922
923     err = notify_change (dir, attrs);
924     unlock_kernel ();
925
926 out_dir:
927     fput(fp);
928
929 out:
930     attrs->ia_valid = ia_valid;
931     return err;
932 }
933
934
935 /* Actual operations that are exported to VFS-land */
936
937 /*
938  * Inode operation getxattr()
939  * Preliminary locking: we down dentry->d_inode->i_sem
940  */
941 ssize_t
942 reiserfs_getxattr (struct dentry *dentry, const char *name, void *buffer,
943                    size_t size)
944 {
945     struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix (name);
946     int err;
947
948     if (!xah || !reiserfs_xattrs(dentry->d_sb) ||
949         get_inode_sd_version (dentry->d_inode) == STAT_DATA_V1)
950         return -EOPNOTSUPP;
951
952     reiserfs_read_lock_xattr_i (dentry->d_inode);
953     reiserfs_read_lock_xattrs (dentry->d_sb);
954     err = xah->get (dentry->d_inode, name, buffer, size);
955     reiserfs_read_unlock_xattrs (dentry->d_sb);
956     reiserfs_read_unlock_xattr_i (dentry->d_inode);
957     return err;
958 }
959
960
961 /*
962  * Inode operation setxattr()
963  *
964  * dentry->d_inode->i_sem down
965  */
966 int
967 reiserfs_setxattr (struct dentry *dentry, const char *name, const void *value,
968                    size_t size, int flags)
969 {
970     struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix (name);
971     int err;
972     int lock;
973
974     if (!xah || !reiserfs_xattrs(dentry->d_sb) ||
975         get_inode_sd_version (dentry->d_inode) == STAT_DATA_V1)
976         return -EOPNOTSUPP;
977
978     if (IS_RDONLY (dentry->d_inode))
979         return -EROFS;
980
981     if (IS_IMMUTABLE (dentry->d_inode) || IS_APPEND (dentry->d_inode))
982         return -EROFS;
983
984     reiserfs_write_lock_xattr_i (dentry->d_inode);
985     lock = !has_xattr_dir (dentry->d_inode);
986     if (lock)
987         reiserfs_write_lock_xattrs (dentry->d_sb);
988     else
989         reiserfs_read_lock_xattrs (dentry->d_sb);
990     err = xah->set (dentry->d_inode, name, value, size, flags);
991     if (lock)
992         reiserfs_write_unlock_xattrs (dentry->d_sb);
993     else
994         reiserfs_read_unlock_xattrs (dentry->d_sb);
995     reiserfs_write_unlock_xattr_i (dentry->d_inode);
996     return err;
997 }
998
999 /*
1000  * Inode operation removexattr()
1001  *
1002  * dentry->d_inode->i_sem down
1003  */
1004 int
1005 reiserfs_removexattr (struct dentry *dentry, const char *name)
1006 {
1007     int err;
1008     struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix (name);
1009
1010     if (!xah || !reiserfs_xattrs(dentry->d_sb) ||
1011         get_inode_sd_version (dentry->d_inode) == STAT_DATA_V1)
1012         return -EOPNOTSUPP;
1013
1014     if (IS_RDONLY (dentry->d_inode))
1015         return -EROFS;
1016
1017     if (IS_IMMUTABLE (dentry->d_inode) || IS_APPEND (dentry->d_inode))
1018         return -EPERM;
1019
1020     reiserfs_write_lock_xattr_i (dentry->d_inode);
1021     reiserfs_read_lock_xattrs (dentry->d_sb);
1022
1023     /* Deletion pre-operation */
1024     if (xah->del) {
1025         err = xah->del (dentry->d_inode, name);
1026         if (err)
1027             goto out;
1028     }
1029
1030     err = reiserfs_xattr_del (dentry->d_inode, name);
1031
1032     dentry->d_inode->i_ctime = CURRENT_TIME;
1033     mark_inode_dirty (dentry->d_inode);
1034
1035 out:
1036     reiserfs_read_unlock_xattrs (dentry->d_sb);
1037     reiserfs_write_unlock_xattr_i (dentry->d_inode);
1038     return err;
1039 }
1040
1041
1042 /* This is what filldir will use:
1043  * r_pos will always contain the amount of space required for the entire
1044  * list. If r_pos becomes larger than r_size, we need more space and we
1045  * return an error indicating this. If r_pos is less than r_size, then we've
1046  * filled the buffer successfully and we return success */
1047 struct reiserfs_listxattr_buf {
1048     int r_pos;
1049     int r_size;
1050     char *r_buf;
1051     struct inode *r_inode;
1052 };
1053
1054 static int
1055 reiserfs_listxattr_filler (void *buf, const char *name, int namelen,
1056                            loff_t offset, ino_t ino, unsigned int d_type)
1057 {
1058     struct reiserfs_listxattr_buf *b = (struct reiserfs_listxattr_buf *)buf;
1059     int len = 0;
1060     if (name[0] != '.' || (namelen != 1 && (name[1] != '.' || namelen != 2))) {
1061         struct reiserfs_xattr_handler *xah = find_xattr_handler_prefix (name);
1062         if (!xah) return 0; /* Unsupported xattr name, skip it */
1063
1064         /* We call ->list() twice because the operation isn't required to just
1065          * return the name back - we want to make sure we have enough space */
1066         len += xah->list (b->r_inode, name, namelen, NULL);
1067
1068         if (len) {
1069             if (b->r_pos + len + 1 <= b->r_size) {
1070                 char *p = b->r_buf + b->r_pos;
1071                 p += xah->list (b->r_inode, name, namelen, p);
1072                 *p++ = '\0';
1073             }
1074             b->r_pos += len + 1;
1075         }
1076     }
1077
1078     return 0;
1079 }
1080 /*
1081  * Inode operation listxattr()
1082  *
1083  * Preliminary locking: we down dentry->d_inode->i_sem
1084  */
1085 ssize_t
1086 reiserfs_listxattr (struct dentry *dentry, char *buffer, size_t size)
1087 {
1088     struct file *fp;
1089     struct dentry *dir;
1090     int err = 0;
1091     struct reiserfs_listxattr_buf buf;
1092
1093     if (!dentry->d_inode)
1094         return -EINVAL;
1095
1096     if (!reiserfs_xattrs(dentry->d_sb) ||
1097         get_inode_sd_version (dentry->d_inode) == STAT_DATA_V1)
1098         return -EOPNOTSUPP;
1099
1100     reiserfs_read_lock_xattr_i (dentry->d_inode);
1101     reiserfs_read_lock_xattrs (dentry->d_sb);
1102     dir = open_xa_dir (dentry->d_inode, FL_READONLY);
1103     reiserfs_read_unlock_xattrs (dentry->d_sb);
1104     if (IS_ERR (dir)) {
1105         err = PTR_ERR (dir);
1106         if (err == -ENODATA)
1107             err = 0; /* Not an error if there aren't any xattrs */
1108         goto out;
1109     }
1110
1111     fp = dentry_open (dir, NULL, O_RDWR);
1112     if (IS_ERR (fp)) {
1113         err = PTR_ERR (fp);
1114         /* dentry_open dputs the dentry if it fails */
1115         goto out;
1116     }
1117
1118     buf.r_buf = buffer;
1119     buf.r_size = buffer ? size : 0;
1120     buf.r_pos = 0;
1121     buf.r_inode = dentry->d_inode;
1122
1123     REISERFS_I(dentry->d_inode)->i_flags |= i_has_xattr_dir;
1124
1125     err = xattr_readdir (fp, reiserfs_listxattr_filler, &buf);
1126     if (err)
1127         goto out_dir;
1128
1129     if (buf.r_pos > buf.r_size && buffer != NULL)
1130         err = -ERANGE;
1131     else
1132         err = buf.r_pos;
1133
1134 out_dir:
1135     fput(fp);
1136
1137 out:
1138     reiserfs_read_unlock_xattr_i (dentry->d_inode);
1139     return err;
1140 }
1141
1142 /* This is the implementation for the xattr plugin infrastructure */
1143 static struct list_head xattr_handlers = LIST_HEAD_INIT (xattr_handlers);
1144 static rwlock_t handler_lock = RW_LOCK_UNLOCKED;
1145
1146 static struct reiserfs_xattr_handler *
1147 find_xattr_handler_prefix (const char *prefix)
1148 {
1149     struct reiserfs_xattr_handler *xah = NULL;
1150     struct list_head *p;
1151
1152     read_lock (&handler_lock);
1153     list_for_each (p, &xattr_handlers) {
1154         xah = list_entry (p, struct reiserfs_xattr_handler, handlers);
1155         if (strncmp (xah->prefix, prefix, strlen (xah->prefix)) == 0)
1156             break;
1157         xah = NULL;
1158     }
1159
1160     read_unlock (&handler_lock);
1161     return xah;
1162 }
1163
1164 static void
1165 __unregister_handlers (void)
1166 {
1167     struct reiserfs_xattr_handler *xah;
1168     struct list_head *p, *tmp;
1169
1170     list_for_each_safe (p, tmp, &xattr_handlers) {
1171         xah = list_entry (p, struct reiserfs_xattr_handler, handlers);
1172         if (xah->exit)
1173             xah->exit();
1174
1175         list_del_init (p);
1176     }
1177     INIT_LIST_HEAD (&xattr_handlers);
1178 }
1179
1180 int __init
1181 reiserfs_xattr_register_handlers (void)
1182 {
1183     int err = 0;
1184     struct reiserfs_xattr_handler *xah;
1185     struct list_head *p;
1186
1187     write_lock (&handler_lock);
1188
1189     /* If we're already initialized, nothing to do */
1190     if (!list_empty (&xattr_handlers)) {
1191         write_unlock (&handler_lock);
1192         return 0;
1193     }
1194
1195     /* Add the handlers */
1196     list_add_tail (&user_handler.handlers, &xattr_handlers);
1197     list_add_tail (&trusted_handler.handlers, &xattr_handlers);
1198 #ifdef CONFIG_REISERFS_FS_SECURITY
1199     list_add_tail (&security_handler.handlers, &xattr_handlers);
1200 #endif
1201 #ifdef CONFIG_REISERFS_FS_POSIX_ACL
1202     list_add_tail (&posix_acl_access_handler.handlers, &xattr_handlers);
1203     list_add_tail (&posix_acl_default_handler.handlers, &xattr_handlers);
1204 #endif
1205
1206     /* Run initializers, if available */
1207     list_for_each (p, &xattr_handlers) {
1208         xah = list_entry (p, struct reiserfs_xattr_handler, handlers);
1209         if (xah->init) {
1210             err = xah->init ();
1211             if (err) {
1212                 list_del_init (p);
1213                 break;
1214             }
1215         }
1216     }
1217
1218     /* Clean up other handlers, if any failed */
1219     if (err)
1220         __unregister_handlers ();
1221
1222     write_unlock (&handler_lock);
1223     return err;
1224 }
1225
1226 void
1227 reiserfs_xattr_unregister_handlers (void)
1228 {
1229     write_lock (&handler_lock);
1230     __unregister_handlers ();
1231     write_unlock (&handler_lock);
1232 }
1233
1234 /* This will catch lookups from the fs root to .reiserfs_priv */
1235 static int
1236 xattr_lookup_poison (struct dentry *dentry, struct qstr *q1, struct qstr *name)
1237 {
1238     struct dentry *priv_root = REISERFS_SB(dentry->d_sb)->priv_root;
1239     if (name->len == priv_root->d_name.len &&
1240         name->hash == priv_root->d_name.hash &&
1241         !memcmp (name->name, priv_root->d_name.name, name->len)) {
1242             return -ENOENT;
1243     }
1244     return 0;
1245 }
1246
1247 static struct dentry_operations xattr_lookup_poison_ops = {
1248     .d_compare = xattr_lookup_poison,
1249 };
1250
1251
1252 /* We need to take a copy of the mount flags since things like
1253  * MS_RDONLY don't get set until *after* we're called.
1254  * mount_flags != mount_options */
1255 int
1256 reiserfs_xattr_init (struct super_block *s, int mount_flags)
1257 {
1258   int err = 0;
1259
1260   /* We need generation numbers to ensure that the oid mapping is correct
1261    * v3.5 filesystems don't have them. */
1262   if (!old_format_only (s)) {
1263     set_bit (REISERFS_XATTRS, &(REISERFS_SB(s)->s_mount_opt));
1264   } else if (reiserfs_xattrs_optional (s)) {
1265     /* Old format filesystem, but optional xattrs have been enabled
1266      * at mount time. Error out. */
1267     reiserfs_warning (s, "xattrs/ACLs not supported on pre v3.6 "
1268                       "format filesystem. Failing mount.");
1269     err = -EOPNOTSUPP;
1270     goto error;
1271   } else {
1272     /* Old format filesystem, but no optional xattrs have been enabled. This
1273      * means we silently disable xattrs on the filesystem. */
1274     clear_bit (REISERFS_XATTRS, &(REISERFS_SB(s)->s_mount_opt));
1275   }
1276
1277   /* If we don't have the privroot located yet - go find it */
1278   if (reiserfs_xattrs (s) && !REISERFS_SB(s)->priv_root) {
1279       struct dentry *dentry;
1280       dentry = lookup_one_len (PRIVROOT_NAME, s->s_root,
1281                                strlen (PRIVROOT_NAME));
1282       if (!IS_ERR (dentry)) {
1283         if (!(mount_flags & MS_RDONLY) && !dentry->d_inode) {
1284             struct inode *inode = dentry->d_parent->d_inode;
1285             down (&inode->i_sem);
1286             err = inode->i_op->mkdir (inode, dentry, 0700);
1287             up (&inode->i_sem);
1288             if (err) {
1289                 dput (dentry);
1290                 dentry = NULL;
1291             }
1292
1293             if (dentry && dentry->d_inode)
1294                 reiserfs_warning (s, "Created %s on %s - reserved for "
1295                                   "xattr storage.", PRIVROOT_NAME,
1296                                   reiserfs_bdevname (inode->i_sb));
1297         } else if (!dentry->d_inode) {
1298             dput (dentry);
1299             dentry = NULL;
1300         }
1301       } else
1302         err = PTR_ERR (dentry);
1303
1304       if (!err && dentry) {
1305           s->s_root->d_op = &xattr_lookup_poison_ops;
1306           REISERFS_I(dentry->d_inode)->i_flags |= i_priv_object;
1307           REISERFS_SB(s)->priv_root = dentry;
1308       } else if (!(mount_flags & MS_RDONLY)) { /* xattrs are unavailable */
1309           /* If we're read-only it just means that the dir hasn't been
1310            * created. Not an error -- just no xattrs on the fs. We'll
1311            * check again if we go read-write */
1312           reiserfs_warning (s, "xattrs/ACLs enabled and couldn't "
1313                             "find/create .reiserfs_priv. Failing mount.");
1314           err = -EOPNOTSUPP;
1315       }
1316   }
1317
1318 error:
1319    /* This is only nonzero if there was an error initializing the xattr
1320     * directory or if there is a condition where we don't support them. */
1321     if (err) {
1322           clear_bit (REISERFS_XATTRS, &(REISERFS_SB(s)->s_mount_opt));
1323           clear_bit (REISERFS_XATTRS_USER, &(REISERFS_SB(s)->s_mount_opt));
1324           clear_bit (REISERFS_POSIXACL, &(REISERFS_SB(s)->s_mount_opt));
1325     }
1326
1327     /* The super_block MS_POSIXACL must mirror the (no)acl mount option. */
1328     s->s_flags = s->s_flags & ~MS_POSIXACL;
1329     if (reiserfs_posixacl (s))
1330         s->s_flags |= MS_POSIXACL;
1331
1332     return err;
1333 }
1334
1335 static int
1336 __reiserfs_permission (struct inode *inode, int mask, struct nameidata *nd,
1337                        int need_lock)
1338 {
1339         umode_t                 mode = inode->i_mode;
1340
1341         if (mask & MAY_WRITE) {
1342                 /*
1343                  * Nobody gets write access to a read-only fs.
1344                  */
1345                 if (IS_RDONLY(inode) &&
1346                     (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
1347                         return -EROFS;
1348
1349                 /*
1350                  * Nobody gets write access to an immutable file.
1351                  */
1352                 if (IS_IMMUTABLE(inode))
1353                         return -EACCES;
1354         }
1355
1356         /* We don't do permission checks on the internal objects.
1357         * Permissions are determined by the "owning" object. */
1358         if (is_reiserfs_priv_object (inode))
1359                 return 0;
1360
1361         if (current->fsuid == inode->i_uid) {
1362                 mode >>= 6;
1363 #ifdef CONFIG_REISERFS_FS_POSIX_ACL
1364         } else if (reiserfs_posixacl(inode->i_sb) &&
1365                    get_inode_sd_version (inode) != STAT_DATA_V1) {
1366                 struct posix_acl *acl;
1367
1368                 /* ACL can't contain additional permissions if
1369                    the ACL_MASK entry is 0 */
1370                 if (!(mode & S_IRWXG))
1371                         goto check_groups;
1372
1373                 if (need_lock) {
1374                     reiserfs_read_lock_xattr_i (inode);
1375                     reiserfs_read_lock_xattrs (inode->i_sb);
1376                 }
1377                 acl = reiserfs_get_acl (inode, ACL_TYPE_ACCESS);
1378                 if (need_lock) {
1379                     reiserfs_read_unlock_xattrs (inode->i_sb);
1380                     reiserfs_read_unlock_xattr_i (inode);
1381                 }
1382                 if (IS_ERR (acl)) {
1383                     if (PTR_ERR (acl) == -ENODATA)
1384                         goto check_groups;
1385                     return PTR_ERR (acl);
1386                 }
1387
1388                 if (acl) {
1389                     int err = posix_acl_permission (inode, acl, mask);
1390                     posix_acl_release (acl);
1391                     if (err == -EACCES) {
1392                         goto check_capabilities;
1393                     }
1394                     return err;
1395                 } else {
1396                         goto check_groups;
1397                 }
1398 #endif
1399         } else {
1400 check_groups:
1401                 if (in_group_p(inode->i_gid))
1402                         mode >>= 3;
1403         }
1404
1405         /*
1406          * If the DACs are ok we don't need any capability check.
1407          */
1408         if (((mode & mask & (MAY_READ|MAY_WRITE|MAY_EXEC)) == mask))
1409                 return 0;
1410
1411 check_capabilities:
1412         /*
1413          * Read/write DACs are always overridable.
1414          * Executable DACs are overridable if at least one exec bit is set.
1415          */
1416         if (!(mask & MAY_EXEC) ||
1417             (inode->i_mode & S_IXUGO) || S_ISDIR(inode->i_mode))
1418                 if (capable(CAP_DAC_OVERRIDE))
1419                         return 0;
1420
1421         /*
1422          * Searching includes executable on directories, else just read.
1423          */
1424         if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
1425                 if (capable(CAP_DAC_READ_SEARCH))
1426                         return 0;
1427
1428         return -EACCES;
1429 }
1430
1431 int
1432 reiserfs_permission (struct inode *inode, int mask, struct nameidata *nd)
1433 {
1434     return __reiserfs_permission (inode, mask, nd, 1);
1435 }
1436
1437 int
1438 reiserfs_permission_locked (struct inode *inode, int mask, struct nameidata *nd)
1439 {
1440     return __reiserfs_permission (inode, mask, nd, 0);
1441 }