public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Hugh Dickins <hughd@google.com>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Russell King <linux@arm.linux.org.uk>,
	Andrew Morton <akpm@linux-foundation.org>,
	Linus Torvalds <torvalds@linux-foundation.org>
Subject: [ 054/104] mm: allow arch code to control the user page table ceiling
Date: Mon,  6 May 2013 16:12:13 -0700	[thread overview]
Message-ID: <20130506230049.152032788@linuxfoundation.org> (raw)
In-Reply-To: <20130506230043.526528358@linuxfoundation.org>

3.8-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Hugh Dickins <hughd@google.com>

commit 6ee8630e02be6dd89926ca0fbc21af68b23dc087 upstream.

On architectures where a pgd entry may be shared between user and kernel
(e.g.  ARM+LPAE), freeing page tables needs a ceiling other than 0.
This patch introduces a generic USER_PGTABLES_CEILING that arch code can
override.  It is the responsibility of the arch code setting the ceiling
to ensure the complete freeing of the page tables (usually in
pgd_free()).

[catalin.marinas@arm.com: commit log; shift_arg_pages(), asm-generic/pgtables.h changes]
Signed-off-by: Hugh Dickins <hughd@google.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Cc: Russell King <linux@arm.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 fs/exec.c                     |    4 ++--
 include/asm-generic/pgtable.h |   10 ++++++++++
 mm/mmap.c                     |    4 ++--
 3 files changed, 14 insertions(+), 4 deletions(-)

--- a/fs/exec.c
+++ b/fs/exec.c
@@ -613,7 +613,7 @@ static int shift_arg_pages(struct vm_are
 		 * when the old and new regions overlap clear from new_end.
 		 */
 		free_pgd_range(&tlb, new_end, old_end, new_end,
-			vma->vm_next ? vma->vm_next->vm_start : 0);
+			vma->vm_next ? vma->vm_next->vm_start : USER_PGTABLES_CEILING);
 	} else {
 		/*
 		 * otherwise, clean from old_start; this is done to not touch
@@ -622,7 +622,7 @@ static int shift_arg_pages(struct vm_are
 		 * for the others its just a little faster.
 		 */
 		free_pgd_range(&tlb, old_start, old_end, new_end,
-			vma->vm_next ? vma->vm_next->vm_start : 0);
+			vma->vm_next ? vma->vm_next->vm_start : USER_PGTABLES_CEILING);
 	}
 	tlb_finish_mmu(&tlb, new_end, old_end);
 
--- a/include/asm-generic/pgtable.h
+++ b/include/asm-generic/pgtable.h
@@ -7,6 +7,16 @@
 #include <linux/mm_types.h>
 #include <linux/bug.h>
 
+/*
+ * On almost all architectures and configurations, 0 can be used as the
+ * upper ceiling to free_pgtables(): on many architectures it has the same
+ * effect as using TASK_SIZE.  However, there is one configuration which
+ * must impose a more careful limit, to avoid freeing kernel pgtables.
+ */
+#ifndef USER_PGTABLES_CEILING
+#define USER_PGTABLES_CEILING	0UL
+#endif
+
 #ifndef __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
 extern int ptep_set_access_flags(struct vm_area_struct *vma,
 				 unsigned long address, pte_t *ptep,
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -2289,7 +2289,7 @@ static void unmap_region(struct mm_struc
 	update_hiwater_rss(mm);
 	unmap_vmas(&tlb, vma, start, end);
 	free_pgtables(&tlb, vma, prev ? prev->vm_end : FIRST_USER_ADDRESS,
-				 next ? next->vm_start : 0);
+				 next ? next->vm_start : USER_PGTABLES_CEILING);
 	tlb_finish_mmu(&tlb, start, end);
 }
 
@@ -2667,7 +2667,7 @@ void exit_mmap(struct mm_struct *mm)
 	/* Use -1 here to ensure all VMAs in the mm are unmapped */
 	unmap_vmas(&tlb, vma, 0, -1);
 
-	free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, 0);
+	free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING);
 	tlb_finish_mmu(&tlb, 0, -1);
 
 	/*



  parent reply	other threads:[~2013-05-06 23:12 UTC|newest]

Thread overview: 106+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-06 23:11 [ 000/104] 3.8.12-stable review Greg Kroah-Hartman
2013-05-06 23:11 ` [ 001/104] USB: serial: option: Added support Olivetti Olicard 145 Greg Kroah-Hartman
2013-05-06 23:11 ` [ 002/104] USB: option: add a D-Link DWM-156 variant Greg Kroah-Hartman
2013-05-06 23:11 ` [ 003/104] staging: zsmalloc: Fix link error on ARM Greg Kroah-Hartman
2013-05-06 23:11 ` [ 004/104] ARM: omap3: cpuidle: enable time keeping Greg Kroah-Hartman
2013-05-06 23:11 ` [ 005/104] ARM: u300: fix ages old copy/paste bug Greg Kroah-Hartman
2013-05-06 23:11 ` [ 006/104] ARM: at91/at91sam9260.dtsi: fix u(s)art pinctrl encoding Greg Kroah-Hartman
2013-05-06 23:11 ` [ 007/104] ARM: at91: remove partial parameter in bootargs for at91sam9x5ek.dtsi Greg Kroah-Hartman
2013-05-06 23:11 ` [ 008/104] ARM: at91: Fix typo in restart code panic message Greg Kroah-Hartman
2013-05-06 23:11 ` [ 009/104] ARM: at91/trivial: fix model name for SAM9G15-EK Greg Kroah-Hartman
2013-05-06 23:11 ` [ 010/104] ARM: at91/trivial: typos in compatible property Greg Kroah-Hartman
2013-05-06 23:11 ` [ 011/104] powerpc: Add isync to copy_and_flush Greg Kroah-Hartman
2013-05-06 23:11 ` [ 012/104] powerpc: Fix hardware IRQs with MMU on exceptions when HV=0 Greg Kroah-Hartman
2013-05-06 23:11 ` [ 013/104] powerpc/power8: Fix secondary CPUs hanging on boot for HV=0 Greg Kroah-Hartman
2013-05-06 23:11 ` [ 014/104] powerpc/spufs: Initialise inode->i_ino in spufs_new_inode() Greg Kroah-Hartman
2013-05-06 23:11 ` [ 015/104] iwlwifi: fix freeing uninitialized pointer Greg Kroah-Hartman
2013-05-06 23:11 ` [ 016/104] iwlwifi: dvm: dont send zeroed LQ cmd Greg Kroah-Hartman
2013-05-06 23:11 ` [ 017/104] mwifiex: Use pci_release_region() instead of a pci_release_regions() Greg Kroah-Hartman
2013-05-06 23:11 ` [ 018/104] mwifiex: Call pci_release_region after calling pci_disable_device Greg Kroah-Hartman
2013-05-06 23:11 ` [ 019/104] mac80211: fix station entry leak/warning while suspending Greg Kroah-Hartman
2013-05-06 23:11 ` [ 020/104] usb/misc/appledisplay: Add 24" LED Cinema display Greg Kroah-Hartman
2013-05-06 23:11 ` [ 021/104] USB: add ftdi_sio USB ID for GDM Boost V1.x Greg Kroah-Hartman
2013-05-06 23:11 ` [ 022/104] USB: ftdi_sio: correct ST Micro Connect Lite PIDs Greg Kroah-Hartman
2013-05-06 23:11 ` [ 023/104] USB: ftdi_sio: enable two UART ports on ST Microconnect Lite Greg Kroah-Hartman
2013-05-06 23:11 ` [ 024/104] usbfs: Always allow ctrl requests with USB_RECIP_ENDPOINT on the ctrl ep Greg Kroah-Hartman
2013-05-06 23:11 ` [ 025/104] usb: chipidea: udc: fix memory access of shared memory on armv5 machines Greg Kroah-Hartman
2013-05-06 23:11 ` [ 026/104] usb: chipidea: udc: fix memory leak in _ep_nuke Greg Kroah-Hartman
2013-05-06 23:11 ` [ 027/104] usb: remove redundant tdi_reset Greg Kroah-Hartman
2013-05-06 23:11 ` [ 028/104] usb-storage: CY7C68300A chips do not support Cypress ATACB Greg Kroah-Hartman
2013-05-06 23:11 ` [ 029/104] s390/memory hotplug: prevent offline of active memory increments Greg Kroah-Hartman
2013-05-06 23:11 ` [ 030/104] xen/time: Fix kasprintf splat when allocating timer%d IRQ line Greg Kroah-Hartman
2013-05-06 23:11 ` [ 031/104] xen/smp: Fix leakage of timer interrupt line for every CPU online/offline Greg Kroah-Hartman
2013-05-06 23:11 ` [ 032/104] xen/smp/spinlock: Fix leakage of the spinlock " Greg Kroah-Hartman
2013-05-06 23:11 ` [ 033/104] serial_core.c: add put_device() after device_find_child() Greg Kroah-Hartman
2013-05-06 23:11 ` [ 034/104] arm: set the page table freeing ceiling to TASK_SIZE Greg Kroah-Hartman
2013-05-06 23:11 ` [ 035/104] gianfar: do not advertise any alarm capability Greg Kroah-Hartman
2013-05-06 23:11 ` [ 036/104] tty: fix up atime/mtime mess, take three Greg Kroah-Hartman
2013-05-06 23:11 ` [ 037/104] fbcon: when font is freed, clear also vc_font.data Greg Kroah-Hartman
2013-05-06 23:11 ` [ 038/104] tracing: Use stack of calling function for stack tracer Greg Kroah-Hartman
2013-05-06 23:11 ` [ 039/104] tracing: Fix stack tracer with fentry use Greg Kroah-Hartman
2013-05-06 23:11 ` [ 040/104] tracing: Remove most or all of stack tracer stack size from stack_max_size Greg Kroah-Hartman
2013-05-06 23:12 ` [ 041/104] tracing: Fix off-by-one on allocating stat->pages Greg Kroah-Hartman
2013-05-06 23:12 ` [ 042/104] tracing: Check return value of tracing_init_dentry() Greg Kroah-Hartman
2013-05-06 23:12 ` [ 043/104] tracing: Reset ftrace_graph_filter_enabled if count is zero Greg Kroah-Hartman
2013-05-06 23:12 ` [ 044/104] i2c: xiic: must always write 16-bit words to TX_FIFO Greg Kroah-Hartman
2013-05-06 23:12 ` [ 045/104] crypto: crc32-pclmul - Use gas macro for pclmulqdq Greg Kroah-Hartman
2013-05-06 23:12 ` [ 046/104] sysfs: fix use after free in case of concurrent read/write and readdir Greg Kroah-Hartman
2013-05-06 23:12 ` [ 047/104] Fix initialization of CMCI/CMCP interrupts Greg Kroah-Hartman
2013-05-06 23:12 ` [ 048/104] PCI / ACPI: Dont query OSC support with all possible controls Greg Kroah-Hartman
2013-05-06 23:12 ` [ 049/104] PCI/PM: Fix fallback to PCI_D0 in pci_platform_power_transition() Greg Kroah-Hartman
2013-05-06 23:12 ` [ 050/104] rt2x00: Fix transmit power troubles on some Ralink RT30xx cards Greg Kroah-Hartman
2013-05-06 23:12 ` [ 051/104] Wrong asm register contraints in the futex implementation Greg Kroah-Hartman
2013-05-06 23:12 ` [ 052/104] Wrong asm register contraints in the kvm implementation Greg Kroah-Hartman
2013-05-06 23:12 ` [ 053/104] fs/fscache/stats.c: fix memory leak Greg Kroah-Hartman
2013-05-06 23:12 ` Greg Kroah-Hartman [this message]
2013-05-06 23:12 ` [ 055/104] TPM: Retry SaveState command in suspend path Greg Kroah-Hartman
2013-05-06 23:12 ` [ 056/104] ALSA: emu10k1: Fix dock firmware loading Greg Kroah-Hartman
2013-05-06 23:12 ` [ 057/104] ALSA: snd-usb: try harder to find USB_DT_CS_ENDPOINT Greg Kroah-Hartman
2013-05-06 23:12 ` [ 058/104] ALSA: usb: Add quirk for 192KHz recording on E-Mu devices Greg Kroah-Hartman
2013-05-06 23:12 ` [ 059/104] ALSA: usb-audio: disable autopm for MIDI devices Greg Kroah-Hartman
2013-05-06 23:12 ` [ 060/104] ALSA: usb-audio: Fix autopm error during probing Greg Kroah-Hartman
2013-05-06 23:12 ` [ 061/104] ALSA: USB: adjust for changed 3.8 USB API Greg Kroah-Hartman
2013-05-06 23:12 ` [ 062/104] ALSA: hda - Add the support for ALC286 codec Greg Kroah-Hartman
2013-05-06 23:12 ` [ 063/104] ARM: 7702/1: Set the page table freeing ceiling to TASK_SIZE Greg Kroah-Hartman
2013-05-06 23:12 ` [ 064/104] ASoC: max98088: Fix logging of hardware revision Greg Kroah-Hartman
2013-05-06 23:12 ` [ 065/104] hrtimer: Fix ktime_add_ns() overflow on 32bit architectures Greg Kroah-Hartman
2013-05-06 23:12 ` [ 066/104] hrtimer: Add expiry time overflow check in hrtimer_interrupt Greg Kroah-Hartman
2013-05-06 23:12 ` [ 067/104] swap: redirty page if page write fails on swap file Greg Kroah-Hartman
2013-05-06 23:12 ` [ 068/104] mm: swap: mark swap pages writeback before queueing for direct IO Greg Kroah-Hartman
2013-05-06 23:12 ` [ 069/104] drivers/rtc/rtc-cmos.c: dont disable hpet emulation on suspend Greg Kroah-Hartman
2013-05-06 23:12 ` [ 070/104] libata: acpi: make ata_ap_acpi_handle not block Greg Kroah-Hartman
2013-05-06 23:12 ` [ 071/104] ACPI: Fix wrong parameter passed to memblock_reserve Greg Kroah-Hartman
2013-05-06 23:12 ` [ 072/104] ACPI / thermal: do not always return THERMAL_TREND_RAISING for active trip points Greg Kroah-Hartman
2013-05-06 23:12 ` [ 073/104] cgroup: fix an off-by-one bug which may trigger BUG_ON() Greg Kroah-Hartman
2013-05-06 23:12 ` [ 074/104] cgroup: fix broken file xattrs Greg Kroah-Hartman
2013-05-06 23:12 ` [ 075/104] localmodconfig: Process source kconfig files as they are found Greg Kroah-Hartman
2013-05-06 23:12 ` [ 076/104] clockevents: Set dummy handler on CPU_DEAD shutdown Greg Kroah-Hartman
2013-05-06 23:12 ` [ 077/104] sata_highbank: Rename proc_name to the module name Greg Kroah-Hartman
2013-05-06 23:12 ` [ 078/104] inotify: invalid mask should return a error number but not set it Greg Kroah-Hartman
2013-05-06 23:12 ` [ 079/104] fs/dcache.c: add cond_resched() to shrink_dcache_parent() Greg Kroah-Hartman
2013-05-06 23:12 ` [ 080/104] exec: do not abuse ->cred_guard_mutex in threadgroup_lock() Greg Kroah-Hartman
2013-05-06 23:12 ` [ 081/104] LOCKD: Ensure that nlmclnt_block resets block->b_status after a server reboot Greg Kroah-Hartman
2013-05-06 23:12 ` [ 082/104] md: bad block list should default to disabled Greg Kroah-Hartman
2013-05-06 23:12 ` [ 083/104] MD: ignore discard request for hard disks of hybid raid1/raid10 array Greg Kroah-Hartman
2013-05-06 23:12 ` [ 084/104] NFSv4: Handle NFS4ERR_DELAY and NFS4ERR_GRACE in nfs4_open_delegation_recall Greg Kroah-Hartman
2013-05-06 23:12 ` [ 085/104] nfsd4: dont close read-write opens too soon Greg Kroah-Hartman
2013-05-06 23:12 ` [ 086/104] nfsd: dont run get_file if nfs4_preprocess_stateid_op return error Greg Kroah-Hartman
2013-05-06 23:12 ` [ 087/104] nfsd: Decode and send 64bit time values Greg Kroah-Hartman
2013-05-06 23:12 ` [ 088/104] wireless: regulatory: fix channel disabling race condition Greg Kroah-Hartman
2013-05-06 23:12 ` [ 089/104] ipc: sysv shared memory limited to 8TiB Greg Kroah-Hartman
2013-05-06 23:12 ` [ 090/104] ixgbe: fix EICR write in ixgbe_msix_other Greg Kroah-Hartman
2013-05-06 23:12 ` [ 091/104] ext4/jbd2: dont wait (forever) for stale tid caused by wraparound Greg Kroah-Hartman
2013-05-06 23:12 ` [ 092/104] jbd2: fix race between jbd2_journal_remove_checkpoint and ->j_commit_callback Greg Kroah-Hartman
2013-05-06 23:12 ` [ 093/104] ext4: fix journal callback list traversal Greg Kroah-Hartman
2013-05-06 23:12 ` [ 094/104] ext4: fix big-endian bug in metadata checksum calculations Greg Kroah-Hartman
2013-05-06 23:12 ` [ 095/104] ext4: fix online resizing for ext3-compat file systems Greg Kroah-Hartman
2013-05-06 23:12 ` [ 096/104] ext4: fix Kconfig documentation for CONFIG_EXT4_DEBUG Greg Kroah-Hartman
2013-05-06 23:12 ` [ 097/104] mmc: at91/avr32/atmel-mci: fix DMA-channel leak on module unload Greg Kroah-Hartman
2013-05-06 23:12 ` [ 098/104] Give the OID registry file module info to avoid kernel tainting Greg Kroah-Hartman
2013-05-06 23:12 ` [ 099/104] KVM: X86 emulator: fix source operand decoding for 8bit mov[zs]x instructions Greg Kroah-Hartman
2013-05-06 23:12 ` [ 100/104] x86: Eliminate irq_mis_count counted in arch_irq_stat Greg Kroah-Hartman
2013-05-06 23:13 ` [ 101/104] mmc: core: Fix bit width test failing on old eMMC cards Greg Kroah-Hartman
2013-05-06 23:13 ` [ 102/104] mmc: atmel-mci: pio hang on block errors Greg Kroah-Hartman
2013-05-06 23:13 ` [ 103/104] rcutrace: single_open() leaks Greg Kroah-Hartman
2013-05-06 23:13 ` [ 104/104] mfd: adp5520: Restore mode bits on resume Greg Kroah-Hartman
     [not found] ` <CAKocOOPJ=hsX6zY=2tgE=VBNLruqg7Asmym2ia0ye4FZiS5fSw@mail.gmail.com>
2013-05-07 19:16   ` [ 000/104] 3.8.12-stable review Shuah Khan

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=20130506230049.152032788@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=akpm@linux-foundation.org \
    --cc=catalin.marinas@arm.com \
    --cc=hughd@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=stable@vger.kernel.org \
    --cc=torvalds@linux-foundation.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