From: Christoph Hellwig <hch@infradead.org>
To: David Woodhouse <dwmw2@infradead.org>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [Fwd: TASK_SIZE is variable.]
Date: Tue, 25 Jan 2005 22:46:54 +0000 [thread overview]
Message-ID: <20050125224654.GA30150@infradead.org> (raw)
Content-Description: Forwarded message - TASK_SIZE is variable.
> Date: Tue, 25 Jan 2005 22:26:52 +0000
> From: David Woodhouse <dwmw2@infradead.org>
> Subject: TASK_SIZE is variable.
> To: linux-arch@vger.kernel.org
> X-Mailer: Evolution 2.0.2 (2.0.2-3.dwmw2.1)
>
> Bad things can happen if a 32-bit process is the last user of a 64-bit
> mm. TASK_SIZE isn't a constant, and we can end up clearing page tables
> only up to the 32-bit TASK_SIZE instead of all the way. We should
> probably double-check every instance of TASK_SIZE or USER_PTRS_PER_PGD
> for this kind of problem.
Or better get rid of TASK_SIZE completely. Having something that looks
like a constant change depending on the user process is a bad idea.
> We should also double-check that MM_VM_SIZE() and other such things are
> correctly defined on all architectures. I already fixed ppc64 which let
> it stay as TASK_SIZE, and hence dependent on the _current_ context
> instead of the mm in the argument.
>
> --- mm/mmap.c.orig 2005-01-25 22:23:02.030427272 +0000
> +++ mm/mmap.c 2005-01-25 22:23:55.627279312 +0000
> @@ -1612,8 +1612,8 @@ static void free_pgtables(struct mmu_gat
> unsigned long last = end + PGDIR_SIZE - 1;
> struct mm_struct *mm = tlb->mm;
>
> - if (last > TASK_SIZE || last < end)
> - last = TASK_SIZE;
> + if (last > MM_VM_SIZE(mm) || last < end)
> + last = MM_VM_SIZE(mm);
>
> if (!prev) {
> prev = mm->mmap;
> @@ -1996,7 +1996,7 @@ void exit_mmap(struct mm_struct *mm)
> vm_unacct_memory(nr_accounted);
> BUG_ON(mm->map_count); /* This is just debugging */
> clear_page_range(tlb, FIRST_USER_PGD_NR * PGDIR_SIZE,
> - (TASK_SIZE + PGDIR_SIZE - 1) & PGDIR_MASK);
> + (MM_VM_SIZE(mm) + PGDIR_SIZE - 1) & PGDIR_MASK);
>
> tlb_finish_mmu(tlb, 0, MM_VM_SIZE(mm));
>
>
> --
> dwmw2
next reply other threads:[~2005-01-25 22:53 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-01-25 22:46 Christoph Hellwig [this message]
2005-01-25 22:55 ` [Fwd: TASK_SIZE is variable.] David Woodhouse
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=20050125224654.GA30150@infradead.org \
--to=hch@infradead.org \
--cc=dwmw2@infradead.org \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.