Search in sources :

Example 31 with DhcpPacket

use of android.net.dhcp.DhcpPacket in project android_frameworks_base by crdroidandroid.

the class DhcpPacketTest method testBadHwaddrLength.

@SmallTest
public void testBadHwaddrLength() throws Exception {
    final ByteBuffer packet = ByteBuffer.wrap(HexDump.hexStringToByteArray(// IP header.
    "450001518d0600004011144dc0a82b01c0a82bf7" + // UDP header.
    "00430044013d9ac7" + // BOOTP header.
    "02010600dfc23d1f0002000000000000c0a82bf7c0a82b0100000000" + // MAC address.
    "30766ff2a90c00000000000000000000" + // Server name.
    "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000000" + // File.
    "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000000" + // Options
    "638253633501023604c0a82b01330400000e103a04000007083b0400000c4e0104ffffff00" + "1c04c0a82bff0304c0a82b010604c0a82b012b0f414e44524f49445f4d455445524544ff"));
    String expectedClientMac = "30766FF2A90C";
    final int hwAddrLenOffset = 20 + 8 + 2;
    assertEquals(6, packet.get(hwAddrLenOffset));
    // Expect the expected.
    DhcpPacket offerPacket = DhcpPacket.decodeFullPacket(packet, ENCAP_L3);
    assertNotNull(offerPacket);
    assertEquals(6, offerPacket.getClientMac().length);
    assertEquals(expectedClientMac, HexDump.toHexString(offerPacket.getClientMac()));
    // Reduce the hardware address length and verify that it shortens the client MAC.
    packet.flip();
    packet.put(hwAddrLenOffset, (byte) 5);
    offerPacket = DhcpPacket.decodeFullPacket(packet, ENCAP_L3);
    assertNotNull(offerPacket);
    assertEquals(5, offerPacket.getClientMac().length);
    assertEquals(expectedClientMac.substring(0, 10), HexDump.toHexString(offerPacket.getClientMac()));
    packet.flip();
    packet.put(hwAddrLenOffset, (byte) 3);
    offerPacket = DhcpPacket.decodeFullPacket(packet, ENCAP_L3);
    assertNotNull(offerPacket);
    assertEquals(3, offerPacket.getClientMac().length);
    assertEquals(expectedClientMac.substring(0, 6), HexDump.toHexString(offerPacket.getClientMac()));
    // Set the the hardware address length to 0xff and verify that we a) don't treat it as -1
    // and crash, and b) hardcode it to 6.
    packet.flip();
    packet.put(hwAddrLenOffset, (byte) -1);
    offerPacket = DhcpPacket.decodeFullPacket(packet, ENCAP_L3);
    assertNotNull(offerPacket);
    assertEquals(6, offerPacket.getClientMac().length);
    assertEquals(expectedClientMac, HexDump.toHexString(offerPacket.getClientMac()));
    // Set the the hardware address length to a positive invalid value (> 16) and verify that we
    // hardcode it to 6.
    packet.flip();
    packet.put(hwAddrLenOffset, (byte) 17);
    offerPacket = DhcpPacket.decodeFullPacket(packet, ENCAP_L3);
    assertNotNull(offerPacket);
    assertEquals(6, offerPacket.getClientMac().length);
    assertEquals(expectedClientMac, HexDump.toHexString(offerPacket.getClientMac()));
}
Also used : ByteBuffer(java.nio.ByteBuffer) DhcpPacket(android.net.dhcp.DhcpPacket) SmallTest(android.test.suitebuilder.annotation.SmallTest)

Example 32 with DhcpPacket

use of android.net.dhcp.DhcpPacket in project android_frameworks_base by crdroidandroid.

the class DhcpPacketTest method testBadTruncatedOffer.

@SmallTest
public void testBadTruncatedOffer() throws Exception {
    final byte[] packet = HexDump.hexStringToByteArray(// IP header.
    "450001518d0600004011144dc0a82b01c0a82bf7" + // UDP header.
    "00430044013d9ac7" + // BOOTP header.
    "02010600dfc23d1f0002000000000000c0a82bf7c0a82b0100000000" + // MAC address.
    "30766ff2a90c00000000000000000000" + // Server name.
    "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000000" + // File, missing one byte
    "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000000" + "00000000000000000000000000000000000000000000000000000000000000");
    try {
        DhcpPacket offerPacket = DhcpPacket.decodeFullPacket(packet, packet.length, ENCAP_L3);
    } catch (DhcpPacket.ParseException expected) {
        assertDhcpErrorCodes(DhcpErrorEvent.L3_TOO_SHORT, expected.errorCode);
        return;
    }
    fail("Dhcp packet parsing should have failed");
}
Also used : DhcpPacket(android.net.dhcp.DhcpPacket) SmallTest(android.test.suitebuilder.annotation.SmallTest)

Example 33 with DhcpPacket

use of android.net.dhcp.DhcpPacket in project android_frameworks_base by crdroidandroid.

the class DhcpPacketTest method testBadIpPacket.

@SmallTest
public void testBadIpPacket() throws Exception {
    final byte[] packet = HexDump.hexStringToByteArray(// IP header.
    "450001518d0600004011144dc0a82b01c0a82bf7");
    try {
        DhcpPacket offerPacket = DhcpPacket.decodeFullPacket(packet, packet.length, ENCAP_L3);
    } catch (DhcpPacket.ParseException expected) {
        assertDhcpErrorCodes(DhcpErrorEvent.L3_TOO_SHORT, expected.errorCode);
        return;
    }
    fail("Dhcp packet parsing should have failed");
}
Also used : DhcpPacket(android.net.dhcp.DhcpPacket) SmallTest(android.test.suitebuilder.annotation.SmallTest)

Example 34 with DhcpPacket

use of android.net.dhcp.DhcpPacket in project android_frameworks_base by crdroidandroid.

the class DhcpPacketTest method checkMtu.

private void checkMtu(ByteBuffer packet, int expectedMtu, byte[] mtuBytes) throws Exception {
    if (mtuBytes != null) {
        packet.position(packet.capacity() - mtuBytes.length);
        packet.put(mtuBytes);
        packet.clear();
    }
    DhcpPacket offerPacket = DhcpPacket.decodeFullPacket(packet, ENCAP_L3);
    // Implicitly checks it's non-null.
    assertTrue(offerPacket instanceof DhcpOfferPacket);
    DhcpResults dhcpResults = offerPacket.toDhcpResults();
    assertDhcpResults("192.168.159.247/20", "192.168.159.254", "8.8.8.8,8.8.4.4", null, "192.168.144.3", null, 7200, false, expectedMtu, dhcpResults);
}
Also used : DhcpResults(android.net.DhcpResults) DhcpPacket(android.net.dhcp.DhcpPacket)

Example 35 with DhcpPacket

use of android.net.dhcp.DhcpPacket in project android_frameworks_base by crdroidandroid.

the class DhcpPacketTest method testBadDhcpPacket.

@SmallTest
public void testBadDhcpPacket() throws Exception {
    final byte[] packet = HexDump.hexStringToByteArray(// IP header.
    "450001518d0600004011144dc0a82b01c0a82bf7" + // UDP header.
    "00430044013d9ac7" + // BOOTP header.
    "02010600dfc23d1f0002000000000000c0a82bf7c0a82b0100000000");
    try {
        DhcpPacket offerPacket = DhcpPacket.decodeFullPacket(packet, packet.length, ENCAP_L3);
    } catch (DhcpPacket.ParseException expected) {
        assertDhcpErrorCodes(DhcpErrorEvent.L3_TOO_SHORT, expected.errorCode);
        return;
    }
    fail("Dhcp packet parsing should have failed");
}
Also used : DhcpPacket(android.net.dhcp.DhcpPacket) SmallTest(android.test.suitebuilder.annotation.SmallTest)

Aggregations

DhcpPacket (android.net.dhcp.DhcpPacket)72 SmallTest (android.test.suitebuilder.annotation.SmallTest)52 ByteBuffer (java.nio.ByteBuffer)44 DhcpResults (android.net.DhcpResults)40 LinkAddress (android.net.LinkAddress)4