vote up 8 vote down star
1

Is it allowed to use ideas from open source in closed source software?
I've met people who say to not even look at open source (GPL and LGPL were mentioned) if you write closed source software.

flag

65% accept rate

7 Answers

vote up 10 vote down check

Ideas aren't the subject of copyright; code is. As long as you don't steal the implementation, you're fine.

Patents, on the other hand...

link|flag
1  
Software patents are mainly existent in US but not in the rest of the world. – User Jun 1 at 18:11
nod I deliberately didn't wander down that avenue of discussion. – Rob Jun 1 at 18:45
vote up 3 vote down

Yes, it is allowed to use ideas from open-source software. While the exact details differed based on which license, you can sometimes not use any code from an open-source project in a closed-source project.

link|flag
vote up 1 vote down

Yes.

Then it depends what you mean by ideas... If you mean inspire yourself by looking at the software features, then ok. If you mean copying big chunks of code, you might need to double check the license.

link|flag
vote up 1 vote down

Ideas cannot be copyrighted, although they can be patented.

Nor does this apply to a large number of open source licenses. GPL and LGPL are the most likely to fall under this band, since they're widely used and there are consequences for redistributing them.

I'd think that the most likely reason is that, if your developers haven't looked at Foo Extreme or whatever the project is, you have an easy way of showing that they haven't copied something from it. The next most likely is that it is possible to copy something without consciously realizing it.

link|flag
2  
Even then, from what I remember of my patent history classes, ideas cannot be patented, only implementations. And that's where the software industry went terribly awry. – Chris Kaminski Jun 1 at 16:47
vote up 1 vote down

Like Nathaniel has already said, yes it is fine to use ideas. You may also use the code, but, and I cannot stress this enough, it depends on the licence and not all licences will allow it.

I think the reasons people are discouraged or even disallowed from looking at OSS code is to prevent the intentional or unintentional use of parts of the code in software where this will cause a breach of licence agreement. Having never worked in such an environment, its hard to say but it seems logical. Also, if its enforced that developers may not look at OSS or other projects' code, its a given that they have not been able to steal code from within.

Some licences allow the use of code in other projects, as I said above. However, this is always (that I have seen) with the condition that copyright notices and whatnot remain intact. Reading the particular licence in question is recommended for viewing the specifics.

BSD Licence.

As always, if in doubt surrounding licences and whatnot, seek legal advice to avoid doing something you might regret. :)

link|flag
vote up 0 vote down

Yes you can. As others have alluded to the code is the implementation of an idea, the rights to use them are separately assigned. The opposite is also true, you can have an open source version of a patented idea. VTK, an open source graphics package, used to have a separate part of its source tree set aside for patented algorithms (it still may, I haven't looked at it for a while).

link|flag
Using a patented technique requires some sort of license, whether or not it's open source software or not. That being said, I believe the US is the only developed country with software patents, so there's a whole lot of people who can freely use stuff that is patented in the US. – David Thornley Jun 1 at 17:12
In the US you CANNOT have an open source version of a patented method. It would infringe on that patent. – Jordan L. Walbesser Jun 2 at 20:56
I admit I don't know what the law regarding patents are Jordan, but Kitware (the US based commercial company that supports the VTK open source project) still does distribute open source versions of patented methods: vtk.org/Wiki/…. – Peter Tate Jun 3 at 0:52
vote up 0 vote down

As many have said here: yes, in many cases. If you are looking at an OSS project for ideas to use, ask yourself "why?" You may find an OSS project that has already done 80-95% of what your closed project is trying to accomplish. Why re-invent the wheel? You can benefit from what others have done. Review the project in question then tell your boss/ceo/whoever "We can save ___ hours/manmonths if we use this OSS tool instead of writing it ourselves. You could even "pay for it" by making a financial contribution. Another way to contirbute/"pay for" the OSS tool is helping the project grow. For instance, You may still need to "tweek" it a bit to get it to be a perfect fit for your company. So, if you do just be sure to at least send your additions with a brief explanation of what and why you added/changed something to the core OSS devel team for review. Rem, if you use the open/community code its only fair and good that you contribute back any improvements.

Do not worry you company's business data and processes are almost never required to be sent in. There are a few projects (like nessus) where the "data" (nasl scripts in this case) may be protected also. Those few projects has to be very carefully evaluated.

OSS fosters a cooperative community and ever-improving code-base, and can save a lot of time.

I can personally say that using OSS has really helped the last few companies I've worked for. My opinion of OSS in general has changed a lot in the past few years. In fact, at one of those companies we used both open- and close-sourced projects/tools to tailor our product for each customer's business goals. It is, of course, immensely easier, cheaper, and faster to tailor OSS, but sometimes there is a "special purpose" backend system that must be integrated into a solution.

Remember OSS is about free as in freedom too, not just free as in cost.

I hope this helps
B

link|flag

Your Answer

Get an OpenID
or

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