org.pcap4j.sample.GetNextRawPacket Maven / Gradle / Ivy
package org.pcap4j.sample;
import java.io.IOException;
import java.sql.Timestamp;
import org.pcap4j.core.BpfProgram.BpfCompileMode;
import org.pcap4j.core.NotOpenException;
import org.pcap4j.core.PcapHandle;
import org.pcap4j.core.PcapNativeException;
import org.pcap4j.core.PcapNetworkInterface;
import org.pcap4j.core.PcapNetworkInterface.PromiscuousMode;
import org.pcap4j.core.PcapStat;
import org.pcap4j.util.ByteArrays;
import org.pcap4j.util.NifSelector;
import com.sun.jna.Platform;
@SuppressWarnings("javadoc")
public class GetNextRawPacket {
private static final String COUNT_KEY
= GetNextRawPacket.class.getName() + ".count";
private static final int COUNT
= Integer.getInteger(COUNT_KEY, 5);
private static final String READ_TIMEOUT_KEY
= GetNextRawPacket.class.getName() + ".readTimeout";
private static final int READ_TIMEOUT
= Integer.getInteger(READ_TIMEOUT_KEY, 10); // [ms]
private static final String SNAPLEN_KEY
= GetNextRawPacket.class.getName() + ".snaplen";
private static final int SNAPLEN
= Integer.getInteger(SNAPLEN_KEY, 65536); // [bytes]
private static final String BUFFER_SIZE_KEY
= GetNextRawPacket.class.getName() + ".bufferSize";
private static final int BUFFER_SIZE
= Integer.getInteger(BUFFER_SIZE_KEY, 1 * 1024 * 1024); // [bytes]
public static void main(String[] args) throws PcapNativeException, NotOpenException {
String filter = args.length != 0 ? args[0] : "";
System.out.println(COUNT_KEY + ": " + COUNT);
System.out.println(READ_TIMEOUT_KEY + ": " + READ_TIMEOUT);
System.out.println(SNAPLEN_KEY + ": " + SNAPLEN);
System.out.println(BUFFER_SIZE_KEY + ": " + BUFFER_SIZE);
System.out.println("\n");
PcapNetworkInterface nif;
try {
nif = new NifSelector().selectNetworkInterface();
} catch (IOException e) {
e.printStackTrace();
return;
}
if (nif == null) {
return;
}
System.out.println(nif.getName() + "(" + nif.getDescription() + ")");
PcapHandle handle
= new PcapHandle.Builder(nif.getName())
.snaplen(SNAPLEN)
.promiscuousMode(PromiscuousMode.PROMISCUOUS)
.timeoutMillis(READ_TIMEOUT)
.bufferSize(BUFFER_SIZE)
.build();
handle.setFilter(
filter,
BpfCompileMode.OPTIMIZE
);
int num = 0;
while (true) {
byte[] packet = handle.getNextRawPacket();
if (packet == null) {
continue;
}
else {
Timestamp ts = new Timestamp(handle.getTimestampInts() * 1000L);
ts.setNanos(handle.getTimestampMicros() * 1000);
System.out.println(ts);
System.out.println(ByteArrays.toHexString(packet, " "));
num++;
if (num >= COUNT) {
break;
}
}
}
PcapStat ps = handle.getStats();
System.out.println("ps_recv: " + ps.getNumPacketsReceived());
System.out.println("ps_drop: " + ps.getNumPacketsDropped());
System.out.println("ps_ifdrop: " + ps.getNumPacketsDroppedByIf());
if (Platform.isWindows()) {
System.out.println("bs_capt: " + ps.getNumPacketsCaptured());
}
handle.close();
}
}