Commit b971e7ac authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller

net: fix /proc/net/snmp as memory corruptor

icmpmsg_put() can happily corrupt kernel memory, using a static
table and forgetting to reset an array index in a loop.

Remove the static array since its not safe without proper locking.
Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarEric Dumazet <dada1@cosmosbay.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 013cd397
...@@ -237,43 +237,45 @@ static const struct snmp_mib snmp4_net_list[] = { ...@@ -237,43 +237,45 @@ static const struct snmp_mib snmp4_net_list[] = {
SNMP_MIB_SENTINEL SNMP_MIB_SENTINEL
}; };
static void icmpmsg_put_line(struct seq_file *seq, unsigned long *vals,
unsigned short *type, int count)
{
int j;
if (count) {
seq_printf(seq, "\nIcmpMsg:");
for (j = 0; j < count; ++j)
seq_printf(seq, " %sType%u",
type[j] & 0x100 ? "Out" : "In",
type[j] & 0xff);
seq_printf(seq, "\nIcmpMsg:");
for (j = 0; j < count; ++j)
seq_printf(seq, " %lu", vals[j]);
}
}
static void icmpmsg_put(struct seq_file *seq) static void icmpmsg_put(struct seq_file *seq)
{ {
#define PERLINE 16 #define PERLINE 16
int j, i, count; int i, count;
static int out[PERLINE]; unsigned short type[PERLINE];
unsigned long vals[PERLINE], val;
struct net *net = seq->private; struct net *net = seq->private;
count = 0; count = 0;
for (i = 0; i < ICMPMSG_MIB_MAX; i++) { for (i = 0; i < ICMPMSG_MIB_MAX; i++) {
val = snmp_fold_field((void **) net->mib.icmpmsg_statistics, i);
if (snmp_fold_field((void **) net->mib.icmpmsg_statistics, i)) if (val) {
out[count++] = i; type[count] = i;
if (count < PERLINE) vals[count++] = val;
continue; }
if (count == PERLINE) {
seq_printf(seq, "\nIcmpMsg:"); icmpmsg_put_line(seq, vals, type, count);
for (j = 0; j < PERLINE; ++j) count = 0;
seq_printf(seq, " %sType%u", i & 0x100 ? "Out" : "In", }
i & 0xff);
seq_printf(seq, "\nIcmpMsg: ");
for (j = 0; j < PERLINE; ++j)
seq_printf(seq, " %lu",
snmp_fold_field((void **) net->mib.icmpmsg_statistics,
out[j]));
seq_putc(seq, '\n');
}
if (count) {
seq_printf(seq, "\nIcmpMsg:");
for (j = 0; j < count; ++j)
seq_printf(seq, " %sType%u", out[j] & 0x100 ? "Out" :
"In", out[j] & 0xff);
seq_printf(seq, "\nIcmpMsg:");
for (j = 0; j < count; ++j)
seq_printf(seq, " %lu", snmp_fold_field((void **)
net->mib.icmpmsg_statistics, out[j]));
} }
icmpmsg_put_line(seq, vals, type, count);
#undef PERLINE #undef PERLINE
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment