Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
Posted Nov 16, 2024 22:08 UTC (Sat) by dvdeug (guest, #10998)In reply to: Is the GPL actually viral across dynamic linking? by quotemstr
Parent article: Two approaches to tightening restrictions on loadable modules
I'm sure that NYKevin is right in saying
>It strikes me as rather implausible, given this framework, that a court would issue a bright-line ruling about whether or not dynamic linking is copyright infringement in all scenarios. The far more plausible answer is a very complicated "it depends."
Then what? Java is a bright line case, as it's a clear API for external use and Java puts the two parts as separate as possible. Many C and C++ libraries are going to embed part of themselves in the binary in the form of complex macros and templates. You can't distribute the binary without distributing part of the library.
It's frustrating that people want to tear down this ability of Free licenses. This is not a problem for commercially licensed software, in most cases. You'd have to find a library that's already going to be on a user's system and use it to distribute software linked to a commercial library. Even then, the commercial software owners usually have licenses you agreed to to install the library and dev files on the development machine. So it's the Free software people who don't want to force everyone to agree to a license, who give away the software for free, that people want to take advantage of.
> So why should anyone think there's anything legally or socially wrong with modules marking themselves as GPL for symbol resolution purposes while not being licensed under the GPL themselves?
I certainly think there's something socially wrong with taking someone's gift and ignoring the terms under which it was given. If you want a system where you can load any modules, use a BSD kernel (without any GPL modules, since there are a few of those). Certainly don't use MacOS, since Apple uses cryptographically secure measures to prevent random modules from being loaded in the kernel, and doesn't give that power to just everyone. (I think Windows is the same way, but I'm not sure.) If the creators of a GPL kernel label some items as an external API for anyone's use, and other items as GPL hooks for functionally internal code loaded externally, respect that.
Posted Nov 17, 2024 12:31 UTC (Sun)
by Wol (subscriber, #4433)
[Link] (27 responses)
> t strikes me as rather implausible, given this framework, that a court would issue a bright-line ruling about whether or not dynamic linking is copyright infringement in all scenarios. The far more plausible answer is a very complicated "it depends."
Personally, I think a court *would* issue a bright-line ruling "dynamic linking is NOT copyright infringement". This is where the use of the correct words is extremely important!
"2. Basic Permissions.
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law."
Dynamic linking occurs when you run the program! The GPL gives you "unlimited permission" to run the program!
So the question becomes "does the BSD version of the readline headers infringe the copyright of the GPL readline headers". Nothing to do (legally) with dynamic linking, at all!
Which is, of course, why this example is so complicated :-) And also when the FSF wrote the (L)GPL, they recommended the use of LGPL in general for libraries, otherwise people would use the proprietary/permissively licenced libraries to write code, and end-users wouldn't bother swapping them for the GPL versions. Especially if, as very likely, the software authors would close bugs with "use the same library as us".
Cheers,
Posted Nov 17, 2024 20:15 UTC (Sun)
by dvdeug (guest, #10998)
[Link] (21 responses)
If you're being pedantic, a court would never issue that ruling, and would never be asked to rule on the question.
> So the question becomes "does the BSD version of the readline headers infringe the copyright of the GPL readline headers". Nothing to do (legally) with dynamic linking, at all!
No. This whole article is about the kernel, not readline. Use the correct words. One question is, is code that is written to function as part of a program that is dynamically linked to the program automatically not a derivative work? I'm sure the court would say no. Then we get all the discussion about external module APIs, where the lawyers might argue that an API marked GPL is not an external module API, because it's clearly marked as only be usable by internal modules.
Note that the deep issue here with "dynamic linking is NOT copyright infringement" is that a Free program can always be rewritten into the form of a dynamic library, or to accept the new code as a dynamic library. At that extreme, the GPL becomes virtually meaningless.
Posted Nov 17, 2024 20:30 UTC (Sun)
by quotemstr (subscriber, #45331)
[Link] (1 responses)
Posted Nov 19, 2024 1:32 UTC (Tue)
by dvdeug (guest, #10998)
[Link]
I think the the court would at least acknowledge that there was an API for everyone and certain symbols that were only designed to be accessible to modules that could be part of the kernel.
Posted Nov 17, 2024 20:43 UTC (Sun)
by Wol (subscriber, #4433)
[Link] (18 responses)
But that linking is still done by the END USER, so as per the GPL it is NOT COPYRIGHT INFRINGEMENT.
As was debated in the Google/Oracle case, the issue is "Can you copyright an API?" In order to convert a program to a dynamic library you need to have an API, otherwise you cannot link it. If you modify a GPL program to *create* an API, then the argument is that the API is a derivative of the GPL program and therefore covered by the GPL. In the nVidia case the API was clearly created for other programs to call the driver, so the API is clearly not a derivative (that's why nVidia don't distribute the kernel and driver together - it avoids any possible argument).
In the Java case, it's estoppel and all sorts of wotnot - the API was explicitly intended to be freely used.
In the readline case, it's very likely that the API is not copyrightable.
But as far as dynamic linking goes, unless you can come up with a scenario where it is not the end user who actually links the program to the library (or loads the module into the kernel), then as per the GPL itself dynamic linking CANNOT be a GPL violation.
> At that extreme, the GPL becomes virtually meaningless.
As far as I'm concerned, it is. If I GPL my code, downstream cannot distribute it as object without binary, but if their code calls mine, they can use any licence they like ... BECAUSE it's the end user that does the act of linking!
Cheers,
Posted Nov 17, 2024 21:49 UTC (Sun)
by quotemstr (subscriber, #45331)
[Link] (11 responses)
So what if I statically link my proprietary program to a GPLed library? When I distribute the resulting binary, I'm independently distributing my own code (which I have the right to do) and distributing the GPLed library (which I have the right to do), and that the two are combined into a single ELF file is irrelevant. If I instead put my dynamically linked binary and a .so in a zip file and redistribute that instead of a statically linked binary, have I done something meaningfully different? At what point exactly does mere linking have legal significance?
Keep in mind that the normative text of the license is agnostic with respect to linking technology and that this whole distinction doesn't apply to languages like Java and Python that use entirely different linking methodologies. If I jarjar together a GPLed class file and a proprietary one, what would the result be?
Given all the open questions and contradictions, I have a hard time seeing how the FSF maximalist interpretation can be correct. I wouldn't feel particularly afraid linking, statically or not, a GPL incompatible program to readline.
Posted Nov 17, 2024 23:19 UTC (Sun)
by khim (subscriber, #9252)
[Link]
When you are distribution something which includes both GPL code and non-GPL code. I still couldn't understand why people are discussing ununteresing and entirely irrelevant case where non-GPL code is distribution without GPL code. It's your you code, it can be distributed on any terms that you may ever invent. As long as nVidia drivers are distributed as something that is not compiled and they are not distributed together with Linux kernel, itself – there are no issues. But when you distribute them together… it's different story Why does it even matter? Because copyright was originally developed for books. And if you plan to distribute two works from two different authors you need permissions from all three entities: Alice, Bob, and Carol (anthology compiler: yes, Carol gets separate copyright and can write separate license, too). Now, if Alice doesn't want to say something secret to Bob (as she usually does), but, surprisingly, doesn't even want to be publishing under the same cover as Bob (because they had huge fight and don't want to see each other ever again)… then Carol couldn't publish such book if licenses that Alice and Bob have given Carol are precisely such license that demands that they would be only ever published in separate books. And that is where linking (static or dynamic) becomes important: GPL is designed to disallow proprietary extensions and demands that if you want something then the whole work should be licensed on GPLv2 terms: These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. As you can see that question that Wol wants to be bright-lined… it's already answered by GPL itself: MIT Julia REPL module, proprietary nVidia module, ZFS with it's anything-by-GPL license… as long as they are distributed without GPL components… GPL gives them quite explicit right to use some other license. It would have, probably, been illegal for GPL to try to restrict such distribution – but it doesn't even try: if you are distributing something that can be used with GPLed component but doesn't include that GPLed component… it's all fair game and you can use anything you want. You only have the right to distribute GPL library if you provide source for “the whole work” on the GPL-compatible terms. Which, of course, immediately raises the question of what is “the whole work”. Stallman famously made Steve Jobs to do that with NEXT Objective C compiler. And there were other similar cases. Nothing ever reached the court, but I don't think anyone would say that these two pieces are not parts “of the whole work” is they are mixed together so tightly that it's essentially impossible to pry them apart. Static linking is explicitly a tool that creates one, single, “whole work” from independent components, you would have to argue that people that invented it were idiots, to claim that what you are distributing is not “the whole work”. These the questions, aren't they? At what point border between your program and dynamic library becomes thick enough for someone to credibly claim that no, these two things are no longer part of “the whole work”, these are two independent pieces, usable without each other? I would suspect that it would strongly depend on the type of API that your library uses. E.g. if you library is separate dinamic library, but it doesn't even expose any symbols, but instead you have tool that creates offsets of the interesting data structures and these are, then, used in C64-era PEEK/POKE interface that directly embeds knowledge about layout of your library into some proprietary program and where any minor change to the library would render said program usable… I don't think anyone would say that these are still separate works. But if your API is very simple and non-invasive (e.g. if you library just accepts text strings that it interprets and returns text strings as it's output and doesn't need to touch anything in your program) – then it would be separate work, definitely. It's not materially different from simple execution of external program. And that is where all these symbols, marks and everything start to become important: when you plan to distribute both GPLv2-licensed kernel and some modules simultaneously… IOW: precisely in a situation of Tuxedo Computers laptop!
Posted Nov 18, 2024 12:18 UTC (Mon)
by paulj (subscriber, #341)
[Link] (9 responses)
I think this statement is largely correct, but not for the reason you think it is.
I've heard different things from different lawyers, but the one thing I do not hear from them is any kind of reasoning that rests on the technical details of how two works are "linked". The opinions rest on legal details and interpretations. Approaching these questions like a programmer, where you think that some programmer meaningful boundary must of itself be meaningful to lawyers is... not at all safe. The lawyers do not care a jot.
> I have a hard time seeing how the FSF maximalist interpretation can be correct.
Here's another funny thing, the most "maximalist" interpretations I've heard from lawyers, are from corporate counsel at large tech companies - who aren't per se fans of the GPL, and do not really have an interest (as a corporate overall) to argue for the GPL being super strong. This is why the large corporates I'm familiar with generally have very strict rules on avoiding incorporating GPL code into their code-bases - and/or quite extensive review processes to get permission to use GPL code. You can see this in the behaviour in a number of large tech corporates, where they have rewritten functionality so as to be able to remove GPL code.
Conversely, some of the /least/ maximalist interpretations I have heard argued, have been from lawyers firmly in the Free Software world. Including very well-known ones.
Posted Nov 19, 2024 0:05 UTC (Tue)
by NYKevin (subscriber, #129325)
[Link] (8 responses)
While the corporation's overall interest may prefer a weak GPL, the interests of the corporate lawyers are much more straightforward: "don't get sued." This is also why big companies (such as my employer[1]) dislike the AGPL: They feel that the uncertainty around the license's boundaries is not worth any potential upside in terms of available software. While I have read and sympathize with Drew DeVault's response[2] to this, the reality is that lawyers are in the business of risk mitigation, not FOSS maximalism. If there is any reasonable likelihood that the license can be interpreted in a given way, the lawyers have to consider the possible consequences of that interpretation.
I also feel obligated to point out that, on a completely literal reading of AGPL 3.0 §13, you can violate the license just by writing code that the license disagrees with ("[...] if you modify the Program, your modified version must [...]"), even if that code is never compiled or executed. I find it difficult to imagine how a large tech company is supposed to comply with that extremely strict interpretation of the license, unless we're to presume the company exercises pervasive oversight over every single version of the code that is ever created for any purpose, including local debugging and experimentation. Drew would presumably argue that I'm being unfair and overly literal, but again this is a case of risk mitigation. The license does not *say* that there is an exception for local debugging and experimentation, nor an exception for code that is never exposed to external users, so as far as these lawyers are concerned, an unmentioned exception is no exception at all.
[1]: https://opensource.google/documentation/reference/using/a...
Posted Nov 19, 2024 21:31 UTC (Tue)
by nix (subscriber, #2304)
[Link] (7 responses)
I would guess an assumption that purely local stuff doesn't count as distribution or copying, and thus the license never kicks in anyway. This is, of course, not true in jurisdictions such as the UK, where *all* copies require licensing, even temporary copies in memory, and there is no concept of fair use -- but I think it safe to say that this sort of stuff is utter nonsense that is impossible to comply with, and can and must be ignored, given that questions have been asked in Parliament back in the 2000s to find out how many MPs had committed an act of copyright violation on account of such terms within the last week without realising it (I think at the time it was through using an iPod and/or mobile phone music playback?) and, yes, a great many of them had, including many members of the then cabinet. (Of course, nothing was done.)
Posted Nov 20, 2024 2:22 UTC (Wed)
by NYKevin (subscriber, #129325)
[Link] (4 responses)
Any sentence starting with "I would guess" will cause corporate lawyers to run screaming in the other direction. They don't want to guess. They want the license to make specific assurances.
As far as US law is concerned, there's nothing in the law that gives a blanket exemption for distribution or copying. But it's worse than that. 17 USC 117 contains a set of narrow exceptions for:
* Copying a binary into RAM in order to execute it.
If you need a specific exception in the law for activities as benign as all those, it is obvious that you also need an exception for any other purely local copying (which does not otherwise fall within the scope of an exception).
Posted Nov 20, 2024 12:20 UTC (Wed)
by Wol (subscriber, #4433)
[Link] (2 responses)
I can't imagine an individual suing, but Trading Standards would certainly be interested ... selling software would pretty much certainly include an implied licence to be able to use it, no?
Cheers,
Posted Nov 20, 2024 12:26 UTC (Wed)
by nix (subscriber, #2304)
[Link] (1 responses)
Posted Nov 20, 2024 15:41 UTC (Wed)
by Wol (subscriber, #4433)
[Link]
I would have thought the reason everyone trying it in the UK settled before the case went anywhere, would be because the victim screamed "Scam!" and plaintiff decided discretion was the better part of valour.
As a private individual, I'd demand my money back under SOGA, and while that doesn't apply to businesses I can't imagine a judge looking favourably upon similar shenanigans against a business.
Cheers,
Posted Nov 20, 2024 12:24 UTC (Wed)
by nix (subscriber, #2304)
[Link]
*I* would guess because I'm not psychic nor a lawyer and I'm not writing for corporate lawyers (unless in fact this is a forum full of corporate lawyers and I never noticed).
Posted Nov 20, 2024 12:14 UTC (Wed)
by Wol (subscriber, #4433)
[Link] (1 responses)
Note that the GPL explicitly covers this - that section 2 I quoted gives the *end user* a licence to do whatever they like. So the GPL at least, *does* kick in - it says "you can ignore me and do what you like". (Until you try to "convey propagate or distribute" ...)
Cheers,
Posted Nov 20, 2024 12:27 UTC (Wed)
by nix (subscriber, #2304)
[Link]
Posted Nov 19, 2024 1:25 UTC (Tue)
by dvdeug (guest, #10998)
[Link] (5 responses)
This is irrelevant. You can not distribute a sequel to someone else's book, because it's a derivative work. What makes code legally a derivative work of other code? There hasn't been a lot of case law about it, but I'd certainly argue that new code that intricately connects to data structures and functions in old code, in a way that's very distinctive, would be a derivative work.
> As far as I'm concerned, it is. If I GPL my code, downstream cannot distribute it as object without binary, but if their code calls mine, they can use any licence they like ... BECAUSE it's the end user that does the act of linking!
But that's your code. The idea that proprietary software does and can block any such thing, often going to the extents of having end users sign huge EULAs, but free software can't restrict itself being used as part of another non-free program.
Posted Nov 19, 2024 9:23 UTC (Tue)
by Wol (subscriber, #4433)
[Link] (4 responses)
> This is irrelevant.
It's actually very relevant. It means dynamic linking *itself* CANNOT be a copyright infringement.
> You can not distribute a sequel to someone else's book, because it's a derivative work. What makes code legally a derivative work of other code? There hasn't been a lot of case law about it, but I'd certainly argue that new code that intricately connects to data structures and functions in old code, in a way that's very distinctive, would be a derivative work.
And THIS is the point. Is your work a derivative of the other work! Nothing to do with dynamic linking at all!
Or are we both arguing the same thing without realising it?
Cheers,
Posted Nov 19, 2024 21:35 UTC (Tue)
by nix (subscriber, #2304)
[Link] (3 responses)
It's defined by the law, and more generally defined by courts when cases go to court: a license only says what happens if something *has been decided to be* a derivative work of something covered by that license. (In the UK it is almost entirely defined by reference to precedent: Parliament hasn't ruled on this stuff much. In the US I believe things are quite different: US law is much more about fiddly nailing-down-of-tiny-details, where UK law goes in for broad swaths and letting courts decide the fine details in ways that make sense at the time, and then letting precedent force consistency in future.)
Posted Nov 19, 2024 22:21 UTC (Tue)
by Wol (subscriber, #4433)
[Link]
Where did I say (or even imply) that? What is a derivative work is, as you say, a matter of (vague) law.
Go back to what I *did* say - that "dynamic linking can NOT be a GPL copyright violation, because the GPL *explicitly* permits it" (unless someone can come up with a scenario where the linking does not happen on the end user's machine - I can't!).
Distributing a program that abuses a GPL API can be a copyright violation, but that's not down to the end user, and that's not dynamic linking, and it's not a violation if the "abuser" does it on their own machine ...
Cheers,
Posted Nov 20, 2024 2:15 UTC (Wed)
by NYKevin (subscriber, #129325)
[Link] (1 responses)
You're thinking of European law. US (statutory) law absolutely does not nail down the fiddly little details of derivative works, it just gives a one-paragraph definition and lets the courts work it out:
> A “derivative work” is a work based upon one or more preexisting works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which a work may be recast, transformed, or adapted. A work consisting of editorial revisions, annotations, elaborations, or other modifications which, as a whole, represent an original work of authorship, is a “derivative work”.
(17 USC 101)
Posted Nov 20, 2024 12:28 UTC (Wed)
by nix (subscriber, #2304)
[Link]
Posted Nov 18, 2024 12:34 UTC (Mon)
by paulj (subscriber, #341)
[Link] (4 responses)
If I write a work of fiction, which builds on a universe you created in a work of fiction you wrote, such that to properly understand my work of fiction the reader really needs to have read your work of fiction so as to understand the characters, may I distribute my work of fiction without any regard for your copyright in your work of fiction? (I never distribute your work, and the "combination" of my work with yours only ever happens "dynamically" at "readtime" in the readers head).
If I write a programme, that builds on a body of code you created, such that to understand the function of my programme, the programmer needs to understand the basic, visible function of the code underlying whatever APIs it exposes; and such that the computer in order to be able to interpret my code and make my code function needs to also have your code present, may I distribute my work without any refgard for your copyright in your work? (I never distributed your work, and the combination of my work with yours only ever happens dynamically at runtime - ignoring entirely the matter of compilation and whether copyright vests in API definitions).
?
Posted Nov 18, 2024 12:39 UTC (Mon)
by pizza (subscriber, #46)
[Link]
Unfortunately, in the US, "API definitions" are copyrightable. Use of them _may_ be considered fair use though.
(Thanks, Oracle...)
Posted Nov 18, 2024 16:43 UTC (Mon)
by Wol (subscriber, #4433)
[Link] (1 responses)
That's often called FanFic, and/or "Classic Literature".
As a fan of pTerry, he often did that a lot. To truly understand Maskerade, you need to know Phantom of the Opera. To truly understand Wytches Abroad, you need to know Hamlet. As far as other authors / composers go, West Side Story may be a nice musical, but would you get the deeper meaning without knowing Romeo and Juliet? I love Miss Saigon, but much more is understood when you know Madame Butterfly. Etc etc.
The problem is, the answer is always "it depends". And it always helps to show that the work you depend on, itself depends on even deeper works. Both Hogwarts and Unseen University have a heavy dependence on works like the "Billy Bunter" books, and Greyfriars, and stuff like that. And as Ecclesiastes says, "there is nothing new under the sun", it shouldn't be that hard quite often to come up with evidence that copyright in stories isn't as obvious as people like to pretend ...
So why should programming be any different?
Cheers,
Posted Dec 6, 2024 1:33 UTC (Fri)
by jjs (guest, #10315)
[Link]
I'm also aware that Phantom of the Opera, Hamlet, Romeo and Juliet, and Madam Butterfly are out of copyright. You can find legal copies of them on Project Gutenberg. So Pratchet's fine works are NOT violations of copyright for, among other reasons, the fact there's no copyright to violate. It also means the examples don't really throw any light on whether or not his writings would have been copyright violations IF those works were still under copyright. Courts (at least in the US) tend to go with the simplest conclusion to reach, and (traditionally) purposefully did NOT speculate on other reasoning that were irrelevant (i.e. in this case, whether or not it would have been a violation IF the preceding work were copyrighted), in order to avoid setting precedent.
> That's often called FanFic, and/or "Classic Literature".
And fanfic can certainly be violation of copyright. Try writing a Star Wars novel and publishing it without getting Disney (previously LucasFilms) license. Desilu was very tolerant of fanfic for Star Trek (not certain about current owners).
The dividing line between "copyright violation" and "no copyright violation" in derived works (and what constitutes a derived work), from my understanding, is something that's decided on a case by case basis by the courts in the US.
Note: IANAL
Posted Nov 19, 2024 0:43 UTC (Tue)
by NYKevin (subscriber, #129325)
[Link]
This has been a serious point of controversy for at least as long as the internet has existed. You can find threads on early Usenet filled with professional and amateur authors debating this very topic. Much like the case of dynamic linking, there has as of yet been no case law. Unlike the dynamic linking case:
* There have been a few close calls, with the closest probably being The Wind Done Gone by Alice Randall. In the case regarding that book, the Eleventh Circuit found that the publisher of Gone With the Wind was not entitled to a preliminary injunction because a fair use defense likely applied, and the parties then settled out of court.
Is the GPL actually viral across dynamic linking?
Wol
Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
Wol
Is the GPL actually viral across dynamic linking?
> At what point exactly does mere linking have legal significance?
Is the GPL actually viral across dynamic linking?
TURBO.EXE
and TURBO.OVL
are not two different works, they are definitely part of the same thing!Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
[2]: https://drewdevault.com/2020/07/27/Anti-AGPL-propaganda.html
Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
* Making backup copies of software for archival purposes.
* Making copies of software "for purposes only of maintenance or repair [of the computer]." The statute does give somewhat vague definitions for those terms, and by my reading, they probably cover things like restoring from backup, reinstalling broken software, defragmenting your hard drive, etc.
Is the GPL actually viral across dynamic linking?
Wol
Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
Wol
Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
Wol
Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
Wol
Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
Wol
Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
Is the GPL actually viral across dynamic linking?
Wol
What is copyright in derived works?
Is the GPL actually viral across dynamic linking?
* A non-profit, The Organization for Transformative Works, exists, hosts a significant amount of fan fiction on the internet, retains lawyers, and is prepared to defend themselves in court if anyone ever sues them.
* In practice, nobody wants to sue the OTW because litigation is expensive, it might establish a precedent in favor of fan fiction, and it would generate a lot of negative press in the short term. Also, really egregious cases (where fair use is unlikely to work, such as when large amounts of text are copied verbatim) can be handled much more efficiently through the usual DMCA process instead of a lawsuit.