Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Posted Feb 23, 2012 17:11 UTC (Thu) by lambda (subscriber, #40735)In reply to: Oracle offering DTrace for Linux by rich0
Parent article: Oracle offering DTrace for Linux
Oracle is not the copyright holder on the kernel; they hold copyright on some parts, but not others. Each developer or company holds the copyrights to the portions which they contributed.
The GPL does not allow someone downstream to link and distribute modules to the GPLed software unless that code is also available under the GPL. However, as an exception, kernel developers have granted the ability for non-GPLed kernel modules to link against the kernel, as long as they only use certain symbols that are exported via EXPORT_SYMBOL instead of EXPORT_SYMBOL_GPL. Anyone can apply the GPL to their own work, and then grant additional freedoms beyond what the GPL grants, and that is what the kernel developers (and copyright holders) have done whenever they apply EXPORT_SYMBOL to an interface.
However, someone else cannot come along, and grant themselves additional freedoms. I can't take a piece of GPLed software, and add a few declarations saying "this interface is OK for non GPLed software to link against," and then add my own proprietary code to the software and distribute it. I do not own the copyright, so I cannot grant myself the additional freedom to do this.
That is what Oracle seems to be doing here; they seem to be trying to grant themselves additional freedom beyond what the GPL license of the kernel grants. And I can imagine that some kernel developers might wind up being fairly unhappy about that.
Posted Feb 23, 2012 17:32 UTC (Thu)
by khim (subscriber, #9252)
[Link] (4 responses)
Citation neededâ„¢. And it's needed really badly because historicaly Linux developers had the opposite POV. It's hard to interpret the infamous Linus's except as "if you lawyer believes your work is not derivative and if you are ready defend this POV in court, then maybe, just maybe your work is indeed not a derivative and thus can be non-GPL licensed". Yes, they can. This is just a marker. But yes, what Oracle did is a clarion call: they took symbol which was marked with "no way in hell can you use it without creating derived work" symbol and removed this mark. Their lawyers should be prepared to defend removal of said mark quite seriously. Not necessarily. If it can be shown that DTrace indeed uses this hook in way which does not imply intimate knowledge of kernel internals then this will be strong signal that this symbol was marked as EXPORT_SYMBOL_GPL by mistake.
Posted Feb 23, 2012 19:28 UTC (Thu)
by lambda (subscriber, #40735)
[Link] (3 responses)
Sorry, you are right. I got the sense backwards in terms of which one is more explicit. EXPORT_SYMBOL is not explicit about what it is declaring; using it, you may or may not be creating a derived work. EXPORT_SYMBOL_GPL is a way of documenting "if you use this interface, you are clearly mucking about in the internals of the kernel and thus are clearly creating a derived work." The only explicit disclaimer is that any interface exported to user space is disclaimed from creating a derived work for purposes of the GPL.
That doesn't really change my point about the intent of changing an interface from EXPORT_SYMBOL to EXPORT_SYMBOL_GPL; that change says "I know that the kernel developers have said that what I'm doing will create a derived work, but I am going to do that anyhow, and I am not releasing my module under the GPL." That does not automatically mean that what they are doing is a copyright violation; but it shows that they are aware that there are kernel developers who believe that use of that interface constitutes creating a derived work, and they are proceeding anyhow.
Posted Feb 24, 2012 0:51 UTC (Fri)
by mathstuf (subscriber, #69389)
[Link] (2 responses)
Posted Feb 24, 2012 13:49 UTC (Fri)
by vonbrand (subscriber, #4458)
[Link] (1 responses)
AFAIU, there are three cases here:
Posted Feb 24, 2012 21:14 UTC (Fri)
by mathstuf (subscriber, #69389)
[Link]
Oracle offering DTrace for Linux
However, as an exception, kernel developers have granted the ability for non-GPLed kernel modules to link against the kernel, as long as they only use certain symbols that are exported via EXPORT_SYMBOL instead of EXPORT_SYMBOL_GPL.
If an author claims your work is derivative, you should
step very very lightly.
And I claim that binary-only kernel modules ARE derivative "by default",
by virtue of having no meaning without the kernel.However, someone else cannot come along, and grant themselves additional freedoms.
And I can imagine that some kernel developers might wind up being fairly unhappy about that.
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
If it wasn't exported, it's the first case; adding EXPORT_SYMBOL is shady.Oracle offering DTrace for Linux