Michal Simek | 7dcbbb2 | 2009-03-27 14:25:28 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu> |
| 3 | * Copyright (C) 2007-2009 PetaLogix |
| 4 | * Copyright (C) 2007 John Williams <john.williams@petalogix.com> |
| 5 | * |
| 6 | * Copyright (C) 2006 Atmark Techno, Inc. |
| 7 | * Yasushi SHOJI <yashi@atmark-techno.com> |
| 8 | * Tetsuya OHKAWA <tetsuya@atmark-techno.com> |
| 9 | * |
| 10 | * This file is subject to the terms and conditions of the GNU General Public |
| 11 | * License. See the file "COPYING" in the main directory of this archive |
| 12 | * for more details. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/errno.h> |
Michal Simek | d64af91 | 2013-02-01 13:10:35 +0100 | [diff] [blame] | 16 | #include <linux/export.h> |
Michal Simek | 7dcbbb2 | 2009-03-27 14:25:28 +0100 | [diff] [blame] | 17 | #include <linux/mm.h> |
| 18 | #include <linux/smp.h> |
Michal Simek | 7dcbbb2 | 2009-03-27 14:25:28 +0100 | [diff] [blame] | 19 | #include <linux/syscalls.h> |
| 20 | #include <linux/sem.h> |
| 21 | #include <linux/msg.h> |
| 22 | #include <linux/shm.h> |
| 23 | #include <linux/stat.h> |
| 24 | #include <linux/mman.h> |
| 25 | #include <linux/sys.h> |
| 26 | #include <linux/ipc.h> |
Michal Simek | 7dcbbb2 | 2009-03-27 14:25:28 +0100 | [diff] [blame] | 27 | #include <linux/file.h> |
Michal Simek | 7dcbbb2 | 2009-03-27 14:25:28 +0100 | [diff] [blame] | 28 | #include <linux/err.h> |
| 29 | #include <linux/fs.h> |
Michal Simek | 7dcbbb2 | 2009-03-27 14:25:28 +0100 | [diff] [blame] | 30 | #include <linux/semaphore.h> |
Michal Simek | 7dcbbb2 | 2009-03-27 14:25:28 +0100 | [diff] [blame] | 31 | #include <linux/uaccess.h> |
| 32 | #include <linux/unistd.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 33 | #include <linux/slab.h> |
Michal Simek | 7dcbbb2 | 2009-03-27 14:25:28 +0100 | [diff] [blame] | 34 | #include <asm/syscalls.h> |
Michal Simek | 7dcbbb2 | 2009-03-27 14:25:28 +0100 | [diff] [blame] | 35 | |
Michal Simek | 176195e | 2013-09-16 07:45:29 +0200 | [diff] [blame] | 36 | SYSCALL_DEFINE6(mmap, unsigned long, addr, unsigned long, len, |
| 37 | unsigned long, prot, unsigned long, flags, unsigned long, fd, |
| 38 | off_t, pgoff) |
Michal Simek | 7dcbbb2 | 2009-03-27 14:25:28 +0100 | [diff] [blame] | 39 | { |
Al Viro | f8b7256 | 2009-11-30 17:37:04 -0500 | [diff] [blame] | 40 | if (pgoff & ~PAGE_MASK) |
| 41 | return -EINVAL; |
Michal Simek | 7dcbbb2 | 2009-03-27 14:25:28 +0100 | [diff] [blame] | 42 | |
Dominik Brodowski | a90f590 | 2018-03-11 11:34:46 +0100 | [diff] [blame] | 43 | return ksys_mmap_pgoff(addr, len, prot, flags, fd, pgoff >> PAGE_SHIFT); |
Michal Simek | 7dcbbb2 | 2009-03-27 14:25:28 +0100 | [diff] [blame] | 44 | } |
Michal Simek | 9939954 | 2013-09-16 07:46:23 +0200 | [diff] [blame] | 45 | |
| 46 | SYSCALL_DEFINE6(mmap2, unsigned long, addr, unsigned long, len, |
| 47 | unsigned long, prot, unsigned long, flags, unsigned long, fd, |
| 48 | unsigned long, pgoff) |
| 49 | { |
| 50 | if (pgoff & (~PAGE_MASK >> 12)) |
| 51 | return -EINVAL; |
| 52 | |
Dominik Brodowski | a90f590 | 2018-03-11 11:34:46 +0100 | [diff] [blame] | 53 | return ksys_mmap_pgoff(addr, len, prot, flags, fd, |
| 54 | pgoff >> (PAGE_SHIFT - 12)); |
Michal Simek | 9939954 | 2013-09-16 07:46:23 +0200 | [diff] [blame] | 55 | } |