tc_tm_protocols.lua 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648
  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 == 105 or tc_id == 102 or tc_id == 103 then
  160. pinfo.cols.protocol = "FTM"
  161. else
  162. pinfo.cols.protocol = "TELECOMMAND"
  163. end
  164. if buffer:len() >= offset + 2 then -- Ensure enough data is available to read 2 bytes
  165. -- Check if the 7th bit (0x80) is set in tc_id
  166. if bit.band(tc_id, 0x80) == 0x80 then
  167. if buffer:len() >= offset + 2 then -- Ensure enough data for the next 2 bytes
  168. local second = buffer(offset, 2):le_uint()
  169. if bit.band(second, 0x8000) == 0x0000 then
  170. tc_id = buffer(offset, 2):le_uint()
  171. tc_id = bit.band(tc_id, 0xFF7F)
  172. offset = offset + 1
  173. else
  174. tc_id = buffer(offset, 2):le_uint()
  175. tc_id = bit.band(tc_id, 0x7FFF)
  176. offset = offset + 1
  177. end
  178. end
  179. end
  180. -- Add tc_id to the subtree (display in dissection tree)
  181. subtree:add(f_tc_id, tc_id)
  182. -- Move the offset forward by 1 (since we initially read 1 byte)
  183. offset = offset + 1
  184. end
  185. -- Dissect TC_Len (2 bytes)
  186. local tc_len = 0 -- Declare tc_len as a local variable here
  187. if buffer:len() >= offset + 2 then
  188. tc_len = buffer(offset, 2):le_uint()
  189. subtree:add(f_tc_len, tc_len)
  190. offset = offset + 2
  191. end
  192. -- Dissect TC_Data (variable length)
  193. --local subtree2 = subtree:add(TC_TM_PROTOCOL, buffer(), TC_DATA())
  194. local data
  195. if buffer:len() >= offset + tc_len then
  196. if tc_len == 0 then
  197. subtree:add("TC DATA : NIL")
  198. else
  199. if tc_id == 621 then
  200. require("hm_dissector")
  201. data = HM_TC_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset)
  202. offset = offset + tc_len
  203. elseif tc_id == 100 then
  204. require("ftci_dissector")
  205. ftci_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset)
  206. offset = offset + tc_len
  207. elseif tc_id == 103 then
  208. require("ftfci_dissector")
  209. ftfci_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset)
  210. offset = offset + tc_len
  211. elseif tc_id == 102 then
  212. require("ftds_dissector")
  213. ftds_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset)
  214. offset = offset + tc_len
  215. elseif tc_id == 105 then
  216. require("ftsr_dissector")
  217. ftsr_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset)
  218. offset = offset + tc_len
  219. else
  220. for i=0,tc_len - 1 do
  221. subtree:add(f_tc_data, buffer(offset, 1))
  222. offset = offset + 1
  223. end
  224. end
  225. end
  226. end
  227. -- Check if we can dissect Ext_Header_Len
  228. if bit.band(tc_ctrl, 0x80) == 0x80 and buffer:len() >= offset + 1 then
  229. subtree:add(f_ext_header_len, buffer(offset, 1))
  230. local ext_header_len = buffer(offset, 1):uint()
  231. offset = offset + 1
  232. if buffer:len() >= offset + ext_header_len then
  233. for i=1,ext_header_len do
  234. subtree:add(f_ext_header_data, buffer(offset, 1))
  235. offset = offset + 1
  236. end
  237. end
  238. end
  239. -- Dissect CRC (1 byte)
  240. if buffer:len() >= offset + 1 then
  241. subtree:add(f_crc, buffer(offset, 1))
  242. offset = offset + 1
  243. end
  244. -- Dissect C-MAC/H-MAC (if TC Ctrl bit 4 is set)
  245. if bit.band(tc_ctrl, 0x10) == 0x10 and buffer:len() >= offset + 32 then
  246. for i=1,32 do
  247. subtree:add(f_c_mac, buffer(offset, 1))
  248. offset = offset + 1
  249. end
  250. end
  251. -- Dissect EOF (1 byte)
  252. if buffer:len() >= offset + 1 then
  253. subtree:add(f_eof1, buffer(offset, 1))
  254. end
  255. local string
  256. if tc_id == 621 then
  257. local switch = {
  258. [9] = function() return "EPS" end,
  259. [22] = function() return "ADCS" end,
  260. [14] = function() return "SBAND" end,
  261. [15] = function() return "UHF" end,
  262. [42] = function() return "SENSOR" end,
  263. [27] = function() return "OBC" end
  264. }
  265. string = (switch[data] or function() return "All Module" end)()
  266. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
  267. 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
  268. elseif tc_id == 100 then
  269. string = "FTCI FRAME"
  270. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
  271. 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
  272. elseif tc_id == 105 then
  273. string = "FTSR FRAME"
  274. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
  275. 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
  276. elseif tc_id == 102 then
  277. string = "FTDS FRAME"
  278. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
  279. 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
  280. elseif tc_id == 103 then
  281. string = "FTFCI FRAME"
  282. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
  283. 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
  284. else
  285. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id} --- for info display in wireshark
  286. pinfo.cols.info ="seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TC_ID = "..info_display[3] -- for info display in wireshark
  287. end
  288. end
  289. -----------------------------------------------------------------------------------------------------------------------------------
  290. function TM_dissector(buffer, pinfo, tree) -- OBC to GS
  291. local subtree = tree:add(TC_TM_PROTOCOL, buffer(), "TELEMETRY")
  292. -- Set the protocol column name in Wireshark
  293. -- Ensure the buffer is large enough to contain the entire structure (40 bytes)
  294. -- if buffer:len() < 40 then
  295. -- return -- Not enough data to dissect
  296. --end
  297. -- Extract the fields in order as defined in the structure
  298. subtree:add(f_sof1, buffer(4, 1):uint()) -- SOF1 in HEX
  299. subtree:add(f_sof2, buffer(5, 1):uint()) -- SOF2 in HEX
  300. subtree:add(f_tm_ctrl, buffer(6, 1):le_uint()) -- TM Ctrl in HEX
  301. -- Dissect timestamp
  302. local timestamp = buffer(7, 4):le_uint()
  303. local utc_time = os.date("!%Y-%m-%d %H:%M:%S", timestamp)
  304. subtree:add(f_timestamp, timestamp.." ".."("..utc_time..")" )
  305. subtree:add(f_sequence_no, buffer(11, 2):le_uint()) -- Sequence No in HEX
  306. -- My logic for SAT Id
  307. local magic = buffer(13, 1):le_uint()
  308. local add=13
  309. if bit.band(magic, 0x80) == 0 then
  310. subtree:add(f_sat_id, buffer(add, 1):le_uint()) -- SAT Id in HEX
  311. add=add+1
  312. else
  313. magic=buffer(add, 2):le_uint()
  314. local dummy=magic & 0x8000 --to check 7th byte is 1
  315. if dummy == 0 then
  316. magic = magic & 0xff7f -- if 15th bit is 0 set 7th bit 0
  317. else
  318. magic = magic & 0x7fff -- if 15 bit is 1 set 15th bit to 0
  319. end
  320. subtree:add(f_sat_id, magic) -- SAT Id in HEX
  321. add=add+2
  322. end
  323. -- QoS in HEX
  324. subtree:add(f_qos, buffer(add, 1):le_uint())
  325. add=add+1
  326. -- My logic for SA Id
  327. magic = buffer(add, 1):le_uint()
  328. if bit.band(magic, 0x80) == 0 then
  329. subtree:add(f_sa_id, buffer(add, 1):le_uint()) -- SA Id in HEX
  330. add=add+1
  331. else
  332. magic=buffer(add, 2):le_uint()
  333. local dummy=magic & 0x8000
  334. if dummy == 0 then
  335. magic = magic & 0xff7f
  336. else
  337. magic = magic & 0x7fff
  338. end
  339. subtree:add(f_sa_id,magic) -- SA Id in HEX
  340. add=add+2
  341. end
  342. -- My logic for DA Id
  343. magic = buffer(add, 1):uint()
  344. if bit.band(magic, 0x80) == 0 then
  345. subtree:add(f_da_id, buffer(add, 1):le_uint()) -- DA Id in HEX
  346. add=add+1
  347. else
  348. magic=buffer(add, 2):le_uint()
  349. local dummy=magic & 0x8000
  350. if dummy == 0 then
  351. magic = magic & 0xff7f
  352. else
  353. magic = magic & 0x7fff
  354. end
  355. subtree:add(f_da_id, magic) -- DA Id in HEX
  356. add=add+2
  357. end
  358. -- RM Id in HEX
  359. subtree:add(f_rm_id, buffer(add, 1):le_uint())
  360. add=add+1
  361. -- My logic for TM Id
  362. local info_display -- for display in wireshark
  363. local tm_id
  364. magic = buffer(add, 1):uint()
  365. if bit.band(magic, 0x80) == 0 then
  366. subtree:add(f_tm_id, buffer(add, 1):le_uint()) -- TM Id in HEX
  367. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,buffer(add, 1):le_uint()} --- for info display in wireshark
  368. add=add+1
  369. else
  370. magic=buffer(add, 2):le_uint()
  371. local dummy=magic & 0x8000
  372. if dummy == 0 then
  373. magic = magic & 0xff7f
  374. else
  375. magic = magic & 0x7fff
  376. end
  377. subtree:add(f_tm_id, magic) -- TM Id in HEX
  378. add=add+2
  379. end
  380. tm_id = magic
  381. if tm_id == 104 or tm_id == 101 or tm_id == 106 or tm_id == 107 then
  382. pinfo.cols.protocol = "FTM"
  383. else
  384. pinfo.cols.protocol = "TELEMETRY"
  385. end
  386. -- Co Id in HEX
  387. subtree:add(f_co_id, buffer(add, 2):le_uint())
  388. add=add+2
  389. -- TM Len in HEX
  390. local tm_len
  391. magic = buffer(add, 2):le_uint()
  392. tm_len = magic
  393. subtree:add(f_tm_len, buffer(add, 2):le_uint())
  394. add=add+2
  395. -- logic for TM Data
  396. local array
  397. --local subtree2 = subtree:add(TC_TM_PROTOCOL, buffer(), "TM_DATA")
  398. -- Dissect TM_Data (variable length)
  399. 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
  400. if tm_id == 621 then
  401. require("hm_dissector")
  402. array = HM_TM_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add, tm_len)
  403. add = add + tm_len
  404. elseif tm_id == 815 then
  405. require("bcon")
  406. bcon_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add, tm_len)
  407. add = add + tm_len
  408. elseif tm_id == 104 then
  409. require("ftci_dissector")
  410. ftci_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add)
  411. add = add + tm_len
  412. elseif tm_id == 107 then
  413. require("ftfci_dissector")
  414. ftfci_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add)
  415. add = add + tm_len
  416. elseif tm_id == 101 then
  417. require("ftsr_dissector")
  418. ftsr_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add)
  419. add = add + tm_len
  420. elseif tm_id == 106 then
  421. require("ftds_dissector")
  422. ftds_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add)
  423. add = add + tm_len
  424. end
  425. else
  426. for i=0,magic-1 do
  427. subtree:add(f_tm_data, buffer(add, 1):le_uint())
  428. add=add+1
  429. end
  430. end
  431. -- Ext Header Len in HEX
  432. magic = buffer(6, 1):le_uint() -- to check tm control
  433. if bit.band(magic, 0x80) == 0x80 then
  434. magic= buffer(add, 1):uint()
  435. subtree:add(f_ext_header_len, buffer(add, 1):uint())
  436. add=add+1
  437. -- logic for Ext Header Data
  438. for i=0,magic-1 do
  439. subtree:add(f_ext_header_data, buffer(add, 1):uint()) -- Ext Header Data in HEX
  440. add=add+1
  441. end
  442. end
  443. -- CRC in HEX
  444. subtree:add(f_crc, buffer(add, 1):le_uint())
  445. add=add+1
  446. -- C MAC in HEX
  447. magic = buffer(6, 1):le_uint() -- tm control
  448. if bit.band(magic, 0x10) == 0x10 then
  449. for i=1,32 do
  450. subtree:add(f_c_mac, buffer(add, 1):uint())
  451. add=add+1
  452. end
  453. end
  454. -- EOF1 in HEX
  455. subtree:add(f_eof1, buffer(add, 1):uint())
  456. local string
  457. if tm_id == 621 then
  458. local switch = {
  459. [0] = function() return "EPS" end,
  460. [1] = function() return "ADCS" end,
  461. [2] = function() return "SBAND" end,
  462. [3] = function() return "UHF" end,
  463. [4] = function() return "SENSOR" end,
  464. [5] = function() return "OBC" end,
  465. [6] = function() return "ERROR HANDLER" end
  466. }
  467. string = (switch[array[1]] or function() return "All Module" end)()
  468. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string, array[2], array[3]} --- for info display in wireshark
  469. 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
  470. elseif tm_id == 104 then
  471. string = "FTCI FRAME"
  472. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string} --- for info display in wireshark
  473. 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
  474. elseif tm_id == 101 then
  475. string = "FTSR 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 == 106 then
  479. string = "FTDS 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 == 107 then
  483. string = "FTFCI 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. else
  487. info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id} --- for info display in wireshark
  488. pinfo.cols.info ="seq_no = " ..info_display[1]..", TS = " ..info_display[2]..", TM ID = "..info_display[3] -- for info display in wireshark
  489. end
  490. -- Check if the buffer contains enough data for the expected total length
  491. --if buffer:len() < 38 + buffer(21, 2):uint() then
  492. -- subtree:add_expert_info(PI_MALFORMED, PI_WARN, "Incomplete data")
  493. --end
  494. end
  495. -- Register the dissector for udp port
  496. -------------------------------------------------------------------------------------------------------------------------------
  497. -- Dissector function
  498. function TC_TM_PROTOCOL.dissector(buffer, pinfo, tree)
  499. -- Register protocol in preferences (add this part)
  500. --my_udp_protocol:register_preference()
  501. pinfo.cols.protocol = "TC_TM"
  502. -- Create a subtree for this protocol
  503. --local subtree = tree:add(my_udp_protocol, buffer(), "TE")
  504. local direction = buffer(6, 1):uint() -- taking tM or tc control byte
  505. if direction & 0x40 == 0x40 then -- if 6th bit is set then it is TM
  506. TM_dissector(buffer, pinfo, tree) -- OBC to GS
  507. else
  508. TC_dissector(buffer, pinfo, tree) -- GS to OBC
  509. end
  510. end
  511. ------------------------------------------------------------------------------------------------------------------------------------------------
  512. -- Add a preference for the port number
  513. TC_TM_PROTOCOL.prefs.port = Pref.uint("UDP Port", 6779, "UDP port for TC_TM protocol")
  514. -- Register the dissector based on the preference
  515. function TC_TM_PROTOCOL.init()
  516. local udp_table = DissectorTable.get("udp.port")
  517. udp_table:add(TC_TM_PROTOCOL.prefs.port, TC_TM_PROTOCOL)
  518. end