blob: e0a50f1ca76f22d0f31312afbd24ac7091a0ad7c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * attrib.h - Defines for attribute handling in NTFS Linux kernel driver.
3 * Part of the Linux-NTFS project.
4 *
Anton Altaparmakov271849a2005-03-07 21:36:18 +00005 * Copyright (c) 2001-2005 Anton Altaparmakov
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (c) 2002 Richard Russon
7 *
8 * This program/include file is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as published
10 * by the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program/include file is distributed in the hope that it will be
14 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
15 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program (in the main directory of the Linux-NTFS
20 * distribution in the file COPYING); if not, write to the Free Software
21 * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24#ifndef _LINUX_NTFS_ATTRIB_H
25#define _LINUX_NTFS_ATTRIB_H
26
27#include "endian.h"
28#include "types.h"
29#include "layout.h"
30#include "inode.h"
31#include "runlist.h"
32#include "volume.h"
33
34/**
35 * ntfs_attr_search_ctx - used in attribute search functions
36 * @mrec: buffer containing mft record to search
37 * @attr: attribute record in @mrec where to begin/continue search
38 * @is_first: if true ntfs_attr_lookup() begins search with @attr, else after
39 *
40 * Structure must be initialized to zero before the first call to one of the
41 * attribute search functions. Initialize @mrec to point to the mft record to
42 * search, and @attr to point to the first attribute within @mrec (not necessary
43 * if calling the _first() functions), and set @is_first to TRUE (not necessary
44 * if calling the _first() functions).
45 *
46 * If @is_first is TRUE, the search begins with @attr. If @is_first is FALSE,
47 * the search begins after @attr. This is so that, after the first call to one
48 * of the search attribute functions, we can call the function again, without
49 * any modification of the search context, to automagically get the next
50 * matching attribute.
51 */
52typedef struct {
53 MFT_RECORD *mrec;
54 ATTR_RECORD *attr;
55 BOOL is_first;
56 ntfs_inode *ntfs_ino;
57 ATTR_LIST_ENTRY *al_entry;
58 ntfs_inode *base_ntfs_ino;
59 MFT_RECORD *base_mrec;
60 ATTR_RECORD *base_attr;
61} ntfs_attr_search_ctx;
62
Anton Altaparmakovb6ad6c52005-02-15 10:08:43 +000063extern int ntfs_map_runlist_nolock(ntfs_inode *ni, VCN vcn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064extern int ntfs_map_runlist(ntfs_inode *ni, VCN vcn);
65
Anton Altaparmakov271849a2005-03-07 21:36:18 +000066extern LCN ntfs_attr_vcn_to_lcn_nolock(ntfs_inode *ni, const VCN vcn,
67 const BOOL write_locked);
68
Anton Altaparmakovc0c1cc02005-03-07 21:43:38 +000069extern runlist_element *ntfs_attr_find_vcn_nolock(ntfs_inode *ni,
70 const VCN vcn, const BOOL write_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72int ntfs_attr_lookup(const ATTR_TYPE type, const ntfschar *name,
73 const u32 name_len, const IGNORE_CASE_BOOL ic,
74 const VCN lowest_vcn, const u8 *val, const u32 val_len,
75 ntfs_attr_search_ctx *ctx);
76
77extern int load_attribute_list(ntfs_volume *vol, runlist *rl, u8 *al_start,
78 const s64 size, const s64 initialized_size);
79
80static inline s64 ntfs_attr_size(const ATTR_RECORD *a)
81{
82 if (!a->non_resident)
83 return (s64)le32_to_cpu(a->data.resident.value_length);
84 return sle64_to_cpu(a->data.non_resident.data_size);
85}
86
87extern void ntfs_attr_reinit_search_ctx(ntfs_attr_search_ctx *ctx);
88extern ntfs_attr_search_ctx *ntfs_attr_get_search_ctx(ntfs_inode *ni,
89 MFT_RECORD *mrec);
90extern void ntfs_attr_put_search_ctx(ntfs_attr_search_ctx *ctx);
91
92extern int ntfs_attr_size_bounds_check(const ntfs_volume *vol,
93 const ATTR_TYPE type, const s64 size);
94extern int ntfs_attr_can_be_non_resident(const ntfs_volume *vol,
95 const ATTR_TYPE type);
96extern int ntfs_attr_can_be_resident(const ntfs_volume *vol,
97 const ATTR_TYPE type);
98
99extern int ntfs_attr_record_resize(MFT_RECORD *m, ATTR_RECORD *a, u32 new_size);
100
101extern int ntfs_attr_set(ntfs_inode *ni, const s64 ofs, const s64 cnt,
102 const u8 val);
103
104#endif /* _LINUX_NTFS_ATTRIB_H */