[dhcp_relay] fix data type in dhcp6relay, add protection in packet data parsing (#9036)

This commit is contained in:
kellyyeh 2021-10-21 23:00:37 -07:00 committed by Ying Xie
parent 5868b9e17d
commit 7fb8dae264

View File

@ -593,7 +593,6 @@ void relay_relay_forw(int sock, const uint8_t *msg, int32_t len, const ip6_hdr *
void callback(evutil_socket_t fd, short event, void *arg) { void callback(evutil_socket_t fd, short event, void *arg) {
struct relay_config *config = (struct relay_config *)(arg); struct relay_config *config = (struct relay_config *)(arg);
static uint8_t message_buffer[4096]; static uint8_t message_buffer[4096];
std::string counterVlan = counter_table;
int32_t len = recv(config->filter, message_buffer, 4096, 0); int32_t len = recv(config->filter, message_buffer, 4096, 0);
if (len <= 0) { if (len <= 0) {
syslog(LOG_WARNING, "recv: Failed to receive data at filter socket: %s\n", strerror(errno)); syslog(LOG_WARNING, "recv: Failed to receive data at filter socket: %s\n", strerror(errno));