1

CLAs are not for open source, use a Developer Certificate of Origin

 2 years ago
source link: https://devlog.hexops.com/2021/cla-not-for-open-source-use-a-developer-certificate-of-origin
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

CLAs are not for open source, use a Developer Certificate of Origin

Jul 1, 2021 • Stephen Gutekanst • licenses,, foss

Startups trying to embrace open source today readily adopt Contributor License Agreements (CLAs) as mandatory requirements for contributing. This is not in the spirit of OSS, and you should use a Developer Certificates of Origin (DCO) instead.

Update: 2021-07-01 5:46pm MST

A professional lawyer I look up to has rebuked this article and stated it contains worrisome amounts of misinformation. I encourage reading that thread, and also the article he has written instead.

Why do we need either? An imaginary tale of emulators

Let’s say you work on a Playstation emulator. Someone who finds your work interesting begins sending you contributions on GitHub.

Unbeknownst to you, that person actually works at Sony. They didn’t realize this, but their contributions in their spare time are not owned by them and Sony’s lawyers now want to sue you for using their proprietary, patented technology.

If you didn’t get a written statement from that person saying they owned those contributions, and actually intended to release them under your open source license terms - then you could indeed be found in the wrong!

Now, you might want to argue that the mere act of sending a pull request meant implicitly that the author intended to do that, but realize that is an untested legal ground. We don’t know how a court would rule in that case.

This is one of the problems that CLAs and DCOs are used to solve: it makes that agreement explicit.

Why CLAs are terrible for open source

If you’re contributing under a CLA, you are more frequently ‘giving the company your code’ not ‘releasing it as open source’.

CLAs are arbitrary legal agreements drafted by lawyers. They can contain absolutely anything, and often assign ownership of your change fully to the company to do with as they please, including relicensing it under different terms.

Eric S. Raymond, Co-founder of the Open Source Initiative, stated CLAs are harmful in the Linux Journal.

Why a Developer Certificate of Origin is better

The Developer Certificate of Origin (DCO) was created for the Linux kernel.

It’s an incredibly simple, consistent agreement (unlike CLAs!) that simply says:

  1. You have the right to submit the contribution under the open source license of the project.
  2. You agree it can and will be licensed under the open source license of the project.
  3. You agree the contribution will be shared as open source.

You can read the full text here: https://developercertificate.org

It’s not an arbitrary legal agreement. It doesn’t change between projects. It doesn’t give a company full ownership over your change.

Who uses a Developer Certificate of Origin (DCO) instead of a CLA?

Using a DCO for your project is easy

There exists a GitHub check which verifies contributors have added a line at the end of their commit message confirming they agree to the DCO:

My change…

Signed-off-by: Random J Developer [email protected]

And git even has an -s signing option built in to write this signed-off-by line for you:

git commit -s -m 'My change...'

It is that easy!

Git commit hook

You can even add a Git commit hook to your repository in a hooks/commit-msg file like this and contributors can easily install it after running git clone via:

git config core.hooksPath hooks

So if you forget to sign off on your commit, it’ll tell you the exact Git commands to fix it:

Your commit message is not signed off with the DCO.

Please read and agree to the DCO: https://developercertificate.org/

Hint: Use 'git commit -s' flag to sign your commits

Hint: Use 'git commit -seF .git/COMMIT_EDITMSG' to recover your commit message and sign.

Be sure to choose a license with patent and IP protection

One thing to note is that DCOs just say a change was made in good faith under the terms of the license.

If the project’s license does not explicitly grant you the ability to use patents/IP surrounding what that code does, then you do not have explicit permission to use that code - even if it is under an open-source license. However, you could argue that the author meant to implicitly grant this permission by nature of contributing it under an open source license. This has, to date, never been tried in a court and thus there is no legal precedence either way.

Licenses are another topic entirely, and you should carefully consider the options available to you, but this is why Hexops dual-licenses all code under both the MIT and Apache licenses.

MIT is popular as it is very short and simple, while Apache has an explicit patent grant. The consumer of the code gets to choose which license they prefer.

Conclusion

  • Please use DCOs, not CLAs.
  • CLAs are harmful for the open-source community.
  • Not using a DCO is potentially risky (for users of the code too!)
  • Not using a license that has an explicit patent grant is potentially risky (for users of the code too!)

In my view, a DCO and dual-licensing under MIT + Apache-2.0 licenses grants users and contributors to an open source project the most freedom and guarantees.

Disclaimer: I am not a lawyer, just a spirited advocate. This is not legal advice. Consult a legal professional for advice.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK