[PATCH v1 1/1] : mm : mmap.c Arithmetic overflow in may_expand_vm()

From: Earl Chew
Date: Fri Oct 16 2009 - 10:51:53 EST


The function may_expand_vm() may return a false positive if the proposed
increment (npages) is sufficient large to overflow the expression:

cur + npages

Assuming that cur < lim is an invariant, the proposed patch re-arranges
the expression to avoid unsigned arithmetic overflow.

More robustly:

if (cur > lim || npages > lim - cur)
return 0;

might be preferred if it cannot be guaranteed that cur < lim.



--- linux-2.6.21_mvlcge500/mm/mmap.c.orig 2008-06-30 22:43:38.000000000 -0700
+++ linux-2.6.21_mvlcge500/mm/mmap.c 2009-10-16 07:42:23.000000000 -0700
@@ -2303,7 +2303,7 @@ int may_expand_vm(struct mm_struct *mm,

lim = current->signal->rlim[RLIMIT_AS].rlim_cur >> PAGE_SHIFT;

- if (cur + npages > lim)
+ if (npages > lim - cur)
return 0;
return 1;
}



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/