[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1363693648-10015-1-git-send-email-yamato@redhat.com>
Date: Tue, 19 Mar 2013 20:47:26 +0900
From: Masatake YAMATO <yamato@...hat.com>
To: netdev@...r.kernel.org
Cc: Masatake YAMATO <yamato@...hat.com>
Subject: [PATCH 0/2] netlink: protection and workaround for too long mcast group name
You will see garbage at the end of line in the output of following command line:
$ genl ctrl show | grep thermal_mc_group
#1: ID-0x2 name: thermal_mc_group^B
The type of structure field for "name" is char[16]:
#define GENL_NAMSIZ 16 /* length of family name */
...
struct genl_multicast_group {
...
char name[GENL_NAMSIZ];
...
};
strlen("thermal_mc_group") == 16 is too long for the array size.
This patch series provid a protection(patch for genetlink) for this
kind of bug and workaround(patch for thermal).
Masatake YAMATO (2):
genetlink: trigger BUG_ON if a group name is too long
thermal: shorten too long mcast group name
include/linux/thermal.h | 2 +-
net/netlink/genetlink.c | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
--
1.7.11.7
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists