2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2007-10-16 10:27:00 +02:00
|
|
|
* Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-17 00:20:36 +02:00
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
uml: header untangling
Untangle UML headers somewhat and add some includes where they were
needed explicitly, but gotten accidentally via some other header.
arch/um/include/um_uaccess.h loses asm/fixmap.h because it uses no
fixmap stuff and gains elf.h, because it needs FIXADDR_USER_*, and
archsetjmp.h, because it needs jmp_buf.
pmd_alloc_one is uninlined because it needs mm_struct, and that's
inconvenient to provide in asm-um/pgtable-3level.h.
elf_core_copy_fpregs is also uninlined from elf-i386.h and
elf-x86_64.h, which duplicated the code anyway, to
arch/um/kernel/process.c, so that the reference to current_thread
doesn't pull sched.h or anything related into asm/elf.h.
arch/um/sys-i386/ldt.c, arch/um/kernel/tlb.c and
arch/um/kernel/skas/uaccess.c got sched.h because they dereference
task_structs. Its includes of linux and asm headers got turned from
"" to <>.
arch/um/sys-i386/bug.c gets asm/errno.h because it needs errno
constants.
asm/elf-i386 gets asm/user.h because it needs user_regs_struct.
asm/fixmap.h gets page.h because it needs PAGE_SIZE and PAGE_MASK and
system.h for BUG_ON.
asm/pgtable doesn't need sched.h.
asm/processor-generic.h defined mm_segment_t, but didn't use it. So,
that definition is moved to uaccess.h, which defines a bunch of
mm_segment_t-related stuff. thread_info.h uses mm_segment_t, and
includes uaccess.h, which causes a recursion. So, the definition is
placed above the include of thread_info. in uaccess.h. thread_info.h
also gets page.h because it needs PAGE_SIZE.
ObCheckpatchViolationJustification - I'm not adding a typedef; I'm
moving mm_segment_t from one place to another.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-02-05 07:30:53 +01:00
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/sched.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 09:04:11 +01:00
|
|
|
#include <linux/slab.h>
|
2017-10-18 19:21:07 +02:00
|
|
|
#include <linux/syscalls.h>
|
2015-05-12 00:14:39 +02:00
|
|
|
#include <linux/uaccess.h>
|
uml: header untangling
Untangle UML headers somewhat and add some includes where they were
needed explicitly, but gotten accidentally via some other header.
arch/um/include/um_uaccess.h loses asm/fixmap.h because it uses no
fixmap stuff and gains elf.h, because it needs FIXADDR_USER_*, and
archsetjmp.h, because it needs jmp_buf.
pmd_alloc_one is uninlined because it needs mm_struct, and that's
inconvenient to provide in asm-um/pgtable-3level.h.
elf_core_copy_fpregs is also uninlined from elf-i386.h and
elf-x86_64.h, which duplicated the code anyway, to
arch/um/kernel/process.c, so that the reference to current_thread
doesn't pull sched.h or anything related into asm/elf.h.
arch/um/sys-i386/ldt.c, arch/um/kernel/tlb.c and
arch/um/kernel/skas/uaccess.c got sched.h because they dereference
task_structs. Its includes of linux and asm headers got turned from
"" to <>.
arch/um/sys-i386/bug.c gets asm/errno.h because it needs errno
constants.
asm/elf-i386 gets asm/user.h because it needs user_regs_struct.
asm/fixmap.h gets page.h because it needs PAGE_SIZE and PAGE_MASK and
system.h for BUG_ON.
asm/pgtable doesn't need sched.h.
asm/processor-generic.h defined mm_segment_t, but didn't use it. So,
that definition is moved to uaccess.h, which defines a bunch of
mm_segment_t-related stuff. thread_info.h uses mm_segment_t, and
includes uaccess.h, which causes a recursion. So, the definition is
placed above the include of thread_info. in uaccess.h. thread_info.h
also gets page.h because it needs PAGE_SIZE.
ObCheckpatchViolationJustification - I'm not adding a typedef; I'm
moving mm_segment_t from one place to another.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-02-05 07:30:53 +01:00
|
|
|
#include <asm/unistd.h>
|
2012-10-08 04:27:32 +02:00
|
|
|
#include <os.h>
|
|
|
|
#include <skas.h>
|
|
|
|
#include <sysdep/tls.h>
|
2007-10-16 10:27:00 +02:00
|
|
|
|
2015-06-29 11:50:32 +02:00
|
|
|
static inline int modify_ldt (int func, void *ptr, unsigned long bytecount)
|
|
|
|
{
|
|
|
|
return syscall(__NR_modify_ldt, func, ptr, bytecount);
|
|
|
|
}
|
2005-11-07 09:58:55 +01:00
|
|
|
|
2008-07-24 06:28:49 +02:00
|
|
|
static long write_ldt_entry(struct mm_id *mm_idp, int func,
|
|
|
|
struct user_desc *desc, void **addr, int done)
|
2005-11-07 09:58:55 +01:00
|
|
|
{
|
|
|
|
long res;
|
2015-03-18 21:31:27 +01:00
|
|
|
void *stub_addr;
|
|
|
|
res = syscall_stub_data(mm_idp, (unsigned long *)desc,
|
|
|
|
(sizeof(*desc) + sizeof(long) - 1) &
|
|
|
|
~(sizeof(long) - 1),
|
|
|
|
addr, &stub_addr);
|
|
|
|
if (!res) {
|
|
|
|
unsigned long args[] = { func,
|
|
|
|
(unsigned long)stub_addr,
|
|
|
|
sizeof(*desc),
|
|
|
|
0, 0, 0 };
|
|
|
|
res = run_syscall_stub(mm_idp, __NR_modify_ldt, args,
|
|
|
|
0, addr, done);
|
2005-11-07 09:58:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* In skas mode, we hold our own ldt data in UML.
|
|
|
|
* Thus, the code implementing sys_modify_ldt_skas
|
|
|
|
* is very similar to (and mostly stolen from) sys_modify_ldt
|
|
|
|
* for arch/i386/kernel/ldt.c
|
|
|
|
* The routines copied and modified in part are:
|
|
|
|
* - read_ldt
|
|
|
|
* - read_default_ldt
|
|
|
|
* - write_ldt
|
|
|
|
* - sys_modify_ldt_skas
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int read_ldt(void __user * ptr, unsigned long bytecount)
|
|
|
|
{
|
|
|
|
int i, err = 0;
|
|
|
|
unsigned long size;
|
2011-08-18 21:10:49 +02:00
|
|
|
uml_ldt_t *ldt = ¤t->mm->context.arch.ldt;
|
2005-11-07 09:58:55 +01:00
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (!ldt->entry_count)
|
2005-11-07 09:58:55 +01:00
|
|
|
goto out;
|
2007-10-16 10:27:00 +02:00
|
|
|
if (bytecount > LDT_ENTRY_SIZE*LDT_ENTRIES)
|
2005-11-07 09:58:55 +01:00
|
|
|
bytecount = LDT_ENTRY_SIZE*LDT_ENTRIES;
|
|
|
|
err = bytecount;
|
|
|
|
|
2008-02-05 07:31:26 +01:00
|
|
|
mutex_lock(&ldt->lock);
|
2007-10-16 10:27:00 +02:00
|
|
|
if (ldt->entry_count <= LDT_DIRECT_ENTRIES) {
|
2005-11-07 09:58:55 +01:00
|
|
|
size = LDT_ENTRY_SIZE*LDT_DIRECT_ENTRIES;
|
2007-10-16 10:27:00 +02:00
|
|
|
if (size > bytecount)
|
2005-11-07 09:58:55 +01:00
|
|
|
size = bytecount;
|
2007-10-16 10:27:00 +02:00
|
|
|
if (copy_to_user(ptr, ldt->u.entries, size))
|
2005-11-07 09:58:55 +01:00
|
|
|
err = -EFAULT;
|
|
|
|
bytecount -= size;
|
|
|
|
ptr += size;
|
|
|
|
}
|
|
|
|
else {
|
2007-10-16 10:27:00 +02:00
|
|
|
for (i=0; i<ldt->entry_count/LDT_ENTRIES_PER_PAGE && bytecount;
|
|
|
|
i++) {
|
2005-11-07 09:58:55 +01:00
|
|
|
size = PAGE_SIZE;
|
2007-10-16 10:27:00 +02:00
|
|
|
if (size > bytecount)
|
2005-11-07 09:58:55 +01:00
|
|
|
size = bytecount;
|
2007-10-16 10:27:00 +02:00
|
|
|
if (copy_to_user(ptr, ldt->u.pages[i], size)) {
|
2005-11-07 09:58:55 +01:00
|
|
|
err = -EFAULT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
bytecount -= size;
|
|
|
|
ptr += size;
|
|
|
|
}
|
|
|
|
}
|
2008-02-05 07:31:26 +01:00
|
|
|
mutex_unlock(&ldt->lock);
|
2005-11-07 09:58:55 +01:00
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (bytecount == 0 || err == -EFAULT)
|
2005-11-07 09:58:55 +01:00
|
|
|
goto out;
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (clear_user(ptr, bytecount))
|
2005-11-07 09:58:55 +01:00
|
|
|
err = -EFAULT;
|
|
|
|
|
|
|
|
out:
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int read_default_ldt(void __user * ptr, unsigned long bytecount)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (bytecount > 5*LDT_ENTRY_SIZE)
|
2005-11-07 09:58:55 +01:00
|
|
|
bytecount = 5*LDT_ENTRY_SIZE;
|
|
|
|
|
|
|
|
err = bytecount;
|
2007-10-16 10:27:00 +02:00
|
|
|
/*
|
|
|
|
* UML doesn't support lcall7 and lcall27.
|
2005-11-07 09:58:55 +01:00
|
|
|
* So, we don't really have a default ldt, but emulate
|
|
|
|
* an empty ldt of common host default ldt size.
|
|
|
|
*/
|
2007-10-16 10:27:00 +02:00
|
|
|
if (clear_user(ptr, bytecount))
|
2005-11-07 09:58:55 +01:00
|
|
|
err = -EFAULT;
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int write_ldt(void __user * ptr, unsigned long bytecount, int func)
|
|
|
|
{
|
2011-08-18 21:10:49 +02:00
|
|
|
uml_ldt_t *ldt = ¤t->mm->context.arch.ldt;
|
2007-10-16 10:27:06 +02:00
|
|
|
struct mm_id * mm_idp = ¤t->mm->context.id;
|
2005-11-07 09:58:55 +01:00
|
|
|
int i, err;
|
|
|
|
struct user_desc ldt_info;
|
|
|
|
struct ldt_entry entry0, *ldt_p;
|
|
|
|
void *addr = NULL;
|
|
|
|
|
|
|
|
err = -EINVAL;
|
2007-10-16 10:27:00 +02:00
|
|
|
if (bytecount != sizeof(ldt_info))
|
2005-11-07 09:58:55 +01:00
|
|
|
goto out;
|
|
|
|
err = -EFAULT;
|
2007-10-16 10:27:00 +02:00
|
|
|
if (copy_from_user(&ldt_info, ptr, sizeof(ldt_info)))
|
2005-11-07 09:58:55 +01:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
err = -EINVAL;
|
2007-10-16 10:27:00 +02:00
|
|
|
if (ldt_info.entry_number >= LDT_ENTRIES)
|
2005-11-07 09:58:55 +01:00
|
|
|
goto out;
|
2007-10-16 10:27:00 +02:00
|
|
|
if (ldt_info.contents == 3) {
|
2005-11-07 09:58:55 +01:00
|
|
|
if (func == 1)
|
|
|
|
goto out;
|
|
|
|
if (ldt_info.seg_not_present == 0)
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2015-03-18 21:31:27 +01:00
|
|
|
mutex_lock(&ldt->lock);
|
2005-11-07 09:58:55 +01:00
|
|
|
|
|
|
|
err = write_ldt_entry(mm_idp, func, &ldt_info, &addr, 1);
|
2007-10-16 10:27:00 +02:00
|
|
|
if (err)
|
2005-11-07 09:58:55 +01:00
|
|
|
goto out_unlock;
|
2007-10-16 10:27:00 +02:00
|
|
|
|
|
|
|
if (ldt_info.entry_number >= ldt->entry_count &&
|
|
|
|
ldt_info.entry_number >= LDT_DIRECT_ENTRIES) {
|
|
|
|
for (i=ldt->entry_count/LDT_ENTRIES_PER_PAGE;
|
|
|
|
i*LDT_ENTRIES_PER_PAGE <= ldt_info.entry_number;
|
|
|
|
i++) {
|
|
|
|
if (i == 0)
|
2005-11-22 06:32:08 +01:00
|
|
|
memcpy(&entry0, ldt->u.entries,
|
|
|
|
sizeof(entry0));
|
|
|
|
ldt->u.pages[i] = (struct ldt_entry *)
|
|
|
|
__get_free_page(GFP_KERNEL|__GFP_ZERO);
|
2007-10-16 10:27:00 +02:00
|
|
|
if (!ldt->u.pages[i]) {
|
2005-11-07 09:58:55 +01:00
|
|
|
err = -ENOMEM;
|
|
|
|
/* Undo the change in host */
|
|
|
|
memset(&ldt_info, 0, sizeof(ldt_info));
|
|
|
|
write_ldt_entry(mm_idp, 1, &ldt_info, &addr, 1);
|
|
|
|
goto out_unlock;
|
|
|
|
}
|
2007-10-16 10:27:00 +02:00
|
|
|
if (i == 0) {
|
2005-11-22 06:32:08 +01:00
|
|
|
memcpy(ldt->u.pages[0], &entry0,
|
|
|
|
sizeof(entry0));
|
|
|
|
memcpy(ldt->u.pages[0]+1, ldt->u.entries+1,
|
2005-11-07 09:58:55 +01:00
|
|
|
sizeof(entry0)*(LDT_DIRECT_ENTRIES-1));
|
|
|
|
}
|
|
|
|
ldt->entry_count = (i + 1) * LDT_ENTRIES_PER_PAGE;
|
|
|
|
}
|
|
|
|
}
|
2007-10-16 10:27:00 +02:00
|
|
|
if (ldt->entry_count <= ldt_info.entry_number)
|
2005-11-07 09:58:55 +01:00
|
|
|
ldt->entry_count = ldt_info.entry_number + 1;
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (ldt->entry_count <= LDT_DIRECT_ENTRIES)
|
2005-11-22 06:32:08 +01:00
|
|
|
ldt_p = ldt->u.entries + ldt_info.entry_number;
|
2005-11-07 09:58:55 +01:00
|
|
|
else
|
2005-11-22 06:32:08 +01:00
|
|
|
ldt_p = ldt->u.pages[ldt_info.entry_number/LDT_ENTRIES_PER_PAGE] +
|
2005-11-07 09:58:55 +01:00
|
|
|
ldt_info.entry_number%LDT_ENTRIES_PER_PAGE;
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (ldt_info.base_addr == 0 && ldt_info.limit == 0 &&
|
|
|
|
(func == 1 || LDT_empty(&ldt_info))) {
|
2005-11-07 09:58:55 +01:00
|
|
|
ldt_p->a = 0;
|
|
|
|
ldt_p->b = 0;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
if (func == 1)
|
|
|
|
ldt_info.useable = 0;
|
|
|
|
ldt_p->a = LDT_entry_a(&ldt_info);
|
|
|
|
ldt_p->b = LDT_entry_b(&ldt_info);
|
|
|
|
}
|
|
|
|
err = 0;
|
|
|
|
|
|
|
|
out_unlock:
|
2008-02-05 07:31:26 +01:00
|
|
|
mutex_unlock(&ldt->lock);
|
2005-11-07 09:58:55 +01:00
|
|
|
out:
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static long do_modify_ldt_skas(int func, void __user *ptr,
|
|
|
|
unsigned long bytecount)
|
|
|
|
{
|
|
|
|
int ret = -ENOSYS;
|
|
|
|
|
|
|
|
switch (func) {
|
|
|
|
case 0:
|
|
|
|
ret = read_ldt(ptr, bytecount);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
case 0x11:
|
|
|
|
ret = write_ldt(ptr, bytecount, func);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
ret = read_default_ldt(ptr, bytecount);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-03-01 05:13:06 +01:00
|
|
|
static DEFINE_SPINLOCK(host_ldt_lock);
|
|
|
|
static short dummy_list[9] = {0, -1};
|
|
|
|
static short * host_ldt_entries = NULL;
|
2005-11-07 09:58:55 +01:00
|
|
|
|
2007-03-01 05:13:06 +01:00
|
|
|
static void ldt_get_host_info(void)
|
2005-11-07 09:58:55 +01:00
|
|
|
{
|
|
|
|
long ret;
|
2007-03-29 10:20:32 +02:00
|
|
|
struct ldt_entry * ldt;
|
|
|
|
short *tmp;
|
2005-11-07 09:58:55 +01:00
|
|
|
int i, size, k, order;
|
|
|
|
|
2007-03-01 05:13:06 +01:00
|
|
|
spin_lock(&host_ldt_lock);
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (host_ldt_entries != NULL) {
|
2007-03-01 05:13:06 +01:00
|
|
|
spin_unlock(&host_ldt_lock);
|
|
|
|
return;
|
|
|
|
}
|
2005-11-07 09:58:55 +01:00
|
|
|
host_ldt_entries = dummy_list+1;
|
|
|
|
|
2007-03-01 05:13:06 +01:00
|
|
|
spin_unlock(&host_ldt_lock);
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
for (i = LDT_PAGES_MAX-1, order=0; i; i>>=1, order++)
|
|
|
|
;
|
2005-11-07 09:58:55 +01:00
|
|
|
|
|
|
|
ldt = (struct ldt_entry *)
|
|
|
|
__get_free_pages(GFP_KERNEL|__GFP_ZERO, order);
|
2007-10-16 10:27:00 +02:00
|
|
|
if (ldt == NULL) {
|
|
|
|
printk(KERN_ERR "ldt_get_host_info: couldn't allocate buffer "
|
|
|
|
"for host ldt\n");
|
2005-11-07 09:58:55 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = modify_ldt(0, ldt, (1<<order)*PAGE_SIZE);
|
2007-10-16 10:27:00 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
printk(KERN_ERR "ldt_get_host_info: couldn't read host ldt\n");
|
2005-11-07 09:58:55 +01:00
|
|
|
goto out_free;
|
|
|
|
}
|
2007-10-16 10:27:00 +02:00
|
|
|
if (ret == 0) {
|
2005-11-07 09:58:55 +01:00
|
|
|
/* default_ldt is active, simply write an empty entry 0 */
|
|
|
|
host_ldt_entries = dummy_list;
|
|
|
|
goto out_free;
|
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
for (i=0, size=0; i<ret/LDT_ENTRY_SIZE; i++) {
|
|
|
|
if (ldt[i].a != 0 || ldt[i].b != 0)
|
2005-11-07 09:58:55 +01:00
|
|
|
size++;
|
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (size < ARRAY_SIZE(dummy_list))
|
2005-11-07 09:58:55 +01:00
|
|
|
host_ldt_entries = dummy_list;
|
|
|
|
else {
|
|
|
|
size = (size + 1) * sizeof(dummy_list[0]);
|
2007-03-01 05:13:06 +01:00
|
|
|
tmp = kmalloc(size, GFP_KERNEL);
|
2007-10-16 10:27:00 +02:00
|
|
|
if (tmp == NULL) {
|
|
|
|
printk(KERN_ERR "ldt_get_host_info: couldn't allocate "
|
|
|
|
"host ldt list\n");
|
2005-11-07 09:58:55 +01:00
|
|
|
goto out_free;
|
|
|
|
}
|
2007-03-01 05:13:06 +01:00
|
|
|
host_ldt_entries = tmp;
|
2005-11-07 09:58:55 +01:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
for (i=0, k=0; i<ret/LDT_ENTRY_SIZE; i++) {
|
|
|
|
if (ldt[i].a != 0 || ldt[i].b != 0)
|
2005-11-07 09:58:55 +01:00
|
|
|
host_ldt_entries[k++] = i;
|
|
|
|
}
|
|
|
|
host_ldt_entries[k] = -1;
|
|
|
|
|
|
|
|
out_free:
|
|
|
|
free_pages((unsigned long)ldt, order);
|
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:06 +02:00
|
|
|
long init_new_ldt(struct mm_context *new_mm, struct mm_context *from_mm)
|
2005-11-07 09:58:55 +01:00
|
|
|
{
|
|
|
|
struct user_desc desc;
|
|
|
|
short * num_p;
|
|
|
|
int i;
|
|
|
|
long page, err=0;
|
|
|
|
void *addr = NULL;
|
|
|
|
|
|
|
|
|
2015-03-18 21:31:27 +01:00
|
|
|
mutex_init(&new_mm->arch.ldt.lock);
|
2005-11-07 09:58:55 +01:00
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (!from_mm) {
|
2006-01-19 02:42:39 +01:00
|
|
|
memset(&desc, 0, sizeof(desc));
|
2005-11-07 09:58:55 +01:00
|
|
|
/*
|
2015-03-18 21:31:27 +01:00
|
|
|
* Now we try to retrieve info about the ldt, we
|
|
|
|
* inherited from the host. All ldt-entries found
|
|
|
|
* will be reset in the following loop
|
2005-11-07 09:58:55 +01:00
|
|
|
*/
|
2015-03-18 21:31:27 +01:00
|
|
|
ldt_get_host_info();
|
|
|
|
for (num_p=host_ldt_entries; *num_p != -1; num_p++) {
|
|
|
|
desc.entry_number = *num_p;
|
|
|
|
err = write_ldt_entry(&new_mm->id, 1, &desc,
|
|
|
|
&addr, *(num_p + 1) == -1);
|
|
|
|
if (err)
|
|
|
|
break;
|
2005-11-07 09:58:55 +01:00
|
|
|
}
|
2011-08-18 21:10:49 +02:00
|
|
|
new_mm->arch.ldt.entry_count = 0;
|
2006-01-19 02:42:39 +01:00
|
|
|
|
|
|
|
goto out;
|
2005-11-07 09:58:55 +01:00
|
|
|
}
|
2006-01-19 02:42:39 +01:00
|
|
|
|
2015-03-18 21:31:27 +01:00
|
|
|
/*
|
|
|
|
* Our local LDT is used to supply the data for
|
|
|
|
* modify_ldt(READLDT), if PTRACE_LDT isn't available,
|
|
|
|
* i.e., we have to use the stub for modify_ldt, which
|
|
|
|
* can't handle the big read buffer of up to 64kB.
|
|
|
|
*/
|
|
|
|
mutex_lock(&from_mm->arch.ldt.lock);
|
|
|
|
if (from_mm->arch.ldt.entry_count <= LDT_DIRECT_ENTRIES)
|
|
|
|
memcpy(new_mm->arch.ldt.u.entries, from_mm->arch.ldt.u.entries,
|
|
|
|
sizeof(new_mm->arch.ldt.u.entries));
|
|
|
|
else {
|
|
|
|
i = from_mm->arch.ldt.entry_count / LDT_ENTRIES_PER_PAGE;
|
|
|
|
while (i-->0) {
|
|
|
|
page = __get_free_page(GFP_KERNEL|__GFP_ZERO);
|
|
|
|
if (!page) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
break;
|
2005-11-07 09:58:55 +01:00
|
|
|
}
|
2015-03-18 21:31:27 +01:00
|
|
|
new_mm->arch.ldt.u.pages[i] =
|
|
|
|
(struct ldt_entry *) page;
|
|
|
|
memcpy(new_mm->arch.ldt.u.pages[i],
|
|
|
|
from_mm->arch.ldt.u.pages[i], PAGE_SIZE);
|
2005-11-07 09:58:55 +01:00
|
|
|
}
|
|
|
|
}
|
2015-03-18 21:31:27 +01:00
|
|
|
new_mm->arch.ldt.entry_count = from_mm->arch.ldt.entry_count;
|
|
|
|
mutex_unlock(&from_mm->arch.ldt.lock);
|
2005-11-07 09:58:55 +01:00
|
|
|
|
2006-01-19 02:42:39 +01:00
|
|
|
out:
|
2005-11-07 09:58:55 +01:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-16 10:27:06 +02:00
|
|
|
void free_ldt(struct mm_context *mm)
|
2005-11-07 09:58:55 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2015-03-18 21:31:27 +01:00
|
|
|
if (mm->arch.ldt.entry_count > LDT_DIRECT_ENTRIES) {
|
2011-08-18 21:10:49 +02:00
|
|
|
i = mm->arch.ldt.entry_count / LDT_ENTRIES_PER_PAGE;
|
2007-10-16 10:27:00 +02:00
|
|
|
while (i-- > 0)
|
2011-08-18 21:10:49 +02:00
|
|
|
free_page((long) mm->arch.ldt.u.pages[i]);
|
2005-11-07 09:58:55 +01:00
|
|
|
}
|
2011-08-18 21:10:49 +02:00
|
|
|
mm->arch.ldt.entry_count = 0;
|
2005-11-07 09:58:55 +01:00
|
|
|
}
|
|
|
|
|
2017-10-18 19:21:07 +02:00
|
|
|
SYSCALL_DEFINE3(modify_ldt, int , func , void __user * , ptr ,
|
|
|
|
unsigned long , bytecount)
|
2005-11-07 09:58:55 +01:00
|
|
|
{
|
2017-10-18 19:21:07 +02:00
|
|
|
/* See non-um modify_ldt() for why we do this cast */
|
|
|
|
return (unsigned int)do_modify_ldt_skas(func, ptr, bytecount);
|
2005-11-07 09:58:55 +01:00
|
|
|
}
|