I bumped into this strange macro code in /usr/include/linux/kernel.h:

/* Force a compilation error if condition is true, but also produce a
   result (of value 0 and type size_t), so the expression can be used
   e.g. in a structure initializer (or where-ever else comma expressions
   aren't permitted). */
#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))
#define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); }))

What does :-!! do?

link|improve this question
124  
@Lundin One thing you may be overlooking is that the kernel must compile on a wide variety of architectures. One cost of this is that you will inevitably see some apparent strangeness to handle this or that case. I think it's fair to extend Linus the benefit of the doubt here. After all, if you gaze into the abyss for too long, pretty soon the abyss gazes back at you. :) – John Feminella Feb 10 at 15:46
57  
@JohnFeminella: +1 for citing Nietzsche in a discussion about the Linux kernel source :) – Niklas B. Feb 10 at 16:10
20  
@Lundin: git blame tells us that this particular form of static assertion was introduced by Jan Beulich in 8c87df4. Obviously he had good reasons to do it (see the commit message). – Niklas B. Feb 10 at 16:34
36  
@Lundin: If this is the reason to stay away from Linux machines, then please name just one modern operating system the source code of which looks better. – Sven Marnach Feb 10 at 17:32
24  
@Lundin: assert() does NOT cause a compile-time error. That's the whole point of the above construction. – Chris K Feb 10 at 21:19
show 20 more comments
feedback

4 Answers

up vote 495 down vote accepted

This is, in effect, a way to check whether the expression e can be evaluated to be 0, and if not, to fail the build.

The macro is somewhat misnamed; it should be something more like BUILD_BUG_OR_ZERO, rather than ...ON_ZERO. (There have been occasional discussions about whether this is a confusing name.)

You should read the expression like this:

sizeof(struct { int: -!!(e); }))
  1. (e): Declare an expression e.

  2. !!(e): Negate it twice. This produces 0 if e was 0 originally, or a nonzero positive number if it wasn't.

  3. -!!(e): Multiply the value by -1. This results in 0 if step 2 was 0, or a negative number if it wasn't.

  4. struct{int: -!!(0);} --> struct{int: 0;}: If it was zero, then we declare a struct with an integer bitfield that has width zero. Everything is fine and we proceed as normal.

  5. struct{int: -!!(1);} --> struct{int: -1;}: On the other hand, if it isn't zero, then it will be some negative number. Declaring a bitfield with negative width is a compilation error.

So we'll either wind up with a bitfield that has width 0 in a struct, which is fine, or a bitfield with negative width, which is a compilation error. Then we take sizeof that field, so we get a size_t with the appropriate width (which will be zero in the case where e is zero).


Some people have asked: Why not just use an assert?

keithmo's answer here has a good response:

These macros implement a compile-time test, while assert() is a run-time test.

Exactly right. You don't want to detect problems in your kernel at runtime that could have been caught earlier! It's a critical piece of the operating system. To whatever extent problems can be detected at compile time, so much the better.

link|improve this answer
18  
IOCCC brace for impact, here we come! – Lundin Feb 10 at 16:22
28  
recent variants of C++ or C standards have something like static_assert for related purposes. – Basile Starynkevitch Feb 10 at 17:00
11  
@Lundin - #error would require use of 3 lines of code #if/#error/#endif, and would only work for evaluations accessible to the pre-processor. This hack works for any evaluation accessible to the compiler. – Ed Staub Feb 10 at 17:50
51  
The Linux kernel does not use C++, at least not while Linus is still alive. – Mark Ransom Feb 10 at 17:52
59  
It is worth noting that !!e does not evaluate to zero "or a nonzero positive number", but rather to zero or one, specifically. Boolean expressions in C are defined to always evaluate to zero or one. – Dolda2000 Feb 11 at 8:48
show 11 more comments
feedback

The : is a bitfield. As for !!, that is logical double negation and so returns 0 for false or 1 for true. And the - is a minus sign, i.e. arithmetic negation.

It's all just a trick to get the compiler to barf on invalid inputs.

Consider BUILD_BUG_ON_ZERO. When -!!(e) evaluates to a negative value, that produces a compile error. Otherwise -!!(e) evaluates to 0, and a 0 width bitfield has size of 0. And hence the macro evaluates to a size_t with value 0.

The name is weak in my view because the build in fact fails when the input is not zero.

BUILD_BUG_ON_NULL is very similar, but intended for use with a pointer input.

link|improve this answer
1  
is sizeof(struct { int:0; }) strictly conforming? – ouah Feb 10 at 15:08
1  
Why would the result in general be 0? A struct with only an empty bitfield, true, but I don't think that struct with size 0 are allowed. E.g if you'd create an array of that type, the individual array elements still must have different addresses, no? – Jens Gustedt Feb 10 at 15:09
1  
they actually don't care as as they use GNU extensions, they disable strict aliasing rule and don't consider integer overflows as UB. But I was wondering if this is strictly conforming C. – ouah Feb 10 at 15:13
1  
@ouah regarding unnamed zero length bitfields, see here: stackoverflow.com/questions/4297095/… – David Heffernan Feb 10 at 15:14
1  
@DavidHeffernan interesting, but the quote is from C++ standard not C – ouah Feb 10 at 15:26
show 2 more comments
feedback

Some people seem to be confusing these macros with assert().

These macros implement a compile-time test, while assert() is a run-time test.

link|improve this answer
46  
@Lundin Are you joking? Clearly it is much better to have a compiler error in your kernel, than to leave it undiscovered until you launch a cruise missile whose guidance system initiates a kernel-panic. – John Feminella Feb 10 at 15:50
7  
(Btw the person who uses Linux to launch cruise missiles probably deserve to have them landing at coordinate NULL.) – Lundin Feb 10 at 15:54
23  
I launch all my cruise missiles using Windows for Battleships. – John Buchanan Feb 10 at 18:57
7  
@Lundin: Please do not ever work at any company I may encounter in the future. Being against testing is generally detrimental to software. – gparent Feb 11 at 3:31
8  
@Lundin: It isn't irony and sarcasm if you still think that it doesn't matter. It does matter. It matters a lot, and a compilation error is miles ahead of a runtime one. And if you think all it takes to fix runtime errors is to run your code at least once... well see my comment above. – gparent Feb 14 at 19:24
show 6 more comments
feedback

It's creating a size 0 bitfield if the condition is false, but a size -1 (-!!1) bitfield if the condition is true/non-zero. In the former case, there is no error and the struct is initialized with an int member. In the latter case, there is a compile error (and no such thing as a size -1 bitfield is created, of course).

link|improve this answer
1  
Actually it's returning a size_t with value 0 in case the condition is true. – David Heffernan Feb 10 at 14:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.