pcapplusplus-sys 0.1.0

Compile PcapPlusPlus and make its library and header files available. See also https://github.com/seladb/PcapPlusPlus
Documentation
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
#define LOG_MODULE PacketLogModuleTelnetLayer

#include "TelnetLayer.h"
#include "Logger.h"

#include "GeneralUtils.h"
#include "SystemUtils.h"

#include <string.h>

namespace pcpp
{

bool TelnetLayer::isDataField(uint8_t *pos) const
{
	// "FF FF" means data
	return pos[0] != static_cast<int>(TelnetCommand::InterpretAsCommand) || pos[1] == static_cast<int>(TelnetCommand::InterpretAsCommand);
}

bool TelnetLayer::isCommandField(uint8_t *pos) const
{
	return !isDataField(pos);
}

size_t TelnetLayer::distanceToNextIAC(uint8_t *startPos, size_t maxLength)
{
	uint8_t *pos = nullptr;
	size_t addition = 0;
	size_t currentOffset = 0;
	do
	{
		// If it is second turn position should be adjusted to after second FF
		if (addition)
			addition += 2;

		pos = (uint8_t *)memchr(startPos + currentOffset + 1, static_cast<int>(TelnetCommand::InterpretAsCommand), maxLength - currentOffset);
		if (pos)
			addition += pos - (startPos + currentOffset);
		else
			addition += maxLength - currentOffset;
		currentOffset = currentOffset + addition;
		// "FF FF" means data continue
	} while (pos && (pos[1] == static_cast<int>(TelnetCommand::InterpretAsCommand)) && (currentOffset < maxLength));

	return addition;
}

size_t TelnetLayer::getFieldLen(uint8_t *startPos, size_t maxLength)
{
	// Check first byte is IAC
	if (startPos && (startPos[0] == static_cast<int>(TelnetCommand::InterpretAsCommand)) && (maxLength >= 2))
	{
		// If subnegotiation parse until next IAC
		if (startPos[1] == static_cast<int>(TelnetCommand::Subnegotiation))
			return distanceToNextIAC(startPos, maxLength);
		// Only WILL, WONT, DO, DONT have option. Ref http://pcmicro.com/netfoss/telnet.html
		else if (startPos[1] >= static_cast<int>(TelnetCommand::WillPerform) && startPos[1] <= static_cast<int>(TelnetCommand::DontPerform))
			return 3;
		return 2;
	}
	return distanceToNextIAC(startPos, maxLength);
}

uint8_t *TelnetLayer::getNextDataField(uint8_t *pos, size_t len)
{
	size_t offset = 0;
	while (offset < len)
	{
		// Move to next field
		size_t length = getFieldLen(pos, len - offset);
		pos += length;
		offset += length;

		if (isDataField(pos))
			return pos;
	}

	return nullptr;
}

uint8_t *TelnetLayer::getNextCommandField(uint8_t *pos, size_t len)
{
	size_t offset = 0;
	while (offset < len)
	{
		// Move to next field
		size_t length = getFieldLen(pos, len - offset);
		pos += length;
		offset += length;

		if (isCommandField(pos))
			return pos;
	}

	return nullptr;
}

int16_t TelnetLayer::getSubCommand(uint8_t *pos, size_t len)
{
	if (len < 3 || pos[1] < static_cast<int>(TelnetCommand::Subnegotiation))
		return static_cast<int>(TelnetOption::TelnetOptionNoOption);
	return pos[2];
}

uint8_t *TelnetLayer::getCommandData(uint8_t *pos, size_t &len)
{
	if (pos[1] == static_cast<int>(TelnetCommand::Subnegotiation) && len > 3)
	{
		len -= 3;
		return &pos[3];
	}
	len = 0;
	return nullptr;
}

std::string TelnetLayer::getDataAsString(bool removeEscapeCharacters)
{
	uint8_t *dataPos = nullptr;
	if (isDataField(m_Data))
		dataPos = m_Data;
	else
		dataPos = getNextDataField(m_Data, m_DataLen);

	if (!dataPos)
	{
		PCPP_LOG_DEBUG("Packet does not have a data field");
		return std::string();
	}

	// Convert to string
	if (removeEscapeCharacters)
	{
		std::stringstream ss;
		for (size_t idx = 0; idx < m_DataLen - (dataPos - m_Data) + 1; ++idx)
		{
			if (int(dataPos[idx]) < 127 && int(dataPos[idx]) > 31) // From SPACE to ~
				ss << dataPos[idx];
		}
		return ss.str();
	}
	return std::string((char *)m_Data, m_DataLen);
}

size_t TelnetLayer::getTotalNumberOfCommands()
{
	size_t ctr = 0;
	if (isCommandField(m_Data))
		++ctr;

	uint8_t *pos = m_Data;
	while (pos != nullptr)
	{
		size_t offset = pos - m_Data;
		pos = getNextCommandField(pos, m_DataLen - offset);
		if (pos)
			++ctr;
	}

	return ctr;
}

size_t TelnetLayer::getNumberOfCommands(TelnetCommand command)
{
	if (static_cast<int>(command) < 0)
		return 0;

	size_t ctr = 0;
	if (isCommandField(m_Data) && m_Data[1] == static_cast<int>(command))
		++ctr;

	uint8_t *pos = m_Data;
	while (pos != nullptr)
	{
		size_t offset = pos - m_Data;
		pos = getNextCommandField(pos, m_DataLen - offset);
		if (pos && pos[1] == static_cast<int>(command))
			++ctr;
	}

	return ctr;
}

TelnetLayer::TelnetCommand TelnetLayer::getFirstCommand()
{
	// If starts with command
	if (isCommandField(m_Data))
		return static_cast<TelnetCommand>(m_Data[1]);

	// Check is there any command
	uint8_t *pos = getNextCommandField(m_Data, m_DataLen);
	if (pos)
		return static_cast<TelnetCommand>(pos[1]);
	return TelnetCommand::TelnetCommandEndOfPacket;
}

TelnetLayer::TelnetCommand TelnetLayer::getNextCommand()
{
	if (lastPositionOffset == SIZE_MAX)
	{
		lastPositionOffset = 0;
		if (isCommandField(m_Data))
			return static_cast<TelnetLayer::TelnetCommand>(m_Data[1]);
	}

	uint8_t *pos = getNextCommandField(&m_Data[lastPositionOffset], m_DataLen - lastPositionOffset);
	if (pos)
	{
		lastPositionOffset = pos - m_Data;
		return static_cast<TelnetLayer::TelnetCommand>(pos[1]);
	}
	lastPositionOffset = SIZE_MAX;
	return TelnetCommand::TelnetCommandEndOfPacket;
}

TelnetLayer::TelnetOption TelnetLayer::getOption()
{
	if (lastPositionOffset < m_DataLen)
		return static_cast<TelnetOption>(getSubCommand(
			&m_Data[lastPositionOffset], getFieldLen(&m_Data[lastPositionOffset], m_DataLen - lastPositionOffset)));
	return TelnetOption::TelnetOptionNoOption;
}

TelnetLayer::TelnetOption TelnetLayer::getOption(TelnetCommand command)
{
	// Check input
	if (static_cast<int>(command) < 0)
	{
		PCPP_LOG_ERROR("Command type can't be negative");
		return TelnetOption::TelnetOptionNoOption;
	}

	if (isCommandField(m_Data) && m_Data[1] == static_cast<int>(command))
		return static_cast<TelnetOption>(getSubCommand(m_Data, getFieldLen(m_Data, m_DataLen)));

	uint8_t *pos = m_Data;
	while (pos != nullptr)
	{
		size_t offset = pos - m_Data;
		pos = getNextCommandField(pos, m_DataLen - offset);

		if (pos && pos[1] == static_cast<int>(command))
			return static_cast<TelnetOption>(getSubCommand(pos, getFieldLen(pos, m_DataLen - offset)));
	}

	PCPP_LOG_DEBUG("Can't find requested command");
	return TelnetOption::TelnetOptionNoOption;
}

uint8_t *TelnetLayer::getOptionData(size_t &length)
{
	if (lastPositionOffset < m_DataLen)
	{
		size_t lenBuffer = getFieldLen(&m_Data[lastPositionOffset], m_DataLen - lastPositionOffset);
		uint8_t *posBuffer = getCommandData(&m_Data[lastPositionOffset], lenBuffer);

		length = lenBuffer;
		return posBuffer;
	}
	return nullptr;
}

uint8_t *TelnetLayer::getOptionData(TelnetCommand command, size_t &length)
{
	// Check input
	if (static_cast<int>(command) < 0)
	{
		PCPP_LOG_ERROR("Command type can't be negative");
		length = 0;
		return nullptr;
	}

	if (isCommandField(m_Data) && m_Data[1] == static_cast<int>(command))
	{
		size_t lenBuffer = getFieldLen(m_Data, m_DataLen);
		uint8_t *posBuffer = getCommandData(m_Data, lenBuffer);

		length = lenBuffer;
		return posBuffer;
	}

	uint8_t *pos = m_Data;
	while (pos != nullptr)
	{
		size_t offset = pos - m_Data;
		pos = getNextCommandField(pos, m_DataLen - offset);

		if (pos && pos[1] == static_cast<int>(command))
		{
			size_t lenBuffer = getFieldLen(m_Data, m_DataLen);
			uint8_t *posBuffer = getCommandData(m_Data, lenBuffer);

			length = lenBuffer;
			return posBuffer;
		}
	}

	PCPP_LOG_DEBUG("Can't find requested command");
	length = 0;
	return nullptr;
}

std::string TelnetLayer::getTelnetCommandAsString(TelnetCommand val)
{
	switch (val)
	{
	case TelnetCommand::TelnetCommandEndOfPacket:
		return "Reached end of packet while parsing";
	case TelnetCommand::EndOfFile:
		return "End of File";
	case TelnetCommand::Suspend:
		return "Suspend current process";
	case TelnetCommand::Abort:
		return "Abort Process";
	case TelnetCommand::EndOfRecordCommand:
		return "End of Record";
	case TelnetCommand::SubnegotiationEnd:
		return "Subnegotiation End";
	case TelnetCommand::NoOperation:
		return "No Operation";
	case TelnetCommand::DataMark:
		return "Data Mark";
	case TelnetCommand::Break:
		return "Break";
	case TelnetCommand::InterruptProcess:
		return "Interrupt Process";
	case TelnetCommand::AbortOutput:
		return "Abort Output";
	case TelnetCommand::AreYouThere:
		return "Are You There";
	case TelnetCommand::EraseCharacter:
		return "Erase Character";
	case TelnetCommand::EraseLine:
		return "Erase Line";
	case TelnetCommand::GoAhead:
		return "Go Ahead";
	case TelnetCommand::Subnegotiation:
		return "Subnegotiation";
	case TelnetCommand::WillPerform:
		return "Will Perform";
	case TelnetCommand::WontPerform:
		return "Wont Perform";
	case TelnetCommand::DoPerform:
		return "Do Perform";
	case TelnetCommand::DontPerform:
		return "Dont Perform";
	case TelnetCommand::InterpretAsCommand:
		return "Interpret As Command";
	default:
		return "Unknown Command";
	}
}

std::string TelnetLayer::getTelnetOptionAsString(TelnetOption val)
{
	switch (val)
	{
	case TelnetOption::TelnetOptionNoOption:
		return "No option for this command";
	case TelnetOption::TransmitBinary:
		return "Binary Transmission";
	case TelnetOption::Echo:
		return "Echo";
	case TelnetOption::Reconnection:
		return "Reconnection";
	case TelnetOption::SuppressGoAhead:
		return "Suppress Go Ahead";
	case TelnetOption::ApproxMsgSizeNegotiation:
		return "Negotiate approximate message size";
	case TelnetOption::Status:
		return "Status";
	case TelnetOption::TimingMark:
		return "Timing Mark";
	case TelnetOption::RemoteControlledTransAndEcho:
		return "Remote Controlled Transmission and Echo";
	case TelnetOption::OutputLineWidth:
		return "Output Line Width";
	case TelnetOption::OutputPageSize:
		return "Output Page Size";
	case TelnetOption::OutputCarriageReturnDisposition:
		return "Negotiate About Output Carriage-Return Disposition";
	case TelnetOption::OutputHorizontalTabStops:
		return "Negotiate About Output Horizontal Tabstops";
	case TelnetOption::OutputHorizontalTabDisposition:
		return "Negotiate About Output Horizontal Tab Disposition";
	case TelnetOption::OutputFormfeedDisposition:
		return "Negotiate About Output Formfeed Disposition";
	case TelnetOption::OutputVerticalTabStops:
		return "Negotiate About Vertical Tabstops";
	case TelnetOption::OutputVerticalTabDisposition:
		return "Negotiate About Output Vertcial Tab Disposition";
	case TelnetOption::OutputLinefeedDisposition:
		return "Negotiate About Output Linefeed Disposition";
	case TelnetOption::ExtendedASCII:
		return "Extended ASCII";
	case TelnetOption::Logout:
		return "Logout";
	case TelnetOption::ByteMacro:
		return "Byte Macro";
	case TelnetOption::DataEntryTerminal:
		return "Data Entry Terminal";
	case TelnetOption::SUPDUP:
		return "SUPDUP";
	case TelnetOption::SUPDUPOutput:
		return "SUPDUP Output";
	case TelnetOption::SendLocation:
		return "Send Location";
	case TelnetOption::TerminalType:
		return "Terminal Type";
	case TelnetOption::EndOfRecordOption:
		return "End Of Record";
	case TelnetOption::TACACSUserIdentification:
		return "TACACS User Identification";
	case TelnetOption::OutputMarking:
		return "Output Marking";
	case TelnetOption::TerminalLocationNumber:
		return "Terminal Location Number";
	case TelnetOption::Telnet3270Regime:
		return "Telnet 3270 Regime";
	case TelnetOption::X3Pad:
		return "X3 Pad";
	case TelnetOption::NegotiateAboutWindowSize:
		return "Negotiate About Window Size";
	case TelnetOption::TerminalSpeed:
		return "Terminal Speed";
	case TelnetOption::RemoteFlowControl:
		return "Remote Flow Control";
	case TelnetOption::Linemode:
		return "Line mode";
	case TelnetOption::XDisplayLocation:
		return "X Display Location";
	case TelnetOption::EnvironmentOption:
		return "Environment Option";
	case TelnetOption::AuthenticationOption:
		return "Authentication Option";
	case TelnetOption::EncryptionOption:
		return "Encryption Option";
	case TelnetOption::NewEnvironmentOption:
		return "New Environment Option";
	case TelnetOption::TN3270E:
		return "TN3270E";
	case TelnetOption::XAuth:
		return "X Server Authentication";
	case TelnetOption::Charset:
		return "Charset";
	case TelnetOption::TelnetRemoteSerialPort:
		return "Telnet Remote Serial Port";
	case TelnetOption::ComPortControlOption:
		return "Com Port Control Option";
	case TelnetOption::TelnetSuppressLocalEcho:
		return "Telnet Suppress Local Echo";
	case TelnetOption::TelnetStartTLS:
		return "Telnet Start TLS";
	case TelnetOption::Kermit:
		return "Kermit";
	case TelnetOption::SendURL:
		return "Send URL";
	case TelnetOption::ForwardX:
		return "Forward X Server";
	case TelnetOption::TelOptPragmaLogon:
		return "Telnet Option Pragma Logon";
	case TelnetOption::TelOptSSPILogon:
		return "Telnet Option SSPI Logon";
	case TelnetOption::TelOptPragmaHeartbeat:
		return "Telnet Option Pragma Heartbeat";
	case TelnetOption::ExtendedOptions:
		return "Extended option list";
	default:
		return "Unknown Option";
	}
}

std::string TelnetLayer::toString() const
{
	if (isDataField(m_Data))
		return "Telnet Data";
	return "Telnet Control";
}

} // namespace pcpp