Slashdot Mirror


Dell and HP Advise All Their Customers To Not Install Spectre BIOS Updates (bleepingcomputer.com)

An anonymous reader writes: The Spectre and Meltdown mess continues with Dell now recommending their customers to not install the BIOS updates that are supposed to resolve the Spectre (Variant 2) vulnerabilities. These updates have been causing numerous problems for users including performance issues, boot issues, reboot issues, and general system stability. Due to this, Dell EMC has updated its knowledgebase article with a statement advising customers to not install the BIOS update and to potentially rollback to the previous BIOS if their computers are exhibiting "unpredictable system behavior". ZDNet reports that HP too has issued a similar advisory. The computer manufacturer pulled its softpaqs BIOS updates with Intel's patches from its website, and said it would be releasing a BIOS update with a previous version of Intel's microcode on Thursday.

11 of 88 comments (clear)

  1. Spectre cannot be even practically exploited. by blind+biker · · Score: 5, Informative

    People still haven't gotten the point - this is testament to Intel's PR efforts to obfuscate the facts. It seems the majority of people believe that Spectre (affects Intel, AMD and ARM) is just as dangerous as Meltdown (affects only Intel CPUs). Un-fucking-believable. We truly live in the epoch of idiocracy.

    --
    "The agriculture ministry is not in charge of Gundam" - Japanese ministry official.
    1. Re:Spectre cannot be even practically exploited. by Anonymous Coward · · Score: 3, Informative

      Really?
      While Meltdown is more awful, its mitigation is pretty much done with KAISER type patches to kernels. This is not a fix but is good enough for now. The same was done in Linux kernels for ARM.

      Spectre is more tricky when it comes to making sure either of its variants cannot be used. And more vulnerabilities of the same type are likely to be found. Work on making things less vulnerable to it is still underway.

      I get it that it's popular to bash Intel at this point and while they have done a lot to deserve this, this issue is really not why. Meltdown also affects Power and ARM core (or a few).

      Now, these broken Intel updates are meant for Spectre (variant 2) mitigation. Along with the Linux kernel patches Linus lambasted (reading further into the thread, there do seem to be reasons why patches were written the way they were).

      Now, PR?
      ARM is probably the only one of the chipmakers doing the right thing here. Information is quick, public, to the point and fixes are deployed as soon as they are done. There are performance issues with ARM patches but they are taken as necessary.
      Intel is doing its best to obfuscate things as you said.
      AMD is just ignoring it altogether until they no longer can. Regarding Spectre: near zero chance > microcode and software updates are coming, this you can read in statement on their page. Initial PR was even for Spectre that they are not affected. Have you seen AMD firmware of software patches yet? Couple of sites have tried to find out about them and have found nothing.

    2. Re:Spectre cannot be even practically exploited. by mwvdlee · · Score: 3, Interesting

      To me this sounds not so much like a PR efforts as much as Yet Another Intel Fuck-Up that would require additional PR efforts to spin.
      You'll note that the Dell advisory explicitely mentions that the advisory applies to the Intel patches. It doesn't mention problems with patches for other CPU's.
      As I read this story, Intel provided BIOS updates for their own CPU's, and those BIOS updates are causing problems.
      It just happens to be that this particular fuck-up involves the lesser of the two previous bugs, but doesn't really seem caused by that bug itself.
      So I guess this means that for Intel CPU's, both bugs are dangerous.

      AMD and ARM are still left with only a single reasonably harmless bug.

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    3. Re:Spectre cannot be even practically exploited. by mwvdlee · · Score: 3, Funny

      fast, but inferior in every other aspect products.

      Intel CPU's are fast in the same way that a car goes fast after you drive it off a cliff.

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
  2. Lawsuits by ThisIsNotAName · · Score: 3, Interesting

    Considering how poorly Intel has handled this, I'm looking forward to seeing the legal consequences.

    Intel's performance so far seems best described as "clown show." Especially for major, industry-wide patches that they should be sure will fix the problem without introducing crippling problems that are just as bad (or worse) than the original problem.

    1. Re:Lawsuits by NicknameUnavailable · · Score: 3

      The issue are the bugs are architectural in nature and they can't patch them, it's not physically possible without redesigning the chip architecture from the ground up and doing a full recall of all existing chips. They would basically go bankrupt if they took the proper route to fixing it. Even on a best case scenario where it gets fixed and they don't require a recall it's going to take years of dedicated effort just to have a prototype of a chip without the bug and if they pursue that they will then be behind in the Intel-AMD arms race and go under. The only logical solution is to pretend the issue isn't as bad as it is and keep pumping out bullshit while leaving the solution to the next CEO.

  3. Meltdown is Intel only by 110010001000 · · Score: 3

    Meltdown is an Intel only problem. Don't be fooled by people who say "but ARM is affected too". Baloney. None of those ARM processors are even on the market. And those ARM processors were co-designed by Intel.

  4. Re:So far so good on my Gigabyte motherboard by 110010001000 · · Score: 4, Funny

    Thanks. We will let HP and Dell know.

  5. Communicating. by DrYak · · Score: 4, Interesting

    ARM is probably the only one of the chipmakers doing the right thing here. Information is quick, public, to the point and fixes are deployed as soon as they are done. There are performance issues with ARM patches but they are taken as necessary.

    They just got lucky to be right most of the time.
    (Helps that they use a much simpler RISC architecture : Their engineer have probably less to review until they can give a definite answer about what is exploitable.
    They can mass-exclude any ARM core that doesn't do speculative execution at all (e.g.: RaspberryPi) ).

    AMD is just ignoring it altogether until they no longer can. Regarding Spectre: near zero chance > microcode and software updates are coming, this you can read in statement on their page.

    Mordern CPUs *are* complex, it's not impossible for not everybody in a company to know every single details.

    Spectre variant 2 is the perfect exemple :
    Variant 2 Spectre works by relying on extremely precise gory detail of the implementation of speculative execution around indirect jumps whose destination isn't even known at execution time
    (e.g.: a jumptable whose index depends on a result that isn't computed yet.
    e.g: That's one possible form to compile a C/C++ ."switch" block into machine code.
    That's also what happens when you need to call the virtual overloaded member function of a C++ object member of an array and you haven't computed the index into the array yet)

    The Google demo code relies on the format of the internal data that the branch predictor uses to makes it best guess to where this as of yet unkown destination isn't know.
    (Basically, the CPU keeps notes of where it jumped-to most of the times during the past when encountering this point of code.
    But the way the CPU write down "this point of code" in it notes is actually imprecise and can lead to confusion.
    More or less, it's a hash and Google has found a way to cause a hash collision.
    The attacker causes their own attack-program to jump to position A, whenever execution arrives at instruction B.
    Then the exploited program reaches a different instruction C, but the CPU is confused and thinks it's again at instruction B, and jumps to position A "out of habit" based on its notes, even if in the exploited program, there's no way this could happen ever (e.g.: there's no "position A" listed in the jump table). )

    Should Intel admit that they are vulnerable ? Yes, Google caught them with their pants down on this one.

    But, the Intel Xeon exploited by Google demo code certainly works completely differently than any AMD CPU.
    So for sure they can guarantee that the exact exploit code won't work for on AMD CPUs
    (It would be reasonnable guess, even without speaking to any engineer)

    Now: is it definitely impossible to somewhat exploit the jump prediction in a globally similar way ?
    Well difficult to exclude.
    AMD would need to discuss it at lengths with their engineers experts in branch prediction on their CPU.

    So first "nearly-zreo" (Shouldn't not work, but who knows ?)

    And then, once AMD manages to get hold eventually of the guy who knows: Oh, shit, it turns out there could be a completely different method that could perhaps be applied to exploit indirect jumps on some recent architectures.
    So update the page to tell people to do the updates (while continuing to review with the engineer to try to give an actual answer whether there is actually a viable exploit).

    AMD are trying their best, but CPUs are complex stuff, and it's not easy to give a definitive answer fast.

    --
    "Sufficiently advanced satire is indistinguishable from reality." - [Tips: 1DrYakQDKCQ6y52z6QbnkxHXAocMZJE61o ]
    1. Re:Communicating. by Anonymous Coward · · Score: 3, Insightful

      ...it's not impossible for not everybody in a company to know every single details.

      This broke my brain. Can you re-word it as a car analogy?

  6. Spectre Variant 2 - CPU specific too. by DrYak · · Score: 3, Informative

    Spectre Variant 2 is also heavily CPU specific.
    The exploit needs to know how the predictor used for indirect branches works (i.e. jumps where the destination isn't know yet, like jump tables (ways to do a C/C++ switch) or calling overloaded virtual C++ members in an array of object) in order too fool it and force it to guess wrong and jump to a completely wrong destination.

    It's been demonstrated on Intel CPU.

    ARM reports that the few Cortex cores that do speculative execution are affected.
    (But, no ARM-specific exploit code is mentioned).

    AMD knows that the Intel-specific code won't work (duh... obviously), but they cannot exclude that there won't be any way to exploit their indirect branch speculation ("near zero", not "zero" chance). Currently they recommend to apply patche, while they try to work out if there are possible viable exploitable to be made against their indirect branch prediction.

    PowerPC G3 and G4 are not exploitable, I've read. They *do* speculative execution. But they either don't speculate around indirect jumps, or don't speculate far enough to be actually exploitable in practice.

    --
    "Sufficiently advanced satire is indistinguishable from reality." - [Tips: 1DrYakQDKCQ6y52z6QbnkxHXAocMZJE61o ]