123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648 |
- -- Define the protocol
- TC_TM_PROTOCOL = Proto("tc_tm", "TC_TM")
- local f_sof1 = ProtoField.uint8("TC_TM_PROTOCOL.sof1", "SOF1", base.HEX)
- local f_sof2 = ProtoField.uint8("TC_TM_PROTOCOL.sof2", "SOF2", base.HEX)
- local f_tm_ctrl = ProtoField.uint8("TC_TM_PROTOCOL.tm_ctrl", "TM Ctrl", base.HEX)
- local f_GS_Id = ProtoField.uint8("TC_TM_PROTOCOL.GS_Id", "GS Id", base.HEX)
- local f_timestamp = ProtoField.string("TC_TM_PROTOCOL.timestamp", "Timestamp", base.NONE)
- local f_sequence_no = ProtoField.uint16("TC_TM_PROTOCOL.sequence_no", "Sequence No", base.DEC)
- local f_sat_id = ProtoField.uint16("TC_TM_PROTOCOL.sat_id", "SAT Id", base.DEC)
- local f_qos = ProtoField.uint8("TC_TM_PROTOCOL.qos", "QoS", base.DEC)
- local f_sa_id = ProtoField.uint16("TC_TM_PROTOCOL.sa_id", "SA Id", base.DEC)
- local f_da_id = ProtoField.uint16("TC_TM_PROTOCOL.da_id", "DA Id", base.DEC)
- local f_rm_id = ProtoField.uint8("TC_TM_PROTOCOL.rm_id", "RM Id", base.DEC)
- local f_tm_id = ProtoField.uint16("TC_TM_PROTOCOL.tm_id", "TM Id", base.DEC)
- local f_co_id = ProtoField.uint16("TC_TM_PROTOCOL.co_id", "Co Id", base.DEC)
- local f_tm_len = ProtoField.uint16("TC_TM_PROTOCOL.tm_len", "TM Len", base.DEC)
- local f_tm_data = ProtoField.uint8("TC_TM_PROTOCOL.tm_data", "TM Data", base.DEC)
- local f_ext_header_len = ProtoField.uint8("TC_TM_PROTOCOL.ext_header_len", "Ext Header Len", base.DEC)
- local f_ext_header_data = ProtoField.uint8("TC_TM_PROTOCOL.ext_header_data", "Ext Header Data", base.DEC)
- local f_crc = ProtoField.uint8("TC_TM_PROTOCOL.crc", "CRC", base.DEC)
- local f_c_mac = ProtoField.uint8("TC_TM_PROTOCOL.c_mac", "C MAC", base.DEC)
- local f_eof1 = ProtoField.uint8("TC_TM_PROTOCOL.eof1", "EOF", base.HEX)
- local f_tc_id = ProtoField.uint16("TC_TM_PROTOCOL.tc_id", "TC Id", base.DEC)
- local f_tc_len = ProtoField.uint16("TC_TM_PROTOCOL.tc_len", "TC Len", base.DEC)
- local f_tc_data = ProtoField.uint32("TC_TM_PROTOCOL.tc_data", "TC Data", base.DEC)
- -- Add the fields to the protocol
- TC_TM_PROTOCOL.fields = {
- f_sof1, f_sof2, f_tm_ctrl,f_GS_Id, f_timestamp, f_sequence_no, f_sat_id,
- f_qos, f_sa_id, f_da_id, f_rm_id, f_tm_id, f_co_id, f_tm_len, f_tm_data,
- f_ext_header_len, f_ext_header_data, f_crc, f_c_mac, f_eof1,f_tc_id ,f_tc_len ,f_tc_data
- }
- ------------------------------------------------------------------------------------------------------------------------------------
- function TC_dissector(buffer, pinfo, tree)
- --Set the protocol coloumn name in wireshark
- local subtree = tree:add(TC_TM_PROTOCOL, buffer(), "TELECOMMAND")
-
- -- Dissect SOF1 and SOF2
- subtree:add(f_sof1 , buffer(4, 1))
- subtree:add(f_sof2, buffer(5, 1))
-
- -- Dissect TC Control byte (TC_Ctrl)
- local offset = 6
- local tc_ctrl = buffer(offset, 1):le_uint() -- Get the value of TC Ctrl byte
- subtree:add(f_tm_ctrl , tc_ctrl)
- offset = offset + 1
-
- -- Dissect Timestamp (4 bytes)
- if buffer:len() >= offset + 4 then
- local timestamp = buffer(offset, 4):le_uint()
- local utc_time = os.date("!%Y-%m-%d %H:%M:%S", timestamp)
- subtree:add(f_timestamp, timestamp.." ".."("..utc_time..")" )
- offset = offset + 4
- else
- subtree:add(f_timestamp, "Invalid data (timestamp)")
- end
-
- -- Dissect Sequence No (2 bytes)
- if buffer:len() >= offset + 2 then
- local sequence = buffer(offset, 2):le_uint()
- subtree:add(f_sequence_no, sequence)
- offset = offset + 2
- else
- subtree:add(f_sequence_no, "Invalid data (sequence number)")
- end
-
- -- Dissect SAT_Id (1 byte)
- if buffer:len() >= offset + 1 then
- local sat_id = buffer(offset, 1):uint() -- Get SAT Id (1st byte)
- --offset = offset + 1
-
- if bit.band(sat_id, 0x80) == 0x80 then --if 7th bit is set and
- if buffer:len() >= offset + 1 then
- local second = buffer(offset, 2):le_uint()
-
- if bit.band(second, 0x8000) == 0x0000 then --and 15th bit is set then unset 15th bit
- sat_id = buffer(offset, 2):le_uint()
- sat_id = bit.band(sat_id, 0xFF7F)
- offset = offset + 1
-
- else
- sat_id = buffer(offset, 2):le_uint()
- sat_id = bit.band(sat_id, 0x7FFF) -- and 15th bit is unset then unset the 7th bit
- offset = offset + 1
- end
- end
- end
- subtree:add(f_sat_id, sat_id)
- offset = offset + 1
- end
-
- -- Dissect GS_Id (1 byte)
- if buffer:len() >= offset + 1 then
- local gs_id = buffer(offset, 1):uint() -- Get SAT Id (1st byte)
- --offset = offset + 1
-
- if bit.band(gs_id, 0x80) == 0x80 then
- if buffer:len() >= offset + 1 then
- local second = buffer(offset, 2):le_uint()
-
- if bit.band(second, 0x8000) == 0x0000 then
- gs_id = buffer(offset, 2):le_uint()
- gs_id = bit.band(gs_id, 0xFF7F)
- offset = offset + 1
-
- else
- gs_id = buffer(offset, 2):le_uint()
- gs_id = bit.band(gs_id, 0x7FFF)
- offset = offset + 1
- end
- end
- end
- subtree:add(f_GS_Id, gs_id)
- offset = offset + 1
- end
-
- -- Dissect QoS (1 byte)
- if buffer:len() >= offset + 1 then
- subtree:add(f_qos, buffer(offset, 1))
- offset = offset + 1
- end
-
- -- Dissect SA_Id (Source Application ID) and DA_Id (Destination Application ID)
- if buffer:len() >= offset + 1 then
- local sa_id = buffer(offset, 1):uint() -- Get source Application Id (1st byte)
- --offset = offset + 1
-
- if bit.band(sa_id, 0x80) == 0x80 then
- if buffer:len() >= offset + 1 then
- local second = buffer(offset, 2):le_uint()
-
- if bit.band(second, 0x8000) == 0x0000 then
- sa_id = buffer(offset, 2):le_uint()
- sa_id = bit.band(sa_id, 0xFF7F)
- offset = offset + 1
-
- else
- sa_id = buffer(offset, 2):le_uint()
- sa_id = bit.band(sa_id, 0x7FFF)
- offset = offset + 1
- end
- end
- end
- subtree:add(f_sa_id, sa_id)
- offset = offset + 1
- end
-
- if buffer:len() >= offset + 1 then
- --subtree:add(f_DA_Id, buffer(offset, 1))
- local da_id = buffer(offset, 1):le_uint() -- Get Destination Application Id (1st byte)
- --offset = offset + 1
-
- if bit.band(da_id, 0x80) == 0x80 then
- if buffer:len() >= offset + 1 then
-
- local second = buffer(offset, 2):le_uint()
-
- if bit.band(second, 0x8000) == 0x0000 then
- da_id = buffer(offset, 2):le_uint()
- da_id = bit.band(da_id, 0xFF7F)
- offset = offset + 1
-
- else
- da_id = buffer(offset, 2):le_uint()
- da_id = bit.band(da_id, 0x7FFF)
- offset = offset + 1
- end
- end
- end
- subtree:add(f_da_id, da_id)
- offset = offset + 1
- end
-
- -- Dissect RM_Id (1 byte)
- if buffer:len() >= offset + 1 then
- subtree:add(f_rm_id, buffer(offset, 1))
- offset = offset + 1
- end
-
- -- Dissect TC_Id (2 bytes)
- -- Dissect TC_Id (2 bytes)
- local info_display
-
- local tc_id = buffer(offset, 1):le_uint() -- Read 1 byte for tc_id
-
- if tc_id == 100 or tc_id == 105 or tc_id == 102 or tc_id == 103 then
- pinfo.cols.protocol = "FTM"
- else
- pinfo.cols.protocol = "TELECOMMAND"
- end
-
- if buffer:len() >= offset + 2 then -- Ensure enough data is available to read 2 bytes
- -- Check if the 7th bit (0x80) is set in tc_id
- if bit.band(tc_id, 0x80) == 0x80 then
- if buffer:len() >= offset + 2 then -- Ensure enough data for the next 2 bytes
-
-
- local second = buffer(offset, 2):le_uint()
-
- if bit.band(second, 0x8000) == 0x0000 then
- tc_id = buffer(offset, 2):le_uint()
- tc_id = bit.band(tc_id, 0xFF7F)
- offset = offset + 1
-
- else
- tc_id = buffer(offset, 2):le_uint()
- tc_id = bit.band(tc_id, 0x7FFF)
- offset = offset + 1
- end
- end
- end
- -- Add tc_id to the subtree (display in dissection tree)
- subtree:add(f_tc_id, tc_id)
-
- -- Move the offset forward by 1 (since we initially read 1 byte)
- offset = offset + 1
- end
- -- Dissect TC_Len (2 bytes)
- local tc_len = 0 -- Declare tc_len as a local variable here
- if buffer:len() >= offset + 2 then
- tc_len = buffer(offset, 2):le_uint()
- subtree:add(f_tc_len, tc_len)
- offset = offset + 2
- end
-
- -- Dissect TC_Data (variable length)
- --local subtree2 = subtree:add(TC_TM_PROTOCOL, buffer(), TC_DATA())
- local data
- if buffer:len() >= offset + tc_len then
- if tc_len == 0 then
- subtree:add("TC DATA : NIL")
- else
- if tc_id == 621 then
- require("hm_dissector")
- data = HM_TC_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset)
- offset = offset + tc_len
- elseif tc_id == 100 then
- require("ftci_dissector")
- ftci_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset)
- offset = offset + tc_len
- elseif tc_id == 103 then
- require("ftfci_dissector")
- ftfci_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset)
- offset = offset + tc_len
- elseif tc_id == 102 then
- require("ftds_dissector")
- ftds_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset)
- offset = offset + tc_len
- elseif tc_id == 105 then
- require("ftsr_dissector")
- ftsr_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset)
- offset = offset + tc_len
- else
- for i=0,tc_len - 1 do
- subtree:add(f_tc_data, buffer(offset, 1))
- offset = offset + 1
- end
- end
- end
- end
-
- -- Check if we can dissect Ext_Header_Len
- if bit.band(tc_ctrl, 0x80) == 0x80 and buffer:len() >= offset + 1 then
- subtree:add(f_ext_header_len, buffer(offset, 1))
- local ext_header_len = buffer(offset, 1):uint()
- offset = offset + 1
- if buffer:len() >= offset + ext_header_len then
- for i=1,ext_header_len do
- subtree:add(f_ext_header_data, buffer(offset, 1))
- offset = offset + 1
- end
- end
- end
-
- -- Dissect CRC (1 byte)
- if buffer:len() >= offset + 1 then
- subtree:add(f_crc, buffer(offset, 1))
- offset = offset + 1
- end
-
- -- Dissect C-MAC/H-MAC (if TC Ctrl bit 4 is set)
- if bit.band(tc_ctrl, 0x10) == 0x10 and buffer:len() >= offset + 32 then
- for i=1,32 do
- subtree:add(f_c_mac, buffer(offset, 1))
- offset = offset + 1
- end
- end
-
- -- Dissect EOF (1 byte)
- if buffer:len() >= offset + 1 then
- subtree:add(f_eof1, buffer(offset, 1))
- end
- local string
-
- if tc_id == 621 then
-
- local switch = {
- [9] = function() return "EPS" end,
- [22] = function() return "ADCS" end,
- [14] = function() return "SBAND" end,
- [15] = function() return "UHF" end,
- [42] = function() return "SENSOR" end,
- [27] = function() return "OBC" end
- }
- string = (switch[data] or function() return "All Module" end)()
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
- pinfo.cols.info ="seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TC_ID = "..info_display[3]..", Module = " ..info_display[4] -- for info display in wireshark
-
- elseif tc_id == 100 then
-
- string = "FTCI FRAME"
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
- pinfo.cols.info ="seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TC_ID = "..info_display[3]..", " ..info_display[4] -- for info display in wireshark
-
- elseif tc_id == 105 then
-
- string = "FTSR FRAME"
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
- pinfo.cols.info ="seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TC_ID = "..info_display[3]..", " ..info_display[4] -- for info display in wireshark
-
-
- elseif tc_id == 102 then
-
- string = "FTDS FRAME"
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
- pinfo.cols.info ="seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TC_ID = "..info_display[3]..", " ..info_display[4] -- for info display in wireshark
-
- elseif tc_id == 103 then
-
- string = "FTFCI FRAME"
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
- pinfo.cols.info ="seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TC_ID = "..info_display[3]..", " ..info_display[4] -- for info display in wireshark
-
-
- else
-
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id} --- for info display in wireshark
-
- pinfo.cols.info ="seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TC_ID = "..info_display[3] -- for info display in wireshark
- end
- end
- -----------------------------------------------------------------------------------------------------------------------------------
- function TM_dissector(buffer, pinfo, tree) -- OBC to GS
- local subtree = tree:add(TC_TM_PROTOCOL, buffer(), "TELEMETRY")
- -- Set the protocol column name in Wireshark
-
- -- Ensure the buffer is large enough to contain the entire structure (40 bytes)
- -- if buffer:len() < 40 then
- -- return -- Not enough data to dissect
- --end
- -- Extract the fields in order as defined in the structure
- subtree:add(f_sof1, buffer(4, 1):uint()) -- SOF1 in HEX
- subtree:add(f_sof2, buffer(5, 1):uint()) -- SOF2 in HEX
- subtree:add(f_tm_ctrl, buffer(6, 1):le_uint()) -- TM Ctrl in HEX
- -- Dissect timestamp
- local timestamp = buffer(7, 4):le_uint()
- local utc_time = os.date("!%Y-%m-%d %H:%M:%S", timestamp)
- subtree:add(f_timestamp, timestamp.." ".."("..utc_time..")" )
-
-
- subtree:add(f_sequence_no, buffer(11, 2):le_uint()) -- Sequence No in HEX
-
-
- -- My logic for SAT Id
- local magic = buffer(13, 1):le_uint()
- local add=13
- if bit.band(magic, 0x80) == 0 then
- subtree:add(f_sat_id, buffer(add, 1):le_uint()) -- SAT Id in HEX
- add=add+1
- else
-
- magic=buffer(add, 2):le_uint()
- local dummy=magic & 0x8000 --to check 7th byte is 1
- if dummy == 0 then
- magic = magic & 0xff7f -- if 15th bit is 0 set 7th bit 0
- else
- magic = magic & 0x7fff -- if 15 bit is 1 set 15th bit to 0
- end
- subtree:add(f_sat_id, magic) -- SAT Id in HEX
- add=add+2
-
- end
- -- QoS in HEX
- subtree:add(f_qos, buffer(add, 1):le_uint())
- add=add+1
- -- My logic for SA Id
- magic = buffer(add, 1):le_uint()
- if bit.band(magic, 0x80) == 0 then
- subtree:add(f_sa_id, buffer(add, 1):le_uint()) -- SA Id in HEX
- add=add+1
- else
- magic=buffer(add, 2):le_uint()
- local dummy=magic & 0x8000
- if dummy == 0 then
- magic = magic & 0xff7f
- else
- magic = magic & 0x7fff
- end
- subtree:add(f_sa_id,magic) -- SA Id in HEX
- add=add+2
- end
- -- My logic for DA Id
- magic = buffer(add, 1):uint()
- if bit.band(magic, 0x80) == 0 then
- subtree:add(f_da_id, buffer(add, 1):le_uint()) -- DA Id in HEX
- add=add+1
- else
- magic=buffer(add, 2):le_uint()
- local dummy=magic & 0x8000
- if dummy == 0 then
- magic = magic & 0xff7f
- else
- magic = magic & 0x7fff
- end
- subtree:add(f_da_id, magic) -- DA Id in HEX
- add=add+2
- end
- -- RM Id in HEX
- subtree:add(f_rm_id, buffer(add, 1):le_uint())
- add=add+1
- -- My logic for TM Id
- local info_display -- for display in wireshark
- local tm_id
-
- magic = buffer(add, 1):uint()
- if bit.band(magic, 0x80) == 0 then
- subtree:add(f_tm_id, buffer(add, 1):le_uint()) -- TM Id in HEX
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,buffer(add, 1):le_uint()} --- for info display in wireshark
- add=add+1
- else
- magic=buffer(add, 2):le_uint()
- local dummy=magic & 0x8000
- if dummy == 0 then
- magic = magic & 0xff7f
- else
- magic = magic & 0x7fff
- end
- subtree:add(f_tm_id, magic) -- TM Id in HEX
- add=add+2
- end
- tm_id = magic
-
- if tm_id == 104 or tm_id == 101 or tm_id == 106 or tm_id == 107 then
- pinfo.cols.protocol = "FTM"
- else
- pinfo.cols.protocol = "TELEMETRY"
- end
-
- -- Co Id in HEX
- subtree:add(f_co_id, buffer(add, 2):le_uint())
- add=add+2
-
- -- TM Len in HEX
- local tm_len
-
- magic = buffer(add, 2):le_uint()
- tm_len = magic
- subtree:add(f_tm_len, buffer(add, 2):le_uint())
- add=add+2
- -- logic for TM Data
- local array
- --local subtree2 = subtree:add(TC_TM_PROTOCOL, buffer(), "TM_DATA")
-
- -- Dissect TM_Data (variable length)
-
-
- if tm_id == 621 or tm_id == 815 or tm_id == 104 or tm_id == 107 or tm_id == 101 or tm_id == 106 then
- if tm_id == 621 then
- require("hm_dissector")
- array = HM_TM_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add, tm_len)
- add = add + tm_len
- elseif tm_id == 815 then
- require("bcon")
- bcon_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add, tm_len)
- add = add + tm_len
- elseif tm_id == 104 then
- require("ftci_dissector")
- ftci_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add)
- add = add + tm_len
- elseif tm_id == 107 then
- require("ftfci_dissector")
- ftfci_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add)
- add = add + tm_len
- elseif tm_id == 101 then
- require("ftsr_dissector")
- ftsr_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add)
- add = add + tm_len
- elseif tm_id == 106 then
- require("ftds_dissector")
- ftds_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add)
- add = add + tm_len
- end
-
- else
- for i=0,magic-1 do
- subtree:add(f_tm_data, buffer(add, 1):le_uint())
- add=add+1
- end
- end
-
-
- -- Ext Header Len in HEX
- magic = buffer(6, 1):le_uint() -- to check tm control
- if bit.band(magic, 0x80) == 0x80 then
- magic= buffer(add, 1):uint()
- subtree:add(f_ext_header_len, buffer(add, 1):uint())
- add=add+1
- -- logic for Ext Header Data
- for i=0,magic-1 do
- subtree:add(f_ext_header_data, buffer(add, 1):uint()) -- Ext Header Data in HEX
- add=add+1
- end
- end
- -- CRC in HEX
- subtree:add(f_crc, buffer(add, 1):le_uint())
- add=add+1
- -- C MAC in HEX
- magic = buffer(6, 1):le_uint() -- tm control
- if bit.band(magic, 0x10) == 0x10 then
- for i=1,32 do
- subtree:add(f_c_mac, buffer(add, 1):uint())
- add=add+1
- end
- end
- -- EOF1 in HEX
- subtree:add(f_eof1, buffer(add, 1):uint())
-
- local string
- if tm_id == 621 then
-
- local switch = {
- [0] = function() return "EPS" end,
- [1] = function() return "ADCS" end,
- [2] = function() return "SBAND" end,
- [3] = function() return "UHF" end,
- [4] = function() return "SENSOR" end,
- [5] = function() return "OBC" end,
- [6] = function() return "ERROR HANDLER" end
- }
- string = (switch[array[1]] or function() return "All Module" end)()
-
-
-
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string, array[2], array[3]} --- for info display in wireshark
-
- pinfo.cols.info ="seq_no = " ..info_display[1]..", TS = " ..info_display[2]..", TM ID = "..info_display[3]..", Module = "..info_display[4]..", Queue id = "..info_display[5]..", Number of instance = "..info_display[6] -- for info display in wireshark
-
- elseif tm_id == 104 then
-
- string = "FTCI FRAME"
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string} --- for info display in wireshark
- pinfo.cols.info ="seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TM_ID = "..info_display[3]..", " ..info_display[4] -- for info display in wireshark
-
- elseif tm_id == 101 then
-
- string = "FTSR FRAME"
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string} --- for info display in wireshark
- pinfo.cols.info ="seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TM_ID = "..info_display[3]..", " ..info_display[4] --for info display in wireshark
-
-
- elseif tm_id == 106 then
-
- string = "FTDS FRAME"
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string} --- for info display in wireshark
- pinfo.cols.info ="seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TM_ID = "..info_display[3]..", " ..info_display[4] -- for info display in wireshark
-
- elseif tm_id == 107 then
-
- string = "FTFCI FRAME"
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string} --- for info display in wireshark
- pinfo.cols.info ="seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TM_ID = "..info_display[3]..", " ..info_display[4] -- for info display in wireshark
-
- else
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id} --- for info display in wireshark
-
-
- pinfo.cols.info ="seq_no = " ..info_display[1]..", TS = " ..info_display[2]..", TM ID = "..info_display[3] -- for info display in wireshark
- end
- -- Check if the buffer contains enough data for the expected total length
- --if buffer:len() < 38 + buffer(21, 2):uint() then
- -- subtree:add_expert_info(PI_MALFORMED, PI_WARN, "Incomplete data")
- --end
- end
- -- Register the dissector for udp port
- -------------------------------------------------------------------------------------------------------------------------------
- -- Dissector function
- function TC_TM_PROTOCOL.dissector(buffer, pinfo, tree)
- -- Register protocol in preferences (add this part)
- --my_udp_protocol:register_preference()
- pinfo.cols.protocol = "TC_TM"
- -- Create a subtree for this protocol
- --local subtree = tree:add(my_udp_protocol, buffer(), "TE")
- local direction = buffer(6, 1):uint() -- taking tM or tc control byte
-
- if direction & 0x40 == 0x40 then -- if 6th bit is set then it is TM
- TM_dissector(buffer, pinfo, tree) -- OBC to GS
-
- else
- TC_dissector(buffer, pinfo, tree) -- GS to OBC
-
- end
- end
- ------------------------------------------------------------------------------------------------------------------------------------------------
- -- Add a preference for the port number
- TC_TM_PROTOCOL.prefs.port = Pref.uint("UDP Port", 6779, "UDP port for TC_TM protocol")
- -- Register the dissector based on the preference
- function TC_TM_PROTOCOL.init()
- local udp_table = DissectorTable.get("udp.port")
- udp_table:add(TC_TM_PROTOCOL.prefs.port, TC_TM_PROTOCOL)
- end
|