From mboxrd@z Thu Jan 1 00:00:00 1970 From: joeyli Subject: Re: [RFC PATCH 04/16] x86/efi: Generating random number in EFI stub Date: Fri, 31 Jul 2015 17:06:52 +0800 Message-ID: <20150731090652.GA13113@linux-rxt1.site> References: <1437056730-15247-1-git-send-email-jlee@suse.com> <1437056730-15247-5-git-send-email-jlee@suse.com> <20150728120112.GA9518@amd> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20150728120112.GA9518@amd> Sender: linux-efi-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Pavel Machek Cc: "Lee, Chun-Yi" , linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, "Rafael J. Wysocki" , Matthew Garrett , Len Brown , Josh Boyer , Vojtech Pavlik , Matt Fleming , Jiri Kosina , "H. Peter Anvin" List-Id: linux-efi@vger.kernel.org Hi Pavel, Thanks for your review. On Tue, Jul 28, 2015 at 02:01:12PM +0200, Pavel Machek wrote: > Hi! > > > This patch adds the codes for generating random number array as the > > HMAC key that will used by later EFI stub codes. > > > > The original codes in efi_random copied from aslr and add the codes > > to accept input entropy and EFI debugging. In later patch will add > > the codes to get random number by EFI protocol. The separate codes > > can avoid impacting aslr function. > > > > Signed-off-by: Lee, Chun-Yi > > > +#define X86_FEATURE_EDX_TSC (1 << 4) > > +#define X86_FEATURE_ECX_RDRAND (1 << 30) > > Can you pull it from existing includes somewhere? > I didn't see similar definition in header. > > +static bool rdrand_feature(void) > > +{ > > + return (cpuid_ecx(0x1) & X86_FEATURE_ECX_RDRAND); > > +} > > + > > +static bool rdtsc_feature(void) > > +{ > > + return (cpuid_edx(0x1) & X86_FEATURE_EDX_TSC); > > +} > > Are these helpers neccessary? I will try to simplify it. > > > + if (rdrand_feature()) { > > + efi_printk(sys_table, " RDRAND"); > > + if (rdrand_long(&raw)) { > > + random ^= raw; > > + use_i8254 = false; > > + } > > + } > > + > > + if (rdtsc_feature()) { > > + efi_printk(sys_table, " RDTSC"); > > + rdtscll(raw); > > + > > + random ^= raw; > > + use_i8254 = false; > > + } > > You'll do two (expensive) cpuids calls here. > I will try to avoid call cpuid many times. Thanks a lot! Joey Lee