Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Sony PlayStation (Games) The Courts Games Your Rights Online

Sony Lawsuits Target PS3 Jailbreak Authors 205

StikyPad writes "PS3News is reporting that Sony's latest legal salvo is targeting the creators of PS JailBreak, PSFreedom and PSGroove-related PS3 hacks, citing numerous court documents for those interested. From one of the documents: 'Having considered the Motion for Expedited Discovery of Plaintiff Sony Computer Entertainment America LLC (oeSCEA) [...] the Court hereby grants SCEA's Motion. IT IS HEREBY ORDERED that [...] SCEA has leave to serve similarly targeted subpoenas or deposition notices to any other third party who SCEA learns may be involved in the distribution or sale of the oePS Jailbreak software, known as, for example, "PSGroove," "OpenPSJailbreak," and "PSFreedom," or who may have knowledge of the distribution or sale of this software.'"
This discussion has been archived. No new comments can be posted.

Sony Lawsuits Target PS3 Jailbreak Authors

Comments Filter:
  • by DragonWriter ( 970822 ) on Tuesday September 28, 2010 @07:11PM (#33729426)

    Wow - using an SDK is piracy?

    Insofar as "piracy" is a common, if somewhat informal, term for acts which violate copyright law, sure. At least, it is if the SDK is protected by copyright, if the work you create is a derivative work under copyright law, and you have neither a license to use the SDK for the purpose nor the protection of an applicable exception to copyright law.

    While, absent litigation on the specific cases, there's may be some room for debate, I'd expect that most uses of a leaked Sony SDK to create homebrew PS3 software, and the copying and distribution of such software after it was created, be "piracy".

  • by Schadrach ( 1042952 ) on Tuesday September 28, 2010 @07:25PM (#33729526)

    The jailbreak itself doesn't use Sony's SDK. Pretty much all currently available homebrew (except maybe PSPong?) does use it however, since there isn't a stable open alternative...yet. Building a complete, mature, and stable SDK for a newly accessible system in, what, a month? is frankly an unreasonable demand.

    Sony should be driving legal action to stop the current PSJailbreak scene, but they shouldn't be targeting the creators of PSGroove, PSFreedom, or OpenPSJailbreak -- they should be attacking the people who have released actual homebrew to date using the Sony SDK (which is, admittedly, basically all of it so far and includes the original creators of the PSJailbreak hack). That would protect their copyrights while also encouraging the creation of an open SDK as an alternative to the leaked Sony SDK.

  • by Schadrach ( 1042952 ) on Tuesday September 28, 2010 @07:30PM (#33729560)

    The open source clones actually specifically disable the "piracy" function, by blocking bluray dvd access. It's admittedly not hard by any means to re-enable it, but it's disabled the way it is for a reason -- they haven't found a way to re-enable or reinstall Other OS yet, and the only "piracy" functionality really left after their alteration is "can run unsigned code."

    They should crack down on the github branches that re-enable the piracy functionality, and on the so-called "hermes payload" which is an altered payload with more advanced piracy functionality.

  • by marcansoft ( 727665 ) <hector AT marcansoft DOT com> on Tuesday September 28, 2010 @07:40PM (#33729638) Homepage

    The problem is that all of the code is still there and working, they just changed a single string to subtly break it. Right, this "does the job", but it makes it so ridiculously easy to reenable that it could be considered similar to, say, openly selling a game console cheat device that just happens to enable loading copies if you hit the right button combination, load the right hacked configuration file, or enter the right magic cheat code. It's still dodgy.

    And heck, I know full well that the people responsible for these open clones (at least the original PSGroove and PSFreedom authors) are perfectly capable of rewriting the code to yank out the piracy parts (and save a lot of space; for technical reasons, the payload is pretty constrained), especially seeing as it's been analyzed pretty thoroughly by now. This is why I'm advocating at least taking the (not much) time to make an independently compilable reimplementation that entirely does away with all of the redirect code, instead of just trivially disabling it.

  • by pecosdave ( 536896 ) * on Tuesday September 28, 2010 @08:13PM (#33729846) Homepage Journal

    I don't have a single pirated PSP game on my hacked PSP. Then again I don't know you.

  • by xMilkmanDanx ( 866344 ) on Tuesday September 28, 2010 @08:20PM (#33729870) Homepage

    you made me doubt myself and while wikipedia isn't the most reliable source, it's quick and usually in the right direction on non-controversial articles.

    Sony vs. Universal City Studios [wikipedia.org]

    While the ruling wasn't as strong as I remembered, it was about that there were non-infringing uses and not even that there were widespread use of said non-infringing uses, but just the capability of non-infringing uses.

  • by eldepeche ( 854916 ) on Wednesday September 29, 2010 @02:24AM (#33731454)

    The US Copyright Office periodically publishes an exclusive list of permitted exceptions to the DMCA's anti-circumvention provisions. Unlocking a phone is on the list. Unlocking a video game console for this purpose isn't.

    http://www.copyright.gov/1201/ [copyright.gov]

    I think you should be able to do it. The DMCA is a pile of shit. There's no good reason why uses of hardware that don't involve copyright infringement or unauthorized network access should be prohibited,

  • by marcansoft ( 727665 ) <hector AT marcansoft DOT com> on Wednesday September 29, 2010 @09:19AM (#33733486) Homepage

    Your game is not functional as an SDK in itself, so it is not derivative.

    That's not how copyright works. Derivative works don't have to be in the same class or perform the same function as the original, they just have to be derivative.

    the call to a certain function presumably always lies at the same address in flash / memory

    Static linking doesn't work like that. Your final binary includes large chunks of the SDK inside it (for typical homebrew, the SDK portions are larger than the homebrew itself). And the addresses of those chunks of code change depending on how things get linked. It's the same output that you would get if you had the full source code of the SDK libraries and used it as part of your app, except you don't get to see or change that code. The end result, nonetheless, includes a fully relocated and linked version of it.

    Their terms are wrong, and I'm surprised they are legally enforceable. Well no, I'm not surprised because judges don't need to be knowledgeable in the cases they try, and this is the US we are talking about, where the legal system is fucked up anyway.

    I don't see why there would be an issue enforcing a license which is clearly being violated if you're not an authorized developer. Doing what you want with your own hardware is/should be a right, but you don't have the right to getting a convenient SDK for it.

    Sony are simply trying to equate using something as making a derivative copy of something, which is absolute nonsense.

    They are, in fact, equivalent, in this case, as I've explained. This is how embedded SDKs work. This isn't new and applies to every console SDK and also pretty much every embedded SDK. It even applies to PC applications, just to a lesser extent: library code is usually dynamically linked, but header files are statically included, your program includes the compiler's support functions (e.g. floating point emulation where necessary, and general support routines such as function prologue and exception handling helpers). You also use the library's crt0 startup code. Again, these things come with licensing exceptions (e.g. libgcc comes with a linking exception) that we take for granted, but those licensing exceptions are still required.

    Compiling code with a development system isn't like producing a data file with an application (e.g. making a document in a word processor). Software compilation always involves copying (sometimes large) parts of code from the SDK into your app.

    Now s/piano/SDK and s/music/game ... see what I mean ?

    Using prototype.js or jQuery on your Web application means you COPY them into your website and include them via script tags.

    Now s/jQuery/SDK/ and s/Web application/game/ and s/script tags/static linking/. See what I mean?

    (ignore the fact that you can include them from external URLs; this isn't an option on consoles. You have to pretend that instead of <script src=...> you actually copy and paste the entire thing into an inline <script> block)

Any circuit design must contain at least one part which is obsolete, two parts which are unobtainable, and three parts which are still under development.

Working...