blob: 5e2b92d8361735fb27d2b17ff132439821b4fb34 [file] [log] [blame]
Chris Mason0f827312007-10-15 16:18:56 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/highmem.h>
Li Zefan18077bb2012-07-09 20:22:35 -060020#include <asm/unaligned.h>
Chris Masond352ac62008-09-29 15:18:18 -040021
Li Zefan18077bb2012-07-09 20:22:35 -060022#include "ctree.h"
23
24static inline u8 get_unaligned_le8(const void *p)
25{
26 return *(u8 *)p;
27}
28
29static inline void put_unaligned_le8(u8 val, void *p)
30{
31 *(u8 *)p = val;
32}
33
34/*
35 * this is some deeply nasty code.
Chris Masond352ac62008-09-29 15:18:18 -040036 *
37 * The end result is that anyone who #includes ctree.h gets a
Li Zefan18077bb2012-07-09 20:22:35 -060038 * declaration for the btrfs_set_foo functions and btrfs_foo functions,
Nicholas D Steeves01327612016-05-19 21:18:45 -040039 * which are wrappers of btrfs_set_token_#bits functions and
Li Zefan18077bb2012-07-09 20:22:35 -060040 * btrfs_get_token_#bits functions, which are defined in this file.
Chris Masond352ac62008-09-29 15:18:18 -040041 *
42 * These setget functions do all the extent_buffer related mapping
43 * required to efficiently read and write specific fields in the extent
44 * buffers. Every pointer to metadata items in btrfs is really just
45 * an unsigned long offset into the extent buffer which has been
46 * cast to a specific type. This gives us all the gcc type checking.
47 *
Li Zefan18077bb2012-07-09 20:22:35 -060048 * The extent buffer api is used to do the page spanning work required to
49 * have a metadata blocksize different from the page size.
Chris Masond352ac62008-09-29 15:18:18 -040050 */
51
Li Zefan18077bb2012-07-09 20:22:35 -060052#define DEFINE_BTRFS_SETGET_BITS(bits) \
Jeff Mahoney20b304152017-06-28 21:56:53 -060053u##bits btrfs_get_token_##bits(const struct extent_buffer *eb, \
54 const void *ptr, unsigned long off, \
Li Zefan18077bb2012-07-09 20:22:35 -060055 struct btrfs_map_token *token) \
Chris Mason0f827312007-10-15 16:18:56 -040056{ \
Li Zefan18077bb2012-07-09 20:22:35 -060057 unsigned long part_offset = (unsigned long)ptr; \
58 unsigned long offset = part_offset + off; \
59 void *p; \
60 int err; \
61 char *kaddr; \
62 unsigned long map_start; \
63 unsigned long map_len; \
64 int size = sizeof(u##bits); \
65 u##bits res; \
66 \
67 if (token && token->kaddr && token->offset <= offset && \
68 token->eb == eb && \
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +030069 (token->offset + PAGE_SIZE >= offset + size)) { \
Li Zefan18077bb2012-07-09 20:22:35 -060070 kaddr = token->kaddr; \
71 p = kaddr + part_offset - token->offset; \
72 res = get_unaligned_le##bits(p + off); \
73 return res; \
74 } \
75 err = map_private_extent_buffer(eb, offset, size, \
76 &kaddr, &map_start, &map_len); \
77 if (err) { \
78 __le##bits leres; \
79 \
80 read_extent_buffer(eb, &leres, offset, size); \
81 return le##bits##_to_cpu(leres); \
82 } \
83 p = kaddr + part_offset - map_start; \
84 res = get_unaligned_le##bits(p + off); \
85 if (token) { \
86 token->kaddr = kaddr; \
87 token->offset = map_start; \
88 token->eb = eb; \
89 } \
90 return res; \
Chris Mason0f827312007-10-15 16:18:56 -040091} \
Li Zefan18077bb2012-07-09 20:22:35 -060092void btrfs_set_token_##bits(struct extent_buffer *eb, \
Jeff Mahoney20b304152017-06-28 21:56:53 -060093 const void *ptr, unsigned long off, \
94 u##bits val, \
Li Zefan18077bb2012-07-09 20:22:35 -060095 struct btrfs_map_token *token) \
Chris Mason0f827312007-10-15 16:18:56 -040096{ \
Li Zefan18077bb2012-07-09 20:22:35 -060097 unsigned long part_offset = (unsigned long)ptr; \
98 unsigned long offset = part_offset + off; \
99 void *p; \
100 int err; \
101 char *kaddr; \
102 unsigned long map_start; \
103 unsigned long map_len; \
104 int size = sizeof(u##bits); \
105 \
106 if (token && token->kaddr && token->offset <= offset && \
107 token->eb == eb && \
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +0300108 (token->offset + PAGE_SIZE >= offset + size)) { \
Li Zefan18077bb2012-07-09 20:22:35 -0600109 kaddr = token->kaddr; \
110 p = kaddr + part_offset - token->offset; \
111 put_unaligned_le##bits(val, p + off); \
112 return; \
113 } \
114 err = map_private_extent_buffer(eb, offset, size, \
115 &kaddr, &map_start, &map_len); \
116 if (err) { \
117 __le##bits val2; \
118 \
119 val2 = cpu_to_le##bits(val); \
120 write_extent_buffer(eb, &val2, offset, size); \
121 return; \
122 } \
123 p = kaddr + part_offset - map_start; \
124 put_unaligned_le##bits(val, p + off); \
125 if (token) { \
126 token->kaddr = kaddr; \
127 token->offset = map_start; \
128 token->eb = eb; \
129 } \
130}
Chris Mason0f827312007-10-15 16:18:56 -0400131
Li Zefan18077bb2012-07-09 20:22:35 -0600132DEFINE_BTRFS_SETGET_BITS(8)
133DEFINE_BTRFS_SETGET_BITS(16)
134DEFINE_BTRFS_SETGET_BITS(32)
135DEFINE_BTRFS_SETGET_BITS(64)
Chris Mason0f827312007-10-15 16:18:56 -0400136
Jeff Mahoney20b304152017-06-28 21:56:53 -0600137void btrfs_node_key(const struct extent_buffer *eb,
Chris Masone644d022007-11-06 15:09:29 -0500138 struct btrfs_disk_key *disk_key, int nr)
139{
140 unsigned long ptr = btrfs_node_key_ptr_offset(nr);
Chris Masone644d022007-11-06 15:09:29 -0500141 read_eb_member(eb, (struct btrfs_key_ptr *)ptr,
142 struct btrfs_key_ptr, key, disk_key);
143}