From: Evgeny Kuznetsov Date: Wed, 27 Oct 2010 22:33:37 +0000 (-0700) Subject: cgroups: add check for strcpy destination string overflow X-Git-Tag: v2.6.37-rc1~85^2~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f4a2589feaef0a9b737a3e582b37ee96695bb25f;p=profile%2Fcommon%2Fkernel-common.git cgroups: add check for strcpy destination string overflow Function "strcpy" is used without check for maximum allowed source string length and could cause destination string overflow. Check for string length is added before using "strcpy". Function now is return error if source string length is more than a maximum. akpm: presently considered NotABug, but add the check for general future-safeness and robustness. Signed-off-by: Evgeny Kuznetsov Acked-by: Paul Menage Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/cgroup.c b/kernel/cgroup.c index 3e6517e..5cf3669 100644 --- a/kernel/cgroup.c +++ b/kernel/cgroup.c @@ -1922,6 +1922,8 @@ static int cgroup_release_agent_write(struct cgroup *cgrp, struct cftype *cft, const char *buffer) { BUILD_BUG_ON(sizeof(cgrp->root->release_agent_path) < PATH_MAX); + if (strlen(buffer) >= PATH_MAX) + return -EINVAL; if (!cgroup_lock_live_group(cgrp)) return -ENODEV; strcpy(cgrp->root->release_agent_path, buffer);