Wrapping GPL Code in a Service, Kernel Driver or Other License Avoidance Mechanism [closed]

元气小坏坏 提交于 2019-12-05 15:01:58

I agree with earlier comments that this looks bad as far as the spirit of the GPL goes. Doing it anyway would probably meet some resistance in the community which might take forms like:

  • Not checking your work back into project trunks
  • Not distributing your work if published separately
  • Checking it in, then modifying the API as they see fit without regard to how it affects your closed program, and distributing the changed version through the normal channels (in effect guaranteeing dll hell for your users)

and of course

  • Writing, distributing and pushing a competing front end.

So you might ask yourself if it is worth it. (Remember that reputation based communities can have long memories for some kinds of slights.)


Past community reactions to dodgy approaches to the GPL have included:

  • The GPLv3 which is structured to make some of these tricks more difficult
  • A broad coalition in the linux kernel community against the inclusion of modules that exist to load closed-firmware.
  • Naming and shaming of violators, and (just as important) public recognition for those who have cleaned up their acts.

Sooner or later you might want to get a lawyer for questions this deep. Regarding your second question: For me, you are violating the spirit of the GPL in a situation as given.

When I'm comparing MySql licensing with this, I've seen many commercial applications that have been distributed with a commercial license and installed with the GPL Version of MySql. I wouldn't want to judge if this is legal or not, but with a database server and the existing abstraction it's more or less natural: Applications interface with a generic database interface (odbc, jdbc, whatever perl/php/ruby equivalents are) that is talking via a driver to one of many applications.

Willingly and knowingly turning a GPLed piece of software into a server, creating an interface layer and having the GPLed version as the only implementation of that interface feels bad.

It might be easier to get in touch with the authors and ask for a commercial or more permissive open source license. Of course, you should offer to pay if it's of any value to you. Judging from your deep question it seems to be of some higher value for you.

Obligatory I Am Not A Lawyer.

Are you violating the legal clauses of the GPL? Probably not. ATI and nVidia do this sort of thing with their graphics drivers for Linux. However, it's important to note that Linux is GPLv2; this may have changed with GPLv3.

Are you violating the spirit of the GPL? Yes, and judging from the way your question was written, you already knew this.

A good rule of thumb is: if you're wondering whether or not you're violating the spirit of GPL, then you probably are.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!