2 * Copyright (C) International Business Machines Corp., 2000-2004
3 * Copyright (C) Christoph Hellwig, 2002
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/capability.h>
22 #include <linux/xattr.h>
23 #include <linux/posix_acl_xattr.h>
24 #include <linux/quotaops.h>
25 #include <linux/security.h>
26 #include "jfs_incore.h"
27 #include "jfs_superblock.h"
29 #include "jfs_debug.h"
30 #include "jfs_dinode.h"
31 #include "jfs_extent.h"
32 #include "jfs_metapage.h"
33 #include "jfs_xattr.h"
37 * jfs_xattr.c: extended attribute service
43 * Extended attribute lists (jfs_ea_list) consist of an overall size (32 bit
44 * value) and a variable (0 or more) number of extended attribute
45 * entries. Each extended attribute entry (jfs_ea) is a <name,value> double
46 * where <name> is constructed from a null-terminated ascii string
47 * (1 ... 255 bytes in the name) and <value> is arbitrary 8 bit data
48 * (1 ... 65535 bytes). The in-memory format is
50 * 0 1 2 4 4 + namelen + 1
51 * +-------+--------+--------+----------------+-------------------+
52 * | Flags | Name | Value | Name String \0 | Data . . . . |
53 * | | Length | Length | | |
54 * +-------+--------+--------+----------------+-------------------+
56 * A jfs_ea_list then is structured as
58 * 0 4 4 + EA_SIZE(ea1)
59 * +------------+-------------------+--------------------+-----
60 * | Overall EA | First FEA Element | Second FEA Element | .....
62 * +------------+-------------------+--------------------+-----
66 * FEALISTs are stored on disk using blocks allocated by dbAlloc() and
67 * written directly. An EA list may be in-lined in the inode if there is
68 * sufficient room available.
72 int flag
; /* Indicates what storage xattr points to */
73 int max_size
; /* largest xattr that fits in current buffer */
74 dxd_t new_ea
; /* dxd to replace ea when modifying xattr */
75 struct metapage
*mp
; /* metapage containing ea list */
76 struct jfs_ea_list
*xattr
; /* buffer containing ea list */
80 * ea_buffer.flag values
82 #define EA_INLINE 0x0001
83 #define EA_EXTENT 0x0002
85 #define EA_MALLOC 0x0008
89 * These three routines are used to recognize on-disk extended attributes
90 * that are in a recognized namespace. If the attribute is not recognized,
91 * "os2." is prepended to the name
93 static inline int is_os2_xattr(struct jfs_ea
*ea
)
98 if ((ea
->namelen
>= XATTR_SYSTEM_PREFIX_LEN
) &&
99 !strncmp(ea
->name
, XATTR_SYSTEM_PREFIX
, XATTR_SYSTEM_PREFIX_LEN
))
104 if ((ea
->namelen
>= XATTR_USER_PREFIX_LEN
) &&
105 !strncmp(ea
->name
, XATTR_USER_PREFIX
, XATTR_USER_PREFIX_LEN
))
108 * Check for "security."
110 if ((ea
->namelen
>= XATTR_SECURITY_PREFIX_LEN
) &&
111 !strncmp(ea
->name
, XATTR_SECURITY_PREFIX
,
112 XATTR_SECURITY_PREFIX_LEN
))
115 * Check for "trusted."
117 if ((ea
->namelen
>= XATTR_TRUSTED_PREFIX_LEN
) &&
118 !strncmp(ea
->name
, XATTR_TRUSTED_PREFIX
, XATTR_TRUSTED_PREFIX_LEN
))
121 * Add any other valid namespace prefixes here
125 * We assume it's OS/2's flat namespace
130 static inline int name_size(struct jfs_ea
*ea
)
132 if (is_os2_xattr(ea
))
133 return ea
->namelen
+ XATTR_OS2_PREFIX_LEN
;
138 static inline int copy_name(char *buffer
, struct jfs_ea
*ea
)
140 int len
= ea
->namelen
;
142 if (is_os2_xattr(ea
)) {
143 memcpy(buffer
, XATTR_OS2_PREFIX
, XATTR_OS2_PREFIX_LEN
);
144 buffer
+= XATTR_OS2_PREFIX_LEN
;
145 len
+= XATTR_OS2_PREFIX_LEN
;
147 memcpy(buffer
, ea
->name
, ea
->namelen
);
148 buffer
[ea
->namelen
] = 0;
153 /* Forward references */
154 static void ea_release(struct inode
*inode
, struct ea_buffer
*ea_buf
);
157 * NAME: ea_write_inline
159 * FUNCTION: Attempt to write an EA inline if area is available
162 * Already verified that the specified EA is small enough to fit inline
166 * ealist - EA list pointer
167 * size - size of ealist in bytes
168 * ea - dxd_t structure to be filled in with necessary EA information
169 * if we successfully copy the EA inline
172 * Checks if the inode's inline area is available. If so, copies EA inline
173 * and sets <ea> fields appropriately. Otherwise, returns failure, EA will
174 * have to be put into an extent.
176 * RETURNS: 0 for successful copy to inline area; -1 if area not available
178 static int ea_write_inline(struct inode
*ip
, struct jfs_ea_list
*ealist
,
179 int size
, dxd_t
* ea
)
181 struct jfs_inode_info
*ji
= JFS_IP(ip
);
184 * Make sure we have an EA -- the NULL EA list is valid, but you
187 if (ealist
&& size
> sizeof (struct jfs_ea_list
)) {
188 assert(size
<= sizeof (ji
->i_inline_ea
));
191 * See if the space is available or if it is already being
192 * used for an inline EA.
194 if (!(ji
->mode2
& INLINEEA
) && !(ji
->ea
.flag
& DXD_INLINE
))
200 memcpy(ji
->i_inline_ea
, ealist
, size
);
201 ea
->flag
= DXD_INLINE
;
202 ji
->mode2
&= ~INLINEEA
;
209 /* Free up INLINE area */
210 if (ji
->ea
.flag
& DXD_INLINE
)
211 ji
->mode2
|= INLINEEA
;
220 * FUNCTION: Write an EA for an inode
222 * PRE CONDITIONS: EA has been verified
226 * ealist - EA list pointer
227 * size - size of ealist in bytes
228 * ea - dxd_t structure to be filled in appropriately with where the
231 * NOTES: Will write EA inline if able to, otherwise allocates blocks for an
232 * extent and synchronously writes it to those blocks.
234 * RETURNS: 0 for success; Anything else indicates failure
236 static int ea_write(struct inode
*ip
, struct jfs_ea_list
*ealist
, int size
,
239 struct super_block
*sb
= ip
->i_sb
;
240 struct jfs_inode_info
*ji
= JFS_IP(ip
);
241 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
251 * Quick check to see if this is an in-linable EA. Short EAs
252 * and empty EAs are all in-linable, provided the space exists.
254 if (!ealist
|| size
<= sizeof (ji
->i_inline_ea
)) {
255 if (!ea_write_inline(ip
, ealist
, size
, ea
))
259 /* figure out how many blocks we need */
260 nblocks
= (size
+ (sb
->s_blocksize
- 1)) >> sb
->s_blocksize_bits
;
262 /* Allocate new blocks to quota. */
263 if (DQUOT_ALLOC_BLOCK(ip
, nblocks
)) {
267 rc
= dbAlloc(ip
, INOHINT(ip
), nblocks
, &blkno
);
269 /*Rollback quota allocation. */
270 DQUOT_FREE_BLOCK(ip
, nblocks
);
275 * Now have nblocks worth of storage to stuff into the FEALIST.
276 * loop over the FEALIST copying data into the buffer one page at
279 cp
= (char *) ealist
;
281 for (i
= 0; i
< nblocks
; i
+= sbi
->nbperpage
) {
283 * Determine how many bytes for this request, and round up to
284 * the nearest aggregate block size
286 nb
= min(PSIZE
, nbytes
);
288 ((((nb
+ sb
->s_blocksize
- 1)) >> sb
->s_blocksize_bits
))
289 << sb
->s_blocksize_bits
;
291 if (!(mp
= get_metapage(ip
, blkno
+ i
, bytes_to_write
, 1))) {
296 memcpy(mp
->data
, cp
, nb
);
299 * We really need a way to propagate errors for
300 * forced writes like this one. --hch
302 * (__write_metapage => release_metapage => flush_metapage)
305 if ((rc
= flush_metapage(mp
))) {
307 * the write failed -- this means that the buffer
308 * is still assigned and the blocks are not being
309 * used. this seems like the best error recovery
322 ea
->flag
= DXD_EXTENT
;
323 DXDsize(ea
, le32_to_cpu(ealist
->size
));
324 DXDlength(ea
, nblocks
);
325 DXDaddress(ea
, blkno
);
327 /* Free up INLINE area */
328 if (ji
->ea
.flag
& DXD_INLINE
)
329 ji
->mode2
|= INLINEEA
;
334 /* Rollback quota allocation. */
335 DQUOT_FREE_BLOCK(ip
, nblocks
);
337 dbFree(ip
, blkno
, nblocks
);
342 * NAME: ea_read_inline
344 * FUNCTION: Read an inlined EA into user's buffer
348 * ealist - Pointer to buffer to fill in with EA
352 static int ea_read_inline(struct inode
*ip
, struct jfs_ea_list
*ealist
)
354 struct jfs_inode_info
*ji
= JFS_IP(ip
);
355 int ea_size
= sizeDXD(&ji
->ea
);
363 if ((sizeDXD(&ji
->ea
) > sizeof (ji
->i_inline_ea
)))
365 if (le32_to_cpu(((struct jfs_ea_list
*) &ji
->i_inline_ea
)->size
)
369 memcpy(ealist
, ji
->i_inline_ea
, ea_size
);
376 * FUNCTION: copy EA data into user's buffer
380 * ealist - Pointer to buffer to fill in with EA
382 * NOTES: If EA is inline calls ea_read_inline() to copy EA.
384 * RETURNS: 0 for success; other indicates failure
386 static int ea_read(struct inode
*ip
, struct jfs_ea_list
*ealist
)
388 struct super_block
*sb
= ip
->i_sb
;
389 struct jfs_inode_info
*ji
= JFS_IP(ip
);
390 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
393 char *cp
= (char *) ealist
;
399 /* quick check for in-line EA */
400 if (ji
->ea
.flag
& DXD_INLINE
)
401 return ea_read_inline(ip
, ealist
);
403 nbytes
= sizeDXD(&ji
->ea
);
405 jfs_error(sb
, "ea_read: nbytes is 0");
410 * Figure out how many blocks were allocated when this EA list was
411 * originally written to disk.
413 nblocks
= lengthDXD(&ji
->ea
) << sbi
->l2nbperpage
;
414 blkno
= addressDXD(&ji
->ea
) << sbi
->l2nbperpage
;
417 * I have found the disk blocks which were originally used to store
418 * the FEALIST. now i loop over each contiguous block copying the
419 * data into the buffer.
421 for (i
= 0; i
< nblocks
; i
+= sbi
->nbperpage
) {
423 * Determine how many bytes for this request, and round up to
424 * the nearest aggregate block size
426 nb
= min(PSIZE
, nbytes
);
428 ((((nb
+ sb
->s_blocksize
- 1)) >> sb
->s_blocksize_bits
))
429 << sb
->s_blocksize_bits
;
431 if (!(mp
= read_metapage(ip
, blkno
+ i
, bytes_to_read
, 1)))
434 memcpy(cp
, mp
->data
, nb
);
435 release_metapage(mp
);
447 * FUNCTION: Returns buffer containing existing extended attributes.
448 * The size of the buffer will be the larger of the existing
449 * attributes size, or min_size.
451 * The buffer, which may be inlined in the inode or in the
452 * page cache must be release by calling ea_release or ea_put
455 * inode - Inode pointer
456 * ea_buf - Structure to be populated with ealist and its metadata
457 * min_size- minimum size of buffer to be returned
459 * RETURNS: 0 for success; Other indicates failure
461 static int ea_get(struct inode
*inode
, struct ea_buffer
*ea_buf
, int min_size
)
463 struct jfs_inode_info
*ji
= JFS_IP(inode
);
464 struct super_block
*sb
= inode
->i_sb
;
466 int ea_size
= sizeDXD(&ji
->ea
);
467 int blocks_needed
, current_blocks
;
470 int quota_allocation
= 0;
472 /* When fsck.jfs clears a bad ea, it doesn't clear the size */
473 if (ji
->ea
.flag
== 0)
479 ea_buf
->max_size
= 0;
480 ea_buf
->xattr
= NULL
;
483 if ((min_size
<= sizeof (ji
->i_inline_ea
)) &&
484 (ji
->mode2
& INLINEEA
)) {
485 ea_buf
->flag
= EA_INLINE
| EA_NEW
;
486 ea_buf
->max_size
= sizeof (ji
->i_inline_ea
);
487 ea_buf
->xattr
= (struct jfs_ea_list
*) ji
->i_inline_ea
;
488 DXDlength(&ea_buf
->new_ea
, 0);
489 DXDaddress(&ea_buf
->new_ea
, 0);
490 ea_buf
->new_ea
.flag
= DXD_INLINE
;
491 DXDsize(&ea_buf
->new_ea
, min_size
);
495 } else if (ji
->ea
.flag
& DXD_INLINE
) {
496 if (min_size
<= sizeof (ji
->i_inline_ea
)) {
497 ea_buf
->flag
= EA_INLINE
;
498 ea_buf
->max_size
= sizeof (ji
->i_inline_ea
);
499 ea_buf
->xattr
= (struct jfs_ea_list
*) ji
->i_inline_ea
;
504 if (!(ji
->ea
.flag
& DXD_EXTENT
)) {
505 jfs_error(sb
, "ea_get: invalid ea.flag)");
508 current_blocks
= (ea_size
+ sb
->s_blocksize
- 1) >>
509 sb
->s_blocksize_bits
;
511 size
= max(min_size
, ea_size
);
515 * To keep the rest of the code simple. Allocate a
516 * contiguous buffer to work with
518 ea_buf
->xattr
= kmalloc(size
, GFP_KERNEL
);
519 if (ea_buf
->xattr
== NULL
)
522 ea_buf
->flag
= EA_MALLOC
;
523 ea_buf
->max_size
= (size
+ sb
->s_blocksize
- 1) &
524 ~(sb
->s_blocksize
- 1);
529 if ((rc
= ea_read(inode
, ea_buf
->xattr
))) {
530 kfree(ea_buf
->xattr
);
531 ea_buf
->xattr
= NULL
;
536 blocks_needed
= (min_size
+ sb
->s_blocksize
- 1) >>
537 sb
->s_blocksize_bits
;
539 if (blocks_needed
> current_blocks
) {
540 /* Allocate new blocks to quota. */
541 if (DQUOT_ALLOC_BLOCK(inode
, blocks_needed
))
544 quota_allocation
= blocks_needed
;
546 rc
= dbAlloc(inode
, INOHINT(inode
), (s64
) blocks_needed
,
551 DXDlength(&ea_buf
->new_ea
, blocks_needed
);
552 DXDaddress(&ea_buf
->new_ea
, blkno
);
553 ea_buf
->new_ea
.flag
= DXD_EXTENT
;
554 DXDsize(&ea_buf
->new_ea
, min_size
);
556 ea_buf
->flag
= EA_EXTENT
| EA_NEW
;
558 ea_buf
->mp
= get_metapage(inode
, blkno
,
559 blocks_needed
<< sb
->s_blocksize_bits
,
561 if (ea_buf
->mp
== NULL
) {
562 dbFree(inode
, blkno
, (s64
) blocks_needed
);
566 ea_buf
->xattr
= ea_buf
->mp
->data
;
567 ea_buf
->max_size
= (min_size
+ sb
->s_blocksize
- 1) &
568 ~(sb
->s_blocksize
- 1);
571 if ((rc
= ea_read(inode
, ea_buf
->xattr
))) {
572 discard_metapage(ea_buf
->mp
);
573 dbFree(inode
, blkno
, (s64
) blocks_needed
);
578 ea_buf
->flag
= EA_EXTENT
;
579 ea_buf
->mp
= read_metapage(inode
, addressDXD(&ji
->ea
),
580 lengthDXD(&ji
->ea
) << sb
->s_blocksize_bits
,
582 if (ea_buf
->mp
== NULL
) {
586 ea_buf
->xattr
= ea_buf
->mp
->data
;
587 ea_buf
->max_size
= (ea_size
+ sb
->s_blocksize
- 1) &
588 ~(sb
->s_blocksize
- 1);
591 if (EALIST_SIZE(ea_buf
->xattr
) != ea_size
) {
592 printk(KERN_ERR
"ea_get: invalid extended attribute\n");
593 print_hex_dump(KERN_ERR
, "", DUMP_PREFIX_ADDRESS
, 16, 1,
594 ea_buf
->xattr
, ea_size
, 1);
595 ea_release(inode
, ea_buf
);
603 /* Rollback quota allocation */
604 if (quota_allocation
)
605 DQUOT_FREE_BLOCK(inode
, quota_allocation
);
610 static void ea_release(struct inode
*inode
, struct ea_buffer
*ea_buf
)
612 if (ea_buf
->flag
& EA_MALLOC
)
613 kfree(ea_buf
->xattr
);
614 else if (ea_buf
->flag
& EA_EXTENT
) {
616 release_metapage(ea_buf
->mp
);
618 if (ea_buf
->flag
& EA_NEW
)
619 dbFree(inode
, addressDXD(&ea_buf
->new_ea
),
620 lengthDXD(&ea_buf
->new_ea
));
624 static int ea_put(tid_t tid
, struct inode
*inode
, struct ea_buffer
*ea_buf
,
627 struct jfs_inode_info
*ji
= JFS_IP(inode
);
628 unsigned long old_blocks
, new_blocks
;
632 ea_release(inode
, ea_buf
);
634 } else if (ea_buf
->flag
& EA_INLINE
) {
635 assert(new_size
<= sizeof (ji
->i_inline_ea
));
636 ji
->mode2
&= ~INLINEEA
;
637 ea_buf
->new_ea
.flag
= DXD_INLINE
;
638 DXDsize(&ea_buf
->new_ea
, new_size
);
639 DXDaddress(&ea_buf
->new_ea
, 0);
640 DXDlength(&ea_buf
->new_ea
, 0);
641 } else if (ea_buf
->flag
& EA_MALLOC
) {
642 rc
= ea_write(inode
, ea_buf
->xattr
, new_size
, &ea_buf
->new_ea
);
643 kfree(ea_buf
->xattr
);
644 } else if (ea_buf
->flag
& EA_NEW
) {
645 /* We have already allocated a new dxd */
646 flush_metapage(ea_buf
->mp
);
648 /* ->xattr must point to original ea's metapage */
649 rc
= ea_write(inode
, ea_buf
->xattr
, new_size
, &ea_buf
->new_ea
);
650 discard_metapage(ea_buf
->mp
);
655 old_blocks
= new_blocks
= 0;
657 if (ji
->ea
.flag
& DXD_EXTENT
) {
658 invalidate_dxd_metapages(inode
, ji
->ea
);
659 old_blocks
= lengthDXD(&ji
->ea
);
663 txEA(tid
, inode
, &ji
->ea
, &ea_buf
->new_ea
);
664 if (ea_buf
->new_ea
.flag
& DXD_EXTENT
) {
665 new_blocks
= lengthDXD(&ea_buf
->new_ea
);
666 if (ji
->ea
.flag
& DXD_INLINE
)
667 ji
->mode2
|= INLINEEA
;
669 ji
->ea
= ea_buf
->new_ea
;
671 txEA(tid
, inode
, &ji
->ea
, NULL
);
672 if (ji
->ea
.flag
& DXD_INLINE
)
673 ji
->mode2
|= INLINEEA
;
678 /* If old blocks exist, they must be removed from quota allocation. */
680 DQUOT_FREE_BLOCK(inode
, old_blocks
);
682 inode
->i_ctime
= CURRENT_TIME
;
688 * can_set_system_xattr
690 * This code is specific to the system.* namespace. It contains policy
691 * which doesn't belong in the main xattr codepath.
693 static int can_set_system_xattr(struct inode
*inode
, const char *name
,
694 const void *value
, size_t value_len
)
696 #ifdef CONFIG_JFS_POSIX_ACL
697 struct posix_acl
*acl
;
700 if (!is_owner_or_cap(inode
))
704 * POSIX_ACL_XATTR_ACCESS is tied to i_mode
706 if (strcmp(name
, POSIX_ACL_XATTR_ACCESS
) == 0) {
707 acl
= posix_acl_from_xattr(value
, value_len
);
710 printk(KERN_ERR
"posix_acl_from_xattr returned %d\n",
715 mode_t mode
= inode
->i_mode
;
716 rc
= posix_acl_equiv_mode(acl
, &mode
);
717 posix_acl_release(acl
);
720 "posix_acl_equiv_mode returned %d\n",
724 inode
->i_mode
= mode
;
725 mark_inode_dirty(inode
);
728 * We're changing the ACL. Get rid of the cached one
730 acl
=JFS_IP(inode
)->i_acl
;
731 if (acl
!= JFS_ACL_NOT_CACHED
)
732 posix_acl_release(acl
);
733 JFS_IP(inode
)->i_acl
= JFS_ACL_NOT_CACHED
;
736 } else if (strcmp(name
, POSIX_ACL_XATTR_DEFAULT
) == 0) {
737 acl
= posix_acl_from_xattr(value
, value_len
);
740 printk(KERN_ERR
"posix_acl_from_xattr returned %d\n",
744 posix_acl_release(acl
);
747 * We're changing the default ACL. Get rid of the cached one
749 acl
=JFS_IP(inode
)->i_default_acl
;
750 if (acl
&& (acl
!= JFS_ACL_NOT_CACHED
))
751 posix_acl_release(acl
);
752 JFS_IP(inode
)->i_default_acl
= JFS_ACL_NOT_CACHED
;
756 #endif /* CONFIG_JFS_POSIX_ACL */
761 * Most of the permission checking is done by xattr_permission in the vfs.
762 * The local file system is responsible for handling the system.* namespace.
763 * We also need to verify that this is a namespace that we recognize.
765 static int can_set_xattr(struct inode
*inode
, const char *name
,
766 const void *value
, size_t value_len
)
768 if (!strncmp(name
, XATTR_SYSTEM_PREFIX
, XATTR_SYSTEM_PREFIX_LEN
))
769 return can_set_system_xattr(inode
, name
, value
, value_len
);
772 * Don't allow setting an attribute in an unknown namespace.
774 if (strncmp(name
, XATTR_TRUSTED_PREFIX
, XATTR_TRUSTED_PREFIX_LEN
) &&
775 strncmp(name
, XATTR_SECURITY_PREFIX
, XATTR_SECURITY_PREFIX_LEN
) &&
776 strncmp(name
, XATTR_USER_PREFIX
, XATTR_USER_PREFIX_LEN
) &&
777 strncmp(name
, XATTR_OS2_PREFIX
, XATTR_OS2_PREFIX_LEN
))
783 int __jfs_setxattr(tid_t tid
, struct inode
*inode
, const char *name
,
784 const void *value
, size_t value_len
, int flags
)
786 struct jfs_ea_list
*ealist
;
787 struct jfs_ea
*ea
, *old_ea
= NULL
, *next_ea
= NULL
;
788 struct ea_buffer ea_buf
;
792 int namelen
= strlen(name
);
793 char *os2name
= NULL
;
798 if (strncmp(name
, XATTR_OS2_PREFIX
, XATTR_OS2_PREFIX_LEN
) == 0) {
799 os2name
= kmalloc(namelen
- XATTR_OS2_PREFIX_LEN
+ 1,
803 strcpy(os2name
, name
+ XATTR_OS2_PREFIX_LEN
);
805 namelen
-= XATTR_OS2_PREFIX_LEN
;
808 down_write(&JFS_IP(inode
)->xattr_sem
);
810 xattr_size
= ea_get(inode
, &ea_buf
, 0);
811 if (xattr_size
< 0) {
817 ealist
= (struct jfs_ea_list
*) ea_buf
.xattr
;
818 new_size
= sizeof (struct jfs_ea_list
);
821 for (ea
= FIRST_EA(ealist
); ea
< END_EALIST(ealist
);
823 if ((namelen
== ea
->namelen
) &&
824 (memcmp(name
, ea
->name
, namelen
) == 0)) {
826 if (flags
& XATTR_CREATE
) {
831 old_ea_size
= EA_SIZE(ea
);
832 next_ea
= NEXT_EA(ea
);
834 new_size
+= EA_SIZE(ea
);
839 if (flags
& XATTR_REPLACE
) {
849 new_size
+= sizeof (struct jfs_ea
) + namelen
+ 1 + value_len
;
851 if (new_size
> ea_buf
.max_size
) {
853 * We need to allocate more space for merged ea list.
854 * We should only have loop to again: once.
856 ea_release(inode
, &ea_buf
);
857 xattr_size
= ea_get(inode
, &ea_buf
, new_size
);
858 if (xattr_size
< 0) {
865 /* Remove old ea of the same name */
867 /* number of bytes following target EA */
868 length
= (char *) END_EALIST(ealist
) - (char *) next_ea
;
870 memmove(old_ea
, next_ea
, length
);
871 xattr_size
-= old_ea_size
;
874 /* Add new entry to the end */
877 /* Completely new ea list */
878 xattr_size
= sizeof (struct jfs_ea_list
);
880 ea
= (struct jfs_ea
*) ((char *) ealist
+ xattr_size
);
882 ea
->namelen
= namelen
;
883 ea
->valuelen
= (cpu_to_le16(value_len
));
884 memcpy(ea
->name
, name
, namelen
);
885 ea
->name
[namelen
] = 0;
887 memcpy(&ea
->name
[namelen
+ 1], value
, value_len
);
888 xattr_size
+= EA_SIZE(ea
);
891 /* DEBUG - If we did this right, these number match */
892 if (xattr_size
!= new_size
) {
894 "jfs_xsetattr: xattr_size = %d, new_size = %d\n",
895 xattr_size
, new_size
);
902 * If we're left with an empty list, there's no ea
904 if (new_size
== sizeof (struct jfs_ea_list
))
907 ealist
->size
= cpu_to_le32(new_size
);
909 rc
= ea_put(tid
, inode
, &ea_buf
, new_size
);
913 ea_release(inode
, &ea_buf
);
915 up_write(&JFS_IP(inode
)->xattr_sem
);
922 int jfs_setxattr(struct dentry
*dentry
, const char *name
, const void *value
,
923 size_t value_len
, int flags
)
925 struct inode
*inode
= dentry
->d_inode
;
926 struct jfs_inode_info
*ji
= JFS_IP(inode
);
930 if ((rc
= can_set_xattr(inode
, name
, value
, value_len
)))
933 if (value
== NULL
) { /* empty EA, do not remove */
938 tid
= txBegin(inode
->i_sb
, 0);
939 mutex_lock(&ji
->commit_mutex
);
940 rc
= __jfs_setxattr(tid
, dentry
->d_inode
, name
, value
, value_len
,
943 rc
= txCommit(tid
, 1, &inode
, 0);
945 mutex_unlock(&ji
->commit_mutex
);
950 ssize_t
__jfs_getxattr(struct inode
*inode
, const char *name
, void *data
,
953 struct jfs_ea_list
*ealist
;
955 struct ea_buffer ea_buf
;
958 int namelen
= strlen(name
);
959 char *os2name
= NULL
;
962 if (strncmp(name
, XATTR_OS2_PREFIX
, XATTR_OS2_PREFIX_LEN
) == 0) {
963 os2name
= kmalloc(namelen
- XATTR_OS2_PREFIX_LEN
+ 1,
967 strcpy(os2name
, name
+ XATTR_OS2_PREFIX_LEN
);
969 namelen
-= XATTR_OS2_PREFIX_LEN
;
972 down_read(&JFS_IP(inode
)->xattr_sem
);
974 xattr_size
= ea_get(inode
, &ea_buf
, 0);
976 if (xattr_size
< 0) {
984 ealist
= (struct jfs_ea_list
*) ea_buf
.xattr
;
986 /* Find the named attribute */
987 for (ea
= FIRST_EA(ealist
); ea
< END_EALIST(ealist
); ea
= NEXT_EA(ea
))
988 if ((namelen
== ea
->namelen
) &&
989 memcmp(name
, ea
->name
, namelen
) == 0) {
991 size
= le16_to_cpu(ea
->valuelen
);
994 else if (size
> buf_size
) {
998 value
= ((char *) &ea
->name
) + ea
->namelen
+ 1;
999 memcpy(data
, value
, size
);
1005 ea_release(inode
, &ea_buf
);
1007 up_read(&JFS_IP(inode
)->xattr_sem
);
1014 ssize_t
jfs_getxattr(struct dentry
*dentry
, const char *name
, void *data
,
1019 err
= __jfs_getxattr(dentry
->d_inode
, name
, data
, buf_size
);
1025 * No special permissions are needed to list attributes except for trusted.*
1027 static inline int can_list(struct jfs_ea
*ea
)
1029 return (strncmp(ea
->name
, XATTR_TRUSTED_PREFIX
,
1030 XATTR_TRUSTED_PREFIX_LEN
) ||
1031 capable(CAP_SYS_ADMIN
));
1034 ssize_t
jfs_listxattr(struct dentry
* dentry
, char *data
, size_t buf_size
)
1036 struct inode
*inode
= dentry
->d_inode
;
1040 struct jfs_ea_list
*ealist
;
1042 struct ea_buffer ea_buf
;
1044 down_read(&JFS_IP(inode
)->xattr_sem
);
1046 xattr_size
= ea_get(inode
, &ea_buf
, 0);
1047 if (xattr_size
< 0) {
1052 if (xattr_size
== 0)
1055 ealist
= (struct jfs_ea_list
*) ea_buf
.xattr
;
1057 /* compute required size of list */
1058 for (ea
= FIRST_EA(ealist
); ea
< END_EALIST(ealist
); ea
= NEXT_EA(ea
)) {
1060 size
+= name_size(ea
) + 1;
1066 if (size
> buf_size
) {
1071 /* Copy attribute names to buffer */
1073 for (ea
= FIRST_EA(ealist
); ea
< END_EALIST(ealist
); ea
= NEXT_EA(ea
)) {
1075 int namelen
= copy_name(buffer
, ea
);
1076 buffer
+= namelen
+ 1;
1081 ea_release(inode
, &ea_buf
);
1083 up_read(&JFS_IP(inode
)->xattr_sem
);
1087 int jfs_removexattr(struct dentry
*dentry
, const char *name
)
1089 struct inode
*inode
= dentry
->d_inode
;
1090 struct jfs_inode_info
*ji
= JFS_IP(inode
);
1094 if ((rc
= can_set_xattr(inode
, name
, NULL
, 0)))
1097 tid
= txBegin(inode
->i_sb
, 0);
1098 mutex_lock(&ji
->commit_mutex
);
1099 rc
= __jfs_setxattr(tid
, dentry
->d_inode
, name
, NULL
, 0, XATTR_REPLACE
);
1101 rc
= txCommit(tid
, 1, &inode
, 0);
1103 mutex_unlock(&ji
->commit_mutex
);
1108 #ifdef CONFIG_JFS_SECURITY
1109 int jfs_init_security(tid_t tid
, struct inode
*inode
, struct inode
*dir
)
1117 rc
= security_inode_init_security(inode
, dir
, &suffix
, &value
, &len
);
1119 if (rc
== -EOPNOTSUPP
)
1123 name
= kmalloc(XATTR_SECURITY_PREFIX_LEN
+ 1 + strlen(suffix
),
1127 goto kmalloc_failed
;
1129 strcpy(name
, XATTR_SECURITY_PREFIX
);
1130 strcpy(name
+ XATTR_SECURITY_PREFIX_LEN
, suffix
);
1132 rc
= __jfs_setxattr(tid
, inode
, name
, value
, len
, 0);