hm_dissector.lua 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. function HM_TC_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset)
  2. local f_sub_mod_id = ProtoField.uint8("TC_TM_PROTOCOL.sub_mod_id", "SUB MODULE ID", base.DEC)
  3. local f_Queue_id = ProtoField.uint8("TC_TM_PROTOCOL.Queue_id", "QUEUE ID", base.DEC)
  4. local f_priority = ProtoField.uint8("TC_TM_PROTOCOL.priority", "PRIORITY", base.DEC)
  5. local f_opt_sel_sin_mul_que = ProtoField.uint8("TC_TM_PROTOCOL.opt_sel_sin_mul_que", "Option To Select Single Or Multiple Queue", base.DEC)
  6. -- Add the fields to the protocol
  7. TC_TM_PROTOCOL.fields = { f_sub_mod_id, f_Queue_id, f_priority, f_opt_sel_sin_mul_que }
  8. --local info_display
  9. subtree1 = subtree:add(TC_TM_PROTOCOL, buffer(), "HEALTH_METRIC_DATA")
  10. --dissect submodule_id
  11. local data1 = buffer(offset,1):le_uint()
  12. subtree1:add(f_sub_mod_id , data1)
  13. offset = offset + 1
  14. --dissect queue_id
  15. local data2 = buffer(offset,1):le_uint()
  16. subtree1:add(f_Queue_id, data2)
  17. offset = offset + 1
  18. --dissect f_priority
  19. local data3 = buffer(offset,1):le_uint()
  20. subtree1:add(f_priority, data3)
  21. offset = offset + 1
  22. --dissect option to select_single or multiple queue
  23. local data4 = buffer(offset,1):le_uint()
  24. subtree1:add(f_opt_sel_sin_mul_que, data4)
  25. --info_display= {data1} --- for info display in wireshark
  26. --pinfo.cols.info ="sub_mod_id" ..info_display[1]
  27. return data1
  28. end
  29. function HM_TM_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset, len)
  30. local f_sub_mod_id = ProtoField.uint8("TC_TM_PROTOCOL.sub_mod_id", "SUB MODULE ID", base.DEC)
  31. local f_Queue_id = ProtoField.uint8("TC_TM_PROTOCOL.Queue_id", "QUEUE ID", base.DEC)
  32. local f_num_of_instance = ProtoField.uint16("TC_TM_PROTOCOL.num_of_instance", "Number of Instance", base.DEC)
  33. local f_Health_Data = ProtoField.uint8("TC_TM_PROTOCOL.Health_Data", "Health Data", base.DEC)
  34. -- Add the fields to the protocol
  35. TC_TM_PROTOCOL.fields = { f_sub_mod_id, f_Queue_id, f_num_of_instance, f_Health_Data }
  36. local len1 = 0
  37. --local info_display
  38. local subtree1 = subtree:add(TC_TM_PROTOCOL, buffer(), "HEALTH_METRIC_DATA")
  39. --dissect submodule_id
  40. local data1 = buffer(offset,1):le_uint()
  41. subtree1:add(f_sub_mod_id , data1)
  42. offset = offset + 1
  43. --dissect queue_id
  44. local data2 = buffer(offset,1):le_uint()
  45. subtree1:add(f_Queue_id, data2)
  46. offset = offset + 1
  47. --dissect f_num_of_instance
  48. local data3 = buffer(offset,2):le_uint()
  49. subtree1:add(f_num_of_instance, data3)
  50. offset = offset + 2
  51. --dissect Health_Data
  52. len =len - 3
  53. if data1 == 5 then
  54. require("obc_dissector")
  55. --for i=0, data3-1 do
  56. obc_dissector(buffer, pinfo, subtree1, TC_TM_PROTOCOL, offset, data3)
  57. else
  58. for i=0, len-1 do
  59. local data4 = buffer(offset,1):le_uint()
  60. subtree1:add(f_Health_Data, data4)
  61. offset = offset + 1
  62. end
  63. end
  64. local array = {data1, data2, data3}
  65. return array
  66. end