GNU Licensing - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T03:35:58Zhttp://stackoverflow.com/feeds/question/632566http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/632566/gnu-licensing7GNU Licensingbnkdev2009-03-10T22:40:53Z2009-03-24T11:31:47Z
<p>I am in a bind here. I found some old code written a long time ago, that someone had implemented under the GNU public license, in .NET 1.1. The original code was language agnostic, essentially a file parser. The .NET implementation of this parser was also released under GNU General Public License as a class library, i.e. a single DLL(Assembly) Now, come 2009, I have found a use for this assembly which I have modified for use on a mobile device, i.e its a Windows Mobile application. </p>
<p>Now my question is this, since I'm just referencing the .NET Assembly written by someone in 2003, when I sell my product, do I have to release source code for my mobile application, or is it sufficient to make the source code of the original assembly available? I don't want to release my application's code since it has other closed source code. It relies on said assembly only for certain functions.</p>
<p>Do I have to release my entire code base, or just make the assembly's source code available, which is freely available anyway.</p>
<p><strong>EDIT 1:</strong> So I modified the code a bit, instead of referencing the GNU code directly, the Application now queries a Web Service that uses that component, that said, I am willing to release my Web Service code on my website that invokes the said GPL'd component/assembly. So my plan is this, I will make the source code of my web service freely available that uses this component, this way, my mobile app is only invoking a web service that uses the GPL'd code, does this satisfy GPL requirements? Since the mobile app is now invoking a web service, there is no GPL code in my mobile app, just a call to a web service that uses said component. This way, I don't have to release the source code of this application that I've worked on a for a long time.</p>
<p><strong>EDIT 2:</strong>
From the comments: This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or any later version</p>
http://stackoverflow.com/questions/632566/gnu-licensing/632596#6325962Answer by gs for GNU Licensinggs2009-03-10T22:50:25Z2009-03-11T14:24:37Z<p>Yes, you have to release your source code too.</p>
<p>Or alternatively, you could replace this code by functions written by yourself.</p>
<p>By aware that anyone who's got a binary-form of your application (supplied by you) with the GPL code has the right to demand the source code from you.</p>
http://stackoverflow.com/questions/632566/gnu-licensing/632603#63260320Answer by ahockley for GNU Licensingahockley2009-03-10T22:51:33Z2009-03-10T22:53:06Z<p>If you're calling GPL code, you need to release under GPL. From the license:</p>
<blockquote>
<p>This General Public License does not
permit incorporating your program into
proprietary programs. If your program
is a subroutine library, you may
consider it more useful to permit
linking proprietary applications with
the library. If this is what you want
to do, use the GNU Lesser General
Public License instead of this
License.</p>
</blockquote>
<p>The LGPL permits closed-source apps to link without also being GPLed. The pure GPL, however, requires that any derivative apps also be GPLed.</p>
http://stackoverflow.com/questions/632566/gnu-licensing/632614#6326141Answer by Neil Butterworth for GNU LicensingNeil Butterworth2009-03-10T22:53:44Z2009-03-10T22:53:44Z<p>Are you sure the library (let's use that term - the GPL doesn't talk about "assemblies") you are using is licensed under the GPL and not the LGPL? There is a big difference. If it is licensed under the GPL, then if your code uses it, the GPL viraly also applies to your code. If it is licensed under the LGPL (Lesser GPL - specifically designed for libraries) then it (probably) does not.</p>
<p>Having said that, you are under <em>no</em> obligation to distribute your GPL code to anyone except your own licensees. You do not, for example, have to set up a web site to give your code to all and sundry.</p>
http://stackoverflow.com/questions/632566/gnu-licensing/632619#6326197Answer by T.E.D. for GNU LicensingT.E.D.2009-03-10T22:57:56Z2009-03-23T14:22:05Z<p>If you link to GPL code, and you release your code to anyone (outside your company), then you have to license your code to them under the GPL as well, or some license <a href="http://www.gnu.org/philosophy/license-list.html#GPLCompatibleLicenses" rel="nofollow">compatable</a> with the GPL.</p>
<p>Really, that isn't as bad a deal as a lot of people think. You can still sell your program to people for money, for example. To get a full picture of what it means, I'd suggest reading through the <a href="http://www.gnu.org/licenses/gpl-faq.html" rel="nofollow">GPL FAQ</a></p>
<p>If you still can't deal with that, then you will have to remove the GPL code from your program (or not distribute it to anyone).</p>
<p>Based on the comments, I see a lot of people seem to be very confused about what GPL-compatable means. </p>
<p>When you redistribute GPLed code to someone, it has to be under the GPL (its original version or newer). However, that is <em>not</em> true for any new code you may have written yourself and linked with that GPL'ed code. You can put any license you want on your own code. </p>
<p>The catch is that it is quite possible to put a license on your own code which has restrictions on it that interact with the GPL (on the code you linked in) in such a way that you <em>cannot</em> legally distribute the entire program to anyone else. Licenses like that are termed <em>GPL incompatable</em>.</p>
<p>As for the question's latest edit (2): With GPL version 2, If you aren't actually linking against GPLed code, or textually including it with a preprocessor somehow, you are free to release under any license you like. Just don't "upgrade" its license to GPL 3. :-)</p>
http://stackoverflow.com/questions/632566/gnu-licensing/655722#65572213Answer by Tyler McHenry for GNU LicensingTyler McHenry2009-03-17T19:46:17Z2009-03-17T19:46:17Z<p>In response to your edit regarding the web service, then yes that is compliant with the GPL, so long as the service and the app are not tightly coupled. Generally this means that you must document the protocol that your mobile app uses to communicate with the web service, and the protocol must not require knowledge of the internal state or internal data structures of your closed-source app. </p>
<p>In other words you must both open source the service, and make it possible for someone to write a program that interoperates with your service without having to reverse-engineer your closed source app.</p>
http://stackoverflow.com/questions/632566/gnu-licensing/655723#6557231Answer by tstenner for GNU Licensingtstenner2009-03-17T19:46:21Z2009-03-17T19:46:21Z<p>I am not a lawyer, but I think you would only have to publish your source code if the code of the Web Service was released under the <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html" rel="nofollow">AGPL</a>, however you only change the way the function is called, not the calling of the function itself.
The easiest (and safest) way to resolve this would be to ask the original author if you can either use it under the LGPL or some other licence.</p>
http://stackoverflow.com/questions/632566/gnu-licensing/655744#65574413Answer by Ted Dziuba for GNU LicensingTed Dziuba2009-03-17T19:50:30Z2009-03-17T19:50:30Z<p>Your strategy of isolating the GPL code to a web service is a fairly common idiom called the "GPL condom". Google actually does this in their Search Appliance product. You aren't obligated to release the code to the service if the software is licensed under the GPL.</p>
http://stackoverflow.com/questions/632566/gnu-licensing/655812#6558121Answer by David Thornley for GNU LicensingDavid Thornley2009-03-17T20:04:49Z2009-03-17T20:04:49Z<p>There's still a bit of confusion.</p>
<p>Check the license on the DLL. If it's the Gnu General Public License, than it, and anything that links with it, has to be released under the GPL if released at all. (The word "links" may be ambiguous here. The Free Software Foundation considers a DLL to be linked, while other people seem to think that may not be the case. I'm not a lawyer. The safest way is to assume that a DLL is linked.)</p>
<p>If it turns out the license is the Gnu Lesser (or Library) Public License, as is common with libraries, then you need to provide whatever is necessary for other people to change the source code on the DLL and recompile, but there are no restrictions on how you distribute your code.</p>
<p>One alternate way is to track down the copyright holder (if there is only one; many projects have multiple copyrights) and ask for permission to use the library under a different license. Different people will react in different ways, so be polite and accept a refusal as such.</p>
<p>There was no Affero GPL in 2003, so there's no need to redistribute under any license if the code is used on the server side. (Not that I have faith that the AGPL would hold up in court.) Since you are not distributing the server-side code, the actual license doesn't really matter. Since any client-side code communicates with the GPL code through regular communication channels, and is not linked in, it doesn't have to be under the GPL.</p>
<p>Therefore, your proposed solution will work. You don't actually have to release the server code, but if it doesn't bother you too much it might be worth it for good relations with the open source/free software communities.</p>
http://stackoverflow.com/questions/632566/gnu-licensing/668600#6686001Answer by antti.huima for GNU Licensingantti.huima2009-03-21T02:13:04Z2009-03-21T02:13:04Z<p>You can use GPL code completely freely to implement a web service on your own site. As long as you do not ship ("convey" in terms of GPL 3) the implementation to third parties you are not obligated to reveal the source code either.</p>
<p>This is from <a href="http://www.gnu.org/copyleft/gpl.html" rel="nofollow">GPL 3</a>:</p>
<blockquote>
<p>To “convey” a work means any kind of
propagation that enables other parties
to make or receive copies. Mere
interaction with a user through a
computer network, <em>with no transfer of
a copy, is not conveying</em>.</p>
</blockquote>
<p>This is also:</p>
<blockquote>
<p>You may make, run and propagate covered works that you do not convey, <em>without
conditions</em> so long as your license otherwise remains in force.</p>
</blockquote>
<p>So as long as it is not possible to anyone besides you and your subcontractors to actually obtain access to a copy of a derivative work, you are within the bounds of GPL.</p>
<p>Another poster refers to AGPL, which is a different license, and from this license's text we can read the following comment:</p>
<blockquote>
<p>The GNU General Public License <em>permits making a modified version and
letting the public access it on a server without ever releasing its source code to the public</em>.</p>
</blockquote>
<p><strong>DISCLAIMER: This is not any form of legal advice and shall not be construed as such. I am not a lawyer.</strong></p>
http://stackoverflow.com/questions/632566/gnu-licensing/668664#6686643Answer by TofuBeer for GNU LicensingTofuBeer2009-03-21T03:05:57Z2009-03-21T03:05:57Z<p>With GPL 2 you are fine. You do not have to release the source of the web service as you are not distributing anything (it is just running on your server).</p>
<p>With AGPL2 or AGPL3 (the Affero GPL) you would have to release the source for the web service.</p>
<p>Regardless the source for the client does not have to be released.</p>
<p>Look <a href="http://www.fsf.org/licensing/licenses/gpl-faq.html#UnreleasedMods" rel="nofollow">here</a> for the question about the web service not having to be released.</p>
<p>I would say, as a nice user of the GPL source, you should (from my own personal moral point of view) release the source for the web service - but if you don't want to that is fine as well - it is 100% your decision.</p>
http://stackoverflow.com/questions/632566/gnu-licensing/672271#6722713Answer by rlbond for GNU Licensingrlbond2009-03-23T04:48:21Z2009-03-23T04:48:21Z<p>This is why I don't consider the GPL "free": You really CAN'T do whatever you want with GPL'd code. You have to release your source. However, your web service solution works, as long as the service can't be considered solely a component of your program, but a standalone entity.</p>
<p>The GPL is what it is, and that's neither good nor bad, but "free" is something like the BSD license.</p>
<p>I expect to be voted down for this comment.</p>
http://stackoverflow.com/questions/632566/gnu-licensing/676005#676005-1Answer by wowest for GNU Licensingwowest2009-03-24T02:52:15Z2009-03-24T02:52:15Z<p>Find the original author(s) and pay them. I have no clue if you are legally obliged to do so, but if it's valuable to you and you don't like the terms, pay for ones you do like.</p>
http://stackoverflow.com/questions/632566/gnu-licensing/677000#6770000Answer by vartec for GNU Licensingvartec2009-03-24T11:25:40Z2009-03-24T11:31:47Z<p>This is gray zone of GPL. Generally Stallman is saying, that GPL is contagious even through dynamic linking. I.e. Stallman is saying, that program using a DLL is derived work of that DLL. So if you believe in Stallman, release your whole project on GPL license.</p>
<p>BTW. GPL (prior to GPLv3) obligates you only to provide source code to those, which you have provided with binaries. And this may be on request. </p>
<p>Now, it has never been proven in court, that dynamic linking is creating derived work. In fact there where few cases (not involving GPL though) in which conclusion was, that dynamic linking is boundary. Assuming it is, you only have to release the source code of that specific DLL, not entire project. </p>
<p>Now why would you assume that dynamic linking is boundary? </p>
<ul>
<li>linking is actually done on users machine, and you can actually link to another library which exports same symbols (e.g. Motif, Lesstif and OpenMotif can be interchanged)</li>
<li>there a lot of projects linking to GPL libraries (e.g. libmysqlclient which is GPL, <em>not</em> LGPL), yet they are not GPL-ed. </li>
<li>with dynamic linking the only code you're including are header files, which in many legislations are explicitly excluded from copyright as being API specification.</li>
</ul>
<p><hr /></p>
<p>As for the <strong>web service</strong> edit: GPL prior to GPLv3 is not contagious via network. The code you used to create the web service is GPLv2. You're safe. <strong>You don't have to release any source to anyone.</strong></p>