0

We know that ideas are not copyrightable (except for patent related issues), but expressions are (idea–expression dichotomy). However, after reading about clean room design, I got somewhat confused. Wikipedia states:

The term implies that the design team works in an environment that is "clean" or demonstrably uncontaminated by any knowledge of the proprietary techniques used by the competitor.

Typically, a clean-room design is done by having someone examine the system to be reimplemented and having this person write a specification. [...] The specification is then implemented by a team with no connection to the original examiners.

This description suggests that mere knowledge of copyrighted implementation details can become an issue. And therefore the clean room method was devised as a technique to circumvent this issue.

To me this implies that as soon as I read a programming book (with code samples) or open source code, my knowledge is contaminated or biased and the code that I write might infringe copyright. Is this true or did I misunderstand the clean room design principle?

2 Answers 2

9

Clean room design is intended to protect against not only copyright liability, but possible trade secret liability as well. It avoids any possibility that any part of the expression of the source work has been included in the re-implemented work, because the designers and creators of the latter work only from a specification.

There is never a legal requirement to use clean-room design. It is a strategy used to ward off possible legal action by demonstrating in advance that no unauthorized and protected elements have entered the re-implemented product.

It does not follow that someone who has learned concepts and ideas from a protected work must employ clean room principles to use that knowledge. Someone looking to sue for copyright infringement would need to show some aspect of the protected expression that had been copied. Without that there is no prima facie case to answer.

5

The clean room design strategy is not necessarily a best practice – it's a proactive defense strategy when you expect to be sued for copyright infringement. For example, if you have a company and want to reverse-engineer a competitor's functionality, a clean-room design could help minimize legal risks. Executed correctly, it makes it possible to prove that your implementation cannot be infringing.

But just because you have viewed copyrighted material doesn't imply that anything you create would be infringing. You merely have the opportunity to infringe (intentionally or unintentionally). Authors read other authors' books. Directors view other directors' films. Bands listen to other bands' records. And software developers read other developers' code. This is perfectly normal.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .