blob: 1bad84c408295ae4db2de71d96c74b18fff5b2b2 [file] [log] [blame]
Christoph Hellwig57926642011-07-13 13:43:48 +02001/*
2 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
4 *
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
7 * published by the Free Software Foundation.
8 *
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.
13 *
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
17 */
18#ifndef __XFS_DIR2_PRIV_H__
19#define __XFS_DIR2_PRIV_H__
20
Dave Chinner0cb97762013-08-12 20:50:09 +100021struct dir_context;
22
Christoph Hellwig57926642011-07-13 13:43:48 +020023/* xfs_dir2.c */
24extern int xfs_dir_ino_validate(struct xfs_mount *mp, xfs_ino_t ino);
Christoph Hellwig57926642011-07-13 13:43:48 +020025extern int xfs_dir2_grow_inode(struct xfs_da_args *args, int space,
26 xfs_dir2_db_t *dbp);
Christoph Hellwig57926642011-07-13 13:43:48 +020027extern int xfs_dir_cilookup_result(struct xfs_da_args *args,
28 const unsigned char *name, int len);
29
Dave Chinner0cb97762013-08-12 20:50:09 +100030#define S_SHIFT 12
31extern const unsigned char xfs_mode_to_ftype[];
32
33extern unsigned char xfs_dir3_get_dtype(struct xfs_mount *mp,
34 __uint8_t filetype);
35
36
Christoph Hellwig57926642011-07-13 13:43:48 +020037/* xfs_dir2_block.c */
Dave Chinner4a8af272013-08-12 20:49:36 +100038extern int xfs_dir3_block_read(struct xfs_trans *tp, struct xfs_inode *dp,
39 struct xfs_buf **bpp);
Christoph Hellwig57926642011-07-13 13:43:48 +020040extern int xfs_dir2_block_addname(struct xfs_da_args *args);
Christoph Hellwig57926642011-07-13 13:43:48 +020041extern int xfs_dir2_block_lookup(struct xfs_da_args *args);
42extern int xfs_dir2_block_removename(struct xfs_da_args *args);
43extern int xfs_dir2_block_replace(struct xfs_da_args *args);
44extern int xfs_dir2_leaf_to_block(struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +100045 struct xfs_buf *lbp, struct xfs_buf *dbp);
Christoph Hellwig57926642011-07-13 13:43:48 +020046
47/* xfs_dir2_data.c */
48#ifdef DEBUG
Dave Chinner33363fe2013-04-03 16:11:22 +110049#define xfs_dir3_data_check(dp,bp) __xfs_dir3_data_check(dp, bp);
Christoph Hellwig57926642011-07-13 13:43:48 +020050#else
Dave Chinner33363fe2013-04-03 16:11:22 +110051#define xfs_dir3_data_check(dp,bp)
Christoph Hellwig57926642011-07-13 13:43:48 +020052#endif
Dave Chinner1813dd62012-11-14 17:54:40 +110053
Dave Chinner33363fe2013-04-03 16:11:22 +110054extern int __xfs_dir3_data_check(struct xfs_inode *dp, struct xfs_buf *bp);
55extern int xfs_dir3_data_read(struct xfs_trans *tp, struct xfs_inode *dp,
Dave Chinnere4813572012-11-12 22:54:14 +110056 xfs_dablk_t bno, xfs_daddr_t mapped_bno, struct xfs_buf **bpp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +100057extern int xfs_dir3_data_readahead(struct xfs_trans *tp, struct xfs_inode *dp,
58 xfs_dablk_t bno, xfs_daddr_t mapped_bno);
Dave Chinner82025d72012-11-12 22:54:12 +110059
Christoph Hellwig57926642011-07-13 13:43:48 +020060extern struct xfs_dir2_data_free *
61xfs_dir2_data_freeinsert(struct xfs_dir2_data_hdr *hdr,
62 struct xfs_dir2_data_unused *dup, int *loghead);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110063extern int xfs_dir3_data_init(struct xfs_da_args *args, xfs_dir2_db_t blkno,
Dave Chinner1d9025e2012-06-22 18:50:14 +100064 struct xfs_buf **bpp);
Christoph Hellwig57926642011-07-13 13:43:48 +020065
66/* xfs_dir2_leaf.c */
Dave Chinner24df33b2013-04-12 07:30:21 +100067extern int xfs_dir3_leafn_read(struct xfs_trans *tp, struct xfs_inode *dp,
Dave Chinnere6f76672012-11-12 22:54:15 +110068 xfs_dablk_t fbno, xfs_daddr_t mappedbno, struct xfs_buf **bpp);
Christoph Hellwig57926642011-07-13 13:43:48 +020069extern int xfs_dir2_block_to_leaf(struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +100070 struct xfs_buf *dbp);
Christoph Hellwig57926642011-07-13 13:43:48 +020071extern int xfs_dir2_leaf_addname(struct xfs_da_args *args);
Dave Chinner24df33b2013-04-12 07:30:21 +100072extern void xfs_dir3_leaf_compact(struct xfs_da_args *args,
73 struct xfs_dir3_icleaf_hdr *leafhdr, struct xfs_buf *bp);
74extern void xfs_dir3_leaf_compact_x1(struct xfs_dir3_icleaf_hdr *leafhdr,
75 struct xfs_dir2_leaf_entry *ents, int *indexp,
Christoph Hellwig57926642011-07-13 13:43:48 +020076 int *lowstalep, int *highstalep, int *lowlogp, int *highlogp);
Dave Chinner24df33b2013-04-12 07:30:21 +100077extern int xfs_dir3_leaf_get_buf(struct xfs_da_args *args, xfs_dir2_db_t bno,
78 struct xfs_buf **bpp, __uint16_t magic);
79extern void xfs_dir3_leaf_log_ents(struct xfs_trans *tp, struct xfs_buf *bp,
Christoph Hellwig57926642011-07-13 13:43:48 +020080 int first, int last);
Dave Chinner24df33b2013-04-12 07:30:21 +100081extern void xfs_dir3_leaf_log_header(struct xfs_trans *tp,
Dave Chinner1d9025e2012-06-22 18:50:14 +100082 struct xfs_buf *bp);
Christoph Hellwig57926642011-07-13 13:43:48 +020083extern int xfs_dir2_leaf_lookup(struct xfs_da_args *args);
84extern int xfs_dir2_leaf_removename(struct xfs_da_args *args);
85extern int xfs_dir2_leaf_replace(struct xfs_da_args *args);
86extern int xfs_dir2_leaf_search_hash(struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +100087 struct xfs_buf *lbp);
Christoph Hellwig57926642011-07-13 13:43:48 +020088extern int xfs_dir2_leaf_trim_data(struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +100089 struct xfs_buf *lbp, xfs_dir2_db_t db);
Christoph Hellwig57926642011-07-13 13:43:48 +020090extern struct xfs_dir2_leaf_entry *
Dave Chinner24df33b2013-04-12 07:30:21 +100091xfs_dir3_leaf_find_entry(struct xfs_dir3_icleaf_hdr *leafhdr,
92 struct xfs_dir2_leaf_entry *ents, int index, int compact,
93 int lowstale, int highstale, int *lfloglow, int *lfloghigh);
Christoph Hellwig57926642011-07-13 13:43:48 +020094extern int xfs_dir2_node_to_leaf(struct xfs_da_state *state);
95
Dave Chinner24df33b2013-04-12 07:30:21 +100096extern void xfs_dir3_leaf_hdr_from_disk(struct xfs_dir3_icleaf_hdr *to,
97 struct xfs_dir2_leaf *from);
98extern void xfs_dir3_leaf_hdr_to_disk(struct xfs_dir2_leaf *to,
99 struct xfs_dir3_icleaf_hdr *from);
100extern bool xfs_dir3_leaf_check_int(struct xfs_mount *mp,
101 struct xfs_dir3_icleaf_hdr *hdr, struct xfs_dir2_leaf *leaf);
102
Christoph Hellwig57926642011-07-13 13:43:48 +0200103/* xfs_dir2_node.c */
104extern int xfs_dir2_leaf_to_node(struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000105 struct xfs_buf *lbp);
106extern xfs_dahash_t xfs_dir2_leafn_lasthash(struct xfs_buf *bp, int *count);
107extern int xfs_dir2_leafn_lookup_int(struct xfs_buf *bp,
Christoph Hellwig57926642011-07-13 13:43:48 +0200108 struct xfs_da_args *args, int *indexp,
109 struct xfs_da_state *state);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000110extern int xfs_dir2_leafn_order(struct xfs_buf *leaf1_bp,
111 struct xfs_buf *leaf2_bp);
Christoph Hellwig57926642011-07-13 13:43:48 +0200112extern int xfs_dir2_leafn_split(struct xfs_da_state *state,
113 struct xfs_da_state_blk *oldblk, struct xfs_da_state_blk *newblk);
114extern int xfs_dir2_leafn_toosmall(struct xfs_da_state *state, int *action);
115extern void xfs_dir2_leafn_unbalance(struct xfs_da_state *state,
116 struct xfs_da_state_blk *drop_blk,
117 struct xfs_da_state_blk *save_blk);
118extern int xfs_dir2_node_addname(struct xfs_da_args *args);
119extern int xfs_dir2_node_lookup(struct xfs_da_args *args);
120extern int xfs_dir2_node_removename(struct xfs_da_args *args);
121extern int xfs_dir2_node_replace(struct xfs_da_args *args);
122extern int xfs_dir2_node_trim_free(struct xfs_da_args *args, xfs_fileoff_t fo,
123 int *rvalp);
Dave Chinner20252072012-11-12 22:54:13 +1100124extern int xfs_dir2_free_read(struct xfs_trans *tp, struct xfs_inode *dp,
125 xfs_dablk_t fbno, struct xfs_buf **bpp);
Christoph Hellwig57926642011-07-13 13:43:48 +0200126
127/* xfs_dir2_sf.c */
Christoph Hellwig57926642011-07-13 13:43:48 +0200128extern int xfs_dir2_block_sfsize(struct xfs_inode *dp,
129 struct xfs_dir2_data_hdr *block, struct xfs_dir2_sf_hdr *sfhp);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000130extern int xfs_dir2_block_to_sf(struct xfs_da_args *args, struct xfs_buf *bp,
Christoph Hellwig57926642011-07-13 13:43:48 +0200131 int size, xfs_dir2_sf_hdr_t *sfhp);
132extern int xfs_dir2_sf_addname(struct xfs_da_args *args);
133extern int xfs_dir2_sf_create(struct xfs_da_args *args, xfs_ino_t pino);
Christoph Hellwig57926642011-07-13 13:43:48 +0200134extern int xfs_dir2_sf_lookup(struct xfs_da_args *args);
135extern int xfs_dir2_sf_removename(struct xfs_da_args *args);
136extern int xfs_dir2_sf_replace(struct xfs_da_args *args);
137
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000138/* xfs_dir2_readdir.c */
139extern int xfs_readdir(struct xfs_inode *dp, struct dir_context *ctx,
140 size_t bufsize);
141
Christoph Hellwig57926642011-07-13 13:43:48 +0200142#endif /* __XFS_DIR2_PRIV_H__ */