tc_tm_protocols.lua 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. -- Define the protocol
  2. TC_TM_PROTOCOL = Proto("tc_tm", "TC_TM")
  3. local f_sof1 = ProtoField.uint8("TC_TM_PROTOCOL.sof1", "SOF1", base.HEX)
  4. local f_sof2 = ProtoField.uint8("TC_TM_PROTOCOL.sof2", "SOF2", base.HEX)
  5. local f_tm_ctrl = ProtoField.uint8("TC_TM_PROTOCOL.tm_ctrl", "TM Ctrl", base.HEX)
  6. local f_GS_Id = ProtoField.uint8("TC_TM_PROTOCOL.GS_Id", "GS Id", base.HEX)
  7. local f_timestamp = ProtoField.string("TC_TM_PROTOCOL.timestamp", "Timestamp", base.NONE)
  8. local f_sequence_no = ProtoField.uint16("TC_TM_PROTOCOL.sequence_no", "Sequence No", base.DEC)
  9. local f_sat_id = ProtoField.uint16("TC_TM_PROTOCOL.sat_id", "SAT Id", base.DEC)
  10. local f_qos = ProtoField.uint8("TC_TM_PROTOCOL.qos", "QoS", base.DEC)
  11. local f_sa_id = ProtoField.uint16("TC_TM_PROTOCOL.sa_id", "SA Id", base.DEC)
  12. local f_da_id = ProtoField.uint16("TC_TM_PROTOCOL.da_id", "DA Id", base.DEC)
  13. local f_rm_id = ProtoField.uint8("TC_TM_PROTOCOL.rm_id", "RM Id", base.DEC)
  14. local f_tm_id = ProtoField.uint16("TC_TM_PROTOCOL.tm_id", "TM Id", base.DEC)
  15. local f_co_id = ProtoField.uint16("TC_TM_PROTOCOL.co_id", "Co Id", base.DEC)
  16. local f_tm_len = ProtoField.uint16("TC_TM_PROTOCOL.tm_len", "TM Len", base.DEC)
  17. local f_tm_data = ProtoField.uint8("TC_TM_PROTOCOL.tm_data", "TM Data", base.DEC)
  18. local f_ext_header_len = ProtoField.uint8("TC_TM_PROTOCOL.ext_header_len", "Ext Header Len", base.DEC)
  19. local f_ext_header_data = ProtoField.uint8("TC_TM_PROTOCOL.ext_header_data", "Ext Header Data", base.DEC)
  20. local f_crc = ProtoField.uint8("TC_TM_PROTOCOL.crc", "CRC", base.DEC)
  21. local f_c_mac = ProtoField.uint8("TC_TM_PROTOCOL.c_mac", "C MAC", base.DEC)
  22. local f_eof1 = ProtoField.uint8("TC_TM_PROTOCOL.eof1", "EOF", base.HEX)
  23. local f_tc_id = ProtoField.uint16("TC_TM_PROTOCOL.tc_id", "TC Id", base.DEC)
  24. local f_tc_len = ProtoField.uint16("TC_TM_PROTOCOL.tc_len", "TC Len", base.DEC)
  25. local f_tc_data = ProtoField.uint32("TC_TM_PROTOCOL.tc_data", "TC Data", base.DEC)
  26. -- Add the fields to the protocol
  27. TC_TM_PROTOCOL.fields = {
  28. f_sof1, f_sof2, f_tm_ctrl,f_GS_Id, f_timestamp, f_sequence_no, f_sat_id,
  29. f_qos, f_sa_id, f_da_id, f_rm_id, f_tm_id, f_co_id, f_tm_len, f_tm_data,
  30. f_ext_header_len, f_ext_header_data, f_crc, f_c_mac, f_eof1,f_tc_id ,f_tc_len ,f_tc_data
  31. }
  32. ------------------------------------------------------------------------------------------------------------------------------------
  33. function TC_dissector(buffer, pinfo, tree)
  34. --Set the protocol coloumn name in wireshark
  35. local subtree = tree:add(TC_TM_PROTOCOL, buffer(), "TELECOMMAND")
  36. -- Dissect SOF1 and SOF2
  37. subtree:add(f_sof1 , buffer(4, 1))
  38. subtree:add(f_sof2, buffer(5, 1))
  39. -- Dissect TC Control byte (TC_Ctrl)
  40. local offset = 6
  41. local tc_ctrl = buffer(offset, 1):le_uint() -- Get the value of TC Ctrl byte
  42. subtree:add(f_tm_ctrl , tc_ctrl)
  43. offset = offset + 1
  44. -- Dissect Timestamp (4 bytes)
  45. if buffer:len() >= offset + 4 then
  46. local timestamp = buffer(offset, 4):le_uint()
  47. local utc_time = os.date("!%Y-%m-%d %H:%M:%S", timestamp)
  48. subtree:add(f_timestamp, timestamp.." ".."("..utc_time..")" )
  49. offset = offset + 4
  50. else
  51. subtree:add(f_timestamp, "Invalid data (timestamp)")
  52. end
  53. -- Dissect Sequence No (2 bytes)
  54. if buffer:len() >= offset + 2 then
  55. local sequence = buffer(offset, 2):le_uint()
  56. subtree:add(f_sequence_no, sequence)
  57. offset = offset + 2
  58. else
  59. subtree:add(f_sequence_no, "Invalid data (sequence number)")
  60. end
  61. -- Dissect SAT_Id (1 byte)
  62. if buffer:len() >= offset + 1 then
  63. local sat_id = buffer(offset, 1):uint() -- Get SAT Id (1st byte)
  64. --offset = offset + 1
  65. if bit.band(sat_id, 0x80) == 0x80 then --if 7th bit is set and
  66. if buffer:len() >= offset + 1 then
  67. local second = buffer(offset, 2):le_uint()
  68. if bit.band(second, 0x8000) == 0x0000 then --and 15th bit is set then unset 15th bit
  69. sat_id = buffer(offset, 2):le_uint()
  70. sat_id = bit.band(sat_id, 0xFF7F)
  71. offset = offset + 1
  72. else
  73. sat_id = buffer(offset, 2):le_uint()
  74. sat_id = bit.band(sat_id, 0x7FFF) -- and 15th bit is unset then unset the 7th bit
  75. offset = offset + 1
  76. end
  77. end
  78. end
  79. subtree:add(f_sat_id, sat_id)
  80. offset = offset + 1
  81. end
  82. -- Dissect GS_Id (1 byte)
  83. if buffer:len() >= offset + 1 then
  84. local gs_id = buffer(offset, 1):uint() -- Get SAT Id (1st byte)
  85. --offset = offset + 1
  86. if bit.band(gs_id, 0x80) == 0x80 then
  87. if buffer:len() >= offset + 1 then
  88. local second = buffer(offset, 2):le_uint()
  89. if bit.band(second, 0x8000) == 0x0000 then
  90. gs_id = buffer(offset, 2):le_uint()
  91. gs_id = bit.band(gs_id, 0xFF7F)
  92. offset = offset + 1
  93. else
  94. gs_id = buffer(offset, 2):le_uint()
  95. gs_id = bit.band(gs_id, 0x7FFF)
  96. offset = offset + 1
  97. end
  98. end
  99. end
  100. subtree:add(f_GS_Id, gs_id)
  101. offset = offset + 1
  102. end
  103. -- Dissect QoS (1 byte)
  104. if buffer:len() >= offset + 1 then
  105. subtree:add(f_qos, buffer(offset, 1))
  106. offset = offset + 1
  107. end
  108. -- Dissect SA_Id (Source Application ID) and DA_Id (Destination Application ID)
  109. if buffer:len() >= offset + 1 then
  110. local sa_id = buffer(offset, 1):uint() -- Get source Application Id (1st byte)
  111. --offset = offset + 1
  112. if bit.band(sa_id, 0x80) == 0x80 then
  113. if buffer:len() >= offset + 1 then
  114. local second = buffer(offset, 2):le_uint()
  115. if bit.band(second, 0x8000) == 0x0000 then
  116. sa_id = buffer(offset, 2):le_uint()
  117. sa_id = bit.band(sa_id, 0xFF7F)
  118. offset = offset + 1
  119. else
  120. sa_id = buffer(offset, 2):le_uint()
  121. sa_id = bit.band(sa_id, 0x7FFF)
  122. offset = offset + 1
  123. end
  124. end
  125. end
  126. subtree:add(f_sa_id, sa_id)
  127. offset = offset + 1
  128. end
  129. if buffer:len() >= offset + 1 then
  130. --subtree:add(f_DA_Id, buffer(offset, 1))
  131. local da_id = buffer(offset, 1):le_uint() -- Get Destination Application Id (1st byte)
  132. --offset = offset + 1
  133. if bit.band(da_id, 0x80) == 0x80 then
  134. if buffer:len() >= offset + 1 then
  135. local second = buffer(offset, 2):le_uint()
  136. if bit.band(second, 0x8000) == 0x0000 then
  137. da_id = buffer(offset, 2):le_uint()
  138. da_id = bit.band(da_id, 0xFF7F)
  139. offset = offset + 1
  140. else
  141. da_id = buffer(offset, 2):le_uint()
  142. da_id = bit.band(da_id, 0x7FFF)
  143. offset = offset + 1
  144. end
  145. end
  146. end
  147. subtree:add(f_da_id, da_id)
  148. offset = offset + 1
  149. end
  150. -- Dissect RM_Id (1 byte)
  151. if buffer:len() >= offset + 1 then
  152. subtree:add(f_rm_id, buffer(offset, 1))
  153. offset = offset + 1
  154. end
  155. -- Dissect TC_Id (2 bytes)
  156. -- Dissect TC_Id (2 bytes)
  157. local info_display
  158. local tc_id = buffer(offset, 1):le_uint() -- Read 1 byte for tc_id
  159. if tc_id == 100 or tc_id == 102 or tc_id == 103 then
  160. pinfo.cols.protocol = "FTM(UL)"
  161. elseif tc_id == 105 then
  162. pinfo.cols.protocol = "FTM(DL)"
  163. else
  164. pinfo.cols.protocol = "TELECOMMAND"
  165. end
  166. if buffer:len() >= offset + 2 then -- Ensure enough data is available to read 2 bytes
  167. -- Check if the 7th bit (0x80) is set in tc_id
  168. if bit.band(tc_id, 0x80) == 0x80 then
  169. if buffer:len() >= offset + 2 then -- Ensure enough data for the next 2 bytes
  170. local second = buffer(offset, 2):le_uint()
  171. if bit.band(second, 0x8000) == 0x0000 then
  172. tc_id = buffer(offset, 2):le_uint()
  173. tc_id = bit.band(tc_id, 0xFF7F)
  174. offset = offset + 1
  175. else
  176. tc_id = buffer(offset, 2):le_uint()
  177. tc_id = bit.band(tc_id, 0x7FFF)
  178. offset = offset + 1
  179. end
  180. end
  181. end
  182. -- Add tc_id to the subtree (display in dissection tree)
  183. subtree:add(f_tc_id, tc_id)
  184. -- Move the offset forward by 1 (since we initially read 1 byte)
  185. offset = offset + 1
  186. end
  187. -- Dissect TC_Len (2 bytes)
  188. local tc_len = 0 -- Declare tc_len as a local variable here
  189. if buffer:len() >= offset + 2 then
  190. tc_len = buffer(offset, 2):le_uint()
  191. subtree:add(f_tc_len, tc_len)
  192. offset = offset + 2
  193. end
  194. -- Dissect TC_Data (variable length)
  195. --local subtree2 = subtree:add(TC_TM_PROTOCOL, buffer(), TC_DATA())
  196. local data
  197. if buffer:len() >= offset + tc_len then
  198. if tc_len == 0 then
  199. subtree:add("TC DATA : NIL")
  200. else
  201. if tc_id == 621 then
  202. require("hm_dissector")
  203. data = HM_TC_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, offset)
  204. offset = offset + tc_len
  205. elseif tc_id == 100 then
  206. require("ftci_dissector")
  207. ftci_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, offset)
  208. offset = offset + tc_len
  209. elseif tc_id == 103 then
  210. require("ftfci_dissector")
  211. ftfci_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, offset)
  212. offset = offset + tc_len
  213. elseif tc_id == 102 then
  214. require("ftds_dissector")
  215. ftds_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, offset)
  216. offset = offset + tc_len
  217. elseif tc_id == 105 then
  218. require("ftsr_dissector")
  219. ftsr_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, offset)
  220. offset = offset + tc_len
  221. else
  222. for i=0,tc_len - 1 do
  223. subtree:add(f_tc_data, buffer(offset, 1))
  224. offset = offset + 1
  225. end
  226. end
  227. end
  228. end
  229. -- Check if we can dissect Ext_Header_Len
  230. if bit.band(tc_ctrl, 0x80) == 0x80 and buffer:len() >= offset + 1 then
  231. subtree:add(f_ext_header_len, buffer(offset, 1))
  232. local ext_header_len = buffer(offset, 1):uint()
  233. offset = offset + 1
  234. if buffer:len() >= offset + ext_header_len then
  235. for i=1,ext_header_len do
  236. subtree:add(f_ext_header_data, buffer(offset, 1))
  237. offset = offset + 1
  238. end
  239. end
  240. end
  241. -- Dissect CRC (1 byte)
  242. if buffer:len() >= offset + 1 then
  243. subtree:add(f_crc, buffer(offset, 1))
  244. offset = offset + 1
  245. end
  246. -- Dissect C-MAC/H-MAC (if TC Ctrl bit 4 is set)
  247. if bit.band(tc_ctrl, 0x10) == 0x10 and buffer:len() >= offset + 32 then
  248. for i=1,32 do
  249. subtree:add(f_c_mac, buffer(offset, 1))
  250. offset = offset + 1
  251. end
  252. end
  253. -- Dissect EOF (1 byte)
  254. if buffer:len() >= offset + 1 then
  255. subtree:add(f_eof1, buffer(offset, 1))
  256. end
  257. local string
  258. if tc_id == 621 then
  259. local switch = {
  260. [9] = function() return "EPS" end,
  261. [22] = function() return "ADCS" end,
  262. [14] = function() return "SBAND" end,
  263. [15] = function() return "UHF" end,
  264. [42] = function() return "SENSOR" end,
  265. [27] = function() return "OBC" end
  266. }
  267. string = (switch[data] or function() return "All Module" end)()
  268. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
  269. 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
  270. elseif tc_id == 100 then
  271. string = "FTCI FRAME"
  272. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
  273. 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
  274. elseif tc_id == 105 then
  275. string = "FTSR FRAME"
  276. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
  277. 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
  278. elseif tc_id == 102 then
  279. string = "FTDS FRAME"
  280. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
  281. 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
  282. elseif tc_id == 103 then
  283. string = "FTFCI FRAME"
  284. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
  285. 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
  286. else
  287. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id} --- for info display in wireshark
  288. pinfo.cols.info ="seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TC_ID = "..info_display[3] -- for info display in wireshark
  289. end
  290. end
  291. -----------------------------------------------------------------------------------------------------------------------------------
  292. function TM_dissector(buffer, pinfo, tree) -- OBC to GS
  293. local subtree = tree:add(TC_TM_PROTOCOL, buffer(), "TELEMETRY")
  294. -- Set the protocol column name in Wireshark
  295. -- Ensure the buffer is large enough to contain the entire structure (40 bytes)
  296. -- if buffer:len() < 40 then
  297. -- return -- Not enough data to dissect
  298. --end
  299. -- Extract the fields in order as defined in the structure
  300. subtree:add(f_sof1, buffer(4, 1):uint()) -- SOF1 in HEX
  301. subtree:add(f_sof2, buffer(5, 1):uint()) -- SOF2 in HEX
  302. subtree:add(f_tm_ctrl, buffer(6, 1):le_uint()) -- TM Ctrl in HEX
  303. -- Dissect timestamp
  304. local timestamp = buffer(7, 4):le_uint()
  305. local utc_time = os.date("!%Y-%m-%d %H:%M:%S", timestamp)
  306. subtree:add(f_timestamp, timestamp.." ".."("..utc_time..")" )
  307. subtree:add(f_sequence_no, buffer(11, 2):le_uint()) -- Sequence No in HEX
  308. -- My logic for SAT Id
  309. local magic = buffer(13, 1):le_uint()
  310. local add=13
  311. if bit.band(magic, 0x80) == 0 then
  312. subtree:add(f_sat_id, buffer(add, 1):le_uint()) -- SAT Id in HEX
  313. add=add+1
  314. else
  315. magic=buffer(add, 2):le_uint()
  316. local dummy=magic & 0x8000 --to check 7th byte is 1
  317. if dummy == 0 then
  318. magic = magic & 0xff7f -- if 15th bit is 0 set 7th bit 0
  319. else
  320. magic = magic & 0x7fff -- if 15 bit is 1 set 15th bit to 0
  321. end
  322. subtree:add(f_sat_id, magic) -- SAT Id in HEX
  323. add=add+2
  324. end
  325. -- QoS in HEX
  326. subtree:add(f_qos, buffer(add, 1):le_uint())
  327. add=add+1
  328. -- My logic for SA Id
  329. magic = buffer(add, 1):le_uint()
  330. if bit.band(magic, 0x80) == 0 then
  331. subtree:add(f_sa_id, buffer(add, 1):le_uint()) -- SA Id in HEX
  332. add=add+1
  333. else
  334. magic=buffer(add, 2):le_uint()
  335. local dummy=magic & 0x8000
  336. if dummy == 0 then
  337. magic = magic & 0xff7f
  338. else
  339. magic = magic & 0x7fff
  340. end
  341. subtree:add(f_sa_id,magic) -- SA Id in HEX
  342. add=add+2
  343. end
  344. -- My logic for DA Id
  345. magic = buffer(add, 1):uint()
  346. if bit.band(magic, 0x80) == 0 then
  347. subtree:add(f_da_id, buffer(add, 1):le_uint()) -- DA Id in HEX
  348. add=add+1
  349. else
  350. magic=buffer(add, 2):le_uint()
  351. local dummy=magic & 0x8000
  352. if dummy == 0 then
  353. magic = magic & 0xff7f
  354. else
  355. magic = magic & 0x7fff
  356. end
  357. subtree:add(f_da_id, magic) -- DA Id in HEX
  358. add=add+2
  359. end
  360. -- RM Id in HEX
  361. subtree:add(f_rm_id, buffer(add, 1):le_uint())
  362. add=add+1
  363. -- My logic for TM Id
  364. local info_display -- for display in wireshark
  365. local tm_id
  366. magic = buffer(add, 1):uint()
  367. if bit.band(magic, 0x80) == 0 then
  368. subtree:add(f_tm_id, buffer(add, 1):le_uint()) -- TM Id in HEX
  369. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,buffer(add, 1):le_uint()} --- for info display in wireshark
  370. add=add+1
  371. else
  372. magic=buffer(add, 2):le_uint()
  373. local dummy=magic & 0x8000
  374. if dummy == 0 then
  375. magic = magic & 0xff7f
  376. else
  377. magic = magic & 0x7fff
  378. end
  379. subtree:add(f_tm_id, magic) -- TM Id in HEX
  380. add=add+2
  381. end
  382. tm_id = magic
  383. if tm_id == 104 or tm_id == 106 or tm_id == 107 then
  384. pinfo.cols.protocol = "FTM(DL)"
  385. elseif tm_id == 101 then
  386. pinfo.cols.protocol = "FTM(UL)"
  387. else
  388. pinfo.cols.protocol = "TELEMETRY"
  389. end
  390. -- Co Id in HEX
  391. subtree:add(f_co_id, buffer(add, 2):le_uint())
  392. add=add+2
  393. -- TM Len in HEX
  394. local tm_len
  395. magic = buffer(add, 2):le_uint()
  396. tm_len = magic
  397. subtree:add(f_tm_len, buffer(add, 2):le_uint())
  398. add=add+2
  399. -- logic for TM Data
  400. local array
  401. --local subtree2 = subtree:add(TC_TM_PROTOCOL, buffer(), "TM_DATA")
  402. -- Dissect TM_Data (variable length)
  403. 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
  404. if tm_id == 621 then
  405. require("hm_dissector")
  406. array = HM_TM_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, add, tm_len)
  407. add = add + tm_len
  408. elseif tm_id == 815 then
  409. require("bcon")
  410. bcon_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, add, tm_len)
  411. add = add + tm_len
  412. elseif tm_id == 104 then
  413. require("ftci_dissector")
  414. ftci_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, add)
  415. add = add + tm_len
  416. elseif tm_id == 107 then
  417. require("ftfci_dissector")
  418. ftfci_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, add)
  419. add = add + tm_len
  420. elseif tm_id == 101 then
  421. require("ftsr_dissector")
  422. ftsr_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, add)
  423. add = add + tm_len
  424. elseif tm_id == 106 then
  425. require("ftds_dissector")
  426. ftds_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, add)
  427. add = add + tm_len
  428. end
  429. else
  430. for i=0,magic-1 do
  431. subtree:add(f_tm_data, buffer(add, 1):le_uint())
  432. add=add+1
  433. end
  434. end
  435. -- Ext Header Len in HEX
  436. magic = buffer(6, 1):le_uint() -- to check tm control
  437. if bit.band(magic, 0x80) == 0x80 then
  438. magic= buffer(add, 1):uint()
  439. subtree:add(f_ext_header_len, buffer(add, 1):uint())
  440. add=add+1
  441. -- logic for Ext Header Data
  442. for i=0,magic-1 do
  443. subtree:add(f_ext_header_data, buffer(add, 1):uint()) -- Ext Header Data in HEX
  444. add=add+1
  445. end
  446. end
  447. -- CRC in HEX
  448. subtree:add(f_crc, buffer(add, 1):le_uint())
  449. add=add+1
  450. -- C MAC in HEX
  451. magic = buffer(6, 1):le_uint() -- tm control
  452. if bit.band(magic, 0x10) == 0x10 then
  453. for i=1,32 do
  454. subtree:add(f_c_mac, buffer(add, 1):uint())
  455. add=add+1
  456. end
  457. end
  458. -- EOF1 in HEX
  459. subtree:add(f_eof1, buffer(add, 1):uint())
  460. local string
  461. if tm_id == 621 then
  462. local switch = {
  463. [0] = function() return "EPS" end,
  464. [1] = function() return "ADCS" end,
  465. [2] = function() return "SBAND" end,
  466. [3] = function() return "UHF" end,
  467. [4] = function() return "SENSOR" end,
  468. [5] = function() return "OBC" end,
  469. [6] = function() return "ERROR HANDLER" end
  470. }
  471. string = (switch[array[1]] or function() return "All Module" end)()
  472. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string, array[2], array[3]} --- for info display in wireshark
  473. 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
  474. elseif tm_id == 104 then
  475. string = "FTCI FRAME"
  476. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string} --- for info display in wireshark
  477. 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
  478. elseif tm_id == 101 then
  479. string = "FTSR FRAME"
  480. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string} --- for info display in wireshark
  481. 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
  482. elseif tm_id == 106 then
  483. string = "FTDS FRAME"
  484. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string} --- for info display in wireshark
  485. 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
  486. elseif tm_id == 107 then
  487. string = "FTFCI FRAME"
  488. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string} --- for info display in wireshark
  489. 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
  490. else
  491. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id} --- for info display in wireshark
  492. pinfo.cols.info ="seq_no = " ..info_display[1]..", TS = " ..info_display[2]..", TM ID = "..info_display[3] -- for info display in wireshark
  493. end
  494. -- Check if the buffer contains enough data for the expected total length
  495. --if buffer:len() < 38 + buffer(21, 2):uint() then
  496. -- subtree:add_expert_info(PI_MALFORMED, PI_WARN, "Incomplete data")
  497. --end
  498. end
  499. -- Register the dissector for udp port
  500. -------------------------------------------------------------------------------------------------------------------------------
  501. -- Dissector function
  502. function TC_TM_PROTOCOL.dissector(buffer, pinfo, tree)
  503. -- Register protocol in preferences (add this part)
  504. --my_udp_protocol:register_preference()
  505. pinfo.cols.protocol = "TC_TM"
  506. -- Create a subtree for this protocol
  507. --local subtree = tree:add(my_udp_protocol, buffer(), "TE")
  508. local direction = buffer(6, 1):uint() -- taking tM or tc control byte
  509. if direction & 0x40 == 0x40 then -- if 6th bit is set then it is TM
  510. TM_dissector(buffer, pinfo, tree) -- OBC to GS
  511. else
  512. TC_dissector(buffer, pinfo, tree) -- GS to OBC
  513. end
  514. end
  515. ------------------------------------------------------------------------------------------------------------------------------------------------
  516. -- Add a preference for the port number
  517. TC_TM_PROTOCOL.prefs.port = Pref.uint("UDP Port", 6779, "UDP port for TC_TM protocol")
  518. -- Register the dissector based on the preference
  519. function TC_TM_PROTOCOL.init()
  520. local udp_table = DissectorTable.get("udp.port")
  521. udp_table:add(TC_TM_PROTOCOL.prefs.port, TC_TM_PROTOCOL)
  522. end