My software product is a desktop application that makes use of MYSQL, itext and other GPL licensed Products. I understand that now my software product would have to become open source. I am going to ship MYSQL along with my software product. My software product communicates with a central server.

My questions are:

  1. I am going to charge my clients for the software product. Is that legal to do when I am using MYSQL? I think it is, just wanted to confirm though.
  2. I am not going to ship the source code with the software product. Only if the user asks me for it I am going to give it to them as a separate item. Is this ok?
  3. This is License terms I am going to include with my software product This is an excerpt from the EULA that is going to ship with the software:
    Limitations on Reverse Engineering, Decompilation, and Disassembly

    Some of the components used by the SOFTWARE PRODUCT are licensed under the General Public License (or GPL). The full text of the GPL is under this URL: http://www.gnu.org/copyleft/gpl.html. As per the terms set forth by the GPL, the SOFTWARE PRODUCT is open source. To obtain the source YOU may get in touch with us by calling us or sending us an email as specified here : . The source code will be provided to YOU AS-IS without any documentation apart from the documentation already provided to YOU along with this SOFTWARE PRODUCT. If YOU have obtained the source code from us then the below terms will apply:
    • These terms must be present in all the copies that you distribute and other copies that are made from your copies and so on.
    • YOU can make copies and distribute the software as specified in the GPL. But before doing that, all words which are trademarked should be removed from the software.
    • YOU will not receive any more updates from us.
    • YOU should not access in any way our infrastructure which includes but not limits to the server Is the above legal?

I think its only fair that since I cannot afford the commercial MYSQL license, I am planning on making my code open source. But the user should not change the code and mis-use the server space that I have to allocate for each user. Also any updates that I will provide will only go to the people who pay me for it.

link|improve this question

80% accept rate
3  
What's the purpose of cutting off support to users who request the source code? Pure spite? – duskwuff Jul 9 '11 at 8:00
feedback

3 Answers

up vote 2 down vote accepted
  1. Yes, you can charge whatever you want. If you wanted to, you could even charge people just for MySQL. Nothing about the GPL prevents the sale of open-sourced software. In fact, it even states "You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee". However, from a practical standpoint it does make it more difficult to charge for a product in that people are going to be reluctant to pay for something that they can build from sources for free.

  2. Yes, that is fine. As long as you clearly state that source code is available upon request then you are not violating the terms of the license.

  3. Some parts are questionable. For instance, if you have linked against itext as a library, then you can forget about the whole "Some of the components" preamble. At this point, your entire product would be licensed under the GPL. There's no need or point in stating that only some components are GPL'ed, and it's inaccurate besides. You also can't deny people updates, if by "updates" you mean access to future versions of the source code. You can certainly deny them binary updates/patches (or access to any hosted content on your infrastructure that the application consumes internally), but if they requested the source code for a patch you'd still have to give it to them.

Remember, the GPL is like a cancer. It replaces everything it touches with more GPL.

link|improve this answer
Thanks a lot Aroth.. I think that pretty much explains it. It didnt come as a suprise.. Thanks again everyone who replied back. Appreciate it. – sethu Jul 11 '11 at 6:56
feedback

Is MySQL server embedded into your application, or is your application just communicating with MySQL?

In the latter case your software need not be open sourced. You will be distributing two applications: MySQL in accordance with it's GPL, and your own application under your own EULA.


added: I concentrated on MySQL but then realised you also use other GPL software. In each case it boils down to whether the GPLed product is embedded into your application, or is your application using it as an external service.


Example: Wampserver is an installer for Apache, MySQL and PHP for Windows. Apache is licensed under Apache License, MySQL is GPL and PHP has it's own PHP License. There's also a little script to manage it all licensed under CC. Just because all these programs are shipped together (in fact, they're all bundled into a single downloadable binary) and after installation work with each other, does not mean they are all now licensed under GPL (or any other mentioned license). Last but not least it does not make the installer program open source.

link|improve this answer
1  
I believe that MySQL's (now Sun's?) opinion is that if your program connects to the MySQL database through a MySQL client library, then your program is GPLed by virtual of linking to the GPLed client library. – Michael Burr Jul 9 '11 at 9:05
@Michael Burr: It's Oracle now. And yes, I've just checked and it looks like the official connectors are now GPLed (used to be LGPL :( ). See this however: stackoverflow.com/questions/1260591/about-mysql-gpl-and-lgpl – Mchl Jul 9 '11 at 9:19
Oh yeah - how could I forget about the Oracle deal? And I didn't know that the client libs used to be LGPL (I don't really do much with databases). – Michael Burr Jul 9 '11 at 9:36
feedback

I'm no licensing expert (all the usual disclaimers - and more - apply), but it seems to me that at least some of your conditions are not permitted by the GPL license - a license you would need to agree to yourself in order to redistribute the MySQL and other GPL software.

For question 2, there are some details that you might need to be aware of (this is from GPL 2, there may be some differences if the software you're distributing is under GPL 3):

  • if you don't distribute source with the binaries, you have to give a written offer to provide the source. The written offer must be valid for at least 3 years, and the offer has to be valid for 3rd parties. If you chose to distribute source this way, you cannot restrict it to being valid only for your customers. You can charge for the source distribution, but no more than your cost of physically performing source distribution.

  • If you distribute the source with the binaries (or offer equivalent access to the source as for the binary distribution - for example via a network download) you aren't subject to the 3 year requirement, and you don't need to offer the source to anyone else. However, you can't charge an additional fee.

For question 3: you can't add an additional EULA to the GPL software you're redistributing. But, you can have whatever EULA you like (subject to the legalities of any jurisdiction that applies to you) on your own software that isn't required to be be GPLed (it's unclear to me whether you will have any of this in whatever it is you're distributing).

Cutting off customers from further updates that you might otherwise provide them is OK, I believe (as far as the GPL is concerned - there certainly might be other laws that apply if someone has paid you money for an update agreement). The GPL only makes requirements about the GPL software you actually distribute - it doesn't require you to provide future updates. Sveasoft uses (used? are they still around?) such a policy of cutting off updates to anyone who redistributed their GPLed software. I recall that they claimed they were informed that the policy was in compliance with the GPL by some FSF official, but I don't know if that's accurate (for either my recollection or the claim).

You should take a look at the GPL FAQs on the FSF website - they should give you some answers that are more detailed (and certainly more authoritative) than mine to your questions:

And, of course, the actual text of the GPL would be the final word. It's not the easiest read, but maybe isn't too bad - it seems about the same in complexity to most boilerplate contracts I come across.

And frankly, most of the complexity is due to trying to close the loopholes that people might otherwise try to take advantage of to get around the very clear intent of the GPL. Not that this question has anything to do with that...

link|improve this answer
Thanks a lot Micheal. – sethu Jul 11 '11 at 6:57
feedback

Your Answer

 
or
required, but never shown

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