idx
int64
project
string
commit_id
string
project_url
string
commit_url
string
commit_message
string
target
int64
func
string
func_hash
float64
file_name
string
file_hash
float64
cwe
list
cve
string
cve_desc
string
nvd_url
string
39,502
linux
8e3fbf870481eb53b2d3a322d1fc395ad8b367ed
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/8e3fbf870481eb53b2d3a322d1fc395ad8b367ed
hamradio/yam: fix info leak in ioctl The yam_ioctl() code fails to initialise the cmd field of the struct yamdrv_ioctl_cfg. Add an explicit memset(0) before filling the structure to avoid the 4-byte info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem@davemloft.net>
0
static void *yam_seq_start(struct seq_file *seq, loff_t *pos) { return (*pos < NR_PORTS) ? yam_devs[*pos] : NULL; }
234,881,629,388,211,500,000,000,000,000,000,000,000
yam.c
326,370,070,443,985,540,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1446
The yam_ioctl function in drivers/net/hamradio/yam.c in the Linux kernel before 3.12.8 does not initialize a certain structure member, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCYAMGCFG ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1446
39,503
linux
8e3fbf870481eb53b2d3a322d1fc395ad8b367ed
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/8e3fbf870481eb53b2d3a322d1fc395ad8b367ed
hamradio/yam: fix info leak in ioctl The yam_ioctl() code fails to initialise the cmd field of the struct yamdrv_ioctl_cfg. Add an explicit memset(0) before filling the structure to avoid the 4-byte info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem@davemloft.net>
0
static void yam_seq_stop(struct seq_file *seq, void *v) { }
316,972,358,334,624,000,000,000,000,000,000,000,000
yam.c
326,370,070,443,985,540,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1446
The yam_ioctl function in drivers/net/hamradio/yam.c in the Linux kernel before 3.12.8 does not initialize a certain structure member, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCYAMGCFG ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1446
39,504
linux
8e3fbf870481eb53b2d3a322d1fc395ad8b367ed
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/8e3fbf870481eb53b2d3a322d1fc395ad8b367ed
hamradio/yam: fix info leak in ioctl The yam_ioctl() code fails to initialise the cmd field of the struct yamdrv_ioctl_cfg. Add an explicit memset(0) before filling the structure to avoid the 4-byte info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem@davemloft.net>
0
static void yam_set_uart(struct net_device *dev) { struct yam_port *yp = netdev_priv(dev); int divisor = 115200 / yp->baudrate; outb(0, IER(dev->base_addr)); outb(LCR_DLAB | LCR_BIT8, LCR(dev->base_addr)); outb(divisor, DLL(dev->base_addr)); outb(0, DLM(dev->base_addr)); outb(LCR_BIT8, LCR(dev->base_addr)); ou...
266,656,601,164,102,100,000,000,000,000,000,000,000
yam.c
326,370,070,443,985,540,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1446
The yam_ioctl function in drivers/net/hamradio/yam.c in the Linux kernel before 3.12.8 does not initialize a certain structure member, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCYAMGCFG ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1446
39,505
linux
8e3fbf870481eb53b2d3a322d1fc395ad8b367ed
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/8e3fbf870481eb53b2d3a322d1fc395ad8b367ed
hamradio/yam: fix info leak in ioctl The yam_ioctl() code fails to initialise the cmd field of the struct yamdrv_ioctl_cfg. Add an explicit memset(0) before filling the structure to avoid the 4-byte info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem@davemloft.net>
0
static void yam_setup(struct net_device *dev) { struct yam_port *yp = netdev_priv(dev); yp->magic = YAM_MAGIC; yp->bitrate = DEFAULT_BITRATE; yp->baudrate = DEFAULT_BITRATE * 2; yp->iobase = 0; yp->irq = 0; yp->dupmode = 0; yp->holdd = DEFAULT_HOLDD; yp->txd = DEFAULT_TXD; yp->txtail = DEFAULT_TXTAIL; yp->s...
252,375,245,419,371,040,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1446
The yam_ioctl function in drivers/net/hamradio/yam.c in the Linux kernel before 3.12.8 does not initialize a certain structure member, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCYAMGCFG ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1446
39,506
linux
8e3fbf870481eb53b2d3a322d1fc395ad8b367ed
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/8e3fbf870481eb53b2d3a322d1fc395ad8b367ed
hamradio/yam: fix info leak in ioctl The yam_ioctl() code fails to initialise the cmd field of the struct yamdrv_ioctl_cfg. Add an explicit memset(0) before filling the structure to avoid the 4-byte info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem@davemloft.net>
0
static void yam_start_tx(struct net_device *dev, struct yam_port *yp) { if ((yp->tx_state == TX_TAIL) || (yp->txd == 0)) yp->tx_count = 1; else yp->tx_count = (yp->bitrate * yp->txd) / 8000; yp->tx_state = TX_HEAD; ptt_on(dev); }
204,816,795,652,778,800,000,000,000,000,000,000,000
yam.c
326,370,070,443,985,540,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1446
The yam_ioctl function in drivers/net/hamradio/yam.c in the Linux kernel before 3.12.8 does not initialize a certain structure member, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCYAMGCFG ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1446
39,507
linux
8e3fbf870481eb53b2d3a322d1fc395ad8b367ed
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/8e3fbf870481eb53b2d3a322d1fc395ad8b367ed
hamradio/yam: fix info leak in ioctl The yam_ioctl() code fails to initialise the cmd field of the struct yamdrv_ioctl_cfg. Add an explicit memset(0) before filling the structure to avoid the 4-byte info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem@davemloft.net>
0
static void yam_tx_byte(struct net_device *dev, struct yam_port *yp) { struct sk_buff *skb; unsigned char b, temp; switch (yp->tx_state) { case TX_OFF: break; case TX_HEAD: if (--yp->tx_count <= 0) { if (!(skb = skb_dequeue(&yp->send_queue))) { ptt_off(dev); yp->tx_state = TX_OFF; break; } ...
165,626,757,060,031,100,000,000,000,000,000,000,000
yam.c
326,370,070,443,985,540,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1446
The yam_ioctl function in drivers/net/hamradio/yam.c in the Linux kernel before 3.12.8 does not initialize a certain structure member, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCYAMGCFG ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1446
39,508
linux
2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
wanxl: fix info leak in ioctl The wanxl_ioctl() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem...
0
static inline dma_addr_t pci_map_single_debug(struct pci_dev *pdev, void *ptr, size_t size, int direction) { dma_addr_t addr = pci_map_single(pdev, ptr, size, direction); if (addr + size > 0x100000000LL) pr_crit("%s: pci_map_single() returned memory at 0x%llx!\n", pci_name(pdev), (unsigned long long)a...
163,909,870,426,030,110,000,000,000,000,000,000,000
wanxl.c
316,013,096,835,404,300,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1445
The wanxl_ioctl function in drivers/net/wan/wanxl.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory via an ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1445
39,509
linux
2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
wanxl: fix info leak in ioctl The wanxl_ioctl() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem...
0
static inline void wanxl_cable_intr(port_t *port) { u32 value = get_status(port)->cable; int valid = 1; const char *cable, *pm, *dte = "", *dsr = "", *dcd = ""; switch(value & 0x7) { case STATUS_CABLE_V35: cable = "V.35"; break; case STATUS_CABLE_X21: cable = "X.21"; break; case STATUS_CABLE_V24: cable = "V.24"...
57,011,895,442,288,760,000,000,000,000,000,000,000
wanxl.c
316,013,096,835,404,300,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1445
The wanxl_ioctl function in drivers/net/wan/wanxl.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory via an ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1445
39,510
linux
2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
wanxl: fix info leak in ioctl The wanxl_ioctl() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem...
0
static void __exit wanxl_cleanup_module(void) { pci_unregister_driver(&wanxl_pci_driver); }
315,776,190,610,444,450,000,000,000,000,000,000,000
wanxl.c
316,013,096,835,404,300,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1445
The wanxl_ioctl function in drivers/net/wan/wanxl.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory via an ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1445
39,511
linux
2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
wanxl: fix info leak in ioctl The wanxl_ioctl() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem...
0
static int wanxl_close(struct net_device *dev) { port_t *port = dev_to_port(dev); unsigned long timeout; int i; hdlc_close(dev); /* signal the card */ writel(1 << (DOORBELL_TO_CARD_CLOSE_0 + port->node), port->card->plx + PLX_DOORBELL_TO_CARD); timeout = jiffies + HZ; do { if (!get_status(port)->ope...
179,101,757,728,195,000,000,000,000,000,000,000,000
wanxl.c
316,013,096,835,404,300,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1445
The wanxl_ioctl function in drivers/net/wan/wanxl.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory via an ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1445
39,512
linux
2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
wanxl: fix info leak in ioctl The wanxl_ioctl() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem...
0
static struct net_device_stats *wanxl_get_stats(struct net_device *dev) { port_t *port = dev_to_port(dev); dev->stats.rx_over_errors = get_status(port)->rx_overruns; dev->stats.rx_frame_errors = get_status(port)->rx_frame_errors; dev->stats.rx_errors = dev->stats.rx_over_errors + dev->stats.rx_frame_errors; ret...
176,509,445,005,915,200,000,000,000,000,000,000,000
wanxl.c
316,013,096,835,404,300,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1445
The wanxl_ioctl function in drivers/net/wan/wanxl.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory via an ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1445
39,513
linux
2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
wanxl: fix info leak in ioctl The wanxl_ioctl() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem...
0
static irqreturn_t wanxl_intr(int irq, void* dev_id) { card_t *card = dev_id; int i; u32 stat; int handled = 0; while((stat = readl(card->plx + PLX_DOORBELL_FROM_CARD)) != 0) { handled = 1; writel(stat, card->plx + PLX_DOORBELL_FROM_CARD); for...
178,928,846,529,896,960,000,000,000,000,000,000,000
wanxl.c
316,013,096,835,404,300,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1445
The wanxl_ioctl function in drivers/net/wan/wanxl.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory via an ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1445
39,514
linux
2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
wanxl: fix info leak in ioctl The wanxl_ioctl() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem...
0
static int wanxl_open(struct net_device *dev) { port_t *port = dev_to_port(dev); u8 __iomem *dbr = port->card->plx + PLX_DOORBELL_TO_CARD; unsigned long timeout; int i; if (get_status(port)->open) { netdev_err(dev, "port already open\n"); return -EIO; } if ((i = hdlc_open(dev)) != 0) return i; port->tx_...
194,392,861,910,873,960,000,000,000,000,000,000,000
wanxl.c
316,013,096,835,404,300,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1445
The wanxl_ioctl function in drivers/net/wan/wanxl.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory via an ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1445
39,515
linux
2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
wanxl: fix info leak in ioctl The wanxl_ioctl() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem...
0
static int wanxl_pci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) { card_t *card; u32 ramsize, stat; unsigned long timeout; u32 plx_phy; /* PLX PCI base address */ u32 mem_phy; /* memory PCI base addr */ u8 __iomem *mem; /* memory virtual base addr */ int i, ports, alloc_size; #ifn...
194,682,468,220,003,540,000,000,000,000,000,000,000
wanxl.c
316,013,096,835,404,300,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1445
The wanxl_ioctl function in drivers/net/wan/wanxl.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory via an ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1445
39,516
linux
2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
wanxl: fix info leak in ioctl The wanxl_ioctl() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem...
0
static void wanxl_reset(card_t *card) { u32 old_value = readl(card->plx + PLX_CONTROL) & ~PLX_CTL_RESET; writel(0x80, card->plx + PLX_MAILBOX_0); writel(old_value | PLX_CTL_RESET, card->plx + PLX_CONTROL); readl(card->plx + PLX_CONTROL); /* wait for posted write */ udelay(1); writel(old_value, card->plx + PLX_CO...
204,511,740,610,142,180,000,000,000,000,000,000,000
wanxl.c
316,013,096,835,404,300,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1445
The wanxl_ioctl function in drivers/net/wan/wanxl.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory via an ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1445
39,517
linux
2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
wanxl: fix info leak in ioctl The wanxl_ioctl() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem...
0
static inline void wanxl_rx_intr(card_t *card) { desc_t *desc; while (desc = &card->status->rx_descs[card->rx_in], desc->stat != PACKET_EMPTY) { if ((desc->stat & PACKET_PORT_MASK) > card->n_ports) pr_crit("%s: received packet for nonexistent port\n", pci_name(card->pdev)); else { struct sk_buff...
217,769,870,016,563,850,000,000,000,000,000,000,000
wanxl.c
316,013,096,835,404,300,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1445
The wanxl_ioctl function in drivers/net/wan/wanxl.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory via an ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1445
39,518
linux
2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
wanxl: fix info leak in ioctl The wanxl_ioctl() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem...
0
static inline void wanxl_tx_intr(port_t *port) { struct net_device *dev = port->dev; while (1) { desc_t *desc = &get_status(port)->tx_descs[port->tx_in]; struct sk_buff *skb = port->tx_skbs[port->tx_in]; switch (desc->stat) { case PACKET_FULL: case PACKET_EMPTY: netif_wake_queue(dev); r...
8,419,911,092,651,808,000,000,000,000,000,000,000
wanxl.c
316,013,096,835,404,300,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1445
The wanxl_ioctl function in drivers/net/wan/wanxl.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory via an ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1445
39,519
linux
2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/2b13d06c9584b4eb773f1e80bbaedab9a1c344e1
wanxl: fix info leak in ioctl The wanxl_ioctl() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Salva Peiró <speiro@ai2.upv.es> Signed-off-by: David S. Miller <davem...
0
static netdev_tx_t wanxl_xmit(struct sk_buff *skb, struct net_device *dev) { port_t *port = dev_to_port(dev); desc_t *desc; spin_lock(&port->lock); desc = &get_status(port)->tx_descs[port->tx_out]; if (desc->stat != PACKET_EMPTY) { /* should never happen - previous xmit shoul...
80,464,732,633,265,600,000,000,000,000,000,000,000
wanxl.c
316,013,096,835,404,300,000,000,000,000,000,000,000
[ "CWE-399" ]
CVE-2014-1445
The wanxl_ioctl function in drivers/net/wan/wanxl.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory via an ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1445
39,520
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
check_started_ok(struct fst_card_info *card) { int i; /* Check structure version and end marker */ if (FST_RDW(card, smcVersion) != SMC_VERSION) { pr_err("Bad shared memory version %d expected %d\n", FST_RDW(card, smcVersion), SMC_VERSION); card->state = FST_BADVERSION; return; } if (FST_RDL(card, ...
228,486,109,145,403,360,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,521
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
do_bottom_half_rx(struct fst_card_info *card) { struct fst_port_info *port; int pi; int rx_count = 0; /* Check for rx completions on all ports on this card */ dbg(DBG_RX, "do_bottom_half_rx\n"); for (pi = 0, port = card->ports; pi < card->nports; pi++, port++) { if (!port->run) continue; while (!(FST_RDB...
55,682,539,332,495,995,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,522
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
do_bottom_half_tx(struct fst_card_info *card) { struct fst_port_info *port; int pi; int txq_length; struct sk_buff *skb; unsigned long flags; struct net_device *dev; /* * Find a free buffer for the transmit * Step through each port on this card */ dbg(DBG_TX, "do_bottom_half_tx\n"); for (pi = 0, port...
298,592,935,972,426,300,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,523
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
static __be16 farsync_type_trans(struct sk_buff *skb, struct net_device *dev) { skb->dev = dev; skb_reset_mac_header(skb); skb->pkt_type = PACKET_HOST; return htons(ETH_P_CUST); }
98,736,972,438,967,800,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,524
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_add_one(struct pci_dev *pdev, const struct pci_device_id *ent) { static int no_of_cards_added = 0; struct fst_card_info *card; int err = 0; int i; printk_once(KERN_INFO pr_fmt("FarSync WAN driver " FST_USER_VERSION " (c) 2001-2004 FarSite Communications Ltd.\n")); #if FST_DEBUG dbg(DBG_ASS, "The ...
308,104,983,883,122,000,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,525
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_attach(struct net_device *dev, unsigned short encoding, unsigned short parity) { /* * Setting currently fixed in FarSync card so we check and forget */ if (encoding != ENCODING_NRZ || parity != PARITY_CRC16_PR1_CCITT) return -EINVAL; return 0; }
83,828,175,447,030,400,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,526
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_cleanup_module(void) { pr_info("FarSync WAN driver unloading\n"); pci_unregister_driver(&fst_driver); }
129,773,865,329,582,970,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,527
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_clear_intr(struct fst_card_info *card) { if (card->family == FST_FAMILY_TXU) { (void) readb(card->ctlmem); } else { /* Poke the appropriate PLX chip register (same as enabling interrupts) */ outw(0x0543, card->pci_conf + INTCSR_9052); } }
296,226,302,769,732,800,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,528
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_close(struct net_device *dev) { struct fst_port_info *port; struct fst_card_info *card; unsigned char tx_dma_done; unsigned char rx_dma_done; port = dev_to_port(dev); card = port->card; tx_dma_done = inb(card->pci_conf + DMACSR1); rx_dma_done = inb(card->pci_conf + DMACSR0); dbg(DBG_OPEN, "Port Clos...
225,309,805,021,175,200,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,529
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_closeport(struct fst_port_info *port) { if (port->card->state == FST_RUNNING) { if (port->run) { port->run = 0; fst_op_lower(port, OPSTS_RTS | OPSTS_DTR); fst_issue_cmd(port, STOPPORT); } else { dbg(DBG_OPEN, "close: port not running\n"); } } }
183,931,383,419,474,240,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,530
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_cpurelease(struct fst_card_info *card) { if (card->family == FST_FAMILY_TXU) { /* * Force posted writes to complete */ (void) readb(card->mem); /* * Release LRESET DO = 1 * Then release Local Hold, DO = 1 */ outw(0x040e, card->pci_conf + CNTRL_9054 + 2); outw(0x040f, card->pci_conf + CNTR...
45,028,913,659,358,690,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,531
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_cpureset(struct fst_card_info *card) { unsigned char interrupt_line_register; unsigned long j = jiffies + 1; unsigned int regval; if (card->family == FST_FAMILY_TXU) { if (pci_read_config_byte (card->device, PCI_INTERRUPT_LINE, &interrupt_line_register)) { dbg(DBG_ASS, "Error in reading inter...
99,949,145,271,582,810,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,532
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_disable_intr(struct fst_card_info *card) { if (card->family == FST_FAMILY_TXU) { outl(0x00000000, card->pci_conf + INTCSR_9054); } else { outw(0x0000, card->pci_conf + INTCSR_9052); } }
94,006,109,171,593,320,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,533
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_enable_intr(struct fst_card_info *card) { if (card->family == FST_FAMILY_TXU) { outl(0x0f0c0900, card->pci_conf + INTCSR_9054); } else { outw(0x0543, card->pci_conf + INTCSR_9052); } }
303,720,667,963,806,420,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,534
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_init(void) { int i; for (i = 0; i < FST_MAX_CARDS; i++) fst_card_array[i] = NULL; spin_lock_init(&fst_work_q_lock); return pci_register_driver(&fst_driver); }
228,597,746,522,145,040,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,535
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_init_card(struct fst_card_info *card) { int i; int err; /* We're working on a number of ports based on the card ID. If the * firmware detects something different later (should never happen) * we'll have to revise it in some way then. */ for (i = 0; i < card->nports; i++) { err = register_...
43,625,215,500,123,580,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,536
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_init_dma(struct fst_card_info *card) { /* * This is only required for the PLX 9054 */ if (card->family == FST_FAMILY_TXU) { pci_set_master(card->device); outl(0x00020441, card->pci_conf + DMAMODE0); outl(0x00020441, card->pci_conf + DMAMODE1); outl(0x0, card->pci_conf + DMATHR); } }
54,551,179,597,651,980,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,537
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_intr(int dummy, void *dev_id) { struct fst_card_info *card = dev_id; struct fst_port_info *port; int rdidx; /* Event buffer indices */ int wridx; int event; /* Actual event for processing */ unsigned int dma_intcsr = 0; unsigned int do_card_interrupt; unsigned int int_retry_count; /* * Check to see if...
265,392,913,953,975,180,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,538
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_intr_ctlchg(struct fst_card_info *card, struct fst_port_info *port) { int signals; signals = FST_RDL(card, v24DebouncedSts[port->index]); if (signals & (((port->hwif == X21) || (port->hwif == X21D)) ? IPSTS_INDICATE : IPSTS_DCD)) { if (!netif_carrier_ok(port_to_dev(port))) { dbg(DBG_INTR, "DCD ac...
87,880,875,487,286,630,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,539
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_intr_rx(struct fst_card_info *card, struct fst_port_info *port) { unsigned char dmabits; int pi; int rxp; int rx_status; unsigned short len; struct sk_buff *skb; struct net_device *dev = port_to_dev(port); /* Check we have a buffer to process */ pi = port->index; rxp = port->rxpos; dmabits = FST_RDB(car...
107,967,160,917,197,480,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,540
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_intr_te1_alarm(struct fst_card_info *card, struct fst_port_info *port) { u8 los; u8 rra; u8 ais; los = FST_RDB(card, suStatus.lossOfSignal); rra = FST_RDB(card, suStatus.receiveRemoteAlarm); ais = FST_RDB(card, suStatus.alarmIndicationSignal); if (los) { /* * Lost the link */ if (netif_carrier_ok...
220,582,934,694,559,260,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,541
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) { struct fst_card_info *card; struct fst_port_info *port; struct fstioc_write wrthdr; struct fstioc_info info; unsigned long flags; void *buf; dbg(DBG_IOCTL, "ioctl: %x, %p\n", cmd, ifr->ifr_data); port = dev_to_port(dev); card = port->card; if ...
314,774,664,807,788,250,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,542
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_issue_cmd(struct fst_port_info *port, unsigned short cmd) { struct fst_card_info *card; unsigned short mbval; unsigned long flags; int safety; card = port->card; spin_lock_irqsave(&card->card_lock, flags); mbval = FST_RDW(card, portMailbox[port->index][0]); safety = 0; /* Wait for any previous command to...
52,424,190,326,199,430,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,543
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_log_rx_error(struct fst_card_info *card, struct fst_port_info *port, unsigned char dmabits, int rxp, unsigned short len) { struct net_device *dev = port_to_dev(port); /* * Increment the appropriate error counter */ dev->stats.rx_errors++; if (dmabits & RX_OFLO) { dev->stats.rx_fifo_errors++; dbg(DBG...
7,738,501,733,071,419,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,544
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_op_lower(struct fst_port_info *port, unsigned int outputs) { outputs = ~outputs & FST_RDL(port->card, v24OpSts[port->index]); FST_WRL(port->card, v24OpSts[port->index], outputs); if (port->run) fst_issue_cmd(port, SETV24O); }
267,982,705,205,699,220,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,545
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_op_raise(struct fst_port_info *port, unsigned int outputs) { outputs |= FST_RDL(port->card, v24OpSts[port->index]); FST_WRL(port->card, v24OpSts[port->index], outputs); if (port->run) fst_issue_cmd(port, SETV24O); }
142,314,666,184,574,040,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,546
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_open(struct net_device *dev) { int err; struct fst_port_info *port; port = dev_to_port(dev); if (!try_module_get(THIS_MODULE)) return -EBUSY; if (port->mode != FST_RAW) { err = hdlc_open(dev); if (err) { module_put(THIS_MODULE); return err; } } fst_openport(port); netif_wake_queue(d...
171,852,895,595,339,720,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,547
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_openport(struct fst_port_info *port) { int signals; int txq_length; /* Only init things if card is actually running. This allows open to * succeed for downloads etc. */ if (port->card->state == FST_RUNNING) { if (port->run) { dbg(DBG_OPEN, "open: found port already running\n"); fst_issue_cmd(port,...
1,894,525,773,272,218,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,548
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_process_int_work_q(unsigned long /*void **/work_q) { unsigned long flags; u64 work_intq; int i; /* * Grab the queue exclusively */ dbg(DBG_INTR, "fst_process_int_work_q\n"); spin_lock_irqsave(&fst_work_q_lock, flags); work_intq = fst_work_intq; fst_work_intq = 0; spin_unlock_irqrestore(&fst_work_q_loc...
69,832,375,695,673,340,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,549
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_process_rx_status(int rx_status, char *name) { switch (rx_status) { case NET_RX_SUCCESS: { /* * Nothing to do here */ break; } case NET_RX_DROP: { dbg(DBG_ASS, "%s: Received packet dropped\n", name); break; } } }
170,903,767,192,239,630,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,550
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_process_tx_work_q(unsigned long /*void **/work_q) { unsigned long flags; u64 work_txq; int i; /* * Grab the queue exclusively */ dbg(DBG_TX, "fst_process_tx_work_q\n"); spin_lock_irqsave(&fst_work_q_lock, flags); work_txq = fst_work_txq; fst_work_txq = 0; spin_unlock_irqrestore(&fst_work_q_lock, flags...
262,764,411,332,911,100,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,551
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_q_work_item(u64 * queue, int card_index) { unsigned long flags; u64 mask; /* * Grab the queue exclusively */ spin_lock_irqsave(&fst_work_q_lock, flags); /* * Making an entry in the queue is simply a matter of setting * a bit for the card indicating that there is work to do in the * bottom half for ...
225,839,464,921,007,300,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,552
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_recover_rx_error(struct fst_card_info *card, struct fst_port_info *port, unsigned char dmabits, int rxp, unsigned short len) { int i; int pi; pi = port->index; /* * Discard buffer descriptors until we see the start of the * next frame. Note that for long frames this could be in * a subsequent in...
49,119,244,094,259,950,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,553
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_remove_one(struct pci_dev *pdev) { struct fst_card_info *card; int i; card = pci_get_drvdata(pdev); for (i = 0; i < card->nports; i++) { struct net_device *dev = port_to_dev(&card->ports[i]); unregister_hdlc_device(dev); } fst_disable_intr(card); free_irq(card->irq, card); iounmap(card->ctlmem); io...
219,483,644,477,682,060,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,554
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_rx_config(struct fst_port_info *port) { int i; int pi; unsigned int offset; unsigned long flags; struct fst_card_info *card; pi = port->index; card = port->card; spin_lock_irqsave(&card->card_lock, flags); for (i = 0; i < NUM_RX_BUFFER; i++) { offset = BUF_OFFSET(rxBuffer[pi][i][0]); FST_WRW(card, rx...
58,803,688,235,446,560,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,555
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_rx_dma(struct fst_card_info *card, dma_addr_t skb, dma_addr_t mem, int len) { /* * This routine will setup the DMA and start it */ dbg(DBG_RX, "In fst_rx_dma %lx %lx %d\n", (unsigned long) skb, (unsigned long) mem, len); if (card->dmarx_in_progress) { dbg(DBG_ASS, "In fst_rx_dma while dma in prog...
237,628,074,573,751,130,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,556
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_rx_dma_complete(struct fst_card_info *card, struct fst_port_info *port, int len, struct sk_buff *skb, int rxp) { struct net_device *dev = port_to_dev(port); int pi; int rx_status; dbg(DBG_TX, "fst_rx_dma_complete\n"); pi = port->index; memcpy(skb_put(skb, len), card->rx_dma_handle_host, len); /* Rese...
1,976,008,220,808,226,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,557
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_set_iface(struct fst_card_info *card, struct fst_port_info *port, struct ifreq *ifr) { sync_serial_settings sync; int i; if (ifr->ifr_settings.size != sizeof (sync)) { return -ENOMEM; } if (copy_from_user (&sync, ifr->ifr_settings.ifs_ifsu.sync, sizeof (sync))) { return -EFAULT; } if (sync...
333,673,074,108,267,340,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,558
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_start_xmit(struct sk_buff *skb, struct net_device *dev) { struct fst_card_info *card; struct fst_port_info *port; unsigned long flags; int txq_length; port = dev_to_port(dev); card = port->card; dbg(DBG_TX, "fst_start_xmit: length = %d\n", skb->len); /* Drop packet with error if we don't have carrier */ ...
100,614,056,450,920,160,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,559
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_tx_config(struct fst_port_info *port) { int i; int pi; unsigned int offset; unsigned long flags; struct fst_card_info *card; pi = port->index; card = port->card; spin_lock_irqsave(&card->card_lock, flags); for (i = 0; i < NUM_TX_BUFFER; i++) { offset = BUF_OFFSET(txBuffer[pi][i][0]); FST_WRW(card, tx...
11,504,583,168,514,760,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,560
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_tx_dma(struct fst_card_info *card, unsigned char *skb, unsigned char *mem, int len) { /* * This routine will setup the DMA and start it. */ dbg(DBG_TX, "In fst_tx_dma %p %p %d\n", skb, mem, len); if (card->dmatx_in_progress) { dbg(DBG_ASS, "In fst_tx_dma while dma in progress\n"); } outl((unsigned ...
13,573,079,587,970,938,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,561
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
fst_tx_timeout(struct net_device *dev) { struct fst_port_info *port; struct fst_card_info *card; port = dev_to_port(dev); card = port->card; dev->stats.tx_errors++; dev->stats.tx_aborted_errors++; dbg(DBG_ASS, "Tx timeout card %d port %d\n", card->card_no, port->index); fst_issue_cmd(port, ABORTTX); dev...
129,096,968,930,915,740,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,562
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
gather_conf_info(struct fst_card_info *card, struct fst_port_info *port, struct fstioc_info *info) { int i; memset(info, 0, sizeof (struct fstioc_info)); i = port->index; info->kernelVersion = LINUX_VERSION_CODE; info->nports = card->nports; info->type = card->type; info->state = card->state; info->proto =...
16,048,741,934,895,285,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,563
linux
96b340406724d87e4621284ebac5e059d67b2194
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/96b340406724d87e4621284ebac5e059d67b2194
farsync: fix info leak in ioctl The fst_get_iface() code fails to initialize the two padding bytes of struct sync_serial_settings after the ->loopback member. Add an explicit memset(0) before filling the structure to avoid the info leak. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. ...
0
set_conf_from_info(struct fst_card_info *card, struct fst_port_info *port, struct fstioc_info *info) { int err; unsigned char my_framing; /* Set things according to the user set valid flags * Several of the old options have been invalidated/replaced by the * generic hdlc package. */ err = 0; if (info...
274,720,088,721,381,630,000,000,000,000,000,000,000
None
null
[ "CWE-399" ]
CVE-2014-1444
The fst_get_iface function in drivers/net/wan/farsync.c in the Linux kernel before 3.11.7 does not properly initialize a certain data structure, which allows local users to obtain sensitive information from kernel memory by leveraging the CAP_NET_ADMIN capability for an SIOCWANDEV ioctl call.
https://nvd.nist.gov/vuln/detail/CVE-2014-1444
39,596
file
6d209c1c489457397a5763bca4b28e43aac90391
https://github.com/file/file
https://github.com/file/file/commit/6d209c1c489457397a5763bca4b28e43aac90391
Apply patches from file-CVE-2012-1571.patch From Francisco Alonso Espejo: file < 5.18/git version can be made to crash when checking some corrupt CDF files (Using an invalid cdf_read_short_sector size) The problem I found here, is that in most situations (if h_short_sec_size_p2 > 8) because the blocksiz...
0
cdf_clsid_to_mime(const uint64_t clsid[2], const struct cv *cv) { size_t i; for (i = 0; cv[i].mime != NULL; i++) { if (clsid[0] == cv[i].clsid[0] && clsid[1] == cv[i].clsid[1]) return cv[i].mime; } return NULL; }
163,400,574,888,196,360,000,000,000,000,000,000,000
readcdf.c
196,469,303,310,777,320,000,000,000,000,000,000,000
[ "CWE-119" ]
CVE-2014-0207
The cdf_read_short_sector function in cdf.c in file before 5.19, as used in the Fileinfo component in PHP before 5.4.30 and 5.5.x before 5.5.14, allows remote attackers to cause a denial of service (assertion failure and application exit) via a crafted CDF file.
https://nvd.nist.gov/vuln/detail/CVE-2014-0207
39,597
file
6d209c1c489457397a5763bca4b28e43aac90391
https://github.com/file/file
https://github.com/file/file/commit/6d209c1c489457397a5763bca4b28e43aac90391
Apply patches from file-CVE-2012-1571.patch From Francisco Alonso Espejo: file < 5.18/git version can be made to crash when checking some corrupt CDF files (Using an invalid cdf_read_short_sector size) The problem I found here, is that in most situations (if h_short_sec_size_p2 > 8) because the blocksiz...
0
format_clsid(char *buf, size_t len, const uint64_t uuid[2]) { snprintf(buf, len, "%.8" PRIx64 "-%.4" PRIx64 "-%.4" PRIx64 "-%.4" PRIx64 "-%.12" PRIx64, (uuid[0] >> 32) & (uint64_t)0x000000000ffffffffLLU, (uuid[0] >> 16) & (uint64_t)0x0000000000000ffffLLU, (uuid[0] >> 0) & (uint64_t)0x000000000000...
164,652,206,134,920,480,000,000,000,000,000,000,000
readcdf.c
196,469,303,310,777,320,000,000,000,000,000,000,000
[ "CWE-119" ]
CVE-2014-0207
The cdf_read_short_sector function in cdf.c in file before 5.19, as used in the Fileinfo component in PHP before 5.4.30 and 5.5.x before 5.5.14, allows remote attackers to cause a denial of service (assertion failure and application exit) via a crafted CDF file.
https://nvd.nist.gov/vuln/detail/CVE-2014-0207
39,598
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
SYSCALL_DEFINE1(io_destroy, aio_context_t, ctx) { struct kioctx *ioctx = lookup_ioctx(ctx); if (likely(NULL != ioctx)) { struct completion requests_done = COMPLETION_INITIALIZER_ONSTACK(requests_done); int ret; /* Pass requests_done to kill_ioctx() where it can be set * in a thread-safe way. If we try to...
28,603,810,034,267,753,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,599
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
SYSCALL_DEFINE2(io_setup, unsigned, nr_events, aio_context_t __user *, ctxp) { struct kioctx *ioctx = NULL; unsigned long ctx; long ret; ret = get_user(ctx, ctxp); if (unlikely(ret)) goto out; ret = -EINVAL; if (unlikely(ctx || nr_events == 0)) { pr_debug("EINVAL: io_setup: ctx %lu nr_events %u\n", ...
89,622,493,264,662,690,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,600
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
SYSCALL_DEFINE3(io_cancel, aio_context_t, ctx_id, struct iocb __user *, iocb, struct io_event __user *, result) { struct kioctx *ctx; struct kiocb *kiocb; u32 key; int ret; ret = get_user(key, &iocb->aio_key); if (unlikely(ret)) return -EFAULT; ctx = lookup_ioctx(ctx_id); if (unlikely(!ctx)) return -EIN...
130,269,915,685,270,550,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,601
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
SYSCALL_DEFINE5(io_getevents, aio_context_t, ctx_id, long, min_nr, long, nr, struct io_event __user *, events, struct timespec __user *, timeout) { struct kioctx *ioctx = lookup_ioctx(ctx_id); long ret = -EINVAL; if (likely(ioctx)) { if (likely(min_nr <= nr && min_nr >= 0)) ret = read_events(ioctx, min...
6,316,672,032,525,389,000,000,000,000,000,000,000
aio.c
30,486,927,269,978,305,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,602
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
void aio_complete(struct kiocb *iocb, long res, long res2) { struct kioctx *ctx = iocb->ki_ctx; struct aio_ring *ring; struct io_event *ev_page, *event; unsigned long flags; unsigned tail, pos; /* * Special case handling for sync iocbs: * - events go directly into the iocb for fast handling * - the sync ...
140,152,820,000,724,230,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,603
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static void aio_free_ring(struct kioctx *ctx) { int i; /* Disconnect the kiotx from the ring file. This prevents future * accesses to the kioctx from page migration. */ put_aio_ring_file(ctx); for (i = 0; i < ctx->nr_pages; i++) { struct page *page; pr_debug("pid(%d) [%d] page->count=%d\n", current->pid,...
138,796,086,765,032,860,000,000,000,000,000,000,000
aio.c
255,263,946,414,536,040,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,604
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static inline struct kiocb *aio_get_req(struct kioctx *ctx) { struct kiocb *req; if (!get_reqs_available(ctx)) return NULL; req = kmem_cache_alloc(kiocb_cachep, GFP_KERNEL|__GFP_ZERO); if (unlikely(!req)) goto out_put; percpu_ref_get(&ctx->reqs); req->ki_ctx = ctx; return req; out_put: put_reqs_availabl...
339,706,349,131,631,300,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,605
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static int aio_migratepage(struct address_space *mapping, struct page *new, struct page *old, enum migrate_mode mode) { struct kioctx *ctx; unsigned long flags; pgoff_t idx; int rc; rc = 0; /* mapping->private_lock here protects against the kioctx teardown. */ spin_lock(&mapping->private_lock); ctx = mapp...
148,043,262,111,797,070,000,000,000,000,000,000,000
aio.c
30,486,927,269,978,305,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,606
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static void aio_nr_sub(unsigned nr) { spin_lock(&aio_nr_lock); if (WARN_ON(aio_nr - nr > aio_nr)) aio_nr = 0; else aio_nr -= nr; spin_unlock(&aio_nr_lock); }
116,937,951,241,410,820,000,000,000,000,000,000,000
aio.c
255,263,946,414,536,040,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,607
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static struct file *aio_private_file(struct kioctx *ctx, loff_t nr_pages) { struct qstr this = QSTR_INIT("[aio]", 5); struct file *file; struct path path; struct inode *inode = alloc_anon_inode(aio_mnt->mnt_sb); if (IS_ERR(inode)) return ERR_CAST(inode); inode->i_mapping->a_ops = &aio_ctx_aops; inode->i_mappi...
29,976,309,931,729,760,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,608
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static bool aio_read_events(struct kioctx *ctx, long min_nr, long nr, struct io_event __user *event, long *i) { long ret = aio_read_events_ring(ctx, event + *i, nr - *i); if (ret > 0) *i += ret; if (unlikely(atomic_read(&ctx->dead))) ret = -EINVAL; if (!*i) *i = ret; return ret < 0 || *i >= min_nr...
190,924,951,512,094,300,000,000,000,000,000,000,000
aio.c
255,263,946,414,536,040,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,609
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static int aio_ring_mmap(struct file *file, struct vm_area_struct *vma) { vma->vm_ops = &generic_file_vm_ops; return 0; }
69,518,019,757,494,260,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,610
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static ssize_t aio_run_iocb(struct kiocb *req, unsigned opcode, char __user *buf, bool compat) { struct file *file = req->ki_filp; ssize_t ret; unsigned long nr_segs; int rw; fmode_t mode; aio_rw_op *rw_op; rw_iter_op *iter_op; struct iovec inline_vec, *iovec = &inline_vec; struct iov_iter iter; switc...
251,990,686,720,538,680,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,611
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static int aio_set_page_dirty(struct page *page) { return 0; }
329,172,922,483,235,380,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,612
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static int __init aio_setup(void) { static struct file_system_type aio_fs = { .name = "aio", .mount = aio_mount, .kill_sb = kill_anon_super, }; aio_mnt = kern_mount(&aio_fs); if (IS_ERR(aio_mnt)) panic("Failed to create aio fs mount."); kiocb_cachep = KMEM_CACHE(kiocb, SLAB_HWCACHE_ALIGN|SLAB_PANIC); k...
245,246,000,555,000,220,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,613
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static int aio_setup_ring(struct kioctx *ctx) { struct aio_ring *ring; unsigned nr_events = ctx->max_reqs; struct mm_struct *mm = current->mm; unsigned long size, unused; int nr_pages; int i; struct file *file; /* Compensate for the ring buffer's head/tail overlap entry */ nr_events += 2; /* 1 is required, 2 ...
201,522,881,742,639,920,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,614
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
void exit_aio(struct mm_struct *mm) { struct kioctx_table *table; struct kioctx *ctx; unsigned i = 0; while (1) { rcu_read_lock(); table = rcu_dereference(mm->ioctx_table); do { if (!table || i >= table->nr) { rcu_read_unlock(); rcu_assign_pointer(mm->ioctx_table, NULL); if (table) kfree...
5,390,882,551,200,069,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,615
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static void free_ioctx(struct work_struct *work) { struct kioctx *ctx = container_of(work, struct kioctx, free_work); pr_debug("freeing %p\n", ctx); aio_free_ring(ctx); free_percpu(ctx->cpu); kmem_cache_free(kioctx_cachep, ctx); }
189,130,468,928,019,600,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,616
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static void free_ioctx_reqs(struct percpu_ref *ref) { struct kioctx *ctx = container_of(ref, struct kioctx, reqs); /* At this point we know that there are no any in-flight requests */ if (ctx->requests_done) complete(ctx->requests_done); INIT_WORK(&ctx->free_work, free_ioctx); schedule_work(&ctx->free_work); }...
20,627,411,300,976,850,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,617
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static void free_ioctx_users(struct percpu_ref *ref) { struct kioctx *ctx = container_of(ref, struct kioctx, users); struct kiocb *req; spin_lock_irq(&ctx->ctx_lock); while (!list_empty(&ctx->active_reqs)) { req = list_first_entry(&ctx->active_reqs, struct kiocb, ki_list); list_del_init(&req->ki_l...
44,665,686,445,315,530,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,618
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static bool get_reqs_available(struct kioctx *ctx) { struct kioctx_cpu *kcpu; bool ret = false; preempt_disable(); kcpu = this_cpu_ptr(ctx->cpu); if (!kcpu->reqs_available) { int old, avail = atomic_read(&ctx->reqs_available); do { if (avail < ctx->req_batch) goto out; old = avail; avail = ato...
149,813,772,924,136,270,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,619
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static int io_submit_one(struct kioctx *ctx, struct iocb __user *user_iocb, struct iocb *iocb, bool compat) { struct kiocb *req; ssize_t ret; /* enforce forwards compatibility on users */ if (unlikely(iocb->aio_reserved1 || iocb->aio_reserved2)) { pr_debug("EINVAL: reserve field set\n"); return -EINVAL; }...
265,520,445,644,277,570,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,620
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static int ioctx_add_table(struct kioctx *ctx, struct mm_struct *mm) { unsigned i, new_nr; struct kioctx_table *table, *old; struct aio_ring *ring; spin_lock(&mm->ioctx_lock); rcu_read_lock(); table = rcu_dereference(mm->ioctx_table); while (1) { if (table) for (i = 0; i < table->nr; i++) if (!table->...
262,789,785,146,783,420,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,621
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static struct kioctx *ioctx_alloc(unsigned nr_events) { struct mm_struct *mm = current->mm; struct kioctx *ctx; int err = -ENOMEM; /* * We keep track of the number of available ringbuffer slots, to prevent * overflow (reqs_available), and we also use percpu counters for this. * * So since up to half the sl...
107,487,580,026,680,330,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,622
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static int kill_ioctx(struct mm_struct *mm, struct kioctx *ctx, struct completion *requests_done) { struct kioctx_table *table; if (atomic_xchg(&ctx->dead, 1)) return -EINVAL; spin_lock(&mm->ioctx_lock); rcu_read_lock(); table = rcu_dereference(mm->ioctx_table); WARN_ON(ctx != table->table[ctx->id]); tab...
39,773,196,805,833,965,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,623
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static int kiocb_cancel(struct kiocb *kiocb) { kiocb_cancel_fn *old, *cancel; /* * Don't want to set kiocb->ki_cancel = KIOCB_CANCELLED unless it * actually has a cancel function, hence the cmpxchg() */ cancel = ACCESS_ONCE(kiocb->ki_cancel); do { if (!cancel || cancel == KIOCB_CANCELLED) return -EINVA...
103,496,413,446,281,110,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,624
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static void kiocb_free(struct kiocb *req) { if (req->ki_filp) fput(req->ki_filp); if (req->ki_eventfd != NULL) eventfd_ctx_put(req->ki_eventfd); kmem_cache_free(kiocb_cachep, req); }
298,255,079,038,245,200,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,625
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static struct kioctx *lookup_ioctx(unsigned long ctx_id) { struct aio_ring __user *ring = (void __user *)ctx_id; struct mm_struct *mm = current->mm; struct kioctx *ctx, *ret = NULL; struct kioctx_table *table; unsigned id; if (get_user(id, &ring->id)) return NULL; rcu_read_lock(); table = rcu_dereference(m...
81,586,901,485,937,060,000,000,000,000,000,000,000
aio.c
30,486,927,269,978,305,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,626
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static struct kiocb *lookup_kiocb(struct kioctx *ctx, struct iocb __user *iocb, u32 key) { struct list_head *pos; assert_spin_locked(&ctx->ctx_lock); if (key != KIOCB_KEY) return NULL; /* TODO: use a hash or array, this sucks. */ list_for_each(pos, &ctx->active_reqs) { struct kiocb *kiocb = list_kiocb...
247,387,393,648,368,200,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,627
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static void put_aio_ring_file(struct kioctx *ctx) { struct file *aio_ring_file = ctx->aio_ring_file; if (aio_ring_file) { truncate_setsize(aio_ring_file->f_inode, 0); /* Prevent further access to the kioctx from migratepages */ spin_lock(&aio_ring_file->f_inode->i_mapping->private_lock); aio_ring_file->f_ino...
156,923,109,881,337,180,000,000,000,000,000,000,000
aio.c
30,486,927,269,978,305,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,628
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static void put_reqs_available(struct kioctx *ctx, unsigned nr) { struct kioctx_cpu *kcpu; preempt_disable(); kcpu = this_cpu_ptr(ctx->cpu); kcpu->reqs_available += nr; while (kcpu->reqs_available >= ctx->req_batch * 2) { kcpu->reqs_available -= ctx->req_batch; atomic_add(ctx->req_batch, &ctx->reqs_available...
327,109,459,502,329,580,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,629
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
static long read_events(struct kioctx *ctx, long min_nr, long nr, struct io_event __user *event, struct timespec __user *timeout) { ktime_t until = { .tv64 = KTIME_MAX }; long ret = 0; if (timeout) { struct timespec ts; if (unlikely(copy_from_user(&ts, timeout, sizeof(ts)))) return -EFAULT; until =...
121,892,600,180,173,250,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,630
linux
edfbbf388f293d70bf4b7c0bc38774d05e6f711a
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/edfbbf388f293d70bf4b7c0bc38774d05e6f711a
aio: fix kernel memory disclosure in io_getevents() introduced in v3.10 A kernel memory disclosure was introduced in aio_read_events_ring() in v3.10 by commit a31ad380bed817aa25f8830ad23e1a0480fef797. The changes made to aio_read_events_ring() failed to correctly limit the index into ctx->ring_pages[], allowing an at...
0
ssize_t wait_on_sync_kiocb(struct kiocb *req) { while (!req->ki_ctx) { set_current_state(TASK_UNINTERRUPTIBLE); if (req->ki_ctx) break; io_schedule(); } __set_current_state(TASK_RUNNING); return req->ki_user_data; }
110,704,992,809,830,500,000,000,000,000,000,000,000
aio.c
160,018,836,337,162,070,000,000,000,000,000,000,000
[ "CWE-200" ]
CVE-2014-0206
Array index error in the aio_read_events_ring function in fs/aio.c in the Linux kernel through 3.15.1 allows local users to obtain sensitive information from kernel memory via a large head value.
https://nvd.nist.gov/vuln/detail/CVE-2014-0206
39,631
linux
7ada876a8703f23befbb20a7465a702ee39b1704
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/7ada876a8703f23befbb20a7465a702ee39b1704
futex: Fix errors in nested key ref-counting futex_wait() is leaking key references due to futex_wait_setup() acquiring an additional reference via the queue_lock() routine. The nested key ref-counting has been masking bugs and complicating code analysis. queue_lock() is only called with a previously ref-counted key, ...
0
SYSCALL_DEFINE3(get_robust_list, int, pid, struct robust_list_head __user * __user *, head_ptr, size_t __user *, len_ptr) { struct robust_list_head __user *head; unsigned long ret; const struct cred *cred = current_cred(), *pcred; if (!futex_cmpxchg_enabled) return -ENOSYS; if (!pid) head = current->robu...
176,660,821,992,340,000,000,000,000,000,000,000,000
futex.c
161,006,216,331,975,570,000,000,000,000,000,000,000
[ "CWE-119" ]
CVE-2014-0205
The futex_wait function in kernel/futex.c in the Linux kernel before 2.6.37 does not properly maintain a certain reference count during requeue operations, which allows local users to cause a denial of service (use-after-free and system crash) or possibly gain privileges via a crafted application that triggers a zero c...
https://nvd.nist.gov/vuln/detail/CVE-2014-0205
39,632
linux
7ada876a8703f23befbb20a7465a702ee39b1704
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/7ada876a8703f23befbb20a7465a702ee39b1704
futex: Fix errors in nested key ref-counting futex_wait() is leaking key references due to futex_wait_setup() acquiring an additional reference via the queue_lock() routine. The nested key ref-counting has been masking bugs and complicating code analysis. queue_lock() is only called with a previously ref-counted key, ...
0
static u32 cmpxchg_futex_value_locked(u32 __user *uaddr, u32 uval, u32 newval) { u32 curval; pagefault_disable(); curval = futex_atomic_cmpxchg_inatomic(uaddr, uval, newval); pagefault_enable(); return curval; }
13,208,496,109,594,543,000,000,000,000,000,000,000
futex.c
161,006,216,331,975,570,000,000,000,000,000,000,000
[ "CWE-119" ]
CVE-2014-0205
The futex_wait function in kernel/futex.c in the Linux kernel before 2.6.37 does not properly maintain a certain reference count during requeue operations, which allows local users to cause a denial of service (use-after-free and system crash) or possibly gain privileges via a crafted application that triggers a zero c...
https://nvd.nist.gov/vuln/detail/CVE-2014-0205
39,633
linux
7ada876a8703f23befbb20a7465a702ee39b1704
https://github.com/torvalds/linux
https://github.com/torvalds/linux/commit/7ada876a8703f23befbb20a7465a702ee39b1704
futex: Fix errors in nested key ref-counting futex_wait() is leaking key references due to futex_wait_setup() acquiring an additional reference via the queue_lock() routine. The nested key ref-counting has been masking bugs and complicating code analysis. queue_lock() is only called with a previously ref-counted key, ...
0
long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout, u32 __user *uaddr2, u32 val2, u32 val3) { int clockrt, ret = -ENOSYS; int cmd = op & FUTEX_CMD_MASK; int fshared = 0; if (!(op & FUTEX_PRIVATE_FLAG)) fshared = 1; clockrt = op & FUTEX_CLOCK_REALTIME; if (clockrt && cmd != FUTEX_WAIT_BITSET ...
163,608,888,519,592,750,000,000,000,000,000,000,000
futex.c
161,006,216,331,975,570,000,000,000,000,000,000,000
[ "CWE-119" ]
CVE-2014-0205
The futex_wait function in kernel/futex.c in the Linux kernel before 2.6.37 does not properly maintain a certain reference count during requeue operations, which allows local users to cause a denial of service (use-after-free and system crash) or possibly gain privileges via a crafted application that triggers a zero c...
https://nvd.nist.gov/vuln/detail/CVE-2014-0205