Open Source Licenses: A Deep Dive into Their Meaning

There is a plethora of posts and articles about open source licenses. However, most of them are too superficial, providing only a brief overview accompanied by the famous table of permitted actions. I personally found them to be of little use, so this blog post was born.

This post aims to provide a deeper understanding of the most common open source licenses, explaining what they mean and how they affect your project and community. We will focus on the most popular licenses, both permissive and copyleft, and we will analyze their compatibility with each other.

Why Licenses Matter

Open source software thrives because of the freedom it gives developers to use, modify, and share code. However, that freedom comes with legal frameworks called licenses.

A license is a legal document that grants permission to use, modify, and share software. It’s a contract between the software creator and the user that outlines the terms and conditions of use. Licenses are essential for open source software because they protect the rights of both the creator and the user. Therefore, licenses dictate:

Two main types dominate the open source world: permissive and copyleft licenses. Permissive licenses allow developers to use, modify, and share code with few restrictions. Copyleft licenses require developers to share their modifications under the same license.

The choice of license is crucial, not only for the presented reasons but also for the compatibility between licenses. In fact, the compatibility between licenses is essential when combining two codes into a larger work. In fact, both programs must permit that combination.

Sofware Licenses

The content of this section is partially based on the University of Pittsburgh Libraries page.

The Unlicense

The Unlicense is a public domain dedication that allows developers to freely use, modify, and share code, even in proprietary projects, with no restrictions. It is the most permissive license available and is not a copyleft license. This means that developers can use a project licensed under the Unlicense in any way they choose, without the obligation to share their modifications. The Unlicense is compatible with all other licenses we may encounter, making it ideal for projects that want to keep their code open source but allow proprietary software to link to it. In practice, the Unlicense is chosen for its simplicity and permissiveness.

Copyleft Licenses

In the following, the following phrase will be ubiquitous: include the original copyright. With this, I mean that the original copyright and license notice must be included in the derivative work. Concretely, for instance, this means that if the project you wish to redistribute or modify has a file called LICENSE or COPYING, you must retain that file (or a compatible one) in your project. If needed, you may modify it or creating a new one, ensuring that both the original copyright and license notice, as well as your own, are properly included. Usually, this lead to keep the derivative project open source too.

GNU-GPLv3      The General Public License version 3 is a strong popular copyleft license that allows developers to use, modify, and share code, even in proprietary projects, as long as they include the original copyright and license notice. The GNU-GPLv3, as a copyleft license, requires developers to share their modifications under the same license. This means that if you use a project with the GNU-GPLv3, you must share your modifications under the GNU-GPLv3. The GNU-GPLv3 is the most recent version of the GNU-GPL, and it includes provisions to protect users from (1) patent litigation and (2) tivoization. That is, the GNU-GPLv3 includes (1) an express grant of patent rights from contributors to users and (2) a prohibition on the distribution of DRM-locked devices. The compatibility with the GPL License is not guaranteed, e.g., the GNU-GPLv3 and GNU-GPLv2 are not compatible. Also, the GNU-GPLv3 is not compatible with the BSD 4-Clause License, as long as the code is distributed under the GNU-GPLv3 as we shall see later. Even when the GNU-GPLv3 is combined with the Apache License 2.0, the resulting project must be distributed under the GNU-GPLv3. In practice, one should choose it for its patent grant and tivoization provisions. The goal of the GNU-GPLv3 is to create a community where every improvement is shared openly, and it best suited for projects that want to ensure that their code remains open source.

GNU-GPLv2      The General Public License version 2 is a strong popular copyleft license that allows developers to use, modify, and share code, even in proprietary projects, as long as they include the original copyright and license notice. The GNU-GPLv2, as a copyleft license, requires developers to share their modifications under the same license. This means that if you use a project with the GNU-GPLv2, you must share your modifications under the GNU-GPLv2. The GNU-GPLv2 is the most popular version of the GNU-GPL, and unlike the "new" GNU-GPLv3, it does not include provisions to protect users from patent litigation and tivoization. Its popularity is also due to its compatibility with the MIT License, the BSD 3-Clause License, and the Apache License 2.0, with some caveats as we shall see later. In practice, one should choose it for its compatibility with other licenses. Exactly as the GNU-GPLv3, the goal of the GNU-GPLv2 is to create a community where every improvement is shared openly, and it best suited for projects that want to ensure that their code remains open source.

GNU-LGPL      The Lesser General Public License is a weak popular copyleft license that allows developers to use, modify, and share code, even in proprietary projects, as long as they include the original copyright and license notice. The GNU-LGPL, as a copyleft license, requires developers to share their modifications under the same license. This means that if you use a project with the GNU-LGPL, you must share your modifications under the GNU-LGPL. The GNU-LGPL is weaker than the GNU-GPL, and it is usually used for libraries and frameworks. In fact, it allows proprietary software to link to the library while keeping modifications to the library itself open. The compatibility is allowed with all the copyleft and permissive licenses we will encounter. In practice, it is ideal for libraries or frameworks meant to be widely adopted without imposing the GPL on the entire project. It is also a good choice for projects that want to ensure that their code remains open source, but they want to allow proprietary software to link to it.

MPL 2.0      The Mozilla Public License version 2.0 is a weak file-level popular copyleft license that allows developers to use, modify, and share code, even in proprietary projects, as long as they include the original copyright and license notice. The MPL 2.0, as a copyleft license, requires developers to share their modifications under the same license. This means that if you use a project with the MPL 2.0, you must share your modifications under the MPL 2.0. The MPL 2.0 is weaker than the GNU-GPL, and being a file-level copyleft license only requires that modified files are open source. This is the first license we encounter that allows developers to keep some files proprietary (closed source) while keeping the rest open source. The compatibility is allowed with all the permissive licenses but not with the GNU-GPL. In practice, it is ideal for projects that want to ensure that their code remains open source, but they want to keep some files proprietary.

EPL 2.0      The Eclipse Public License version 2.0 is a weak file-level popular copyleft license that allows developers to use, modify, and share code, even in proprietary projects, as long as they include the original copyright and license notice. The EPL 2.0, as a copyleft license, requires developers to share their modifications under the same license. This means that if you use a project with the EPL 2.0, you must share your modifications under the EPL 2.0. The EPL 2.0 is similar to the MPL 2.0, but it is more focused on Java projects. The compatibility is allowed with all the permissive licenses but not with the GNU-GPL. In practice, it is ideal for Java projects that want to ensure that their code remains open source, but they want to keep some files proprietary.

Permissive Licenses

In the following, the following phrase will be ubiquitous: include the original copyright notice somewhere. With this, unlike the copyleft licenses, I mean that the original copyright notice, which is usually the header of the file, must be included in the derivative work somewhere. Concretely, this means that if the project you wish to redistribute or modify has a file called LICENSE or COPYING, you must retain the original copyright notice in your project. If needed, you may modify it or creating a new one, ensuring that both the original copyright notice and your own are properly included. Of paramount importance is the fact that the permissive licenses do not require that the derivative work is open source and that the original license is retained.

MIT License      The Massachusetts Institute of Technology License is probably the most popular permissive license. It allows developers to use, modify, and share code, even in proprietary project, as long as they include the original copyright notice somewhere. The software is provided "as is", without warranty of any kind. In practice, the MIT License is a great choice for projects where you want maximum adoptation with minimal legal hassle, allowing both open source and proprietary use.

BSD 4-Clause License      The Berkeley Software Distribution 4-Clause License, also known as the Original BSD License, is a permissive license that allows developers to use, modify, and share code, even in proprietary projects, as long as they include the original copyright notice somewhere. The main difference between the BSD 4-Clause License and all the other BSD licenses is the advertising clause. The advertising clause states that: "All advertising materials mentioning features or use of this software must display the following acknowledgment: This product includes software developed by the copyright holder." It means, that if you use a project with the BSD 4-Clause License, you must acknowledge the original author in your advertising materials. Because of this clause, the BSD 4-Clause License is not as popular as the MIT License and it is not compatible with the GPL License. In practice, this is not ubiquitous, and one should choose it for its advertising clause.

BSD 3-Clause License      The Berkeley Software Distribution 3-Clause License, also known as the New BSD License, is a permissive license that allows developers to use, modify, and share code, even in proprietary projects, as long as they include the original copyright notice somewhere. The BSD 3-Clause License, unlike the BSD 4-Clause License, does not have the advertising clause. This makes the BSD 3-Clause License more popular than the BSD 4-Clause License and compatible with the GPL License. The non-endorsement clause is kept, as in the BSD 4-Clause License, and it states that: "Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission." In practice, one should choose it for its non-endorsement clause and for its compatibility with the GPL License.

BSD 2-Clause License      The Berkeley Software Distribution 2-Clause License, also known as the FreeBSD License, is a permissive license that allows developers to use, modify, and share code, even in proprietary projects, as long as they include the original copyright and license notice. The BSD 2-Clause License, unlike the other BSD licenses, does not have the advertising clause and the non-endorsement clause. This makes the BSD 2-Clause License the most popular BSD license and compatible with the GPL License. In practice, it is very similar to the MIT License, and one should choose it over the MIT License for its more verbosity that explicitly reiterates the same condition used for source code distribution for binary distribution.

Apache License 2.0      The Apache License 2.0 is a permissive license that allows developers to use, modify, and share code, even in proprietary projects, as long as they include the original copyright notice somewhere. The Apache License 2.0 is similar to the MIT License, but it includes an express grant of patent rights from contributors to users. This means that if you use a project with the Apache License 2.0, you are granted a license to any patents that the contributors hold that cover the code. The Apache License 2.0 introduces this aspecific clause to protect users from patent litigation. The compatibility with the GPL License is not guaranteed, i.e., the Apache License 2.0 can be included in a GPL project as long as the resulting project is distributed under the GPL License, the vice versa is not true. In practice, one should choose it over the MIT License for its patent grant by keeping in mind the compatibility issues with the GPL License.

ISC License      The Internet Systems Consortium License is a permissive license that allows developers to use, modify, and share code, even in proprietary projects, as long as they include the original copyright notice somewhere. The ISC License is a simplified version of the MIT License and the FreeBSD License, with the same permissions and conditions, but with a more concise and readable text. In practice, one should choose it over the other two licenses for its simplicity and readability.

Creative Commons Licenses

The first question that comes to mind is: why are we talking about Creative Commons Licenses in a post about software licenses? The answer is simple: because they are licenses. The Creative Commons Licenses are a set of licenses that allow creators to share their work with the public under specific conditions. They are widely used for non-software projects, such as music, images, text, and datasets. The Creative Commons Licenses are not designed for software, but they can be used for it.

The content of this section is partially based on the Creative Commons Licenses page.

CC0      Creative Commons 0 is a public domain dedication that allows developers to freely use, modify, and share code, even in proprietary projects, with no restrictions. It is the most permissive license available and is not a copyleft license. This means that developers can use a project licensed under the CC0 License in any way they choose, without the obligation to share their modifications. In practice, the CC0 License is chosen for its simplicity and permissiveness.

CC-BY      Creative Commons BY Attribution is a license that allows to distibute, remix, adapt, and build upon the work, even for commercial purposes, as long as the original author is credited. In practice, the CC-BY License is chosen for its no additional restrictions besides the attribution requirement.

CC-BY-SA      Creative Commons BY Share Alike is a license that allows to distibute, remix, adapt, and build upon the work, even for commercial purposes, as long as the original author is credited and the new work is licensed under the same terms. Basically, a copyleft license. In practice, the CC-BY-SA License is chosen for its no additional restrictions besides the attribution and share alike requirements.

CC-BY-NC      Creative Commons BY Non Commercial is a license that allows to distibute, remix, adapt, and build upon the work, as long as the original author is credited and the new work cannot be used for commercial purposes. In practice, the CC-BY-NC License is chosen for its no additional restrictions besides the attribution and non commercial requirements.

CC-BY-NC-SA      Creative Commons BY Non Commercial Share Alike is a license that allows to distibute, remix, adapt, and build upon the work, as long as the original author is credited, the new work cannot be used for commercial purposes, and the new work is licensed under the same terms. Basically, a copyleft license. In practice, the CC-BY-NC-SA License is chosen for its no additional restrictions besides the attribution, non commercial, and share alike requirements.

CC-BY-ND      Creative Commons BY No Derivatives is a license that allows to distibute the work, even for commercial purposes, as long as the original author is credited and the work is not modified. In practice, the CC-BY-ND License is chosen for its no additional restrictions besides the attribution and no derivatives requirements.

CC-BY-NC-ND      Creative Commons BY Non Commercial No Derivatives is a license that allows to distibute the work, as long as the original author is credited, the work cannot be used for commercial purposes, and the work is not modified. In practice, the CC-BY-NC-ND License is chosen for its no additional restrictions besides the attribution, non commercial, and no derivatives requirements.

Conclusion

I hope you enjoyed this article. If you have any questions or suggestions, please contact me.