Skip to content

Commit

Permalink
net: Filter incoming netconsole packets by IP
Browse files Browse the repository at this point in the history
Check the incoming packets' source IP address... if ncip isn't set to a
broadcast address, only listen to the client at ncip.

Signed-off-by: Joe Hershberger <[email protected]>
  • Loading branch information
jhershbe committed Sep 24, 2012
1 parent e827fec commit 8a0eccb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 6 additions & 2 deletions drivers/net/netconsole.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,13 +147,17 @@ void NcStart(void)
}
}

int nc_input_packet(uchar *pkt, unsigned dest, unsigned src, unsigned len)
int nc_input_packet(uchar *pkt, IPaddr_t src_ip, unsigned dest_port,
unsigned src_port, unsigned len)
{
int end, chunk;

if (dest != nc_in_port || !len)
if (dest_port != nc_in_port || !len)
return 0; /* not for us */

if (src_ip != nc_ip && !is_broadcast(nc_ip))
return 0; /* not from our client */

debug_cond(DEBUG_DEV_PKT, "input: \"%*.*s\"\n", len, len, pkt);

if (input_size == sizeof(input_buffer))
Expand Down
3 changes: 2 additions & 1 deletion include/net.h
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,8 @@ extern void NetReceive(uchar *, int);

#ifdef CONFIG_NETCONSOLE
void NcStart(void);
int nc_input_packet(uchar *pkt, unsigned dest, unsigned src, unsigned len);
int nc_input_packet(uchar *pkt, IPaddr_t src_ip, unsigned dest_port,
unsigned src_port, unsigned len);
#endif

static inline __attribute__((always_inline)) int eth_is_on_demand_init(void)
Expand Down
1 change: 1 addition & 0 deletions net/net.c
Original file line number Diff line number Diff line change
Expand Up @@ -1161,6 +1161,7 @@ NetReceive(uchar *inpkt, int len)

#ifdef CONFIG_NETCONSOLE
nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
ntohl(ip->ip_src),
ntohs(ip->udp_dst),
ntohs(ip->udp_src),
ntohs(ip->udp_len) - UDP_HDR_SIZE);
Expand Down

0 comments on commit 8a0eccb

Please sign in to comment.