* [PATCH] Block: Fix block/elevator.c elevator_get() off-by-one error
@ 2010-03-30 9:21 wzt.wzt
2010-04-02 6:40 ` Jens Axboe
2010-04-02 7:14 ` Xiaotian Feng
0 siblings, 2 replies; 3+ messages in thread
From: wzt.wzt @ 2010-03-30 9:21 UTC (permalink / raw)
To: linux-kernel; +Cc: axboe
elevator_get() not check the name length, if the name length > sizeof(elv),
elv will miss the '\0'. And elv buffer will be replace "-iosched" as something
like aaaaaaaaa, then call request_module() can load an not trust module.
Signed-off-by: Zhitong Wang <zhitong.wangzt@alibaba-inc.com>
---
block/elevator.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/block/elevator.c b/block/elevator.c
index df75676..76e3702 100644
--- a/block/elevator.c
+++ b/block/elevator.c
@@ -154,7 +154,7 @@ static struct elevator_type *elevator_get(const char *name)
spin_unlock(&elv_list_lock);
- sprintf(elv, "%s-iosched", name);
+ snprintf(elv, sizeof(elv), "%s-iosched", name);
request_module("%s", elv);
spin_lock(&elv_list_lock);
--
1.6.5.3
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] Block: Fix block/elevator.c elevator_get() off-by-one error
2010-03-30 9:21 [PATCH] Block: Fix block/elevator.c elevator_get() off-by-one error wzt.wzt
@ 2010-04-02 6:40 ` Jens Axboe
2010-04-02 7:14 ` Xiaotian Feng
1 sibling, 0 replies; 3+ messages in thread
From: Jens Axboe @ 2010-04-02 6:40 UTC (permalink / raw)
To: wzt.wzt; +Cc: linux-kernel
On Tue, Mar 30 2010, wzt.wzt@gmail.com wrote:
> elevator_get() not check the name length, if the name length > sizeof(elv),
> elv will miss the '\0'. And elv buffer will be replace "-iosched" as something
> like aaaaaaaaa, then call request_module() can load an not trust module.
Thanks, good catch! Applied.
--
Jens Axboe
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Block: Fix block/elevator.c elevator_get() off-by-one error
2010-03-30 9:21 [PATCH] Block: Fix block/elevator.c elevator_get() off-by-one error wzt.wzt
2010-04-02 6:40 ` Jens Axboe
@ 2010-04-02 7:14 ` Xiaotian Feng
1 sibling, 0 replies; 3+ messages in thread
From: Xiaotian Feng @ 2010-04-02 7:14 UTC (permalink / raw)
To: wzt.wzt; +Cc: linux-kernel, axboe
On Tue, Mar 30, 2010 at 5:21 PM, <wzt.wzt@gmail.com> wrote:
> elevator_get() not check the name length, if the name length > sizeof(elv),
> elv will miss the '\0'. And elv buffer will be replace "-iosched" as something
> like aaaaaaaaa, then call request_module() can load an not trust module.
>
> Signed-off-by: Zhitong Wang <zhitong.wangzt@alibaba-inc.com>
>
> ---
> block/elevator.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/block/elevator.c b/block/elevator.c
> index df75676..76e3702 100644
> --- a/block/elevator.c
> +++ b/block/elevator.c
> @@ -154,7 +154,7 @@ static struct elevator_type *elevator_get(const char *name)
>
> spin_unlock(&elv_list_lock);
>
> - sprintf(elv, "%s-iosched", name);
> + snprintf(elv, sizeof(elv), "%s-iosched", name);
>
elv is defined as char elv[ELV_NAME_MAX + strlen("-iosched")];
so if name length > sizeof(elv), the name length must already bigger
than ELV_NAME_MAX
elevator_get is used in elevator_init, so if elevator_init is passing
a super long name, why not just return -EINVAL?
In this patch, if we pass a super long name, we're still trying to cut
it and request_module an invalid name, right?
Although '\0' is kept, but name is still invalid, right?
> request_module("%s", elv);
> spin_lock(&elv_list_lock);
> --
> 1.6.5.3
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-04-02 7:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-30 9:21 [PATCH] Block: Fix block/elevator.c elevator_get() off-by-one error wzt.wzt
2010-04-02 6:40 ` Jens Axboe
2010-04-02 7:14 ` Xiaotian Feng
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.