From: Derek Lesho <dlesho@codeweavers.com>
To: linux-kernel@vger.kernel.org
Cc: Derek Lesho <dlesho@codeweavers.com>
Subject: [RFC] mm: Allow 64-bit mmap syscalls to access higher addresses.
Date: Fri, 25 Sep 2020 10:37:03 -0500 [thread overview]
Message-ID: <20200925153703.288236-1-dlesho@codeweavers.com> (raw)
For those curious about my usecase, I'm working on running some windows 64-bit driver code in context of any given process. I accomplish this by mapping some of the fake kernel
bits in the target process, and running the code in a dedicated thread.
---
mm/mmap.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mm/mmap.c b/mm/mmap.c
index 40248d84ad5f..3a6940ef6128 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -2240,7 +2240,7 @@ get_unmapped_area(struct file *file, unsigned long addr, unsigned long len,
if (IS_ERR_VALUE(addr))
return addr;
- if (addr > TASK_SIZE - len)
+ if (addr > TASK_SIZE_MAX - len)
return -ENOMEM;
if (offset_in_page(addr))
return -EINVAL;
@@ -2767,7 +2767,7 @@ int __do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
unsigned long end;
struct vm_area_struct *vma, *prev, *last;
- if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start)
+ if ((offset_in_page(start)) || start > TASK_SIZE_MAX || len > TASK_SIZE_MAX-start)
return -EINVAL;
len = PAGE_ALIGN(len);
--
2.28.0
next reply other threads:[~2020-09-25 15:54 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-25 15:37 Derek Lesho [this message]
2020-09-25 16:53 ` [RFC] mm: Allow 64-bit mmap syscalls to access higher addresses Derek Lesho
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200925153703.288236-1-dlesho@codeweavers.com \
--to=dlesho@codeweavers.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox