summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandroid-build-team Robot2017-11-27 21:34:23 -0600
committerandroid-build-team Robot2017-11-27 21:34:23 -0600
commit9f30f3bbf30b7de0ad3850171db968ae12a6caf0 (patch)
treef0b9026cb10d9d270231e647c78988abfe516537
parentf469ebae8604bc756259c7305f8cb7617ca18ddc (diff)
parentb71335264a7c3629f80b7bf1f87375c75c42d868 (diff)
downloadplatform-system-core-android-8.1.0_r12.tar.gz
platform-system-core-android-8.1.0_r12.tar.xz
platform-system-core-android-8.1.0_r12.zip
Merge cherrypicks of [3276508, 3277765, 3277766, 3277904, 3276473, 3278009, 3278010, 3277767, 3277768, 3277769, 3277770, 3276509, 3276510, 3278011, 3278012, 3278013, 3278014, 3278099, 3278100, 3278101, 3278102, 3278103, 3278104, 3278105, 3278106, 3277800, 3276474, 3278015, 3278016, 3278017, 3278118, 3278119, 3278120, 3278121, 3278122, 3277946, 3277905, 3277947, 3277906, 3277751, 3278123, 3277752, 3278110, 3277771, 3277907, 3278095, 3277908, 3278111, 3277772, 3276475, 3276476] into oc-mr1-releaseandroid-wear-8.1.0_r1android-8.1.0_r6android-8.1.0_r5android-8.1.0_r4android-8.1.0_r3android-8.1.0_r19android-8.1.0_r16android-8.1.0_r15android-8.1.0_r12android-8.1.0_r11android-8.1.0_r10
Change-Id: Ifa8110f04f5c0940ec625f48d536bfccb3613183
-rw-r--r--libnetutils/packet.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/libnetutils/packet.c b/libnetutils/packet.c
index e53a4c84f..9ecdd4f4e 100644
--- a/libnetutils/packet.c
+++ b/libnetutils/packet.c
@@ -218,6 +218,20 @@ int receive_packet(int s, struct dhcp_msg *msg)
218 * to construct the pseudo header used in the checksum calculation. 218 * to construct the pseudo header used in the checksum calculation.
219 */ 219 */
220 dhcp_size = ntohs(packet.udp.len) - sizeof(packet.udp); 220 dhcp_size = ntohs(packet.udp.len) - sizeof(packet.udp);
221 /*
222 * check validity of dhcp_size.
223 * 1) cannot be negative or zero.
224 * 2) src buffer contains enough bytes to copy
225 * 3) cannot exceed destination buffer
226 */
227 if ((dhcp_size <= 0) ||
228 ((int)(nread - sizeof(struct iphdr) - sizeof(struct udphdr)) < dhcp_size) ||
229 ((int)sizeof(struct dhcp_msg) < dhcp_size)) {
230#if VERBOSE
231 ALOGD("Malformed Packet");
232#endif
233 return -1;
234 }
221 saddr = packet.ip.saddr; 235 saddr = packet.ip.saddr;
222 daddr = packet.ip.daddr; 236 daddr = packet.ip.daddr;
223 nread = ntohs(packet.ip.tot_len); 237 nread = ntohs(packet.ip.tot_len);