Making sure that merging would fail if there is a situation where two sequences are...
[pingpong.git] / Code / Projects / SmartPlugDetector / src / main / java / edu / uci / iotproject / Main.java
1 package edu.uci.iotproject;
2
3 import static edu.uci.iotproject.analysis.UserAction.Type;
4
5 import edu.uci.iotproject.analysis.*;
6 import edu.uci.iotproject.comparison.seqalignment.ExtractedSequence;
7 import edu.uci.iotproject.comparison.seqalignment.SequenceAlignment;
8 import edu.uci.iotproject.comparison.seqalignment.SequenceExtraction;
9 import edu.uci.iotproject.io.TriggerTimesFileReader;
10 import edu.uci.iotproject.util.PcapPacketUtils;
11 import edu.uci.iotproject.util.PrintUtils;
12 import org.apache.commons.math3.stat.clustering.Cluster;
13 import org.apache.commons.math3.stat.clustering.DBSCANClusterer;
14 import org.pcap4j.core.*;
15 import org.pcap4j.packet.namednumber.DataLinkType;
16
17 import java.io.EOFException;
18 import java.io.File;
19 import java.io.PrintWriter;
20 import java.net.UnknownHostException;
21 import java.time.Instant;
22 import java.util.*;
23 import java.util.concurrent.TimeoutException;
24 import java.util.stream.Collectors;
25 import java.util.stream.Stream;
26
27 /**
28  * This is a system that reads PCAP files to compare
29  * patterns of DNS hostnames, packet sequences, and packet
30  * lengths with training data to determine certain events
31  * or actions for smart home devices.
32  *
33  * @author Janus Varmarken
34  * @author Rahmadi Trimananda (rtrimana@uci.edu)
35  * @version 0.1
36  */
37 public class Main {
38
39
40     public static void main(String[] args) throws PcapNativeException, NotOpenException, EOFException, TimeoutException, UnknownHostException {
41         // -------------------------------------------------------------------------------------------------------------
42         // ------------ # Code for extracting traffic generated by a device within x seconds of a trigger # ------------
43         // Paths to input and output files (consider supplying these as arguments instead) and IP of the device for
44         // which traffic is to be extracted:
45         String path = "/scratch/July-2018"; // Rahmadi
46 //        String path = "/Users/varmarken/temp/UCI IoT Project/experiments"; // Janus
47         boolean verbose = true;
48         final String onPairsPath = "/scratch/July-2018/on.txt";
49         final String offPairsPath = "/scratch/July-2018/off.txt";
50
51         // 1) D-Link July 26 experiment
52 //        final String inputPcapFile = path + "/2018-07/dlink/dlink.wlan1.local.pcap";
53 //        final String outputPcapFile = path + "/2018-07/dlink/dlink-processed.pcap";
54 //        final String triggerTimesFile = path + "/2018-07/dlink/dlink-july-26-2018.timestamps";
55 //        final String deviceIp = "192.168.1.199"; // .246 == phone; .199 == dlink plug?
56           // Actual training
57 //        final String inputPcapFile = path + "/2018-10/dlink-plug/dlink-plug.wlan1.local.pcap";
58 //        final String outputPcapFile = path + "/2018-10/dlink-plug/dlink-plug-processed.pcap";
59 //        final String triggerTimesFile = path + "/2018-10/dlink-plug/dlink-plug-oct-17-2018.timestamps";
60 //        final String deviceIp = "192.168.1.199"; // .246 == phone; .199 == dlink plug?
61
62         // 2) TP-Link July 25 experiment
63 //        final String inputPcapFile = path + "/2018-07/tplink/tplink.wlan1.local.pcap";
64 //        final String outputPcapFile = path + "/2018-07/tplink/tplink-processed.pcap";
65 //        final String triggerTimesFile = path + "/2018-07/tplink/tplink-july-25-2018.timestamps";
66 //        final String deviceIp = "192.168.1.159";
67           // Actual training
68 //        final String inputPcapFile = path + "/2018-10/tplink-plug/tplink-plug.wlan1.local.pcap";
69 //        final String outputPcapFile = path + "/2018-10/tplink-plug/tplink-plug-processed.pcap";
70 //        final String triggerTimesFile = path + "/2018-10/tplink-plug/tplink-plug-oct-17-2018.timestamps";
71 //        final String deviceIp = "192.168.1.246"; // .246 == phone; .159 == tplink plug
72
73         // 2b) TP-Link July 25 experiment TRUNCATED:
74         // Only contains "true local" events, i.e., before the behavior changes to remote-like behavior.
75         // Last included event is at July 25 10:38:11; file filtered to only include packets with arrival time <= 10:38:27.
76 //        final String inputPcapFile = path + "/2018-07/tplink/tplink.wlan1.local.truncated.pcap";
77 //        final String outputPcapFile = path + "/2018-07/tplink/tplink-processed.truncated.pcap";
78 //        final String triggerTimesFile = path + "/2018-07/tplink/tplink-july-25-2018.truncated.timestamps";
79 //        final String deviceIp = "192.168.1.159";
80
81         // 3) SmartThings Plug July 25 experiment
82 //        final String inputPcapFile = path + "/2018-07/stplug/stplug.wlan1.local.pcap";
83 //        final String outputPcapFile = path + "/2018-07/stplug/stplug-processed.pcap";
84 //        final String triggerTimesFile = path + "/2018-07/stplug/smartthings-july-25-2018.timestamps";
85 //        final String deviceIp = "192.168.1.246"; // .246 == phone; .142 == SmartThings Hub (note: use eth0 capture for this!)
86         // October 18
87         final String inputPcapFile = path + "/2018-10/st-plug/st-plug.wlan1.local.pcap";
88         final String outputPcapFile = path + "/2018-10/st-plug/st-plug-processed.pcap";
89         final String triggerTimesFile = path + "/2018-10/st-plug/st-plug-oct-18-2018.timestamps";
90         final String deviceIp = "192.168.1.246"; // .246 == phone; .142 == SmartThings Hub (note: use eth0 capture for this!)
91
92         // 4) Wemo July 30 experiment
93 //        final String inputPcapFile = path + "/2018-07/wemo/wemo.wlan1.local.pcap";
94 //        final String outputPcapFile = path + "/2018-07/wemo/wemo-processed.pcap";
95 //        final String triggerTimesFile = path + "/2018-07/wemo/wemo-july-30-2018.timestamps";
96 //        final String deviceIp = "192.168.1.145";
97
98         // 5) Wemo Insight July 31 experiment
99 //        final String inputPcapFile = path + "/2018-07/wemoinsight/wemoinsight.wlan1.local.pcap";
100 //        final String outputPcapFile = path + "/2018-07/wemoinsight/wemoinsight-processed.pcap";
101 //        final String triggerTimesFile = path + "/2018-07/wemoinsight/wemo-insight-july-31-2018.timestamps";
102 //        final String deviceIp = "192.168.1.135";
103
104         // 6) TP-Link Bulb August 1 experiment
105 //        final String inputPcapFile = path + "/2018-08/tplink-bulb/tplinkbulb.wlan1.local.pcap";
106 //        final String outputPcapFile = path + "/2018-08/tplink-bulb/tplinkbulb-processed.pcap";
107 //        final String triggerTimesFile = path + "/2018-08/tplink-bulb/tplink-bulb-aug-3-2018.timestamps";
108 //        final String deviceIp = "192.168.1.140"; // .246 == phone; .140 == TP-Link bulb
109
110         // 7) Kwikset Doorlock August 6 experiment
111 //        final String inputPcapFile = path + "/2018-08/kwikset-doorlock/kwikset-doorlock.data.wlan1.pcap";
112 ////        final String inputPcapFile = path + "/2018-08/kwikset-doorlock/kwikset-doorlock.wlan1.local.pcap";
113 //        final String outputPcapFile = path + "/2018-08/kwikset-doorlock/kwikset-doorlock-processed.pcap";
114 ////        final String triggerTimesFile = path + "/2018-08/kwikset-doorlock/kwikset-doorlock-aug-6-2018.timestamps";
115 //        final String triggerTimesFile = path + "/2018-08/kwikset-doorlock/kwikset-doorlock-8hr-data-oct-11-2018.timestamps";
116 //        final String deviceIp = "192.168.1.246"; // .246 == phone; .142 == SmartThings Hub (note: use eth0 capture for this!)
117
118         // September 12, 2018 - includes both wlan1 and eth1 interfaces
119 //        final String inputPcapFile = path + "/2018-08/kwikset-doorlock/kwikset3.wlan1.local.pcap";
120 //        //final String inputPcapFile = path + "/2018-08/kwikset-doorlock/kwikset3.eth1.local.pcap";
121 //        final String outputPcapFile = path + "/2018-08/kwikset-doorlock/kwikset3-processed.pcap";
122 //        final String triggerTimesFile = path + "/2018-08/kwikset-doorlock/kwikset-doorlock-sept-12-2018.timestamps";
123 //        final String deviceIp = "192.168.1.246"; // .246 == phone; .142 == SmartThings Hub (note: use eth0 capture for this!)
124
125         // 8) Hue Bulb August 7 experiment
126 //        final String inputPcapFile = path + "/2018-08/hue-bulb/hue-bulb.wlan1.local.pcap";
127 //        final String outputPcapFile = path + "/2018-08/hue-bulb/hue-bulb-processed.pcap";
128 //        final String triggerTimesFile = path + "/2018-08/hue-bulb/hue-bulb-aug-7-2018.timestamps";
129 //        final String deviceIp = "192.168.1.246";
130         // October 30 experiment
131 //        final String inputPcapFile = path + "/2018-10/hue-bulb/hue-bulb.eth1.local.pcap";
132 //        final String outputPcapFile = path + "/2018-10/hue-bulb/hue-bulb-processed.pcap";
133 //        final String triggerTimesFile = path + "/2018-10/hue-bulb/hue-bulb-oct-30-2018.timestamps";
134 //        final String deviceIp = "192.168.1.100"; // .246 == phone; .100 == Hue hub
135
136         // 9) Lifx Bulb August 8 experiment
137 //        final String inputPcapFile = path + "/2018-08/lifx-bulb/lifx-bulb.wlan1.local.pcap";
138 //        final String outputPcapFile = path + "/2018-08/lifx-bulb/lifx-bulb-processed.pcap";
139 //        final String triggerTimesFile = path + "/2018-08/lifx-bulb/lifx-bulb-aug-8-2018.timestamps";
140 //        final String deviceIp = "192.168.1.246"; // .246 == phone; .231 == Lifx
141
142         // 10) Amcrest Camera August 9 experiment
143 //        final String inputPcapFile = path + "/2018-08/amcrest-camera/amcrest-camera.wlan1.local.pcap";
144 //        final String outputPcapFile = path + "/2018-08/amcrest-camera/amcrest-camera-processed.pcap";
145 //        final String triggerTimesFile = path + "/2018-08/amcrest-camera/amcrest-camera-aug-9-2018.timestamps";
146 //        final String deviceIp = "192.168.1.246"; // .246 == phone; .235 == camera
147
148         // 11) Arlo Camera August 10 experiment
149 //        final String inputPcapFile = path + "/2018-08/arlo-camera/arlo-camera.wlan1.local.pcap";
150 //        final String outputPcapFile = path + "/2018-08/arlo-camera/arlo-camera-processed.pcap";
151 //        final String triggerTimesFile = path + "/2018-08/arlo-camera/arlo-camera-aug-10-2018.timestamps";
152 //        final String deviceIp = "192.168.1.246"; // .246 == phone; .140 == camera
153
154         // 12) Blossom sprinkler August 13 experiment
155 //        final String inputPcapFile = path + "/2018-08/blossom/blossom.wlan1.local.pcap";
156 //        final String outputPcapFile = path + "/2018-08/blossom/blossom-processed.pcap";
157 //        final String triggerTimesFile = path + "/2018-08/blossom/blossom-aug-13-2018.timestamps";
158 //        final String deviceIp = "192.168.1.229"; // .246 == phone; .229 == sprinkler
159
160 //        // 13) DLink siren August 14 experiment
161 //        final String inputPcapFile = path + "/2018-08/dlink-siren/dlink-siren.wlan1.local.pcap";
162 //        //final String inputPcapFile = path + "/evaluation/dlink-siren/dlink-siren.data.wlan1.pcap";
163 //        final String outputPcapFile = path + "/2018-08/dlink-siren/dlink-siren-processed.pcap";
164 //        final String triggerTimesFile = path + "/2018-08/dlink-siren/dlink-siren-oct-12-2018.timestamps";
165 //        //final String triggerTimesFile = path + "/2018-08/dlink-siren/dlink-siren-aug-14-2018.timestamps";
166 //        //final String triggerTimesFile = path + "/actual/timestamps/dlink-siren-8hr-data-oct-10-2018.timestamps";
167 //        final String deviceIp = "192.168.1.246"; // .246 == phone; .183 == siren
168
169         // 14) Nest thermostat August 15 experiment
170 //        final String inputPcapFile = path + "/2018-08/nest/nest.wlan1.local.pcap";
171 //        final String outputPcapFile = path + "/2018-08/nest/nest-processed.pcap";
172 //        final String triggerTimesFile = path + "/2018-08/nest/nest-aug-15-2018.timestamps";
173 //        final String deviceIp = "192.168.1.246"; // .246 == phone; .127 == Nest thermostat
174
175         // 15) Alexa August 16 experiment
176 //        final String inputPcapFile = path + "/2018-08/alexa/alexa.wlan1.local.pcap";
177 //        final String outputPcapFile = path + "/2018-08/alexa/alexa-processed.pcap";
178 //        final String triggerTimesFile = path + "/2018-08/alexa/alexa-aug-16-2018.timestamps";
179 //        final String deviceIp = "192.168.1.225"; // .246 == phone; .225 == Alexa
180         // August 17
181 //        final String inputPcapFile = path + "/2018-08/alexa/alexa2.wlan1.local.pcap";
182 //        final String outputPcapFile = path + "/2018-08/alexa/alexa2-processed.pcap";
183 //        final String triggerTimesFile = path + "/2018-08/alexa/alexa-aug-17-2018.timestamps";
184 //        final String deviceIp = "192.168.1.225"; // .246 == phone; .225 == Alexa
185
186         // September 17
187 //        final String inputPcapFile = path + "/2018-08/noise/noise.eth1.pcap";
188 //        final String outputPcapFile = path + "/2018-08/noise/noise-processed.pcap";
189 //        final String triggerTimesFile = path + "/2018-08/noise/noise-sept-17-2018.timestamps";
190 //        final String deviceIp = "192.168.1.142"; //  .142 == SmartThings Hub; .199 == dlink plug; .183 == siren
191         // September 26 - D-Link noise
192 //        final String inputPcapFile = path + "/2018-08/noise/noise.dlink.wlan1.pcap";
193 //        final String outputPcapFile = path + "/2018-08/noise/noise-processed.pcap";
194 //        final String triggerTimesFile = path + "/2018-08/noise/dlink-noise-sept-26-2018.timestamps";
195 //        final String deviceIp = "192.168.1.183"; //  .199 == dlink plug; .183 == siren
196         // September 27 - Kwikset noise
197 //        final String inputPcapFile = path + "/2018-08/noise/noise.kwikset.eth1.pcap";
198 //        final String outputPcapFile = path + "/2018-08/noise/noise-processed.pcap";
199 //        final String triggerTimesFile = path + "/2018-08/noise/kwikset-doorlock-noise-sept-27-2018.timestamps";
200 //        final String deviceIp = "192.168.1.142"; //  .142 == SmartThings Hub;
201
202         TriggerTimesFileReader ttfr = new TriggerTimesFileReader();
203         List<Instant> triggerTimes = ttfr.readTriggerTimes(triggerTimesFile, false);
204         // Tag each trigger with "ON" or "OFF", assuming that the first trigger is an "ON" and that they alternate.
205         List<UserAction> userActions = new ArrayList<>();
206         for (int i = 0; i < triggerTimes.size(); i++) {
207             userActions.add(new UserAction(i % 2 == 0 ? Type.TOGGLE_ON : Type.TOGGLE_OFF, triggerTimes.get(i)));
208         }
209         TriggerTrafficExtractor tte = new TriggerTrafficExtractor(inputPcapFile, triggerTimes, deviceIp);
210         final PcapDumper outputter = Pcaps.openDead(DataLinkType.EN10MB, 65536).dumpOpen(outputPcapFile);
211         DnsMap dnsMap = new DnsMap();
212         TcpReassembler tcpReassembler = new TcpReassembler();
213         TrafficLabeler trafficLabeler = new TrafficLabeler(userActions);
214         tte.performExtraction(pkt -> {
215             try {
216                 outputter.dump(pkt);
217             } catch (NotOpenException e) {
218                 e.printStackTrace();
219             }
220         }, dnsMap, tcpReassembler, trafficLabeler);
221         outputter.flush();
222         outputter.close();
223
224         if (tte.getPacketsIncludedCount() != trafficLabeler.getTotalPacketCount()) {
225             // Sanity/debug check
226             throw new AssertionError(String.format("mismatch between packet count in %s and %s",
227                     TriggerTrafficExtractor.class.getSimpleName(), TrafficLabeler.class.getSimpleName()));
228         }
229
230         // Extract all conversations present in the filtered trace.
231         List<Conversation> allConversations = tcpReassembler.getTcpConversations();
232         // Group conversations by hostname.
233         Map<String, List<Conversation>> convsByHostname = TcpConversationUtils.groupConversationsByHostname(allConversations, dnsMap);
234         System.out.println("Grouped conversations by hostname.");
235         // For each hostname, count the frequencies of packet lengths exchanged with that hostname.
236         final Map<String, Map<Integer, Integer>> pktLenFreqsByHostname = new HashMap<>();
237         convsByHostname.forEach((host, convs) -> pktLenFreqsByHostname.put(host, TcpConversationUtils.countPacketLengthFrequencies(convs)));
238         System.out.println("Counted frequencies of packet lengths exchanged with each hostname.");
239         // For each hostname, count the frequencies of packet sequences (i.e., count how many conversations exchange a
240         // sequence of packets of some specific lengths).
241         final Map<String, Map<String, Integer>> pktSeqFreqsByHostname = new HashMap<>();
242         convsByHostname.forEach((host, convs) -> pktSeqFreqsByHostname.put(host, TcpConversationUtils.countPacketSequenceFrequencies(convs)));
243         System.out.println("Counted frequencies of packet sequences exchanged with each hostname.");
244         // For each hostname, count frequencies of packet pairs exchanged with that hostname across all conversations
245         final Map<String, Map<String, Integer>> pktPairFreqsByHostname =
246                 TcpConversationUtils.countPacketPairFrequenciesByHostname(allConversations, dnsMap);
247         System.out.println("Counted frequencies of packet pairs per hostname");
248         // For each user action, reassemble the set of TCP connections occurring shortly after
249         final Map<UserAction, List<Conversation>> userActionToConversations = trafficLabeler.getLabeledReassembledTcpTraffic();
250         final Map<UserAction, Map<String, List<Conversation>>> userActionsToConvsByHostname = trafficLabeler.getLabeledReassembledTcpTraffic(dnsMap);
251         System.out.println("Reassembled TCP conversations occurring shortly after each user event");
252
253
254
255         /*
256          * NOTE: no need to generate these more complex on/off maps that also contain mappings from hostname and
257          * sequence identifiers as we do not care about hostnames and sequences during clustering.
258          * We can simply use the UserAction->List<Conversation> map to generate ON/OFF groupings of conversations.
259          */
260         /*
261         // Contains all ON events: hostname -> sequence identifier -> list of conversations with that sequence
262         Map<String, Map<String, List<Conversation>>> ons = new HashMap<>();
263         // Contains all OFF events: hostname -> sequence identifier -> list of conversations with that sequence
264         Map<String, Map<String, List<Conversation>>> offs = new HashMap<>();
265         userActionsToConvsByHostname.forEach((ua, hostnameToConvs) -> {
266             Map<String, Map<String, List<Conversation>>> outer = ua.getType() == Type.TOGGLE_ON ? ons : offs;
267             hostnameToConvs.forEach((host, convs) -> {
268                 Map<String, List<Conversation>> seqsToConvs = TcpConversationUtils.
269                         groupConversationsByPacketSequence(convs, verbose);
270                 outer.merge(host, seqsToConvs, (oldMap, newMap) -> {
271                     newMap.forEach((sequence, cs) -> oldMap.merge(sequence, cs, (list1, list2) -> {
272                         list1.addAll(list2);
273                         return list1;
274                     }));
275                     return oldMap;
276                 });
277             });
278         });
279         */
280
281         // ================================================ CLUSTERING ================================================
282         // Note: no need to use the more convoluted on/off maps; can simply use the UserAction->List<Conversation> map
283         // when don't care about hostnames and sequences (see comment earlier).
284         List<Conversation> onConversations = userActionToConversations.entrySet().stream().
285                 filter(e -> e.getKey().getType() == Type.TOGGLE_ON). // drop all OFF events from stream
286                 map(e -> e.getValue()). // no longer interested in the UserActions
287                 flatMap(List::stream). // flatten List<List<T>> to a List<T>
288                 collect(Collectors.toList());
289         List<Conversation> offConversations = userActionToConversations.entrySet().stream().
290                 filter(e -> e.getKey().getType() == Type.TOGGLE_OFF).
291                 map(e -> e.getValue()).
292                 flatMap(List::stream).
293                 collect(Collectors.toList());
294         //Collections.sort(onConversations, (c1, c2) -> c1.getPackets().)
295
296         List<PcapPacketPair> onPairs = onConversations.stream().
297                 map(c -> c.isTls() ? TcpConversationUtils.extractTlsAppDataPacketPairs(c) :
298                         TcpConversationUtils.extractPacketPairs(c)).
299                 flatMap(List::stream). // flatten List<List<>> to List<>
300                 collect(Collectors.toList());
301         List<PcapPacketPair> offPairs = offConversations.stream().
302                 map(c -> c.isTls() ? TcpConversationUtils.extractTlsAppDataPacketPairs(c) :
303                         TcpConversationUtils.extractPacketPairs(c)).
304                 flatMap(List::stream). // flatten List<List<>> to List<>
305                 collect(Collectors.toList());
306         // Note: need to update the DnsMap of all PcapPacketPairs if we want to use the IP/hostname-sensitive distance.
307         Stream.concat(Stream.of(onPairs), Stream.of(offPairs)).flatMap(List::stream).forEach(p -> p.setDnsMap(dnsMap));
308         // Perform clustering on conversation logged as part of all ON events.
309         DBSCANClusterer<PcapPacketPair> onClusterer = new DBSCANClusterer<>(10.0, 45);
310         List<Cluster<PcapPacketPair>> onClusters = onClusterer.cluster(onPairs);
311         // Perform clustering on conversation logged as part of all OFF events.
312         DBSCANClusterer<PcapPacketPair> offClusterer = new DBSCANClusterer<>(10.0, 45);
313         List<Cluster<PcapPacketPair>> offClusters = offClusterer.cluster(offPairs);
314         // Sort the conversations as reference
315         List<Conversation> sortedAllConversation = TcpConversationUtils.sortConversationList(allConversations);
316         // Output clusters
317         System.out.println("========================================");
318         System.out.println("       Clustering results for ON        ");
319         System.out.println("       Number of clusters: " + onClusters.size());
320         int count = 0;
321         List<List<List<PcapPacket>>> ppListOfListReadOn = new ArrayList<>();
322         List<List<List<PcapPacket>>> ppListOfListListOn = new ArrayList<>();
323         for (Cluster<PcapPacketPair> c : onClusters) {
324             System.out.println(String.format("<<< Cluster #%02d (%03d points) >>>", ++count, c.getPoints().size()));
325             System.out.print(PrintUtils.toSummaryString(c));
326             if(c.getPoints().size() > 45 && c.getPoints().size() < 55) {
327                 // Print to file
328                 List<List<PcapPacket>> ppListOfList = PcapPacketUtils.clusterToListOfPcapPackets(c);
329                 ppListOfListListOn.add(ppListOfList);
330             }
331         }
332         // TODO: Merging test
333         ppListOfListListOn = PcapPacketUtils.mergeSignatures(ppListOfListListOn, sortedAllConversation);
334         ppListOfListListOn = PcapPacketUtils.sortSignatures(ppListOfListListOn);
335         PcapPacketUtils.printSignatures(ppListOfListListOn);
336         //count = 0;
337         /*for (List<List<PcapPacket>> ll : ppListOfListListOn) {
338             PrintUtils.serializeClustersIntoFile("./onSignature" + ++count + ".sig", ll);
339             ppListOfListReadOn.add(PrintUtils.deserializeClustersFromFile("./onSignature" + count + ".sig"));
340         }*/
341         PrintUtils.serializeSignatureIntoFile("./onSignature.sig", ppListOfListListOn);
342         ppListOfListReadOn = PrintUtils.deserializeSignatureFromFile("./onSignature.sig");
343
344         System.out.println("========================================");
345         System.out.println("       Clustering results for OFF       ");
346         System.out.println("       Number of clusters: " + offClusters.size());
347         count = 0;
348         List<List<List<PcapPacket>>> ppListOfListReadOff = new ArrayList<>();
349         List<List<List<PcapPacket>>> ppListOfListListOff = new ArrayList<>();
350         for (Cluster<PcapPacketPair> c : offClusters) {
351             System.out.println(String.format("<<< Cluster #%03d (%06d points) >>>", ++count, c.getPoints().size()));
352             System.out.print(PrintUtils.toSummaryString(c));
353             if(c.getPoints().size() > 45 && c.getPoints().size() < 55) {
354                 // Print to file
355                 List<List<PcapPacket>> ppListOfList = PcapPacketUtils.clusterToListOfPcapPackets(c);
356                 ppListOfListListOff.add(ppListOfList);
357             }
358         }
359         // TODO: Merging test
360         ppListOfListListOff = PcapPacketUtils.mergeSignatures(ppListOfListListOff, sortedAllConversation);
361         ppListOfListListOff = PcapPacketUtils.sortSignatures(ppListOfListListOff);
362         PcapPacketUtils.printSignatures(ppListOfListListOff);
363         //count = 0;
364         /*for (List<List<PcapPacket>> ll : ppListOfListListOff) {
365             PrintUtils.serializeClustersIntoFile("./offSignature" + ++count + ".sig", ll);
366             ppListOfListReadOff.add(PrintUtils.deserializeClustersFromFile("./offSignature" + count + ".sig"));
367         }*/
368         PrintUtils.serializeSignatureIntoFile("./offSignature.sig", ppListOfListListOff);
369         ppListOfListReadOff = PrintUtils.deserializeSignatureFromFile("./offSignature.sig");
370         System.out.println("========================================");
371         // ============================================================================================================
372
373         /*
374         System.out.println("==== ON ====");
375         // Print out all the pairs into a file for ON events
376         File fileOnEvents = new File(onPairsPath);
377         PrintWriter pwOn = null;
378         try {
379
380
381             pwOn = new PrintWriter(fileOnEvents);
382         } catch(Exception ex) {
383             ex.printStackTrace();
384         }
385         for(Map.Entry<String, Map<String, List<Conversation>>> entry : ons.entrySet()) {
386             Map<String, List<Conversation>> seqsToConvs = entry.getValue();
387             for(Map.Entry<String, List<Conversation>> entryConv : seqsToConvs.entrySet()) {
388                 List<Conversation> listConv = entryConv.getValue();
389                 // Just get the first Conversation because all Conversations in this group
390                 // should have the same pairs of Application Data.
391                 for(Conversation conv : listConv) {
392                     // Process only if it is a TLS packet
393                     if (conv.isTls()) {
394                         List<PcapPacketPair> tlsAppDataList = TcpConversationUtils.extractTlsAppDataPacketPairs(conv);
395                         for(PcapPacketPair pair: tlsAppDataList) {
396                             System.out.println(PrintUtils.toCsv(pair, dnsMap));
397                             pwOn.println(PrintUtils.toCsv(pair, dnsMap));
398                         }
399                     } else { // Non-TLS conversations
400                         List<PcapPacketPair> packetList = TcpConversationUtils.extractPacketPairs(conv);
401                         for(PcapPacketPair pair: packetList) {
402                             System.out.println(PrintUtils.toCsv(pair, dnsMap));
403                             pwOn.println(PrintUtils.toCsv(pair, dnsMap));
404                         }
405                     }
406                 }
407             }
408         }
409         pwOn.close();
410
411         System.out.println("==== OFF ====");
412         // Print out all the pairs into a file for ON events
413         File fileOffEvents = new File(offPairsPath);
414         PrintWriter pwOff = null;
415         try {
416             pwOff = new PrintWriter(fileOffEvents);
417         } catch(Exception ex) {
418             ex.printStackTrace();
419         }
420         for(Map.Entry<String, Map<String, List<Conversation>>> entry : offs.entrySet()) {
421             Map<String, List<Conversation>> seqsToConvs = entry.getValue();
422             for(Map.Entry<String, List<Conversation>> entryConv : seqsToConvs.entrySet()) {
423                 List<Conversation> listConv = entryConv.getValue();
424                 // Just get the first Conversation because all Conversations in this group
425                 // should have the same pairs of Application Data.
426                 for(Conversation conv : listConv) {
427                     // Process only if it is a TLS packet
428                     if (conv.isTls()) {
429                         List<PcapPacketPair> tlsAppDataList = TcpConversationUtils.extractTlsAppDataPacketPairs(conv);
430                         for(PcapPacketPair pair: tlsAppDataList) {
431                             System.out.println(PrintUtils.toCsv(pair, dnsMap));
432                             pwOff.println(PrintUtils.toCsv(pair, dnsMap));
433                         }
434                     } else { // Non-TLS conversations
435                         List<PcapPacketPair> packetList = TcpConversationUtils.extractPacketPairs(conv);
436                         for (PcapPacketPair pair : packetList) {
437                             System.out.println(PrintUtils.toCsv(pair, dnsMap));
438                             pwOff.println(PrintUtils.toCsv(pair, dnsMap));
439                         }
440                     }
441                 }
442             }
443         }
444         pwOff.close();
445         */
446
447 //        // ================================================================================================
448 //        // <<< Some work-in-progress/explorative code that extracts a "representative" sequence >>>
449 //        //
450 //        // Currently need to know relevant hostname in advance :(
451 //        String hostname = "events.tplinkra.com";
452 ////        String hostname = "rfe-us-west-1.dch.dlink.com";
453 //        // Conversations with 'hostname' for ON events.
454 //        List<Conversation> onsForHostname = new ArrayList<>();
455 //        // Conversations with 'hostname' for OFF events.
456 //        List<Conversation> offsForHostname = new ArrayList<>();
457 //        // "Unwrap" sequence groupings in ons/offs maps.
458 //        ons.get(hostname).forEach((k,v) -> onsForHostname.addAll(v));
459 //        offs.get(hostname).forEach((k,v) -> offsForHostname.addAll(v));
460 //
461 //
462 //        Map<String, List<Conversation>> onsForHostnameGroupedByTlsAppDataSequence = TcpConversationUtils.groupConversationsByTlsApplicationDataPacketSequence(onsForHostname);
463 //
464 //
465 //        // Extract representative sequence for ON and OFF by providing the list of conversations with
466 //        // 'hostname' observed for each event type (the training data).
467 //        SequenceExtraction seqExtraction = new SequenceExtraction();
468 ////        ExtractedSequence extractedSequenceForOn = seqExtraction.extract(onsForHostname);
469 ////        ExtractedSequence extractedSequenceForOff = seqExtraction.extract(offsForHostname);
470 //
471 //        ExtractedSequence extractedSequenceForOn = seqExtraction.extractByTlsAppData(onsForHostname);
472 //        ExtractedSequence extractedSequenceForOff = seqExtraction.extractByTlsAppData(offsForHostname);
473 //
474 //        // Let's check how many ONs align with OFFs and vice versa (that is, how many times an event is incorrectly
475 //        // labeled).
476 //        int onsLabeledAsOff = 0;
477 //        Integer[] representativeOnSeq = TcpConversationUtils.getPacketLengthSequence(extractedSequenceForOn.getRepresentativeSequence());
478 //        Integer[] representativeOffSeq = TcpConversationUtils.getPacketLengthSequence(extractedSequenceForOff.getRepresentativeSequence());
479 //        SequenceAlignment<Integer> seqAlg = seqExtraction.getAlignmentAlgorithm();
480 //        for (Conversation c : onsForHostname) {
481 //            Integer[] onSeq = TcpConversationUtils.getPacketLengthSequence(c);
482 //            if (seqAlg.calculateAlignment(representativeOffSeq, onSeq) <= extractedSequenceForOff.getMaxAlignmentCost()) {
483 //                onsLabeledAsOff++;
484 //            }
485 //        }
486 //        int offsLabeledAsOn = 0;
487 //        for (Conversation c : offsForHostname) {
488 //            Integer[] offSeq = TcpConversationUtils.getPacketLengthSequence(c);
489 //            if (seqAlg.calculateAlignment(representativeOnSeq, offSeq) <= extractedSequenceForOn.getMaxAlignmentCost()) {
490 //                offsLabeledAsOn++;
491 //            }
492 //        }
493 //        System.out.println("");
494 //        // ================================================================================================
495 //
496 //
497 //        // -------------------------------------------------------------------------------------------------------------
498 //        // -------------------------------------------------------------------------------------------------------------
499     }
500
501 }
502
503
504 // TP-Link MAC 50:c7:bf:33:1f:09 and usually IP 192.168.1.159 (remember to verify per file)
505 // frame.len >= 556 && frame.len <= 558 && ip.addr == 192.168.1.159