views:

279

answers:

4

I've been reviewing the contributions documentation for Google new language, and was curious about the idea of contributing a new package. It states that this should be included at the top of contributed source code:

// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

My understanding of a BSD-style license is that it essentially means that the user needs to attribute the code to you, but can do whatever else they want.

Further down it says:

If you are the copyright holder, you will need to agree to the individual contributor license agreement...

In the "individual contributor license agreement", it says that Google has patentable rights to the contributed code:

You hereby grant to Google and to recipients of software distributed by Google a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by You that are necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) with the Work to which such Contribution(s) was submitted.

To what extent does Google own any Go contributions? Do they have full rights to profit from these contributions?

+1  A: 

This is a common practice nowadays.

Effectively, through the Contributors Agreement you are sharing copyright with Google.

That means, in the end, Google has copyright over the entire codebase. This gives them the right to relicense the codebase however they want should they see fit. (Copyright owner determines license).

The primary goal of the CA is to ensure and assert that the contributor has the rights they are granting to the project (patents, copyright, etc.).

Some projects, for example, would want a patent grant, but are not interested in any copyright, as they have no intention of relicensing the project.

Mind, since the license is BSD, a copyright grant is really just a formality, because of how liberal the BSD license is in the first place.

Will Hartung
From a legal sense this is incorrect. You will continue to OWN the copyright unless and you specifically ASSIGN the copyright to Google. Google WILL NOT own ("have") copyright on the entire codebase. The aim of the CA is to ensure that Google and downstream folks have rights to use, copy and redistribute the code that you contribute.
Stephen C
+2  A: 

No, it just means that if you contribute to Google's project, Google can still do whatever they want with it.

You are the copyright holder, of course. If your code gets included into Go, you become part of The Go Authors.

Jurily
+10  A: 

To what extent does Google own any Go contributions?

You are not required to transfer copyright to Google. You still OWN the copyright.

You are not required to transfer ownership of patents to Google. You still OWN the patents.

In short Google does not OWN any IP that they didn't already own.

But you go grant Google the unlimited right to use and distribute your contributions, and you grant the right to use to downstream folks. Clause 2 covers copyrights, and clause 3 covers patent rights. Moreover you grant this as an irrevocable license (i.e. you cannot change your mind) and for free.

Do they have full rights to profit from these contributions?

There is no such a thing as a right to profit in a legal or moral sense. Hence "full rights to profit" is not a valid characterization of the rights that you currently have.

By granting Google non-exclusive, non-revocable copyright and patent licenses, your remaining rights are no longer exclusive. Google will be able to profit your contributions, but so will you. You will have reduced your scope for personal profit, but that was not ever a "right".

Stephen C
A: 

Disclaimer: I am not a lawyer

Grant of Patent License.

Means if you have a patent on something in your contribution, you allow Google to use it without worrying about IP crap.

In other words:

Patent License = Permission to use the "patented technology" (if any).

It's irrecoverable: meaning you can't change your mind later.

hasen j