vote up 6 vote down star

Is it legal to add support for a 3rd party file format in my application by reverse engineer a unencrypted binary file format from another application, and reading the contents?

flag
The question is certainly relevant to programmers. The problem is, it cannot be answered by programmers. – Jörg W Mittag Sep 23 '08 at 20:14
I second that. You absolutely have to hire an attorney to get a meaningful answer to this question. Preferably one with experience in IP and "cyber" law. – Eli Jan 29 at 19:00

7 Answers

vote up 10 vote down

Depends on your location. In the EU it is specifically permitted (article 6 EU software convention) to "reverse engineer file formats for the purpose of interoperability"

In general it's hard to prevent someone reading a file format, there have been examples where you are prohibeted from writing a file because the format contains patented technology (if software patents are allowed in your country). This was the case with GIF for a number of years.

link|flag
vote up 4 vote down

Depends on the format in question, your location, etc. And this is not "cracking", more like "reverse engineering".

Consult a lawyer, with licenses of the applications that produce the formats!

link|flag
vote up 1 vote down

IANAL, but yes, I'm pretty sure it is legal, as long as you don't circumvent some copy-protection system or something. See as an example OpenOffice being able to read Word documents.

link|flag
vote up 1 vote down

It all depends on the laws in your country and the intent behind which you are reverse engineering the file format. You need to check with an attorney/lawyer/barrister to be certain. Have you checked with the company that owns the file format to see if there is a published spec or other information that would allow you to interoperate without the need to reverse engineer?

link|flag
vote up 0 vote down

If you have to violate the terms of an EULA to do so, it is illegal. Although most states have laws expressly permitting reverse engineering, it is my understanding that that is not an 'inalienable right', but one you can waive contractually. (In other words, permitting reverse engineering does not prevent you from agreeing not to anyway.) Some jurisdictions go further, however, and explicitly state that reverse engineering is always permitted, even if a contract states otherwise.

If you live in the US, the DMCA generally prohibits reverse engineering if you have to circumvent a "copy protection technology" to do so, but it makes specific exception for cirucumventing it for the purpose of making something compatiable with the format.

Otherwise, it is probably legal. Regardless of the answer here, though, consult a lawyer.

link|flag
EULAs cannot override state or federal laws, which is why they generally say something along the lines of "except ... to the extent that applicable law expressly permits", when talking about reverse engineering. The DMCA has explicit exceptions for reverse engineering in specific situations. – Chris Upchurch Sep 23 '08 at 14:26
@Chris: If you sign a contract saying "I will not reverse engineer x", and there is a law saying "reverse engineering is allowed", you are still liable under contract law if you violate the contract. In other words, reverse engineering is not an inalienable right. – Nick Johnson Sep 23 '08 at 14:33
@Chris: You're right about DMCA exceptions, in that the DMCA says you may circumvent copy protection measures if you're reverse engineering for compatiability purposes. I'll fix the answer. – Nick Johnson Sep 23 '08 at 14:35
Depends on the country. if the law says "You may reverse engineer" and you sign a contract "You may not reverse engineer", the contract is invalid in some Countries (Germany for example). Hence most contracts contain "If one point is invalid, the contract itself stays valid". Laws > All. – Michael Stum Sep 23 '08 at 14:42
@Michael: Doesn't that mean that, in Germany, a contract couldn't restrict you from doing anything you're otherwise permitted by law to do? And wouldn't that make contracts rather pointless? – Nick Johnson Sep 23 '08 at 14:44
show 5 more comments
vote up 0 vote down

I wonder if this is covered by the DMCA in the US? As always, your best bet is to ask a lawyer.

link|flag
Title 1 of the DMCA contains some exceptions for reverse engineering in specific situations. – Chris Upchurch Sep 23 '08 at 14:26
vote up 1 vote down

ArsTechnica recently published a nice article about the legality of reverse engineering in the context of Google Chrome using undocumented behavior in windows for some of it's security protections (to achieve DEP on some versions of Windows XP, for example).

link|flag

Your Answer

Get an OpenID
or

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