2008-10-23 12:26:29 +07:00
|
|
|
#ifndef _ASM_X86_SETUP_H
|
|
|
|
#define _ASM_X86_SETUP_H
|
2007-10-24 03:37:24 +07:00
|
|
|
|
2012-12-15 05:37:13 +07:00
|
|
|
#include <uapi/asm/setup.h>
|
|
|
|
|
2007-10-24 03:37:24 +07:00
|
|
|
#define COMMAND_LINE_SIZE 2048
|
|
|
|
|
2013-08-06 05:02:38 +07:00
|
|
|
#include <linux/linkage.h>
|
|
|
|
|
2007-10-24 03:37:24 +07:00
|
|
|
#ifdef __i386__
|
|
|
|
|
|
|
|
#include <linux/pfn.h>
|
|
|
|
/*
|
|
|
|
* Reserved space for vmalloc and iomap - defined in asm/page.h
|
|
|
|
*/
|
|
|
|
#define MAXMEM_PFN PFN_DOWN(MAXMEM)
|
|
|
|
#define MAX_NONPAE_PFN (1 << 20)
|
|
|
|
|
2007-10-24 03:37:25 +07:00
|
|
|
#endif /* __i386__ */
|
|
|
|
|
|
|
|
#define PARAM_SIZE 4096 /* sizeof(struct boot_params) */
|
2007-10-24 03:37:24 +07:00
|
|
|
|
|
|
|
#define OLD_CL_MAGIC 0xA33F
|
2007-10-24 03:37:25 +07:00
|
|
|
#define OLD_CL_ADDRESS 0x020 /* Relative to real mode data */
|
2007-10-24 03:37:24 +07:00
|
|
|
#define NEW_CL_POINTER 0x228 /* Relative to real mode data */
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#include <asm/bootparam.h>
|
2009-08-19 20:37:03 +07:00
|
|
|
#include <asm/x86_init.h>
|
2007-10-24 03:37:24 +07:00
|
|
|
|
2013-12-05 02:50:42 +07:00
|
|
|
extern u64 relocated_ramdisk;
|
|
|
|
|
2009-02-02 23:29:19 +07:00
|
|
|
/* Interrupt control for vSMPowered x86_64 systems */
|
2009-03-24 13:14:29 +07:00
|
|
|
#ifdef CONFIG_X86_64
|
2009-02-02 23:29:19 +07:00
|
|
|
void vsmp_init(void);
|
2009-02-26 12:20:50 +07:00
|
|
|
#else
|
|
|
|
static inline void vsmp_init(void) { }
|
|
|
|
#endif
|
2009-02-02 23:29:19 +07:00
|
|
|
|
|
|
|
void setup_bios_corruption_check(void);
|
|
|
|
|
|
|
|
extern unsigned long saved_video_mode;
|
|
|
|
|
2009-08-19 19:55:50 +07:00
|
|
|
extern void reserve_standard_io_resources(void);
|
|
|
|
extern void i386_reserve_resources(void);
|
2009-08-19 20:37:03 +07:00
|
|
|
extern void setup_default_timer_irq(void);
|
2009-08-19 19:55:50 +07:00
|
|
|
|
2011-12-18 00:43:40 +07:00
|
|
|
#ifdef CONFIG_X86_INTEL_MID
|
2013-10-18 05:35:29 +07:00
|
|
|
extern void x86_intel_mid_early_setup(void);
|
2009-08-29 19:54:20 +07:00
|
|
|
#else
|
2013-10-18 05:35:29 +07:00
|
|
|
static inline void x86_intel_mid_early_setup(void) { }
|
2009-08-29 19:54:20 +07:00
|
|
|
#endif
|
|
|
|
|
2010-11-10 03:08:04 +07:00
|
|
|
#ifdef CONFIG_X86_INTEL_CE
|
|
|
|
extern void x86_ce4100_early_setup(void);
|
|
|
|
#else
|
|
|
|
static inline void x86_ce4100_early_setup(void) { }
|
|
|
|
#endif
|
|
|
|
|
x86-64, espfix: Don't leak bits 31:16 of %esp returning to 16-bit stack
The IRET instruction, when returning to a 16-bit segment, only
restores the bottom 16 bits of the user space stack pointer. This
causes some 16-bit software to break, but it also leaks kernel state
to user space. We have a software workaround for that ("espfix") for
the 32-bit kernel, but it relies on a nonzero stack segment base which
is not available in 64-bit mode.
In checkin:
b3b42ac2cbae x86-64, modify_ldt: Ban 16-bit segments on 64-bit kernels
we "solved" this by forbidding 16-bit segments on 64-bit kernels, with
the logic that 16-bit support is crippled on 64-bit kernels anyway (no
V86 support), but it turns out that people are doing stuff like
running old Win16 binaries under Wine and expect it to work.
This works around this by creating percpu "ministacks", each of which
is mapped 2^16 times 64K apart. When we detect that the return SS is
on the LDT, we copy the IRET frame to the ministack and use the
relevant alias to return to userspace. The ministacks are mapped
readonly, so if IRET faults we promote #GP to #DF which is an IST
vector and thus has its own stack; we then do the fixup in the #DF
handler.
(Making #GP an IST exception would make the msr_safe functions unsafe
in NMI/MC context, and quite possibly have other effects.)
Special thanks to:
- Andy Lutomirski, for the suggestion of using very small stack slots
and copy (as opposed to map) the IRET frame there, and for the
suggestion to mark them readonly and let the fault promote to #DF.
- Konrad Wilk for paravirt fixup and testing.
- Borislav Petkov for testing help and useful comments.
Reported-by: Brian Gerst <brgerst@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Link: http://lkml.kernel.org/r/1398816946-3351-1-git-send-email-hpa@linux.intel.com
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Andrew Lutomriski <amluto@gmail.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Dirk Hohndel <dirk@hohndel.org>
Cc: Arjan van de Ven <arjan.van.de.ven@intel.com>
Cc: comex <comexk@gmail.com>
Cc: Alexander van Heukelum <heukelum@fastmail.fm>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: <stable@vger.kernel.org> # consider after upstream merge
2014-04-30 06:46:09 +07:00
|
|
|
extern void init_espfix_bsp(void);
|
|
|
|
extern void init_espfix_ap(void);
|
|
|
|
|
2007-10-24 03:37:25 +07:00
|
|
|
#ifndef _SETUP
|
|
|
|
|
2007-10-24 03:37:24 +07:00
|
|
|
/*
|
|
|
|
* This is set up by the setup-routine at boot-time
|
|
|
|
*/
|
|
|
|
extern struct boot_params boot_params;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do NOT EVER look at the BIOS memory size location.
|
|
|
|
* It does not work on many machines.
|
|
|
|
*/
|
|
|
|
#define LOWMEMSIZE() (0x9f000)
|
|
|
|
|
x86: add brk allocation for very, very early allocations
Impact: new interface
Add a brk()-like allocator which effectively extends the bss in order
to allow very early code to do dynamic allocations. This is better than
using statically allocated arrays for data in subsystems which may never
get used.
The space for brk allocations is in the bss ELF segment, so that the
space is mapped properly by the code which maps the kernel, and so
that bootloaders keep the space free rather than putting a ramdisk or
something into it.
The bss itself, delimited by __bss_stop, ends before the brk area
(__brk_base to __brk_limit). The kernel text, data and bss is reserved
up to __bss_stop.
Any brk-allocated data is reserved separately just before the kernel
pagetable is built, as that code allocates from unreserved spaces
in the e820 map, potentially allocating from any unused brk memory.
Ultimately any unused memory in the brk area is used in the general
kernel memory pool.
Initially the brk space is set to 1MB, which is probably much larger
than any user needs (the largest current user is i386 head_32.S's code
to build the pagetables to map the kernel, which can get fairly large
with a big kernel image and no PSE support). So long as the system
has sufficient memory for the bootloader to reserve the kernel+1MB brk,
there are no bad effects resulting from an over-large brk.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2009-02-27 08:35:44 +07:00
|
|
|
/* exceedingly early brk-like allocator */
|
|
|
|
extern unsigned long _brk_end;
|
|
|
|
void *extend_brk(size_t size, size_t align);
|
|
|
|
|
2009-03-13 06:09:49 +07:00
|
|
|
/*
|
|
|
|
* Reserve space in the brk section. The name must be unique within
|
|
|
|
* the file, and somewhat descriptive. The size is in bytes. Must be
|
|
|
|
* used at file scope.
|
|
|
|
*
|
|
|
|
* (This uses a temp function to wrap the asm so we can pass it the
|
|
|
|
* size parameter; otherwise we wouldn't be able to. We can't use a
|
|
|
|
* "section" attribute on a normal variable because it always ends up
|
|
|
|
* being @progbits, which ends up allocating space in the vmlinux
|
|
|
|
* executable.)
|
|
|
|
*/
|
|
|
|
#define RESERVE_BRK(name,sz) \
|
2011-04-14 03:43:29 +07:00
|
|
|
static void __section(.discard.text) __used notrace \
|
2009-03-13 06:09:49 +07:00
|
|
|
__brk_reservation_fn_##name##__(void) { \
|
|
|
|
asm volatile ( \
|
|
|
|
".pushsection .brk_reservation,\"aw\",@nobits;" \
|
2009-03-15 13:19:38 +07:00
|
|
|
".brk." #name ":" \
|
2009-03-13 06:09:49 +07:00
|
|
|
" 1:.skip %c0;" \
|
2009-03-15 13:19:38 +07:00
|
|
|
" .size .brk." #name ", . - 1b;" \
|
2009-03-13 06:09:49 +07:00
|
|
|
" .popsection" \
|
|
|
|
: : "i" (sz)); \
|
|
|
|
}
|
|
|
|
|
2010-09-03 09:35:22 +07:00
|
|
|
/* Helper for reserving space for arrays of things */
|
|
|
|
#define RESERVE_BRK_ARRAY(type, name, entries) \
|
|
|
|
type *name; \
|
|
|
|
RESERVE_BRK(name, sizeof(type) * entries)
|
|
|
|
|
2011-03-09 01:36:19 +07:00
|
|
|
extern void probe_roms(void);
|
2008-06-19 07:27:08 +07:00
|
|
|
#ifdef __i386__
|
|
|
|
|
2013-08-06 05:02:38 +07:00
|
|
|
asmlinkage void __init i386_start_kernel(void);
|
2008-01-30 19:31:11 +07:00
|
|
|
|
2008-06-25 11:19:09 +07:00
|
|
|
#else
|
2013-08-06 05:02:38 +07:00
|
|
|
asmlinkage void __init x86_64_start_kernel(char *real_mode);
|
|
|
|
asmlinkage void __init x86_64_start_reservations(char *real_mode_data);
|
2008-06-25 11:19:18 +07:00
|
|
|
|
2007-10-24 03:37:24 +07:00
|
|
|
#endif /* __i386__ */
|
2007-10-24 03:37:25 +07:00
|
|
|
#endif /* _SETUP */
|
2009-03-13 06:09:49 +07:00
|
|
|
#else
|
|
|
|
#define RESERVE_BRK(name,sz) \
|
|
|
|
.pushsection .brk_reservation,"aw",@nobits; \
|
2009-03-15 13:19:38 +07:00
|
|
|
.brk.name: \
|
2009-03-13 06:09:49 +07:00
|
|
|
1: .skip sz; \
|
2009-03-15 13:19:38 +07:00
|
|
|
.size .brk.name,.-1b; \
|
2009-03-13 06:09:49 +07:00
|
|
|
.popsection
|
2007-10-24 03:37:24 +07:00
|
|
|
#endif /* __ASSEMBLY__ */
|
2008-10-23 12:26:29 +07:00
|
|
|
#endif /* _ASM_X86_SETUP_H */
|