[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140804202541.GB27304@mail.hallyn.com>
Date: Mon, 4 Aug 2014 22:25:41 +0200
From: "Serge E. Hallyn" <serge@...lyn.com>
To: Cyrill Gorcunov <gorcunov@...nvz.org>
Cc: linux-kernel@...r.kernel.org, keescook@...omium.org, tj@...nel.org,
akpm@...ux-foundation.org, avagin@...nvz.org,
ebiederm@...ssion.com, hpa@...or.com, serge.hallyn@...onical.com,
xemul@...allels.com, segoon@...nwall.com,
kamezawa.hiroyu@...fujitsu.com, mtk.manpages@...il.com,
jln@...gle.com
Subject: Re: [patch 1/4] mm: Introduce check_data_rlimit helper, v2
Quoting Cyrill Gorcunov (gorcunov@...nvz.org):
> To eliminate code duplication lets introduce check_data_rlimit
> helper which we will use in brk() and prctl() syscalls.
>
> v2 (serge.hallyn@):
> - need to check against RLIM_INFINITY rather than RLIMIT_DATA
>
> Signed-off-by: Cyrill Gorcunov <gorcunov@...nvz.org>
> Cc: Kees Cook <keescook@...omium.org>
> Cc: Tejun Heo <tj@...nel.org>
> Cc: Andrew Morton <akpm@...ux-foundation.org>
> Cc: Andrew Vagin <avagin@...nvz.org>
> Cc: Eric W. Biederman <ebiederm@...ssion.com>
> Cc: H. Peter Anvin <hpa@...or.com>
> Cc: Serge Hallyn <serge.hallyn@...onical.com>
Acked-by: Serge Hallyn <serge.hallyn@...onical.com>
> Cc: Pavel Emelyanov <xemul@...allels.com>
> Cc: Vasiliy Kulikov <segoon@...nwall.com>
> Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@...fujitsu.com>
> Cc: Michael Kerrisk <mtk.manpages@...il.com>
> Cc: Julien Tinnes <jln@...gle.com>
> ---
> include/linux/mm.h | 15 +++++++++++++++
> 1 file changed, 15 insertions(+)
>
> Index: linux-2.6.git/include/linux/mm.h
> ===================================================================
> --- linux-2.6.git.orig/include/linux/mm.h
> +++ linux-2.6.git/include/linux/mm.h
> @@ -18,6 +18,7 @@
> #include <linux/pfn.h>
> #include <linux/bit_spinlock.h>
> #include <linux/shrinker.h>
> +#include <linux/resource.h>
>
> struct mempolicy;
> struct anon_vma;
> @@ -1780,6 +1781,20 @@ extern struct vm_area_struct *copy_vma(s
> bool *need_rmap_locks);
> extern void exit_mmap(struct mm_struct *);
>
> +static inline int check_data_rlimit(unsigned long rlim,
> + unsigned long new,
> + unsigned long start,
> + unsigned long end_data,
> + unsigned long start_data)
> +{
> + if (rlim < RLIM_INFINITY) {
> + if (((new - start) + (end_data - start_data)) > rlim)
> + return -ENOSPC;
> + }
> +
> + return 0;
> +}
> +
> extern int mm_take_all_locks(struct mm_struct *mm);
> extern void mm_drop_all_locks(struct mm_struct *mm);
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists