lkml.org 
[lkml]   [2018]   [Jul]   [4]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v12 06/13] x86/sgx: detect Intel SGX
On Tue, Jul 03, 2018 at 09:09:52PM +0200, Thomas Gleixner wrote:
> On Tue, 3 Jul 2018, Jarkko Sakkinen wrote:
> > @@ -0,0 +1,54 @@
> > +// SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
> > +// Copyright(c) 2016-17 Intel Corporation.
> > +
> > +#include <asm/sgx.h>
> > +#include <asm/sgx_pr.h>
> > +#include <linux/freezer.h>
> > +#include <linux/highmem.h>
> > +#include <linux/kthread.h>
> > +#include <linux/ratelimit.h>
> > +#include <linux/sched/signal.h>
> > +#include <linux/slab.h>
>
> The common include ordering is
>
> include linux/....
>
> include asm/...
>
> > +
> > +bool sgx_enabled __ro_after_init;
> > +EXPORT_SYMBOL(sgx_enabled);
>
>
> > +bool sgx_lc_enabled __ro_after_init;
> > +EXPORT_SYMBOL(sgx_lc_enabled);
> > +
> > +static __init bool sgx_is_enabled(bool *lc_enabled)
> > +{
> > + unsigned long fc;
> > +
> > + if (!boot_cpu_has(X86_FEATURE_SGX))
> > + return false;
> > +
> > + if (!boot_cpu_has(X86_FEATURE_SGX1))
> > + return false;
> > +
> > + rdmsrl(MSR_IA32_FEATURE_CONTROL, fc);
> > + if (!(fc & FEATURE_CONTROL_LOCKED)) {
> > + pr_info("IA32_FEATURE_CONTROL MSR is not locked\n");
> > + return false;
> > + }
> > +
> > + if (!(fc & FEATURE_CONTROL_SGX_ENABLE)) {
> > + pr_info("disabled by the firmware\n");
> > + return false;
> > + }
> > +
> > + if (!(fc & FEATURE_CONTROL_SGX_LE_WR)) {
> > + pr_info("IA32_SGXLEPUBKEYHASHn MSRs are not writable\n");
> > + return false;
> > + }
> > +
> > + *lc_enabled = !!(fc & FEATURE_CONTROL_SGX_LE_WR);
> > + return true;
> > +}
> > +
> > +static __init int sgx_init(void)
> > +{
> > + sgx_enabled = sgx_is_enabled(&sgx_lc_enabled);
>
> This is horrible, really. Both variables are global. So what the heck is
> wrong with assigning them directly in the function?

Fully agreed, does not make any sense.

> Thanks,
>
> tglx

/Jarkko

\
 
 \ /
  Last update: 2018-07-04 19:29    [W:0.073 / U:0.600 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site