Slashdot Mirror


Google Is Grooming Chrome As a Game Platform

An anonymous reader writes with this snippet from Conceivably Tech: "On Friday I noticed that Google is heavily pushing New Game, a game developer conference that is focused on HTML5-based gaming content — and, of course, content that runs in web browsers. The fact that such an event already exists and that there is game content being developed in HTML5, is quite stunning by itself. However, Google also noted that a sandboxed native client (NaCl) with 3D (in addition to 2D) will be available in Chrome soon, which will allow the browser to connect to traditional C and C++ code via its integrated Pepper API."

79 of 127 comments (clear)

  1. The very sadness of it all by Anonymous Coward · · Score: 4, Funny

    I know Commander Taco used to like games, and now he's not alive to see this. Very sad.

    1. Re:The very sadness of it all by Cyko_01 · · Score: 1

      he is alive, just not an editor for slashdot anymore

    2. Re:The very sadness of it all by eexaa · · Score: 1

      he is alive, just not an editor for slashdot anymore

      that makes a fate worse than death.

    3. Re:The very sadness of it all by Anonymous Coward · · Score: 3, Funny

      On the bright side, at least he outlived Jobs by 24 hours.

    4. Re:The very sadness of it all by davester666 · · Score: 1

      Who?

      --
      Sleep your way to a whiter smile...date a dentist!
  2. Write once, run anywhere? by Uncle+Ira · · Score: 1

    So is Chrome Google's current attempt to finally cut Java out of their web application strategy?

    1. Re:Write once, run anywhere? by cgenman · · Score: 1

      HTML 5 and Javascript achieve that well. What native client gets you is SPEED.

  3. Does anyone by phantomfive · · Score: 3, Insightful

    Does anyone else see this as a giant security hole? As in, various schemes like this have been tried since the days of ActiveX, and the only reason ActiveX has the worst reputation is because it's the only one that gained widespread use?

    --
    "First they came for the slanderers and i said nothing."
    1. Re:Does anyone by obarthelemy · · Score: 1

      Yes. But, if they go for the locked ecosystem that seem to become so popular these days, they can try and solve the problem at the source.

      --
      The Cloud - because you don't care if your apps and data are up in the air.
    2. Re:Does anyone by Goaway · · Score: 1, Interesting

      I'm sure there are other people who also have not made the tiniest effort to read up on the security mechanisms of NaCl, and think the same as you.

    3. Re:Does anyone by JonySuede · · Score: 1

      There is code verification

      If there is code verification for it to succeed, you must only allows a subset of X86 to be run else you run into the halting problem. If you only allow a subset you don't get native speed, you get the speed that your subset of instructions allows.

      multiple sandbox layers

      not native speed as to sandbox you must create a vm like system.

      a secure API

      Prove it, because of the halting problem isomorphism. A hint: design your API starting from proven math using a formal notation and prove that your generated implementation is correct if the CPU is behaving according to it's specifications.

      --
      Jehovah be praised, Oracle was not selected
    4. Re:Does anyone by PCM2 · · Score: 1

      If there is code verification for it to succeed, you must only allows a subset of X86 to be run else you run into the halting problem.

      I don't think you understand the meaning of the term "code verification" in this context, or for that matter the term "halting problem."

      not native speed as to sandbox you must create a vm like system.

      Go read up on how Native Client actually works. It's not like it's a secret.

      --
      Breakfast served all day!
    5. Re:Does anyone by fidget42 · · Score: 1

      Yes. But, if they go for the locked ecosystem that seem to become so popular these days, they can try and solve the problem at the source.

      But Google is open. Why would they go from an open playing field to a locked down, curated, one?

      --
      The dogcow says "Moof!"
    6. Re:Does anyone by JonySuede · · Score: 2

      The article you pointed nacl_paper.pdf, proved my point, they limit the instruction to a subset of the full X86 capabilities...
      from p3 :

      reviously, such analysis
      has been challenging for arbitrary x86 code due to such
      practices as self-modifying code and overlapping instruc-tions. In Native Client we disallow such practices through a
      set of alignment and structural rules that, when observed,
      insure that the native code module can be disassembled
      reliably, such that all reachable instructions are identied
      during disassembly.

      And the halting problems is the impossibility of deciding if a given program will halt on execution or not. It is proven that for a Turing complete language (full X86 is) it can't be shown if an arbitrary program will halt or not. There is also another proof that enables you to reduce the analysis of any given property of a programs that must be preserved during is liveness to the halting problem. Sure, a class of program where it can be shown that it will halt exist but this is only a subset of all the possible programs.

      --
      Jehovah be praised, Oracle was not selected
    7. Re:Does anyone by JonySuede · · Score: 2

      and in nacljit, where they talk about platform independent SFI of self modifying code they admit :

      We found that the Mono and V8 platforms, and their x86-32 and x86-64 variants, spanned a wide range in terms of the porting
      effort required and the sandboxing slowdown incurred. At one end, Mono-32, porting effort was low and the measured overhead is near
      negligible. At the other extreme, V8-64, porting took a few weeks and sandboxing slowdown is between 51% and 60% on average,
      but 196% in one benchmark (due to a porting shortcut, as explained

      See, you do not get the full speed while sand-boxing non trivial program.

      However, our language-independent sandboxing does not aim to
      preserve high-level language semantics, and the implementation of
      our mechanisms is unencumbered by those semantics.

      This is kind of bad, but without any details on what was dropped we can't know if it really is.

      It sufces to extend traditional SFI techniques with a few new features, including new safety constraints that apply inductively on the structure
      of machine code, even across code modication.

      Subset, just like I said....

      --
      Jehovah be praised, Oracle was not selected
    8. Re:Does anyone by blair1q · · Score: 1

      Depends on what "sandbox" means to them.

      If the API has no provision for generalized system calls or other i/o, and only allows i/o to its interface, then it should be no problem.

      Or at least no more of a problem than the giant pile of un-verified code you're using to read this message and the vast number of invisible bytes it may or may not contain between its lines.

    9. Re:Does anyone by blair1q · · Score: 1

      if the CPU is behaving according to it's specifications

      Oops. I haven't seen one do that yet.

    10. Re:Does anyone by Late+Adopter · · Score: 1

      If you only allow a subset you don't get native speed, you get the speed that your subset of instructions allows.

      The inner sandbox uses static analysis to detect security defects in untrusted x86 code. Previously, such analysis has been challenging for arbitrary x86 code due to such practices as self-modifying code and overlapping instruc- tions. In Native Client we disallow such practices through a set of alignment and structural rules that, when observed, insure that the native code module can be disassembled reliably, such that all reachable instructions are identified during disassembly. With reliable disassembly as a tool, our validator can then insure that the executable includes only the subset of legal instructions, disallowing unsafe machine instructions. The inner sandbox further uses x86 segmented memory to constrain both data and instruction memory references. Leveraging existing hardware to implement these range checks greatly simplifies the runtime checks required to con- strain memory references, in turn reducing the performance impact of safety mechanisms.

      As long as you weren't trying to write self-modifying code (and note most compilers won't do this), your performance impacts are basically restricted to checking non-local jumps. Not strictly native, but close enough.

      not native speed as to sandbox you must create a vm like system.

      That's provably untrue. See AppArmor and SE-Linux, both of which operate without creating a virtual machine (only implementing replacement system calls).

    11. Re:Does anyone by Anonymous Coward · · Score: 1

      Every time NaCl comes up someone says "But... but... ActiveX!!!". Perhaps next time you could preface your comment with "I no nothing about the subject matter, but...."

    12. Re:Does anyone by Anonymous Coward · · Score: 1

      And the halting problems is the impossibility of deciding if a given program will halt on execution or not. It is proven that for a Turing complete language (full X86 is) it can't be shown if an arbitrary program will halt or not.

      Without infinite memory, no real computer is Turing complete. It therefore can't run a Turing-complete language fully. And whereas an arbitrary problem has the halting problem. One running under another system can be halted externally. Even the operating system can be halted. All computers have an Off button (of some description).

    13. Re:Does anyone by JonySuede · · Score: 1

      and note most compilers won't do this

      most games scripting engines will

      --
      Jehovah be praised, Oracle was not selected
    14. Re:Does anyone by RobbieThe1st · · Score: 1

      Well, last I checked, a full VM wasn't *that* much slower than "native", at least in part due to most modern CPUs having a virtualization extension. So if it's too slow, we just get some enterprising developer to take the source code, have it use a nice hardware-enforced solution, and get *plenty* of speed.

    15. Re:Does anyone by icebraining · · Score: 1

      Use Javascript. You already have one of the fastest script JIT compilers right there in the browser, no need to include one with your game.

    16. Re:Does anyone by ninetyninebottles · · Score: 2, Insightful

      That's damn wrong. ActiveX's widespread usage is NOT the only reason. The most significant reason is that ActiveX had basically NO security - one wrong decision by the user and their whole system is compromised. There is no "sandbox filesystem actions" like in Java model for instance. The second glaring issue is that the user does not always gets to decide - lots of objects were marked "safe for scripting" - that is for use from JavaScript, when in fact their interfaces never meant to be secure.

      I would add that being a closed source, single vendor project, there was no competition. If MS's implementation was insecure, well you're SOL. With an open standard implementation of NaCl with an open source reference implementation you have a different beast. If Google doesn't fix a problematic hole MS or Apple or Nokia or Canonical or Adobe can and will. Competition drives improvement, including security improvements.

    17. Re:Does anyone by JonySuede · · Score: 1

      I was not arguing against that. I don't hate vm, in fact I like them but to claim that they don't have a cost is bullshit as is the native speed claim. You could, at best, call it: close to native speed in some applications, that goes for NaCL to.

      --
      Jehovah be praised, Oracle was not selected
    18. Re:Does anyone by juancn · · Score: 2

      ActiveX is fundamentally different than NaCl. ActiveX security was based on the component being signed and that's about it. NaCl uses a very strict code verification (similar to what the JVM does, but with a subset of x86), runs in a process that has no permissions to do anyhting, and can only use a few APIs. It's not worse than Javascript.

    19. Re:Does anyone by foniksonik · · Score: 1

      How is Google open? They are very public about things, beta this alpha that but much of Googles software is closed.

      --
      A fool throws a stone into a well and a thousand sages can not remove it.
    20. Re:Does anyone by fidget42 · · Score: 1

      How is Google open? They are very public about things, beta this alpha that but much of Googles software is closed.

      You must not read any of their comments about Android.

      --
      The dogcow says "Moof!"
    21. Re:Does anyone by CTachyon · · Score: 1

      Does anyone else see this as a giant security hole? As in, various schemes like this have been tried since the days of ActiveX, and the only reason ActiveX has the worst reputation is because it's the only one that gained widespread use?

      The point of NaCl is that it's a virtual machine bytecode language, and you can statically verify (without running the code) that the bytecode conforms to the spec. However, for performance reasons, the bytecode language and the virtual machine architecture just happen to line up with the native machine code and native architecture. NaCl provides only a subset of the full instruction set, though, and this prevents arbitrary pointer arithmetic or self-modifying code that could break outside the sandbox. NaCl authors actually need to recompile their code to x86 NaCl or ARM NaCl as a distinct GCC compiler target, instead of plain old x86 or ARM, because the NaCl targets are easily distinguishable from the native ones when you examine the machine code bytes. (The most important feature: all jumps are aligned and no ops cross an alignment boundary, so there's only one possible machine code interpretation for each byte of NaCl code.)

      Needless to say, this is a vastly different model compared to ActiveX, which was "we'll trust any old native code to make arbitrary system calls, just so long as there's an RSA signature attached". NaCl ditches the central trusted authority model that Microsoft preferred, and instead goes with the Java/JavaScript/Lua/LISP model of "you can only perform side effects that the interpreter chooses to expose to your code". As with the interpreted languages your NaCl code is Turing-complete, so you can waste CPU and RAM until the cows come home, but you can't actually touch the filesystem, create GUI elements, or modify the address space of other processes unless Chrome decides to permit it. The only difference is that you don't run at some fraction of native code speed, but exactly at native code speed, and you can statically optimize as much or as little as you like, or write in any language you want (so long as someone's written a NaCl target for your language's compiler).

      There will probably be a few bugs in the static verification logic that allow not-quite-NaCl code to slip through, but this is no worse than the sandboxing problems we already face from Javascript in the browser. With JavaScript, this has even included double free bugs that allowed overwriting arbitrary memory with native code and executing it. The risks with NaCl are no different.

      --
      Range Voting: preference intensity matters
    22. Re:Does anyone by hairyfeet · · Score: 1

      What is sad to me is here we see a clear admission that Mono is easier to port, has less overhead, but because of religious zealotry it will NEVER be accepted because those that treat OSes like religions will go "ZOMG! It is by teh M$ it is teh evil! Burn teh witch ZOMG!" and thus it doesn't have a prayer. Meanwhile those of us on Windows will just use .NET and think their religion like the other kooky beliefs is just freaky.

      As for TFA? I don't think it will work worth a shit for anything more complex than farmville, and here is why: There are only two ways to go really when it comes to security of third party code being run from the big bad web. One there is the Apple "Wall the living fuck out of it!" model, where you either give one company COMPLETE control to lock it down tighter than a nun's thighs or you're fucked, and the MSFT "Meh, we'll take care of it with a GPO" model, where you basically leave it open and let the users and the corps lock it down themselves. See ActiveX as to why that isn't the smartest of ideas.

      The simple fact is gaming is the ONLY real popular thing that tries to get as close to bare metal as it can anymore and that is because of the big performance gains. If all you are doing is rendering a 2D farmville style game nobody gives a shit if you wrap it in a dozen VMs, as the machine will have more than enough juice to waste the extra overhead. But drawing even a game from 2k4 like Far Cry requires a hell of a lot of polygons AND physics AND AI AND 5.1 surround sound...you get the picture. A bunch of security crap placed to keep some .ru website from Goatse'ing your PC with the "free cool game yo!" means it will royally suck ass.

      Part of the appeal of this wild and wooly web of ours is how free it is, how ANYBODY can set up a site and offer their games, like those indie packs. But if you have the games running inside the browser, away from the AV and OS security permissions? You either choose the Apple or the MSFT model, and both have serious issues. Personally I'd rather just download my games, scan them, and then choose whether i want it to run or not than give Google total control or have another ActiveX, thanks anyway Google.

      BTW if anybody thinks Google isn't trying to become the MSFT of the mobile world? I have some nice swampland in AR you might be interested in. They WILL end up just as locked down as Apple (notice how they don't allow GPL V3?) and just as big an asshole as the Gates era MSFT, they will just have a catchy slogan, like "Think Different" or "Windows 7 was my idea!". Frankly I hope the guy that wrote the "Do no evil" marketing bullshit got a hell of a bonus, because it is fricking brilliant. I bet Jobs wishes he'd have known something so simple could work so powerfully. Made his RDF look like a bad joke really.

      --
      ACs don't waste your time replying, your posts are never seen by me.
    23. Re:Does anyone by cgenman · · Score: 1

      ActiveX has the worst reputation because it was a fundamentally insecure architecture that also happened to be poorly written. And despite being a default installation on a default browser of the default operating system for over a decade now, the only place I can think where it is actively in use is Microsoft's own websites.

      Remember, ActiveX was attempting to compete with Flash and Java. At that it failed miserably.

    24. Re:Does anyone by phantomfive · · Score: 1

      Rumor is that ActiveX caught on in Korea on very many websites. Not speaking Korean, I cannot personally verify this.

      --
      "First they came for the slanderers and i said nothing."
    25. Re:Does anyone by nikanth · · Score: 1

      IIUC ActiveX required permissions and got access to everything. But NaCl is more like JVM, but runs directly in hardware.

    26. Re:Does anyone by Billly+Gates · · Score: 1

      "Does anyone else see this as a giant security hole? As in, various schemes like this have been tried since the days of ActiveX, and the only reason ActiveX has the worst reputation is because it's the only one that gained widespread use?
      "

      I couldn't agree with you more. IE 5 and IE 6 are the staple of proper security and good coding practices. Nevermind it let any ActiveX applet run automatically with full administrator access by simply browsing a page. I am sure its those evil hackers just targeting what everyone uses. Just like now with correct settings that hackers magically access IE 8 or IE 9 activeX controls by magic simply because more people run IE than any other browser.

    27. Re:Does anyone by gl4ss · · Score: 1

      what fun are apps that can't talk to each other?

      but with chrome os, you wouldn't need this, all the potential security stuff is right in the javascript apis, just get the user to agree for you to read his mail box and you'll know exactly how to do it and how to tell his phone to call to your pay-line - with easy api's.

      but this NaCl will be used for two things, to gain execution speed and to make things harder to reverse engineer. oh and third, to port stuff, chrome os needs nes emulators too.

      --
      world was created 5 seconds before this post as it is.
  4. Proprietary by Billly+Gates · · Score: 1, Insightful

    How is using Pepper different than ActiveX with Internet Explorer?

    If you use pure html 5 with WebGL or Canvas 3D (for IE 9 or IE 10) you can create 3D games using the hosts GPU. Chrome's 3D and hardware acceleration for html 5 does lag considerable behind Firefox and IE 9/10. I wonder if it is because they want you to use Pepper instead?

    Either way their actions go agaisn't the spirit of HTML 5. You can do all of that properly in the latest versions of the browsers that is cross platform.

    1. Re:Proprietary by Seferino · · Score: 1

      How is using Pepper different than ActiveX with Internet Explorer?

      One word: sandbox.

    2. Re:Proprietary by PCM2 · · Score: 2

      How is using Pepper different than ActiveX with Internet Explorer?

      In at least one significant way: The Native Client code is all open source, like Chromium itself.

      --
      Breakfast served all day!
    3. Re:Proprietary by Billly+Gates · · Score: 1

      Com/DCOM in activex are highly documented with source code available over MSDN. Sure it is not GNU, but it is still proprietary when other open standards exist like HTML 5

  5. MS by mingot · · Score: 1

    I would love to hear the howling if it was microsoft introducing this sandboxed native client.

    1. Re:MS by danish94 · · Score: 1

      It would be IE only.

  6. Salty Sand by FrankDrebin · · Score: 5, Funny

    sandboxed native client (NaCl)

    In other words, a saltbox.

    --
    Anybody want a peanut?
    1. Re:Salty Sand by Anonymous Coward · · Score: 1

      ya so it kills all the snails

    2. Re:Salty Sand by blair1q · · Score: 1

      NaCl...Pepper...get it?

      They should've called the API "Lime," but maybe that's just me (and about 10,000 hot chicks in bikinis at spring break...)

    3. Re:Salty Sand by lanthar · · Score: 1

      Should have gone with SiO2

  7. Re:The "browser" is becoming the new thin client by papasui · · Score: 1

    This is actually the way its been in Corporate IT for quite a while. It's much easier to make a web app that gets update once on the server than to manage thousands of client updates, worry about security issues, etc. The current place I work about 80% of the applications are web apps with a few ones yet to make the move (MS Office being the primary one, but even that might be changing with Microsoft's cloud pushes).

  8. Re:The "browser" is becoming the new thin client by hedwards · · Score: 1

    I've had to use them at work and it doesn't work anywhere near as well as folks think. Granted it probably does work if you've got the server onsite, but really, you shouldn't have a server onsite without a backup. The problems we had were that the server was being run offsite, and consequently whenever the gateway would be down we wouldn't be able to do portions of our job. And even when it wasn't completely down it might be as slow as molasses, which again would hurt productivity.

    Sure it's convenient and all, but we're hardly at the point where having a web server handling this sort of thing is wise.

  9. Re:The very stupidity of it all by Goaway · · Score: 5, Informative

    Actually, Google wants to introduce LLVM bytecode, which will run on both x86 and ARM. They're making an OS for ARM processors, you know, they are aware it exists.

    x86 is just the first step on the way.

  10. Re:Boom by fuzzyfuzzyfungus · · Score: 1

    Arguably, we Do Not need ActiveX all over again; but we do need an (actually competent) implementation of what things like ActiveX were trying to accomplish...

    While it is possible, and sometimes desirable, to increase security just by paring away as much power as you can get away with, that doesn't fly in the broader market. People want their games, and their videos, and whatnot. If they can't get them in-browser, they'll get them by downloading every friendly .exe that somebody offers them, which isn't exactly a triumph of security(particularly since prompting for elevated rights is standard behavior for installers...)

    If you cannot protect somebody from something running in-browser, you don't actually solve the problem by not trying, you just shove it off onto the OS, which hasn't shown a brilliant track record of protecting people from the things they run, and offers less convenience in things like install/uninstall/update/synchronization...

    Turning it on, without prompts, for all domains, by default, unless you are very, very certain is, of course, a terrible plan; but there is nothing fundamentally more hopeless about protecting people from browser plugins than protecting people from downloaded binaries, and history suggests that if they can't have what they want from the former, they'll enthusiastically click through whatever the latter asks them for...

  11. Re:The "browser" is becoming the new thin client by Locutus · · Score: 1

    hiring better network personnel might be a concept to consider. Or even a one-time consultant after getting bids and proposals from a few.

    or find out who's downloading all the porn.

    LoB

    --
    "Anyone who stands out in the middle of a road looks like roadkill to me." --Linus
  12. Re:The "browser" is becoming the new thin client by PCM2 · · Score: 1

    This is actually the way its been in Corporate IT for quite a while. It's much easier to make a web app that gets update once on the server than to manage thousands of client updates, worry about security issues, etc.

    And before that it was Lotus Notes, and before that it was mainframes and AS/400s, etc. It has always been easier (and arguably better) to run certain types of applications on servers, particularly when the application's purpose is to give an arbitrary number of employees access to the same information store. Where the model has yet to be proven, IMHO, is when the purpose of the application is to enable an individual to perform an individual task (e.g. a word processor or a graphics program).

    --
    Breakfast served all day!
  13. Re:Boom by ThePhilips · · Score: 1

    you just shove it off onto the OS

    But we already did and it is widely accepted: anti-virus software.

    which hasn't shown a brilliant track record of protecting people from the things they run,

    But that the point of the responsibility separation. If user explicitly wants it, then you can't do anything against it - against the will of user. After all, computer exists to fulfill the commands given by the user.

    You are sending us back to the old Outlook dilemma: how to send installer of a hot fix to a customer who urgently needs it? Because Outlook too can police attachments and instead of giving AV software a chance, simply drops anything with extension .exe. Or any archive which contains an .exe file. Or anything what looks to Outlook even remotely suspicious.

    But you are sort of suggested solution: this Google's effort should be concerted with the AV vendors. Or the effort would go either the way of ActiveX (permanently disabled) or the way of Outlook (let's be smarter than user, making software in the end even more useless than it was to begin with).

    --
    All hope abandon ye who enter here.
  14. games is what is keeping Windows around by sourcerror · · Score: 1

    And legacy applications, and Excel macros.

  15. Re:The "browser" is becoming the new thin client by rtb61 · · Score: 1

    How about thinking of it more in terms of marketing, developer and consumer acceptance. In creating games to suit a platform, a market ecosystem must be built up of developers and consumers. This can be more readily created with relatively simple games in a web environment using the Google's cloud and aligned ISP's to provide the processing power for consumer to access and play games on relatively low cost devices.

    From that basis the gaming environment game of course expand, no different to the expansion of the PC gaming environment over the years of development, into more complex and demanding games and obviously more powerful gaming platforms.

    Basically from the phone, to the tablet, to the smartbook and tad dah, the desktop (the desktop either being a more powerful notebook or an actual desktop, perhaps even an open console or more likely a big screen built in optional accessory). Google thrives in an open market and the more areas of the computer ecosystem that are open and available to it the more opportunities it currently has.

    --
    Chaos - everything, everywhere, everywhen
  16. Re:A new generation making the same mistakes. by The+Dawn+Of+Time · · Score: 1

    You could have saved all the trouble of typing out the poorly reasoned tripe and just said "get off my lawn."

  17. It's a sign you're on the right path by The+Dawn+Of+Time · · Score: 1

    It must be the right way, because all the old programmers who don't want to learn anything new hate it.

  18. Kind of obvious. by drolli · · Score: 1

    For what else would you like a native client in a consumer product.

  19. Re:Shockwave by blair1q · · Score: 1

    Except it uses HTML5 instead of running through another box full of rendering.

    Could be much more interesting from an interactivity standpoint.

  20. Sandboxed salt... by tenco · · Score: 1
    ... with integrated pepper?

    Some Googlers seem to appreciate wordplay :)

  21. Re:Boom by RobbieThe1st · · Score: 1

    I would argue that this is doable: we now have a very good handle on sandboxing applications, and we even have good, almost-native-performance VMs. If we can make it so that all untrusted apps automatially run in a sandbox or VM, then this will work. So long as the "least work" state has the application running in a sandbox, that will prevent 90%
    of infections through this vector.

    Also, don't forget the fact that this will run cross-platform, and thanks to qemu(if it's x86 bytecode), on other arch's as well! So long as the Pepper API and source code is available, I can't see any problem with it. It will basically put *all* OS's on the same footing, without quite so much in the way of hacks like Wine. ...And who wants to bet that this api uses OpenGL/webGL instead of DirectX, at least internally?

  22. Re:Cats shit in sandboxes all the time. by ninetyninebottles · · Score: 3, Insightful

    They're [sandboxes] a theoretical concept that have never worked well in the real world. They've been tried time and time and time and time again. They aren't a new concept, but nobody ever seems able to implement them properly, even when some of the biggest names in the field are involved, and even when they have nearly unlimited resources and people to throw at the problem.

    Well, except Apple with iOS, Google with Android, the NSA with their SELinux improvements, a crap-ton of people who worked on and use TrustedBSD, Bitfrost in the OLPC, and every security researcher for the last 20 years who has relied heavily on VMs. But yeah aside from those and probably a bunch more I don't know about, no one has successfully implemented sandboxes.

    Maybe what you meant to say was that Microsoft hasn't been able to implement them properly.

  23. Re:Security hole by Anonymous Coward · · Score: 1
    1. 1) format.exe: Invalid drive specification.
    2. 2) format.exe: Access Denied as you do not have sufficient privileges. (Limited user access.)
    3. 3) system: The current directory is invalid. (Low integrity mode.)
    4. 4) nacl-gcc: 'system' was not declared in this scope (Not implemented by libc/msvcrt.)
  24. Re:The "browser" is becoming the new thin client by hedwards · · Score: 1

    You're correct. In this case it was the fact that the person managing that infrastructure wasn't qualified and the gateway was kept in a room without adequate cooling.

    That being said, there's other reasons why this isn't a wise idea, some of which are related to what happens when infrastructure 3 states away is having issues. I remember times when that would cause slow downs and problems. Granted that shouldn't be an issue these days, but then again companies should pay to have these things done correctly.

    And ultimately, mission critical infrastructure should only be off site as a backup or in cases where the users aren't all in one place. If you've got most of your employees in one or two buildings, then its' really not a great idea to have the infrastructure somewhere else completely without some means of caching or otherwise working when the machines are down.

  25. It's not about security, its about market share by kangsterizer · · Score: 1

    Once Google gets this out - knowing competitors will not pick it up - and leverage it's massive weight by paying devs and advertising everywhere - we may actually get some decent games done for it.
    But only Chrome will play them, the open standard is just a trick there, as, once again, no one else will implement it for a long while.

    Once Chrome has captured market, Google has end-to-end web control, and that is a little bit scary.

  26. Re:Boom by pspahn · · Score: 1

    But we already did and it is widely accepted: anti-virus software.

    Ha. AV software is an old dog that should be taken for a walk.

    --
    Someone flopped a steamer in the gene pool.
  27. Re:The "browser" is becoming the new thin client by countertrolling · · Score: 1

    Even the browser (another name for 'program suite') runs on the server.. A real thin client is just a keyboard and a monitor

    --
    For justice, we must go to Don Corleone
  28. I'm confused here by ILongForDarkness · · Score: 1

    What is the benefit other than porting native apps to run in a browser? The article linked to says that the Pepper interface is a binding layer that converts the native calls into stuff that can be done in HTML5. That's great but ... native apps will now be limited to the performance of the HTML5 engine unless I'm missing something. So yeah you can get platform independence as long as you are willing to have an interpreted layer between your code and the OS. Isn't that the same thing Java gives you? How about Windows game developers Direct X support etc? Are developers really going to just throw that away and redesign things to perform well on an interpreted HTML5 interface rather than port the program over to a web language entirely?

    1. Re:I'm confused here by ILongForDarkness · · Score: 1

      You might be right. To me though gamers always want something more powerful, emulation/browser based isn't going to be it. For moderately good graphics there is already a huge number of things, silverlight, java, flash, etc. They really shouldn't be able to call it a native interface, yeah it is an interface from native but that is like saying "we can take your really optimized program and running in a crappy emulation layer, woo hoo.

    2. Re:I'm confused here by darinf · · Score: 1

      It is not that Pepper is limited to the performance of HTML5. Rather, Pepper is limited to the same security restrictions as HTML5. There is a compatible security model for NaCl and JS. That's what is different and unique about this plugin model (NaCl+Pepper), as compared to NPAPI or ActiveX.

    3. Re:I'm confused here by gl4ss · · Score: 1

      well, they can run for example run an emulator core in the c++ side, so you could get "in browser" psx emulators and stuff like that, or the ai core.

      more likely, they'll implement opengl inside from that c++ and some sound apis too, like in android.

      --
      world was created 5 seconds before this post as it is.
    4. Re:I'm confused here by randomErr · · Score: 1

      You're sorta right. This is a hybrid approach of Java and ActiveX/COM. Its like Java it that it runs in its own virtual machine. The big different is that Java is a generic VM that is meant to run on any system. This is targeting a specfic processor with a specfic API on newer technology kinda like ActiveX. Unlike ActiveX/COM and like Java its not 'suppose' to give you full OS level API. Overall this will be optimized to the hilt with a very specfic (read narrow focus) VM enviorment.

      --
      You say things that offend me and I can deal with it. Can you?
  29. And the rest of MS Office by brokeninside · · Score: 1

    And SQL Server, and Visual Studio, and a bzillion different vertical apps put out by ISVs.

    You hinted at that with "legacy applications" but the fact is that very little of the installed base of Windows applications counts as "legacy." Most are being actively developed.

  30. Re:Yer Mom is a game client. by Tuuresairon · · Score: 1

    Actually this is kind of exciting for if it seriously takes off, that means one can do some gaming in a linux platform.

    I've been playing games using only GNU/Linux for many years and the main problem was lack of time to try them all, especially since the Humble Indie Bundle. Let alone all those games for Android. I highly doubt that I somehow travelled in time and started using NaCl even before Chromium was released.

    I agree it can result in more cross-platform games, though.

  31. So what? by phizi0n · · Score: 1

    Who cares if they're making HTML 5 games when they're doing browser detection that blocks other HTML5 capable browsers instead of doing feature detection to tell if the browser supports all the features needed to run?

  32. Re:The "browser" is becoming the new thin client by kiddygrinder · · Score: 1

    How is keeping the thin client updated any different from keeping any standard set of programs updated on the computer?

    we do weekly updates to our web apps, i shudder to think how you'd roll that out to hundreds of computers, laptops and mobile devices when it takes us something like 10 minutes per application to push them to the production server.

    --
    This is a joke. I am joking. Joke joke joke.
  33. Re:The very stupidity of it all by StripedCow · · Score: 1

    If only they let the bytecode access directly the underlying opengl graphics primitives, we could implement our own rendering engines in this bytecode language and be done with html5 compatibility problems forever... (of course assuming that other browser vendors will use the same bytecode).

    --
    If Pandora's box is destined to be opened, *I* want to be the one to open it.
  34. HW acceleration with GPU... by Frederic54 · · Score: 1

    They should start to re-enable it. I use XP on a netbook which has a ION, it's a very powerful GPU for a netbook, I can play movie on 1080p because it uses the GPU to render it. Flash video *were* also accelerated, but not now. Google decided that on XP, they disable all GPU acceleration. So now all the video (like youtube), all flash games, etc, are driven by the poor Atom...

    Why they forced a disable is beyond me, there is no way to re-enable it except by going back to Chrome 7 or something like that.

    --
    "Science will win because it works." - Stephen Hawking
    1. Re:HW acceleration with GPU... by AmberBlackCat · · Score: 1

      Maybe there is a way you can set your web browser's mpeg4 plugin to use GPU acceleration.

    2. Re:HW acceleration with GPU... by Frederic54 · · Score: 1

      It seems it's because they disabled h.264 codecs :-/

      --
      "Science will win because it works." - Stephen Hawking