Slashdot Mirror


Linux: the GPL and Binary Modules

An anonymous reader writes "When first made available in September of 1991, the Linux kernel source code was released under a very restrictive non-GPL license requiring that the source code must always be available, and that no money could be made off of it. Several months later Linus changed the copyright to the GPL, or GNU General Public License, under which the kernel source code has remained ever since. Thanks to the GPL, any source code derived from the Linux kernel source code must also be freely released under the GPL. This has led many to question the legality of 'binary only' kernel modules, for which no source code is released. Linux creator Linus Torvalds talks about this issue in a recent thread on the lkml."

44 of 657 comments (clear)

  1. Linux linkiing analogy by rubypossum · · Score: 5, Insightful

    Maybe I'm wrong here but perhaps this is a way to look at it. If I wrote a story that was derived from the LOTR then it would not be a derived work in the legal sense it would be copyright by me. Although I'd have to get permission to use the trademarked names etc. Isn't this a bit like the linux kernel issue? The module is not directly derived from the kernel it is an extension that uses the hooks that were created in the previous "story". Maybe I'm on crack here....

    --
    I have a theory that the truth is never told during the nine-to-five hours. - Hunter S. Thompson
    1. Re:Linux linkiing analogy by rubypossum · · Score: 5, Insightful

      On the other hand... if I were to take chepter 5 from the LOTR and change it a little bit, include it in my story and then publish it then it would be a derived work. Just like a company taking net/socket.c, modifying it, then including it in their own module and not distributing the source.

      --
      I have a theory that the truth is never told during the nine-to-five hours. - Hunter S. Thompson
    2. Re:Linux linkiing analogy by arkanes · · Score: 4, Insightful
      It depends on just how much your story is like LOTR. How much is too much is very subjective and depends alot on your lawyer and how convincing he is. It's the same for software except theres even less case law giving you a clear standard to work from.

      Basically, aside from clean rooming, there is no 100% way to ensure that you aren't violating copyright, in ANY field.

    3. Re:Linux linkiing analogy by adrianbaugh · · Score: 5, Insightful

      So you're saying that it's okay for (say) nVidia to distribute a binary driver module (because it is new to the kernel rather than modifying it) but the bits that may require kernel modification or that hook directly into the kernel (their wrapper) do need to be open?
      Sounds fair enough to me.

      --
      "'I pass the test,' she said. 'I will diminish, and go into the West, and remain Galadriel.'"
      - JRR Tolkien.
    4. Re:Linux linkiing analogy by mabhatter654 · · Score: 5, Insightful
      The nVida drivers are the clasic test case for this...

      Generally, if I sit down with Linux and write "hello world" using standard C calls and compile with normal methods, that's mine and not a derivitive work at all. The problem comes with drivers such as nVidia's. They are not just "windows" drivers with a wrapper for linux. They get into the system and re-route system API calls, much about with non-standard kernel features and the like. And that's the problem with "bianary" modules. The problem with nVidia's approach is that it's hard to tell where their drivers start and the kernel begins...heck, they could rewrite half the kernel and simply override it in their module, it would be hard to fiugure out for normal users...it's that poteitial for abuse that is the cause of such arguments.

      On nVidia's defence though, Ther was talk for 2.6 about removing the API calls they try to legally use in favor of others that would require 100% GPL code. That's also a problem because certian vocal parts of the community are actively trying to make the current scheme too "sour" for compaines like nVidia to publish their code. On a side note, there are certian things nVidia CAN'T publish if they have to use GPL! Much of the hardware they build is "patented" from outside sources...they would get into IBM/SCO style lawsuits...but without any cause to defend themselves! That leaves them [and us] with bianary drivers--or NO drivers.

      My opinion right now is that Linus is sticking his head in the sand on this issue...other stuff I've read he seems to fully support how nVidia is working, but then allows changes to APIs that clearly theaten that way of working???? This IS a key issue with linux...If companies can't use proprietary, binary modules to protect their/others IP, then Linux will never be a truly "first class" OS. What's needed is for the community to "standardize" the rules [make them just a bit more attractive to business?]...and stop the FSF and such from "legal creeping" against the people who go out of their way RIGHT NOW to support Linux.

  2. Pragmatism by nepheles · · Score: 4, Insightful

    A certain amount of pragmatism has to prevail here -- were binary modules disallowed, the phrase 'shoot yourself in the foot' jumps to mind. Linux is probably better off with them, as it lowers the entry barrier to companys wishing to contribute. And that's rarely a bad thing.

    --
    ((lambda x ((x))) (lambda x ((x))))
    1. Re:Pragmatism by pe1rxq · · Score: 5, Insightful

      When binary modules are allowed it doesn't help linux in any way....

      Just look at the nvidia drivers: The only thing you get are kiddies yelling that nvidia has such great linux support. Meanwhile linux didn't get any better from it, kernel developers get lots of bug reports caused by the nvidia black box (One of the reasons the 'tainted' flag was introduced), I still can't use the nvidia cards on platform not-quite-obscure-nividia-just-didnt-bother-compil ing-their-driver-for-it, and most importantly you don't know what the driver is doing on your system (its a black box afterall)

      Jeroen

      --
      Secure messaging: http://quickmsg.vreeken.net/
    2. Re:Pragmatism by LizardKing · · Score: 4, Insightful

      Binary modules may "lower the entry barrier" for some companies, but it can end up being counter productive. Binary only drivers have tended to be crude ports of Windows drivers, and frequently crash the users kernel. This results in bug reports that the regular kernel hackers can't solve, and a misconception amongst users that Linux is unstable.

      Far better would be if companies jumped wholeheartedly into the Linux way of doing things, and published their drivers under the GPL. Their competitors aren't going to get much of a leg up from seeing the source to most drivers, especially those for network adapters and the like, but the vendor can benefit from bug fixes provided by independent kernel hackers.

      Chris

    3. Re:Pragmatism by jusdisgi · · Score: 4, Insightful

      Well, the trouble is, the drivers to products that really are trivial (those NICs you mentioned) are already available, because those companies agreed with you and released drivers openly or at least released information, allowing the community to produce them.

      But some products aren't that way; nvidia, for instance, at least *says* they have IP tied up in the binary part of their drivers that they can't afford to let competitors (ATI) get ahold of. I don't know whether it's the truth.....I haven't seen the code!

      --
      Given a choice between free speech and free beer, most people will take the beer.
    4. Re:Pragmatism by starsong · · Score: 5, Insightful

      Imagine a future where you install your core Linux kernel, then download a ton of different binary modules from different websites, have to hunt in the forums to mix-and-match the right versions, and end up having bugs nobody won't fix....

      We have that under Windows! They're called "drivers."

    5. Re:Pragmatism by zurab · · Score: 4, Insightful
      When binary modules are allowed it doesn't help linux in any way....


      In certain cases, manufacturers can provide open source modules, but many times, there simply is no viable way. Complex hardware or hardware/software combination is usually covered by multiple patents, trade secrets, copyrights, and various agreements between different parties. In such cases asking hardware manufacturers to open up their internals and provide modules open source is like asking Linus to provide Linux under license other than the GPL. In neither of those cases is a single party is in control of all of the "intellectual property" involved; and it is virtually impossible to get all parties involved to agree to such a request.
    6. Re:Pragmatism by _Spirit · · Score: 4, Insightful

      So you would rather have nvidia making no drivers at all for Linux? In an ideal world I might agree with you, but in the real world I suspect most Linux users would rather have support for their video card.

      --

      beauty is only a light switch away

    7. Re:Pragmatism by pe1rxq · · Score: 4, Insightful

      In most cases hardware/software is believed to be the next best thing since sliced bread by management.....
      Most drivers do NOTHING that justifies keeping the code under lock like it is done today.
      Most drivers simply push data to the right place and fiddle with registers in the right way. There is nothing the competitor wouldn't have already thought off.
      If youre competitor has to learn from your driver they are atleast two generations behind you and you have nothing to fear.
      Its a corporate culture that is the problem, not patents (which already are open for anybody to see anyway), trademarks or trade secrets.

      Jeroen

      --
      Secure messaging: http://quickmsg.vreeken.net/
    8. Re:Pragmatism by pe1rxq · · Score: 4, Insightful

      Linux will get is name far faster by being accepted on the corporate desktop. There you don't need gaming performance, you don't need 3d performance.
      What good is acceptance if it means a ton of binary only drivers? Acceptance is useless if you lose the biggest advantage linux has: free (speach) SOURCECODE!!!

      Jeroen

      --
      Secure messaging: http://quickmsg.vreeken.net/
    9. Re:Pragmatism by John+Courtland · · Score: 3, Insightful

      I think he's stating that it's more that there are so many legal hoops to leap through because of cross-manufacturer and cross-corporation mingling, that it simply isn't feasible to open up the drivers. Getting approval from all involved parties is a daunting task. Now-a-days, the video driver does a lot more than just fiddle with registers and memory, especially if there are vertex/pixel shaders involved. There's quite a bit of compiler technology in the current driver releases from nVidia and ATI.

      --
      Slashdot is proof that Sturgeon's Law applies to mankind.
    10. Re:Pragmatism by femto · · Score: 3, Insightful
      > ...there simply is no viable way.

      Rubbish.

      What you should have said is "...there is a lack of will."

      The problem is that the companies don't want to release the source not that they cannot. Once they start looking serious sales volumes, due to being excluded from the Linux kernel, companies will find the will to release source.

    11. Re:Pragmatism by nathanh · · Score: 4, Insightful
      So you would rather have nvidia making no drivers at all for Linux?

      Yes.

      And I don't say that lightly. Nvidia has some extremely intelligent staff, including former open-source developers like Gareth and Mark. Nvidia contribute code to open source projects like XFree86. Nvidia are valued members of the ARB and their proposals are both worthy and appreciated. Nvidia's support for OpenGL has helped prevent Direct3D from usurping the entire industry and for that act alone we should all be grateful.

      But even with those things considered, I still think nvidia's closed source drivers are worse than no drivers at all. There are many reasons why I think this but the single most important reason is that the nvidia binary drivers take away the very freedoms that Linux grants you. Not for the same code but it's the same principles.

      In an ideal world I might agree with you, but in the real world I suspect most Linux users would rather have support for their video card.

      They had support. The Utah GLX nvidia driver wasn't the greatest but it did work with both 3D and 2D. The XFree86 drivers still support 2D on all nvidia cards and the performance is excellent.

      And really, I don't know when you started to use Linux, but when I started (pre-1.0) we didn't have video drivers. We wrote them ourselves. We chose the freedom of Linux over the convenience of binary-only platforms with working drivers. It shames me that so many of the current generation of Linux users don't understand what the world before Linux was like. It was hell. Closed source binary-only drivers everywhere. Buggy code that you couldn't fix. Linux changed all that. Finally we have source and freedom and rights. Finally there's something to be proud of; an entirely open source operating system built through the sweat and tears of 1000s of volunteers. And you would sacrifice all that for slightly faster 3D graphics? I can't comprehend your state of mind. Your priorities are completely foreign to me.

    12. Re:Pragmatism by kyz · · Score: 3, Insightful

      taunt me for being stupid enough to use that hardware.

      You've hit the nail right on the head, there. There's only one way to convince capitalist, profit-driven corporations to support Linux, and that's to let them know that their non-existant or sub-standard Linux support is losing them money.

      If you do buy a card without checking that it's supported in Linux, simply return the card, buy an alternative that is supported, then write a letter to the original card manufacturer stating that you returned their $XXX.XX card because of sub-standard Linux support, and you look forward to their support of the only operating system you use in the future.

      --
      Does my bum look big in this?
    13. Re:Pragmatism by W2k · · Score: 4, Insightful

      So in your opinion, having no nVidia drivers would be better than the current state, which is that there are drivers for the vast majority of systems that need them (which is to say desktop PC's) which are closed-source but mostly working.

      How typical of "free software" zealots to whine and whine for improvement, and when they get it, to whine again that it isn't good enough because it is missing feature X or because it doesn't support obscure platform Y. nVidia is giving you drivers for free, whining because you think they should just give away all their source is not the way to get more companies follow in their footsteps, releasing drivers for Linux.

      I've heard the argument that welcoming binary drivers is counter-productive to getting more drivers that are fully open source. While this may well be true, having a somewhat functional driver which works on some platforms (or better yet as in the nVidia case, a well-functioning driver that works on most platforms) is certainly better for the users than having no driver at all.

      --
      Quality, performance, value; you get only two, and you don't always get to pick.
    14. Re:Pragmatism by Tim+C · · Score: 4, Insightful

      but if you want to get hardware acceleration on another architecture, you're on your own.

      And if you wanted hardware accel on one of the currently-supported platforms, but Nvidia didn't release any drivers at all, you'd still be on your own.

      I understand where you're coming from, but I'm firmly in the "I just want my expensive hardware to work properly" camp.

    15. Re:Pragmatism by kyz · · Score: 4, Insightful

      My opinion is that having NVIDIA work with kernel developers to come up with fully open-source, GPL licensed Linux drivers for their hardware would be better than ever releasing a single binary-only driver.

      NVIDIA haven't given us anything for free. They have given us 6000 lines of code to interface a big black box to the free and open Linux kernel. This has been more than paid for by the thousands of NVIDIA cards sold on the back of supposed "Linux support". They have given us absolutely no device specifications whatsoever. Experience shows us that, over time, Linux kernel programmers write far superior Linux drivers than the hardware manufacturers.

      Currently, NVIDIA have offered a sop to the whining Linux fanboys -- "here's your binary, black box secret drivers -- just like in Microsoft Windows". The drivers cause mysterious kernel panics which can't be debugged because they originate from somewhere inside a black box that only NVIDIA may look at. NVIDIA can't leverage the support of hundreds of kernel developers when trying to fix it. It sucks.

      If NVIDIA gets away with providing half-hearted binary-only support for Linux, why can't every other hardware manufacturer? "No, you can't have any specifications for this Ethernet chipset, it's top secret -- here's a binary HAL instead". "No, you can't have any specifications for this SCSI disk controller", etc.

      --
      Does my bum look big in this?
    16. Re:Pragmatism by NegativeK · · Score: 3, Insightful

      We chose the freedom of Linux over the convenience of binary-only platforms with working drivers.

      That's odd, as it is the exact reason I switched over too. Plus stability and power, of course. But you know what else I find odd? You. It would seem that you would rather I didn't have the freedom to do what I want with the OS on my computer. It is really pretty simple.. To each his own. I'll run my binary modules, unload them if I think I have a bug to test it, and get my very nice hardware acceleration out of a card that I payed $200 for.
      But really, I think this argument comes down to one issue.. If you have to release and use everything as open source, then you are almost as restricted as having to release and use everything as closed source.

      P.S.: I do agree that I would _like_ open source drivers, and I have e-mailed nVidia's PR department about that. But I'm still going to support them, as they've shown more support for their hardware than _some_ companies.

      --
      This statement is false.
  3. Linux driver model doesn't help by Vanders · · Score: 5, Insightful

    This "grey area" exists because there is no clearly defined boundary defining the seperation between the kernel and the drivers. Modules are parts of the kernel which have not been linked yet. When they're required, they are loaded and linked with the kernel.

    The fact that Linus states that there is no exception must worry a lot of companies out there who are producing binary drivers for Linux E.g. nVidia, or SciTech (Who started the LKML thread, after all!) Are nVidia's kernel modules under the GPL? If the possibility exists that they are then I would expect them to suddenly get cold feet over Linux.

    If the kernel had a proper boundary with E.g. a set of API's that the kernel and drivers can use to communicate with each other then it would help to solve the issue of what is and isn't "the kernel". For example in Syllable drivers are ELF images which are loaded by the kernel ELF loader. The drivers are loaded under the kernels memory space but there is a very well defined API between the two, and a very clear seperation between them. Under this model I can argue that the kernel is actually being linked to the driver, so the driver can be under any licence while the kernel remains under the GPL. There is no "cross pollenation" between the driver and the kernel. Which is a good thing IMHO, if it avoids issues like the ones being raised on the LKML.

  4. What Linus is missing here... by kju · · Score: 4, Insightful

    Linus talks all about linking source with the kernel and stuff like this. But guess what: With most binary modules this part is done by the user, not by the distributor, and this is clearly your right - you just cannot distribute the binary.

    See for example stuff like driverloader (the ndis-wrapper around windows wlan drivers for the centrino and other cards): They are shipping a source which you can compile against the kernel headers (which are provided by YOU!) and will form a kernel module which can be loaded (by YOU!) against the kernel.

    I really can't see how linus can claim copyright to the distribution of any source which happens to run with the linux kernel - but does not contain any part of it. And the enduser is free to compile and link this sources against the kernel, as the GPL allows modifications for own use without any restriction.

    I guess the whole discussion is politics. Linus dislikes binary only drivers (for good reasons: they are unflexible, hard to debug and can cause user confusion and problems) and would like to have them not happen. But i don't think it is helpful to take a extreme shaky legal position (and downright confusing the users by making legal statements which simply do not apply here) to achieve this goal.

    Although i dislike binary-only drivers in general, i came to the understanding that sometimes this might be the best you can get. In the business software world copyright is often a diverse field, and even companies who would like to release the source might be barred from that through NDAs and copyrights of third companies. So some companies have no choice but releasing binary drivers and i'm happy that they do at least that. If all would adhere to linus position we would just keep some users alone out in the rain. I'm all for helping users getting their hardware running. They might have made the wrong purchase in the first (getting a hardware with open sourced drivers would have been wiser), but just saying "tough stuff, you have lost, now go away" won't help them.

    1. Re:What Linus is missing here... by kju · · Score: 4, Insightful

      Yes, we are talinkg about some binary modules which are compiled before distribution and WHICH SIMPLY DOES NOT EXIST. All "binary only" modules i've seen so far contains at least a short kernel linkage stub which is distributed in source and compiled by the enduser, because this is the only way to ensure that the module is compatible with your running kernel.

      The companies providing "binary only" drivers are only distributing this stub source (which they very often GPL) plus their propitary binary. Compiling and linking is usually done by the enduser. Providing real binary-only-drivers would lead to many problems and therefore just isn't done.

  5. Why don't they just introduce a proper driver API? by MisterFancypants · · Score: 4, Insightful
    With Windows and other OSes, there is a clearly defined API that drivers code against to work with the system. In the Windows case this is *required* because the driver authors do not have the Window source code (well, most of them don't). If Linux had something similar to the Windows DDK, this would all be a non-issue as that API would become a clear boundary of where the GPL ends and commercial company lawyers wouldn't have a near-heart-attack worrying about this huge (in Linus' words) 'grey area'.

    I know some people just hate the idea of binary drivers to begin with, and if that is your stance, fine; I don't agree, but I understand where you're coming from. But if you're going to allow binary modules (as Linux does), why do it in such a half-assed fashion that a company that might provide a Linux driver can't be sure one way or another how you're going to view their code (exempt from GPL or bound by it)? Either do it right and enforce a clear boundary or just stick with source only drivers.

  6. Re:lines have to be drawn by jusdisgi · · Score: 5, Insightful

    Er, yeah, that's a little warped.

    It might make sense to take that position, if such a thing as a "module vendor" existed. As it happens, it doesn't, and no one is out trying to sell binary modules for Linux. The creators of binary modules are *hardware vendors* and they are "contributing" by making their hardware compatible with the free system.

    This is not parasitic; if they want, they can just not bother, and you can just not use that hardware in Linux. Let's not forget, it's not like you wrote the driver; why would you want to keep people from making their hardware usable on your system? If a manufacturer says "well, sorry, I want to support linux, but not if it means letting the competition get a sneak peak at this crazy technology in my drivers" you would just say, "ok, parasite, we don't need your stupid hardware."

    When the manufacturer in question is a leading producer of video boards, such fanaticism is extremely foolish.

    --
    Given a choice between free speech and free beer, most people will take the beer.
  7. Original purpose by tjackson · · Score: 4, Insightful

    The original purpose of restricting derived works was to make it so that authors (companies or not) could not copy code from the public domain and claim it as private work, No?

    Kernel Modules cannot exist without the Linux Kernel. This dependancy means that any part of the Kernel Module that depends on the kernel for *module* interface purposes is not derived work. It is when authors base their code off of other code that is in the GPL that they must in turn release thier code under the GPL.

    So in short, if the module could have been written entirely with Manpages and documentation, it is not derived work. If the author views the code of other modules, then it is derived work.

    Deriving functions and invoking them are two very different things.

  8. Re:lines have to be drawn by _Spirit · · Score: 3, Insightful

    This is some seriously deranged logic. This is how your post reads to me:

    I make a video card which I expect to be used with Windows. Some of my users beg me to support Linux. I make a Linux driver. Now I'm a parasite?

    An open sourced driver would be nice but not supplying one is now a crime? What am I missing here?

    --

    beauty is only a light switch away

  9. But why close the drivers? by BigRedFish · · Score: 3, Insightful

    OK, I've wondered about this since the dawn of PCs, and wonder about it every time I have to install nVidia drivers: Why do this? Onceupponatime, you bought hardware and drivers were just kinda there with it. Then they started putting copyright callouts on 'em. Now they're treating 'em as if they were standalone programs - doesn't an nVidia card kind of function as a dongle for the nVidia drivers, if they're so worried about copying?

    If the driver spec is floating around in the open, that's a value-add for me as a comsumer (the company can't force-obsolete the cards by yanking drivers away, easier to switch OSes) and for the company (it makes the devices marketable to more people, and they get free optimizations and ports from the OSS community). On embedded devices it's even sillier, I mean, what good does PalmOS do me if I don't have a Palm? If I were trying to reverse-engineer an nVidia card or a Palm, wouldn't I start with the hardware? And if I did make a 100% Palm-compatible, I could just sponge off Palm's binaries then... ditto nVidia...

    So, why be all grabby about drivers anyway? The cavalier something-for-nothing closed-source approach to open-source support seems vaguely dishonest to me somehow - it just makes me uneasy, and affects my purchasing decisions. If they're so happy to rip off the OSS community, won't they also be happy to rip me off, I ask myself.

    IMO, binary-only is a trap: All it takes is closed-source drivers for motherboard devices, the manufacturer doesn't make a new version of the drivers to support a new kernel, and you're stuck buying a new computer or using Windows. A trap. Since an open driver spec is a value-add for both the consumer and the hardware company, I am very suspicious of proprietary drivers and the motives behind them. Trap. Linux is better off without binary-only taps. I mean drivers.

    1. Re:But why close the drivers? by RevMike · · Score: 4, Insightful

      OK, I've wondered about this since the dawn of PCs, and wonder about it every time I have to install nVidia drivers: Why do this? Onceupponatime, you bought hardware and drivers were just kinda there with it. Then they started putting copyright callouts on 'em. Now they're treating 'em as if they were standalone programs....

      If the driver spec is floating around in the open, that's a value-add for me as a comsumer (the company can't force-obsolete the cards by yanking drivers away, easier to switch OSes) and for the company (it makes the devices marketable to more people, and they get free optimizations and ports from the OSS community)....

      So, why be all grabby about drivers anyway?....

      In ye olde days, drivers did nothing more thancanfigure and move data back and forth to a piece of hardware. They were fairly trivial pieces of software, and so no one cared if they were protected. Many types of drivers are still like this today. Network card drivers typically do nothing magical.

      A few generations ago, hardware designers realized that they could offload some of the task traditionally done in hardware to the driver. Thus they could simplify the hardware and save money. The driver for a WinModem doesn't just configure and communicate with a hardware modem, it actually performs in software some tasks that were usually done in the modem hardware itself.

      At this point, drivers aren't trivial programs, but represent substantial investment and competative edge for the hardware manufacturer. If WinModem company B could look at WinModem company A's driver, they would see the tricks that they used in order to reduce the part count that much further. Company B could immitate Company A, and match their price.

      Video cards are like WinModems, although the competititon is not based price but performance. The card manufacturers are using tricks in the driver in order to boost the performance of their hardware. Those tricks may confer to them a competetive advantage, so they won't open source the drivers.

      Smart companies are quick to release software as open source when the software doesn't give them a specific and compelling competitive advantage. Cisco released CUPS as OSS because they felt they would benefit far more from having a community enhance their internal printing system than the would be hurt because Bay Networks could reduce their overhead a few hundred thousand dollars. Cisco is not going to open source their routing software anytime soon, because other router manufacturers could use it to compete against Cisco.

  10. Re:It's really simple by anpe · · Score: 4, Insightful

    I think you've missed the point, the problem is to define what does "based upon" means.
    When you compile a binary, you have to compile with some header files which are GPLed. So you are "based upon" GPL code right?
    IIRC Linus argued that this wasn't sufficient. He stated that for a module needed to be written with Linux in mind (ie targeted at it), accessing particular data structures, then it would have to be GPLed.

  11. Think Back by ajs318 · · Score: 5, Insightful

    My second printer was a Citizen 120-D 9-pin mono dot matrix, and it was also very Epson-compatible. It had a beautiful programmer's manual replete with examples of how to access each feature, from simple double width text to high-density image graphics, and even went so far as to provide timing details for the Centronics interface. {Hey, you might be plugging the thing into some device of your own construction}. It was even known for owners of EPROM burners to patch the charsets to match certain manufacturers' non-strict interpretation of ASCII {the BBC model B, for example, had a pound sign at CHR$(96) instead of a backtick, so it could keep the comment mark at CHR$(35) - a comment in BASIC is denoted by REM, but the # was used to specify immediate mode in assembler}.

    Compare and contrast that with today ..... you get a Quick Start guide which says "Plug the printer into your computer. Do exactly what Windows tells you to do" and a huge manual, replete this time not with useful programming information but with dire warnings about attempting to do anything "unauthorised" with the printer, and it probably illegal to examine the printout with a magnifier to see how the fonts are made up.

    IMHO the lawful owner of an instrument has the right to know everything about that instrument. My property can, by definition, contain no secrets from me {though I might reasonably be bound to keep any secret I discover}. It's time that this was enshrined into law. If you can't handle the concept of people knowing how to write drivers for your hardware then you perhaps shouldn't be selling it. Mandatory Full Disclosure would put an end to this argument once and for all.

    --
    Je fume. Tu fumes. Nous fûmes!
  12. Linus, nice guy, but wrong. by mumblestheclown · · Score: 3, Insightful
    From what i get of linus' posts, he seems to take an (from his standpoint) overly optimistic view of what "derived" works are.

    By his definition, if X was created primarily to work with the linux kernel, then it is a derived work, and therefore falls under his copyright regimen of choice (GPL). this is like saying that if you make a super efficient oil filter that was clearly designed exclusively for mercedes engines, then mercedes can tell you how to sell it.

    while mercedes clearly has the right to protect its trademarks and copyrights, as long as the oil filter maker doesn't pass it off as anything but an aftermarket job, his business is secure. this is true whether the aftermarket add-on fits onto an easily identifiable interface (the little bit that the oil filter screws on to) or not (those places that hack up a whole mercedes and turn it into a stretch limousine or something - though the latter may well run into trademark issues if they are not careful).

    yes, software is not like physical items in many instances. but, in this one, it is.

  13. Re:Why don't they just introduce a proper driver A by trenobus · · Score: 3, Insightful

    An even better alternative would be for the proprietary part of the driver to be a provider of a public, documented API, so that anyone could write a driver for it for any OS, instead of it being a consumer of some particular OS driver API. This would completely eliminate the need to use any GPL'd code in the proprietary driver binary.

    Such an API could (and in many cases should) conceal proprietary aspects of the associated hardware, and in so doing perhaps remain stable for more than one generation of the hardware. Also, such an API could (but in most cases should not) have hidden functionality (e.g. "reserved" arguments to functions) that could be transparently used by proprietary application code (assuming the driver for a particular OS passes the arguments through unchanged).

  14. Re:lines have to be drawn by Spoing · · Score: 3, Insightful
    I see it as encouraging companies *not* to contribute. Why give people Free code when you don't have to?

    A few plusses just for maintenance come to mind, there are likely more for maintenance and other reasons such as good PR;

    1. As the kernel changes, the module is kept in sync almost automatically
    2. Others can look at and make changes, fixing defects
    3. Crossplatform support is much more likely
    4. Any defects discovered during the in the kernel port and maintenace will help with the Mac and Windows versions that lack this level of review; remember, the copyright holder does not loose copyright when using the GPL and can dual-licence or re-licence any code they have copyright to!
    5. Knowing that the code will be seen, opening it encourages cleaning up and repairing the nasty parts -- or if it is not a port -- keeping it clean and better organized leading to fewer defects

    There's not much of a benifit to binary-only modules for the vendor except;

    1. They don't have to pull or replace code or binary parts that come from other companies (though this applies to few potential modules)
    2. Likely faster to get an initial version out since there is no requirement for code review to be "accepted" (no acceptance process)
    3. If the code is too messy, there's no need to clean it up so others can figure out what's going on or to avoid embarasment
    4. The old protecting IP paranoia is lowered
    --
    A firewall can not protect you from yourself. Turn off what you do not need. Do not use the firewall to do your work.
  15. Re:Pessimists are mind-killers by jlar · · Score: 5, Insightful

    You clearly missed the point in my signature. It has nothing to do with pessimism. Karl Popper (famous natural philosopher) wrote a book after WW2 called "The Open Society and its enemies" as a defence of democracy and a critique of totalitarian rule (including fascism, communism and various religious ways to rule).

    In the book he argues that democracy has an incremental approach to society building whereas e.g. communism (and political islam for that sake) has a "revolutionary" approach. The point is that those who promise us paradise on Earth after we have made the society in whatever way they would like us to - they have always ended up giving us hell on Earth (Soviet Union, Iran, Afghanistan and so on).

  16. Re:lines have to be drawn by Spoing · · Score: 4, Insightful
    If a manufacturer says "well, sorry, I want to support linux, but not if it means letting the competition get a sneak peak at this crazy technology in my drivers" you would just say, "ok, parasite, we don't need your stupid hardware."

    The manufacturer is selling hardware. Anything they want to protect from being exposed in the module means little to other hardware companies who have competent developers. The details of how the hardware is controlled and any setup and tables can be discovered using the Windows drivers and debuggers.

    Contrary example: In Nvidia's case, they don't own everything they ship so unless they convince other companies to opening those parts (unlikely) Nvidia has to either drop those parts or replace them.

    The motivations of different companies are important. Server-grade hardware companies fall all over themselves supporting Linux in the main kernel source tree. If Linux becomes popular on the desktop -- even if modestly so -- the kernel modules that support desktop software will likely be open. Nvidia might even change (though this is speculation on my part).

    --
    A firewall can not protect you from yourself. Turn off what you do not need. Do not use the firewall to do your work.
  17. Re:Kernel and module compability by goranb · · Score: 3, Insightful

    That's not true, they might lose money...

    The IDE Raid controller you're talking about uses some functionality which I have a patent on. To make this functionality work the driver includes some code which of course I wrote and are the copyright owner.
    I see no point in releasing any of my code as that would lower my income, because none of the manufacturers would need to buy my code anymore...

    Ok, I admit, I'm not holding any patents and didn't write any driver code that's included in any RAID driver (not that I know of, at least)...
    But I think you get the picture here... It doesn't have to be the actual hardware manufacturer who's responsible for the drivers not to be released in source form. They might be restricted by other parties....

  18. the real problem is... by jonwil · · Score: 3, Insightful

    that sometimes there is no other choice.

    For example, try to find a combination of GPU and drivers that is good enough to play linux games like Neverwinter and Unreal or emulated games through WINE that is 100% open.

    You cant.
    I suspect that even if you were able to completly Reverse Engineer (through disassembly or otherwise) the windows or linux Binary-Only drivers and/or the interface and hardware APIs for and from that, make an open source driver, you would probobly be violating several patents or other IP thingos and would have your ass sued by the makers of . Also, the makers of would probobly state that using the code means you get no tech support, no warranty, no nothing. Plus, the makers of would get some kind of court order to state that since the open source driver violates the patents etc that distributing, using or working with it is illegal and have all the copies in existance removed.

    Also, 802.11* wireless network cards. I dont know of any 802.11* wireless network cards that have 100% open source drivers for linux except for 1 or 2 that have been Reverse Engineered by someone. For those, you dont get technical support, you may not get warranty service and the manufacturers would probobly shut down the Open Source driver projects if they had a way to do it.

    Personally, I love Open Source and Open Specifications (i.e. Open file formats, Open APIs, Open network protocols, Open hardware interfaces etc) and push for such things wherever I can. (I was involved in a push to get Electronic Arts to release stuff connected with the gameplay scripts for Command & Conquer Renegade. They didnt release it. But in the end, I wrote my own DLL that sits between the game exe and the official DLL and allows one to implement ones own scripts but its still nowhere near as good as having the official stuff would have been)

    1. Re:the real problem is... by Just+Some+Guy · · Score: 3, Insightful
      For example, try to find a combination of GPU and drivers that is good enough to play linux games like Neverwinter and Unreal or emulated games through WINE that is 100% open.

      The problem is trying to determine causality. You could equally argue that were it not for NVidia's binary drivers, there would've been enough need for someone to have spent the time and money to reverse engineer an MX-400 and build good open source drivers. From that point on, NVidia would have a vested interest in supporting the community drivers with their new boards, since it would be cheaper than maintaining their own in-house closed drivers.

      Instead, they beat us to the punch, and removed 99% of the motivation to do it "right".

      --
      Dewey, what part of this looks like authorities should be involved?
  19. Don't push it... by OneFix+at+Work · · Score: 3, Insightful

    The reason most of these companies develop binary-only modules is to keep a leg up on their competition. Put simply, companies like nVidia don't want ATI or Matrox getting hold of their improvements. Some drivers include proprietary technology and speed or quality improvements that either can't or (in the interest of profit) shouldn't be open.

    Hardware manufacturers have very little that sets them apart from each other. Their biggest concern is that the driver source code would give away how the hardware works and therefore would show their competitors how to implement their technologies.

    Let the hardware manufacturers develop their binary only modules. It's better than what we've seen with the wireless market...which is what we would likely see if we started spouting "show us your source code" to all of the hardware manufacturers that choose to make binary only modules...

    And of course the other reason for a binary module is to charge for it (like is being done with Linuxant's DriverLoader) but...just like anything else worthwhile, there is already an open sourced equivalent under development.

  20. Re:-1 Flamebait by atriusofbricia · · Score: 3, Insightful
    Not likely anyone will see this at this point but I just had to say something.

    What pisses me off are the, as was said, hardheaded people who are of the immovable position that either a driver is open source or it's evil. Or worse, those who say that either it should be open source or not exist!

    You correctly, finally someone did it, pointed out that even if nvidia wanted to release their drivers under the GPL they can't! The owners of S3TC would own them inside of a week.

    And it is not a bloody solution to just say people with such hardware can just bite off. I want to see Linux on the desktop, not just relegated to the server room, and that is only going to happen with good driver support across the board.

    I'm sorry, not everyone who makes a board wants to GPL their drivers. They all have their reasons, right or wrong.

    I would rather see such drivers then have to tell someone when they ask me about linux,

    "Yes, it's a great OS. It's stable, runs fast, isn't full of bloat, blah, blah, blah. But you can only buy a model blah video card, model blah sound card. Because those are the only ones there are drivers for." Keep in mind that model blah and blah would likely be pretty old and out of date.

    And to those saying that nothing "important" would have to be released to OS their drivers, that would logically mean it should be pretty easy to write OS drivers that are just as good as the, in this example, Nvidia binary drivers. Why is it then I haven't seen such drivers? (I am not a programmer, so I am likely off base on this, feel free to reply if I'm wrong)

    Thank you no, I'll take my fully working, yes with binary nvidia drivers, system anyday. bah!

    --
    I was raised on the command line, bitch

    "Nemo me impune lacesset"

  21. Linus doesn't get to define "derived work" by Sloppy · · Score: 3, Insightful
    If a piece of code is a derived work, then the license Linus chooses (the GPL) sets the terms, and the issue of "linking" and so on, is relevant. If a piece of code is not a derived work, then the GPL, the contents of the COPYING file, and Linus' desires, are irrelevant. When Linus tries to refute Larry McVoy's excellent point, Linus shows he's very aware of this:
    But a license only covers what it _can_ cover - derived works. The fact that Linux is under the GPL simply _cannot_matter_ to a user program, if the author can show that the user program is not a derived work.
    although he then shows a little confusion:
    Does that mean that any kernel module is automatically not a derived work? HELL NO! It has nothing to do with modules per se, except that non-modules clearly are derived works (if they are so central to the kenrel that you can't load them as a module, they are clearly derived works just by virtue of being very intimate - and because the GPL expressly mentions linking).
    (I say this indicates confusion, because of his reference to "because the GPL expressly mentions linking." What the GPL says is irrelevant in discussions of whether something is or isn't a derived work.)

    I think it would be interesting to see the support for these two statements:

    There are areas that are not gray at all: user space is clearly not a derived work, while kernel patches clearly _are_ derived works.
    and
    Basically:
    - anything that was written with Linux in mind (whether it then _also_
    works on other operating systems or not) is clearly partially a derived
    work.
    - anything that has knowledge of and plays with fundamental internal
    Linux behaviour is clearly a derived work. If you need to muck around
    with core code, you're derived, no question about it.
    Where's he getting this stuff? I have serious doubts that copyright law contains the words "user space" anywhere. So just what causes that distinction to exist? My guess is that he's making it up (with the best intentions and desire, of course).

    That one about "anything that was written with Linux in mind" is particularly amazing.

    --
    As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.