plugin_mac80211.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * Copyright (C) 2009 Johannes Berg <johannes@sipsolutions.net>
  3. *
  4. * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation;
  8. * version 2.1 of the License (not later!)
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this program; if not, see <http://www.gnu.org/licenses>
  17. *
  18. * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  19. */
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <string.h>
  23. #include "event-parse.h"
  24. #define INDENT 65
  25. static void print_string(struct trace_seq *s, struct event_format *event,
  26. const char *name, const void *data)
  27. {
  28. struct format_field *f = pevent_find_field(event, name);
  29. int offset;
  30. int length;
  31. if (!f) {
  32. trace_seq_printf(s, "NOTFOUND:%s", name);
  33. return;
  34. }
  35. offset = f->offset;
  36. length = f->size;
  37. if (!strncmp(f->type, "__data_loc", 10)) {
  38. unsigned long long v;
  39. if (pevent_read_number_field(f, data, &v)) {
  40. trace_seq_printf(s, "invalid_data_loc");
  41. return;
  42. }
  43. offset = v & 0xffff;
  44. length = v >> 16;
  45. }
  46. trace_seq_printf(s, "%.*s", length, (char *)data + offset);
  47. }
  48. #define SF(fn) pevent_print_num_field(s, fn ":%d", event, fn, record, 0)
  49. #define SFX(fn) pevent_print_num_field(s, fn ":%#x", event, fn, record, 0)
  50. #define SP() trace_seq_putc(s, ' ')
  51. static int drv_bss_info_changed(struct trace_seq *s,
  52. struct pevent_record *record,
  53. struct event_format *event, void *context)
  54. {
  55. void *data = record->data;
  56. print_string(s, event, "wiphy_name", data);
  57. trace_seq_printf(s, " vif:");
  58. print_string(s, event, "vif_name", data);
  59. pevent_print_num_field(s, "(%d)", event, "vif_type", record, 1);
  60. trace_seq_printf(s, "\n%*s", INDENT, "");
  61. SF("assoc"); SP();
  62. SF("aid"); SP();
  63. SF("cts"); SP();
  64. SF("shortpre"); SP();
  65. SF("shortslot"); SP();
  66. SF("dtimper"); SP();
  67. trace_seq_printf(s, "\n%*s", INDENT, "");
  68. SF("bcnint"); SP();
  69. SFX("assoc_cap"); SP();
  70. SFX("basic_rates"); SP();
  71. SF("enable_beacon");
  72. trace_seq_printf(s, "\n%*s", INDENT, "");
  73. SF("ht_operation_mode");
  74. return 0;
  75. }
  76. int PEVENT_PLUGIN_LOADER(struct pevent *pevent)
  77. {
  78. pevent_register_event_handler(pevent, -1, "mac80211",
  79. "drv_bss_info_changed",
  80. drv_bss_info_changed, NULL);
  81. return 0;
  82. }
  83. void PEVENT_PLUGIN_UNLOADER(struct pevent *pevent)
  84. {
  85. pevent_unregister_event_handler(pevent, -1, "mac80211",
  86. "drv_bss_info_changed",
  87. drv_bss_info_changed, NULL);
  88. }