This repository was archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathUtil.cs
409 lines (349 loc) · 15.1 KB
/
Util.cs
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
using Microsoft.Azure.WebJobs;
using Microsoft.Extensions.Logging;
using Microsoft.Azure.Storage.Blob;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Formatting;
namespace nsgFunc
{
public partial class Util
{
const int MAXTRANSMISSIONSIZE = 512 * 1024;
public static string GetEnvironmentVariable(string name)
{
var result = System.Environment.GetEnvironmentVariable(name, System.EnvironmentVariableTarget.Process);
if (result == null)
return "";
return result;
}
public static async Task<int> SendMessagesDownstreamAsync(string nsgMessagesString, ExecutionContext executionContext, Binder cefLogBinder, ILogger log)
{
//
// nsgMessagesString looks like this:
//
// ,{...} <-- note leading comma
// ,{...}
// ...
// ,{...}
//
// - OR -
//
// {...} <-- note lack of leading comma
// ,{...}
// ...
// ,{...}
//
string outputBinding = Util.GetEnvironmentVariable("outputBinding");
if (outputBinding.Length == 0)
{
log.LogError("Value for outputBinding is required. Permitted values are: 'arcsight', 'splunk', 'eventhub'.");
return 0;
}
// skip past the leading comma
//string trimmedMessages = nsgMessagesString.Trim();
//int curlyBrace = trimmedMessages.IndexOf('{');
//string newClientContent = "{\"records\":[";
//newClientContent += trimmedMessages.Substring(curlyBrace);
//newClientContent += "]}";
StringBuilder sb = StringBuilderPool.Allocate();
string newClientContent = "";
try
{
sb.Append("{\"records\":[").Append(nsgMessagesString).Append("]}");
newClientContent = sb.ToString();
}
finally
{
StringBuilderPool.Free(sb);
}
//
// newClientContent looks like this:
// {
// "records":[
// {...},
// {...}
// ...
// ]
// }
//
string logIncomingJSON = Util.GetEnvironmentVariable("logIncomingJSON");
Boolean flag;
if (Boolean.TryParse(logIncomingJSON, out flag))
{
if (flag)
{
Util.logIncomingRecord(newClientContent, cefLogBinder, log).Wait();
}
}
int bytesSent = 0;
switch (outputBinding)
{
//case "logstash":
// await Util.obLogstash(newClientContent, log);
// break;
case "arcsight":
bytesSent = await Util.obArcsightNew(newClientContent, executionContext, cefLogBinder, log);
break;
case "splunk":
bytesSent = await Util.obSplunk(newClientContent, log);
break;
case "eventhub":
bytesSent = await Util.obEventHub(newClientContent, log);
break;
}
return bytesSent;
}
public class SingleHttpClientInstance
{
private static readonly HttpClient HttpClient;
static SingleHttpClientInstance()
{
HttpClient = new HttpClient();
HttpClient.Timeout = new TimeSpan(0, 1, 0);
}
public static async Task<HttpResponseMessage> SendToLogstash(HttpRequestMessage req, ILogger log)
{
HttpResponseMessage response = null;
var httpClient = new HttpClient();
httpClient.Timeout = TimeSpan.FromMinutes(5);
try
{
response = await httpClient.SendAsync(req);
}
catch (AggregateException ex)
{
log.LogError("Got AggregateException.");
throw ex;
}
catch (TaskCanceledException ex)
{
log.LogError("Got TaskCanceledException.");
throw ex;
}
catch (Exception ex)
{
log.LogError("Got other exception.");
throw ex;
}
return response;
}
public static async Task<HttpResponseMessage> SendToSplunk(HttpRequestMessage req)
{
HttpResponseMessage response = await HttpClient.SendAsync(req);
return response;
}
}
static IEnumerable<List<DenormalizedRecord>> denormalizedRecords(string newClientContent, Binder errorRecordBinder, ILogger log)
{
var outgoingList = ListPool<DenormalizedRecord>.Allocate();
outgoingList.Capacity = 450;
var sizeOfListItems = 0;
try
{
NSGFlowLogRecords logs = JsonConvert.DeserializeObject<NSGFlowLogRecords>(newClientContent);
foreach (var record in logs.records)
{
float version = record.properties.Version;
foreach (var outerFlow in record.properties.flows)
{
foreach (var innerFlow in outerFlow.flows)
{
foreach (var flowTuple in innerFlow.flowTuples)
{
var tuple = new NSGFlowLogTuple(flowTuple, version);
var denormalizedRecord = new DenormalizedRecord(
record.properties.Version,
record.time,
record.category,
record.operationName,
record.resourceId,
outerFlow.rule,
innerFlow.mac,
tuple);
var sizeOfDenormalizedRecord = denormalizedRecord.GetSizeOfJSONObject();
//for Event hub binding fork -- start
// Event hub basic message size is 256KB and the 'if' statement below ensures that list does not exceed size this size for Eventhub
string outputBinding = Util.GetEnvironmentVariable("outputBinding");
if (outputBinding == "eventhub")
{
if (sizeOfListItems > 120) // this will chunk below 256KB : this is ideal sample message size. Feel free to go maximum till 150 : smaller values will create lot of outbound connections.
{
yield return outgoingList;
outgoingList.Clear();
sizeOfListItems = 0;
}
outgoingList.Add(denormalizedRecord);
sizeOfListItems += 1;
}
//for Event hub binding fork -- end
//other output bindings
else if (sizeOfListItems + sizeOfDenormalizedRecord > MAXTRANSMISSIONSIZE + 20)
{
yield return outgoingList;
outgoingList.Clear();
sizeOfListItems = 0;
}
outgoingList.Add(denormalizedRecord);
sizeOfListItems += sizeOfDenormalizedRecord;
}
}
}
}
if (sizeOfListItems > 0)
{
yield return outgoingList;
}
}
finally
{
ListPool<DenormalizedRecord>.Free(outgoingList);
}
}
/// <summary>
/// input newClientContent is a string representation of a json array of records, each of which is a nsg flow log hierarchy
/// output is a List of SplunkEventMessage, up to a max # of bytes or 450 elements
/// </summary>
/// <param name="newClientContent"></param>
/// <param name="errorRecordBinder"></param>
/// <param name="log"></param>
/// <returns></returns>
static IEnumerable<List<SplunkEventMessage>> denormalizedSplunkEvents(string newClientContent, Binder errorRecordBinder, ILogger log)
{
var outgoingSplunkList = ListPool<SplunkEventMessage>.Allocate();
outgoingSplunkList.Capacity = 450;
var sizeOfListItems = 0;
try
{
NSGFlowLogRecords logs = JsonConvert.DeserializeObject<NSGFlowLogRecords>(newClientContent);
foreach (var record in logs.records)
{
float version = record.properties.Version;
foreach (var outerFlow in record.properties.flows)
{
foreach (var innerFlow in outerFlow.flows)
{
foreach (var flowTuple in innerFlow.flowTuples)
{
var tuple = new NSGFlowLogTuple(flowTuple, version);
var denormalizedRecord = new DenormalizedRecord(
record.properties.Version,
record.time,
record.category,
record.operationName,
record.resourceId,
outerFlow.rule,
innerFlow.mac,
tuple);
var splunkEventMessage = new SplunkEventMessage(denormalizedRecord);
var sizeOfObject = splunkEventMessage.GetSizeOfObject();
if (sizeOfListItems + sizeOfObject > MAXTRANSMISSIONSIZE + 20 || outgoingSplunkList.Count == 450)
{
yield return outgoingSplunkList;
outgoingSplunkList.Clear();
sizeOfListItems = 0;
}
outgoingSplunkList.Add(splunkEventMessage);
sizeOfListItems += sizeOfObject;
}
}
}
}
if (sizeOfListItems > 0)
{
yield return outgoingSplunkList;
}
}
finally
{
ListPool<SplunkEventMessage>.Free(outgoingSplunkList);
}
}
public static async Task logIncomingRecord(string record, Binder binder, ILogger log)
{
if (binder == null) { return; }
Byte[] transmission = new Byte[] { };
try
{
transmission = AppendToTransmission(transmission, record);
Guid guid = Guid.NewGuid();
var attributes = new Attribute[]
{
new BlobAttribute(String.Format("incomingrecord/{0}", guid)),
new StorageAccountAttribute("cefLogAccount")
};
CloudBlockBlob blob = await binder.BindAsync<CloudBlockBlob>(attributes);
await blob.UploadFromByteArrayAsync(transmission, 0, transmission.Length);
transmission = new Byte[] { };
}
catch (Exception ex)
{
log.LogError($"Exception logging record: {ex.Message}");
}
}
static async Task logErrorRecord(NSGFlowLogRecord errorRecord, Binder errorRecordBinder, ILogger log)
{
if (errorRecordBinder == null) { return; }
Byte[] transmission = new Byte[] { };
try
{
transmission = Util.AppendToTransmission(transmission, errorRecord.ToString());
Guid guid = Guid.NewGuid();
var attributes = new Attribute[]
{
new BlobAttribute(String.Format("errorrecord/{0}", guid)),
new StorageAccountAttribute("cefLogAccount")
};
CloudBlockBlob blob = await errorRecordBinder.BindAsync<CloudBlockBlob>(attributes);
await blob.UploadFromByteArrayAsync(transmission, 0, transmission.Length);
transmission = new Byte[] { };
}
catch (Exception ex)
{
log.LogError($"Exception logging record: {ex.Message}");
}
}
public static Byte[] AppendToTransmission(Byte[] existingMessages, string appendMessage)
{
Byte[] appendMessageBytes = Encoding.ASCII.GetBytes(appendMessage);
Byte[] crlf = new Byte[] { 0x0D, 0x0A };
Byte[] newMessages = new Byte[existingMessages.Length + appendMessage.Length + 2];
existingMessages.CopyTo(newMessages, 0);
appendMessageBytes.CopyTo(newMessages, existingMessages.Length);
crlf.CopyTo(newMessages, existingMessages.Length + appendMessageBytes.Length);
return newMessages;
}
// typical use cases
// , key: value ==> , "key": "value" --> if there's a comma, there's a colon
// key: value ==> "key": "value" --> if there's no comma, there may be a colon
static string eqs(string inString)
{
// eqs = Escape Quote String
return "\"" + inString + "\"";
}
static string eqs(bool prependComma, string inString, bool appendColon)
{
var outString = String.Concat((prependComma ? "," : ""), eqs(inString), (appendColon ? ":" : ""));
return outString;
}
static string eqs(string inString, bool appendColon)
{
return eqs(false, inString, appendColon);
}
static string eqs(bool prependComma, string inString)
{
return eqs(prependComma, inString, true);
}
static string kvp(string key, string value)
{
return eqs(true, key) + eqs(value);
}
static string kvp(bool firstOne, string key, string value)
{
return eqs(key, true) + eqs(value);
}
}
}