[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH for-4.18] x86/time: Fix UBSAN failure in __update_vcpu_system_time()


  • To: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
  • From: Jan Beulich <jbeulich@xxxxxxxx>
  • Date: Thu, 2 Nov 2023 09:33:34 +0100
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=suse.com; dmarc=pass action=none header.from=suse.com; dkim=pass header.d=suse.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=U2BvuN/CeamPsqtW1W+IGaWU0iyTL+kGvCgiPZLlIso=; b=ccWetqCoiKg5TfJ9k9XA6L2wgkwUPJo5rFefz0QK6aSVuiMCYV0Q2tdRgY/hZ1rnF3+jOO2/WMT4ffj340Aig1709iFo3gCWndcA69SKD+1fhSEQrgK3lHDtyd4U60MJo5FkkRe7SvSD67UO7xvbVMg+EhAWErmdVWwuVeUF1nP/m7VxM797VwIQr5PVpjT5ei+M6Qxzo63VPwcUVoId0s8uPbbUmRhRABcnppg5LpEycPODtCVPlnvpcpj+Ayii+AjUWu4RVUxGMKtm+6BbHF4HONpVjNvNiKq5sE1fSKtf8nKxrhAbWp9lPmrtoeKKqFB7Bz61h6O3Z15PBFfoWQ==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=kWkHJjXe7d3xealKlsWCp5K0udmlW4VrGjLzEgOm5lTec4LMzc2VqOuF9WKqdeppRTMJ1uyDAqCjYyTn1ErB0GbyyQ5hJSjjUKZpcyfEyXkwWtRGC/FOvZkUh2wq0NSTKWdvDDGtggc2SIDmpoS+GWmAde+1vDdRl2KyUB9taZFLKIO38uVPeecoBfFIACwDAM9TzHTSQbjQN88Lq0NspokHy4aPnlXq1cr1K4D8LZqUeyfHWhDUZV4BF5TO0gex/FBt7DVRCm7ZP6uT0w4CGhYunTr3e8ebUYpZG6W0Z9rTxps77Yx+112tpAdd1zviEwg9LOsCDlJ62cL9A+Ia5g==
  • Authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=suse.com;
  • Cc: Roger Pau Monné <roger.pau@xxxxxxxxxx>, Wei Liu <wl@xxxxxxx>, Henry Wang <Henry.Wang@xxxxxxx>, Xen-devel <xen-devel@xxxxxxxxxxxxxxxxxxxx>
  • Delivery-date: Thu, 02 Nov 2023 08:33:45 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>

On 01.11.2023 21:37, Andrew Cooper wrote:
> As reported:
> 
>   (XEN) 
> ================================================================================
>   (XEN) UBSAN: Undefined behaviour in arch/x86/time.c:1542:32
>   (XEN) member access within null pointer of type 'union vcpu_info_t'
>   (XEN) ----[ Xen-4.19-unstable  x86_64  debug=y ubsan=y  Not tainted ]----
>   ...
>   (XEN) Xen call trace:
>   (XEN)    [<ffff82d040345036>] R common/ubsan/ubsan.c#ubsan_epilogue+0xa/0xd2
>   (XEN)    [<ffff82d0403456e8>] F __ubsan_handle_type_mismatch+0x133/0x49b
>   (XEN)    [<ffff82d040345b4a>] F __ubsan_handle_type_mismatch_v1+0xfa/0xfc
>   (XEN)    [<ffff82d040623356>] F 
> arch/x86/time.c#__update_vcpu_system_time+0x212/0x30f
>   (XEN)    [<ffff82d040623461>] F update_vcpu_system_time+0xe/0x10
>   (XEN)    [<ffff82d04062389d>] F 
> arch/x86/time.c#local_time_calibration+0x1f7/0x523
>   (XEN)    [<ffff82d0402a64b5>] F common/softirq.c#__do_softirq+0x1f4/0x31a
>   (XEN)    [<ffff82d0402a67ad>] F do_softirq+0x13/0x15
>   (XEN)    [<ffff82d0405a95dc>] F arch/x86/domain.c#idle_loop+0x2e0/0x367
>   (XEN)
>   (XEN) 
> ================================================================================
> 
> It is not valid to derive a pointer from vcpu_info() prior to checking that
> the underlying map pointer is good.
> 
> Reorder actions so the NULL pointer check is first.
> 
> Fixes: 20279afd7323 ("x86: split populating of struct vcpu_time_info into a 
> separate function")
> Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>

In the interest of silencing the checker
Acked-by: Jan Beulich <jbeulich@xxxxxxxx>
However, ...

> 4.18 blocker, or we'll need to issue an XSA/CVE.

... I dare to disagree (or to at least be uncertain) here, and I further
dare to question correctness of the checker (which suggests that it might
be helpful to point out in the description which version of the compiler
it was). Quoting part of a footnote of the respective part of the C99
spec, describing the unary * operator:

"Thus, &*E is equivalent to E (even if E is a null pointer), ..."

This imo leaves it at best ambiguous whether there's any actual UB here.

Furthermore, if you deem this XSA-worthy despite the generated code not
resulting in any real misbehavior, code patterns like
(found in free_heap_pages())

            struct page_info *predecessor = pg - mask;

            /* Merge with predecessor block? */
            if ( !mfn_valid(page_to_mfn(predecessor)) ||

or (found in get_page_from_l1e())

    struct page_info *page = mfn_to_page(_mfn(mfn));
    ...
    valid = mfn_valid(_mfn(mfn));

    if ( !valid ||

would be in the same class (access outside of array bounds), just that the
checker cannot spot those without producing false positives (simply because
it doesn't know frame_table[]'s bounds). We're fully aware of the existence
of such code, and we've decided to - if at all - only eliminate such cases
(slowly) as respective code is touched anyway.

Jan

PS: argo.c:find_ring_mfn() has

    *mfn = page_to_mfn(page);
    if ( !mfn_valid(*mfn) )
        ret = -EINVAL;

which, while not at risk of yielding any UB, is an entirely pointless
check (as the underlying assumption needs to be that the struct
page_info * must already be a valid pointer, or else _its_ obtaining was
possibly UB). Having such checks in the code is at best misleading.




 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.