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 error
= gfs2_rindex_update(sdp
);
245 if (GFS2_EA_IS_STUFFED(ea
))
248 dataptrs
= GFS2_EA2DATAPTRS(ea
);
249 for (x
= 0; x
< ea
->ea_num_ptrs
; x
++, dataptrs
++) {
252 bn
= be64_to_cpu(*dataptrs
);
258 rgd
= gfs2_blk2rgrpd(sdp
, bn
, 1);
260 gfs2_consist_inode(ip
);
264 error
= gfs2_glock_nq_init(rgd
->rd_gl
, LM_ST_EXCLUSIVE
, 0, &rg_gh
);
268 error
= gfs2_trans_begin(sdp
, rgd
->rd_length
+ RES_DINODE
+
269 RES_EATTR
+ RES_STATFS
+ RES_QUOTA
, blks
);
273 gfs2_trans_add_meta(ip
->i_gl
, bh
);
275 dataptrs
= GFS2_EA2DATAPTRS(ea
);
276 for (x
= 0; x
< ea
->ea_num_ptrs
; x
++, dataptrs
++) {
279 bn
= be64_to_cpu(*dataptrs
);
281 if (bstart
+ blen
== bn
)
285 gfs2_free_meta(ip
, bstart
, blen
);
291 gfs2_add_inode_blocks(&ip
->i_inode
, -1);
294 gfs2_free_meta(ip
, bstart
, blen
);
296 if (prev
&& !leave
) {
299 len
= GFS2_EA_REC_LEN(prev
) + GFS2_EA_REC_LEN(ea
);
300 prev
->ea_rec_len
= cpu_to_be32(len
);
302 if (GFS2_EA_IS_LAST(ea
))
303 prev
->ea_flags
|= GFS2_EAFLAG_LAST
;
305 ea
->ea_type
= GFS2_EATYPE_UNUSED
;
309 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
311 ip
->i_inode
.i_ctime
= CURRENT_TIME
;
312 gfs2_trans_add_meta(ip
->i_gl
, dibh
);
313 gfs2_dinode_out(ip
, dibh
->b_data
);
320 gfs2_glock_dq_uninit(&rg_gh
);
324 static int ea_remove_unstuffed(struct gfs2_inode
*ip
, struct buffer_head
*bh
,
325 struct gfs2_ea_header
*ea
,
326 struct gfs2_ea_header
*prev
, int leave
)
330 error
= gfs2_rindex_update(GFS2_SB(&ip
->i_inode
));
334 error
= gfs2_quota_hold(ip
, NO_UID_QUOTA_CHANGE
, NO_GID_QUOTA_CHANGE
);
338 error
= ea_dealloc_unstuffed(ip
, bh
, ea
, prev
, (leave
) ? &error
: NULL
);
340 gfs2_quota_unhold(ip
);
346 struct gfs2_ea_request
*ei_er
;
347 unsigned int ei_size
;
350 static inline unsigned int gfs2_ea_strlen(struct gfs2_ea_header
*ea
)
352 switch (ea
->ea_type
) {
353 case GFS2_EATYPE_USR
:
354 return 5 + ea
->ea_name_len
+ 1;
355 case GFS2_EATYPE_SYS
:
356 return 7 + ea
->ea_name_len
+ 1;
357 case GFS2_EATYPE_SECURITY
:
358 return 9 + ea
->ea_name_len
+ 1;
364 static int ea_list_i(struct gfs2_inode
*ip
, struct buffer_head
*bh
,
365 struct gfs2_ea_header
*ea
, struct gfs2_ea_header
*prev
,
368 struct ea_list
*ei
= private;
369 struct gfs2_ea_request
*er
= ei
->ei_er
;
370 unsigned int ea_size
= gfs2_ea_strlen(ea
);
372 if (ea
->ea_type
== GFS2_EATYPE_UNUSED
)
375 if (er
->er_data_len
) {
380 if (ei
->ei_size
+ ea_size
> er
->er_data_len
)
383 switch (ea
->ea_type
) {
384 case GFS2_EATYPE_USR
:
388 case GFS2_EATYPE_SYS
:
392 case GFS2_EATYPE_SECURITY
:
393 prefix
= "security.";
400 memcpy(er
->er_data
+ ei
->ei_size
, prefix
, l
);
401 memcpy(er
->er_data
+ ei
->ei_size
+ l
, GFS2_EA2NAME(ea
),
403 memcpy(er
->er_data
+ ei
->ei_size
+ ea_size
- 1, &c
, 1);
406 ei
->ei_size
+= ea_size
;
412 * gfs2_listxattr - List gfs2 extended attributes
413 * @dentry: The dentry whose inode we are interested in
414 * @buffer: The buffer to write the results
415 * @size: The size of the buffer
417 * Returns: actual size of data on success, -errno on error
420 ssize_t
gfs2_listxattr(struct dentry
*dentry
, char *buffer
, size_t size
)
422 struct gfs2_inode
*ip
= GFS2_I(dentry
->d_inode
);
423 struct gfs2_ea_request er
;
424 struct gfs2_holder i_gh
;
427 memset(&er
, 0, sizeof(struct gfs2_ea_request
));
430 er
.er_data_len
= size
;
433 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_SHARED
, LM_FLAG_ANY
, &i_gh
);
438 struct ea_list ei
= { .ei_er
= &er
, .ei_size
= 0 };
440 error
= ea_foreach(ip
, ea_list_i
, &ei
);
445 gfs2_glock_dq_uninit(&i_gh
);
451 * ea_iter_unstuffed - copies the unstuffed xattr data to/from the
453 * @ip: The GFS2 inode
454 * @ea: The extended attribute header structure
455 * @din: The data to be copied in
456 * @dout: The data to be copied out (one of din,dout will be NULL)
461 static int gfs2_iter_unstuffed(struct gfs2_inode
*ip
, struct gfs2_ea_header
*ea
,
462 const char *din
, char *dout
)
464 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
465 struct buffer_head
**bh
;
466 unsigned int amount
= GFS2_EA_DATA_LEN(ea
);
467 unsigned int nptrs
= DIV_ROUND_UP(amount
, sdp
->sd_jbsize
);
468 __be64
*dataptrs
= GFS2_EA2DATAPTRS(ea
);
474 bh
= kcalloc(nptrs
, sizeof(struct buffer_head
*), GFP_NOFS
);
478 for (x
= 0; x
< nptrs
; x
++) {
479 error
= gfs2_meta_read(ip
->i_gl
, be64_to_cpu(*dataptrs
), 0,
489 for (x
= 0; x
< nptrs
; x
++) {
490 error
= gfs2_meta_wait(sdp
, bh
[x
]);
492 for (; x
< nptrs
; x
++)
496 if (gfs2_metatype_check(sdp
, bh
[x
], GFS2_METATYPE_ED
)) {
497 for (; x
< nptrs
; x
++)
503 pos
= bh
[x
]->b_data
+ sizeof(struct gfs2_meta_header
);
504 cp_size
= (sdp
->sd_jbsize
> amount
) ? amount
: sdp
->sd_jbsize
;
507 memcpy(dout
, pos
, cp_size
);
508 dout
+= sdp
->sd_jbsize
;
512 gfs2_trans_add_meta(ip
->i_gl
, bh
[x
]);
513 memcpy(pos
, din
, cp_size
);
514 din
+= sdp
->sd_jbsize
;
517 amount
-= sdp
->sd_jbsize
;
526 static int gfs2_ea_get_copy(struct gfs2_inode
*ip
, struct gfs2_ea_location
*el
,
527 char *data
, size_t size
)
530 size_t len
= GFS2_EA_DATA_LEN(el
->el_ea
);
534 if (GFS2_EA_IS_STUFFED(el
->el_ea
)) {
535 memcpy(data
, GFS2_EA2DATA(el
->el_ea
), len
);
538 ret
= gfs2_iter_unstuffed(ip
, el
->el_ea
, NULL
, data
);
544 int gfs2_xattr_acl_get(struct gfs2_inode
*ip
, const char *name
, char **ppdata
)
546 struct gfs2_ea_location el
;
551 error
= gfs2_ea_find(ip
, GFS2_EATYPE_SYS
, name
, &el
);
556 if (!GFS2_EA_DATA_LEN(el
.el_ea
))
559 len
= GFS2_EA_DATA_LEN(el
.el_ea
);
560 data
= kmalloc(len
, GFP_NOFS
);
565 error
= gfs2_ea_get_copy(ip
, &el
, data
, len
);
576 * gfs2_xattr_get - Get a GFS2 extended attribute
578 * @name: The name of the extended attribute
579 * @buffer: The buffer to write the result into
580 * @size: The size of the buffer
581 * @type: The type of extended attribute
583 * Returns: actual size of data on success, -errno on error
585 static int gfs2_xattr_get(struct dentry
*dentry
, const char *name
,
586 void *buffer
, size_t size
, int type
)
588 struct gfs2_inode
*ip
= GFS2_I(dentry
->d_inode
);
589 struct gfs2_ea_location el
;
594 if (strlen(name
) > GFS2_EA_MAX_NAME_LEN
)
597 error
= gfs2_ea_find(ip
, type
, name
, &el
);
603 error
= gfs2_ea_get_copy(ip
, &el
, buffer
, size
);
605 error
= GFS2_EA_DATA_LEN(el
.el_ea
);
612 * ea_alloc_blk - allocates a new block for extended attributes.
613 * @ip: A pointer to the inode that's getting extended attributes
614 * @bhp: Pointer to pointer to a struct buffer_head
619 static int ea_alloc_blk(struct gfs2_inode
*ip
, struct buffer_head
**bhp
)
621 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
622 struct gfs2_ea_header
*ea
;
627 error
= gfs2_alloc_blocks(ip
, &block
, &n
, 0, NULL
);
630 gfs2_trans_add_unrevoke(sdp
, block
, 1);
631 *bhp
= gfs2_meta_new(ip
->i_gl
, block
);
632 gfs2_trans_add_meta(ip
->i_gl
, *bhp
);
633 gfs2_metatype_set(*bhp
, GFS2_METATYPE_EA
, GFS2_FORMAT_EA
);
634 gfs2_buffer_clear_tail(*bhp
, sizeof(struct gfs2_meta_header
));
636 ea
= GFS2_EA_BH2FIRST(*bhp
);
637 ea
->ea_rec_len
= cpu_to_be32(sdp
->sd_jbsize
);
638 ea
->ea_type
= GFS2_EATYPE_UNUSED
;
639 ea
->ea_flags
= GFS2_EAFLAG_LAST
;
642 gfs2_add_inode_blocks(&ip
->i_inode
, 1);
648 * ea_write - writes the request info to an ea, creating new blocks if
650 * @ip: inode that is being modified
651 * @ea: the location of the new ea in a block
652 * @er: the write request
654 * Note: does not update ea_rec_len or the GFS2_EAFLAG_LAST bin of ea_flags
659 static int ea_write(struct gfs2_inode
*ip
, struct gfs2_ea_header
*ea
,
660 struct gfs2_ea_request
*er
)
662 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
665 ea
->ea_data_len
= cpu_to_be32(er
->er_data_len
);
666 ea
->ea_name_len
= er
->er_name_len
;
667 ea
->ea_type
= er
->er_type
;
670 memcpy(GFS2_EA2NAME(ea
), er
->er_name
, er
->er_name_len
);
672 if (GFS2_EAREQ_SIZE_STUFFED(er
) <= sdp
->sd_jbsize
) {
674 memcpy(GFS2_EA2DATA(ea
), er
->er_data
, er
->er_data_len
);
676 __be64
*dataptr
= GFS2_EA2DATAPTRS(ea
);
677 const char *data
= er
->er_data
;
678 unsigned int data_len
= er
->er_data_len
;
682 ea
->ea_num_ptrs
= DIV_ROUND_UP(er
->er_data_len
, sdp
->sd_jbsize
);
683 for (x
= 0; x
< ea
->ea_num_ptrs
; x
++) {
684 struct buffer_head
*bh
;
686 int mh_size
= sizeof(struct gfs2_meta_header
);
689 error
= gfs2_alloc_blocks(ip
, &block
, &n
, 0, NULL
);
692 gfs2_trans_add_unrevoke(sdp
, block
, 1);
693 bh
= gfs2_meta_new(ip
->i_gl
, block
);
694 gfs2_trans_add_meta(ip
->i_gl
, bh
);
695 gfs2_metatype_set(bh
, GFS2_METATYPE_ED
, GFS2_FORMAT_ED
);
697 gfs2_add_inode_blocks(&ip
->i_inode
, 1);
699 copy
= data_len
> sdp
->sd_jbsize
? sdp
->sd_jbsize
:
701 memcpy(bh
->b_data
+ mh_size
, data
, copy
);
702 if (copy
< sdp
->sd_jbsize
)
703 memset(bh
->b_data
+ mh_size
+ copy
, 0,
704 sdp
->sd_jbsize
- copy
);
706 *dataptr
++ = cpu_to_be64(bh
->b_blocknr
);
713 gfs2_assert_withdraw(sdp
, !data_len
);
719 typedef int (*ea_skeleton_call_t
) (struct gfs2_inode
*ip
,
720 struct gfs2_ea_request
*er
, void *private);
722 static int ea_alloc_skeleton(struct gfs2_inode
*ip
, struct gfs2_ea_request
*er
,
724 ea_skeleton_call_t skeleton_call
, void *private)
726 struct buffer_head
*dibh
;
729 error
= gfs2_rindex_update(GFS2_SB(&ip
->i_inode
));
733 error
= gfs2_quota_lock_check(ip
);
737 error
= gfs2_inplace_reserve(ip
, blks
, 0);
741 error
= gfs2_trans_begin(GFS2_SB(&ip
->i_inode
),
742 blks
+ gfs2_rg_blocks(ip
, blks
) +
743 RES_DINODE
+ RES_STATFS
+ RES_QUOTA
, 0);
747 error
= skeleton_call(ip
, er
, private);
751 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
753 ip
->i_inode
.i_ctime
= CURRENT_TIME
;
754 gfs2_trans_add_meta(ip
->i_gl
, dibh
);
755 gfs2_dinode_out(ip
, dibh
->b_data
);
760 gfs2_trans_end(GFS2_SB(&ip
->i_inode
));
762 gfs2_inplace_release(ip
);
764 gfs2_quota_unlock(ip
);
768 static int ea_init_i(struct gfs2_inode
*ip
, struct gfs2_ea_request
*er
,
771 struct buffer_head
*bh
;
774 error
= ea_alloc_blk(ip
, &bh
);
778 ip
->i_eattr
= bh
->b_blocknr
;
779 error
= ea_write(ip
, GFS2_EA_BH2FIRST(bh
), er
);
787 * ea_init - initializes a new eattr block
794 static int ea_init(struct gfs2_inode
*ip
, int type
, const char *name
,
795 const void *data
, size_t size
)
797 struct gfs2_ea_request er
;
798 unsigned int jbsize
= GFS2_SB(&ip
->i_inode
)->sd_jbsize
;
799 unsigned int blks
= 1;
803 er
.er_name_len
= strlen(name
);
804 er
.er_data
= (void *)data
;
805 er
.er_data_len
= size
;
807 if (GFS2_EAREQ_SIZE_STUFFED(&er
) > jbsize
)
808 blks
+= DIV_ROUND_UP(er
.er_data_len
, jbsize
);
810 return ea_alloc_skeleton(ip
, &er
, blks
, ea_init_i
, NULL
);
813 static struct gfs2_ea_header
*ea_split_ea(struct gfs2_ea_header
*ea
)
815 u32 ea_size
= GFS2_EA_SIZE(ea
);
816 struct gfs2_ea_header
*new = (struct gfs2_ea_header
*)((char *)ea
+
818 u32 new_size
= GFS2_EA_REC_LEN(ea
) - ea_size
;
819 int last
= ea
->ea_flags
& GFS2_EAFLAG_LAST
;
821 ea
->ea_rec_len
= cpu_to_be32(ea_size
);
822 ea
->ea_flags
^= last
;
824 new->ea_rec_len
= cpu_to_be32(new_size
);
825 new->ea_flags
= last
;
830 static void ea_set_remove_stuffed(struct gfs2_inode
*ip
,
831 struct gfs2_ea_location
*el
)
833 struct gfs2_ea_header
*ea
= el
->el_ea
;
834 struct gfs2_ea_header
*prev
= el
->el_prev
;
837 gfs2_trans_add_meta(ip
->i_gl
, el
->el_bh
);
839 if (!prev
|| !GFS2_EA_IS_STUFFED(ea
)) {
840 ea
->ea_type
= GFS2_EATYPE_UNUSED
;
842 } else if (GFS2_EA2NEXT(prev
) != ea
) {
843 prev
= GFS2_EA2NEXT(prev
);
844 gfs2_assert_withdraw(GFS2_SB(&ip
->i_inode
), GFS2_EA2NEXT(prev
) == ea
);
847 len
= GFS2_EA_REC_LEN(prev
) + GFS2_EA_REC_LEN(ea
);
848 prev
->ea_rec_len
= cpu_to_be32(len
);
850 if (GFS2_EA_IS_LAST(ea
))
851 prev
->ea_flags
|= GFS2_EAFLAG_LAST
;
857 struct gfs2_ea_request
*es_er
;
858 struct gfs2_ea_location
*es_el
;
860 struct buffer_head
*es_bh
;
861 struct gfs2_ea_header
*es_ea
;
864 static int ea_set_simple_noalloc(struct gfs2_inode
*ip
, struct buffer_head
*bh
,
865 struct gfs2_ea_header
*ea
, struct ea_set
*es
)
867 struct gfs2_ea_request
*er
= es
->es_er
;
868 struct buffer_head
*dibh
;
871 error
= gfs2_trans_begin(GFS2_SB(&ip
->i_inode
), RES_DINODE
+ 2 * RES_EATTR
, 0);
875 gfs2_trans_add_meta(ip
->i_gl
, bh
);
878 ea
= ea_split_ea(ea
);
880 ea_write(ip
, ea
, er
);
883 ea_set_remove_stuffed(ip
, es
->es_el
);
885 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
888 ip
->i_inode
.i_ctime
= CURRENT_TIME
;
889 gfs2_trans_add_meta(ip
->i_gl
, dibh
);
890 gfs2_dinode_out(ip
, dibh
->b_data
);
893 gfs2_trans_end(GFS2_SB(&ip
->i_inode
));
897 static int ea_set_simple_alloc(struct gfs2_inode
*ip
,
898 struct gfs2_ea_request
*er
, void *private)
900 struct ea_set
*es
= private;
901 struct gfs2_ea_header
*ea
= es
->es_ea
;
904 gfs2_trans_add_meta(ip
->i_gl
, es
->es_bh
);
907 ea
= ea_split_ea(ea
);
909 error
= ea_write(ip
, ea
, er
);
914 ea_set_remove_stuffed(ip
, es
->es_el
);
919 static int ea_set_simple(struct gfs2_inode
*ip
, struct buffer_head
*bh
,
920 struct gfs2_ea_header
*ea
, struct gfs2_ea_header
*prev
,
923 struct ea_set
*es
= private;
928 stuffed
= ea_calc_size(GFS2_SB(&ip
->i_inode
), es
->es_er
->er_name_len
,
929 es
->es_er
->er_data_len
, &size
);
931 if (ea
->ea_type
== GFS2_EATYPE_UNUSED
) {
932 if (GFS2_EA_REC_LEN(ea
) < size
)
934 if (!GFS2_EA_IS_STUFFED(ea
)) {
935 error
= ea_remove_unstuffed(ip
, bh
, ea
, prev
, 1);
940 } else if (GFS2_EA_REC_LEN(ea
) - GFS2_EA_SIZE(ea
) >= size
)
946 error
= ea_set_simple_noalloc(ip
, bh
, ea
, es
);
954 blks
= 2 + DIV_ROUND_UP(es
->es_er
->er_data_len
,
955 GFS2_SB(&ip
->i_inode
)->sd_jbsize
);
957 error
= ea_alloc_skeleton(ip
, es
->es_er
, blks
,
958 ea_set_simple_alloc
, es
);
966 static int ea_set_block(struct gfs2_inode
*ip
, struct gfs2_ea_request
*er
,
969 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
970 struct buffer_head
*indbh
, *newbh
;
973 int mh_size
= sizeof(struct gfs2_meta_header
);
975 if (ip
->i_diskflags
& GFS2_DIF_EA_INDIRECT
) {
978 error
= gfs2_meta_read(ip
->i_gl
, ip
->i_eattr
, DIO_WAIT
,
983 if (gfs2_metatype_check(sdp
, indbh
, GFS2_METATYPE_IN
)) {
988 eablk
= (__be64
*)(indbh
->b_data
+ mh_size
);
989 end
= eablk
+ sdp
->sd_inptrs
;
991 for (; eablk
< end
; eablk
++)
1000 gfs2_trans_add_meta(ip
->i_gl
, indbh
);
1004 error
= gfs2_alloc_blocks(ip
, &blk
, &n
, 0, NULL
);
1007 gfs2_trans_add_unrevoke(sdp
, blk
, 1);
1008 indbh
= gfs2_meta_new(ip
->i_gl
, blk
);
1009 gfs2_trans_add_meta(ip
->i_gl
, indbh
);
1010 gfs2_metatype_set(indbh
, GFS2_METATYPE_IN
, GFS2_FORMAT_IN
);
1011 gfs2_buffer_clear_tail(indbh
, mh_size
);
1013 eablk
= (__be64
*)(indbh
->b_data
+ mh_size
);
1014 *eablk
= cpu_to_be64(ip
->i_eattr
);
1016 ip
->i_diskflags
|= GFS2_DIF_EA_INDIRECT
;
1017 gfs2_add_inode_blocks(&ip
->i_inode
, 1);
1022 error
= ea_alloc_blk(ip
, &newbh
);
1026 *eablk
= cpu_to_be64((u64
)newbh
->b_blocknr
);
1027 error
= ea_write(ip
, GFS2_EA_BH2FIRST(newbh
), er
);
1033 ea_set_remove_stuffed(ip
, private);
1040 static int ea_set_i(struct gfs2_inode
*ip
, int type
, const char *name
,
1041 const void *value
, size_t size
, struct gfs2_ea_location
*el
)
1043 struct gfs2_ea_request er
;
1045 unsigned int blks
= 2;
1050 er
.er_data
= (void *)value
;
1051 er
.er_name_len
= strlen(name
);
1052 er
.er_data_len
= size
;
1054 memset(&es
, 0, sizeof(struct ea_set
));
1058 error
= ea_foreach(ip
, ea_set_simple
, &es
);
1064 if (!(ip
->i_diskflags
& GFS2_DIF_EA_INDIRECT
))
1066 if (GFS2_EAREQ_SIZE_STUFFED(&er
) > GFS2_SB(&ip
->i_inode
)->sd_jbsize
)
1067 blks
+= DIV_ROUND_UP(er
.er_data_len
, GFS2_SB(&ip
->i_inode
)->sd_jbsize
);
1069 return ea_alloc_skeleton(ip
, &er
, blks
, ea_set_block
, el
);
1072 static int ea_set_remove_unstuffed(struct gfs2_inode
*ip
,
1073 struct gfs2_ea_location
*el
)
1075 if (el
->el_prev
&& GFS2_EA2NEXT(el
->el_prev
) != el
->el_ea
) {
1076 el
->el_prev
= GFS2_EA2NEXT(el
->el_prev
);
1077 gfs2_assert_withdraw(GFS2_SB(&ip
->i_inode
),
1078 GFS2_EA2NEXT(el
->el_prev
) == el
->el_ea
);
1081 return ea_remove_unstuffed(ip
, el
->el_bh
, el
->el_ea
, el
->el_prev
, 0);
1084 static int ea_remove_stuffed(struct gfs2_inode
*ip
, struct gfs2_ea_location
*el
)
1086 struct gfs2_ea_header
*ea
= el
->el_ea
;
1087 struct gfs2_ea_header
*prev
= el
->el_prev
;
1088 struct buffer_head
*dibh
;
1091 error
= gfs2_trans_begin(GFS2_SB(&ip
->i_inode
), RES_DINODE
+ RES_EATTR
, 0);
1095 gfs2_trans_add_meta(ip
->i_gl
, el
->el_bh
);
1100 len
= GFS2_EA_REC_LEN(prev
) + GFS2_EA_REC_LEN(ea
);
1101 prev
->ea_rec_len
= cpu_to_be32(len
);
1103 if (GFS2_EA_IS_LAST(ea
))
1104 prev
->ea_flags
|= GFS2_EAFLAG_LAST
;
1106 ea
->ea_type
= GFS2_EATYPE_UNUSED
;
1109 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1111 ip
->i_inode
.i_ctime
= CURRENT_TIME
;
1112 gfs2_trans_add_meta(ip
->i_gl
, dibh
);
1113 gfs2_dinode_out(ip
, dibh
->b_data
);
1117 gfs2_trans_end(GFS2_SB(&ip
->i_inode
));
1123 * gfs2_xattr_remove - Remove a GFS2 extended attribute
1125 * @type: The type of the extended attribute
1126 * @name: The name of the extended attribute
1128 * This is not called directly by the VFS since we use the (common)
1129 * scheme of making a "set with NULL data" mean a remove request. Note
1130 * that this is different from a set with zero length data.
1132 * Returns: 0, or errno on failure
1135 static int gfs2_xattr_remove(struct gfs2_inode
*ip
, int type
, const char *name
)
1137 struct gfs2_ea_location el
;
1143 error
= gfs2_ea_find(ip
, type
, name
, &el
);
1149 if (GFS2_EA_IS_STUFFED(el
.el_ea
))
1150 error
= ea_remove_stuffed(ip
, &el
);
1152 error
= ea_remove_unstuffed(ip
, el
.el_bh
, el
.el_ea
, el
.el_prev
, 0);
1160 * __gfs2_xattr_set - Set (or remove) a GFS2 extended attribute
1162 * @name: The name of the extended attribute
1163 * @value: The value of the extended attribute (NULL for remove)
1164 * @size: The size of the @value argument
1165 * @flags: Create or Replace
1166 * @type: The type of the extended attribute
1168 * See gfs2_xattr_remove() for details of the removal of xattrs.
1170 * Returns: 0 or errno on failure
1173 int __gfs2_xattr_set(struct inode
*inode
, const char *name
,
1174 const void *value
, size_t size
, int flags
, int type
)
1176 struct gfs2_inode
*ip
= GFS2_I(inode
);
1177 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
1178 struct gfs2_ea_location el
;
1179 unsigned int namel
= strlen(name
);
1182 if (IS_IMMUTABLE(inode
) || IS_APPEND(inode
))
1184 if (namel
> GFS2_EA_MAX_NAME_LEN
)
1188 return gfs2_xattr_remove(ip
, type
, name
);
1190 if (ea_check_size(sdp
, namel
, size
))
1194 if (flags
& XATTR_REPLACE
)
1196 return ea_init(ip
, type
, name
, value
, size
);
1199 error
= gfs2_ea_find(ip
, type
, name
, &el
);
1204 if (ip
->i_diskflags
& GFS2_DIF_APPENDONLY
) {
1210 if (!(flags
& XATTR_CREATE
)) {
1211 int unstuffed
= !GFS2_EA_IS_STUFFED(el
.el_ea
);
1212 error
= ea_set_i(ip
, type
, name
, value
, size
, &el
);
1213 if (!error
&& unstuffed
)
1214 ea_set_remove_unstuffed(ip
, &el
);
1222 if (!(flags
& XATTR_REPLACE
))
1223 error
= ea_set_i(ip
, type
, name
, value
, size
, NULL
);
1228 static int gfs2_xattr_set(struct dentry
*dentry
, const char *name
,
1229 const void *value
, size_t size
, int flags
, int type
)
1231 return __gfs2_xattr_set(dentry
->d_inode
, name
, value
,
1236 static int ea_acl_chmod_unstuffed(struct gfs2_inode
*ip
,
1237 struct gfs2_ea_header
*ea
, char *data
)
1239 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
1240 unsigned int amount
= GFS2_EA_DATA_LEN(ea
);
1241 unsigned int nptrs
= DIV_ROUND_UP(amount
, sdp
->sd_jbsize
);
1244 ret
= gfs2_trans_begin(sdp
, nptrs
+ RES_DINODE
, 0);
1248 ret
= gfs2_iter_unstuffed(ip
, ea
, data
, NULL
);
1249 gfs2_trans_end(sdp
);
1254 int gfs2_xattr_acl_chmod(struct gfs2_inode
*ip
, struct iattr
*attr
, char *data
)
1256 struct inode
*inode
= &ip
->i_inode
;
1257 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
1258 struct gfs2_ea_location el
;
1261 error
= gfs2_ea_find(ip
, GFS2_EATYPE_SYS
, GFS2_POSIX_ACL_ACCESS
, &el
);
1265 if (GFS2_EA_IS_STUFFED(el
.el_ea
)) {
1266 error
= gfs2_trans_begin(sdp
, RES_DINODE
+ RES_EATTR
, 0);
1268 gfs2_trans_add_meta(ip
->i_gl
, el
.el_bh
);
1269 memcpy(GFS2_EA2DATA(el
.el_ea
), data
,
1270 GFS2_EA_DATA_LEN(el
.el_ea
));
1273 error
= ea_acl_chmod_unstuffed(ip
, el
.el_ea
, data
);
1280 error
= gfs2_setattr_simple(inode
, attr
);
1281 gfs2_trans_end(sdp
);
1285 static int ea_dealloc_indirect(struct gfs2_inode
*ip
)
1287 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
1288 struct gfs2_rgrp_list rlist
;
1289 struct buffer_head
*indbh
, *dibh
;
1290 __be64
*eablk
, *end
;
1291 unsigned int rg_blocks
= 0;
1293 unsigned int blen
= 0;
1294 unsigned int blks
= 0;
1298 error
= gfs2_rindex_update(sdp
);
1302 memset(&rlist
, 0, sizeof(struct gfs2_rgrp_list
));
1304 error
= gfs2_meta_read(ip
->i_gl
, ip
->i_eattr
, DIO_WAIT
, &indbh
);
1308 if (gfs2_metatype_check(sdp
, indbh
, GFS2_METATYPE_IN
)) {
1313 eablk
= (__be64
*)(indbh
->b_data
+ sizeof(struct gfs2_meta_header
));
1314 end
= eablk
+ sdp
->sd_inptrs
;
1316 for (; eablk
< end
; eablk
++) {
1321 bn
= be64_to_cpu(*eablk
);
1323 if (bstart
+ blen
== bn
)
1327 gfs2_rlist_add(ip
, &rlist
, bstart
);
1334 gfs2_rlist_add(ip
, &rlist
, bstart
);
1338 gfs2_rlist_alloc(&rlist
, LM_ST_EXCLUSIVE
);
1340 for (x
= 0; x
< rlist
.rl_rgrps
; x
++) {
1341 struct gfs2_rgrpd
*rgd
;
1342 rgd
= rlist
.rl_ghs
[x
].gh_gl
->gl_object
;
1343 rg_blocks
+= rgd
->rd_length
;
1346 error
= gfs2_glock_nq_m(rlist
.rl_rgrps
, rlist
.rl_ghs
);
1348 goto out_rlist_free
;
1350 error
= gfs2_trans_begin(sdp
, rg_blocks
+ RES_DINODE
+ RES_INDIRECT
+
1351 RES_STATFS
+ RES_QUOTA
, blks
);
1355 gfs2_trans_add_meta(ip
->i_gl
, indbh
);
1357 eablk
= (__be64
*)(indbh
->b_data
+ sizeof(struct gfs2_meta_header
));
1361 for (; eablk
< end
; eablk
++) {
1366 bn
= be64_to_cpu(*eablk
);
1368 if (bstart
+ blen
== bn
)
1372 gfs2_free_meta(ip
, bstart
, blen
);
1378 gfs2_add_inode_blocks(&ip
->i_inode
, -1);
1381 gfs2_free_meta(ip
, bstart
, blen
);
1383 ip
->i_diskflags
&= ~GFS2_DIF_EA_INDIRECT
;
1385 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1387 gfs2_trans_add_meta(ip
->i_gl
, dibh
);
1388 gfs2_dinode_out(ip
, dibh
->b_data
);
1392 gfs2_trans_end(sdp
);
1395 gfs2_glock_dq_m(rlist
.rl_rgrps
, rlist
.rl_ghs
);
1397 gfs2_rlist_free(&rlist
);
1403 static int ea_dealloc_block(struct gfs2_inode
*ip
)
1405 struct gfs2_sbd
*sdp
= GFS2_SB(&ip
->i_inode
);
1406 struct gfs2_rgrpd
*rgd
;
1407 struct buffer_head
*dibh
;
1408 struct gfs2_holder gh
;
1411 error
= gfs2_rindex_update(sdp
);
1415 rgd
= gfs2_blk2rgrpd(sdp
, ip
->i_eattr
, 1);
1417 gfs2_consist_inode(ip
);
1421 error
= gfs2_glock_nq_init(rgd
->rd_gl
, LM_ST_EXCLUSIVE
, 0, &gh
);
1425 error
= gfs2_trans_begin(sdp
, RES_RG_BIT
+ RES_DINODE
+ RES_STATFS
+
1430 gfs2_free_meta(ip
, ip
->i_eattr
, 1);
1433 gfs2_add_inode_blocks(&ip
->i_inode
, -1);
1435 error
= gfs2_meta_inode_buffer(ip
, &dibh
);
1437 gfs2_trans_add_meta(ip
->i_gl
, dibh
);
1438 gfs2_dinode_out(ip
, dibh
->b_data
);
1442 gfs2_trans_end(sdp
);
1445 gfs2_glock_dq_uninit(&gh
);
1450 * gfs2_ea_dealloc - deallocate the extended attribute fork
1456 int gfs2_ea_dealloc(struct gfs2_inode
*ip
)
1460 error
= gfs2_rindex_update(GFS2_SB(&ip
->i_inode
));
1464 error
= gfs2_quota_hold(ip
, NO_UID_QUOTA_CHANGE
, NO_GID_QUOTA_CHANGE
);
1468 error
= ea_foreach(ip
, ea_dealloc_unstuffed
, NULL
);
1472 if (ip
->i_diskflags
& GFS2_DIF_EA_INDIRECT
) {
1473 error
= ea_dealloc_indirect(ip
);
1478 error
= ea_dealloc_block(ip
);
1481 gfs2_quota_unhold(ip
);
1485 static const struct xattr_handler gfs2_xattr_user_handler
= {
1486 .prefix
= XATTR_USER_PREFIX
,
1487 .flags
= GFS2_EATYPE_USR
,
1488 .get
= gfs2_xattr_get
,
1489 .set
= gfs2_xattr_set
,
1492 static const struct xattr_handler gfs2_xattr_security_handler
= {
1493 .prefix
= XATTR_SECURITY_PREFIX
,
1494 .flags
= GFS2_EATYPE_SECURITY
,
1495 .get
= gfs2_xattr_get
,
1496 .set
= gfs2_xattr_set
,
1499 const struct xattr_handler
*gfs2_xattr_handlers
[] = {
1500 &gfs2_xattr_user_handler
,
1501 &gfs2_xattr_security_handler
,
1502 &gfs2_xattr_system_handler
,