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 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
|
// Copyright 2019-2022 Graham Clark. All rights reserved. Use of this source
// code is governed by the MIT license that can be found in the LICENSE
// file.
// Package ui contains user-interface functions and helpers for termshark.
package ui
import (
"fmt"
"os"
"sync"
"time"
"github.com/gcla/gowid"
"github.com/gcla/gowid/gwutil"
"github.com/gcla/gowid/widgets/holder"
"github.com/gcla/gowid/widgets/menu"
"github.com/gcla/gowid/widgets/null"
"github.com/gcla/gowid/widgets/table"
"github.com/gcla/termshark/v2"
"github.com/gcla/termshark/v2/configs/profiles"
"github.com/gcla/termshark/v2/pkg/pcap"
"github.com/gcla/termshark/v2/pkg/pdmltree"
"github.com/gcla/termshark/v2/pkg/streams"
"github.com/gcla/termshark/v2/widgets/appkeys"
"github.com/gcla/termshark/v2/widgets/streamwidget"
"github.com/gdamore/tcell/v2"
lru "github.com/hashicorp/golang-lru"
log "github.com/sirupsen/logrus"
)
var streamViewNoKeysHolder *holder.Widget
var streamView *appkeys.KeyWidget
var conversationMenu *menu.Widget
var conversationMenuHolder *holder.Widget
var streamsPcapSize int64
var currentStreamKey *streamKey
var streamWidgets *lru.Cache // map[streamKey]*streamwidget.Widget
var StreamLoader *streams.Loader // DOC - one because it holds stream index state for pcap
//======================================================================
// The index for the stream widget cache e.g. UDP stream 6
type streamKey struct {
proto streams.Protocol
idx int
}
//======================================================================
type ManageStreamCache struct{}
var _ pcap.INewSource = ManageStreamCache{}
var _ pcap.IClear = ManageStreamCache{}
// Make sure that existing stream widgets are discarded if the user loads a new pcap.
func (t ManageStreamCache) OnNewSource(pcap.HandlerCode, gowid.IApp) {
clearStreamState()
}
func (t ManageStreamCache) OnClear(pcap.HandlerCode, gowid.IApp) {
clearStreamState()
}
//======================================================================
func streamKeyPress(evk *tcell.EventKey, app gowid.IApp) bool {
handled := false
if evk.Rune() == 'q' || evk.Rune() == 'Q' || evk.Key() == tcell.KeyEscape {
closeStreamUi(app, true)
StreamLoader.StopLoad()
handled = true
}
return handled
}
func startStreamReassembly(app gowid.IApp) {
var model *pdmltree.Model
if packetListView != nil {
if fxy, err := packetListView.FocusXY(); err == nil {
rid, _ := packetListView.Model().RowIdentifier(fxy.Row)
row := int(rid)
model = getCurrentStructModel(row)
}
}
if model == nil {
OpenError("No packets available.", app)
return
}
proto := streams.TCP
streamIndex := model.TCPStreamIndex()
if streamIndex.IsNone() {
proto = streams.UDP
streamIndex = model.UDPStreamIndex()
if streamIndex.IsNone() {
OpenError("Please select a TCP or UDP packet.", app)
return
}
}
filterProto := gwutil.If(proto == streams.TCP, "tcp", "udp").(string)
filter := fmt.Sprintf("%s.stream eq %d", filterProto, streamIndex.Val())
previousFilterValue := FilterWidget.Value()
FilterWidget.SetValue(filter, app)
RequestNewFilter(filter, app)
currentStreamKey = &streamKey{proto: proto, idx: streamIndex.Val()}
newSize, reset := termshark.FileSizeDifferentTo(Loader.PcapPdml, streamsPcapSize)
if reset {
streamWidgets = nil
}
// we maintain an lru.Cache of stream widgets so that we can quickly re-open
// the UI for streams that have been calculated before.
if streamWidgets == nil {
initStreamWidgetCache()
streamsPcapSize = newSize
}
var swid *streamwidget.Widget
swid2, ok := streamWidgets.Get(*currentStreamKey)
if ok {
swid = swid2.(*streamwidget.Widget)
ok = swid.Finished()
}
if ok {
openStreamUi(swid, app)
} else {
swid = makeStreamWidget(previousFilterValue, filter, Loader.String(), proto)
streamWidgets.Add(*currentStreamKey, swid)
// Use the source context. At app shutdown, canceling main will cancel src which will cancel the stream
// loader. And changing source should also cancel the stream loader on all occasions.
StreamLoader = streams.NewLoader(streams.MakeCommands(), Loader.Context())
sh := &streamParseHandler{
app: app,
name: Loader.String(),
proto: proto,
idx: streamIndex.Val(),
wid: swid,
}
StreamLoader.StartLoad(
Loader.PcapPdml,
filterProto,
streamIndex.Val(),
app,
sh,
)
}
}
//======================================================================
type streamParseHandler struct {
app gowid.IApp
tick *time.Ticker // for updating the spinner
stopChunks chan struct{}
stopIndices chan struct{}
chunks chan streams.IChunk
pktIndices chan int
name string
proto streams.Protocol
idx int
wid *streamwidget.Widget
pleaseWaitClosed bool
openedStreams bool
sync.Mutex
}
var _ streams.IOnStreamChunk = (*streamParseHandler)(nil)
var _ streams.IOnStreamHeader = (*streamParseHandler)(nil)
var _ pcap.IBeforeBegin = (*streamParseHandler)(nil)
var _ pcap.IAfterEnd = (*streamParseHandler)(nil)
var _ pcap.IOnError = (*streamParseHandler)(nil)
// Run from the app goroutine
func (t *streamParseHandler) drainChunks() int {
curLen := len(t.chunks)
for i := 0; i < curLen; i++ {
chunk := <-t.chunks
if !t.pleaseWaitClosed {
t.pleaseWaitClosed = true
ClosePleaseWait(t.app)
}
t.wid.AddChunkEntire(chunk, t.app)
}
return curLen
}
// Run from the app goroutine
func (t *streamParseHandler) drainPacketIndices() int {
curLen := len(t.pktIndices)
for i := 0; i < curLen; i++ {
packet := <-t.pktIndices
t.wid.TrackPayloadPacket(packet)
}
return curLen
}
func (t *streamParseHandler) BeforeBegin(code pcap.HandlerCode, app gowid.IApp) {
if code&pcap.StreamCode == 0 {
return
}
app.Run(gowid.RunFunction(func(app gowid.IApp) {
OpenPleaseWait(appView, app)
}))
t.tick = time.NewTicker(time.Duration(200) * time.Millisecond)
t.stopChunks = make(chan struct{})
t.stopIndices = make(chan struct{})
t.chunks = make(chan streams.IChunk, 1000)
t.pktIndices = make(chan int, 1000)
// Start this after widgets have been cleared, to get focus change
termshark.TrackedGo(func() {
fn := func() {
app.Run(gowid.RunFunction(func(app gowid.IApp) {
t.drainChunks()
if !t.openedStreams {
appViewNoKeys.SetSubWidget(streamView, app)
openStreamUi(t.wid, app)
t.openedStreams = true
}
}))
}
termshark.RunOnDoubleTicker(t.stopChunks, fn,
time.Duration(200)*time.Millisecond,
time.Duration(200)*time.Millisecond,
10)
}, Goroutinewg)
termshark.TrackedGo(func() {
fn := func() {
app.Run(gowid.RunFunction(func(app gowid.IApp) {
t.drainPacketIndices()
}))
}
termshark.RunOnDoubleTicker(t.stopIndices, fn,
time.Duration(200)*time.Millisecond,
time.Duration(200)*time.Millisecond,
10)
}, Goroutinewg)
termshark.TrackedGo(func() {
Loop:
for {
select {
case <-t.tick.C:
app.Run(gowid.RunFunction(func(app gowid.IApp) {
pleaseWaitSpinner.Update()
}))
case <-t.stopChunks:
break Loop
}
}
}, Goroutinewg)
}
func (t *streamParseHandler) AfterIndexEnd(success bool) {
t.wid.SetFinished(success)
close(t.stopIndices)
for {
if t.drainPacketIndices() == 0 {
break
}
}
}
func (t *streamParseHandler) AfterEnd(code pcap.HandlerCode, app gowid.IApp) {
if code&pcap.StreamCode == 0 {
return
}
app.Run(gowid.RunFunction(func(app gowid.IApp) {
if !t.pleaseWaitClosed {
t.pleaseWaitClosed = true
ClosePleaseWait(app)
}
if !t.openedStreams {
openStreamUi(t.wid, app)
t.openedStreams = true
}
// Clear out anything lingering from last ticker run to now
for {
if t.drainChunks() == 0 {
break
}
}
if t.wid.NumChunks() == 0 {
OpenMessage("No stream payloads found.", appView, app)
}
}))
close(t.stopChunks)
}
func (t *streamParseHandler) TrackPayloadPacket(packet int) {
t.Lock()
defer t.Unlock()
t.pktIndices <- packet
}
func (t *streamParseHandler) OnStreamHeader(hdr streams.FollowHeader) {
t.app.Run(gowid.RunFunction(func(app gowid.IApp) {
t.wid.AddHeader(hdr, app)
}))
}
// Handle a line/chunk of input - one piece of reassembled data, which comes with
// a client/server direction.
func (t *streamParseHandler) OnStreamChunk(chunk streams.IChunk) {
t.Lock()
defer t.Unlock()
t.chunks <- chunk
}
func (t *streamParseHandler) OnError(code pcap.HandlerCode, app gowid.IApp, err error) {
if code&pcap.StreamCode == 0 {
return
}
log.Error(err)
if !Running {
fmt.Fprintf(os.Stderr, "%v\n", err)
RequestQuit()
} else if !profiles.ConfBool("main.suppress-tshark-errors", true) {
var errstr string
if kverr, ok := err.(gowid.KeyValueError); ok {
errstr = termshark.KeyValueErrorString(kverr)
} else {
errstr = fmt.Sprintf("%v", err)
}
app.Run(gowid.RunFunction(func(app gowid.IApp) {
OpenLongError(errstr, app)
}))
}
}
func initStreamWidgetCache() {
widgetCacheSize := profiles.ConfInt("main.stream-cache-size", 100)
var err error
streamWidgets, err = lru.New(widgetCacheSize)
if err != nil {
log.Fatal(err)
}
log.Infof("Initialized stream widget cache with %d entries.", widgetCacheSize)
}
func clearStreamState() {
initStreamWidgetCache()
currentStreamKey = nil
}
type streamClicker struct{}
var _ streamwidget.IChunkClicked = streamClicker{}
func (c streamClicker) OnPacketClicked(pkt int, app gowid.IApp) error {
if packetListView != nil {
coords, err := packetListView.FocusXY()
if err == nil {
// Need to go from row identifier ("9th packet") to display order which might be sorted.
// Note that for our pcap table, the row identifier (logical id) for each table row is
// itself an int i.e. packet #0, packet #1 (although the packet's *frame number* might
// be different if there's a filter). When OnChunkClicked() is called, it means react
// to a click on the logical packet #N (where the stream loader tracks pcap packet ->
// packet-with-payload). So
//
// - user clicks on 9th item in stream view
// - the stream loader translates this to the 15th packet in the pcap (rest are SYN, etc)
// - the inverted table model translates this to display row #5 in the table (because it's sorted)
// - then we set the display row and switch to the data/away from the table header
//
if row, ok := packetListView.InvertedModel().IdentifierToRow(table.RowId(pkt)); !ok {
OpenError(fmt.Sprintf("Unexpected error looking up packet %v.", pkt), app)
} else {
coords.Row = row // cast to int - we want row == #item in list
packetListView.SetFocusXY(app, coords)
packetListTable.SetFocusOnData(app)
packetListTable.GoToMiddle(app)
setFocusOnPacketList(app)
packetListData := packetListView.Model().(table.ISimpleDataProvider).GetData()
// This condition should always be true. I just feel cautious because accessing the psml data
// in this way feels fragile. Also, take note: there's an open issue to make it possible to
// customize the packet headers, in which case the item at index 0 in the psml might not be
// the frame number (though this check doesn't guard against that...). It's more useful
// to display the actual frame number if possible, so do that if we can, otherwise just
// display which segment of the stream this is.
if len(packetListData) > row && len(packetListData[row]) > 0 {
OpenMessage(fmt.Sprintf("Selected packet %s.", packetListData[row][0]), appView, app)
} else {
OpenMessage(fmt.Sprintf("Selected segment %d.", pkt+1), appView, app)
}
}
}
}
return nil
}
func (c streamClicker) HandleError(row table.RowId, err error, app gowid.IApp) {
OpenError(fmt.Sprintf("Packet at row %v is not loaded yet. Try again in a few seconds.", row), app)
}
//======================================================================
type simpleOnError struct{}
func (s simpleOnError) OnError(msg string, app gowid.IApp) {
OpenError(msg, app)
}
func makeStreamWidget(previousFilter string, filter string, cap string, proto streams.Protocol) *streamwidget.Widget {
return streamwidget.New(filter, cap, proto,
conversationMenu, conversationMenuHolder, &keyState,
streamwidget.Options{
MenuOpener: &multiMenu1Opener,
DefaultDisplay: func() streamwidget.DisplayFormat {
view := streamwidget.Hex
choice := profiles.ConfString("main.stream-view", "hex")
switch choice {
case "raw":
view = streamwidget.Raw
case "ascii":
view = streamwidget.Ascii
}
return view
},
PreviousFilter: previousFilter,
FilterOutFunc: func(w streamwidget.IFilterOut, app gowid.IApp) {
closeStreamUi(app, true)
var newFilter string
if w.PreviousFilter() == "" {
newFilter = fmt.Sprintf("!(%s)", w.DisplayFilter())
} else {
newFilter = fmt.Sprintf("%s and !(%s)", w.PreviousFilter(), w.DisplayFilter())
}
FilterWidget.SetValue(newFilter, app)
RequestNewFilter(newFilter, app)
},
CopyModeWidget: CopyModeWidget,
ChunkClicker: streamClicker{},
ErrorHandler: simpleOnError{},
})
}
//======================================================================
func openStreamUi(swid *streamwidget.Widget, app gowid.IApp) {
streamViewNoKeysHolder.SetSubWidget(swid, app)
appViewNoKeys.SetSubWidget(streamView, app)
// When opening, put focus on the list of stream chunks. There may be none in which case
// this won't work. But when UI is constructed, there are no chunks, even though it's not
// open yet, so focus on the pile goes to the bottom, even when the chunk table becomes populated.
// That's not ideal.
swid.SetFocusOnChunksIfPossible(app)
}
func closeStreamUi(app gowid.IApp, refocus bool) {
appViewNoKeys.SetSubWidget(mainView, app)
// Do this if the user starts reassembly from the menu - better UX
if refocus {
setFocusOnPacketList(app)
}
}
//======================================================================
func buildStreamUi() {
conversationMenuHolder, conversationMenu = streamwidget.MakeConvMenu(&multiMenu1Opener)
streamViewNoKeysHolder = holder.New(null.New())
streamView = appkeys.New(
appkeys.New(
appkeys.New(
streamViewNoKeysHolder,
streamKeyPress,
),
copyModeExitKeys20,
appkeys.Options{
ApplyBefore: true,
},
),
copyModeEnterKeys,
)
}
//======================================================================
// Local Variables:
// mode: Go
// fill-column: 110
// End:
|