-
Notifications
You must be signed in to change notification settings - Fork 4
/
tcpData.da.js
283 lines (233 loc) · 6.8 KB
/
tcpData.da.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
const _ = require('lodash')
const { standardize } = require('mac-address-util')
const { TcpDataModel } = require('./tcpData.model')
const { TcpAggregatedDataModel } = require('./tcpAggregatedData.model')
const { DeviceModel } = require('../device/device.model')
const { getStartOfToday, getNow } = require('../../util/time')
module.exports = {
getRecentDataWithinNSeconds,
getTotalCountFromStartOfTheDay,
getTotalSizeFromStartOfTheDay,
getTotalCountOfRecentDataWithinNSeconds,
getTotalSizeOfRecentDataWithinNSeconds,
getAggregateMacAddressSizeDataByTime,
getAggregateMacAddressSizeDataWithinNSeconds,
getAggregateMacAddressSizeDataFromStartOfTheDay,
}
function buildSizeMacAddressData(macPacketList) {
const macSizeMap = {}
macPacketList.forEach((macPacket) => {
const { size, _id } = macPacket
const { src_mac, dst_mac } = _id
if (!_.isNil(src_mac)) {
if (src_mac in macSizeMap) {
macSizeMap[src_mac] += size
} else {
macSizeMap[src_mac] = size
}
}
if (!_.isNil(dst_mac)) {
if (dst_mac in macSizeMap) {
macSizeMap[dst_mac] += size
} else {
macSizeMap[dst_mac] = size
}
}
})
return macSizeMap
}
function convertDeviceListToMap(devices) {
const deviceMap = {}
_.forEach(devices, (device) => {
const standardizedMacAddress = standardize(device['macAddress'])
deviceMap[standardizedMacAddress] = device['name']
})
return deviceMap
}
function mapMacAddressToDeviceName(macSizeMap, deviceMap) {
const results = []
_.forEach(macSizeMap, function(size, mac) {
const standardizedMacAddress = standardize(mac)
const data = {
size,
macAddress: standardizedMacAddress,
}
data['name'] = ''
if(standardizedMacAddress in deviceMap) {
data['name'] = deviceMap[standardizedMacAddress]
}
results.push(data)
})
return results
}
async function getRecentDataWithinNSeconds(pastMS) {
if (_.isNil(pastMS)) {
throw Error('n is undefined')
}
const endMS = Date.now()
const startMS = endMS - pastMS
return getAggregateDataByTime(startMS, endMS)
}
async function getAggregateMacAddressSizeDataWithinNSeconds(pastMS) {
if (_.isNil(pastMS)) {
throw Error('n is undefined')
}
const endMS = Date.now()
const startMS = endMS - pastMS
const size = await getAggregateMacAddressSizeDataByTime(startMS, endMS)
return {
size,
startMS,
endMS,
}
}
async function getTotalSizeOfRecentDataWithinNSeconds(pastMS) {
if (_.isNil(pastMS)) {
throw Error('n is undefined')
}
const endMS = Date.now()
const startMS = endMS - pastMS
const size = await getAggregateSizeDataByTime(startMS, endMS)
return {
size,
startMS,
endMS,
}
}
async function getAggregateMacAddressSizeDataFromStartOfTheDay() {
const endMS = Date.now()
const startMS = getStartOfToday()
const size = await getAggregateMacAddressSizeDataByTime(startMS, endMS)
return {
size,
startMS,
endMS,
}
}
async function getTotalCountOfRecentDataWithinNSeconds(pastMS) {
if (_.isNil(pastMS)) {
throw Error('n is undefined')
}
const endMS = Date.now()
const startMS = endMS - pastMS
const count = await getAggregateCountDataByTime(startMS, endMS)
return {
count,
startMS,
endMS,
}
}
async function getTotalCountFromStartOfTheDay() {
const startMS = getStartOfToday()
const endMS = getNow()
const count = await getAggregateCountDataByTime(startMS, endMS)
return {
count,
startMS,
endMS,
}
}
async function getTotalSizeFromStartOfTheDay() {
const startMS = getStartOfToday()
const endMS = getNow()
const size = await getAggregateSizeDataByTime(startMS, endMS)
return {
size,
startMS,
endMS,
}
}
async function getAggregateCountDataByTime(startMS, endMS) {
const resultsFromTcpData = await TcpDataModel.aggregate([
{
$match: {
timestamp: { $gte: startMS, $lte: endMS },
},
},
{ $group: { _id: null, count: { $sum: 1 } } },
])
const resultsFromAggregatedData = await TcpAggregatedDataModel.aggregate([
{
$match: {
startMS: { $gte: startMS },
endMS: { $lte: endMS},
},
},
{ $group: { _id: null, count: { $sum: '$packetCount' } } },
])
let count = 0
if (resultsFromTcpData.length > 0) {
// console.log('resultsFromTcpData: ' + resultsFromTcpData[0].count)
count += resultsFromTcpData[0].count
}
if (resultsFromAggregatedData.length > 0) {
// console.log('resultsFromAggregatedData: ' + resultsFromAggregatedData[0].count)
count += resultsFromAggregatedData[0].count
}
return count
}
async function getAggregateSizeDataByTime(startMS, endMS) {
const resultsFromTcpData = await TcpDataModel.aggregate([
{
$match: {
timestamp: { $gte: startMS, $lte: endMS },
},
},
{ $group: { _id: null, size: { $sum: '$packet_size' } } },
])
const resultsFromAggregatedData = await TcpAggregatedDataModel.aggregate([
{
$match: {
startMS: { $gte: startMS },
endMS: { $lte: endMS},
},
},
{ $group: { _id: null, size: { $sum: '$totalPacketSize' } } },
])
let size = 0
if (resultsFromTcpData.length > 0) {
// console.log('resultsFromTcpData: ' + resultsFromTcpData[0].size)
size += resultsFromTcpData[0].size
}
if (resultsFromAggregatedData.length > 0) {
// console.log('resultsFromAggregatedData: ' + resultsFromAggregatedData[0].size)
size += resultsFromAggregatedData[0].size
}
return size
}
async function getAggregateMacAddressSizeDataByTime(startMS, endMS) {
const tcpDataPromise = TcpDataModel.aggregate([
{
$match: {
timestamp: { $gte: startMS, $lte: endMS },
},
},
{ $group: { _id: { src_mac: '$src_mac', dst_mac: '$dst_mac' }, size: { $sum: '$packet_size' } } },
])
const aggregateDataPromise = TcpAggregatedDataModel.aggregate([
{
$match: {
startMS: { $gte: startMS },
endMS: { $lte: endMS},
},
},
{ $group: { _id: { src_mac: '$src_mac', dst_mac: '$dst_mac' }, size: { $sum: '$totalPacketSize' } } },
])
const devicesDataPromise = DeviceModel.find()
// parallel promises
const values = await Promise.all([tcpDataPromise, aggregateDataPromise, devicesDataPromise])
const resultsFromTcpData = values[0]
const resultsFromAggregatedData = values[1]
const devices = values[2]
const deviceMap = convertDeviceListToMap(devices)
const combinedArray = resultsFromTcpData.concat(resultsFromAggregatedData)
const resultMap = buildSizeMacAddressData(combinedArray)
const results = mapMacAddressToDeviceName(resultMap, deviceMap)
return results
}
// getAggregateMacAddressSizeDataByTime(Date.now() - 1000000, Date.now())
async function getAggregateDataByTime(startMS, endMS) {
return TcpDataModel.find({
timestamp: { $gte: startMS, $lte: endMS },
})
}