Initial commit
This commit is contained in:
commit
3708c566bf
|
@ -0,0 +1,5 @@
|
|||
*.class
|
||||
|
||||
.classpath
|
||||
.settings
|
||||
.project
|
|
@ -0,0 +1,71 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>de.hsh.inform</groupId>
|
||||
<artifactId>dbp-project-readdata</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>dbp-project-readdata</name>
|
||||
<url>http://maven.apache.org</url>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.pcap4j</groupId>
|
||||
<artifactId>pcap4j-core</artifactId>
|
||||
<version>1.4.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.pcap4j</groupId>
|
||||
<artifactId>pcap4j-packetfactory-static</artifactId>
|
||||
<version>1.4.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<!-- https://mvnrepository.com/artifact/com.orientechnologies/orientdb-core -->
|
||||
<dependency>
|
||||
<groupId>com.orientechnologies</groupId>
|
||||
<artifactId>orientdb-core</artifactId>
|
||||
<version>2.2.12</version>
|
||||
</dependency>
|
||||
<!-- https://mvnrepository.com/artifact/com.orientechnologies/orientdb-client -->
|
||||
<dependency>
|
||||
<groupId>com.orientechnologies</groupId>
|
||||
<artifactId>orientdb-client</artifactId>
|
||||
<version>2.2.12</version>
|
||||
</dependency>
|
||||
<!-- https://mvnrepository.com/artifact/com.orientechnologies/orientdb-graphdb -->
|
||||
<dependency>
|
||||
<groupId>com.orientechnologies</groupId>
|
||||
<artifactId>orientdb-graphdb</artifactId>
|
||||
<version>2.2.12</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tinkerpop</groupId>
|
||||
<artifactId>gremlin-core</artifactId>
|
||||
<version>3.2.3</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.2</version>
|
||||
<configuration>
|
||||
<source>1.8</source>
|
||||
<target>1.8</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,30 @@
|
|||
package de.hsh.inform.orientdb_project;
|
||||
|
||||
import java.io.EOFException;
|
||||
import java.util.concurrent.TimeoutException;
|
||||
|
||||
import org.pcap4j.core.NotOpenException;
|
||||
import org.pcap4j.core.PcapNativeException;
|
||||
|
||||
import de.hsh.inform.orientdb_project.orientdb.OrientDbHelperService;
|
||||
import de.hsh.inform.orientdb_project.orientdb.OrientDbNetdataImportService;
|
||||
|
||||
public class Main {
|
||||
|
||||
public static void main(String[] args) {
|
||||
OrientDbHelperService odhs = new OrientDbHelperService("192.168.0.110", "hshtest", "root", "root");
|
||||
odhs.cleanUpServer();
|
||||
odhs.setupSchema();
|
||||
|
||||
String filename = "/home/jpt/Temp/tcpdump_2";
|
||||
OrientDbNetdataImportService odbis = new OrientDbNetdataImportService(filename, odhs.getOrientGraphFactory().getNoTx());
|
||||
try {
|
||||
System.out.println("Begin import of data ...");
|
||||
odbis.run();
|
||||
System.out.println("Import of data done!");
|
||||
} catch (EOFException | PcapNativeException | TimeoutException | NotOpenException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,75 @@
|
|||
package de.hsh.inform.orientdb_project.netdata;
|
||||
|
||||
import java.io.EOFException;
|
||||
import java.util.concurrent.TimeoutException;
|
||||
|
||||
import org.pcap4j.core.NotOpenException;
|
||||
import org.pcap4j.core.PcapHandle;
|
||||
import org.pcap4j.core.PcapNativeException;
|
||||
import org.pcap4j.core.Pcaps;
|
||||
import org.pcap4j.packet.ArpPacket;
|
||||
import org.pcap4j.packet.EthernetPacket;
|
||||
import org.pcap4j.packet.FragmentedPacket;
|
||||
import org.pcap4j.packet.IcmpV4CommonPacket;
|
||||
import org.pcap4j.packet.IpV4Packet;
|
||||
import org.pcap4j.packet.Packet;
|
||||
import org.pcap4j.packet.TcpPacket;
|
||||
import org.pcap4j.packet.UdpPacket;
|
||||
import org.pcap4j.packet.namednumber.EtherType;
|
||||
import org.pcap4j.packet.namednumber.IpNumber;
|
||||
|
||||
/**
|
||||
* Contains the logic to extract all the detailed stuff
|
||||
*/
|
||||
public abstract class AbstractNetdataImportService implements NetdataResultObserver {
|
||||
|
||||
private String filename;
|
||||
|
||||
public AbstractNetdataImportService(String filename) {
|
||||
this.filename = filename;
|
||||
}
|
||||
|
||||
public final void run() throws PcapNativeException, EOFException, TimeoutException, NotOpenException {
|
||||
PcapHandle handle = Pcaps.openOffline(this.filename);
|
||||
for (;;) {
|
||||
Packet packet = handle.getNextPacketEx();
|
||||
if(packet == null) break;
|
||||
long ts = handle.getTimestampInts();
|
||||
int ms = handle.getTimestampMicros();
|
||||
EthernetPacket ether = packet.get(EthernetPacket.class);
|
||||
this.handleEthernetPacket(ether, ts, ms);
|
||||
}
|
||||
}
|
||||
|
||||
public void handleEthernetPacket(EthernetPacket ether, long ts, int ms) {
|
||||
EtherType etherType = ether.getHeader().getType();
|
||||
if (etherType.equals(EtherType.IPV4)) {
|
||||
IpV4Packet ipv4 = ether.getPayload().get(IpV4Packet.class);
|
||||
this.handleIpV4Packet(ipv4, ts, ms);
|
||||
} else if (ether.getHeader().getType().equals(EtherType.ARP)) {
|
||||
ArpPacket arp = ether.getPayload().get(ArpPacket.class);
|
||||
this.handleArpPacket(arp, ts, ms);
|
||||
} else {
|
||||
//System.out.println("Unknown ethernet frame type thing!");
|
||||
}
|
||||
}
|
||||
|
||||
public void handleIpV4Packet(IpV4Packet ipv4, long ts, int ms) {
|
||||
IpNumber ipnum = ipv4.getHeader().getProtocol();
|
||||
if (ipv4.getPayload() instanceof FragmentedPacket) {
|
||||
System.out.println("Fragmented IP Packet!");
|
||||
} else if (ipnum.equals(IpNumber.TCP)) {
|
||||
TcpPacket tcp = ipv4.getPayload().get(TcpPacket.class);
|
||||
this.handleTcpPacket(tcp, ts, ms);
|
||||
} else if (ipnum.equals(IpNumber.UDP)) {
|
||||
UdpPacket udp = ipv4.getPayload().get(UdpPacket.class);
|
||||
this.handleUdpPacket(udp, ts, ms);
|
||||
} else if (ipnum.equals(IpNumber.ICMPV4)) {
|
||||
IcmpV4CommonPacket icmp = ipv4.getPayload().get(IcmpV4CommonPacket.class);
|
||||
this.handleIcmpPacket(icmp, ts, ms);
|
||||
} else {
|
||||
//System.out.println("Unknown IP Packet!");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
package de.hsh.inform.orientdb_project.netdata;
|
||||
|
||||
import org.pcap4j.packet.ArpPacket;
|
||||
import org.pcap4j.packet.EthernetPacket;
|
||||
import org.pcap4j.packet.IcmpV4CommonPacket;
|
||||
import org.pcap4j.packet.IpV4Packet;
|
||||
import org.pcap4j.packet.TcpPacket;
|
||||
import org.pcap4j.packet.UdpPacket;
|
||||
|
||||
public interface NetdataResultObserver {
|
||||
|
||||
public abstract void handleEthernetPacket(EthernetPacket ether, long timestamp, int milliseconds);
|
||||
|
||||
public abstract void handleArpPacket(ArpPacket arp, long timestamp, int milliseconds);
|
||||
|
||||
public abstract void handleTcpPacket(TcpPacket tcp, long timestamp, int milliseconds);
|
||||
|
||||
public abstract void handleUdpPacket(UdpPacket udp, long timestamp, int milliseconds);
|
||||
|
||||
public abstract void handleIcmpPacket(IcmpV4CommonPacket icmp, long timestamp, int milliseconds);
|
||||
|
||||
public abstract void handleIpV4Packet(IpV4Packet ipv4, long ts, int ms);
|
||||
|
||||
}
|
|
@ -0,0 +1,122 @@
|
|||
package de.hsh.inform.orientdb_project.orientdb;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import com.orientechnologies.orient.client.remote.OServerAdmin;
|
||||
import com.orientechnologies.orient.core.metadata.schema.OType;
|
||||
import com.tinkerpop.blueprints.impls.orient.OrientEdgeType;
|
||||
import com.tinkerpop.blueprints.impls.orient.OrientGraphFactory;
|
||||
import com.tinkerpop.blueprints.impls.orient.OrientGraphNoTx;
|
||||
import com.tinkerpop.blueprints.impls.orient.OrientVertexType;
|
||||
|
||||
public class OrientDbHelperService {
|
||||
|
||||
private String host;
|
||||
private String db;
|
||||
private String user;
|
||||
private String pass;
|
||||
|
||||
private OrientGraphFactory factory;
|
||||
|
||||
|
||||
public OrientDbHelperService(String host, String db, String user, String pass) {
|
||||
this.host = host;
|
||||
this.db = db;
|
||||
this.user = user;
|
||||
this.pass = pass;
|
||||
this.factory = null;
|
||||
}
|
||||
|
||||
public OrientGraphFactory getOrientGraphFactory() {
|
||||
if(this.factory == null) {
|
||||
this.factory = new OrientGraphFactory(getDbUri(true), this.user, this.pass);
|
||||
}
|
||||
return this.factory;
|
||||
}
|
||||
|
||||
public String getDbUri(boolean withDb) {
|
||||
String uri = "remote:" + this.host;
|
||||
if(withDb) {
|
||||
uri += "/" + this.db;
|
||||
}
|
||||
return uri;
|
||||
}
|
||||
|
||||
public void cleanUpServer() {
|
||||
//String storageType = "plocal";
|
||||
String storageType = "memory";
|
||||
// Drop old database and re-create it
|
||||
try {
|
||||
OServerAdmin admin = new OServerAdmin(getDbUri(false));
|
||||
admin.connect(this.user, this.pass);
|
||||
admin.dropDatabase(this.db, storageType);
|
||||
admin.createDatabase(this.db, "graph", storageType);
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
public void setupSchema() {
|
||||
OrientGraphNoTx og = this.getOrientGraphFactory().getNoTx();
|
||||
OrientVertexType ethernetFrameType = og.createVertexType("EthernetFrame", "V");
|
||||
ethernetFrameType.createProperty("sourceMac", OType.STRING);
|
||||
ethernetFrameType.createProperty("targetMac", OType.STRING);
|
||||
ethernetFrameType.createProperty("rawData", OType.BINARY);
|
||||
ethernetFrameType.createProperty("size", OType.INTEGER);
|
||||
ethernetFrameType.createProperty("payloadSize", OType.INTEGER);
|
||||
ethernetFrameType.createProperty("timestamp", OType.LONG);
|
||||
ethernetFrameType.createProperty("microseconds", OType.INTEGER);
|
||||
|
||||
OrientVertexType arpPacketType = og.createVertexType("ArpPacket", "V");
|
||||
// TODO: Not finished!
|
||||
arpPacketType.createProperty("askedForIp", OType.STRING);
|
||||
arpPacketType.createProperty("hasIp", OType.STRING);
|
||||
arpPacketType.createProperty("size", OType.INTEGER);
|
||||
arpPacketType.createProperty("payloadSize", OType.INTEGER);
|
||||
|
||||
OrientVertexType ipPacketType = og.createVertexType("IpPacket", "V");
|
||||
ipPacketType.createProperty("sourceIp", OType.STRING);
|
||||
ipPacketType.createProperty("targetIp", OType.STRING);
|
||||
ipPacketType.createProperty("size", OType.INTEGER);
|
||||
ipPacketType.createProperty("payloadSize", OType.INTEGER);
|
||||
|
||||
OrientVertexType udpPacketType = og.createVertexType("UdpPacket", "V");
|
||||
udpPacketType.createProperty("sourcePort", OType.INTEGER);
|
||||
udpPacketType.createProperty("targetPort", OType.INTEGER);
|
||||
udpPacketType.createProperty("size", OType.INTEGER);
|
||||
udpPacketType.createProperty("payloadSize", OType.INTEGER);
|
||||
|
||||
OrientVertexType tcpPacketType = og.createVertexType("TcpPacket", "V");
|
||||
tcpPacketType.createProperty("sourcePort", OType.INTEGER);
|
||||
tcpPacketType.createProperty("targetPort", OType.INTEGER);
|
||||
tcpPacketType.createProperty("size", OType.INTEGER);
|
||||
tcpPacketType.createProperty("payloadSize", OType.INTEGER);
|
||||
|
||||
OrientVertexType icmpPacketType = og.createVertexType("IcmpPacket", "V");
|
||||
icmpPacketType.createProperty("size", OType.INTEGER);
|
||||
icmpPacketType.createProperty("payloadSize", OType.INTEGER);
|
||||
|
||||
OrientVertexType hostType = og.createVertexType("Host", "V");
|
||||
hostType.createProperty("ipAddress", OType.STRING);
|
||||
hostType.createProperty("macAddress", OType.STRING);
|
||||
hostType.createProperty("internal", OType.BOOLEAN);
|
||||
|
||||
OrientVertexType tcpConnectionType = og.createVertexType("TcpConnection", "V");
|
||||
tcpConnectionType.createProperty("start", OType.DATETIME);
|
||||
tcpConnectionType.createProperty("end", OType.DATETIME);
|
||||
tcpConnectionType.createProperty("sourcePort", OType.INTEGER);
|
||||
tcpConnectionType.createProperty("targetPort", OType.INTEGER);
|
||||
tcpConnectionType.createProperty("volumeSourceToTarget", OType.INTEGER);
|
||||
tcpConnectionType.createProperty("volumeTargetToSource", OType.INTEGER);
|
||||
tcpConnectionType.createProperty("totalVolume", OType.INTEGER);
|
||||
|
||||
OrientEdgeType isContainedInType = og.createEdgeType("isContainedIn", "E");
|
||||
isContainedInType.setDescription("isContainedIn");
|
||||
OrientEdgeType containsType = og.createEdgeType("contains", "E");
|
||||
containsType.setDescription("contains");
|
||||
|
||||
// Uhm ... this should be okay ... ?
|
||||
og.shutdown();
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,105 @@
|
|||
package de.hsh.inform.orientdb_project.orientdb;
|
||||
|
||||
import org.pcap4j.packet.ArpPacket;
|
||||
import org.pcap4j.packet.EthernetPacket;
|
||||
import org.pcap4j.packet.IcmpV4CommonPacket;
|
||||
import org.pcap4j.packet.IpV4Packet;
|
||||
import org.pcap4j.packet.TcpPacket;
|
||||
import org.pcap4j.packet.UdpPacket;
|
||||
|
||||
import com.tinkerpop.blueprints.Direction;
|
||||
import com.tinkerpop.blueprints.Edge;
|
||||
import com.tinkerpop.blueprints.Vertex;
|
||||
import com.tinkerpop.blueprints.impls.orient.OrientGraphNoTx;
|
||||
|
||||
import de.hsh.inform.orientdb_project.netdata.AbstractNetdataImportService;
|
||||
|
||||
public class OrientDbNetdataImportService extends AbstractNetdataImportService {
|
||||
|
||||
private OrientGraphNoTx og;
|
||||
|
||||
public OrientDbNetdataImportService(String filename, OrientGraphNoTx orientGraph) {
|
||||
super(filename);
|
||||
this.og = orientGraph;
|
||||
}
|
||||
|
||||
public void handleEthernetPacket(EthernetPacket ether, long ts, int ms) {
|
||||
Vertex ethernetFrame = this.og.addVertex("class:EthernetFrame");
|
||||
ethernetFrame.setProperty("sourceMac", ether.getHeader().getSrcAddr().toString());
|
||||
ethernetFrame.setProperty("targetMac", ether.getHeader().getDstAddr().toString());
|
||||
ethernetFrame.setProperty("rawData", ether.getRawData());
|
||||
ethernetFrame.setProperty("size", ether.getRawData().length);
|
||||
ethernetFrame.setProperty("payloadSize", ether.getRawData().length - ether.getHeader().length());
|
||||
ethernetFrame.setProperty("timestamp", ts);
|
||||
ethernetFrame.setProperty("microseconds", ms);
|
||||
super.handleEthernetPacket(ether, ts, ms);
|
||||
}
|
||||
|
||||
public void handleArpPacket(ArpPacket arp, long ts, int ms) {
|
||||
Vertex arpPacket = this.og.addVertex("class:ArpPacket");
|
||||
arpPacket.setProperty("size", arp.getRawData().length);
|
||||
// TODO: Not finished yet!
|
||||
arpPacket.setProperty("payloadSize", arp.getRawData().length - arp.getHeader().length());
|
||||
// Wire up to its ethernet frame
|
||||
Iterable<Vertex> result = this.og.getVertices("EthernetFrame", new String[]{"microseconds", "timestamp"}, new Object[]{ms, ts});
|
||||
Vertex ethernetFrame = result.iterator().next();
|
||||
Edge containsEdge = this.og.addEdge("class:contains", ethernetFrame, arpPacket, "contains");
|
||||
Edge isContainedInEdge = this.og.addEdge("class:isContainedIn", arpPacket, ethernetFrame, "isContainedIn");
|
||||
}
|
||||
|
||||
public void handleIpV4Packet(IpV4Packet ipv4, long ts, int ms) {
|
||||
Vertex ipPacket = this.og.addVertex("class:IpPacket");
|
||||
ipPacket.setProperty("sourceIp", ipv4.getHeader().getSrcAddr().getAddress().toString());
|
||||
ipPacket.setProperty("targetIp", ipv4.getHeader().getDstAddr().getAddress().toString());
|
||||
ipPacket.setProperty("size", ipv4.getRawData().length);
|
||||
ipPacket.setProperty("payloadSize", ipv4.getRawData().length - ipv4.getHeader().length());
|
||||
// Wire up to its ethernet frame
|
||||
Iterable<Vertex> result = this.og.getVertices("EthernetFrame", new String[]{"microseconds", "timestamp"}, new Object[]{ms, ts});
|
||||
Vertex ethernetFrame = result.iterator().next();
|
||||
Edge containsEdge = this.og.addEdge("class:contains", ethernetFrame, ipPacket, "contains");
|
||||
Edge isContainedInEdge = this.og.addEdge("class:isContainedIn", ipPacket, ethernetFrame, "isContainedIn");
|
||||
super.handleIpV4Packet(ipv4, ts, ms);
|
||||
}
|
||||
|
||||
public void handleUdpPacket(UdpPacket udp, long ts, int ms) {
|
||||
Vertex udpPacket = this.og.addVertex("class:UdpPacket");
|
||||
udpPacket.setProperty("sourcePort", udp.getHeader().getSrcPort().valueAsInt());
|
||||
udpPacket.setProperty("targetPort", udp.getHeader().getDstPort().valueAsInt());
|
||||
udpPacket.setProperty("size", udp.getRawData().length);
|
||||
udpPacket.setProperty("payloadSize", udp.getRawData().length - udp.getHeader().length());
|
||||
// Wire up to its ip packet
|
||||
Iterable<Vertex> result = this.og.getVertices("EthernetFrame", new String[]{"microseconds", "timestamp"}, new Object[]{ms, ts});
|
||||
Vertex ethernetFrame = result.iterator().next();
|
||||
Vertex ipPacket = ethernetFrame.getEdges(Direction.OUT, "contains").iterator().next().getVertex(Direction.IN);
|
||||
Edge containsEdge = this.og.addEdge("class:contains", ipPacket, udpPacket, "contains");
|
||||
Edge isContainedInEdge = this.og.addEdge("class:isContainedIn", udpPacket, ipPacket, "isContainedIn");
|
||||
}
|
||||
|
||||
public void handleTcpPacket(TcpPacket tcp, long ts, int ms) {
|
||||
Vertex tcpPacket = this.og.addVertex("class:TcpPacket");
|
||||
tcpPacket.setProperty("sourcePort", tcp.getHeader().getSrcPort().valueAsInt());
|
||||
tcpPacket.setProperty("targetPort", tcp.getHeader().getDstPort().valueAsInt());
|
||||
tcpPacket.setProperty("size", tcp.getRawData().length);
|
||||
tcpPacket.setProperty("payloadSize", tcp.getRawData().length - tcp.getHeader().length());
|
||||
// Wire up to its ip packet
|
||||
Iterable<Vertex> result = this.og.getVertices("EthernetFrame", new String[]{"microseconds", "timestamp"}, new Object[]{ms, ts});
|
||||
Vertex ethernetFrame = result.iterator().next();
|
||||
Vertex ipPacket = ethernetFrame.getEdges(Direction.OUT, "contains").iterator().next().getVertex(Direction.IN);
|
||||
Edge containsEdge = this.og.addEdge("class:contains", ipPacket, tcpPacket, "contains");
|
||||
Edge isContainedInEdge = this.og.addEdge("class:isContainedIn", tcpPacket, ipPacket, "isContainedIn");
|
||||
}
|
||||
|
||||
public void handleIcmpPacket(IcmpV4CommonPacket icmp, long ts, int ms) {
|
||||
Vertex icmpPacket = this.og.addVertex("class:IcmpPacket");
|
||||
icmpPacket.setProperty("size", icmp.getRawData().length);
|
||||
icmpPacket.setProperty("payloadSize", icmp.getRawData().length - icmp.getHeader().length());
|
||||
// Wire up to its ip packet
|
||||
Iterable<Vertex> result = this.og.getVertices("EthernetFrame", new String[]{"microseconds", "timestamp"}, new Object[]{ms, ts});
|
||||
Vertex ethernetFrame = result.iterator().next();
|
||||
Vertex ipPacket = ethernetFrame.getEdges(Direction.OUT, "contains").iterator().next().getVertex(Direction.IN);
|
||||
Edge containsEdge = this.og.addEdge("class:contains", ipPacket, icmpPacket, "contains");
|
||||
Edge isContainedInEdge = this.og.addEdge("class:isContainedIn", icmpPacket, ipPacket, "isContainedIn");
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue