Kernel-memory-leaking Intel processor design flaw forces Linux, Windows redesign | Pe by SINep - TribalWar Forums
Click Here to find great hosting deals from Branzone.com


Go Back   TribalWar Forums > TribalWar Community > General Discussion
Reload this Page Kernel-memory-leaking Intel processor design flaw forces Linux, Windows redesign | Pe
Page 1 of 4
Thread Tools
SINep
VeteranXX
Old
1 - 01-03-2018, 21:23
Reply With Quote
Kernel-memory-leaking Intel processor design flaw forces Linux, Windows redesign | Pe

Front Page Article

A fundamental design flaw in Intel's processor chips has forced a significant redesign of the Linux and Windows kernels to defang the chip-level security bug.

Programmers are scrambling to overhaul the open-source Linux kernel's virtual memory system. Meanwhile, Microsoft is expected to publicly introduce the necessary changes to its Windows operating system in an upcoming Patch Tuesday: these changes were seeded to beta testers running fast-ring Windows Insider builds in November and December.

Crucially, these updates to both Linux and Windows will incur a performance hit on Intel products. The effects are still being benchmarked, however we're looking at a ballpark figure of five to 30 per cent slow down, depending on the task and the processor model. More recent Intel chips have features such as PCID to reduce the performance hit. Your mileage may vary.

Best case: 17% slowdown
Worst case: 23% slowdown
The Register (@TheRegister) January 2, 2018

Similar operating systems, such as Apple's 64-bit macOS, will also need to be updated the flaw is in the Intel x86-64 hardware, and it appears a microcode update can't address it. It has to be fixed in software at the OS level, or go buy a new processor without the design blunder.

Details of the vulnerability within Intel's silicon are under wraps: an embargo on the specifics is due to lift early this month, perhaps in time for Microsoft's Patch Tuesday next week. Indeed, patches for the Linux kernel are available for all to see but comments in the source code have been redacted to obfuscate the issue.

However, some details of the flaw have surfaced, and so this is what we know.


More:
https://www.theregister.co.uk/2018/01/02/intel_cpu_design_flaw/
 
SINep is offline
 
Sponsored Links
GreyGhost
VeteranXX
Old
2 - 01-03-2018, 21:26
Reply With Quote
From page 2.

 
GreyGhost is offline
 
Odio
VeteranXV
Old
3 - 01-03-2018, 21:33
Reply With Quote
In other news, VIA is making x86 CPUs again: Via joint venture reveals KX-5000 x86 SoCs for Chinese PCs - The Tech Report


There is speculation that the KX-7000 8-core will be able to go toe to toe with AMDs Ryzen 7.
 
Odio is offline
 
Dangerdoggie
VeteranXV
Old
4 - 01-03-2018, 21:45
Reply With Quote
built in obsolescence, everyone buy a new computer.
 
Dangerdoggie is offline
 
SINep
VeteranXX
Old
5 - 01-03-2018, 21:47
Reply With Quote
Quote:
Originally Posted by GreyGhost View Post
From page 2.
I posted it on the news page; didn't browse the forums today.

 
SINep is offline
 
clu
VeteranXX
Contributor
Old
6 - 01-03-2018, 22:03
Reply With Quote
logging into work early for this they rebooted our clouds
 
clu is offline
 
Stealth
VeteranXV
Old
7 - 01-03-2018, 22:34
Reply With Quote
lol if you work in IT right now. What a disaster.
 
Stealth is offline
 
ArakAtak
VeteranXX
Old
8 - 01-03-2018, 23:08
Reply With Quote
If I had one of these my feeling is I would take it back to the shop and ask for a refund - doesn't perform as specified or advertised.
 
ArakAtak is offline
 
Plasmatic
VeteranXX
Contributor
Old
9 - 01-03-2018, 23:11
Reply With Quote
Quote:
the bug is present in modern Intel processors produced in the past decade.
fuuuuuuuuuuuuuuuuuuuuuu
 
Plasmatic is online now
 
Validuz
VeteranXX
Contributor
Old
10 - 01-03-2018, 23:21
Reply With Quote
What a ****ing disaster. My god.

5% to 30% performance loss?
 
Validuz is offline
 
Last edited by Validuz; 01-03-2018 at 23:24..
MC Hamster
VeteranXX
Contributor
Old
11 - 01-03-2018, 23:26
Reply With Quote
a lot longer than that. Everything since '95, excepting Itanium (lol) and pre-2013 Atoms. Spectre hits AMD and ARM as well, so basically: nothing is safe.

Performance loss is because you basically need to ditch out-of-order execution, which is particularly handy in multi-core systems.
 
MC Hamster is offline
 
Last edited by MC Hamster; 01-03-2018 at 23:31..
ArakAtak
VeteranXX
Old
12 - 01-03-2018, 23:39
Reply With Quote
Quote:
the bug is present in modern Intel processors produced in the past decade.
Quote:
Originally Posted by Validuz View Post
What a ****ing disaster. My god.

5% to 30% performance loss?
Well then we have already been more than happy about living with it so why worry now? Not a problem at all. This will be 5-30% loss on a certain process, not on the overall system anyway.

Just fix it next gen and enjoy a free boost
 
ArakAtak is offline
 
Hologram
VeteranXX
Old
13 - 01-03-2018, 23:46
Reply With Quote
is there a way to not have my computer auto patch this

how can i disable windows 10 installing updates and rebooting my system while i sleep

wtf

id rather have a buggy system than one slowed down by gay updates i dont consent to
 
Hologram is offline
 
MC Hamster
VeteranXX
Contributor
Old
14 - 01-03-2018, 23:48
Reply With Quote
As I understand it (and forgive me because it's been a long time since my Comp Sci days), it basically comes down to avoiding "wasted" CPU cycles.

Back in Ye Olden Dayes, when I was writing assembler code on SPARC boxes, you had two different registers you could send commands to be processed in the CPU. One was the command to be executed, the other was the next command to be executed. When it finished with one, it could flip them over and start working on the next while it got the other register loaded and ready to go.

The problem there arises when that next command relies on some output from the current. EG when you have "a+b=c", then "c+1=d". Assuming you know the values of a and b, then that first command is fine, but the second one is already loaded into the CPU as well, before 'c' has actually been resolved, so when it comes time to execute that, the variable is still unknown and you can't get a sensible result out of it.

Similarly, if you have some sort of control structure (eg a loop), you can inadvertently wind up pulling in the next line of code outside that loop before the system realises it needs to go back to an earlier instruction.

As a result, you need to fill your code with "nops" ('no operation') to make sure the CPU doesn't process a 'wrong' instruction.

In a multi-processor/multi-core system, that issue gets compounded, even when you're being all proper and multi-threading properly.

Out-of-order execution makes attempts to let you use some of those otherwise wasted cycles, by pulling in other instructions (that don't rely on unknown data) even if they're not really supposed to be getting calculated yet, and then re-assembling it all in the right order. This is the sort of stuff that gets stored in the processor cache.

My guess with this (and I haven't really delved right into it) is that the exploits target that cache to read registers that aren't necessarily 'owned' by the processes in question, resulting in data leaks.
 
MC Hamster is offline
 
Highfive
VeteranXX
Contributor
Old
15 - 01-03-2018, 23:54
Reply With Quote
Quote:
Originally Posted by MC Hamster View Post
As I understand it (and forgive me because it's been a long time since my Comp Sci days), it basically comes down to avoiding "wasted" CPU cycles.

Back in Ye Olden Dayes, when I was writing assembler code on SPARC boxes, you had two different registers you could send commands to be processed in the CPU. One was the command to be executed, the other was the next command to be executed. When it finished with one, it could flip them over and start working on the next while it got the other register loaded and ready to go.

The problem there arises when that next command relies on some output from the current. EG when you have "a+b=c", then "c+1=d". Assuming you know the values of a and b, then that first command is fine, but the second one is already loaded into the CPU as well, before 'c' has actually been resolved, so when it comes time to execute that, the variable is still unknown and you can't get a sensible result out of it.

Similarly, if you have some sort of control structure (eg a loop), you can inadvertently wind up pulling in the next line of code outside that loop before the system realises it needs to go back to an earlier instruction.

As a result, you need to fill your code with "nops" ('no operation') to make sure the CPU doesn't process a 'wrong' instruction.

In a multi-processor/multi-core system, that issue gets compounded, even when you're being all proper and multi-threading properly.

Out-of-order execution makes attempts to let you use some of those otherwise wasted cycles, by pulling in other instructions (that don't rely on unknown data) even if they're not really supposed to be getting calculated yet, and then re-assembling it all in the right order. This is the sort of stuff that gets stored in the processor cache.

My guess with this (and I haven't really delved right into it) is that the exploits target that cache to read registers that aren't necessarily 'owned' by the processes in question, resulting in data leaks.
no one gonna read that **** you ******
 
Highfive is online now
 
MC Hamster
VeteranXX
Contributor
Old
16 - 01-04-2018, 00:05
Reply With Quote
Quote:
Originally Posted by Highfive View Post
no one gonna read that **** you ******
As much as this place has gone downhill in recent years, not everyone here has the attention span of a toddler on amphetamines. There are some that may
 
MC Hamster is offline
 
Plasmatic
VeteranXX
Contributor
Old
17 - 01-04-2018, 00:38
Reply With Quote
Quote:
Originally Posted by Highfive View Post
no one gonna read that **** you ******
I read that **** you ******.
 
Plasmatic is online now
 
Flash
VeteranXX
Old
18 - 01-04-2018, 00:59
Reply With Quote
tl;dr

Good news is AMD stock got a bump out of this.
 
Flash is offline
 
Edofnor
VeteranXX
Old
19 - 01-04-2018, 01:12
Reply With Quote
Quote:
Originally Posted by Highfive View Post
no one gonna read that **** you ******
i read it

still rubbing my nips

thank u
 
Edofnor is offline
 
Edofnor
VeteranXX
Old
20 - 01-04-2018, 01:13
Reply With Quote
Quote:
Originally Posted by Flash View Post
tl;dr

Good news is AMD stock got a bump out of this.
ODIO, WHERE ARE U?
 
Edofnor is offline
 
Page 1 of 4
Reply


Go Back   TribalWar Forums > TribalWar Community > General Discussion
Reload this Page Kernel-memory-leaking Intel processor design flaw forces Linux, Windows redesign | Pe

Social Website Bullshit


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off


AGENT: claudebot / Y
All times are GMT -4. The time now is 15:58.