Re: svn commit: r322763 - head/lib/libc/amd64/sys

2017-08-24 Thread Ed Maste
On 23 August 2017 at 21:45, Shawn Webb  wrote:
> On Mon, Aug 21, 2017 at 05:39:13PM +, Konstantin Belousov wrote:
>> Author: kib
>> Date: Mon Aug 21 17:39:12 2017
>> New Revision: 322763
>> URL: https://svnweb.freebsd.org/changeset/base/322763
>>
...
>
> Hey kib,
>
> This commit breaks booting in UEFI mode under bhyve. The VM gets stuck
> when the kernel launches /sbin/init.

What svn rev did you try? (There was a followup fix to this.)
___
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


Re: svn commit: r322763 - head/lib/libc/amd64/sys

2017-08-23 Thread Shawn Webb
On Mon, Aug 21, 2017 at 05:39:13PM +, Konstantin Belousov wrote:
> Author: kib
> Date: Mon Aug 21 17:39:12 2017
> New Revision: 322763
> URL: https://svnweb.freebsd.org/changeset/base/322763
> 
> Log:
>   Optimize libc to get and set TLS using the RDFSBASE and RDGSBASE
>   instructions, if supported both by CPU and kernel.
>   
>   Reviewed by:jhb (previous version)
>   Tested by:  pho (previous version)
>   Sponsored by:   The FreeBSD Foundation
>   MFC after:  3 weeks
>   Differential revision:  https://reviews.freebsd.org/D12023
> 
> Added:
>   head/lib/libc/amd64/sys/amd64_detect_rdfsgsbase.c   (contents, props 
> changed)
>   head/lib/libc/amd64/sys/amd64_detect_rdfsgsbase.h   (contents, props 
> changed)
> Modified:
>   head/lib/libc/amd64/sys/Makefile.inc
>   head/lib/libc/amd64/sys/amd64_get_fsbase.c
>   head/lib/libc/amd64/sys/amd64_get_gsbase.c
>   head/lib/libc/amd64/sys/amd64_set_fsbase.c
>   head/lib/libc/amd64/sys/amd64_set_gsbase.c

Hey kib,

This commit breaks booting in UEFI mode under bhyve. The VM gets stuck
when the kernel launches /sbin/init. Here's a screenshot of a verbose
boot at a recent HEAD: https://imgur.com/PiJhfll

Note, the screenshot depicts HardenedBSD, not FreeBSD. Another user
attempting to boot a recent vanilla FreeBSD 12-CURRENT/amd64 snapshot
reported to me the same behavior, though, so the issue is certainly not
specific to HardenedBSD.

Reverting just this commit enabled booting in a bhyve VM again.

Thanks,

-- 
Shawn Webb
Cofounder and Security Engineer
HardenedBSD

GPG Key ID:  0x6A84658F52456EEE
GPG Key Fingerprint: 2ABA B6BD EF6A F486 BE89  3D9E 6A84 658F 5245 6EEE


signature.asc
Description: PGP signature


svn commit: r322763 - head/lib/libc/amd64/sys

2017-08-21 Thread Konstantin Belousov
Author: kib
Date: Mon Aug 21 17:39:12 2017
New Revision: 322763
URL: https://svnweb.freebsd.org/changeset/base/322763

Log:
  Optimize libc to get and set TLS using the RDFSBASE and RDGSBASE
  instructions, if supported both by CPU and kernel.
  
  Reviewed by:  jhb (previous version)
  Tested by:pho (previous version)
  Sponsored by: The FreeBSD Foundation
  MFC after:3 weeks
  Differential revision:https://reviews.freebsd.org/D12023

Added:
  head/lib/libc/amd64/sys/amd64_detect_rdfsgsbase.c   (contents, props changed)
  head/lib/libc/amd64/sys/amd64_detect_rdfsgsbase.h   (contents, props changed)
Modified:
  head/lib/libc/amd64/sys/Makefile.inc
  head/lib/libc/amd64/sys/amd64_get_fsbase.c
  head/lib/libc/amd64/sys/amd64_get_gsbase.c
  head/lib/libc/amd64/sys/amd64_set_fsbase.c
  head/lib/libc/amd64/sys/amd64_set_gsbase.c

Modified: head/lib/libc/amd64/sys/Makefile.inc
==
--- head/lib/libc/amd64/sys/Makefile.incMon Aug 21 17:38:02 2017
(r322762)
+++ head/lib/libc/amd64/sys/Makefile.incMon Aug 21 17:39:12 2017
(r322763)
@@ -1,7 +1,11 @@
 #  from: Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp
 # $FreeBSD$
 
-SRCS+= amd64_get_fsbase.c amd64_get_gsbase.c amd64_set_fsbase.c \
+SRCS+= \
+   amd64_detect_rdfsgsbase.c \
+   amd64_get_fsbase.c \
+   amd64_get_gsbase.c \
+   amd64_set_fsbase.c \
amd64_set_gsbase.c
 
 MDASM= vfork.S brk.S cerror.S exect.S getcontext.S \

Added: head/lib/libc/amd64/sys/amd64_detect_rdfsgsbase.c
==
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/lib/libc/amd64/sys/amd64_detect_rdfsgsbase.c   Mon Aug 21 17:39:12 
2017(r322763)
@@ -0,0 +1,63 @@
+/*-
+ * Copyright (c) 2017 The FreeBSD Foundation
+ * All rights reserved.
+ *
+ * This software was developed by Konstantin Belousov 
+ * under sponsorship from the FreeBSD Foundation.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *notice, this list of conditions and the following disclaimer in the
+ *documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+
+#include 
+__FBSDID("$FreeBSD$");
+
+#defineIN_RTLD 1
+#include 
+#undef IN_RTLD
+#include 
+#include 
+#include "amd64_detect_rdfsgsbase.h"
+#include "libc_private.h"
+
+static int state = RDFSGS_UNKNOWN;
+
+int
+amd64_detect_rdfsgsbase(void)
+{
+   u_int p[4];
+
+   if (__predict_true(state != RDFSGS_UNKNOWN))
+   return (state);
+
+   if (__getosreldate() >= P_OSREL_WRFSBASE) {
+   do_cpuid(0x0, p);
+   if (p[0] >= 0x7) {
+   cpuid_count(0x7, 0x0, p);
+   if ((p[1] & CPUID_STDEXT_FSGSBASE) != 0) {
+   state = RDFSGS_SUPPORTED;
+   return (state);
+   }
+   }
+   }
+   state = RDFSGS_UNSUPPORTED;
+   return (state);
+}

Added: head/lib/libc/amd64/sys/amd64_detect_rdfsgsbase.h
==
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/lib/libc/amd64/sys/amd64_detect_rdfsgsbase.h   Mon Aug 21 17:39:12 
2017(r322763)
@@ -0,0 +1,43 @@
+/*-
+ * Copyright (c) 2017 The FreeBSD Foundation
+ * All rights reserved.
+ *
+ * This software was developed by Konstantin Belousov 
+ * under sponsorship from the FreeBSD Foundation.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *notice, this list of conditions