Slashdot Mirror


No Windows 7 XP Mode For Sony Vaio Z Owners

Voyager529 writes "While virtually every Core 2 Duo processor supports the hardware virtualization technology that powers the Windows 7 XP Mode, The Register UK reports that the Core 2 Duo processors in the Sony Vaio Z series laptops had the virtualization features intentionally crippled in the BIOS. Senior manager for product marketing Xavier Lauwaert stated that the QA engineers did this to make the systems more resilient against malicious code. He also stated that while they are considering enabling VT in some laptop models due to the backlash, the Z series are not among those being retrofitted."

22 of 198 comments (clear)

  1. What? Malicious code?? by jkrise · · Score: 5, Funny

    Senior manager for product marketing Xavier Lauwaert stated that the QA engineers did this to make the systems more resilient against malicious code.

    If they don't like Windows XP they can say so. Calling it malicious code will piss off Microsoft no end.

    --
    If you keep throwing chairs, one day you'll break windows....
    1. Re:What? Malicious code?? by TheRaven64 · · Score: 3, Interesting

      There are a few proof-of-concept rootkits that work by installing a thin hypervisor in hyperprivileged mode and letting the OS carry on in ring-0, accessing hardware directly but being completely exposed to any code running in the hypervisor. This is virtually undetectable to the OS, so it makes sense to disable VT-x in the BIOS and enable it only when the user knowingly installs a hypervisor. It doesn't make a great deal of sense to not permit the user to enable it though.

      --
      I am TheRaven on Soylent News
    2. Re:What? Malicious code?? by Lumpy · · Score: 4, Funny

      But Lenovo allows you to re-enable it. sony simply has a "SUCKS TO BE YOU" sticker on it.

      --
      Do not look at laser with remaining good eye.
    3. Re:What? Malicious code?? by AP31R0N · · Score: 3, Funny

      My experience as a Sys Admin and doing IT house calls told me to avoid Sony computers like the plague, unless i wipe the OS and start again. i found their tweaks to cause all kinds of headaches.

      --
      Utilizing the synergization of benchmark e-solutions to pre-workaround action items!
    4. Re:What? Malicious code?? by schon · · Score: 4, Informative

      There are a few proof-of-concept rootkits that work by installing a thin hypervisor in hyperprivileged mode

      No, there is one that the creators claim to operate like this.

      This is virtually undetectable to the OS

      No, it's claimed to be undetectable, but when challenged, the creators won't let anyone examine it to see.

    5. Re:What? Malicious code?? by Moryath · · Score: 3, Insightful

      Nope. That shipped built in.

      What did you THINK was eventually going to form Skynet anyways?

  2. It's Sony by Anonymous Coward · · Score: 3, Insightful

    Hey, it's Sony. What kind of customer support did you expect.
    It's not like they've got a long history depicting a care for their customers, rootkits being only 1 example.

  3. flash by socsoc · · Score: 4, Insightful

    If only there was some way to replace the BIOS, with some sort of flashing... I'm sure at some point they'll be a alternative firmware for those people silly enough to think that Sony would embrace anything that wasn't one of their proprietary formats.

    1. Re:flash by Chaxid · · Score: 5, Informative

      I actually reflashed my Vaio VGN-FW285J in order to enable Intel VT-x which was deliberately disabled by Sony. It irked me to no end that they disabled this feature, since I would not have bought the laptop if I'd known they'd disabled it. The procedure on how to reflash is on my blog, along with links on how to do it for Sony's other Vaio laptops (such as the "Z" series). The blog post is here: http://linux.com/community/blogs/sonys-crippled-intel-vt-support.html Credit should of course go to those fine folks who took the time to reverse engineer the BIOS, such as Igor Levicki who did this for the FW series' AMI BIOS. I hope Sony realizes they are making a big mistake.

  4. Pfft by Houndofhell · · Score: 5, Funny

    ::Sony BIOS SCREEN::

    Virtualization: Disabled
    Complimentary Rootkits: Enabled

  5. In other news... by langelgjm · · Score: 5, Funny

    In other news, Sony has decided to disable the second core in many of its dual-core models. Senior douchebag Joe Schmo defended the decision, saying "Often the second core just allows people to run malware in the background without noticing it."

    Um, no thanks, Sony. How about you let your customers decide whether they want to turn off processor features?

    --
    "Anyone who [rips a CD] is probably engaging in copyright infringement." - David O. Carson
  6. Lenovo does the same thing by Renegade88 · · Score: 3, Informative

    The virtual technology extensions of my Lenovo Thinkpass T400 has also been intentionally crippled. Sony isn't the only company making bad decisions with higher-end laptops.

  7. Re:Why does it matter what the BIOS supports? by Anonymous Coward · · Score: 5, Informative

    Since DOS died the BIOS has been little more than a glorified POST. So why can't the OS just enable any features that the BIOS doesn't? Its not like any modern OS uses the BIOS once its up and running anyway - just some information the BIOS may have provided which the OS can double check for itself anyway.

    IIRC the BIOS sets the CPU VT flag on powerup (ie, disabled) - once flag is set, it can't be cleared until next cold boot. However, I have an SZ series, there are tools out there to modify the bios settings to not set the flag (it works), I've successfully got linux KVM running :D (following http://forum.notebookreview.com/showthread.php?t=189228)

  8. Let me fix that for you... by wowbagger · · Score: 5, Insightful

    "Senior manager for product marketing Xavier Lauwaert stated that the QA engineers did this to make the systems more profitable by creating an artificial differentiation we can use to charge more money for basically the same thing."

  9. Re:Why does it matter what the BIOS supports? by ripnet · · Score: 5, Informative

    It matters because the way the VT tech works is that its disabled by default in the CPU, and is (usually) enabled by the BIOS. The reason you cant (usually) turn it on after the OS has booted is because the register used to turn it on (the MSR) has a lock-bit, which once set prevents any changes to the VT status until power is removed from the CPU.

    BIOS's that simply ignore the VT enable stuff are less of a problem, because its possible to set the VT tech on, and lock it on (by writing 5 to register 3A) within the OS using /dev/msr (linux) or cpuinfo (windows). The Mac Pro (early 2008) behaves like this. This is obviously bad for security, as the malware can simply enable it!

    BIOS's that deliberately disable VT will set the register to 1 (vt off, lock on), turning off, and locking off the VT stuff. There is no way I know of to defeat this situation (short of disassembling the BIOS and 'fixing' it).

    Some BIOS's even have the code to turn it on, but it is only triggered if a CMOS register is set to a certain value and there is no UI on these BIOS's to set that CMOS register. I believe some Sony BIOSs are like this, but am unsure.

    The best ones of course allow you to turn it on in the BIOS - which is why Sony are talking BS when they say its for security. They only need to ship it turned off, and allow the users to turn it on at their own risk.

    I understand that it IS a genuine risk (bluepill?) in that a hypervisor can install itself UNDER the OS layer, and then filter what the OS sees, invisible to the user (otherwise the virtualization is broken).

    Thats why.

    ps. apple ignored a bug report I made about the way the Mac Pro works... i guess its kinda understandable because it seems all MacOS virtualization products just turn it on using the MSR as needed.

  10. Comment removed by account_deleted · · Score: 5, Funny

    Comment removed based on user account deletion

  11. go to hell Sony by pak9rabid · · Score: 4, Insightful

    This is exactly why I don't buy Sony products, whether it's a computer, camera, music, etc. Consumers have been burned by them enough times with their retarded proprietary formats, lawsuits, rootkits, and just an overall blatent disrespect for consumers that I'm surprised anyone buys their crap anymore.

  12. 6 out of 11 is not "virtually every" by Anonymous Coward · · Score: 4, Informative

    Only 6 out of 11 of the 45nm Core2 duo chips support VT according to info on intel.com. That's not "virtually every".

    Not nitpicking for the sake of it, just don't want people to assume that the Core2 they're intending to buy supports VT. Best to check.

  13. Sony has ALWAYS Gimped laptops... by nweaver · · Score: 5, Interesting

    Back in 2000, when Win2K was out and happy but the proles were stuck with Win98/ME, I decided I wanted a laptop.

    There was a cheap Sony laptop with Win98/ME on it that looked good to me and was on sale. I checked, there was a version of the same laptop with Win2K available, but it was a few hundred dollars more if you could FIND it, and the UC CS dept had a site liscence/arrangement for Win2K.

    So I figured, why not? Buy it at fry's, reinstall with a remotely tolerable Windows OS, be happy.

    Get the laptop, blow away the Win98/ME crap, put on Win2K, only to find out that Sony locks all the drivers with BIOS strings and the like so the drivers from the Win2K version won't install on any other notebook, even when the chipsets and everything are identical!

    Fortunately, Fry's had a good return policy. So rather than going hunting for manufacturer sites for drivers, I said, screw it, popped in the reimage disk, and restored it and returned it.

    A few weeks later, I bought an IBM notebook off a friend with PowerBook envy, much prefering the IBM site wher you put in the model # on the bottom and you get every driver for every OS variant, including Linux, in a nice neat grid...

    But even nearly a decade ago, Sony was gimping their laptops badly. Glad to see they are keeping THAT tradition alive...

    --
    Test your net with Netalyzr
    1. Re:Sony has ALWAYS Gimped laptops... by vintagepc · · Score: 3, Informative

      They do this with desktop VAIOs too... We have one here at the office that the owner could not get to dual-boot Linux and Windows... in fact, the manual even states that if you dual boot, your machine's features will be crippled... So we made the smart choice, did a linux-only install.
      I think I speak for many of us when I say,
      "F*ck you, Sony!".

      --
      Evolution - Est. 4500000000 B.C. Don't piss in the gene pool.
  14. Not virtually all C2D's by GreenEnvy22 · · Score: 3, Informative

    The first line of this summary is quite wrong. Intel has LOTS of Core2Duo's that do not support Intel VT. A quick look through their processor matrix will confirm this. Still, it's common practise for laptop manufacturers to disable things like VT on their consumer models. My Toshiba satellite has it disabled (not changeable in BIOS), but the pro version of it (same mainboard and cpu) has the option. I'm sure there is some way to get it working via a hex editor or something, but then we're into voiding warranties (if the bios gets fubared).

  15. sony made wrong decision by argent · · Score: 3, Funny

    Virtual machines are a security feature. A VM establishes a security barrier around the OS> If you're infected, you just roll back the VM to the last snapshot and you're clean.

    Security is like sex, once you're penetrated you're ****ed. Blocking useful security tools because they make it very slightly easier to hide after a successful penetration is asinine. And complaining about the cleanup cost? I normally reformat and reinstall after a virus is detected... and I've had to do that ONCE on any computer I've owned since 1986.

    If people took some responsibility for their computers instead of depending on hacks like AV software to detect and clean up after they screw up, there wouldn't BE a virus problem.

    As for your last line, "There is no real use of VT anyway since cores are now dual."... I have no idea what you mean by that, so here's a bunny with a pancake on its head.