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
|
#include <exception>
#include <qfiledialog.h>
#include <QMouseEvent>
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, tableContextMenu()
, myHexEdit()
, ui(new Ui::MainWindow)
, statusbarMessage()
{
if (!ui)
throw std::runtime_error("UI - MainWindow: not enough memory available");
ui->setupUi(this);
ui->gridLayout->addWidget(&myHexEdit.editor);
ui->tableWidget->setContextMenuPolicy(Qt::CustomContextMenu);
ui->tableWidget->setMouseTracking(true);
qApp->installEventFilter(this);
mouse.x = -1;
mouse.y = -1;
keyboard.backspace = false;
myHexEdit.bytewindow = new ByteWindow(parent);
if (!myHexEdit.bytewindow)
throw std::runtime_error("UI - ByteWindow: not enough memory available");
const auto& enableTableButtons = [](MainWindow *mainwindow, bool enable) {
mainwindow->tableContextMenu.randomize.setEnabled(enable);
};
const auto& enableMenuButtons = [](MainWindow *mainwindow, bool enable) {
mainwindow->ui->actionSave->setEnabled(enable);
mainwindow->ui->actionSave_Selection->setEnabled(enable);
};
const auto& enableHexEditButtons = [](MainWindow *mainwindow, bool enable) {
mainwindow->myHexEdit.prependBytes.setEnabled(enable);
mainwindow->myHexEdit.appendBytes.setEnabled(enable);
mainwindow->myHexEdit.deleteBytes.setEnabled(enable);
mainwindow->myHexEdit.deleteSelection.setEnabled(enable);
};
enableTableButtons(this, false);
enableMenuButtons(this, false);
enableHexEditButtons(this, false);
tableContextMenu.randomize.setText("Randomize");
tableContextMenu.menu.addAction(&tableContextMenu.randomize);
myHexEdit.editor.setContextMenuPolicy(Qt::CustomContextMenu);
myHexEdit.prependBytes.setText("Prepend byte(s)..");
myHexEdit.appendBytes.setText("Append byte(s)..");
myHexEdit.deleteBytes.setText("Delete byte(s)..");
myHexEdit.deleteSelection.setText("Delete Selection");
myHexEdit.contextMenu.addAction(&myHexEdit.prependBytes);
myHexEdit.contextMenu.addAction(&myHexEdit.appendBytes);
myHexEdit.contextMenu.addAction(&myHexEdit.deleteBytes);
myHexEdit.contextMenu.addAction(&myHexEdit.deleteSelection);
connect(&tableContextMenu.randomize, &QAction::triggered, this, [this](bool checked __attribute__((unused))){
ui->tableWidget->randomizeLayerItem(ppp);
const auto &rawPacket = ppp->getRawPacket(ui->tableWidget->currentRow());
myHexEdit.editor.setData(QByteArray::fromRawData(reinterpret_cast<const char *>(rawPacket.getRawData()), rawPacket.getRawDataLen()));
});
connect(ui->tableWidget, &QTableWidget::itemChanged, this, [this](QTableWidgetItem *item) {
ui->tableWidget->setLayerItem(item, ppp, isProcessing);
if (!isProcessing) {
const auto &rawPacket = ppp->getRawPacket(item->row());
myHexEdit.editor.setData(QByteArray::fromRawData(reinterpret_cast<const char *>(rawPacket.getRawData()), rawPacket.getRawDataLen()));
}
});
connect(ui->tableWidget, &QTableWidget::customContextMenuRequested, this, [this, enableTableButtons](const QPoint& pos){
const auto & globalPos = ui->tableWidget->viewport()->mapToGlobal(pos);
const auto & col = ui->tableWidget->currentColumn() + 1;
const auto & table = ui->tableWidget;
if (ppp
&& (table->isEthernetSrcColumn(col) || table->isEthernetDstColumn(col)
|| table->isIpSrcColumn(col) || table->isIpDstColumn(col)
|| table->isPortSrcColumn(col) || table->isPortDstColumn(col)))
enableTableButtons(this, true);
else
enableTableButtons(this, false);
tableContextMenu.menu.popup(globalPos);
});
connect(myHexEdit.bytewindow, &QDialog::finished, this, [&](int result) {
if (result == 0)
return;
const auto option = myHexEdit.bytewindow->getOption();
const auto offset = myHexEdit.bytewindow->getOffset();
const auto size = myHexEdit.bytewindow->getSize();
const auto rawPacket = currentSelectedPacket();
if (!rawPacket)
return;
switch (option) {
case ByteWindowOption::BWO_UNKNOWN:
throw std::runtime_error("Unknown byte window option");
case ByteWindowOption::BWO_INSERT: {
uint8_t *new_bytes = new uint8_t[size];
if (!new_bytes)
break;
memset(new_bytes, 0, size);
rawPacket->reallocateData(rawPacket->getRawDataLen() + size);
rawPacket->insertData(offset, new_bytes, size);
myHexEdit.editor.setData(QByteArray::fromRawData(reinterpret_cast<const char *>(rawPacket->getRawData()), rawPacket->getRawDataLen()));
delete[] new_bytes;
break;
}
case ByteWindowOption::BWO_DELETE:
rawPacket->removeData(offset, size);
myHexEdit.editor.setData(QByteArray::fromRawData(reinterpret_cast<const char *>(rawPacket->getRawData()), rawPacket->getRawDataLen()));
break;
}
myHexEdit.editor.setCursorPosition(offset * 2);
});
connect(&myHexEdit.editor, &QAbstractScrollArea::customContextMenuRequested, this, [&](const QPoint& pos){
myHexEdit.deleteSelection.setEnabled(myHexEdit.editor.selectedData().size() != 0);
auto globalPos = myHexEdit.editor.mapToGlobal(pos);
auto selectedItem = myHexEdit.contextMenu.exec(globalPos);
const auto cursorPos = myHexEdit.editor.cursorPosition() / 2;
const auto& selectionBegin = myHexEdit.editor.getSelectionBegin();
const auto& selectedLength = myHexEdit.editor.getSelectionEnd() - selectionBegin;
const auto& showByteWindow = [this, selectedLength](const ByteWindowOption& opt, int offset) {
myHexEdit.bytewindow->set(opt, offset, selectedLength > 0 ? selectedLength : 1);
myHexEdit.bytewindow->show();
};
if (selectedItem == &myHexEdit.prependBytes) {
showByteWindow(ByteWindowOption::BWO_INSERT, cursorPos);
} else if (selectedItem == &myHexEdit.appendBytes) {
showByteWindow(ByteWindowOption::BWO_INSERT, cursorPos + 1);
} else if (selectedItem == &myHexEdit.deleteBytes) {
showByteWindow(ByteWindowOption::BWO_DELETE, cursorPos);
} else if (selectedItem == &myHexEdit.deleteSelection) {
const auto rawPacket = currentSelectedPacket();
if (!rawPacket)
return;
if (selectedLength == rawPacket->getRawDataLen())
return;
rawPacket->removeData(myHexEdit.editor.getSelectionBegin(), selectedLength);
myHexEdit.editor.setData(QByteArray::fromRawData(reinterpret_cast<const char *>(rawPacket->getRawData()), rawPacket->getRawDataLen()));
myHexEdit.editor.setCursorPosition(selectionBegin * 2);
} else if (selectedItem) {
throw std::runtime_error("Unknown context menu " + selectedItem->text().toStdString());
}
});
connect(ui->actionOpen, &QAction::triggered, this, [this, enableTableButtons, enableMenuButtons, enableHexEditButtons](bool){
QString fileName = QFileDialog::getOpenFileName(this, tr("Open PCAP File"), "", tr("PCAP Files (*.pcap);;All Files (*.*)"));
if (fileName.length() > 0) {
ui->lineEdit->clear();
ui->tableWidget->clearSelection();
ui->tableWidget->clearContents();
ui->tableWidget->setRowCount(0);
myHexEdit.editor.setData(QByteArray::fromRawData(nullptr, 0));
enableTableButtons(this, true);
enableMenuButtons(this, true);
enableHexEditButtons(this, false);
ui->actionSave_Selection->setEnabled(false);
if (ppp) {
delete ppp;
ppp = nullptr;
}
ppp = new PcapPlusPlus(fileName.toStdString());
if (ppp) emit processPcap();
}
});
connect(ui->lineEdit, &QLineEdit::returnPressed, this, [&](){
if (ppp) {
if (!ppp->setFilter(ui->lineEdit->text()))
ui->lineEdit->setStyleSheet("QLineEdit { background: rgb(255, 0, 0); }");
else {
ui->lineEdit->setStyleSheet("QLineEdit { background: rgb(255, 255, 255); }");
ppp->closePcap();
if (!ppp->openPcap())
throw std::runtime_error("Reopen PCAP File to apply a BPF failed.");
if (!ppp->setFilter(ui->lineEdit->text()))
throw std::runtime_error("Could not re-apply a previously set filter.");
ui->tableWidget->clearContents();
ui->tableWidget->setRowCount(0);
emit processPcap();
}
}
});
connect(ui->actionSave, &QAction::triggered, this, [&](bool){
if (!ppp)
return;
QString selectedFilter;
QString fileName = QFileDialog::getSaveFileName(this, tr("Save PCAP File"), "", tr("PCAP Files (*.pcap);;All Files (*.*)"), &selectedFilter);
if (fileName.length() > 0) {
pcpp::PcapFileWriterDevice pcapWriter(fileName.toStdString(), ppp->getLinkLayer());
if (!pcapWriter.open())
throw std::runtime_error("Could not open file " + fileName.toStdString() + " for writing.");
{
for (auto rawPacket = ppp->rawPacketsBegin(); rawPacket < ppp->rawPacketsEnd(); rawPacket++) {
pcapWriter.writePacket(*rawPacket);
}
pcapWriter.flush();
pcapWriter.close();
}
}
});
connect(ui->actionSave_Selection, &QAction::triggered, this, [&](bool){
if (!ppp)
return;
QString selectedFilter;
QFileDialog saveDialog;
saveDialog.setDefaultSuffix("pcap");
QString fileName = saveDialog.getSaveFileName(this, tr("Save PCAP File"), "", tr("PCAP Files (*.pcap);;All Files (*.*)"), &selectedFilter);
if (fileName.length() > 0) {
pcpp::PcapFileWriterDevice pcapWriter(fileName.toStdString(), ppp->getLinkLayer());
if (!pcapWriter.open())
throw std::runtime_error("Could not open file " + fileName.toStdString() + " for writing.");
{
QList<QTableWidgetSelectionRange> selection(ui->tableWidget->selectedRanges());
std::sort(selection.begin(), selection.end(), [](const QTableWidgetSelectionRange & a, const QTableWidgetSelectionRange & b){
return a.topRow() < b.topRow();
});
for (const auto & selected : selection) {
pcapWriter.writePacket(ppp->getRawPacket(selected.topRow()));
}
pcapWriter.flush();
pcapWriter.close();
}
}
});
connect(this, &MainWindow::processPcap, this, [&](){
pcpp::Packet packet;
if (!ppp) throw std::runtime_error("PcapPlusPlus was not initialized.");
isProcessing = true;
const QDateTime startTime = QDateTime::currentDateTime();
while (ppp->processPacket(packet)) {
if (isAboutToClose)
break;
emit onPacketAvailable();
const QDateTime currentTime = QDateTime::currentDateTime();
if (startTime.msecsTo(currentTime) % 100 == 0)
qApp->processEvents();
}
ui->tableWidget->clearSelection();
isProcessing = false;
pcpp::PcapFileReaderDevice::PcapStats stats;
if (ppp->getPcapStatistics(stats))
updateStatusBarMessage("PCAP loaded. Packets: " + QString::fromStdString(std::to_string(stats.packetsRecv))
+ ", Dropped: " + QString::fromStdString(std::to_string(stats.packetsDrop)));
else
updateStatusBarMessage("No PCAP statistics available.");
});
connect(this, &MainWindow::onPacketAvailable, this, [&]() {
emit ui->tableWidget->addRow(ppp);
});
connect(ui->tableWidget, &QTableWidget::currentCellChanged, this, [&](int currentRow, int currentColumn, int previousRow, int previousColumn) {
if (!isProcessing && currentRow >= 0) {
const auto &rawPacket = ppp->getRawPacket(currentRow);
myHexEdit.editor.setData(QByteArray::fromRawData(reinterpret_cast<const char *>(rawPacket.getRawData()), rawPacket.getRawDataLen()));
}
});
connect(ui->tableWidget, &QTableWidget::itemSelectionChanged, this, [this, enableHexEditButtons]() {
enableHexEditButtons(this, ui->tableWidget->selectedItems().size() > 0);
ui->actionSave_Selection->setEnabled(ui->tableWidget->selectedItems().size() > 0);
if (ui->tableWidget->selectedItems().size() == 0 && myHexEdit.editor.data().size() > 0)
myHexEdit.editor.setData(QByteArray());
});
connect(&myHexEdit.editor, &QHexEdit::dataChanged, this, [&] {
const auto rawPacket = currentSelectedPacket();
if (!rawPacket)
return;
const auto& cursorPos = myHexEdit.editor.cursorPosition() / 2;
auto cursorData = myHexEdit.editor.dataAt(cursorPos, 1);
if (!keyboard.backspace && myHexEdit.editor.cursorPosition() % 2 != 0 && myHexEdit.editor.cursorPosition() / 2 == myHexEdit.editor.data().size() - 1) {
const uint8_t new_byte = 0x00;
rawPacket->reallocateData(rawPacket->getRawDataLen() + 1);
rawPacket->insertData(rawPacket->getRawDataLen(), &new_byte, sizeof(new_byte));
myHexEdit.editor.setData(QByteArray::fromRawData(reinterpret_cast<const char *>(rawPacket->getRawData()), rawPacket->getRawDataLen()));
myHexEdit.editor.setCursorPosition(cursorPos * 2 + 1);
}
rawPacket->removeData(cursorPos, 1);
rawPacket->insertData(cursorPos, reinterpret_cast<const uint8_t *>(cursorData.data()), cursorData.size());
const auto& row = currentSelectedRow();
ppp->fixupHeaders(row);
});
}
MainWindow::~MainWindow()
{
delete ui;
ui = nullptr;
delete myHexEdit.bytewindow;
myHexEdit.bytewindow = nullptr;
delete ppp;
ppp = nullptr;
}
pcpp::RawPacket* MainWindow::currentSelectedPacket()
{
const auto &selected = ui->tableWidget->selectedItems();
if (!ppp || selected.empty())
return nullptr;
return &ppp->getRawPacket(selected.last()->row());
}
ssize_t MainWindow::currentSelectedRow()
{
const auto &selected = ui->tableWidget->selectedItems();
if (selected.empty())
return -1;
return selected.last()->row();
}
void MainWindow::closeEvent(QCloseEvent *closeEvent)
{
isAboutToClose = true;
closeEvent->accept();
}
bool MainWindow::eventFilter(QObject *obj __attribute__((unused)), QEvent *event)
{
if (event->type() == QEvent::MouseMove)
{
QMouseEvent const * const mouseEvent = static_cast<QMouseEvent*>(event);
mouse.x = mouseEvent->pos().x();
mouse.y = mouseEvent->pos().y();
ui->statusbar->showMessage(tr("[x: %1 | y: %2] %3").arg(mouse.x, 4).arg(mouse.y, 4).arg(statusbarMessage));
} else if (event->type() == QEvent::KeyPress) {
QKeyEvent const * const key = static_cast<QKeyEvent*>(event);
if (key->key() == Qt::Key_Backspace)
keyboard.backspace = true;
} else if (event->type() == QEvent::KeyRelease) {
QKeyEvent const * const key = static_cast<QKeyEvent*>(event);
if (key->key() == Qt::Key_Backspace)
keyboard.backspace = false;
}
return false;
}
void MainWindow::updateStatusBarMessage(const QString & message) {
statusbarMessage = message;
ui->statusbar->showMessage(tr("[x: %1 | y: %2] %3").arg(mouse.x, 4).arg(mouse.y, 4).arg(message));
}
|