Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
160  
@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 '12 at 15:46
79  
@JohnFeminella: +1 for citing Nietzsche in a discussion about the Linux kernel source :) – Niklas B. Feb 10 '12 at 16:10
24  
@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 '12 at 16:34
39  
@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 '12 at 17:32
28  
@Lundin: assert() does NOT cause a compile-time error. That's the whole point of the above construction. – Chris K Feb 10 '12 at 21:19
show 20 more comments

4 Answers

up vote 682 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.

share|improve this answer
24  
IOCCC brace for impact, here we come! – Lundin Feb 10 '12 at 16:22
37  
recent variants of C++ or C standards have something like static_assert for related purposes. – Basile Starynkevitch Feb 10 '12 at 17:00
17  
@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 '12 at 17:50
75  
The Linux kernel does not use C++, at least not while Linus is still alive. – Mark Ransom Feb 10 '12 at 17:52
77  
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 '12 at 8:48
show 15 more comments

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.

share|improve this answer
2  
is sizeof(struct { int:0; }) strictly conforming? – ouah Feb 10 '12 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 '12 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 '12 at 15:13
1  
@ouah regarding unnamed zero length bitfields, see here: stackoverflow.com/questions/4297095/… – David Heffernan Feb 10 '12 at 15:14
2  
@ouah Pretty much identical text is present in the C standard also. – David Heffernan Feb 10 '12 at 15:36
show 6 more comments

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

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

share|improve this answer
53  
@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 '12 at 15:50
10  
(Btw the person who uses Linux to launch cruise missiles probably deserve to have them landing at coordinate NULL.) – Lundin Feb 10 '12 at 15:54
30  
I launch all my cruise missiles using Windows for Battleships. – John Buchanan Feb 10 '12 at 18:57
10  
@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 '12 at 3:31
10  
@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 '12 at 19:24
show 6 more comments

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).

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

protected by NullPoiиteя Jun 10 at 5:15

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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