diff options
author | Masaq- <tilt@techie.com> | 2019-02-23 22:40:24 +0000 |
---|---|---|
committer | Masaq- <tilt@techie.com> | 2019-02-23 22:40:24 +0000 |
commit | 70973ac736e8b669f121a4c96b510e451fd130fc (patch) | |
tree | fb2632388721a5967a8004f7e2309d2b178f1a23 /src | |
parent | fa7a0d17d98695332a9bd3c87a655a7eda730d8f (diff) |
set pkt_len to zero after free
Diffstat (limited to 'src')
-rw-r--r-- | src/pkt.c | 2 | ||||
-rw-r--r-- | src/ptunnel.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -467,6 +467,7 @@ void handle_ack(uint16_t seq_no, icmp_desc_t ring[], int *packets_awaiting_ack, *remote_ack = (uint16_t)ntohl(pt_pkt->ack); free(ring[i].pkt); ring[i].pkt = 0; + ring[i].pkt_len = 0; (*packets_awaiting_ack)--; if (i == *first_ack) { for (j=1;j<window_size;j++) { @@ -504,6 +505,7 @@ void handle_ack(uint16_t seq_no, icmp_desc_t ring[], int *packets_awaiting_ack, if (can_ack) { free(ring[i].pkt); ring[i].pkt = 0; + ring[i].pkt_len = 0; (*packets_awaiting_ack)--; } i--; diff --git a/src/ptunnel.c b/src/ptunnel.c index 87dcc39..fad0944 100644 --- a/src/ptunnel.c +++ b/src/ptunnel.c @@ -668,7 +668,7 @@ void* pt_proxy(void *args) { cur->dst_ip, cur->dst_port, kProto_ack | cur->type_flag, &cur->dest_addr, cur->next_remote_seq, &cur->send_first_ack, &cur->ping_seq, cur->window_size); cur->xfer.icmp_ack_out++; - if (cur->send_ring[idx].pkt && cur->send_ring[idx].pkt->type == kICMP_echo_request) { + if (cur->send_ring[idx].pkt_len > sizeof(icmp_echo_packet_t) && cur->send_ring[idx].pkt->type == kICMP_echo_request) { for (uint16_t e = 0; e < opts.empty_pings; e++) { cur->send_ring[idx].pkt->seq = htons(cur->ping_seq); cur->ping_seq++; |