Lucene search

K
securityvulnsSecurityvulnsSECURITYVULNS:DOC:30033
HistoryNov 26, 2013 - 12:00 a.m.

XADV-2013007 Linux Kernel bt8xx Video Driver IOCTL Heap Overflow

2013-11-2600:00:00
vulners.com
40

±-------------------------------------------------------------------+
| XADV-2013007 Linux Kernel bt8xx Video Driver IOCTL Heap Overflow |
±-------------------------------------------------------------------+

Vulnerable versions:

  • linux kernel 2.6.18 <=
    Testbed: ubuntu
    Type: Local
    Impact: Medium
    Vendor: http://www.kernel.org
    Author: x90c <geinblues nospam gmail dot com>
    Site: x90c.org

=========
ABSTRACT:

The bt8xx video driver is a video capture driver. It supports Bt848
Bt849, Bt878, and Bt879.

The bt8xx video driver in the linux kernel has a vulnerability to
occur Integer overflow to the kernel panic. It's at do ioctl code for
bt8xx and copy_from_user() larger user-supplied data to the kernel
heap buffer than kmalloc'd kmem.

I discovered it again.

=========
DETAILS:

(1) v4l2_clip struct.

[~linux-2.6.18/include/linux/videodev2.h]

struct v4l2_clip
{
struct v4l2_rect c;
struct v4l2_clip __user *next;
};

[~linux/2.6.18/include/linux/videodev.h]

struct video_window
{
__u32 x,y; /* Position of window /
__u32 width,height; /
Its size */
__u32 chromakey;
__u32 flags;
struct video_clip __user clips; / Set only /
int clipcount;
#define VIDEO_WINDOW_INTERLACE 1
#define VIDEO_WINDOW_CHROMAKEY 16 /
Overlay by chromakey /
#define VIDEO_CLIP_BITMAP -1
/
bitmap is 1024x625, a '1' bit represents a clipped pixel */
#define VIDEO_CLIPMAP_SIZE (128 * 625)
};

*clips member varaible of video_window is a pointer.

(2) Do exploit: bttv IOCTL!

[~/linux-2.6.18/drivers/media/video/bt8xx/bttv-driver.c]

static int bttv_do_ioctl(struct inode *inode, struct file *file,
unsigned int cmd, void *arg)
{

case VIDIOCSWIN:
{
struct video_window *win = arg; // XXX win = arg.
struct v4l2_window w2;

if (no_overlay > 0) {
printk ("VIDIOCSWIN: no_overlay\n");
return -EINVAL;
}

w2.field = V4L2_FIELD_ANY;
w2.w.left = win->x;
w2.w.top = win->y;
w2.w.width = win->width;
w2.w.height = win->height;
w2.clipcount = win->clipcount; // clipcount! (copy size / 8)
w2.clips = (struct v4l2_clip __user *)win->clips; // clips! (to copy src)
retval = setup_window(fh, btv, &w2, 0); // XXX vulnerable setup_window() called!

The ioctl argument to win struct pointer and store the win->clipcount and
win->clips to w2 struct for each. and called vulnerable setup_window().

(3) Result: kernel heap overflow occured.

[~/linux-2.6.18/drivers/media/video/bt8xx/bttv-driver.c]

static int setup_window(struct bttv_fh *fh, struct bttv *btv,
struct v4l2_window *win, int fixup)
{
struct v4l2_clip *clips = NULL;
int n,size,retval = 0; // XXX n, size are signed.

if (NULL == fh->ovfmt)
return -EINVAL;

if (!(fh->ovfmt->flags & FORMAT_FLAGS_PACKED))
return -EINVAL;

/* XXX no win.clipcount/clips validation. */
retval = verify_window(&bttv_tvnorms[btv->tvnorm],win,fixup);
if (0 != retval)
return retval;

/* copy clips – luckily v4l1 + v4l2 are binary
compatible here …*/

/*

  • XXX win(ioctl arg)->clipcount as a negative value, -3.
  • n and ->clipcount both signed integer.
    */

n = win->clipcount;

// (2) XXX *clips size kmalloc'd!
size = sizeof(clips)(n+4); // If n == -3? (-3+4)=1.
clips = kmalloc(size,GFP_KERNEL);

if (NULL == clips)
return -ENOMEM;

/*

  • copy size is -(v4l2_clip struct size * n) to occur Integer overflow,
  • to be larger value to a little clips buffer. Kernel Panic!
    */
    if (n > 0) {
    if (copy_from_user(clips,win->clips, sizeof(struct v4l2_clip)*n)) {
    kfree(clips);
    return -EFAULT;
    }
    }

===============
EXPLOIT CODES:

=============
PATCH CODES:

===============
VENDOR STATUS:

2013/11/18 - I discovered the security bug.
2013/11/18 - The advisory released on full-disclosure, bugtraq.
2013/11/19 - An PoC code for the bug submitted to the exploit-db.

============
DISCLAIMER:

The authors reserve the right not to be responsible for the topicality,
correctness, completeness or quality of the information provided in this
document. Liability claims regarding damage caused by the use of any information
provided, including any kind of information which is incomplete or incorrect,
will therefore be rejected.