blob: c54af790a564ea312b6120dd8dd08e7c4cb047f5 [file] [log] [blame]
/* { dg-do compile } */
// TODO: remove need for -fanalyzer-checker=taint here:
// TODO: remove need for --param=analyzer-max-svalue-depth=25 here:
/* { dg-options "-fanalyzer -fanalyzer-checker=taint --param=analyzer-max-svalue-depth=25" } */
/* { dg-require-effective-target analyzer } */
/* See notes in this header. */
#include "taint-CVE-2011-0521.h"
/* Adapted from dvb_ca_ioctl in drivers/media/dvb/ttpci/av7110_ca.c and
dvb_usercopy in drivers/media/dvb/dvb-core/dvbdev.c
Further simplified from -5; remove all control flow. */
int test_1(struct file *file, unsigned int cmd, unsigned long arg)
{
ca_slot_info_t sbuf;
if (copy_from_user(&sbuf, (void __user *)arg, sizeof(sbuf)) != 0)
return -1;
{
struct dvb_device *dvbdev = file->private_data;
struct av7110 *av7110 = dvbdev->priv;
/* case CA_GET_SLOT_INFO: */
ca_slot_info_t *info= &sbuf;
__analyzer_dump_state ("taint", info->num); /* { dg-warning "tainted" } */
//__analyzer_break ();
av7110->ci_slot[info->num].num = info->num; /* { dg-warning "use of attacker-controlled value '\\*info\\.num' in array lookup without bounds checking" } */
av7110->ci_slot[info->num].type = FW_CI_LL_SUPPORT(av7110->arm_app) ? /* { dg-warning "use of attacker-controlled value '\\*info\\.num' in array lookup without bounds checking" } */
CA_CI_LINK : CA_CI;
memcpy(info, &av7110->ci_slot[info->num], sizeof(ca_slot_info_t)); /* { dg-warning "use of attacker-controlled value in array lookup without bounds checking" } */
}
copy_to_user((void __user *)arg, &sbuf, sizeof(sbuf));
return 0;
}