1
2
3
4
5
6#include "xfs.h"
7#include "xfs_fs.h"
8#include "xfs_shared.h"
9#include "xfs_format.h"
10#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
12#include "xfs_mount.h"
13#include "xfs_defer.h"
14#include "xfs_da_format.h"
15#include "xfs_da_btree.h"
16#include "xfs_attr_sf.h"
17#include "xfs_inode.h"
18#include "xfs_trans.h"
19#include "xfs_bmap.h"
20#include "xfs_bmap_btree.h"
21#include "xfs_attr.h"
22#include "xfs_attr_leaf.h"
23#include "xfs_attr_remote.h"
24#include "xfs_quota.h"
25#include "xfs_trans_space.h"
26#include "xfs_trace.h"
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41STATIC int xfs_attr_shortform_addname(xfs_da_args_t *args);
42
43
44
45
46STATIC int xfs_attr_leaf_get(xfs_da_args_t *args);
47STATIC int xfs_attr_leaf_removename(xfs_da_args_t *args);
48STATIC int xfs_attr_leaf_hasname(struct xfs_da_args *args, struct xfs_buf **bp);
49STATIC int xfs_attr_leaf_try_add(struct xfs_da_args *args, struct xfs_buf *bp);
50
51
52
53
54STATIC int xfs_attr_node_get(xfs_da_args_t *args);
55STATIC void xfs_attr_restore_rmt_blk(struct xfs_da_args *args);
56STATIC int xfs_attr_node_addname(struct xfs_delattr_context *dac);
57STATIC int xfs_attr_node_addname_find_attr(struct xfs_delattr_context *dac);
58STATIC int xfs_attr_node_addname_clear_incomplete(
59 struct xfs_delattr_context *dac);
60STATIC int xfs_attr_node_hasname(xfs_da_args_t *args,
61 struct xfs_da_state **state);
62STATIC int xfs_attr_fillstate(xfs_da_state_t *state);
63STATIC int xfs_attr_refillstate(xfs_da_state_t *state);
64STATIC int xfs_attr_set_iter(struct xfs_delattr_context *dac,
65 struct xfs_buf **leaf_bp);
66STATIC int xfs_attr_node_removename(struct xfs_da_args *args,
67 struct xfs_da_state *state);
68
69int
70xfs_inode_hasattr(
71 struct xfs_inode *ip)
72{
73 if (!XFS_IFORK_Q(ip) ||
74 (ip->i_afp->if_format == XFS_DINODE_FMT_EXTENTS &&
75 ip->i_afp->if_nextents == 0))
76 return 0;
77 return 1;
78}
79
80
81
82
83
84bool
85xfs_attr_is_leaf(
86 struct xfs_inode *ip)
87{
88 struct xfs_ifork *ifp = ip->i_afp;
89 struct xfs_iext_cursor icur;
90 struct xfs_bmbt_irec imap;
91
92 if (ifp->if_nextents != 1 || ifp->if_format != XFS_DINODE_FMT_EXTENTS)
93 return false;
94
95 xfs_iext_first(ifp, &icur);
96 xfs_iext_get_extent(ifp, &icur, &imap);
97 return imap.br_startoff == 0 && imap.br_blockcount == 1;
98}
99
100
101
102
103
104
105
106
107
108int
109xfs_attr_get_ilocked(
110 struct xfs_da_args *args)
111{
112 ASSERT(xfs_isilocked(args->dp, XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
113
114 if (!xfs_inode_hasattr(args->dp))
115 return -ENOATTR;
116
117 if (args->dp->i_afp->if_format == XFS_DINODE_FMT_LOCAL)
118 return xfs_attr_shortform_getvalue(args);
119 if (xfs_attr_is_leaf(args->dp))
120 return xfs_attr_leaf_get(args);
121 return xfs_attr_node_get(args);
122}
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140int
141xfs_attr_get(
142 struct xfs_da_args *args)
143{
144 uint lock_mode;
145 int error;
146
147 XFS_STATS_INC(args->dp->i_mount, xs_attr_get);
148
149 if (xfs_is_shutdown(args->dp->i_mount))
150 return -EIO;
151
152 args->geo = args->dp->i_mount->m_attr_geo;
153 args->whichfork = XFS_ATTR_FORK;
154 args->hashval = xfs_da_hashname(args->name, args->namelen);
155
156
157 args->op_flags = XFS_DA_OP_OKNOENT;
158
159 lock_mode = xfs_ilock_attr_map_shared(args->dp);
160 error = xfs_attr_get_ilocked(args);
161 xfs_iunlock(args->dp, lock_mode);
162
163 return error;
164}
165
166
167
168
169STATIC int
170xfs_attr_calc_size(
171 struct xfs_da_args *args,
172 int *local)
173{
174 struct xfs_mount *mp = args->dp->i_mount;
175 int size;
176 int nblks;
177
178
179
180
181
182 size = xfs_attr_leaf_newentsize(args, local);
183 nblks = XFS_DAENTER_SPACE_RES(mp, XFS_ATTR_FORK);
184 if (*local) {
185 if (size > (args->geo->blksize / 2)) {
186
187 nblks *= 2;
188 }
189 } else {
190
191
192
193
194 uint dblocks = xfs_attr3_rmt_blocks(mp, args->valuelen);
195 nblks += dblocks;
196 nblks += XFS_NEXTENTADD_SPACE_RES(mp, dblocks, XFS_ATTR_FORK);
197 }
198
199 return nblks;
200}
201
202STATIC int
203xfs_attr_try_sf_addname(
204 struct xfs_inode *dp,
205 struct xfs_da_args *args)
206{
207
208 int error;
209
210
211
212
213 if (dp->i_afp->if_format == XFS_DINODE_FMT_EXTENTS)
214 xfs_attr_shortform_create(args);
215
216 error = xfs_attr_shortform_addname(args);
217 if (error == -ENOSPC)
218 return error;
219
220
221
222
223
224 if (!error && !(args->op_flags & XFS_DA_OP_NOTIME))
225 xfs_trans_ichgtime(args->trans, dp, XFS_ICHGTIME_CHG);
226
227 if (xfs_has_wsync(dp->i_mount))
228 xfs_trans_set_sync(args->trans);
229
230 return error;
231}
232
233
234
235
236
237static inline bool
238xfs_attr_is_shortform(
239 struct xfs_inode *ip)
240{
241 return ip->i_afp->if_format == XFS_DINODE_FMT_LOCAL ||
242 (ip->i_afp->if_format == XFS_DINODE_FMT_EXTENTS &&
243 ip->i_afp->if_nextents == 0);
244}
245
246
247
248
249
250STATIC int
251xfs_attr_trans_roll(
252 struct xfs_delattr_context *dac)
253{
254 struct xfs_da_args *args = dac->da_args;
255 int error;
256
257 if (dac->flags & XFS_DAC_DEFER_FINISH) {
258
259
260
261
262
263 dac->flags &= ~XFS_DAC_DEFER_FINISH;
264 error = xfs_defer_finish(&args->trans);
265 } else
266 error = xfs_trans_roll_inode(&args->trans, args->dp);
267
268 return error;
269}
270
271
272
273
274int
275xfs_attr_set_args(
276 struct xfs_da_args *args)
277{
278 struct xfs_buf *leaf_bp = NULL;
279 int error = 0;
280 struct xfs_delattr_context dac = {
281 .da_args = args,
282 };
283
284 do {
285 error = xfs_attr_set_iter(&dac, &leaf_bp);
286 if (error != -EAGAIN)
287 break;
288
289 error = xfs_attr_trans_roll(&dac);
290 if (error) {
291 if (leaf_bp)
292 xfs_trans_brelse(args->trans, leaf_bp);
293 return error;
294 }
295 } while (true);
296
297 return error;
298}
299
300STATIC int
301xfs_attr_sf_addname(
302 struct xfs_delattr_context *dac,
303 struct xfs_buf **leaf_bp)
304{
305 struct xfs_da_args *args = dac->da_args;
306 struct xfs_inode *dp = args->dp;
307 int error = 0;
308
309
310
311
312 error = xfs_attr_try_sf_addname(dp, args);
313
314
315 if (error != -ENOSPC)
316 return error;
317
318
319
320
321
322 error = xfs_attr_shortform_to_leaf(args, leaf_bp);
323 if (error)
324 return error;
325
326
327
328
329
330
331 xfs_trans_bhold(args->trans, *leaf_bp);
332
333
334
335
336
337
338 trace_xfs_attr_sf_addname_return(XFS_DAS_UNINIT, args->dp);
339 dac->flags |= XFS_DAC_DEFER_FINISH;
340 return -EAGAIN;
341}
342
343
344
345
346
347
348
349
350int
351xfs_attr_set_iter(
352 struct xfs_delattr_context *dac,
353 struct xfs_buf **leaf_bp)
354{
355 struct xfs_da_args *args = dac->da_args;
356 struct xfs_inode *dp = args->dp;
357 struct xfs_buf *bp = NULL;
358 int forkoff, error = 0;
359
360
361 switch (dac->dela_state) {
362 case XFS_DAS_UNINIT:
363
364
365
366
367
368
369
370 if (xfs_attr_is_shortform(dp))
371 return xfs_attr_sf_addname(dac, leaf_bp);
372 if (*leaf_bp != NULL) {
373 xfs_trans_bhold_release(args->trans, *leaf_bp);
374 *leaf_bp = NULL;
375 }
376
377 if (xfs_attr_is_leaf(dp)) {
378 error = xfs_attr_leaf_try_add(args, *leaf_bp);
379 if (error == -ENOSPC) {
380 error = xfs_attr3_leaf_to_node(args);
381 if (error)
382 return error;
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397 dac->flags |= XFS_DAC_DEFER_FINISH;
398 trace_xfs_attr_set_iter_return(
399 dac->dela_state, args->dp);
400 return -EAGAIN;
401 } else if (error) {
402 return error;
403 }
404
405 dac->dela_state = XFS_DAS_FOUND_LBLK;
406 } else {
407 error = xfs_attr_node_addname_find_attr(dac);
408 if (error)
409 return error;
410
411 error = xfs_attr_node_addname(dac);
412 if (error)
413 return error;
414
415 dac->dela_state = XFS_DAS_FOUND_NBLK;
416 }
417 trace_xfs_attr_set_iter_return(dac->dela_state, args->dp);
418 return -EAGAIN;
419 case XFS_DAS_FOUND_LBLK:
420
421
422
423
424
425
426
427
428 if ((dac->flags & XFS_DAC_LEAF_ADDNAME_INIT) == 0) {
429 dac->flags |= XFS_DAC_LEAF_ADDNAME_INIT;
430 if (args->rmtblkno > 0) {
431 error = xfs_attr_rmtval_find_space(dac);
432 if (error)
433 return error;
434 }
435 }
436
437
438
439
440
441 if (dac->blkcnt > 0) {
442 error = xfs_attr_rmtval_set_blk(dac);
443 if (error)
444 return error;
445 trace_xfs_attr_set_iter_return(dac->dela_state,
446 args->dp);
447 return -EAGAIN;
448 }
449
450 error = xfs_attr_rmtval_set_value(args);
451 if (error)
452 return error;
453
454
455
456
457
458 if (!(args->op_flags & XFS_DA_OP_RENAME)) {
459 if (args->rmtblkno > 0)
460 error = xfs_attr3_leaf_clearflag(args);
461 return error;
462 }
463
464
465
466
467
468
469
470
471
472
473 error = xfs_attr3_leaf_flipflags(args);
474 if (error)
475 return error;
476
477
478
479
480 dac->dela_state = XFS_DAS_FLIP_LFLAG;
481 trace_xfs_attr_set_iter_return(dac->dela_state, args->dp);
482 return -EAGAIN;
483 case XFS_DAS_FLIP_LFLAG:
484
485
486
487
488 xfs_attr_restore_rmt_blk(args);
489 error = xfs_attr_rmtval_invalidate(args);
490 if (error)
491 return error;
492
493 fallthrough;
494 case XFS_DAS_RM_LBLK:
495
496 dac->dela_state = XFS_DAS_RM_LBLK;
497 if (args->rmtblkno) {
498 error = xfs_attr_rmtval_remove(dac);
499 if (error == -EAGAIN)
500 trace_xfs_attr_set_iter_return(
501 dac->dela_state, args->dp);
502 if (error)
503 return error;
504
505 dac->dela_state = XFS_DAS_RD_LEAF;
506 trace_xfs_attr_set_iter_return(dac->dela_state, args->dp);
507 return -EAGAIN;
508 }
509
510 fallthrough;
511 case XFS_DAS_RD_LEAF:
512
513
514
515
516
517 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno,
518 &bp);
519 if (error)
520 return error;
521
522 xfs_attr3_leaf_remove(bp, args);
523
524 forkoff = xfs_attr_shortform_allfit(bp, dp);
525 if (forkoff)
526 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
527
528
529 return error;
530
531 case XFS_DAS_FOUND_NBLK:
532
533
534
535
536 if (args->rmtblkno > 0) {
537 error = xfs_attr_rmtval_find_space(dac);
538 if (error)
539 return error;
540 }
541
542 fallthrough;
543 case XFS_DAS_ALLOC_NODE:
544
545
546
547
548
549
550 dac->dela_state = XFS_DAS_ALLOC_NODE;
551 if (args->rmtblkno > 0) {
552 if (dac->blkcnt > 0) {
553 error = xfs_attr_rmtval_set_blk(dac);
554 if (error)
555 return error;
556 trace_xfs_attr_set_iter_return(
557 dac->dela_state, args->dp);
558 return -EAGAIN;
559 }
560
561 error = xfs_attr_rmtval_set_value(args);
562 if (error)
563 return error;
564 }
565
566
567
568
569
570 if (!(args->op_flags & XFS_DA_OP_RENAME)) {
571 if (args->rmtblkno > 0)
572 error = xfs_attr3_leaf_clearflag(args);
573 goto out;
574 }
575
576
577
578
579
580
581
582
583
584
585 error = xfs_attr3_leaf_flipflags(args);
586 if (error)
587 goto out;
588
589
590
591
592 dac->dela_state = XFS_DAS_FLIP_NFLAG;
593 trace_xfs_attr_set_iter_return(dac->dela_state, args->dp);
594 return -EAGAIN;
595
596 case XFS_DAS_FLIP_NFLAG:
597
598
599
600
601 xfs_attr_restore_rmt_blk(args);
602
603 error = xfs_attr_rmtval_invalidate(args);
604 if (error)
605 return error;
606
607 fallthrough;
608 case XFS_DAS_RM_NBLK:
609
610 dac->dela_state = XFS_DAS_RM_NBLK;
611 if (args->rmtblkno) {
612 error = xfs_attr_rmtval_remove(dac);
613 if (error == -EAGAIN)
614 trace_xfs_attr_set_iter_return(
615 dac->dela_state, args->dp);
616
617 if (error)
618 return error;
619
620 dac->dela_state = XFS_DAS_CLR_FLAG;
621 trace_xfs_attr_set_iter_return(dac->dela_state, args->dp);
622 return -EAGAIN;
623 }
624
625 fallthrough;
626 case XFS_DAS_CLR_FLAG:
627
628
629
630
631 error = xfs_attr_node_addname_clear_incomplete(dac);
632 break;
633 default:
634 ASSERT(0);
635 break;
636 }
637out:
638 return error;
639}
640
641
642
643
644
645static int
646xfs_attr_lookup(
647 struct xfs_da_args *args)
648{
649 struct xfs_inode *dp = args->dp;
650 struct xfs_buf *bp = NULL;
651 int error;
652
653 if (!xfs_inode_hasattr(dp))
654 return -ENOATTR;
655
656 if (dp->i_afp->if_format == XFS_DINODE_FMT_LOCAL)
657 return xfs_attr_sf_findname(args, NULL, NULL);
658
659 if (xfs_attr_is_leaf(dp)) {
660 error = xfs_attr_leaf_hasname(args, &bp);
661
662 if (bp)
663 xfs_trans_brelse(args->trans, bp);
664
665 return error;
666 }
667
668 return xfs_attr_node_hasname(args, NULL);
669}
670
671
672
673
674int
675xfs_attr_remove_args(
676 struct xfs_da_args *args)
677{
678 int error;
679 struct xfs_delattr_context dac = {
680 .da_args = args,
681 };
682
683 do {
684 error = xfs_attr_remove_iter(&dac);
685 if (error != -EAGAIN)
686 break;
687
688 error = xfs_attr_trans_roll(&dac);
689 if (error)
690 return error;
691
692 } while (true);
693
694 return error;
695}
696
697
698
699
700
701int
702xfs_attr_set(
703 struct xfs_da_args *args)
704{
705 struct xfs_inode *dp = args->dp;
706 struct xfs_mount *mp = dp->i_mount;
707 struct xfs_trans_res tres;
708 bool rsvd = (args->attr_filter & XFS_ATTR_ROOT);
709 int error, local;
710 int rmt_blks = 0;
711 unsigned int total;
712
713 if (xfs_is_shutdown(dp->i_mount))
714 return -EIO;
715
716 error = xfs_qm_dqattach(dp);
717 if (error)
718 return error;
719
720 args->geo = mp->m_attr_geo;
721 args->whichfork = XFS_ATTR_FORK;
722 args->hashval = xfs_da_hashname(args->name, args->namelen);
723
724
725
726
727
728
729 args->op_flags = XFS_DA_OP_OKNOENT;
730
731 if (args->value) {
732 XFS_STATS_INC(mp, xs_attr_set);
733
734 args->op_flags |= XFS_DA_OP_ADDNAME;
735 args->total = xfs_attr_calc_size(args, &local);
736
737
738
739
740
741 if (XFS_IFORK_Q(dp) == 0) {
742 int sf_size = sizeof(struct xfs_attr_sf_hdr) +
743 xfs_attr_sf_entsize_byname(args->namelen,
744 args->valuelen);
745
746 error = xfs_bmap_add_attrfork(dp, sf_size, rsvd);
747 if (error)
748 return error;
749 }
750
751 tres.tr_logres = M_RES(mp)->tr_attrsetm.tr_logres +
752 M_RES(mp)->tr_attrsetrt.tr_logres *
753 args->total;
754 tres.tr_logcount = XFS_ATTRSET_LOG_COUNT;
755 tres.tr_logflags = XFS_TRANS_PERM_LOG_RES;
756 total = args->total;
757
758 if (!local)
759 rmt_blks = xfs_attr3_rmt_blocks(mp, args->valuelen);
760 } else {
761 XFS_STATS_INC(mp, xs_attr_remove);
762
763 tres = M_RES(mp)->tr_attrrm;
764 total = XFS_ATTRRM_SPACE_RES(mp);
765 rmt_blks = xfs_attr3_rmt_blocks(mp, XFS_XATTR_SIZE_MAX);
766 }
767
768
769
770
771
772 error = xfs_trans_alloc_inode(dp, &tres, total, 0, rsvd, &args->trans);
773 if (error)
774 return error;
775
776 if (args->value || xfs_inode_hasattr(dp)) {
777 error = xfs_iext_count_may_overflow(dp, XFS_ATTR_FORK,
778 XFS_IEXT_ATTR_MANIP_CNT(rmt_blks));
779 if (error)
780 goto out_trans_cancel;
781 }
782
783 error = xfs_attr_lookup(args);
784 if (args->value) {
785 if (error == -EEXIST && (args->attr_flags & XATTR_CREATE))
786 goto out_trans_cancel;
787 if (error == -ENOATTR && (args->attr_flags & XATTR_REPLACE))
788 goto out_trans_cancel;
789 if (error != -ENOATTR && error != -EEXIST)
790 goto out_trans_cancel;
791
792 error = xfs_attr_set_args(args);
793 if (error)
794 goto out_trans_cancel;
795
796 if (!args->trans)
797 goto out_unlock;
798 } else {
799 if (error != -EEXIST)
800 goto out_trans_cancel;
801
802 error = xfs_attr_remove_args(args);
803 if (error)
804 goto out_trans_cancel;
805 }
806
807
808
809
810
811 if (xfs_has_wsync(mp))
812 xfs_trans_set_sync(args->trans);
813
814 if (!(args->op_flags & XFS_DA_OP_NOTIME))
815 xfs_trans_ichgtime(args->trans, dp, XFS_ICHGTIME_CHG);
816
817
818
819
820 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
821 error = xfs_trans_commit(args->trans);
822out_unlock:
823 xfs_iunlock(dp, XFS_ILOCK_EXCL);
824 return error;
825
826out_trans_cancel:
827 if (args->trans)
828 xfs_trans_cancel(args->trans);
829 goto out_unlock;
830}
831
832
833
834
835
836static inline int xfs_attr_sf_totsize(struct xfs_inode *dp)
837{
838 struct xfs_attr_shortform *sf;
839
840 sf = (struct xfs_attr_shortform *)dp->i_afp->if_u1.if_data;
841 return be16_to_cpu(sf->hdr.totsize);
842}
843
844
845
846
847
848STATIC int
849xfs_attr_shortform_addname(xfs_da_args_t *args)
850{
851 int newsize, forkoff, retval;
852
853 trace_xfs_attr_sf_addname(args);
854
855 retval = xfs_attr_shortform_lookup(args);
856 if (retval == -ENOATTR && (args->attr_flags & XATTR_REPLACE))
857 return retval;
858 if (retval == -EEXIST) {
859 if (args->attr_flags & XATTR_CREATE)
860 return retval;
861 retval = xfs_attr_sf_removename(args);
862 if (retval)
863 return retval;
864
865
866
867
868
869 args->attr_flags &= ~XATTR_REPLACE;
870 }
871
872 if (args->namelen >= XFS_ATTR_SF_ENTSIZE_MAX ||
873 args->valuelen >= XFS_ATTR_SF_ENTSIZE_MAX)
874 return -ENOSPC;
875
876 newsize = xfs_attr_sf_totsize(args->dp);
877 newsize += xfs_attr_sf_entsize_byname(args->namelen, args->valuelen);
878
879 forkoff = xfs_attr_shortform_bytesfit(args->dp, newsize);
880 if (!forkoff)
881 return -ENOSPC;
882
883 xfs_attr_shortform_add(args, forkoff);
884 return 0;
885}
886
887
888
889
890
891
892
893STATIC void
894xfs_attr_save_rmt_blk(
895 struct xfs_da_args *args)
896{
897 args->blkno2 = args->blkno;
898 args->index2 = args->index;
899 args->rmtblkno2 = args->rmtblkno;
900 args->rmtblkcnt2 = args->rmtblkcnt;
901 args->rmtvaluelen2 = args->rmtvaluelen;
902}
903
904
905STATIC void
906xfs_attr_restore_rmt_blk(
907 struct xfs_da_args *args)
908{
909 args->blkno = args->blkno2;
910 args->index = args->index2;
911 args->rmtblkno = args->rmtblkno2;
912 args->rmtblkcnt = args->rmtblkcnt2;
913 args->rmtvaluelen = args->rmtvaluelen2;
914}
915
916
917
918
919
920
921
922
923
924
925
926STATIC int
927xfs_attr_leaf_try_add(
928 struct xfs_da_args *args,
929 struct xfs_buf *bp)
930{
931 int retval;
932
933
934
935
936
937 retval = xfs_attr_leaf_hasname(args, &bp);
938 if (retval != -ENOATTR && retval != -EEXIST)
939 return retval;
940 if (retval == -ENOATTR && (args->attr_flags & XATTR_REPLACE))
941 goto out_brelse;
942 if (retval == -EEXIST) {
943 if (args->attr_flags & XATTR_CREATE)
944 goto out_brelse;
945
946 trace_xfs_attr_leaf_replace(args);
947
948
949 args->op_flags |= XFS_DA_OP_RENAME;
950 xfs_attr_save_rmt_blk(args);
951
952
953
954
955
956
957 args->rmtblkno = 0;
958 args->rmtblkcnt = 0;
959 args->rmtvaluelen = 0;
960 }
961
962
963
964
965 return xfs_attr3_leaf_add(bp, args);
966
967out_brelse:
968 xfs_trans_brelse(args->trans, bp);
969 return retval;
970}
971
972
973
974
975STATIC int
976xfs_attr_leaf_hasname(
977 struct xfs_da_args *args,
978 struct xfs_buf **bp)
979{
980 int error = 0;
981
982 error = xfs_attr3_leaf_read(args->trans, args->dp, 0, bp);
983 if (error)
984 return error;
985
986 error = xfs_attr3_leaf_lookup_int(*bp, args);
987 if (error != -ENOATTR && error != -EEXIST)
988 xfs_trans_brelse(args->trans, *bp);
989
990 return error;
991}
992
993
994
995
996
997
998
999STATIC int
1000xfs_attr_leaf_removename(
1001 struct xfs_da_args *args)
1002{
1003 struct xfs_inode *dp;
1004 struct xfs_buf *bp;
1005 int error, forkoff;
1006
1007 trace_xfs_attr_leaf_removename(args);
1008
1009
1010
1011
1012 dp = args->dp;
1013
1014 error = xfs_attr_leaf_hasname(args, &bp);
1015
1016 if (error == -ENOATTR) {
1017 xfs_trans_brelse(args->trans, bp);
1018 return error;
1019 } else if (error != -EEXIST)
1020 return error;
1021
1022 xfs_attr3_leaf_remove(bp, args);
1023
1024
1025
1026
1027 forkoff = xfs_attr_shortform_allfit(bp, dp);
1028 if (forkoff)
1029 return xfs_attr3_leaf_to_shortform(bp, args, forkoff);
1030
1031
1032 return 0;
1033}
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043STATIC int
1044xfs_attr_leaf_get(xfs_da_args_t *args)
1045{
1046 struct xfs_buf *bp;
1047 int error;
1048
1049 trace_xfs_attr_leaf_get(args);
1050
1051 error = xfs_attr_leaf_hasname(args, &bp);
1052
1053 if (error == -ENOATTR) {
1054 xfs_trans_brelse(args->trans, bp);
1055 return error;
1056 } else if (error != -EEXIST)
1057 return error;
1058
1059
1060 error = xfs_attr3_leaf_getvalue(bp, args);
1061 xfs_trans_brelse(args->trans, bp);
1062 return error;
1063}
1064
1065
1066
1067
1068
1069
1070STATIC int
1071xfs_attr_node_hasname(
1072 struct xfs_da_args *args,
1073 struct xfs_da_state **statep)
1074{
1075 struct xfs_da_state *state;
1076 int retval, error;
1077
1078 state = xfs_da_state_alloc(args);
1079 if (statep != NULL)
1080 *statep = state;
1081
1082
1083
1084
1085 error = xfs_da3_node_lookup_int(state, &retval);
1086 if (error)
1087 retval = error;
1088
1089 if (!statep)
1090 xfs_da_state_free(state);
1091
1092 return retval;
1093}
1094
1095
1096
1097
1098
1099STATIC int
1100xfs_attr_node_addname_find_attr(
1101 struct xfs_delattr_context *dac)
1102{
1103 struct xfs_da_args *args = dac->da_args;
1104 int retval;
1105
1106
1107
1108
1109
1110 retval = xfs_attr_node_hasname(args, &dac->da_state);
1111 if (retval != -ENOATTR && retval != -EEXIST)
1112 goto error;
1113
1114 if (retval == -ENOATTR && (args->attr_flags & XATTR_REPLACE))
1115 goto error;
1116 if (retval == -EEXIST) {
1117 if (args->attr_flags & XATTR_CREATE)
1118 goto error;
1119
1120 trace_xfs_attr_node_replace(args);
1121
1122
1123 args->op_flags |= XFS_DA_OP_RENAME;
1124 xfs_attr_save_rmt_blk(args);
1125
1126
1127
1128
1129
1130
1131 args->rmtblkno = 0;
1132 args->rmtblkcnt = 0;
1133 args->rmtvaluelen = 0;
1134 }
1135
1136 return 0;
1137error:
1138 if (dac->da_state)
1139 xfs_da_state_free(dac->da_state);
1140 return retval;
1141}
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158STATIC int
1159xfs_attr_node_addname(
1160 struct xfs_delattr_context *dac)
1161{
1162 struct xfs_da_args *args = dac->da_args;
1163 struct xfs_da_state *state = dac->da_state;
1164 struct xfs_da_state_blk *blk;
1165 int error;
1166
1167 trace_xfs_attr_node_addname(args);
1168
1169 blk = &state->path.blk[state->path.active-1];
1170 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1171
1172 error = xfs_attr3_leaf_add(blk->bp, state->args);
1173 if (error == -ENOSPC) {
1174 if (state->path.active == 1) {
1175
1176
1177
1178
1179
1180 xfs_da_state_free(state);
1181 state = NULL;
1182 error = xfs_attr3_leaf_to_node(args);
1183 if (error)
1184 goto out;
1185
1186
1187
1188
1189
1190
1191
1192
1193 dac->flags |= XFS_DAC_DEFER_FINISH;
1194 trace_xfs_attr_node_addname_return(
1195 dac->dela_state, args->dp);
1196 return -EAGAIN;
1197 }
1198
1199
1200
1201
1202
1203
1204
1205 error = xfs_da3_split(state);
1206 if (error)
1207 goto out;
1208 dac->flags |= XFS_DAC_DEFER_FINISH;
1209 } else {
1210
1211
1212
1213 xfs_da3_fixhashpath(state, &state->path);
1214 }
1215
1216out:
1217 if (state)
1218 xfs_da_state_free(state);
1219 return error;
1220}
1221
1222
1223STATIC int
1224xfs_attr_node_addname_clear_incomplete(
1225 struct xfs_delattr_context *dac)
1226{
1227 struct xfs_da_args *args = dac->da_args;
1228 struct xfs_da_state *state = NULL;
1229 int retval = 0;
1230 int error = 0;
1231
1232
1233
1234
1235
1236 args->attr_filter |= XFS_ATTR_INCOMPLETE;
1237 state = xfs_da_state_alloc(args);
1238 state->inleaf = 0;
1239 error = xfs_da3_node_lookup_int(state, &retval);
1240 if (error)
1241 goto out;
1242
1243 error = xfs_attr_node_removename(args, state);
1244
1245
1246
1247
1248 if (retval && (state->path.active > 1)) {
1249 error = xfs_da3_join(state);
1250 if (error)
1251 goto out;
1252 }
1253 retval = error = 0;
1254
1255out:
1256 if (state)
1257 xfs_da_state_free(state);
1258 if (error)
1259 return error;
1260 return retval;
1261}
1262
1263
1264
1265
1266STATIC int
1267xfs_attr_node_shrink(
1268 struct xfs_da_args *args,
1269 struct xfs_da_state *state)
1270{
1271 struct xfs_inode *dp = args->dp;
1272 int error, forkoff;
1273 struct xfs_buf *bp;
1274
1275
1276
1277
1278 ASSERT(state->path.active == 1);
1279 ASSERT(state->path.blk[0].bp);
1280 state->path.blk[0].bp = NULL;
1281
1282 error = xfs_attr3_leaf_read(args->trans, args->dp, 0, &bp);
1283 if (error)
1284 return error;
1285
1286 forkoff = xfs_attr_shortform_allfit(bp, dp);
1287 if (forkoff) {
1288 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
1289
1290 } else
1291 xfs_trans_brelse(args->trans, bp);
1292
1293 return error;
1294}
1295
1296
1297
1298
1299
1300STATIC int
1301xfs_attr_leaf_mark_incomplete(
1302 struct xfs_da_args *args,
1303 struct xfs_da_state *state)
1304{
1305 int error;
1306
1307
1308
1309
1310
1311
1312 error = xfs_attr_fillstate(state);
1313 if (error)
1314 return error;
1315
1316
1317
1318
1319 return xfs_attr3_leaf_setflag(args);
1320}
1321
1322
1323
1324
1325
1326
1327STATIC
1328int xfs_attr_node_removename_setup(
1329 struct xfs_delattr_context *dac)
1330{
1331 struct xfs_da_args *args = dac->da_args;
1332 struct xfs_da_state **state = &dac->da_state;
1333 int error;
1334
1335 error = xfs_attr_node_hasname(args, state);
1336 if (error != -EEXIST)
1337 goto out;
1338 error = 0;
1339
1340 ASSERT((*state)->path.blk[(*state)->path.active - 1].bp != NULL);
1341 ASSERT((*state)->path.blk[(*state)->path.active - 1].magic ==
1342 XFS_ATTR_LEAF_MAGIC);
1343
1344 if (args->rmtblkno > 0) {
1345 error = xfs_attr_leaf_mark_incomplete(args, *state);
1346 if (error)
1347 goto out;
1348
1349 error = xfs_attr_rmtval_invalidate(args);
1350 }
1351out:
1352 if (error)
1353 xfs_da_state_free(*state);
1354
1355 return error;
1356}
1357
1358STATIC int
1359xfs_attr_node_removename(
1360 struct xfs_da_args *args,
1361 struct xfs_da_state *state)
1362{
1363 struct xfs_da_state_blk *blk;
1364 int retval;
1365
1366
1367
1368
1369 blk = &state->path.blk[state->path.active-1];
1370 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1371 retval = xfs_attr3_leaf_remove(blk->bp, args);
1372 xfs_da3_fixhashpath(state, &state->path);
1373
1374 return retval;
1375}
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389int
1390xfs_attr_remove_iter(
1391 struct xfs_delattr_context *dac)
1392{
1393 struct xfs_da_args *args = dac->da_args;
1394 struct xfs_da_state *state = dac->da_state;
1395 int retval, error = 0;
1396 struct xfs_inode *dp = args->dp;
1397
1398 trace_xfs_attr_node_removename(args);
1399
1400 switch (dac->dela_state) {
1401 case XFS_DAS_UNINIT:
1402 if (!xfs_inode_hasattr(dp))
1403 return -ENOATTR;
1404
1405
1406
1407
1408
1409 if (dp->i_afp->if_format == XFS_DINODE_FMT_LOCAL)
1410 return xfs_attr_sf_removename(args);
1411
1412 if (xfs_attr_is_leaf(dp))
1413 return xfs_attr_leaf_removename(args);
1414
1415
1416
1417
1418
1419 if (!dac->da_state) {
1420 error = xfs_attr_node_removename_setup(dac);
1421 if (error)
1422 return error;
1423 state = dac->da_state;
1424 }
1425
1426 fallthrough;
1427 case XFS_DAS_RMTBLK:
1428 dac->dela_state = XFS_DAS_RMTBLK;
1429
1430
1431
1432
1433
1434
1435
1436 if (args->rmtblkno > 0) {
1437
1438
1439
1440
1441 error = xfs_attr_rmtval_remove(dac);
1442 if (error == -EAGAIN) {
1443 trace_xfs_attr_remove_iter_return(
1444 dac->dela_state, args->dp);
1445 return error;
1446 } else if (error) {
1447 goto out;
1448 }
1449
1450
1451
1452
1453
1454
1455 ASSERT(args->rmtblkno == 0);
1456 error = xfs_attr_refillstate(state);
1457 if (error)
1458 goto out;
1459 dac->dela_state = XFS_DAS_RM_NAME;
1460 dac->flags |= XFS_DAC_DEFER_FINISH;
1461 trace_xfs_attr_remove_iter_return(dac->dela_state, args->dp);
1462 return -EAGAIN;
1463 }
1464
1465 fallthrough;
1466 case XFS_DAS_RM_NAME:
1467
1468
1469
1470
1471 if (dac->dela_state == XFS_DAS_RM_NAME) {
1472 error = xfs_attr_refillstate(state);
1473 if (error)
1474 goto out;
1475 }
1476
1477 retval = xfs_attr_node_removename(args, state);
1478
1479
1480
1481
1482
1483 if (retval && (state->path.active > 1)) {
1484 error = xfs_da3_join(state);
1485 if (error)
1486 goto out;
1487
1488 dac->flags |= XFS_DAC_DEFER_FINISH;
1489 dac->dela_state = XFS_DAS_RM_SHRINK;
1490 trace_xfs_attr_remove_iter_return(
1491 dac->dela_state, args->dp);
1492 return -EAGAIN;
1493 }
1494
1495 fallthrough;
1496 case XFS_DAS_RM_SHRINK:
1497
1498
1499
1500
1501
1502 if (xfs_attr_is_leaf(dp))
1503 error = xfs_attr_node_shrink(args, state);
1504 ASSERT(error != -EAGAIN);
1505 break;
1506 default:
1507 ASSERT(0);
1508 error = -EINVAL;
1509 goto out;
1510 }
1511out:
1512 if (state)
1513 xfs_da_state_free(state);
1514 return error;
1515}
1516
1517
1518
1519
1520
1521
1522
1523STATIC int
1524xfs_attr_fillstate(xfs_da_state_t *state)
1525{
1526 xfs_da_state_path_t *path;
1527 xfs_da_state_blk_t *blk;
1528 int level;
1529
1530 trace_xfs_attr_fillstate(state->args);
1531
1532
1533
1534
1535
1536 path = &state->path;
1537 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1538 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1539 if (blk->bp) {
1540 blk->disk_blkno = xfs_buf_daddr(blk->bp);
1541 blk->bp = NULL;
1542 } else {
1543 blk->disk_blkno = 0;
1544 }
1545 }
1546
1547
1548
1549
1550
1551 path = &state->altpath;
1552 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1553 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1554 if (blk->bp) {
1555 blk->disk_blkno = xfs_buf_daddr(blk->bp);
1556 blk->bp = NULL;
1557 } else {
1558 blk->disk_blkno = 0;
1559 }
1560 }
1561
1562 return 0;
1563}
1564
1565
1566
1567
1568
1569
1570
1571STATIC int
1572xfs_attr_refillstate(xfs_da_state_t *state)
1573{
1574 xfs_da_state_path_t *path;
1575 xfs_da_state_blk_t *blk;
1576 int level, error;
1577
1578 trace_xfs_attr_refillstate(state->args);
1579
1580
1581
1582
1583
1584 path = &state->path;
1585 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1586 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1587 if (blk->disk_blkno) {
1588 error = xfs_da3_node_read_mapped(state->args->trans,
1589 state->args->dp, blk->disk_blkno,
1590 &blk->bp, XFS_ATTR_FORK);
1591 if (error)
1592 return error;
1593 } else {
1594 blk->bp = NULL;
1595 }
1596 }
1597
1598
1599
1600
1601
1602 path = &state->altpath;
1603 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1604 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1605 if (blk->disk_blkno) {
1606 error = xfs_da3_node_read_mapped(state->args->trans,
1607 state->args->dp, blk->disk_blkno,
1608 &blk->bp, XFS_ATTR_FORK);
1609 if (error)
1610 return error;
1611 } else {
1612 blk->bp = NULL;
1613 }
1614 }
1615
1616 return 0;
1617}
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628STATIC int
1629xfs_attr_node_get(
1630 struct xfs_da_args *args)
1631{
1632 struct xfs_da_state *state;
1633 struct xfs_da_state_blk *blk;
1634 int i;
1635 int error;
1636
1637 trace_xfs_attr_node_get(args);
1638
1639
1640
1641
1642 error = xfs_attr_node_hasname(args, &state);
1643 if (error != -EEXIST)
1644 goto out_release;
1645
1646
1647
1648
1649 blk = &state->path.blk[state->path.active - 1];
1650 error = xfs_attr3_leaf_getvalue(blk->bp, args);
1651
1652
1653
1654
1655out_release:
1656 for (i = 0; state != NULL && i < state->path.active; i++) {
1657 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
1658 state->path.blk[i].bp = NULL;
1659 }
1660
1661 if (state)
1662 xfs_da_state_free(state);
1663 return error;
1664}
1665
1666
1667bool
1668xfs_attr_namecheck(
1669 const void *name,
1670 size_t length)
1671{
1672
1673
1674
1675
1676 if (length >= MAXNAMELEN)
1677 return false;
1678
1679
1680 return !memchr(name, 0, length);
1681}
1682