Meltdown & Spectre - Kernel Side-Channel Attacks - CVE-2017-5754 CVE-2017-5753 CVE-2017-5715

Public Date: January 3, 2018, 10:00 pm
Updated -
Resolved Status
Important Impact

Insights vulnerability analysis

View exposed systems

Red Hat has been made aware of multiple microarchitectural (hardware) implementation issues affecting many modern microprocessors, requiring updates to the Linux kernel, virtualization-related components, and/or in combination with a microcode update.  An unprivileged attacker can use these flaws to bypass conventional memory security restrictions in order to gain read access to privileged memory that would otherwise be inaccessible. There are 3 known CVEs related to this issue in combination with Intel, AMD, and ARM architectures. Additional exploits for other architectures are also known to exist. These include IBM System Z,  POWER8 (Big Endian and Little Endian), and POWER9 (Little Endian).

Background Information

An industry-wide issue was found with the manner in which many modern microprocessor designs have implemented speculative execution of instructions (a commonly used performance optimization). There are three primary variants of the issue which differ in the way the speculative execution can be exploited. All three rely upon the fact that modern high performance microprocessors implement both speculative execution, and utilize VIPT (Virtually Indexed, Physically Tagged) level 1 data caches that may become allocated with data in the kernel virtual address space during such speculation.

The first two variants abuse speculative execution to perform bounds-check bypass (CVE-2017-5753), or by utilizing branch target injection (CVE-2017-5715) to cause kernel code at an address under attacker control to execute speculatively. Collectively these are known as "Spectre".  Both variants rely upon the presence of a precisely-defined instruction sequence in the privileged code, as well as the fact that memory accesses may cause allocation into the microprocessor’s level 1 data cache even for speculatively executed instructions that never actually commit (retire).  As a result, an unprivileged attacker could use these two flaws to read privileged memory by conducting targeted cache side-channel attacks. These variants could be used not only to cross syscall boundary (variant 1 and variant 2) but also guest/host boundary (variant 2).

The third variant (CVE-2017-5754) relies on the fact that, on impacted microprocessors, during speculative execution of instruction permission faults, exception generation triggered by a faulting access is suppressed until the retirement of the whole instruction block. Researchers have called this exploit "Meltdown".  Subsequent memory accesses may cause an allocation into the L1 data cache even when they reference otherwise inaccessible memory locations. As a result, an unprivileged local attacker could read privileged (kernel space) memory (including arbitrary physical memory locations on a host) by conducting targeted cache side-channel attacks.

Acknowledgements

Red Hat would like to thank Google Project Zero for reporting these flaws.

Additional References

Is CPU microcode available to address CVE-2017-5715 via the microcode_ctl package ?

Have questions? Watch the webinar on demand.

Find out more about the Speculative Store Bypass, which was announced in May 2018.

What are Meltdown and Spectre? Here’s what you need to know.

https://googleprojectzero.blogspot.ca/2018/01/reading-privileged-memory-with-side.html 

https://meltdownattack.com/

Speculative Execution Exploit Performance Impacts - Describing the performance impacts to security patches for CVE-2017-5754 CVE-2017-5753 and CVE-2017-5715Controlling the Performance Impact of Microcode and Security Patches for CVE-2017-5754 CVE-2017-5715 and CVE-2017-5753 using Red Hat Enterprise Linux Tunables

AMD Reccomendations for CVE-2017-5715

Additional Red Hat Product References

Options to address CVE-2017-5753 on XEN platform

Impacts of CVE-2017-5754, CVE-2017-5753, and CVE-2017-5715 to Red Hat Virtualization products

Impact of CVE-2017-5754, CVE-2017-5753, and CVE-2017-5715 to Red Hat OpenStack

Satellite 6 How to Provide Errata for Meltdown/Spectre to Content Hosts (CVE-2017-5753, CVE-2017-5754, and CVE-2017-5715)

Impacted Products

Red Hat Product Security has rated this update as having a security impact of Important.

The following Red Hat product versions are impacted:

  • Red Hat Enterprise Linux 5

  • Red Hat Enterprise Linux 6

  • Red Hat Enterprise Linux 7

  • Red Hat Atomic Host

  • Red Hat Enterprise MRG 2

  • Red Hat OpenShift Online v2

  • Red Hat OpenShift Online v3

  • Red Hat Virtualization (RHEV-H/RHV-H)

  • Red Hat Enterprise Linux OpenStack Platform 6.0 (Juno)

  • Red Hat Enterprise Linux OpenStack Platform 7.0 (Kilo) for RHEL7

  • Red Hat Enterprise Linux OpenStack Platform 7.0 (Kilo) director for RHEL7

  • Red Hat OpenStack Platform 8.0 (Liberty)

  • Red Hat OpenStack Platform 8.0 (Liberty) director

  • Red Hat OpenStack Platform 9.0 (Mitaka)

  • Red Hat OpenStack Platform 9.0 (Mitaka) director

  • Red Hat OpenStack Platform 10.0 (Newton)

  • Red Hat OpenStack Platform 11.0 (Ocata)

  • Red Hat OpenStack Platform 12.0 (Pike)

While Red Hat's Linux Containers are not directly impacted by kernel issues, their security relies upon the integrity of the host kernel environment. Red Hat recommends that you use the most recent versions of your container images. The Container Health Index, part of the Red Hat Container Catalog, can always be used to verify the security status of Red Hat containers. To protect the privacy of the containers in use, you will need to ensure that the Container host (such as Red Hat Enterprise Linux or Atomic Host) has been updated against these attacks. Red Hat has released an updated Atomic Host for this use case.

Attack Description and Impact

The attacks described in this article abuse the speculative execution capability of modern high-performance microprocessors. Modern microprocessors implement a design optimization known as “Out-of-Order” (OoO) execution, meaning the microprocessor will begin to execute independent instructions as soon as their data dependencies become available (so-called “data flow” model) rather than always executing instructions in the literal order provided by the programmer through their application binary. The illusion of a sequential execution is maintained within the processor by means of various internal reordering structures that buffer these intermediate execution states of the processor and present the in-order results. Out-of-Order (OoO) Execution was originally invented by Robert Tomasulo in 1967 for use in the early IBM mainframe systems. In the intervening decades, it has become a standard feature of nearly all microprocessors. 

An extension of the Out-of-Order execution model adds highly sophisticated branch prediction algorithms that aim to predict whether a given path (branch) of software code will be executed. A branch can be thought of as changing the flow of instructions being executed by the processor in response to an “if” statement of the form “if this, then do A, otherwise do B”. The condition upon which a branch is taken or not taken often depends upon data that may not immediately be available (for example, because it requires a load from slower RAM into the internal microprocessor cache hierarchy). Since the branch condition may not be ready in a timely manner, the processor may begin to speculatively execute the most likely path, based on input from the branch predictor. Results from this execution are stored in such a manner that the entire path can be discarded if the speculated branch direction later turns out to be incorrect. Thus, speculative execution is normally completely invisible to the programmer, or to other users of the same system.

The attacks described in this article rely upon breaking open the black box that is the internal state of the microprocessor during speculative execution. In particular, the attacks rely upon a technique known as cache side-channel analysis. During speculative execution, a processor will not intermediately make results available in memory or registers visible to the programmer, to other processors, or to other running applications. Yet, in order to access memory within speculated code paths, it must bring the data in the processor cache. Side-channel analysis allows an attacker to observe speculated allocations (loads) into the system caches, even those coming from execution paths that ultimately have been discarded. A specially crafted program can then be designed to speculatively perform loads into the cache from privileged memory locations, and monitor the results which can be used to infer the content of that privileged memory.

One case that triggers CPU speculative execution is branches. An attacker can start by training the branch predictor that a particular branch in kernel code is heavily taken (or not taken). The next time the branch executes, the processor will start executing the code in the direction chosen by the attacker. If the attacker chooses a path that loads a value from memory, such load will be executed speculatively.  Attacks against branch prediction can (in some affected microprocessor implementations) be extended across the kernel/hypervisor boundary, allowing unprivileged guest Operating Systems to exert influence over the execution of the hypervisor and, when combined with side-channel analysis, to extract sensitive hypervisor memory.

The effects of speculative execution however can be even more wide-ranging. Because the internal state of the microprocessor is not visible to the programmer, or to other users or applications running on the system, the processor may perform speculative data accesses even before checking whether they are permitted. Permission checks will occur in parallel and ultimately trigger an abort of the speculation prior to retiring the speculated instructions and making their execution results visible outside the processor. If the processor speculatively uses cached data from memory prior to completing the permission checks, then it becomes possible to observe that data by using it in subsequent memory accesses.

One example of such permission checks is page access checks from the memory management unit (MMU). Paging, also known as virtual memory, is a common feature of high performance microprocessors; it lets the operating system control the mapping of virtual addresses into the physical addresses of the system RAM, and also limit accesses to the virtual addresses through access control bits. For example, a page can be marked as “read-only” (so that writes cause a page fault exception) or as “kernel memory” (so that user-mode accesses cause a page fault exception).

Because the processor’s permission checks enforce that user applications cannot access kernel memory, it is standard practice in the industry for operating system kernels (including Linux) to map kernel virtual memory addresses into the same address space as user applications. Doing so creates a significant performance advantage since applications make frequent use of kernel-provided system calls, and switching address spaces during each system call would incur a significant performance overhead. Each switch would require flushing (invalidating) the content of many internal CPU structures, such as TLBs (Translation Lookaside Buffers) that cache virtual-to-physical memory translations and accelerate the use of virtual memory.

Sharing the page tables between the kernel and user applications, however, enables another kind of attack against speculative execution. In this case, the preparatory phase has the attacker trick the kernel into loading an “interesting” virtual address into the processor’s Level 1 (L1) data cache. The L1 data cache is commonly organized using a technique known as VIPT (Virtually Indexed, Physically Tagged), which lets the virtual-to-physical address translation and permission checks occur in parallel with access. In the presence of a shared virtual address space, kernel privileged virtual addresses might be accessed speculatively through the L1 cache by untrusted user code during speculative execution, and the loaded values can be used further down the speculatively-executed path. A second speculative memory access can thus fill the cache in a manner that depends on privileged memory contents, and the effects can be observed to derive those contents.

These microprocessor side-channel attacks may allow an untrusted user with access to a machine to extract sensitive information from privileged kernel or hypervisor memory, as well as from other applications or virtual machines running on the same system. Mitigation involves a number of discrete steps, some or all of which may be required depending upon the exact make and model of the microprocessor, each of which may be vulnerable to a differing extent to each variant of the attack:

  • Separating the kernel and user virtual address spaces: this is performed using a design change to the Operating System kernel known as KPTI (Kernel Page Table Isolation), sometimes referred to using the older name “KAISER”. 
  • Disabling indirect branch prediction upon entry into the kernel or into the hypervisor: New capabilities have been added to many microprocessors across the industry through microcode, millicode, firmware, and other updates. These new capabilities are leveraged by updates to Red Hat Enterprise Linux which control their use.
  • Fencing speculative loads of certain memory locations: Such loads have to be annotated through small changes to the Linux kernel, which have been integrated into Red Hat updates.

These software solutions, in combination with microcode, millicode, and firmware updates can mitigate the attacks described in this article. However, the mitigation comes at some cost to system performance. Depending upon the specific system, make, and model of the microprocessors, as well as the characteristics of the workloads, the performance impact can be significant. Red Hat is taking a proactive position that favors security over performance, while allowing users the flexibility to assess their own environment and make appropriate tradeoffs through selectively enabling and disabling the various mitigations.

The Red Hat Performance Engineering team has created a Knowledgebase article reporting observed performance impact for a variety of representative workloads, and describing options users can take to disable parts of the security fixes to regain the desired level of performance if the customer is confident their computers are physically isolated.  Additional performance data will be published as this incident develops.

The Red Hat Performance Engineering and Product Engineering teams have developed a Knowledgebase article detailing the tunables available to selectively enable or disable these new security features.

Additional guidance for subscribers using AMD-based systems can be found in this Knowledgebase article.

Detection & Diagnosis

Determine if your system is vulnerable

Red Hat has created a Labs app to assist in detection of exposure to these vulnerabilities.  Subscribers can use the following link to access our Labs tool.

Determine if your system is vulnerable. Use the detection script to determine if your system is currently vulnerable to this flaw. To verify the legitimacy of the script, you can download the detached GPG signature as well. The current version of the script is 3.3.

For subscribers running Red Hat Virtualization products, a Knowledgebase article has been created to verify OEM-supplied microcode/firmware has been applied.

Take Action

Red Hat customers running affected versions of the Red Hat products are strongly recommended to update them as soon as errata are available. Customers are urged to apply the appropriate updates immediately.  All impacted products should apply fixes to mitigate all 3 variants; CVE-2017-5753 (variant 1),  CVE-2017-5715 (variant 2), and CVE-2017-5754 (variant 3).

NOTES

  • Meltdown is the branded name for CVE-2017-5754 (variant 3)
  • Spectre is the branded name for the combined CVE-2017-5753 (variant 1) & CVE-2017-5715 (variant 2)
  • Due to the nature of changes required, a kpatch for customers running Red Hat Enterprise Linux 7.2 or greater will NOT be available.
  • Variant 2 can be exploited both locally (within the same OS) and through the virtualization guest boundary. Fixes require CPU microcode/firmware to activate.  Subscribers are advised to contact their hardware OEM to receive the appropriate microcode/firmware for their processor.  An additional Knowledgebase article is available with more details.
  • The errata for eligible releases that address CVE-2017-5754 (Red Hat Enterprise Linux 6), CVE-2017-5753 (Red Hat Enterprise Linux 5 and 6) and CVE-2017-5715 (Red Hat Enterprise Linux 5 and 6) do also include support for x86 32bit (i686) kernels.
  • For customers using Red Hat OpenStack Platform, an additional Knowledgebase article is also available.
  • For customers using Red Hat Satellite 6, an additional Satellite 6 Knowledgebase article is also available. NOTE: Please use the table below to help quickly identify the specific RHSA ID's that you want to apply to your systems.

CVE-2017-5754 (variant 3, aka Meltdown) patches for 32-bit Red Hat Enterprise Linux 5

Red Hat has no current plans to provide mitigations for the Meltdown vulnerability in 32-bit Red Hat Enterprise Linux 5 environments.

Following many hours of engineering investigation and analysis, Red Hat has determined that introducing changes to the Red Hat Enterprise Linux 5 environment would destabilize customer deployments and violate our  application binary interface (ABI) and kernel ABI commitments to customers who rely on Red Hat Enterprise Linux 5 to be absolutely stable.

Although Red Hat has delivered patches to mitigate the Meltdown vulnerability in other supported product offerings, the 32-bit Red Hat Enterprise Linux 5 environment presents unique challenges.  The combination of limited address space in 32-bit environments plus the mechanism for passing control from the userspace to kernel and limitations on the stack during this transfer make the projected changes too invasive and disruptive for deployments that require the highest level of system stability.  By contrast, 32-bit Meltdown mitigations have been delivered for Red Hat Enterprise Linux 6, where the changes are far less invasive and risky.

Updates for Affected Products

ProductPackageAdvisory/UpdateApplicable to Variant
Red Hat Enterprise Linux 7 (z-stream)kernelRHSA-2018:00071,2,3
Red Hat Enterprise Linux 7kernel-rtRHSA-2018:00161,2,3
Red Hat Enterprise Linux 7libvirtRHSA-2018:00292
Red Hat Enterprise Linux 7qemu-kvmRHSA-2018:00232
Red Hat Enterprise Linux 7dracutRHBA-2018:00422
Red Hat Enterprise Linux 7.3 Extended Update Support [2]kernelRHSA-2018:00091,2,3
Red Hat Enterprise Linux 7.3 Extended Update Support [2]libvirtRHSA-2018:00312
Red Hat Enterprise Linux 7.3 Extended Update Support [2]qemu-kvmRHSA-2018:00272
Red Hat Enterprise Linux 7.3 Extended Update Support [2]dracutRHBA-2018:00432
Red Hat Enterprise Linux 7.2 Update Services for SAP Solutions, & Advanced Update Support [3],[4]kernelRHSA-2018:00101,2,3
Red Hat Enterprise Linux 7.2 Update Services for SAP Solutions, & Advanced Update Support [3],[4]libvirtRHSA-2018:00322
Red Hat Enterprise Linux 7.2 Update Services for SAP Solutions, & Advanced Update Support [3],[4]qemu-kvmRHSA-2018:00262
Red Hat Enterprise Linux 7.2 Update Services for SAP Solutions, & Advanced Update Support [3],[4]dracutRHBA-2018:00622
Red Hat Enterprise Linux 6 (z-stream)kernelRHSA-2018:13191,2,3
Red Hat Enterprise Linux 6libvirtRHSA-2018:00302
Red Hat Enterprise Linux 6qemu-kvmRHSA-2018:00242
Red Hat Enterprise Linux 6.7 Extended Update Support [2]kernelRHSA-2018:13461,2,3
Red Hat Enterprise Linux 6.7 Extended Update Support [2]libvirtRHSA-2018:01082
Red Hat Enterprise Linux 6.7 Extended Update Support [2]qemu-kvmRHSA-2018:01032
Red Hat Enterprise Linux 6.6 Advanced Update Support [3],[4]kernelRHSA-2018:00171,2,3
Red Hat Enterprise Linux 6.6 Advanced Update Support [3],[4]libvirtRHSA-2018:01092
Red Hat Enterprise Linux 6.6 Advanced Update Support [3],[4]qemu-kvmRHSA-2018:01042
Red Hat Enterprise Linux 6.5 Advanced Update Support [3]kernelRHSA-2018:00221,2,3
Red Hat Enterprise Linux 6.5 Advanced Update Support [3]libvirtRHSA-2018:01102
Red Hat Enterprise Linux 6.5 Advanced Update Support [3]qemu-kvmRHSA-2018:01052
Red Hat Enterprise Linux 6.4 Advanced Update Support [3]kernelRHSA-2018:00181,2,3
Red Hat Enterprise Linux 6.4 Advanced Update Support [3]libvirtRHSA-2018:01112
Red Hat Enterprise Linux 6.4 Advanced Update Support [3]qemu-kvmRHSA-2018:01062
Red Hat Enterprise Linux 6.2 Advanced Update Support [3]kernelRHSA-2018:00201,2,3
Red Hat Enterprise Linux 6.2 Advanced Update Support [3]libvirtRHSA-2018:01122
Red Hat Enterprise Linux 6.2 Advanced Update Support [3]qemu-kvmRHSA-2018:01072
Red Hat Enterprise Linux 5 Extended Lifecycle Support [1]kernelRHSA-2018:1196

1,2,3

Red Hat Enterprise Linux 5.9 Advanced Update Support [3]kernelRHSA-2018:12521,2,3
RHEL Atomic HostkernelImages respun on 5 January 20181,2,3
Red Hat Enterprise MRG 2kernel-rtRHSA-2018:00211,2,3
Red Hat Virtualization 4 (RHEV-H/RHV-H) [6]redhat-virtualization-hostRHSA-2018:00471,2,3
Red Hat Virtualization 4 (RHEV-H/RHV-H) [6]rhvm-applianceRHSA-2018:00451,2,3
Red Hat Virtualization 4 (RHEV-H/RHV-H) [6]qemu-kvm-rhevRHSA-2018:00252
Red Hat Virtualization 4 (RHEV-H/RHV-H) [6]vdsmRHSA-2018:00502
Red Hat Virtualization 4 (RHEV-H/RHV-H) [6]ovirt-guest-agent-dockerRHSA-2018:00472
Red Hat Virtualization 4 (RHEV-H/RHV-H) [6]rhevm-setup-pluginsRHSA-2018:00512
Red Hat Virtualization 3 (RHEV-H/RHV-H) [6]redhat-virtualization-hostRHSA-2018:00441,2,3
Red Hat Virtualization 3 ELS (RHEV-H/RHV-H) [6]rhev-hypervisor7RHSA-2018:00461,2,3
Red Hat Virtualization 3 ELS (RHEV-H/RHV-H) [6]qemu-kvm-rhevRHSA-2018:00282
Red Hat Virtualization 3 ELS (RHEV-H/RHV-H) [6]vdsmRHSA-2018:00482
Red Hat Virtualization 3 ELS (RHEV-H/RHV-H) [6]rhevm-setup-pluginsRHSA-2018:00522
Red Hat Enterprise Linux OpenStack Platform 6.0 (Juno) for RHEL7 [7]qemu-kvm-rhevRHSA-2018:00542
Red Hat Enterprise Linux OpenStack Platform 7.0 (Kilo) for RHEL7 [7]qemu-kvm-rhevRHSA-2018:00552
Red Hat Enterprise Linux OpenStack Platform 7.0 (Kilo) director for RHEL7 [7]director imagesRHBA-2018:00641,2,3
Red Hat OpenStack Platform 8.0 (Liberty) [7]qemu-kvm-rhevRHSA-2018:00562
Red Hat OpenStack Platform 8.0 (Liberty) [7]director imagesRHBA-2018:00651,2,3
Red Hat OpenStack Platform 9.0 (Mitaka) [7]qemu-kvm-rhevRHSA-2018:00572
Red Hat OpenStack Platform 9.0 (Mitaka) [7]director imagesRHBA-2018:00691,2,3
Red Hat OpenStack Platform 10.0 (Newton) [7]qemu-kvm-rhevRHSA-2018:00582
Red Hat OpenStack Platform 10.0 (Newton) [7]director imagesRHBA-2018:00671,2,3
Red Hat OpenStack Platform 11.0 (Ocata) [7]qemu-kvm-rhevRHSA-2018:00592
Red Hat OpenStack Platform 11.0 (Ocata) [7]director imagesRHBA-2018:00681,2,3
Red Hat OpenStack Platform 12.0 (Pike) [7]qemu-kvm-rhevRHSA-2018:00602
Red Hat OpenStack Platform 12.0 (Pike) [7]director imagesRHBA-2018:00661,2,3
Red Hat OpenStack Platform 12.0 (Pike) [7]containersRHBA-2018:00701,2,3


[1] An active ELS subscription is required for access to this patch.  Please contact Red Hat sales or your specific sales representative for more information if your account does not have an active ELS subscription.

[2] An active EUS subscription is required for access to this patch.  Please contact Red Hat sales or your specific sales representative for more information if your account does not have an active EUS subscription.

What is the Red Hat Enterprise Linux Extended Update Support Subscription?

[3] An active AUS subscription is required for access to this patch in RHEL AUS.

What is Advanced mission critical Update Support (AUS)?

[4] An active TUS subscription is required for access to this patch in RHEL TUS.

[5] Subscribers should contact their hardware OEMs to get the most up-to-date versions of CPU microcode/firmware.

[6] Impacts of CVE-2017-5754, CVE-2017-5753, and CVE-2017-5715 to Red Hat Virtualization products

[7] Impact of CVE-2017-5754, CVE-2017-5753, and CVE-2017-5715 to Red Hat OpenStack

Mitigation

There is no known mitigation, other than applying vendor software updates combined with hardware OEMs CPU microcode/fiirmware. All Red Hat customers should apply vendor solutions to patch their CPUs, and update the kernel as soon as patches are available.

Customers are advised to take a risk-based approach in mitigating this issue.  Systems that require high degrees of security and trust should be addressed first, and should be isolated from untrusted systems until such time as treatments can be applied to those systems to reduce the risk of exploit.

Customers running Xen hypervisors should be aware of technical limitations of that software that cannot completely eliminate the variant 2 exploit, and cannot eliminate the variant 3 exploit on paravirtualized guests.  Red Hat has prepared a Knowledgebase article detailing the Xen situation and options available to Xen hypervisor users.

50 Comments

Subscriber exclusive content

A Red Hat subscription provides unlimited access to our knowledgebase, tools, and much more.

Current Customers and Partners

Log in for full access

Log In

I know the issue is still really fresh and there can be many changes yet not known, however I have to ask because our customers begin to ask us too.

When RH expects complete set of erratas to be released?

We need it for testing of the performance impact on our products (especially when run in VM guests).

Thank you very much!

We will be pushing errata out as soon as they have passed our QA team's testing. The more modern versions were easier to backport patches from upstream, and as you progress backwards the fixes change from a backporting exercise into a complete rewrite. We expect all packages for RHEL7 to be available shortly, with RHEL6 following closely behind. Our layered products will be respinning now that the signed packages are available, so products like OpenStack or RHEL Atomic will be available within a few days. RHEL5 should be complete in the next week or so, but working with 10+ year old code we are very cautious about ensuring there are no unforeseen regressions the newer code could introduce. Our goal is to provide the necessary fixes and be as minimally invasive as possible to that older code to ensure that it continues to work consistently and stably as our subscribers expect it to.

the first fix supplied is for virtual guest containers. Does this mean that bare metal installs are less affected by the bug? Also the kernel fix available for RHEL 6 is version 6.9 and my customers still rely on RHEL 6.7. How can this be resolved bearing in mind we do not have extended support.

Hi, In regards to the concern over 6.7 access, this is available to all customers with an active EUS contract. Please contact Red Hat Sales, if you wish to inquire for. Bare metal and Virt systems are both impacted by this, in slightly different variations, where CVE-2017-5715 requires changes to multiple (kernel, microcode and various virtualization) RPMS to be applied to both guest and host systems.

As soon as possible. Per your comments, we need to be careful with the performance impact. https://access.redhat.com/articles/3307751

The article references sysctl tunables, but doesn't list them. What needs to be set to disable this at runtime for testing purposes?

Hi Chris,

You may want to check out this option -> https://access.redhat.com/articles/3307751#comment-12553

Regards,
Christian

Hi there Chris. Our Engineering teams have compiled the tunable options for this issue into a swanky new KCS for your reading pleasure: https://access.redhat.com/articles/3311301 (also cited in the References and Impact section of this article).

Any idea why these options were made "edit your grub config or edit rc.local" type options rather than something that can be controlled with sysctl/sysctl.conf?

Hi Chris,

Will the tunables be available for s390x as well ?

Hi Team,

Please provide the Update and send the Notification once the complete set of erratas is released?

Regards,

Could you refer to something to read more about this: "Additional exploits for other architectures are also known to exist. These include IBM System Z, POWER8 (Big Endian and Little Endian), and POWER9 (Little Endian)."

I also would like to have more informations about this

Adding my vote for more clarity regarding Power. IBM is currently silent on this and we are trying to determine how exposed our Power systems are. Currently, Red Hat is the only source of any information my team can find regarding Power and these exploits.

https://www.ibm.com/blogs/psirt/potential-impact-processors-power-family/

I'd imagine this performance impact greatly accentuated on hyper-visors. We have hundreds of them on Xen based HV's, and thousands of VM's running Oracle. Going to be a fun month!

Dears, does it impact RHEL 7.4 with kernel: 3.10.0-693.el7.x86_64 ?

Yes, it does.

Does it impacting the servers which are there in 3.10.0-693.2.2.el7.x86_64 and microcode_ctl-2.1-22.el7.x86_64 , please confirm.

Are there any known issues/prerequisites for applying the patches on RHEL virtual machines in an VMware ESXi environment ?

You need to contact VMware about fixing hypervisor/host side. For guest side the instructions for corresponding RHEL release applies.

Dears, We have VMs environment that includes RHEL 4 upto 7.4, will there be a detailed procedures for patching these systems? thanks!

Forget RHEL4, it's already out of support (even ELS). Maybe RH would provide you patched packages if you'd be willing to pay for it extra price...

For RHEL 5ELS/6/7 the procedure should be simple. 'yum update' as usual. Just wait when fixed packages are available for respective platform.

Or if you're feeling brave: yum -y update && reboot
Assuming of course that you've got the relevant patch repositories configured.

Our Redhat TAM recommended to upgrade the Kernel and Microcode once the RHSA's for RHEL6/7 are added to your repo. RHEL6 Kernel: RHSA-2018:0008 RHEL6 microcode: RHSA-2018:0013 RHEL7 Kernel: RHSA-2018:0007 RHEL7 microcode: RHSA-2018:0012

  1. yum install kernel
  2. yum update microcode_ctl
  3. Reboot (init 6)

Saad - RHEL4 has been out of support March 31, 2017 and will receive no further updates. You will need to move to a more modern platform to be able to get fixes for this issue. Technologically RHEL4 and the modern Linux kernel are drastically different and make it incredible difficult to duplicate fixes even if it was in support.

I see where new errata is available for the servers I am responsible for. However, getting downtime to reboot is rare, but not impossible. Do you foresee the current errata will fix the kernel side-channel attacks or do you expect there will be other kernel updates within a week or so to fix additional issues that may appear after these updates are applied? I know you don't have a crystal ball to see into the future, but as I stated, getting downtime is rare for me.

Thank you!

The current patches will eliminate the exposure to the vulnerability. It depends on your risk tolerance, patching policies, and change management processes if you decide to wait a bit longer. You might, as a business, decide that completely mitigating this risk does not justify the performance hit your systems might incur. No functional changes are slated for the near future. As we have more time and now the ability to collaborate with the larger Linux community we will be able to refine the fixes and improve performance in future updates. We're currently testing POWER-based patches, which should be available in a respin we're planning in a future release in the near future.

Does it impacting the servers which are there in 3.10.0-693.2.2.el7.x86_64 and microcode_ctl-2.1-22.el7.x86_64 , please confirm.

Every supported kernel available prior to yesterday is impacted by this flaw.

Hi,

What happened to the microcode_ctl package lines that were in the "Resolve" chart above earlier today? Is this package being re-built? There's no longer a line with a reference to the proper RHSA to resolve this package in the chart above. The latest package version I see in the downloads area for RHEL6 is 1.17-25.2.el6_9 from Dec 15th in the changelog.

Thanks,

michael

Subscribers are advised to contact their hardware OEM to receive the appropriate microcode/firmware for their processor. Given the tight timeframe that incident was released, Red Hat was not provided a complete set of microcode to cover all affected CPUs. We will be providing both microcode_ctl and linux_firmware that covers the limited subset of chipsets we were able to test, but this will NOT address many CPUs that you may have in use in your server fleet. Again, contacting your hardware vendor will ensure you have the appropriate software to enable the protections for Variant 2 of this issue.

Thanks,

For clarification, since people keep interchanging the words microcode and firmware, and I'm not quite 100% clear on what the microcode_ctl package does vs. BIOS/EFI-level firmware code. Do you mean getting another microcode_ctl-specific package from the hardware vendor that installs at the OS/Linux level, or are you talking about hardware BIOS/EFI-level firmware that updates that are independent from the OS/Linux?

Or in other words -- if I update the kernel and update the regular BIOS/EFI-level firmware to an approved level, is that sufficient to resolve this, or does there still need to be some microcode_ctl-specific package update from the vendor, in addition to the BIOS/EFI-level firmware update?

Thanks.

Is there an ETA for the dracut errata?

Thanks!

The dracut packages are IN_PUSH right now and should be available to you via our CDN shortly.

Any downside to installing the patches now without the corresponding system manufacturer firmware patch? Nothing breaks if I update now without (ever?) finding a firmware patch for my chipset, right?

Hi Greg,

It should not break anything. Variant 2 simply won't be patched without proper firmware/microcode changes.

Best, Nick

Christian, thanks for that link

As far as I can see under the 'Resolve' tab, 6.3 is not even in the list! Does that mean 6.3 is not affected by either of the malware and needs no precautionary steps/updates to be performed? Or, is the update simply not supported and should upgrade the version (to i.e, 6.4 which supports this meltdown and spectre patches)?

Let's better say that all x86_64 CPUs are affected (Intel with both Spectre/Meltdown and AMD/ARM just with Spectre). So 6.3 is for sure impacted as well. In general, all kernel (and other affected packages) versions prior to errata versions from 2018-01-03 are affected because there is no fix for these vulnerabilities.

Hello Jaroslav, Thank you for the response. Indeed, you are right. I just finished my studies on the malware. However, I'm still wondering how to fix this 6.3 virtual box as I'm unable to find any official updates for the same under the resolve tab!

As there is no active update stream for Red Hat Enterprise Linux 6.3 (or 6.0, 6.1, or 6.8) it is not listed. The Resolve tab only lists version with active update stream that will have updates released. If you're still on 6.3, you should upgrade to a newer version that is still supported and where you have active subscription for the relevant update stream.

I think the advisory of qemu-kvm for Red Hat Enterprise Linux 6 is not RHSA-2018:0026 but RHSA-2018:0024.

| Red Hat Enterprise Linux 7.2 Advanced Update Support***,**** 2 qemu-kvm RHSA-2018:0026

| Red Hat Enterprise Linux 6 2 qemu-kvm RHSA-2018:0026

Confirmed, please fix the errata link for RHEL 6 to RHSA-2018:0024.

Corrected, thank you!

The RHSA for RHEL 6 has this line in the overview:

"In this update mitigations for x86-64 architecture are provided."

But there are updated versions of both the 32 and 64-bit kernels. I'm not entirely sure how to interpret this. Does the kernel-2.6.32-696.18.7.el6.i686 RPM actually contain the mitigations?

From what I understand and using a test script from github, the i686 is not mitigated. I posted a similar questions and a bit of my findings here

Until now, I believe that i686 is not mitigated yet. But please do correct me if I am wrong though

I have two issues- 1 - I took over a RHEL 6.9 VM server running on Hypr-V that had been built before I started. I just noticed that microcode_ctl is not installed on the server. It has been running fine for the past 3-4 years without it. Should I be concerned?.

2 - I updated the latest package available including dracut, linux-firmware, microcode_ctl and kernel on 2 RHEL 7.4 servers. I rebooted after updating the linux-firmware and also after updating the microcode_ctl. no issues. after I updated the kernel - it went straight to the grub > prompt.
This was an issue/bug Red Hat Bugzilla – Bug 1398698 with the microcrode_ctl in 7.3 where it was intermittently work or not work. This was fixed in RHBA-2017:0028. to get around the issue i would boot into rescue mode. I would verify that everything was ok which it was. then exit out and boot normally this would always fix the issue. Out of both servers 1 worked 1 did not. - these 2 servers were VM's I have other physical RHEL7 servers that i test this out on. Has anyone else had this issue happen yet. again?

Can you please tell me the impact on I/O on RHEL 7.4 guest machine on VM after applying this patch?

Pages