blob: c0a45923cce05436f6a7462915cac8dec2a8c150 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * 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 Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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 Torvalds1da177e2005-04-16 15:20:36 -070017 */
18#ifndef __XFS_DIR2_H__
Christoph Hellwig57926642011-07-13 13:43:48 +020019#define __XFS_DIR2_H__
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100021struct xfs_bmap_free;
Christoph Hellwig57926642011-07-13 13:43:48 +020022struct xfs_da_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023struct xfs_inode;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100024struct xfs_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025struct xfs_trans;
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100026struct xfs_dir2_sf_hdr;
27struct xfs_dir2_sf_entry;
28struct xfs_dir2_data_hdr;
29struct xfs_dir2_data_entry;
30struct xfs_dir2_data_unused;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Barry Naujok556b8b12008-04-10 12:22:07 +100032extern struct xfs_name xfs_name_dotdot;
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/*
Dave Chinner32c54832013-10-29 22:11:46 +110035 * directory operations vector for encode/decode routines
36 */
37struct 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 Chinner47401752013-10-29 22:11:47 +110042 __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 Chinner9d23fc82013-10-29 22:11:48 +110053
54 int (*data_entsize)(int len);
55 __uint8_t (*data_get_ftype)(struct xfs_dir2_data_entry *dep);
56 void (*data_put_ftype)(struct xfs_dir2_data_entry *dep,
57 __uint8_t ftype);
58 __be16 * (*data_entry_tag_p)(struct xfs_dir2_data_entry *dep);
59
60 xfs_dir2_data_aoff_t (*data_dot_offset)(void);
61 xfs_dir2_data_aoff_t (*data_dotdot_offset)(void);
62 xfs_dir2_data_aoff_t (*data_first_offset)(void);
63 struct xfs_dir2_data_entry *
64 (*data_dot_entry_p)(struct xfs_dir2_data_hdr *hdr);
65 struct xfs_dir2_data_entry *
66 (*data_dotdot_entry_p)(struct xfs_dir2_data_hdr *hdr);
67 struct xfs_dir2_data_entry *
68 (*data_first_entry_p)(struct xfs_dir2_data_hdr *hdr);
Dave Chinner32c54832013-10-29 22:11:46 +110069};
70
71extern const struct xfs_dir_ops xfs_dir2_ops;
72extern const struct xfs_dir_ops xfs_dir2_ftype_ops;
73extern const struct xfs_dir_ops xfs_dir3_ops;
74
75/*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100076 * Generic directory interface routines
77 */
78extern void xfs_dir_startup(void);
79extern void xfs_dir_mount(struct xfs_mount *mp);
80extern int xfs_dir_isempty(struct xfs_inode *dp);
81extern int xfs_dir_init(struct xfs_trans *tp, struct xfs_inode *dp,
82 struct xfs_inode *pdp);
83extern int xfs_dir_createname(struct xfs_trans *tp, struct xfs_inode *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +100084 struct xfs_name *name, xfs_ino_t inum,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100085 xfs_fsblock_t *first,
86 struct xfs_bmap_free *flist, xfs_extlen_t tot);
87extern int xfs_dir_lookup(struct xfs_trans *tp, struct xfs_inode *dp,
Barry Naujok384f3ce2008-05-21 16:58:22 +100088 struct xfs_name *name, xfs_ino_t *inum,
89 struct xfs_name *ci_name);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100090extern int xfs_dir_removename(struct xfs_trans *tp, struct xfs_inode *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +100091 struct xfs_name *name, xfs_ino_t ino,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100092 xfs_fsblock_t *first,
93 struct xfs_bmap_free *flist, xfs_extlen_t tot);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100094extern int xfs_dir_replace(struct xfs_trans *tp, struct xfs_inode *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +100095 struct xfs_name *name, xfs_ino_t inum,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100096 xfs_fsblock_t *first,
97 struct xfs_bmap_free *flist, xfs_extlen_t tot);
98extern int xfs_dir_canenter(struct xfs_trans *tp, struct xfs_inode *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +100099 struct xfs_name *name, uint resblks);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000100
101/*
Christoph Hellwig57926642011-07-13 13:43:48 +0200102 * Direct call from the bmap code, bypassing the generic directory layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 */
Christoph Hellwig57926642011-07-13 13:43:48 +0200104extern int xfs_dir2_sf_to_block(struct xfs_da_args *args);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000105
Dave Chinner2b9ab5a2013-08-12 20:49:37 +1000106/*
Dave Chinner2b9ab5a2013-08-12 20:49:37 +1000107 * Interface routines used by userspace utilities
108 */
Dave Chinner2b9ab5a2013-08-12 20:49:37 +1000109extern int xfs_dir2_isblock(struct xfs_trans *tp, struct xfs_inode *dp, int *r);
110extern int xfs_dir2_isleaf(struct xfs_trans *tp, struct xfs_inode *dp, int *r);
111extern int xfs_dir2_shrink_inode(struct xfs_da_args *args, xfs_dir2_db_t db,
112 struct xfs_buf *bp);
113
Dave Chinner9d23fc82013-10-29 22:11:48 +1100114extern void xfs_dir2_data_freescan(struct xfs_inode *dp,
Dave Chinner2b9ab5a2013-08-12 20:49:37 +1000115 struct xfs_dir2_data_hdr *hdr, int *loghead);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100116extern void xfs_dir2_data_log_entry(struct xfs_trans *tp, struct xfs_inode *dp,
117 struct xfs_buf *bp, struct xfs_dir2_data_entry *dep);
Dave Chinner2b9ab5a2013-08-12 20:49:37 +1000118extern void xfs_dir2_data_log_header(struct xfs_trans *tp,
119 struct xfs_buf *bp);
120extern void xfs_dir2_data_log_unused(struct xfs_trans *tp, struct xfs_buf *bp,
121 struct xfs_dir2_data_unused *dup);
122extern void xfs_dir2_data_make_free(struct xfs_trans *tp, struct xfs_buf *bp,
123 xfs_dir2_data_aoff_t offset, xfs_dir2_data_aoff_t len,
124 int *needlogp, int *needscanp);
125extern void xfs_dir2_data_use_free(struct xfs_trans *tp, struct xfs_buf *bp,
126 struct xfs_dir2_data_unused *dup, xfs_dir2_data_aoff_t offset,
127 xfs_dir2_data_aoff_t len, int *needlogp, int *needscanp);
128
129extern struct xfs_dir2_data_free *xfs_dir2_data_freefind(
130 struct xfs_dir2_data_hdr *hdr, struct xfs_dir2_data_unused *dup);
131
132extern const struct xfs_buf_ops xfs_dir3_block_buf_ops;
133extern const struct xfs_buf_ops xfs_dir3_leafn_buf_ops;
134extern const struct xfs_buf_ops xfs_dir3_leaf1_buf_ops;
135extern const struct xfs_buf_ops xfs_dir3_free_buf_ops;
136extern const struct xfs_buf_ops xfs_dir3_data_buf_ops;
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#endif /* __XFS_DIR2_H__ */