Blame view

fs/ntfs/attrib.h 3.47 KB
a1d312de7   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-or-later */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
  /*
   * attrib.h - Defines for attribute handling in NTFS Linux kernel driver.
   *	      Part of the Linux-NTFS project.
   *
271849a98   Anton Altaparmakov   NTFS: Add fs/ntfs...
6
   * Copyright (c) 2001-2005 Anton Altaparmakov
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
   * Copyright (c) 2002 Richard Russon
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
   */
  
  #ifndef _LINUX_NTFS_ATTRIB_H
  #define _LINUX_NTFS_ATTRIB_H
  
  #include "endian.h"
  #include "types.h"
  #include "layout.h"
  #include "inode.h"
  #include "runlist.h"
  #include "volume.h"
  
  /**
   * ntfs_attr_search_ctx - used in attribute search functions
   * @mrec:	buffer containing mft record to search
   * @attr:	attribute record in @mrec where to begin/continue search
   * @is_first:	if true ntfs_attr_lookup() begins search with @attr, else after
   *
   * Structure must be initialized to zero before the first call to one of the
   * attribute search functions. Initialize @mrec to point to the mft record to
   * search, and @attr to point to the first attribute within @mrec (not necessary
c49c31115   Richard Knutsson   [PATCH] fs/ntfs: ...
29
   * if calling the _first() functions), and set @is_first to 'true' (not necessary
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
30
31
   * if calling the _first() functions).
   *
c49c31115   Richard Knutsson   [PATCH] fs/ntfs: ...
32
   * If @is_first is 'true', the search begins with @attr. If @is_first is 'false',
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
33
34
35
36
37
38
39
40
   * the search begins after @attr. This is so that, after the first call to one
   * of the search attribute functions, we can call the function again, without
   * any modification of the search context, to automagically get the next
   * matching attribute.
   */
  typedef struct {
  	MFT_RECORD *mrec;
  	ATTR_RECORD *attr;
c49c31115   Richard Knutsson   [PATCH] fs/ntfs: ...
41
  	bool is_first;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42
43
44
45
46
47
  	ntfs_inode *ntfs_ino;
  	ATTR_LIST_ENTRY *al_entry;
  	ntfs_inode *base_ntfs_ino;
  	MFT_RECORD *base_mrec;
  	ATTR_RECORD *base_attr;
  } ntfs_attr_search_ctx;
fd9d63678   Anton Altaparmakov   NTFS: Change ntfs...
48
49
  extern int ntfs_map_runlist_nolock(ntfs_inode *ni, VCN vcn,
  		ntfs_attr_search_ctx *ctx);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50
  extern int ntfs_map_runlist(ntfs_inode *ni, VCN vcn);
271849a98   Anton Altaparmakov   NTFS: Add fs/ntfs...
51
  extern LCN ntfs_attr_vcn_to_lcn_nolock(ntfs_inode *ni, const VCN vcn,
c49c31115   Richard Knutsson   [PATCH] fs/ntfs: ...
52
  		const bool write_locked);
271849a98   Anton Altaparmakov   NTFS: Add fs/ntfs...
53

c0c1cc0e4   Anton Altaparmakov   NTFS: - Fix bug i...
54
  extern runlist_element *ntfs_attr_find_vcn_nolock(ntfs_inode *ni,
69b41e3c0   Anton Altaparmakov   NTFS: Change ntfs...
55
  		const VCN vcn, ntfs_attr_search_ctx *ctx);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  
  int ntfs_attr_lookup(const ATTR_TYPE type, const ntfschar *name,
  		const u32 name_len, const IGNORE_CASE_BOOL ic,
  		const VCN lowest_vcn, const u8 *val, const u32 val_len,
  		ntfs_attr_search_ctx *ctx);
  
  extern int load_attribute_list(ntfs_volume *vol, runlist *rl, u8 *al_start,
  		const s64 size, const s64 initialized_size);
  
  static inline s64 ntfs_attr_size(const ATTR_RECORD *a)
  {
  	if (!a->non_resident)
  		return (s64)le32_to_cpu(a->data.resident.value_length);
  	return sle64_to_cpu(a->data.non_resident.data_size);
  }
  
  extern void ntfs_attr_reinit_search_ctx(ntfs_attr_search_ctx *ctx);
  extern ntfs_attr_search_ctx *ntfs_attr_get_search_ctx(ntfs_inode *ni,
  		MFT_RECORD *mrec);
  extern void ntfs_attr_put_search_ctx(ntfs_attr_search_ctx *ctx);
53d59aad9   Anton Altaparmakov   NTFS: Fix compila...
76
  #ifdef NTFS_RW
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
77
78
79
80
81
82
83
84
  extern int ntfs_attr_size_bounds_check(const ntfs_volume *vol,
  		const ATTR_TYPE type, const s64 size);
  extern int ntfs_attr_can_be_non_resident(const ntfs_volume *vol,
  		const ATTR_TYPE type);
  extern int ntfs_attr_can_be_resident(const ntfs_volume *vol,
  		const ATTR_TYPE type);
  
  extern int ntfs_attr_record_resize(MFT_RECORD *m, ATTR_RECORD *a, u32 new_size);
0aacceacf   Anton Altaparmakov   NTFS: Add fs/ntfs...
85
86
  extern int ntfs_resident_attr_value_resize(MFT_RECORD *m, ATTR_RECORD *a,
  		const u32 new_size);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
87

8925d4f0d   Anton Altaparmakov   NTFS: Change ntfs...
88
  extern int ntfs_attr_make_non_resident(ntfs_inode *ni, const u32 data_size);
2bfb4fff3   Anton Altaparmakov   NTFS: Add fs/ntfs...
89

2d86829b8   Anton Altaparmakov   NTFS: Add fs/ntfs...
90
91
  extern s64 ntfs_attr_extend_allocation(ntfs_inode *ni, s64 new_alloc_size,
  		const s64 new_data_size, const s64 data_start);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
92
93
  extern int ntfs_attr_set(ntfs_inode *ni, const s64 ofs, const s64 cnt,
  		const u8 val);
53d59aad9   Anton Altaparmakov   NTFS: Fix compila...
94
  #endif /* NTFS_RW */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
95
  #endif /* _LINUX_NTFS_ATTRIB_H */