Handle unaligned headers

This commit is contained in:
Neale Pickett 2020-09-24 16:57:02 -06:00
parent dd6e4859f4
commit ba891c3cf3
3 changed files with 42 additions and 36 deletions

View File

@ -10,15 +10,16 @@ package netshovel
import ( import (
"flag" "flag"
"log"
"github.com/google/gopacket" "github.com/google/gopacket"
"github.com/google/gopacket/layers" "github.com/google/gopacket/layers"
"github.com/google/gopacket/pcap" "github.com/google/gopacket/pcap"
"github.com/google/gopacket/tcpassembly" "github.com/google/gopacket/tcpassembly"
"log"
) )
// Mainloop to handle dispatching of PCAP files from command line // Shovel handles dispatching of PCAP files from the command line.
// // It's intended that you invoke this from your main function.
// This parses the command line arguments, // This parses the command line arguments,
// and for each PCAP file specified on the command line, // and for each PCAP file specified on the command line,
// invokes a TCP assembler that sends streams to whatever is returned from factory. // invokes a TCP assembler that sends streams to whatever is returned from factory.

View File

@ -4,12 +4,13 @@ import (
"encoding/binary" "encoding/binary"
"encoding/hex" "encoding/hex"
"fmt" "fmt"
"github.com/dirtbags/netshovel/gapstring"
"strings" "strings"
"time" "time"
"github.com/dirtbags/netshovel/gapstring"
) )
// Error returned by convenience methods that are unable to get enough data // ShortError is returned by convenience methods that are unable to get enough data
type ShortError struct { type ShortError struct {
Wanted int // How many bytes you needed Wanted int // How many bytes you needed
Available int // How many bytes were available Available int // How many bytes were available
@ -19,7 +20,7 @@ func (e *ShortError) Error() string {
return fmt.Sprintf("Short read: wanted %d of %d available", e.Wanted, e.Available) return fmt.Sprintf("Short read: wanted %d of %d available", e.Wanted, e.Available)
} }
// Error returned by convenience methods that are unable to operate on gaps in data // MissingError is returned by convenience methods that are unable to operate on gaps in data
type MissingError struct { type MissingError struct {
} }
@ -58,7 +59,7 @@ type Packet struct {
var never = time.Unix(0, 0) var never = time.Unix(0, 0)
// Return a new packet // NewPacket returns a new packet
func NewPacket() Packet { func NewPacket() Packet {
return Packet{ return Packet{
Opcode: -1, Opcode: -1,
@ -70,7 +71,7 @@ func NewPacket() Packet {
} }
} }
// Return a string with timestamp, opcode, and description of this packet // DescribeType returns a string with timestamp, opcode, and description of this packet
func (pkt *Packet) DescribeType() string { func (pkt *Packet) DescribeType() string {
return fmt.Sprintf( return fmt.Sprintf(
" %s Opcode %d: %s", " %s Opcode %d: %s",
@ -80,7 +81,7 @@ func (pkt *Packet) DescribeType() string {
) )
} }
// Return a multi-line string describing fields in this packet // DescribeFields returns a multi-line string describing fields in this packet
func (pkt *Packet) DescribeFields() string { func (pkt *Packet) DescribeFields() string {
out := new(strings.Builder) out := new(strings.Builder)
for _, f := range pkt.fields { for _, f := range pkt.fields {
@ -96,11 +97,11 @@ func center(s string, w int) string {
return fmt.Sprintf("%*s", -w, fmt.Sprintf("%*s", (w+len(s))/2, s)) return fmt.Sprintf("%*s", -w, fmt.Sprintf("%*s", (w+len(s))/2, s))
} }
// Return a multi-line string describing this packet's header structure // DescribeHeader returns a multi-line string describing this packet's header structure
func (pkt *Packet) DescribeHeader() string { func (pkt *Packet) DescribeHeader() string {
out := new(strings.Builder) out := new(strings.Builder)
fmt.Fprintln(out, " 0 1 ") fmt.Fprintln(out, " 0 1 ")
fmt.Fprintln(out, " 0 1 2 3 4 5 6 7 8 9 a b c d e f 0 1 2 3 4 5 6 7 8 9 a b c d e f") fmt.Fprintln(out, " mo0 1 2 3 4 5 6 7 8 9 a b c d e f 0 1 2 3 4 5 6 7 8 9 a b c d e f")
bitOffset := 0 bitOffset := 0
for _, f := range pkt.header { for _, f := range pkt.header {
@ -128,11 +129,14 @@ func (pkt *Packet) DescribeHeader() string {
} }
} }
} }
if bitOffset > 0 {
fmt.Fprintln(out, "|")
}
fmt.Fprintln(out, "+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+") fmt.Fprintln(out, "+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+")
return out.String() return out.String()
} }
// Return a multi-line string describing this packet // Describe returns a multi-line string describing this packet
// //
// This shows the timestamp, opcode, description, and hex dump. // This shows the timestamp, opcode, description, and hex dump.
// If you set any values, those are displayed in the order they were set. // If you set any values, those are displayed in the order they were set.
@ -157,32 +161,32 @@ func (pkt *Packet) Set(key, value string) {
pkt.fields = append(pkt.fields, namedField{key, value}) pkt.fields = append(pkt.fields, namedField{key, value})
} }
// Set a string value, displaying its Go string representation // SetString sets a string value, displaying its Go string representation
func (pkt *Packet) SetString(key, value string) { func (pkt *Packet) SetString(key, value string) {
pkt.Set(key, fmt.Sprintf("%#v", value)) pkt.Set(key, fmt.Sprintf("%#v", value))
} }
// Set an int value, displaying its decimal and hexadecimal representations // SetInt sets an int value, displaying its decimal and hexadecimal representations
func (pkt *Packet) SetInt(key string, value int) { func (pkt *Packet) SetInt(key string, value int) {
pkt.Set(key, fmt.Sprintf("%d == 0x%x", value, value)) pkt.Set(key, fmt.Sprintf("%d == 0x%x", value, value))
} }
// Set an unsigned int value, displaying its decimal and hexadecimal representations // SetUint sets an unsigned int value, displaying its decimal and hexadecimal representations
func (pkt *Packet) SetUint(key string, value uint) { func (pkt *Packet) SetUint(key string, value uint) {
pkt.Set(key, fmt.Sprintf("%d == 0x%x", value, value)) pkt.Set(key, fmt.Sprintf("%d == 0x%x", value, value))
} }
// Set an Unt32 value, displaying its decimal and 0-padded hexadecimal representations // SetUint32 sets an Unt32 value, displaying its decimal and 0-padded hexadecimal representations
func (pkt *Packet) SetUint32(key string, value uint32) { func (pkt *Packet) SetUint32(key string, value uint32) {
pkt.Set(key, fmt.Sprintf("%d == 0x%04x", value, value)) pkt.Set(key, fmt.Sprintf("%d == 0x%04x", value, value))
} }
// Set an []byte value, displaying the hex encoding of the bytes // SetBytes sets a []byte value, displaying the hex encoding of the bytes
func (pkt *Packet) SetBytes(key string, value []byte) { func (pkt *Packet) SetBytes(key string, value []byte) {
pkt.Set(key, hex.EncodeToString(value)) pkt.Set(key, hex.EncodeToString(value))
} }
// Set a GapString value, displaying the hex encoding and runes encoding (like a hex dump) // SetGapString sets a GapString value, displaying the hex encoding and runes encoding (like a hex dump)
func (pkt *Packet) SetGapString(key string, value gapstring.GapString) { func (pkt *Packet) SetGapString(key string, value gapstring.GapString) {
pkt.Set(key, fmt.Sprintf("%s %s", value.HexString(), value.Runes())) pkt.Set(key, fmt.Sprintf("%s %s", value.HexString(), value.Runes()))
} }
@ -203,7 +207,7 @@ func (pkt *Packet) Peel(octets int) ([]byte, error) {
return b, nil return b, nil
} }
// Add a field to the header field description // AddHeaderField adds a field to the header field description
func (pkt *Packet) AddHeaderField(order binary.ByteOrder, name string, bits int, value interface{}) { func (pkt *Packet) AddHeaderField(order binary.ByteOrder, name string, bits int, value interface{}) {
h := headerField{ h := headerField{
name: name, name: name,
@ -247,7 +251,7 @@ func (pkt *Packet) readUint(order binary.ByteOrder, bits int, name string) (inte
return value, nil return value, nil
} }
// Peel off a uint64, little-endian // Uint64LE peels off a uint64, little-endian
func (pkt *Packet) Uint64LE(name string) (uint64, error) { func (pkt *Packet) Uint64LE(name string) (uint64, error) {
value, err := pkt.readUint(binary.LittleEndian, 64, name) value, err := pkt.readUint(binary.LittleEndian, 64, name)
if err != nil { if err != nil {
@ -256,7 +260,7 @@ func (pkt *Packet) Uint64LE(name string) (uint64, error) {
return value.(uint64), err return value.(uint64), err
} }
// Peel off a uint32, little-endian // Uint32LE peels off a uint32, little-endian
func (pkt *Packet) Uint32LE(name string) (uint32, error) { func (pkt *Packet) Uint32LE(name string) (uint32, error) {
value, err := pkt.readUint(binary.LittleEndian, 32, name) value, err := pkt.readUint(binary.LittleEndian, 32, name)
if err != nil { if err != nil {
@ -265,7 +269,7 @@ func (pkt *Packet) Uint32LE(name string) (uint32, error) {
return value.(uint32), err return value.(uint32), err
} }
// Peel off a uint16, little-endian // Uint16LE peels off a uint16, little-endian
func (pkt *Packet) Uint16LE(name string) (uint16, error) { func (pkt *Packet) Uint16LE(name string) (uint16, error) {
value, err := pkt.readUint(binary.LittleEndian, 16, name) value, err := pkt.readUint(binary.LittleEndian, 16, name)
if err != nil { if err != nil {
@ -274,7 +278,7 @@ func (pkt *Packet) Uint16LE(name string) (uint16, error) {
return value.(uint16), err return value.(uint16), err
} }
// Peel off a uint64, big-endian // Uint64BE peels off a uint64, big-endian
func (pkt *Packet) Uint64BE(name string) (uint64, error) { func (pkt *Packet) Uint64BE(name string) (uint64, error) {
value, err := pkt.readUint(binary.BigEndian, 64, name) value, err := pkt.readUint(binary.BigEndian, 64, name)
if err != nil { if err != nil {
@ -283,7 +287,7 @@ func (pkt *Packet) Uint64BE(name string) (uint64, error) {
return value.(uint64), err return value.(uint64), err
} }
// Peel off a uint32, big-endian // Uint32BE peels off a uint32, big-endian
func (pkt *Packet) Uint32BE(name string) (uint32, error) { func (pkt *Packet) Uint32BE(name string) (uint32, error) {
value, err := pkt.readUint(binary.BigEndian, 32, name) value, err := pkt.readUint(binary.BigEndian, 32, name)
if err != nil { if err != nil {
@ -292,7 +296,7 @@ func (pkt *Packet) Uint32BE(name string) (uint32, error) {
return value.(uint32), err return value.(uint32), err
} }
// Peel off a uint16, big-endian // Uint16BE peels off a uint16, big-endian
func (pkt *Packet) Uint16BE(name string) (uint16, error) { func (pkt *Packet) Uint16BE(name string) (uint16, error) {
value, err := pkt.readUint(binary.BigEndian, 16, name) value, err := pkt.readUint(binary.BigEndian, 16, name)
if err != nil { if err != nil {
@ -301,7 +305,7 @@ func (pkt *Packet) Uint16BE(name string) (uint16, error) {
return value.(uint16), err return value.(uint16), err
} }
// Peel off a uint8 (aka byte) // Uint8 peels off a uint8 (aka byte)
func (pkt *Packet) Uint8(name string) (uint8, error) { func (pkt *Packet) Uint8(name string) (uint8, error) {
value, err := pkt.readUint(binary.BigEndian, 8, name) value, err := pkt.readUint(binary.BigEndian, 8, name)
if err != nil { if err != nil {

View File

@ -2,23 +2,24 @@ package netshovel
import ( import (
"fmt" "fmt"
"github.com/dirtbags/netshovel/gapstring"
"github.com/google/gopacket"
"github.com/google/gopacket/tcpassembly"
"io" "io"
"net/url" "net/url"
"os" "os"
"strings" "strings"
"time" "time"
"github.com/dirtbags/netshovel/gapstring"
"github.com/google/gopacket"
"github.com/google/gopacket/tcpassembly"
) )
// A File and the path where it lives // NamedFile stores a file and the path where it lives
type NamedFile struct { type NamedFile struct {
*os.File *os.File
Name string Name string
} }
// An atomic communication within a Stream // Utterance is an atomic communication within a Stream
// //
// Streams consist of a string of Utterances. // Streams consist of a string of Utterances.
// Each utterance has associated data, and a time stamp. // Each utterance has associated data, and a time stamp.
@ -38,7 +39,7 @@ type Stream struct {
pending Utterance pending Utterance
} }
// Return a newly-built Stream // NewStream returns a newly-built Stream
// //
// You should embed Stream into your own Application protocol stream struct. // You should embed Stream into your own Application protocol stream struct.
// Use this to initialize the internal stuff netshovel needs. // Use this to initialize the internal stuff netshovel needs.
@ -50,7 +51,7 @@ func NewStream(net, transport gopacket.Flow) Stream {
} }
} }
// Called by the TCP assembler when an Utterance can be built // Reassembled is called by the TCP assembler when an Utterance can be built
func (stream *Stream) Reassembled(rs []tcpassembly.Reassembly) { func (stream *Stream) Reassembled(rs []tcpassembly.Reassembly) {
ret := Utterance{ ret := Utterance{
When: rs[0].Seen, When: rs[0].Seen,
@ -68,7 +69,7 @@ func (stream *Stream) Reassembled(rs []tcpassembly.Reassembly) {
} }
} }
// Called by the TCP assemble when the Stream is closed // ReassemblyComplete is called by the TCP assemble when the Stream is closed
func (stream *Stream) ReassemblyComplete() { func (stream *Stream) ReassemblyComplete() {
close(stream.conversation) close(stream.conversation)
} }
@ -137,7 +138,7 @@ func (stream *Stream) Read(length int) (Utterance, error) {
return ret, nil return ret, nil
} }
// Return a string description of a packet // Describe returns a string description of a packet
// //
// This just prefixes our source and dest IP:Port to pkt.Describe() // This just prefixes our source and dest IP:Port to pkt.Describe()
func (stream *Stream) Describe(pkt Packet) string { func (stream *Stream) Describe(pkt Packet) string {
@ -151,7 +152,7 @@ func (stream *Stream) Describe(pkt Packet) string {
return out.String() return out.String()
} }
// Return a newly-created, truncated file // CreateFile returns a newly-created, truncated file
// //
// This function creates consistently-named files, // This function creates consistently-named files,
// which include a timestamp, // which include a timestamp,