Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Posted Feb 22, 2012 23:32 UTC (Wed) by kragil (guest, #34373)Parent article: Oracle offering DTrace for Linux
Nothing against systraceperfmonUtraceNG, but DTrace seems a lot nicer and better thought out.
Posted Feb 22, 2012 23:38 UTC (Wed)
by dlang (guest, #313)
[Link] (3 responses)
I do look forward to the discussion though.
Posted Feb 22, 2012 23:52 UTC (Wed)
by tialaramex (subscriber, #21167)
[Link] (2 responses)
The middle option is that they deliver some of it, but only gradually "it's beta, of course it crashes but that'll get fixed" and meanwhile the alternatives mature to a similar level of robustness and production-worthy reliability.
Posted Feb 23, 2012 9:42 UTC (Thu)
by robert_s (subscriber, #42402)
[Link] (1 responses)
DTrace managed to do that for Solaris largely because it has a much more closed-box kernel.
Posted Feb 24, 2012 13:40 UTC (Fri)
by davecb (subscriber, #1574)
[Link]
--dave
Posted Feb 23, 2012 1:56 UTC (Thu)
by nevets (subscriber, #11875)
[Link] (19 responses)
Posted Feb 23, 2012 7:17 UTC (Thu)
by lkundrak (subscriber, #43452)
[Link] (17 responses)
-EXPORT_SYMBOL_GPL(print_context_stack);
And yes, they actually use it from their MODULE_LICENSE("CDDL"); module.
Posted Feb 23, 2012 12:40 UTC (Thu)
by rich0 (guest, #55509)
[Link] (16 responses)
Posted Feb 23, 2012 13:18 UTC (Thu)
by nevets (subscriber, #11875)
[Link] (7 responses)
Is a clear attempt to circumvent the GPL. I don't know the CDDL license but just posting their modified source is not enough to satisfy the GPL license. You must also allow those that you distribute the code to, the same rights that you have with the code. Free to modify themselves, and they too must follow the rules as well.
Needing the print_context_stack makes their module a derived work. Not something that was ported straight from Sun OS.
Posted Feb 23, 2012 17:17 UTC (Thu)
by mjg59 (subscriber, #23239)
[Link] (1 responses)
Posted Feb 23, 2012 17:38 UTC (Thu)
by nevets (subscriber, #11875)
[Link]
Posted Feb 23, 2012 17:52 UTC (Thu)
by kvh (guest, #83085)
[Link] (4 responses)
As soon as we realized that in later kernels print_context_stack was exported as GPL-only rather than the non-GPL-only we had chosen, we changed our code to match that, and we moved the part of the DTrace code that uses it GPL as well. This is evidenced in the source code drop for 0.2 that will be placed on oss.oracle.com very soon.
Posted Feb 24, 2012 2:47 UTC (Fri)
by clump (subscriber, #27801)
[Link] (2 responses)
Posted Feb 24, 2012 3:29 UTC (Fri)
by nevets (subscriber, #11875)
[Link] (1 responses)
Posted Feb 24, 2012 19:56 UTC (Fri)
by clump (subscriber, #27801)
[Link]
Posted Feb 24, 2012 7:03 UTC (Fri)
by lkundrak (subscriber, #43452)
[Link]
Sorry for not using the version that will be released "very soon" :) Thanks for the oss.oracle.com pointer though; I've been comparing the SRPMs. Seems like I did compare 2.6.32-201.0.1.el5uek to Red Hat's 2.6.32, where they seem to have backported the print_context_stack() independently. Certainly my fault, let me apologize.
Having recompared against 2.6.32-200.19.1.el6uek, on top of which was it based according to the change log, the following seems to have been exported:
+EXPORT_SYMBOL(syscall_nr_to_meta);
Now -- I don't get this; using symbols that are GPL-only from a non-GPL module is wrong, while using ones that have not been exported at all is fine?
Posted Feb 23, 2012 17:07 UTC (Thu)
by robert_s (subscriber, #42402)
[Link] (1 responses)
Marking symbols non-GPL is effectively the kernel developers saying "we don't consider this symbol as an internal core function of the kernel" and as such a module using just those symbols would not be considered a derived work. i.e. "we won't sue over use of these symbols"
Posted Feb 23, 2012 17:15 UTC (Thu)
by khim (subscriber, #9252)
[Link]
Actually it's the other way around: if symbol is declared EXPORT_SYMBOL_GPL then it means that linux developers believe it's impossible to use it without making module derived work of Linux kernel because it's hook to such an intimate part of it. It's still perfectly possible to create module which is derived work of Linux kernel and which only uses EXPORT_SYMBOL hooks.
Posted Feb 23, 2012 17:11 UTC (Thu)
by lambda (subscriber, #40735)
[Link] (5 responses)
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]
Posted Feb 23, 2012 18:45 UTC (Thu)
by renox (guest, #23785)
[Link]
Posted Feb 23, 2012 9:40 UTC (Thu)
by robert_s (subscriber, #42402)
[Link] (2 responses)
So a system designed for a whole other kernel is better than what the actual linux kernel developers designing this stuff for years could come up with?
Posted Feb 23, 2012 13:30 UTC (Thu)
by nevets (subscriber, #11875)
[Link] (1 responses)
But this is not how Linux works. Linux is a community, there's a lot of give and take. The subsystem maintainers are responsible for their code, and the tracing folks can't just come in and add hooks where they want without good rational. It is really up to the maintainers to add the hooks.
Then there's more than one player in this game. And tracing is a lot like personal editors. Everyone has their favorite and no one will back down. This slows down the development but hopefully in the long term the best of all utilities will be incorporated. Yes it takes time. This is part of the way open source works.
Posted Feb 23, 2012 17:03 UTC (Thu)
by robert_s (subscriber, #42402)
[Link]
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
+EXPORT_SYMBOL(print_context_stack);
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
+EXPORT_SYMBOL(print_context_stack);
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux
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
Oracle offering DTrace for Linux
Of course this makes it much less useful for Linux..
Oracle offering DTrace for Linux
Nothing against systraceperfmonUtraceNG, but DTrace seems a lot nicer and better thought out.
Oracle offering DTrace for Linux
Oracle offering DTrace for Linux