monitor.py 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. # Monitor support
  2. # Copyright (c) 2016, Tieto Corporation
  3. #
  4. # This software may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. import time
  7. from remotehost import Host
  8. import config
  9. import re
  10. import traceback
  11. import logging
  12. logger = logging.getLogger()
  13. import hostapd
  14. # standalone monitor with multi iface support
  15. def create(devices, setup_params, refs, duts, monitors):
  16. mons = []
  17. mhosts = []
  18. hosts = duts + refs
  19. # choose only standalone monitors
  20. for monitor in monitors:
  21. if monitor not in hosts and monitor != "all":
  22. mons.append(monitor)
  23. for mon in mons:
  24. dev = config.get_device(devices, mon)
  25. if dev is None:
  26. continue
  27. host = Host(host = dev['hostname'],
  28. ifname = dev['ifname'],
  29. port = dev['port'],
  30. name = dev['name'])
  31. try:
  32. host.execute(["iw", "reg", "set", setup_params['country']])
  33. setup_hw = setup_params['setup_hw']
  34. ifaces = re.split('; | |, ', host.ifname)
  35. for iface in ifaces:
  36. host.execute(setup_hw + " -I " + iface + " -R 1")
  37. except:
  38. pass
  39. mhosts.append(host)
  40. return mhosts
  41. def destroy(devices, hosts):
  42. for host in hosts:
  43. stop(host)
  44. for monitor in host.monitors:
  45. host.execute(["ifconfig", monitor, "down"])
  46. def setup(host, monitor_params):
  47. if host is None:
  48. return
  49. ifaces = re.split('; | |, ', host.ifname)
  50. count = 0
  51. for param in monitor_params:
  52. try:
  53. iface = ifaces[count]
  54. except:
  55. logger.debug(traceback.format_exc())
  56. break
  57. host.execute(["ifconfig", iface, " down"])
  58. host.execute(["iw", iface, "set type monitor"])
  59. host.execute(["ifconfig", iface, "up"])
  60. status, buf = host.execute(["iw", iface, "set", "freq", param['freq'],
  61. param['bw'], param['center_freq1'],
  62. param['center_freq2']])
  63. if status != 0:
  64. logger.debug("Could not setup monitor interface: " + buf)
  65. continue
  66. host.monitors.append(iface)
  67. count = count + 1
  68. def run(host, setup_params):
  69. monitor_res = []
  70. log_monitor = ""
  71. if host is None:
  72. return None
  73. if len(host.monitors) == 0:
  74. return None
  75. try:
  76. log_dir = setup_params['log_dir']
  77. tc_name = setup_params['tc_name']
  78. except:
  79. return None
  80. tshark = "tshark"
  81. for monitor in host.monitors:
  82. host.execute(["ifconfig", monitor, "up"])
  83. tshark = tshark + " -i " + monitor
  84. log_monitor = log_monitor + "_" + monitor
  85. log = log_dir + tc_name + "_" + host.name + log_monitor + ".pcap"
  86. host.add_log(log)
  87. thread = host.execute_run([tshark, "-w", log], monitor_res)
  88. host.thread = thread
  89. def stop(host):
  90. if host is None:
  91. return
  92. if len(host.monitors) == 0:
  93. return
  94. if host.thread is None:
  95. return
  96. host.execute(["killall", "-s", "INT", "tshark"])
  97. host.wait_execute_complete(host.thread, 5)
  98. if host.thread.isAlive():
  99. raise Exception("tshark still alive")
  100. host.thread = None
  101. # Add monitor to existing interface
  102. def add(host, monitors):
  103. if host is None:
  104. return
  105. for monitor in monitors:
  106. if monitor != "all" and monitor != host.name:
  107. continue
  108. mon = "mon_" + host.ifname
  109. status, buf = host.execute(["iw", host.ifname, "interface", "add", mon,
  110. "type", "monitor"])
  111. if status == 0:
  112. host.monitors.append(mon)
  113. host.execute(["ifconfig", mon, "up"])
  114. else:
  115. logger.debug("Could not add monitor for " + host.name)
  116. def remove(host):
  117. stop(host)
  118. for monitor in host.monitors:
  119. host.execute(["iw", monitor, "del"])
  120. host.monitors.remove(monitor)
  121. # get monitor params from hostapd/wpa_supplicant
  122. def get_monitor_params(wpa, is_p2p=False):
  123. if is_p2p:
  124. get_status_field_f = wpa.get_group_status_field
  125. else:
  126. get_status_field_f = wpa.get_status_field
  127. freq = get_status_field_f("freq")
  128. bw = "20"
  129. center_freq1=""
  130. center_freq2=""
  131. vht_oper_chwidth = get_status_field_f("vht_oper_chwidth")
  132. secondary_channel = get_status_field_f("secondary_channel")
  133. vht_oper_centr_freq_seg0_idx = get_status_field_f("vht_oper_centr_freq_seg0_idx")
  134. vht_oper_centr_freq_seg1_idx = get_status_field_f("vht_oper_centr_freq_seg1_idx")
  135. if vht_oper_chwidth == "0" or vht_oper_chwidth is None:
  136. if secondary_channel == "1":
  137. bw = "40"
  138. center_freq1 = str(int(freq) + 10)
  139. elif secondary_channel == "-1":
  140. center_freq1 = str(int(freq) - 10)
  141. else:
  142. pass
  143. elif vht_oper_chwidth == "1":
  144. bw = "80"
  145. center_freq1 = str(int(vht_oper_centr_freq_seg0_idx) * 5 + 5000)
  146. elif vht_oper_chwidth == "2":
  147. bw = "160"
  148. center_freq1 = str(int(vht_oper_centr_freq_seg0_idx) * 5 + 5000)
  149. elif vht_oper_chwidth == "3":
  150. bw = "80+80"
  151. center_freq1 = str(int(vht_oper_centr_freq_seg0_idx) * 5 + 5000)
  152. center_freq2 = str(int(vht_oper_centr_freq_seg1_idx) * 5 + 5000)
  153. else:
  154. pass
  155. monitor_params = { "freq" : freq,
  156. "bw" : bw,
  157. "center_freq1" : center_freq1,
  158. "center_freq2" : center_freq2 }
  159. return monitor_params