blob: a9805bacbd7ca5305e08803c1e7b336b6d6597d5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef __LINUX_BITMAP_H
3#define __LINUX_BITMAP_H
4
5#ifndef __ASSEMBLY__
6
7#include <linux/types.h>
8#include <linux/bitops.h>
9#include <linux/string.h>
Jiri Slaby14ed9d22007-10-18 23:40:37 -070010#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12/*
13 * bitmaps provide bit arrays that consume one or more unsigned
14 * longs. The bitmap interface and available operations are listed
15 * here, in bitmap.h
16 *
17 * Function implementations generic to all architectures are in
18 * lib/bitmap.c. Functions implementations that are architecture
19 * specific are in various include/asm-<arch>/bitops.h headers
20 * and other arch/<arch> specific files.
21 *
22 * See lib/bitmap.c for more details.
23 */
24
Randy Dunlap7d7363e2017-10-16 16:32:51 -070025/**
26 * DOC: bitmap overview
27 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * The available bitmap operations and their rough meaning in the
29 * case that the bitmap is a single unsigned long are thus:
30 *
Andi Kleen08cd3652006-06-26 13:57:10 +020031 * Note that nbits should be always a compile time evaluable constant.
32 * Otherwise many inlines will generate horrible code.
33 *
Randy Dunlap7d7363e2017-10-16 16:32:51 -070034 * ::
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 *
Randy Dunlap7d7363e2017-10-16 16:32:51 -070036 * bitmap_zero(dst, nbits) *dst = 0UL
37 * bitmap_fill(dst, nbits) *dst = ~0UL
38 * bitmap_copy(dst, src, nbits) *dst = *src
39 * bitmap_and(dst, src1, src2, nbits) *dst = *src1 & *src2
40 * bitmap_or(dst, src1, src2, nbits) *dst = *src1 | *src2
41 * bitmap_xor(dst, src1, src2, nbits) *dst = *src1 ^ *src2
42 * bitmap_andnot(dst, src1, src2, nbits) *dst = *src1 & ~(*src2)
43 * bitmap_complement(dst, src, nbits) *dst = ~(*src)
44 * bitmap_equal(src1, src2, nbits) Are *src1 and *src2 equal?
45 * bitmap_intersects(src1, src2, nbits) Do *src1 and *src2 overlap?
46 * bitmap_subset(src1, src2, nbits) Is *src1 a subset of *src2?
47 * bitmap_empty(src, nbits) Are all bits zero in *src?
48 * bitmap_full(src, nbits) Are all bits set in *src?
49 * bitmap_weight(src, nbits) Hamming Weight: number set bits
50 * bitmap_set(dst, pos, nbits) Set specified bit area
51 * bitmap_clear(dst, pos, nbits) Clear specified bit area
52 * bitmap_find_next_zero_area(buf, len, pos, n, mask) Find bit free area
53 * bitmap_find_next_zero_area_off(buf, len, pos, n, mask) as above
54 * bitmap_shift_right(dst, src, n, nbits) *dst = *src >> n
55 * bitmap_shift_left(dst, src, n, nbits) *dst = *src << n
56 * bitmap_remap(dst, src, old, new, nbits) *dst = map(old, new)(src)
57 * bitmap_bitremap(oldbit, old, new, nbits) newbit = map(old, new)(oldbit)
58 * bitmap_onto(dst, orig, relmap, nbits) *dst = orig relative to relmap
59 * bitmap_fold(dst, orig, sz, nbits) dst bits = orig bits mod sz
60 * bitmap_parse(buf, buflen, dst, nbits) Parse bitmap dst from kernel buf
61 * bitmap_parse_user(ubuf, ulen, dst, nbits) Parse bitmap dst from user buf
62 * bitmap_parselist(buf, dst, nbits) Parse bitmap dst from kernel buf
63 * bitmap_parselist_user(buf, dst, nbits) Parse bitmap dst from user buf
64 * bitmap_find_free_region(bitmap, bits, order) Find and allocate bit region
65 * bitmap_release_region(bitmap, pos, order) Free specified bit region
66 * bitmap_allocate_region(bitmap, pos, order) Allocate specified bit region
Yury Norovc724f192018-02-06 15:38:02 -080067 * bitmap_from_arr32(dst, buf, nbits) Copy nbits from u32[] buf to dst
68 * bitmap_to_arr32(buf, src, nbits) Copy nbits from buf to u32[] dst
Randy Dunlap7d7363e2017-10-16 16:32:51 -070069 *
Andy Shevchenko334cfa42018-02-06 15:38:20 -080070 * Note, bitmap_zero() and bitmap_fill() operate over the region of
71 * unsigned longs, that is, bits behind bitmap till the unsigned long
72 * boundary will be zeroed or filled as well. Consider to use
73 * bitmap_clear() or bitmap_set() to make explicit zeroing or filling
74 * respectively.
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 */
76
Randy Dunlap7d7363e2017-10-16 16:32:51 -070077/**
78 * DOC: bitmap bitops
79 *
80 * Also the following operations in asm/bitops.h apply to bitmaps.::
81 *
82 * set_bit(bit, addr) *addr |= bit
83 * clear_bit(bit, addr) *addr &= ~bit
84 * change_bit(bit, addr) *addr ^= bit
85 * test_bit(bit, addr) Is bit set in *addr?
86 * test_and_set_bit(bit, addr) Set bit and return old value
87 * test_and_clear_bit(bit, addr) Clear bit and return old value
88 * test_and_change_bit(bit, addr) Change bit and return old value
89 * find_first_zero_bit(addr, nbits) Position first zero bit in *addr
90 * find_first_bit(addr, nbits) Position first set bit in *addr
Clement Courbet0ade34c2018-02-06 15:38:34 -080091 * find_next_zero_bit(addr, nbits, bit)
92 * Position next zero bit in *addr >= bit
Randy Dunlap7d7363e2017-10-16 16:32:51 -070093 * find_next_bit(addr, nbits, bit) Position next set bit in *addr >= bit
Clement Courbet0ade34c2018-02-06 15:38:34 -080094 * find_next_and_bit(addr1, addr2, nbits, bit)
95 * Same as find_next_bit, but in
96 * (*addr1 & *addr2)
Randy Dunlap7d7363e2017-10-16 16:32:51 -070097 *
98 */
99
100/**
101 * DOC: declare bitmap
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 * The DECLARE_BITMAP(name,bits) macro, in linux/types.h, can be used
103 * to declare an array named 'name' of just enough unsigned longs to
104 * contain all bit positions from 0 to 'bits' - 1.
105 */
106
107/*
Andy Shevchenkoc42b65e2018-08-01 15:42:56 -0700108 * Allocation and deallocation of bitmap.
109 * Provided in lib/bitmap.c to avoid circular dependency.
110 */
111extern unsigned long *bitmap_alloc(unsigned int nbits, gfp_t flags);
112extern unsigned long *bitmap_zalloc(unsigned int nbits, gfp_t flags);
113extern void bitmap_free(const unsigned long *bitmap);
114
115/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 * lib/bitmap.c provides these functions:
117 */
118
Rasmus Villemoes0679cc42014-08-06 16:09:49 -0700119extern int __bitmap_empty(const unsigned long *bitmap, unsigned int nbits);
Rasmus Villemoes83979272014-08-06 16:09:51 -0700120extern int __bitmap_full(const unsigned long *bitmap, unsigned int nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121extern int __bitmap_equal(const unsigned long *bitmap1,
Rasmus Villemoes5e0680692014-08-06 16:09:53 -0700122 const unsigned long *bitmap2, unsigned int nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123extern void __bitmap_complement(unsigned long *dst, const unsigned long *src,
Rasmus Villemoes3d6684f2014-08-06 16:09:55 -0700124 unsigned int nbits);
Rasmus Villemoes2fbad292015-02-13 14:36:02 -0800125extern void __bitmap_shift_right(unsigned long *dst, const unsigned long *src,
126 unsigned int shift, unsigned int nbits);
Rasmus Villemoesdba94c22015-02-13 14:36:13 -0800127extern void __bitmap_shift_left(unsigned long *dst, const unsigned long *src,
128 unsigned int shift, unsigned int nbits);
Linus Torvaldsf4b03732009-08-21 09:26:15 -0700129extern int __bitmap_and(unsigned long *dst, const unsigned long *bitmap1,
Rasmus Villemoes2f9305e2014-08-06 16:09:59 -0700130 const unsigned long *bitmap2, unsigned int nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131extern void __bitmap_or(unsigned long *dst, const unsigned long *bitmap1,
Rasmus Villemoes2f9305e2014-08-06 16:09:59 -0700132 const unsigned long *bitmap2, unsigned int nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133extern void __bitmap_xor(unsigned long *dst, const unsigned long *bitmap1,
Rasmus Villemoes2f9305e2014-08-06 16:09:59 -0700134 const unsigned long *bitmap2, unsigned int nbits);
Linus Torvaldsf4b03732009-08-21 09:26:15 -0700135extern int __bitmap_andnot(unsigned long *dst, const unsigned long *bitmap1,
Rasmus Villemoes2f9305e2014-08-06 16:09:59 -0700136 const unsigned long *bitmap2, unsigned int nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137extern int __bitmap_intersects(const unsigned long *bitmap1,
Rasmus Villemoes6dfe9792014-08-06 16:10:01 -0700138 const unsigned long *bitmap2, unsigned int nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139extern int __bitmap_subset(const unsigned long *bitmap1,
Rasmus Villemoes5be20212014-08-06 16:10:03 -0700140 const unsigned long *bitmap2, unsigned int nbits);
Rasmus Villemoes877d9f32014-08-06 16:10:05 -0700141extern int __bitmap_weight(const unsigned long *bitmap, unsigned int nbits);
Matthew Wilcoxe5af3232017-07-10 15:51:29 -0700142extern void __bitmap_set(unsigned long *map, unsigned int start, int len);
143extern void __bitmap_clear(unsigned long *map, unsigned int start, int len);
Michal Nazarewicz5e19b012014-12-12 16:54:45 -0800144
145extern unsigned long bitmap_find_next_zero_area_off(unsigned long *map,
146 unsigned long size,
147 unsigned long start,
148 unsigned int nr,
149 unsigned long align_mask,
150 unsigned long align_offset);
151
152/**
153 * bitmap_find_next_zero_area - find a contiguous aligned zero area
154 * @map: The address to base the search on
155 * @size: The bitmap size in bits
156 * @start: The bitnumber to start searching at
157 * @nr: The number of zeroed bits we're looking for
158 * @align_mask: Alignment mask for zero area
159 *
160 * The @align_mask should be one less than a power of 2; the effect is that
161 * the bit offset of all zero areas this function finds is multiples of that
162 * power of 2. A @align_mask of 0 means no alignment is required.
163 */
164static inline unsigned long
165bitmap_find_next_zero_area(unsigned long *map,
166 unsigned long size,
167 unsigned long start,
168 unsigned int nr,
169 unsigned long align_mask)
170{
171 return bitmap_find_next_zero_area_off(map, size, start, nr,
172 align_mask, 0);
173}
Akinobu Mitac1a2a962009-12-15 16:48:25 -0800174
Reinette Chatre01a3ee22006-10-11 01:21:55 -0700175extern int __bitmap_parse(const char *buf, unsigned int buflen, int is_user,
176 unsigned long *dst, int nbits);
177extern int bitmap_parse_user(const char __user *ubuf, unsigned int ulen,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 unsigned long *dst, int nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179extern int bitmap_parselist(const char *buf, unsigned long *maskp,
180 int nmaskbits);
Mike Travis4b060422011-05-24 17:13:12 -0700181extern int bitmap_parselist_user(const char __user *ubuf, unsigned int ulen,
182 unsigned long *dst, int nbits);
Paul Jacksonfb5eeee2005-10-30 15:02:33 -0800183extern void bitmap_remap(unsigned long *dst, const unsigned long *src,
Rasmus Villemoes9814ec12015-02-12 15:02:13 -0800184 const unsigned long *old, const unsigned long *new, unsigned int nbits);
Paul Jacksonfb5eeee2005-10-30 15:02:33 -0800185extern int bitmap_bitremap(int oldbit,
186 const unsigned long *old, const unsigned long *new, int bits);
Paul Jackson7ea931c2008-04-28 02:12:29 -0700187extern void bitmap_onto(unsigned long *dst, const unsigned long *orig,
Rasmus Villemoeseb569882015-02-12 15:02:01 -0800188 const unsigned long *relmap, unsigned int bits);
Paul Jackson7ea931c2008-04-28 02:12:29 -0700189extern void bitmap_fold(unsigned long *dst, const unsigned long *orig,
Rasmus Villemoesb26ad582015-02-12 15:02:04 -0800190 unsigned int sz, unsigned int nbits);
Rasmus Villemoes9279d322014-08-06 16:10:16 -0700191extern int bitmap_find_free_region(unsigned long *bitmap, unsigned int bits, int order);
192extern void bitmap_release_region(unsigned long *bitmap, unsigned int pos, int order);
193extern int bitmap_allocate_region(unsigned long *bitmap, unsigned int pos, int order);
Yury Norov3aa56882018-02-06 15:38:06 -0800194
Rasmus Villemoese8f24272015-02-13 14:36:00 -0800195#ifdef __BIG_ENDIAN
Rasmus Villemoes9b6c2d22015-02-13 14:35:57 -0800196extern void bitmap_copy_le(unsigned long *dst, const unsigned long *src, unsigned int nbits);
Rasmus Villemoese8f24272015-02-13 14:36:00 -0800197#else
198#define bitmap_copy_le bitmap_copy
199#endif
Rasmus Villemoesf6a1f5d2015-02-12 15:02:10 -0800200extern unsigned int bitmap_ord_to_pos(const unsigned long *bitmap, unsigned int ord, unsigned int nbits);
Sudeep Holla5aaba362014-09-30 14:48:22 +0100201extern int bitmap_print_to_pagebuf(bool list, char *buf,
202 const unsigned long *maskp, int nmaskbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Rasmus Villemoes89c1e792015-04-15 16:17:42 -0700204#define BITMAP_FIRST_WORD_MASK(start) (~0UL << ((start) & (BITS_PER_LONG - 1)))
205#define BITMAP_LAST_WORD_MASK(nbits) (~0UL >> (-(nbits) & (BITS_PER_LONG - 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Rasmus Villemoes7275b092018-10-30 15:04:59 -0700207/*
208 * The static inlines below do not handle constant nbits==0 correctly,
209 * so make such users (should any ever turn up) call the out-of-line
210 * versions.
211 */
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030212#define small_const_nbits(nbits) \
Rasmus Villemoes7275b092018-10-30 15:04:59 -0700213 (__builtin_constant_p(nbits) && (nbits) <= BITS_PER_LONG && (nbits) > 0)
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030214
Rasmus Villemoes8b4daad2015-02-12 15:01:53 -0800215static inline void bitmap_zero(unsigned long *dst, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030217 if (small_const_nbits(nbits))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 *dst = 0UL;
219 else {
Rasmus Villemoes8b4daad2015-02-12 15:01:53 -0800220 unsigned int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 memset(dst, 0, len);
222 }
223}
224
Rasmus Villemoes8b4daad2015-02-12 15:01:53 -0800225static inline void bitmap_fill(unsigned long *dst, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Andy Shevchenko334cfa42018-02-06 15:38:20 -0800227 if (small_const_nbits(nbits))
228 *dst = ~0UL;
229 else {
230 unsigned int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long);
231 memset(dst, 0xff, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
235static inline void bitmap_copy(unsigned long *dst, const unsigned long *src,
Rasmus Villemoes8b4daad2015-02-12 15:01:53 -0800236 unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030238 if (small_const_nbits(nbits))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 *dst = *src;
240 else {
Rasmus Villemoes8b4daad2015-02-12 15:01:53 -0800241 unsigned int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 memcpy(dst, src, len);
243 }
244}
245
Yury Norovc724f192018-02-06 15:38:02 -0800246/*
247 * Copy bitmap and clear tail bits in last word.
248 */
249static inline void bitmap_copy_clear_tail(unsigned long *dst,
250 const unsigned long *src, unsigned int nbits)
251{
252 bitmap_copy(dst, src, nbits);
253 if (nbits % BITS_PER_LONG)
254 dst[nbits / BITS_PER_LONG] &= BITMAP_LAST_WORD_MASK(nbits);
255}
256
257/*
258 * On 32-bit systems bitmaps are represented as u32 arrays internally, and
259 * therefore conversion is not needed when copying data from/to arrays of u32.
260 */
261#if BITS_PER_LONG == 64
262extern void bitmap_from_arr32(unsigned long *bitmap, const u32 *buf,
263 unsigned int nbits);
264extern void bitmap_to_arr32(u32 *buf, const unsigned long *bitmap,
265 unsigned int nbits);
266#else
267#define bitmap_from_arr32(bitmap, buf, nbits) \
268 bitmap_copy_clear_tail((unsigned long *) (bitmap), \
269 (const unsigned long *) (buf), (nbits))
270#define bitmap_to_arr32(buf, bitmap, nbits) \
271 bitmap_copy_clear_tail((unsigned long *) (buf), \
272 (const unsigned long *) (bitmap), (nbits))
273#endif
274
Linus Torvaldsf4b03732009-08-21 09:26:15 -0700275static inline int bitmap_and(unsigned long *dst, const unsigned long *src1,
Rasmus Villemoes2f9305e2014-08-06 16:09:59 -0700276 const unsigned long *src2, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030278 if (small_const_nbits(nbits))
Rasmus Villemoes7e5f97d2014-08-06 16:10:22 -0700279 return (*dst = *src1 & *src2 & BITMAP_LAST_WORD_MASK(nbits)) != 0;
Linus Torvaldsf4b03732009-08-21 09:26:15 -0700280 return __bitmap_and(dst, src1, src2, nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
283static inline void bitmap_or(unsigned long *dst, const unsigned long *src1,
Rasmus Villemoes2f9305e2014-08-06 16:09:59 -0700284 const unsigned long *src2, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030286 if (small_const_nbits(nbits))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 *dst = *src1 | *src2;
288 else
289 __bitmap_or(dst, src1, src2, nbits);
290}
291
292static inline void bitmap_xor(unsigned long *dst, const unsigned long *src1,
Rasmus Villemoes2f9305e2014-08-06 16:09:59 -0700293 const unsigned long *src2, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030295 if (small_const_nbits(nbits))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 *dst = *src1 ^ *src2;
297 else
298 __bitmap_xor(dst, src1, src2, nbits);
299}
300
Linus Torvaldsf4b03732009-08-21 09:26:15 -0700301static inline int bitmap_andnot(unsigned long *dst, const unsigned long *src1,
Rasmus Villemoes2f9305e2014-08-06 16:09:59 -0700302 const unsigned long *src2, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030304 if (small_const_nbits(nbits))
Rasmus Villemoes74e76532014-08-06 16:10:24 -0700305 return (*dst = *src1 & ~(*src2) & BITMAP_LAST_WORD_MASK(nbits)) != 0;
Linus Torvaldsf4b03732009-08-21 09:26:15 -0700306 return __bitmap_andnot(dst, src1, src2, nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
309static inline void bitmap_complement(unsigned long *dst, const unsigned long *src,
Rasmus Villemoes3d6684f2014-08-06 16:09:55 -0700310 unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030312 if (small_const_nbits(nbits))
Rasmus Villemoes65b4ee62014-08-06 16:09:57 -0700313 *dst = ~(*src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 else
315 __bitmap_complement(dst, src, nbits);
316}
317
Omar Sandoval21035962018-04-02 15:58:31 -0700318#ifdef __LITTLE_ENDIAN
319#define BITMAP_MEM_ALIGNMENT 8
320#else
321#define BITMAP_MEM_ALIGNMENT (8 * sizeof(unsigned long))
322#endif
323#define BITMAP_MEM_MASK (BITMAP_MEM_ALIGNMENT - 1)
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325static inline int bitmap_equal(const unsigned long *src1,
Rasmus Villemoes3d6684f2014-08-06 16:09:55 -0700326 const unsigned long *src2, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030328 if (small_const_nbits(nbits))
Andrew Morton4b9d3142016-08-03 13:45:54 -0700329 return !((*src1 ^ *src2) & BITMAP_LAST_WORD_MASK(nbits));
Omar Sandoval21035962018-04-02 15:58:31 -0700330 if (__builtin_constant_p(nbits & BITMAP_MEM_MASK) &&
331 IS_ALIGNED(nbits, BITMAP_MEM_ALIGNMENT))
Martin Schwidefsky7dd96812016-05-25 09:32:20 +0200332 return !memcmp(src1, src2, nbits / 8);
Andrew Morton4b9d3142016-08-03 13:45:54 -0700333 return __bitmap_equal(src1, src2, nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
336static inline int bitmap_intersects(const unsigned long *src1,
Rasmus Villemoes6dfe9792014-08-06 16:10:01 -0700337 const unsigned long *src2, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030339 if (small_const_nbits(nbits))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return ((*src1 & *src2) & BITMAP_LAST_WORD_MASK(nbits)) != 0;
341 else
342 return __bitmap_intersects(src1, src2, nbits);
343}
344
345static inline int bitmap_subset(const unsigned long *src1,
Rasmus Villemoes5be20212014-08-06 16:10:03 -0700346 const unsigned long *src2, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030348 if (small_const_nbits(nbits))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return ! ((*src1 & ~(*src2)) & BITMAP_LAST_WORD_MASK(nbits));
350 else
351 return __bitmap_subset(src1, src2, nbits);
352}
353
Rasmus Villemoes0679cc42014-08-06 16:09:49 -0700354static inline int bitmap_empty(const unsigned long *src, unsigned nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030356 if (small_const_nbits(nbits))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return ! (*src & BITMAP_LAST_WORD_MASK(nbits));
Yury Norov2afe27c2015-04-16 12:44:00 -0700358
359 return find_first_bit(src, nbits) == nbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
Rasmus Villemoes83979272014-08-06 16:09:51 -0700362static inline int bitmap_full(const unsigned long *src, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030364 if (small_const_nbits(nbits))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return ! (~(*src) & BITMAP_LAST_WORD_MASK(nbits));
Yury Norov2afe27c2015-04-16 12:44:00 -0700366
367 return find_first_zero_bit(src, nbits) == nbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
Denys Vlasenko1a1d48a2015-08-04 16:15:14 +0200370static __always_inline int bitmap_weight(const unsigned long *src, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030372 if (small_const_nbits(nbits))
Andi Kleen08cd3652006-06-26 13:57:10 +0200373 return hweight_long(*src & BITMAP_LAST_WORD_MASK(nbits));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return __bitmap_weight(src, nbits);
375}
376
Matthew Wilcoxe5af3232017-07-10 15:51:29 -0700377static __always_inline void bitmap_set(unsigned long *map, unsigned int start,
378 unsigned int nbits)
379{
380 if (__builtin_constant_p(nbits) && nbits == 1)
381 __set_bit(start, map);
Omar Sandoval21035962018-04-02 15:58:31 -0700382 else if (__builtin_constant_p(start & BITMAP_MEM_MASK) &&
383 IS_ALIGNED(start, BITMAP_MEM_ALIGNMENT) &&
384 __builtin_constant_p(nbits & BITMAP_MEM_MASK) &&
385 IS_ALIGNED(nbits, BITMAP_MEM_ALIGNMENT))
Matthew Wilcox2a98dc022017-07-10 15:51:32 -0700386 memset((char *)map + start / 8, 0xff, nbits / 8);
Matthew Wilcoxe5af3232017-07-10 15:51:29 -0700387 else
388 __bitmap_set(map, start, nbits);
389}
390
391static __always_inline void bitmap_clear(unsigned long *map, unsigned int start,
392 unsigned int nbits)
393{
394 if (__builtin_constant_p(nbits) && nbits == 1)
395 __clear_bit(start, map);
Omar Sandoval21035962018-04-02 15:58:31 -0700396 else if (__builtin_constant_p(start & BITMAP_MEM_MASK) &&
397 IS_ALIGNED(start, BITMAP_MEM_ALIGNMENT) &&
398 __builtin_constant_p(nbits & BITMAP_MEM_MASK) &&
399 IS_ALIGNED(nbits, BITMAP_MEM_ALIGNMENT))
Matthew Wilcox2a98dc022017-07-10 15:51:32 -0700400 memset((char *)map + start / 8, 0, nbits / 8);
Matthew Wilcoxe5af3232017-07-10 15:51:29 -0700401 else
402 __bitmap_clear(map, start, nbits);
403}
404
Rasmus Villemoes2fbad292015-02-13 14:36:02 -0800405static inline void bitmap_shift_right(unsigned long *dst, const unsigned long *src,
406 unsigned int shift, int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030408 if (small_const_nbits(nbits))
Rasmus Villemoes2fbad292015-02-13 14:36:02 -0800409 *dst = (*src & BITMAP_LAST_WORD_MASK(nbits)) >> shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 else
Rasmus Villemoes2fbad292015-02-13 14:36:02 -0800411 __bitmap_shift_right(dst, src, shift, nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Rasmus Villemoesdba94c22015-02-13 14:36:13 -0800414static inline void bitmap_shift_left(unsigned long *dst, const unsigned long *src,
415 unsigned int shift, unsigned int nbits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Rusty Russell4b0bc0b2008-12-30 09:05:13 +1030417 if (small_const_nbits(nbits))
Rasmus Villemoesdba94c22015-02-13 14:36:13 -0800418 *dst = (*src << shift) & BITMAP_LAST_WORD_MASK(nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 else
Rasmus Villemoesdba94c22015-02-13 14:36:13 -0800420 __bitmap_shift_left(dst, src, shift, nbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
Reinette Chatre01a3ee22006-10-11 01:21:55 -0700423static inline int bitmap_parse(const char *buf, unsigned int buflen,
424 unsigned long *maskp, int nmaskbits)
425{
426 return __bitmap_parse(buf, buflen, 0, maskp, nmaskbits);
427}
428
Randy Dunlap404376a2017-09-17 19:07:10 -0700429/**
Yury Norov60ef6902017-09-08 16:15:41 -0700430 * BITMAP_FROM_U64() - Represent u64 value in the format suitable for bitmap.
Randy Dunlap404376a2017-09-17 19:07:10 -0700431 * @n: u64 value
Yury Norov60ef6902017-09-08 16:15:41 -0700432 *
433 * Linux bitmaps are internally arrays of unsigned longs, i.e. 32-bit
434 * integers in 32-bit environment, and 64-bit integers in 64-bit one.
435 *
436 * There are four combinations of endianness and length of the word in linux
437 * ABIs: LE64, BE64, LE32 and BE32.
438 *
439 * On 64-bit kernels 64-bit LE and BE numbers are naturally ordered in
440 * bitmaps and therefore don't require any special handling.
441 *
442 * On 32-bit kernels 32-bit LE ABI orders lo word of 64-bit number in memory
443 * prior to hi, and 32-bit BE orders hi word prior to lo. The bitmap on the
444 * other hand is represented as an array of 32-bit words and the position of
445 * bit N may therefore be calculated as: word #(N/32) and bit #(N%32) in that
446 * word. For example, bit #42 is located at 10th position of 2nd word.
447 * It matches 32-bit LE ABI, and we can simply let the compiler store 64-bit
448 * values in memory as it usually does. But for BE we need to swap hi and lo
449 * words manually.
450 *
451 * With all that, the macro BITMAP_FROM_U64() does explicit reordering of hi and
452 * lo parts of u64. For LE32 it does nothing, and for BE environment it swaps
453 * hi and lo words, as is expected by bitmap.
454 */
455#if __BITS_PER_LONG == 64
456#define BITMAP_FROM_U64(n) (n)
457#else
458#define BITMAP_FROM_U64(n) ((unsigned long) ((u64)(n) & ULONG_MAX)), \
459 ((unsigned long) ((u64)(n) >> 32))
460#endif
461
Randy Dunlap404376a2017-09-17 19:07:10 -0700462/**
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +0530463 * bitmap_from_u64 - Check and swap words within u64.
464 * @mask: source bitmap
465 * @dst: destination bitmap
466 *
Randy Dunlap404376a2017-09-17 19:07:10 -0700467 * In 32-bit Big Endian kernel, when using ``(u32 *)(&val)[*]``
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +0530468 * to read u64 mask, we will get the wrong word.
Randy Dunlap404376a2017-09-17 19:07:10 -0700469 * That is ``(u32 *)(&val)[0]`` gets the upper 32 bits,
Madhavan Srinivasan29dd3282016-08-17 15:06:08 +0530470 * but we expect the lower 32-bits of u64.
471 */
472static inline void bitmap_from_u64(unsigned long *dst, u64 mask)
473{
474 dst[0] = mask & ULONG_MAX;
475
476 if (sizeof(mask) > sizeof(unsigned long))
477 dst[1] = mask >> 32;
478}
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480#endif /* __ASSEMBLY__ */
481
482#endif /* __LINUX_BITMAP_H */