Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License as |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 9 | * This program is distributed in the hope that it would be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write the Free Software Foundation, |
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
| 18 | #ifndef __XFS_DIR2_H__ |
Christoph Hellwig | 5792664 | 2011-07-13 13:43:48 +0200 | [diff] [blame] | 19 | #define __XFS_DIR2_H__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 21 | struct xfs_bmap_free; |
Christoph Hellwig | 5792664 | 2011-07-13 13:43:48 +0200 | [diff] [blame] | 22 | struct xfs_da_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | struct xfs_inode; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 24 | struct xfs_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | struct xfs_trans; |
Dave Chinner | 2b9ab5a | 2013-08-12 20:49:37 +1000 | [diff] [blame] | 26 | struct xfs_dir2_sf_hdr; |
| 27 | struct xfs_dir2_sf_entry; |
| 28 | struct xfs_dir2_data_hdr; |
| 29 | struct xfs_dir2_data_entry; |
| 30 | struct xfs_dir2_data_unused; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 32 | extern struct xfs_name xfs_name_dotdot; |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | /* |
Dave Chinner | 32c5483 | 2013-10-29 22:11:46 +1100 | [diff] [blame] | 35 | * directory operations vector for encode/decode routines |
| 36 | */ |
| 37 | struct xfs_dir_ops { |
| 38 | int (*sf_entsize)(struct xfs_dir2_sf_hdr *hdr, int len); |
| 39 | struct xfs_dir2_sf_entry * |
| 40 | (*sf_nextentry)(struct xfs_dir2_sf_hdr *hdr, |
| 41 | struct xfs_dir2_sf_entry *sfep); |
Dave Chinner | 4740175 | 2013-10-29 22:11:47 +1100 | [diff] [blame^] | 42 | __uint8_t (*sf_get_ftype)(struct xfs_dir2_sf_entry *sfep); |
| 43 | void (*sf_put_ftype)(struct xfs_dir2_sf_entry *sfep, |
| 44 | __uint8_t ftype); |
| 45 | xfs_ino_t (*sf_get_ino)(struct xfs_dir2_sf_hdr *hdr, |
| 46 | struct xfs_dir2_sf_entry *sfep); |
| 47 | void (*sf_put_ino)(struct xfs_dir2_sf_hdr *hdr, |
| 48 | struct xfs_dir2_sf_entry *sfep, |
| 49 | xfs_ino_t ino); |
| 50 | xfs_ino_t (*sf_get_parent_ino)(struct xfs_dir2_sf_hdr *hdr); |
| 51 | void (*sf_put_parent_ino)(struct xfs_dir2_sf_hdr *hdr, |
| 52 | xfs_ino_t ino); |
Dave Chinner | 32c5483 | 2013-10-29 22:11:46 +1100 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | extern const struct xfs_dir_ops xfs_dir2_ops; |
| 56 | extern const struct xfs_dir_ops xfs_dir2_ftype_ops; |
| 57 | extern const struct xfs_dir_ops xfs_dir3_ops; |
| 58 | |
| 59 | /* |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 60 | * Generic directory interface routines |
| 61 | */ |
| 62 | extern void xfs_dir_startup(void); |
| 63 | extern void xfs_dir_mount(struct xfs_mount *mp); |
| 64 | extern int xfs_dir_isempty(struct xfs_inode *dp); |
| 65 | extern int xfs_dir_init(struct xfs_trans *tp, struct xfs_inode *dp, |
| 66 | struct xfs_inode *pdp); |
| 67 | extern int xfs_dir_createname(struct xfs_trans *tp, struct xfs_inode *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 68 | struct xfs_name *name, xfs_ino_t inum, |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 69 | xfs_fsblock_t *first, |
| 70 | struct xfs_bmap_free *flist, xfs_extlen_t tot); |
| 71 | extern int xfs_dir_lookup(struct xfs_trans *tp, struct xfs_inode *dp, |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 72 | struct xfs_name *name, xfs_ino_t *inum, |
| 73 | struct xfs_name *ci_name); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 74 | extern int xfs_dir_removename(struct xfs_trans *tp, struct xfs_inode *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 75 | struct xfs_name *name, xfs_ino_t ino, |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 76 | xfs_fsblock_t *first, |
| 77 | struct xfs_bmap_free *flist, xfs_extlen_t tot); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 78 | extern int xfs_dir_replace(struct xfs_trans *tp, struct xfs_inode *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 79 | struct xfs_name *name, xfs_ino_t inum, |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 80 | xfs_fsblock_t *first, |
| 81 | struct xfs_bmap_free *flist, xfs_extlen_t tot); |
| 82 | extern int xfs_dir_canenter(struct xfs_trans *tp, struct xfs_inode *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 83 | struct xfs_name *name, uint resblks); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 84 | |
| 85 | /* |
Christoph Hellwig | 5792664 | 2011-07-13 13:43:48 +0200 | [diff] [blame] | 86 | * Direct call from the bmap code, bypassing the generic directory layer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | */ |
Christoph Hellwig | 5792664 | 2011-07-13 13:43:48 +0200 | [diff] [blame] | 88 | extern int xfs_dir2_sf_to_block(struct xfs_da_args *args); |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 89 | |
Dave Chinner | 2b9ab5a | 2013-08-12 20:49:37 +1000 | [diff] [blame] | 90 | /* |
Dave Chinner | 2b9ab5a | 2013-08-12 20:49:37 +1000 | [diff] [blame] | 91 | * Interface routines used by userspace utilities |
| 92 | */ |
Dave Chinner | 2b9ab5a | 2013-08-12 20:49:37 +1000 | [diff] [blame] | 93 | extern int xfs_dir2_isblock(struct xfs_trans *tp, struct xfs_inode *dp, int *r); |
| 94 | extern int xfs_dir2_isleaf(struct xfs_trans *tp, struct xfs_inode *dp, int *r); |
| 95 | extern int xfs_dir2_shrink_inode(struct xfs_da_args *args, xfs_dir2_db_t db, |
| 96 | struct xfs_buf *bp); |
| 97 | |
| 98 | extern void xfs_dir2_data_freescan(struct xfs_mount *mp, |
| 99 | struct xfs_dir2_data_hdr *hdr, int *loghead); |
| 100 | extern void xfs_dir2_data_log_entry(struct xfs_trans *tp, struct xfs_buf *bp, |
| 101 | struct xfs_dir2_data_entry *dep); |
| 102 | extern void xfs_dir2_data_log_header(struct xfs_trans *tp, |
| 103 | struct xfs_buf *bp); |
| 104 | extern void xfs_dir2_data_log_unused(struct xfs_trans *tp, struct xfs_buf *bp, |
| 105 | struct xfs_dir2_data_unused *dup); |
| 106 | extern void xfs_dir2_data_make_free(struct xfs_trans *tp, struct xfs_buf *bp, |
| 107 | xfs_dir2_data_aoff_t offset, xfs_dir2_data_aoff_t len, |
| 108 | int *needlogp, int *needscanp); |
| 109 | extern void xfs_dir2_data_use_free(struct xfs_trans *tp, struct xfs_buf *bp, |
| 110 | struct xfs_dir2_data_unused *dup, xfs_dir2_data_aoff_t offset, |
| 111 | xfs_dir2_data_aoff_t len, int *needlogp, int *needscanp); |
| 112 | |
| 113 | extern struct xfs_dir2_data_free *xfs_dir2_data_freefind( |
| 114 | struct xfs_dir2_data_hdr *hdr, struct xfs_dir2_data_unused *dup); |
| 115 | |
| 116 | extern const struct xfs_buf_ops xfs_dir3_block_buf_ops; |
| 117 | extern const struct xfs_buf_ops xfs_dir3_leafn_buf_ops; |
| 118 | extern const struct xfs_buf_ops xfs_dir3_leaf1_buf_ops; |
| 119 | extern const struct xfs_buf_ops xfs_dir3_free_buf_ops; |
| 120 | extern const struct xfs_buf_ops xfs_dir3_data_buf_ops; |
| 121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | #endif /* __XFS_DIR2_H__ */ |