[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1322031811.1298.38.camel@edumazet-laptop>
Date: Wed, 23 Nov 2011 08:03:31 +0100
From: Eric Dumazet <eric.dumazet@...il.com>
To: Dan Carpenter <dan.carpenter@...cle.com>
Cc: Karsten Keil <isdn@...ux-pingi.de>, netdev@...r.kernel.org,
kernel-janitors@...r.kernel.org
Subject: Re: [patch] isdn: make sure strings are null terminated
Le mercredi 23 novembre 2011 à 09:42 +0300, Dan Carpenter a écrit :
> These strings come from the user. We strcpy() them inside
> cf_command() so we should check that they are NULL terminated and
> return an error if not.
>
> Signed-off-by: Dan Carpenter <dan.carpenter@...cle.com>
>
> diff --git a/drivers/isdn/divert/divert_procfs.c b/drivers/isdn/divert/divert_procfs.c
> index 33ec9e4..0c16687 100644
> --- a/drivers/isdn/divert/divert_procfs.c
> +++ b/drivers/isdn/divert/divert_procfs.c
> @@ -242,6 +242,10 @@ static int isdn_divert_ioctl_unlocked(struct file *file, uint cmd, ulong arg)
> case IIOCDOCFINT:
> if (!divert_if.drv_to_name(dioctl.cf_ctrl.drvid))
> return (-EINVAL); /* invalid driver */
> + if (strlen(dioctl.cf_ctrl.msn) >= sizeof(dioctl.cf_ctrl.msn))
> + return -EINVAL;
This looks buggy.
If string is not null terminated, how strlen() will stop you from going
out of bounds, and trigger some run time checker ?
strnlen() would be more effective...
> + if (strlen(dioctl.cf_ctrl.fwd_nr) >= sizeof(dioctl.cf_ctrl.fwd_nr))
> + return -EINVAL;
> if ((i = cf_command(dioctl.cf_ctrl.drvid,
> (cmd == IIOCDOCFACT) ? 1 : (cmd == IIOCDOCFDIS) ? 0 : 2,
> dioctl.cf_ctrl.cfproc,
> --
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists