2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
10 #include <linux/slab.h>
11 #include <linux/spinlock.h>
12 #include <linux/completion.h>
13 #include <linux/buffer_head.h>
14 #include <linux/xattr.h>
15 #include <linux/gfs2_ondisk.h>
16 #include <asm/uaccess.h>
31 * ea_calc_size - returns the acutal number of bytes the request will take up
32 * (not counting any unstuffed data blocks)
37 * Returns: 1 if the EA should be stuffed
40 static int ea_calc_size(struct gfs2_sbd
*sdp
, unsigned int nsize
, size_t dsize
,
43 unsigned int jbsize
= sdp
->sd_jbsize
;
46 *size
= ALIGN(sizeof(struct gfs2_ea_header
) + nsize
+ dsize
, 8);
52 *size
= ALIGN(sizeof(struct gfs2_ea_header
) + nsize
+
53 (sizeof(__be64
) * DIV_ROUND_UP(dsize
, jbsize
)), 8);
58 static int ea_check_size(struct gfs2_sbd
*sdp
, unsigned int nsize
, size_t dsize
)
62 if (dsize
> GFS2_EA_MAX_DATA_LEN
)
65 ea_calc_size(sdp
, nsize
, dsize
, &size
);
67 /* This can only happen with 512 byte blocks */
68 if (size
> sdp
->sd_jbsize
)
74 typedef int (*ea_call_t
) (struct gfs2_inode
*ip
, struct buffer_head
*bh
,
75 struct gfs2_ea_header
*ea
,
76 struct gfs2_ea_header
*prev
, void *private);
78 static int ea_foreach_i(struct gfs2_inode
*ip
, struct buffer_head
*bh
,
79 ea_call_t ea_call
, void *data
)
81 struct gfs2_ea_header
*ea
, *prev
= NULL
;
84 if (gfs2_metatype_check(GFS2_SB(&ip
->i_inode
), bh
, GFS2_METATYPE_EA
))
87 for (ea
= GFS2_EA_BH2FIRST(bh
);; prev
= ea
, ea
= GFS2_EA2NEXT(ea
)) {
88 if (!GFS2_EA_REC_LEN(ea
))
90 if (!(bh
->b_data
<= (char *)ea
&& (char *)GFS2_EA2NEXT(ea
) <=
91 bh
->b_data
+ bh
->b_size
))
93 if (!GFS2_EATYPE_VALID(ea
->ea_type
))
96 error
= ea_call(ip
, bh
, ea
, prev
, data
);
100 if (GFS2_EA_IS_LAST(ea
)) {
101 if ((char *)GFS2_EA2NEXT(ea
) !=
102 bh
->b_data
+ bh
->b_size
)
111 gfs2_consist_inode(ip
);
115 static int ea_foreach(struct gfs2_inode
*ip
, ea_call_t ea_call
, void *data
)
117 struct buffer_head
*bh
, *eabh
;
121 error
= gfs2_meta_read(ip
->i_gl
, ip
->i_eattr
, DIO_WAIT
, &bh
);
125 if (!(ip
->i_diskflags
& GFS2_DIF_EA_INDIRECT
)) {
126 error
= ea_foreach_i(ip
, bh
, ea_call
, data
);
130 if (gfs2_metatype_check(GFS2_SB(&ip
->i_inode
), bh
, GFS2_METATYPE_IN
)) {
135 eablk
= (__be64
*)(bh
->b_data
+ sizeof(struct gfs2_meta_header
));
136 end
= eablk
+ GFS2_SB(&ip
->i_inode
)->sd_inptrs
;
138 for (; eablk
< end
; eablk
++) {
143 bn
= be64_to_cpu(*eablk
);
145 error
= gfs2_meta_read(ip
->i_gl
, bn
, DIO_WAIT
, &eabh
);
148 error
= ea_foreach_i(ip
, eabh
, ea_call
, data
);
162 struct gfs2_ea_location
*ef_el
;
165 static int ea_find_i(struct gfs2_inode
*ip
, struct buffer_head
*bh
,
166 struct gfs2_ea_header
*ea
, struct gfs2_ea_header
*prev
,
169 struct ea_find
*ef
= private;
171 if (ea
->ea_type
== GFS2_EATYPE_UNUSED
)
174 if (ea
->ea_type
== ef
->type
) {
175 if (ea
->ea_name_len
== ef
->namel
&&
176 !memcmp(GFS2_EA2NAME(ea
), ef
->name
, ea
->ea_name_len
)) {
177 struct gfs2_ea_location
*el
= ef
->ef_el
;
189 static int gfs2_ea_find(struct gfs2_inode
*ip
, int type
, const char *name
,
190 struct gfs2_ea_location
*el
)
197 ef
.namel
= strlen(name
);
200 memset(el
, 0, sizeof(struct gfs2_ea_location
));
202 error
= ea_foreach(ip
, ea_find_i
, &ef
);
210 * ea_dealloc_unstuffed -
217 * Take advantage of the fact that all unstuffed blocks are
218 * allocated from the same RG. But watch, this may not always
224 static int ea_dealloc_unstuffed(struct gfs2_inode
*ip
, struct buffer_head
*bh
,
225 struct gfs2_ea_header
*ea
,
226 struct gfs2_ea_header
*prev
, void *private)
228 int *leave
= private;
229 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
230 struct gfs2_rgrpd
*rgd
;
231 struct gfs2_holder rg_gh
;
232 struct buffer_head
*dibh
;
236 unsigned int blen
= 0;
237 unsigned int blks
= 0;
241 if (GFS2_EA_IS_STUFFED(ea
))
244 dataptrs
= GFS2_EA2DATAPTRS(ea
);
245 for (x
= 0; x
< ea
->ea_num_ptrs
; x
++, dataptrs
++) {
248 bn
= be64_to_cpu(*dataptrs
);
254 rgd
= gfs2_blk2rgrpd(sdp
, bn
);
256 gfs2_consist_inode(ip
);
260 error
= gfs2_glock_nq_init(rgd
->rd_gl
, LM_ST_EXCLUSIVE
, 0, &rg_gh
);
264 error
= gfs2_trans_begin(sdp
, rgd
->rd_length
+ RES_DINODE
+
265 RES_EATTR
+ RES_STATFS
+ RES_QUOTA
, blks
);
269 gfs2_trans_add_bh(ip
->i_gl
, bh
, 1);
271 dataptrs
= GFS2_EA2DATAPTRS(ea
);
272 for (x
= 0; x
< ea
->ea_num_ptrs
; x
++, dataptrs
++) {
275 bn
= be64_to_cpu(*dataptrs
);
277 if (bstart
+ blen
== bn
)
281 gfs2_free_meta(ip
, bstart
, blen
);
287 gfs2_add_inode_blocks(&ip
->i_inode
, -1);
290 gfs2_free_meta(ip
, bstart
, blen
);
292 if (prev
&& !leave
) {
295 len
= GFS2_EA_REC_LEN(prev
) + GFS2_EA_REC_LEN(ea
);
296 prev
->ea_rec_len
= cpu_to_be32(len
);
298 if (GFS2_EA_IS_LAST(ea
))
299 prev
->ea_flags
|= GFS2_EAFLAG_LAST
;
301 ea
->ea_type
= GFS2_EATYPE_UNUSED
;
305 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
307 ip
->i_inode
.i_ctime
= CURRENT_TIME
;
308 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
309 gfs2_dinode_out(ip
, dibh
->b_data
);
316 gfs2_glock_dq_uninit(&rg_gh
);
320 static int ea_remove_unstuffed(struct gfs2_inode
*ip
, struct buffer_head
*bh
,
321 struct gfs2_ea_header
*ea
,
322 struct gfs2_ea_header
*prev
, int leave
)
324 struct gfs2_qadata
*qa
;
327 qa
= gfs2_qadata_get(ip
);
331 error
= gfs2_quota_hold(ip
, NO_QUOTA_CHANGE
, NO_QUOTA_CHANGE
);
335 error
= ea_dealloc_unstuffed(ip
, bh
, ea
, prev
, (leave
) ? &error
: NULL
);
337 gfs2_quota_unhold(ip
);
344 struct gfs2_ea_request
*ei_er
;
345 unsigned int ei_size
;
348 static inline unsigned int gfs2_ea_strlen(struct gfs2_ea_header
*ea
)
350 switch (ea
->ea_type
) {
351 case GFS2_EATYPE_USR
:
352 return 5 + ea
->ea_name_len
+ 1;
353 case GFS2_EATYPE_SYS
:
354 return 7 + ea
->ea_name_len
+ 1;
355 case GFS2_EATYPE_SECURITY
:
356 return 9 + ea
->ea_name_len
+ 1;
362 static int ea_list_i(struct gfs2_inode
*ip
, struct buffer_head
*bh
,
363 struct gfs2_ea_header
*ea
, struct gfs2_ea_header
*prev
,
366 struct ea_list
*ei
= private;
367 struct gfs2_ea_request
*er
= ei
->ei_er
;
368 unsigned int ea_size
= gfs2_ea_strlen(ea
);
370 if (ea
->ea_type
== GFS2_EATYPE_UNUSED
)
373 if (er
->er_data_len
) {
378 if (ei
->ei_size
+ ea_size
> er
->er_data_len
)
381 switch (ea
->ea_type
) {
382 case GFS2_EATYPE_USR
:
386 case GFS2_EATYPE_SYS
:
390 case GFS2_EATYPE_SECURITY
:
391 prefix
= "security.";
398 memcpy(er
->er_data
+ ei
->ei_size
, prefix
, l
);
399 memcpy(er
->er_data
+ ei
->ei_size
+ l
, GFS2_EA2NAME(ea
),
401 memcpy(er
->er_data
+ ei
->ei_size
+ ea_size
- 1, &c
, 1);
404 ei
->ei_size
+= ea_size
;
410 * gfs2_listxattr - List gfs2 extended attributes
411 * @dentry: The dentry whose inode we are interested in
412 * @buffer: The buffer to write the results
413 * @size: The size of the buffer
415 * Returns: actual size of data on success, -errno on error
418 ssize_t
gfs2_listxattr(struct dentry
*dentry
, char *buffer
, size_t size
)
420 struct gfs2_inode
*ip
= GFS2_I(dentry
->d_inode
);
421 struct gfs2_ea_request er
;
422 struct gfs2_holder i_gh
;
425 memset(&er
, 0, sizeof(struct gfs2_ea_request
));
428 er
.er_data_len
= size
;
431 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_SHARED
, LM_FLAG_ANY
, &i_gh
);
436 struct ea_list ei
= { .ei_er
= &er
, .ei_size
= 0 };
438 error
= ea_foreach(ip
, ea_list_i
, &ei
);
443 gfs2_glock_dq_uninit(&i_gh
);
449 * ea_get_unstuffed - actually copies the unstuffed data into the
451 * @ip: The GFS2 inode
452 * @ea: The extended attribute header structure
453 * @data: The data to be copied
458 static int ea_get_unstuffed(struct gfs2_inode
*ip
, struct gfs2_ea_header
*ea
,
461 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
462 struct buffer_head
**bh
;
463 unsigned int amount
= GFS2_EA_DATA_LEN(ea
);
464 unsigned int nptrs
= DIV_ROUND_UP(amount
, sdp
->sd_jbsize
);
465 __be64
*dataptrs
= GFS2_EA2DATAPTRS(ea
);
469 bh
= kcalloc(nptrs
, sizeof(struct buffer_head
*), GFP_NOFS
);
473 for (x
= 0; x
< nptrs
; x
++) {
474 error
= gfs2_meta_read(ip
->i_gl
, be64_to_cpu(*dataptrs
), 0,
484 for (x
= 0; x
< nptrs
; x
++) {
485 error
= gfs2_meta_wait(sdp
, bh
[x
]);
487 for (; x
< nptrs
; x
++)
491 if (gfs2_metatype_check(sdp
, bh
[x
], GFS2_METATYPE_ED
)) {
492 for (; x
< nptrs
; x
++)
498 memcpy(data
, bh
[x
]->b_data
+ sizeof(struct gfs2_meta_header
),
499 (sdp
->sd_jbsize
> amount
) ? amount
: sdp
->sd_jbsize
);
501 amount
-= sdp
->sd_jbsize
;
502 data
+= sdp
->sd_jbsize
;
512 static int gfs2_ea_get_copy(struct gfs2_inode
*ip
, struct gfs2_ea_location
*el
,
513 char *data
, size_t size
)
516 size_t len
= GFS2_EA_DATA_LEN(el
->el_ea
);
520 if (GFS2_EA_IS_STUFFED(el
->el_ea
)) {
521 memcpy(data
, GFS2_EA2DATA(el
->el_ea
), len
);
524 ret
= ea_get_unstuffed(ip
, el
->el_ea
, data
);
530 int gfs2_xattr_acl_get(struct gfs2_inode
*ip
, const char *name
, char **ppdata
)
532 struct gfs2_ea_location el
;
537 error
= gfs2_ea_find(ip
, GFS2_EATYPE_SYS
, name
, &el
);
542 if (!GFS2_EA_DATA_LEN(el
.el_ea
))
545 len
= GFS2_EA_DATA_LEN(el
.el_ea
);
546 data
= kmalloc(len
, GFP_NOFS
);
551 error
= gfs2_ea_get_copy(ip
, &el
, data
, len
);
562 * gfs2_xattr_get - Get a GFS2 extended attribute
564 * @name: The name of the extended attribute
565 * @buffer: The buffer to write the result into
566 * @size: The size of the buffer
567 * @type: The type of extended attribute
569 * Returns: actual size of data on success, -errno on error
571 static int gfs2_xattr_get(struct dentry
*dentry
, const char *name
,
572 void *buffer
, size_t size
, int type
)
574 struct gfs2_inode
*ip
= GFS2_I(dentry
->d_inode
);
575 struct gfs2_ea_location el
;
580 if (strlen(name
) > GFS2_EA_MAX_NAME_LEN
)
583 error
= gfs2_ea_find(ip
, type
, name
, &el
);
589 error
= gfs2_ea_get_copy(ip
, &el
, buffer
, size
);
591 error
= GFS2_EA_DATA_LEN(el
.el_ea
);
598 * ea_alloc_blk - allocates a new block for extended attributes.
599 * @ip: A pointer to the inode that's getting extended attributes
600 * @bhp: Pointer to pointer to a struct buffer_head
605 static int ea_alloc_blk(struct gfs2_inode
*ip
, struct buffer_head
**bhp
)
607 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
608 struct gfs2_ea_header
*ea
;
613 error
= gfs2_alloc_blocks(ip
, &block
, &n
, 0, NULL
);
616 gfs2_trans_add_unrevoke(sdp
, block
, 1);
617 *bhp
= gfs2_meta_new(ip
->i_gl
, block
);
618 gfs2_trans_add_bh(ip
->i_gl
, *bhp
, 1);
619 gfs2_metatype_set(*bhp
, GFS2_METATYPE_EA
, GFS2_FORMAT_EA
);
620 gfs2_buffer_clear_tail(*bhp
, sizeof(struct gfs2_meta_header
));
622 ea
= GFS2_EA_BH2FIRST(*bhp
);
623 ea
->ea_rec_len
= cpu_to_be32(sdp
->sd_jbsize
);
624 ea
->ea_type
= GFS2_EATYPE_UNUSED
;
625 ea
->ea_flags
= GFS2_EAFLAG_LAST
;
628 gfs2_add_inode_blocks(&ip
->i_inode
, 1);
634 * ea_write - writes the request info to an ea, creating new blocks if
636 * @ip: inode that is being modified
637 * @ea: the location of the new ea in a block
638 * @er: the write request
640 * Note: does not update ea_rec_len or the GFS2_EAFLAG_LAST bin of ea_flags
645 static int ea_write(struct gfs2_inode
*ip
, struct gfs2_ea_header
*ea
,
646 struct gfs2_ea_request
*er
)
648 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
651 ea
->ea_data_len
= cpu_to_be32(er
->er_data_len
);
652 ea
->ea_name_len
= er
->er_name_len
;
653 ea
->ea_type
= er
->er_type
;
656 memcpy(GFS2_EA2NAME(ea
), er
->er_name
, er
->er_name_len
);
658 if (GFS2_EAREQ_SIZE_STUFFED(er
) <= sdp
->sd_jbsize
) {
660 memcpy(GFS2_EA2DATA(ea
), er
->er_data
, er
->er_data_len
);
662 __be64
*dataptr
= GFS2_EA2DATAPTRS(ea
);
663 const char *data
= er
->er_data
;
664 unsigned int data_len
= er
->er_data_len
;
668 ea
->ea_num_ptrs
= DIV_ROUND_UP(er
->er_data_len
, sdp
->sd_jbsize
);
669 for (x
= 0; x
< ea
->ea_num_ptrs
; x
++) {
670 struct buffer_head
*bh
;
672 int mh_size
= sizeof(struct gfs2_meta_header
);
675 error
= gfs2_alloc_blocks(ip
, &block
, &n
, 0, NULL
);
678 gfs2_trans_add_unrevoke(sdp
, block
, 1);
679 bh
= gfs2_meta_new(ip
->i_gl
, block
);
680 gfs2_trans_add_bh(ip
->i_gl
, bh
, 1);
681 gfs2_metatype_set(bh
, GFS2_METATYPE_ED
, GFS2_FORMAT_ED
);
683 gfs2_add_inode_blocks(&ip
->i_inode
, 1);
685 copy
= data_len
> sdp
->sd_jbsize
? sdp
->sd_jbsize
:
687 memcpy(bh
->b_data
+ mh_size
, data
, copy
);
688 if (copy
< sdp
->sd_jbsize
)
689 memset(bh
->b_data
+ mh_size
+ copy
, 0,
690 sdp
->sd_jbsize
- copy
);
692 *dataptr
++ = cpu_to_be64(bh
->b_blocknr
);
699 gfs2_assert_withdraw(sdp
, !data_len
);
705 typedef int (*ea_skeleton_call_t
) (struct gfs2_inode
*ip
,
706 struct gfs2_ea_request
*er
, void *private);
708 static int ea_alloc_skeleton(struct gfs2_inode
*ip
, struct gfs2_ea_request
*er
,
710 ea_skeleton_call_t skeleton_call
, void *private)
712 struct gfs2_qadata
*qa
;
713 struct buffer_head
*dibh
;
716 qa
= gfs2_qadata_get(ip
);
720 error
= gfs2_quota_lock_check(ip
);
724 error
= gfs2_inplace_reserve(ip
, blks
);
728 error
= gfs2_trans_begin(GFS2_SB(&ip
->i_inode
),
729 blks
+ gfs2_rg_blocks(ip
) +
730 RES_DINODE
+ RES_STATFS
+ RES_QUOTA
, 0);
734 error
= skeleton_call(ip
, er
, private);
738 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
740 ip
->i_inode
.i_ctime
= CURRENT_TIME
;
741 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
742 gfs2_dinode_out(ip
, dibh
->b_data
);
747 gfs2_trans_end(GFS2_SB(&ip
->i_inode
));
749 gfs2_inplace_release(ip
);
751 gfs2_quota_unlock(ip
);
757 static int ea_init_i(struct gfs2_inode
*ip
, struct gfs2_ea_request
*er
,
760 struct buffer_head
*bh
;
763 error
= ea_alloc_blk(ip
, &bh
);
767 ip
->i_eattr
= bh
->b_blocknr
;
768 error
= ea_write(ip
, GFS2_EA_BH2FIRST(bh
), er
);
776 * ea_init - initializes a new eattr block
783 static int ea_init(struct gfs2_inode
*ip
, int type
, const char *name
,
784 const void *data
, size_t size
)
786 struct gfs2_ea_request er
;
787 unsigned int jbsize
= GFS2_SB(&ip
->i_inode
)->sd_jbsize
;
788 unsigned int blks
= 1;
792 er
.er_name_len
= strlen(name
);
793 er
.er_data
= (void *)data
;
794 er
.er_data_len
= size
;
796 if (GFS2_EAREQ_SIZE_STUFFED(&er
) > jbsize
)
797 blks
+= DIV_ROUND_UP(er
.er_data_len
, jbsize
);
799 return ea_alloc_skeleton(ip
, &er
, blks
, ea_init_i
, NULL
);
802 static struct gfs2_ea_header
*ea_split_ea(struct gfs2_ea_header
*ea
)
804 u32 ea_size
= GFS2_EA_SIZE(ea
);
805 struct gfs2_ea_header
*new = (struct gfs2_ea_header
*)((char *)ea
+
807 u32 new_size
= GFS2_EA_REC_LEN(ea
) - ea_size
;
808 int last
= ea
->ea_flags
& GFS2_EAFLAG_LAST
;
810 ea
->ea_rec_len
= cpu_to_be32(ea_size
);
811 ea
->ea_flags
^= last
;
813 new->ea_rec_len
= cpu_to_be32(new_size
);
814 new->ea_flags
= last
;
819 static void ea_set_remove_stuffed(struct gfs2_inode
*ip
,
820 struct gfs2_ea_location
*el
)
822 struct gfs2_ea_header
*ea
= el
->el_ea
;
823 struct gfs2_ea_header
*prev
= el
->el_prev
;
826 gfs2_trans_add_bh(ip
->i_gl
, el
->el_bh
, 1);
828 if (!prev
|| !GFS2_EA_IS_STUFFED(ea
)) {
829 ea
->ea_type
= GFS2_EATYPE_UNUSED
;
831 } else if (GFS2_EA2NEXT(prev
) != ea
) {
832 prev
= GFS2_EA2NEXT(prev
);
833 gfs2_assert_withdraw(GFS2_SB(&ip
->i_inode
), GFS2_EA2NEXT(prev
) == ea
);
836 len
= GFS2_EA_REC_LEN(prev
) + GFS2_EA_REC_LEN(ea
);
837 prev
->ea_rec_len
= cpu_to_be32(len
);
839 if (GFS2_EA_IS_LAST(ea
))
840 prev
->ea_flags
|= GFS2_EAFLAG_LAST
;
846 struct gfs2_ea_request
*es_er
;
847 struct gfs2_ea_location
*es_el
;
849 struct buffer_head
*es_bh
;
850 struct gfs2_ea_header
*es_ea
;
853 static int ea_set_simple_noalloc(struct gfs2_inode
*ip
, struct buffer_head
*bh
,
854 struct gfs2_ea_header
*ea
, struct ea_set
*es
)
856 struct gfs2_ea_request
*er
= es
->es_er
;
857 struct buffer_head
*dibh
;
860 error
= gfs2_trans_begin(GFS2_SB(&ip
->i_inode
), RES_DINODE
+ 2 * RES_EATTR
, 0);
864 gfs2_trans_add_bh(ip
->i_gl
, bh
, 1);
867 ea
= ea_split_ea(ea
);
869 ea_write(ip
, ea
, er
);
872 ea_set_remove_stuffed(ip
, es
->es_el
);
874 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
877 ip
->i_inode
.i_ctime
= CURRENT_TIME
;
878 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
879 gfs2_dinode_out(ip
, dibh
->b_data
);
882 gfs2_trans_end(GFS2_SB(&ip
->i_inode
));
886 static int ea_set_simple_alloc(struct gfs2_inode
*ip
,
887 struct gfs2_ea_request
*er
, void *private)
889 struct ea_set
*es
= private;
890 struct gfs2_ea_header
*ea
= es
->es_ea
;
893 gfs2_trans_add_bh(ip
->i_gl
, es
->es_bh
, 1);
896 ea
= ea_split_ea(ea
);
898 error
= ea_write(ip
, ea
, er
);
903 ea_set_remove_stuffed(ip
, es
->es_el
);
908 static int ea_set_simple(struct gfs2_inode
*ip
, struct buffer_head
*bh
,
909 struct gfs2_ea_header
*ea
, struct gfs2_ea_header
*prev
,
912 struct ea_set
*es
= private;
917 stuffed
= ea_calc_size(GFS2_SB(&ip
->i_inode
), es
->es_er
->er_name_len
,
918 es
->es_er
->er_data_len
, &size
);
920 if (ea
->ea_type
== GFS2_EATYPE_UNUSED
) {
921 if (GFS2_EA_REC_LEN(ea
) < size
)
923 if (!GFS2_EA_IS_STUFFED(ea
)) {
924 error
= ea_remove_unstuffed(ip
, bh
, ea
, prev
, 1);
929 } else if (GFS2_EA_REC_LEN(ea
) - GFS2_EA_SIZE(ea
) >= size
)
935 error
= ea_set_simple_noalloc(ip
, bh
, ea
, es
);
943 blks
= 2 + DIV_ROUND_UP(es
->es_er
->er_data_len
,
944 GFS2_SB(&ip
->i_inode
)->sd_jbsize
);
946 error
= ea_alloc_skeleton(ip
, es
->es_er
, blks
,
947 ea_set_simple_alloc
, es
);
955 static int ea_set_block(struct gfs2_inode
*ip
, struct gfs2_ea_request
*er
,
958 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
959 struct buffer_head
*indbh
, *newbh
;
962 int mh_size
= sizeof(struct gfs2_meta_header
);
964 if (ip
->i_diskflags
& GFS2_DIF_EA_INDIRECT
) {
967 error
= gfs2_meta_read(ip
->i_gl
, ip
->i_eattr
, DIO_WAIT
,
972 if (gfs2_metatype_check(sdp
, indbh
, GFS2_METATYPE_IN
)) {
977 eablk
= (__be64
*)(indbh
->b_data
+ mh_size
);
978 end
= eablk
+ sdp
->sd_inptrs
;
980 for (; eablk
< end
; eablk
++)
989 gfs2_trans_add_bh(ip
->i_gl
, indbh
, 1);
993 error
= gfs2_alloc_blocks(ip
, &blk
, &n
, 0, NULL
);
996 gfs2_trans_add_unrevoke(sdp
, blk
, 1);
997 indbh
= gfs2_meta_new(ip
->i_gl
, blk
);
998 gfs2_trans_add_bh(ip
->i_gl
, indbh
, 1);
999 gfs2_metatype_set(indbh
, GFS2_METATYPE_IN
, GFS2_FORMAT_IN
);
1000 gfs2_buffer_clear_tail(indbh
, mh_size
);
1002 eablk
= (__be64
*)(indbh
->b_data
+ mh_size
);
1003 *eablk
= cpu_to_be64(ip
->i_eattr
);
1005 ip
->i_diskflags
|= GFS2_DIF_EA_INDIRECT
;
1006 gfs2_add_inode_blocks(&ip
->i_inode
, 1);
1011 error
= ea_alloc_blk(ip
, &newbh
);
1015 *eablk
= cpu_to_be64((u64
)newbh
->b_blocknr
);
1016 error
= ea_write(ip
, GFS2_EA_BH2FIRST(newbh
), er
);
1022 ea_set_remove_stuffed(ip
, private);
1029 static int ea_set_i(struct gfs2_inode
*ip
, int type
, const char *name
,
1030 const void *value
, size_t size
, struct gfs2_ea_location
*el
)
1032 struct gfs2_ea_request er
;
1034 unsigned int blks
= 2;
1039 er
.er_data
= (void *)value
;
1040 er
.er_name_len
= strlen(name
);
1041 er
.er_data_len
= size
;
1043 memset(&es
, 0, sizeof(struct ea_set
));
1047 error
= ea_foreach(ip
, ea_set_simple
, &es
);
1053 if (!(ip
->i_diskflags
& GFS2_DIF_EA_INDIRECT
))
1055 if (GFS2_EAREQ_SIZE_STUFFED(&er
) > GFS2_SB(&ip
->i_inode
)->sd_jbsize
)
1056 blks
+= DIV_ROUND_UP(er
.er_data_len
, GFS2_SB(&ip
->i_inode
)->sd_jbsize
);
1058 return ea_alloc_skeleton(ip
, &er
, blks
, ea_set_block
, el
);
1061 static int ea_set_remove_unstuffed(struct gfs2_inode
*ip
,
1062 struct gfs2_ea_location
*el
)
1064 if (el
->el_prev
&& GFS2_EA2NEXT(el
->el_prev
) != el
->el_ea
) {
1065 el
->el_prev
= GFS2_EA2NEXT(el
->el_prev
);
1066 gfs2_assert_withdraw(GFS2_SB(&ip
->i_inode
),
1067 GFS2_EA2NEXT(el
->el_prev
) == el
->el_ea
);
1070 return ea_remove_unstuffed(ip
, el
->el_bh
, el
->el_ea
, el
->el_prev
, 0);
1073 static int ea_remove_stuffed(struct gfs2_inode
*ip
, struct gfs2_ea_location
*el
)
1075 struct gfs2_ea_header
*ea
= el
->el_ea
;
1076 struct gfs2_ea_header
*prev
= el
->el_prev
;
1077 struct buffer_head
*dibh
;
1080 error
= gfs2_trans_begin(GFS2_SB(&ip
->i_inode
), RES_DINODE
+ RES_EATTR
, 0);
1084 gfs2_trans_add_bh(ip
->i_gl
, el
->el_bh
, 1);
1089 len
= GFS2_EA_REC_LEN(prev
) + GFS2_EA_REC_LEN(ea
);
1090 prev
->ea_rec_len
= cpu_to_be32(len
);
1092 if (GFS2_EA_IS_LAST(ea
))
1093 prev
->ea_flags
|= GFS2_EAFLAG_LAST
;
1095 ea
->ea_type
= GFS2_EATYPE_UNUSED
;
1098 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1100 ip
->i_inode
.i_ctime
= CURRENT_TIME
;
1101 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
1102 gfs2_dinode_out(ip
, dibh
->b_data
);
1106 gfs2_trans_end(GFS2_SB(&ip
->i_inode
));
1112 * gfs2_xattr_remove - Remove a GFS2 extended attribute
1114 * @type: The type of the extended attribute
1115 * @name: The name of the extended attribute
1117 * This is not called directly by the VFS since we use the (common)
1118 * scheme of making a "set with NULL data" mean a remove request. Note
1119 * that this is different from a set with zero length data.
1121 * Returns: 0, or errno on failure
1124 static int gfs2_xattr_remove(struct gfs2_inode
*ip
, int type
, const char *name
)
1126 struct gfs2_ea_location el
;
1132 error
= gfs2_ea_find(ip
, type
, name
, &el
);
1138 if (GFS2_EA_IS_STUFFED(el
.el_ea
))
1139 error
= ea_remove_stuffed(ip
, &el
);
1141 error
= ea_remove_unstuffed(ip
, el
.el_bh
, el
.el_ea
, el
.el_prev
, 0);
1149 * __gfs2_xattr_set - Set (or remove) a GFS2 extended attribute
1151 * @name: The name of the extended attribute
1152 * @value: The value of the extended attribute (NULL for remove)
1153 * @size: The size of the @value argument
1154 * @flags: Create or Replace
1155 * @type: The type of the extended attribute
1157 * See gfs2_xattr_remove() for details of the removal of xattrs.
1159 * Returns: 0 or errno on failure
1162 int __gfs2_xattr_set(struct inode
*inode
, const char *name
,
1163 const void *value
, size_t size
, int flags
, int type
)
1165 struct gfs2_inode
*ip
= GFS2_I(inode
);
1166 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
1167 struct gfs2_ea_location el
;
1168 unsigned int namel
= strlen(name
);
1171 if (IS_IMMUTABLE(inode
) || IS_APPEND(inode
))
1173 if (namel
> GFS2_EA_MAX_NAME_LEN
)
1177 return gfs2_xattr_remove(ip
, type
, name
);
1179 if (ea_check_size(sdp
, namel
, size
))
1183 if (flags
& XATTR_REPLACE
)
1185 return ea_init(ip
, type
, name
, value
, size
);
1188 error
= gfs2_ea_find(ip
, type
, name
, &el
);
1193 if (ip
->i_diskflags
& GFS2_DIF_APPENDONLY
) {
1199 if (!(flags
& XATTR_CREATE
)) {
1200 int unstuffed
= !GFS2_EA_IS_STUFFED(el
.el_ea
);
1201 error
= ea_set_i(ip
, type
, name
, value
, size
, &el
);
1202 if (!error
&& unstuffed
)
1203 ea_set_remove_unstuffed(ip
, &el
);
1211 if (!(flags
& XATTR_REPLACE
))
1212 error
= ea_set_i(ip
, type
, name
, value
, size
, NULL
);
1217 static int gfs2_xattr_set(struct dentry
*dentry
, const char *name
,
1218 const void *value
, size_t size
, int flags
, int type
)
1220 return __gfs2_xattr_set(dentry
->d_inode
, name
, value
,
1224 static int ea_acl_chmod_unstuffed(struct gfs2_inode
*ip
,
1225 struct gfs2_ea_header
*ea
, char *data
)
1227 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
1228 struct buffer_head
**bh
;
1229 unsigned int amount
= GFS2_EA_DATA_LEN(ea
);
1230 unsigned int nptrs
= DIV_ROUND_UP(amount
, sdp
->sd_jbsize
);
1231 __be64
*dataptrs
= GFS2_EA2DATAPTRS(ea
);
1235 bh
= kcalloc(nptrs
, sizeof(struct buffer_head
*), GFP_NOFS
);
1239 error
= gfs2_trans_begin(sdp
, nptrs
+ RES_DINODE
, 0);
1243 for (x
= 0; x
< nptrs
; x
++) {
1244 error
= gfs2_meta_read(ip
->i_gl
, be64_to_cpu(*dataptrs
), 0,
1254 for (x
= 0; x
< nptrs
; x
++) {
1255 error
= gfs2_meta_wait(sdp
, bh
[x
]);
1257 for (; x
< nptrs
; x
++)
1261 if (gfs2_metatype_check(sdp
, bh
[x
], GFS2_METATYPE_ED
)) {
1262 for (; x
< nptrs
; x
++)
1268 gfs2_trans_add_bh(ip
->i_gl
, bh
[x
], 1);
1270 memcpy(bh
[x
]->b_data
+ sizeof(struct gfs2_meta_header
), data
,
1271 (sdp
->sd_jbsize
> amount
) ? amount
: sdp
->sd_jbsize
);
1273 amount
-= sdp
->sd_jbsize
;
1274 data
+= sdp
->sd_jbsize
;
1284 gfs2_trans_end(sdp
);
1289 int gfs2_xattr_acl_chmod(struct gfs2_inode
*ip
, struct iattr
*attr
, char *data
)
1291 struct inode
*inode
= &ip
->i_inode
;
1292 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
1293 struct gfs2_ea_location el
;
1296 error
= gfs2_ea_find(ip
, GFS2_EATYPE_SYS
, GFS2_POSIX_ACL_ACCESS
, &el
);
1300 if (GFS2_EA_IS_STUFFED(el
.el_ea
)) {
1301 error
= gfs2_trans_begin(sdp
, RES_DINODE
+ RES_EATTR
, 0);
1303 gfs2_trans_add_bh(ip
->i_gl
, el
.el_bh
, 1);
1304 memcpy(GFS2_EA2DATA(el
.el_ea
), data
,
1305 GFS2_EA_DATA_LEN(el
.el_ea
));
1308 error
= ea_acl_chmod_unstuffed(ip
, el
.el_ea
, data
);
1315 error
= gfs2_setattr_simple(inode
, attr
);
1316 gfs2_trans_end(sdp
);
1320 static int ea_dealloc_indirect(struct gfs2_inode
*ip
)
1322 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
1323 struct gfs2_rgrp_list rlist
;
1324 struct buffer_head
*indbh
, *dibh
;
1325 __be64
*eablk
, *end
;
1326 unsigned int rg_blocks
= 0;
1328 unsigned int blen
= 0;
1329 unsigned int blks
= 0;
1333 memset(&rlist
, 0, sizeof(struct gfs2_rgrp_list
));
1335 error
= gfs2_meta_read(ip
->i_gl
, ip
->i_eattr
, DIO_WAIT
, &indbh
);
1339 if (gfs2_metatype_check(sdp
, indbh
, GFS2_METATYPE_IN
)) {
1344 eablk
= (__be64
*)(indbh
->b_data
+ sizeof(struct gfs2_meta_header
));
1345 end
= eablk
+ sdp
->sd_inptrs
;
1347 for (; eablk
< end
; eablk
++) {
1352 bn
= be64_to_cpu(*eablk
);
1354 if (bstart
+ blen
== bn
)
1358 gfs2_rlist_add(ip
, &rlist
, bstart
);
1365 gfs2_rlist_add(ip
, &rlist
, bstart
);
1369 gfs2_rlist_alloc(&rlist
, LM_ST_EXCLUSIVE
);
1371 for (x
= 0; x
< rlist
.rl_rgrps
; x
++) {
1372 struct gfs2_rgrpd
*rgd
;
1373 rgd
= rlist
.rl_ghs
[x
].gh_gl
->gl_object
;
1374 rg_blocks
+= rgd
->rd_length
;
1377 error
= gfs2_glock_nq_m(rlist
.rl_rgrps
, rlist
.rl_ghs
);
1379 goto out_rlist_free
;
1381 error
= gfs2_trans_begin(sdp
, rg_blocks
+ RES_DINODE
+ RES_INDIRECT
+
1382 RES_STATFS
+ RES_QUOTA
, blks
);
1386 gfs2_trans_add_bh(ip
->i_gl
, indbh
, 1);
1388 eablk
= (__be64
*)(indbh
->b_data
+ sizeof(struct gfs2_meta_header
));
1392 for (; eablk
< end
; eablk
++) {
1397 bn
= be64_to_cpu(*eablk
);
1399 if (bstart
+ blen
== bn
)
1403 gfs2_free_meta(ip
, bstart
, blen
);
1409 gfs2_add_inode_blocks(&ip
->i_inode
, -1);
1412 gfs2_free_meta(ip
, bstart
, blen
);
1414 ip
->i_diskflags
&= ~GFS2_DIF_EA_INDIRECT
;
1416 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1418 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
1419 gfs2_dinode_out(ip
, dibh
->b_data
);
1423 gfs2_trans_end(sdp
);
1426 gfs2_glock_dq_m(rlist
.rl_rgrps
, rlist
.rl_ghs
);
1428 gfs2_rlist_free(&rlist
);
1434 static int ea_dealloc_block(struct gfs2_inode
*ip
)
1436 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
1437 struct gfs2_rgrpd
*rgd
;
1438 struct buffer_head
*dibh
;
1439 struct gfs2_holder gh
;
1442 rgd
= gfs2_blk2rgrpd(sdp
, ip
->i_eattr
);
1444 gfs2_consist_inode(ip
);
1448 error
= gfs2_glock_nq_init(rgd
->rd_gl
, LM_ST_EXCLUSIVE
, 0, &gh
);
1452 error
= gfs2_trans_begin(sdp
, RES_RG_BIT
+ RES_DINODE
+ RES_STATFS
+
1457 gfs2_free_meta(ip
, ip
->i_eattr
, 1);
1460 gfs2_add_inode_blocks(&ip
->i_inode
, -1);
1462 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1464 gfs2_trans_add_bh(ip
->i_gl
, dibh
, 1);
1465 gfs2_dinode_out(ip
, dibh
->b_data
);
1469 gfs2_trans_end(sdp
);
1472 gfs2_glock_dq_uninit(&gh
);
1477 * gfs2_ea_dealloc - deallocate the extended attribute fork
1483 int gfs2_ea_dealloc(struct gfs2_inode
*ip
)
1485 struct gfs2_qadata
*qa
;
1488 qa
= gfs2_qadata_get(ip
);
1492 error
= gfs2_quota_hold(ip
, NO_QUOTA_CHANGE
, NO_QUOTA_CHANGE
);
1496 error
= ea_foreach(ip
, ea_dealloc_unstuffed
, NULL
);
1500 if (ip
->i_diskflags
& GFS2_DIF_EA_INDIRECT
) {
1501 error
= ea_dealloc_indirect(ip
);
1506 error
= ea_dealloc_block(ip
);
1509 gfs2_quota_unhold(ip
);
1511 gfs2_qadata_put(ip
);
1515 static const struct xattr_handler gfs2_xattr_user_handler
= {
1516 .prefix
= XATTR_USER_PREFIX
,
1517 .flags
= GFS2_EATYPE_USR
,
1518 .get
= gfs2_xattr_get
,
1519 .set
= gfs2_xattr_set
,
1522 static const struct xattr_handler gfs2_xattr_security_handler
= {
1523 .prefix
= XATTR_SECURITY_PREFIX
,
1524 .flags
= GFS2_EATYPE_SECURITY
,
1525 .get
= gfs2_xattr_get
,
1526 .set
= gfs2_xattr_set
,
1529 const struct xattr_handler
*gfs2_xattr_handlers
[] = {
1530 &gfs2_xattr_user_handler
,
1531 &gfs2_xattr_security_handler
,
1532 &gfs2_xattr_system_handler
,