hwsim.py 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. #
  2. # HWSIM generic netlink controller code
  3. # Copyright (c) 2014 Intel Corporation
  4. #
  5. # Author: Johannes Berg <johannes.berg@intel.com>
  6. #
  7. # This software may be distributed under the terms of the BSD license.
  8. # See README for more details.
  9. import netlink
  10. # constants
  11. HWSIM_CMD_CREATE_RADIO = 4
  12. HWSIM_CMD_DESTROY_RADIO = 5
  13. HWSIM_ATTR_CHANNELS = 9
  14. HWSIM_ATTR_RADIO_ID = 10
  15. HWSIM_ATTR_SUPPORT_P2P_DEVICE = 14
  16. HWSIM_ATTR_USE_CHANCTX = 15
  17. # the controller class
  18. class HWSimController(object):
  19. def __init__(self):
  20. self._conn = netlink.Connection(netlink.NETLINK_GENERIC)
  21. self._fid = netlink.genl_controller.get_family_id('MAC80211_HWSIM')
  22. def create_radio(self, n_channels=None, use_chanctx=False,
  23. use_p2p_device=False):
  24. attrs = []
  25. if n_channels:
  26. attrs.append(netlink.U32Attr(HWSIM_ATTR_CHANNELS, n_channels))
  27. if use_chanctx:
  28. attrs.append(netlink.FlagAttr(HWSIM_ATTR_USE_CHANCTX))
  29. if use_p2p_device:
  30. attrs.append(netlink.FlagAttr(HWSIM_ATTR_SUPPORT_P2P_DEVICE))
  31. msg = netlink.GenlMessage(self._fid, HWSIM_CMD_CREATE_RADIO,
  32. flags = netlink.NLM_F_REQUEST |
  33. netlink.NLM_F_ACK,
  34. attrs = attrs)
  35. return msg.send_and_recv(self._conn).ret
  36. def destroy_radio(self, radio_id):
  37. attrs = [netlink.U32Attr(HWSIM_ATTR_RADIO_ID, radio_id)]
  38. msg = netlink.GenlMessage(self._fid, HWSIM_CMD_DESTROY_RADIO,
  39. flags = netlink.NLM_F_REQUEST |
  40. netlink.NLM_F_ACK,
  41. attrs = attrs)
  42. msg.send_and_recv(self._conn)
  43. def create(args):
  44. print 'Created radio %d' % c.create_radio(n_channels=args.channels,
  45. use_chanctx=args.chanctx)
  46. def destroy(args):
  47. print c.destroy_radio(args.radio)
  48. if __name__ == '__main__':
  49. import argparse
  50. c = HWSimController()
  51. parser = argparse.ArgumentParser(description='send hwsim control commands')
  52. subparsers = parser.add_subparsers(help="Commands", dest='command')
  53. parser_create = subparsers.add_parser('create', help='create a radio')
  54. parser_create.add_argument('--channels', metavar='<number_of_channels>', type=int,
  55. default=0,
  56. help='Number of concurrent channels supported ' +
  57. 'by the radio. If not specified, the number ' +
  58. 'of channels specified in the ' +
  59. 'mac80211_hwsim.channels module parameter is ' +
  60. 'used')
  61. parser_create.add_argument('--chanctx', action="store_true",
  62. help='Use channel contexts, regardless of ' +
  63. 'whether the number of channels is 1 or ' +
  64. 'greater. By default channel contexts are ' +
  65. 'only used if the number of channels is ' +
  66. 'greater than 1.')
  67. parser_create.set_defaults(func=create)
  68. parser_destroy = subparsers.add_parser('destroy', help='destroy a radio')
  69. parser_destroy.add_argument('radio', metavar='<radio>', type=int,
  70. default=0,
  71. help='The number of the radio to be ' +
  72. 'destroyed (i.e., 0 for phy0, 1 for phy1...)')
  73. parser_destroy.set_defaults(func=destroy)
  74. args = parser.parse_args()
  75. args.func(args)