BasicPacketClassifier.java 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. package de.tu_darmstadt.tk.SmartHomeNetworkSim.evaluation;
  2. import java.util.ArrayList;
  3. import java.util.HashMap;
  4. import java.util.HashSet;
  5. import java.util.Iterator;
  6. import java.util.LinkedList;
  7. import java.util.Map.Entry;
  8. import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Link;
  9. import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Packet;
  10. import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.PacketSniffer;
  11. import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.protocols.packets.MQTTpublishPacket;
  12. import weka.core.Attribute;
  13. import weka.core.DenseInstance;
  14. import weka.core.Instance;
  15. import weka.core.Instances;
  16. /**
  17. * Unsupervised Classifier Basis, which contains methods for transforming {@link Packet}s into {@link Instance}s.
  18. *
  19. * @author Andreas T. Meyer-Berg
  20. */
  21. public abstract class BasicPacketClassifier implements PacketSniffer {
  22. /**
  23. * True, if instances should be used for training
  24. */
  25. protected boolean training = true;
  26. /**
  27. * Attributes which should be taken into account
  28. */
  29. protected ArrayList<Attribute> atts = new ArrayList<Attribute>();
  30. /**
  31. * Collected Packets
  32. */
  33. protected Instances dataset;
  34. /**
  35. * CollectedPackets
  36. */
  37. protected HashMap<Link, LinkedList<Packet>> collectedPackets = new HashMap<Link, LinkedList<Packet>>();
  38. /**
  39. * HashMap for calculating transmission delay
  40. */
  41. protected HashMap<Link, LinkedList<Packet>> lastPackets = new HashMap<Link, LinkedList<Packet>>();
  42. /**
  43. * Map for the different Link names
  44. */
  45. protected HashSet<String> link_mappings = new HashSet<String>();
  46. /**
  47. * Map for the difference source device names
  48. */
  49. protected HashSet<String> source_mappings = new HashSet<String>();
  50. /**
  51. * Map for the different destination device names
  52. */
  53. protected HashSet<String> destination_mappings = new HashSet<String>();
  54. /**
  55. * Map for the protocol names
  56. */
  57. protected HashSet<String> protocol_mappings = new HashSet<String>();
  58. /**
  59. * Number of packets which are used to calculate the current transmission speed
  60. */
  61. protected int NUMBER_OF_PACKETS = 200;
  62. /**
  63. * Initializes the different maps
  64. */
  65. public BasicPacketClassifier() {
  66. // Initialize Attribute list
  67. source_mappings.add("unknown");
  68. link_mappings.add("unknown");
  69. destination_mappings.add("unknown");
  70. protocol_mappings.add("unknown");
  71. }
  72. @Override
  73. public void processPackets(HashMap<Link, LinkedList<Packet>> packets) {
  74. if(training)
  75. try {
  76. training(packets);
  77. } catch (Exception e) {
  78. e.printStackTrace();
  79. }
  80. else
  81. classify(packets);
  82. }
  83. /**
  84. * Estimates the current Packets per second (depending on the last 100 packets of the link)
  85. * @param link Link which should be checked
  86. * @param packet Packet which should investigated
  87. * @return estimated number of packets per second
  88. */
  89. protected double getEstimatedPacketsPerSecond(Link link, Packet packet) {
  90. /**
  91. * Packets used to calculated the packets per second
  92. */
  93. LinkedList<Packet> list = lastPackets.get(link);
  94. if(list == null) {
  95. /**
  96. * Add list if not present
  97. */
  98. list = new LinkedList<Packet>();
  99. lastPackets.put(link, list);
  100. }
  101. if(list.isEmpty()) {
  102. list.addLast(packet);
  103. // Default 1 packet per second
  104. return 1.0;
  105. }
  106. if(list.size() == NUMBER_OF_PACKETS){
  107. list.removeFirst();
  108. }
  109. list.addLast(packet);
  110. /**
  111. * elapsed time in milliseconds since last packet
  112. */
  113. long elapsed_time = packet.getTimestamp()-list.getFirst().getTimestamp()/list.size();
  114. if(elapsed_time<=0)
  115. return Double.POSITIVE_INFINITY;
  116. /**
  117. * Return number of packets per second
  118. */
  119. return 1000.0/elapsed_time;
  120. }
  121. /**
  122. * Returns the instance representation of the given packet and link
  123. * @param link link the packet was sent on
  124. * @param packet packet which should be transformed
  125. * @param dataset distribution the packet is part of
  126. * @return instance representation
  127. */
  128. protected Instance packet2Instance(Link link, Packet packet, Instances dataset) {
  129. /**
  130. * Instance for the given Packet
  131. */
  132. DenseInstance instance = new DenseInstance(dataset.numAttributes());
  133. instance.setDataset(dataset);
  134. // link
  135. instance.setValue(0, stringToNominal(link_mappings, link.getName()));
  136. // source
  137. if(packet.getSource()==null) {
  138. instance.setValue(1, "unknown");
  139. instance.setValue(2, Double.NEGATIVE_INFINITY);
  140. }else if(packet.getSource().getOwner()==null){
  141. instance.setValue(1, "unknown");
  142. instance.setValue(2, packet.getSource().getPortNumber());
  143. }else {
  144. instance.setValue(1, stringToNominal(source_mappings, packet.getSource().getOwner().getName()));
  145. instance.setValue(2, packet.getSource().getPortNumber());
  146. }
  147. // Destination
  148. if(packet.getDestination()==null) {
  149. instance.setValue(3, "unknown");
  150. instance.setValue(4, Double.NEGATIVE_INFINITY);
  151. }else if(packet.getDestination().getOwner()==null){
  152. instance.setValue(3, "unknown");
  153. instance.setValue(4, packet.getDestination().getPortNumber());
  154. }else {
  155. instance.setValue(3, stringToNominal(destination_mappings, packet.getDestination().getOwner().getName()));
  156. instance.setValue(4, packet.getDestination().getPortNumber());
  157. }
  158. // Protocol name
  159. instance.setValue(5, stringToNominal(protocol_mappings, packet.getProtocolName()));
  160. // Packets per second
  161. instance.setValue(6, getEstimatedPacketsPerSecond(link, packet));
  162. // MQTT Value
  163. if(packet instanceof MQTTpublishPacket)
  164. instance.setValue(7, ((MQTTpublishPacket)packet).getValue());
  165. else
  166. instance.setValue(7, -1);
  167. return instance;
  168. }
  169. /**
  170. * Inserts the
  171. * @param map
  172. * @param nominal
  173. */
  174. protected void insertNominalIntoMap(HashSet<String> map, String nominal) {
  175. if(map == null || nominal == null)
  176. return;
  177. map.add(nominal);
  178. }
  179. /**
  180. * Transforms the String into an Number
  181. * @param map
  182. * @param s
  183. * @return
  184. */
  185. protected String stringToNominal(HashSet<String> map, String s) {
  186. return map.contains(s)?s:"unknown";
  187. }
  188. /**
  189. * Train the clusterer by collecting the packets
  190. *
  191. * @param packets packets to be learned
  192. */
  193. protected void training(HashMap<Link, LinkedList<Packet>> packets) {
  194. for(Entry<Link, LinkedList<Packet>> e:packets.entrySet()) {
  195. Link l = e.getKey();
  196. // TODO: ERROR ????????
  197. LinkedList<Packet> p = collectedPackets.get(l);
  198. if(p == null) {
  199. collectedPackets.put(l, new LinkedList<Packet>(e.getValue()));
  200. } else
  201. p.addAll(e.getValue());
  202. insertNominalIntoMap(link_mappings, l.getName());
  203. for(Packet pac: e.getValue()) {
  204. if(pac == null || pac.getSource()==null ||pac.getDestination() == null || pac.getSource().getOwner() == null || pac.getDestination().getOwner() == null)
  205. continue;
  206. insertNominalIntoMap(destination_mappings, pac.getSource().getOwner().getName());
  207. insertNominalIntoMap(destination_mappings, pac.getDestination().getOwner().getName());
  208. insertNominalIntoMap(source_mappings, pac.getSource().getOwner().getName());
  209. insertNominalIntoMap(source_mappings, pac.getDestination().getOwner().getName());
  210. insertNominalIntoMap(protocol_mappings, pac.getProtocolName());
  211. }
  212. //TODO: Add packet/Link/Names etc. to mappings
  213. }
  214. }
  215. /**
  216. * Finishes the collection and trains the clusterer on the collected packets
  217. *
  218. * @throws Exception
  219. */
  220. protected void finishDataCollection() throws Exception{
  221. /**
  222. printHashSet("Link-Name", link_mappings);
  223. printHashSet("Source-Device", source_mappings);
  224. printHashSet("Destination-Port", destination_mappings);
  225. printHashSet("Protocol-name", protocol_mappings);
  226. */
  227. atts.add(new Attribute("Link-Name", new LinkedList<String>(link_mappings)));//TODO:??
  228. atts.add(new Attribute("Source-Device", new LinkedList<String>(source_mappings)));
  229. atts.add(new Attribute("Source-Port-number", false));
  230. atts.add(new Attribute("Destination-Device", new LinkedList<String>(destination_mappings)));
  231. atts.add(new Attribute("Destination-Port-number", false));
  232. Attribute pn = new Attribute("Protocol-name", new LinkedList<String>(protocol_mappings));
  233. //pn.setWeight(10);
  234. atts.add(pn);
  235. Attribute pps = new Attribute("Packets-per-second", false);
  236. //pps.setWeight(20);
  237. atts.add(pps);
  238. atts.add(new Attribute("PacketValue", false));
  239. //atts.add(new Attribute("Anomaly", false));
  240. /*
  241. atts = new ArrayList<Attribute>();
  242. atts.add(new Attribute("LN", new LinkedList<String>(link_mappings)));//TODO:??
  243. atts.add(new Attribute("SD", new LinkedList<String>(source_mappings)));
  244. atts.add(new Attribute("SPN", false));
  245. atts.add(new Attribute("DD", new LinkedList<String>(destination_mappings)));
  246. atts.add(new Attribute("DPN", false));
  247. atts.add(new Attribute("PN", new LinkedList<String>(protocol_mappings)));
  248. atts.add(new Attribute("PPS", false));
  249. atts.add(new Attribute("A", false));*/
  250. dataset = new Instances("Packets", atts, 100000);
  251. //dataset.setClassIndex(7);
  252. /**
  253. * Add Instances to dataset
  254. */
  255. for (Iterator<Entry<Link, LinkedList<Packet>>> it = collectedPackets.entrySet().iterator(); it.hasNext();) {
  256. Entry<Link, LinkedList<Packet>> entry = it.next();
  257. /**
  258. * Link the packet was captured on
  259. */
  260. Link l = entry.getKey();
  261. for (Iterator<Packet> itPacket = entry.getValue().iterator(); itPacket.hasNext();) {
  262. /**
  263. * Packets to be added to the dataset
  264. */
  265. Packet packet = (Packet) itPacket.next();
  266. dataset.add(packet2Instance(l, packet, dataset));
  267. }
  268. }
  269. trainModel(dataset);
  270. }
  271. private void printHashSet(String name, HashSet<String> toPrint) {
  272. System.out.println(name+":");
  273. for (Iterator<String> iterator = toPrint.iterator(); iterator.hasNext();) {
  274. String string = (String) iterator.next();
  275. System.out.print(string);
  276. if(iterator.hasNext())
  277. System.out.print(", ");
  278. }
  279. System.out.println();
  280. }
  281. /**
  282. * Try to classify the given packets and detect anomalies
  283. * @param packets packets to be classified
  284. */
  285. protected void classify(HashMap<Link, LinkedList<Packet>> packets) {
  286. int tp = 0;
  287. int fp = 0;
  288. int tn = 0;
  289. int fn = 0;
  290. long start = Long.MAX_VALUE;
  291. long end = Long.MIN_VALUE;
  292. for (Iterator<Entry<Link, LinkedList<Packet>>> it = packets.entrySet().iterator(); it.hasNext();) {
  293. /**
  294. * Link & its packets
  295. */
  296. Entry<Link, LinkedList<Packet>> entry = it.next();
  297. /**
  298. * Link the packets were captured on
  299. */
  300. Link l = entry.getKey();
  301. for (Iterator<Packet> itPacket = entry.getValue().iterator(); itPacket.hasNext();) {
  302. /**
  303. * Packet which should be checked
  304. */
  305. Packet packet = (Packet) itPacket.next();
  306. start = Math.min(start, packet.getTimestamp());
  307. end = Math.max(end, packet.getTimestamp());
  308. /**
  309. * Instance Representation
  310. */
  311. Instance packet_instance = packet2Instance(l, packet, dataset);
  312. if(packet_instance == null)continue;
  313. try {
  314. double dist = classifyInstance(packet_instance, packet);
  315. if(dist<=1.0) {
  316. if(packet.getLabel()==0)
  317. tn++;
  318. else {
  319. fn++;
  320. System.out.println(packet.getTextualRepresentation());
  321. }
  322. }else {
  323. if(packet.getLabel()==0)
  324. fp++;
  325. else
  326. tp++;
  327. }
  328. } catch (Exception e) {
  329. if(packet.getLabel()==0)
  330. fp++;
  331. else
  332. tp++;
  333. }
  334. }
  335. }
  336. int n = tp+tn+fp+fn;
  337. if(n!=0) {
  338. System.out.println(getAlgoName()+" Performance: ["+start+"ms, "+end+"ms]");
  339. System.out.println("n: "+n);
  340. System.out.println("TP: "+tp);
  341. System.out.println("FP: "+fp);
  342. System.out.println("TN: "+tn);
  343. System.out.println("FN: "+fn);
  344. System.out.println("TPR: "+(tp/(tp+fn+0.0)));
  345. System.out.println("FPR: "+(fp/(fp+tn+0.0)));
  346. System.out.println("");
  347. }
  348. }
  349. /**
  350. * Train the model using the given instances
  351. * @param instances training set, which should be learned
  352. */
  353. public abstract void trainModel(Instances instances);
  354. /**
  355. * classifies the given instance
  356. * @param instance instance which should be classified
  357. * @param origin original packet, which was transformed into the instance
  358. * @return distance to next centroid
  359. * @throws Exception if anomaly was detected
  360. */
  361. public abstract double classifyInstance(Instance instance, Packet origin) throws Exception;
  362. /**
  363. * Returns the timestep, after which the classifier should start classifying instead of training.
  364. * @return timestep of the testing begin.
  365. */
  366. public abstract long getClassificationStart();
  367. @Override
  368. public void setMode(boolean testing) {
  369. training = !testing;
  370. if(testing) {
  371. try {
  372. finishDataCollection();
  373. } catch (Exception e) {
  374. System.out.println("Clustering failed");
  375. e.printStackTrace();
  376. }
  377. }
  378. }
  379. @Override
  380. public boolean getMode() {
  381. return !training;
  382. }
  383. /**
  384. * Short String representation of the classifier
  385. * @return
  386. */
  387. public abstract String getAlgoName();
  388. }