fib6.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #undef TRACE_SYSTEM
  3. #define TRACE_SYSTEM fib6
  4. #if !defined(_TRACE_FIB6_H) || defined(TRACE_HEADER_MULTI_READ)
  5. #define _TRACE_FIB6_H
  6. #include <linux/in6.h>
  7. #include <net/flow.h>
  8. #include <net/ip6_fib.h>
  9. #include <linux/tracepoint.h>
  10. TRACE_EVENT(fib6_table_lookup,
  11. TP_PROTO(const struct net *net, const struct fib6_info *f6i,
  12. struct fib6_table *table, const struct flowi6 *flp),
  13. TP_ARGS(net, f6i, table, flp),
  14. TP_STRUCT__entry(
  15. __field( u32, tb_id )
  16. __field( int, err )
  17. __field( int, oif )
  18. __field( int, iif )
  19. __field( __u8, tos )
  20. __field( __u8, scope )
  21. __field( __u8, flags )
  22. __array( __u8, src, 16 )
  23. __array( __u8, dst, 16 )
  24. __field( u16, sport )
  25. __field( u16, dport )
  26. __field( u8, proto )
  27. __field( u8, rt_type )
  28. __dynamic_array( char, name, IFNAMSIZ )
  29. __array( __u8, gw, 16 )
  30. ),
  31. TP_fast_assign(
  32. struct in6_addr *in6;
  33. __entry->tb_id = table->tb6_id;
  34. __entry->err = ip6_rt_type_to_error(f6i->fib6_type);
  35. __entry->oif = flp->flowi6_oif;
  36. __entry->iif = flp->flowi6_iif;
  37. __entry->tos = ip6_tclass(flp->flowlabel);
  38. __entry->scope = flp->flowi6_scope;
  39. __entry->flags = flp->flowi6_flags;
  40. in6 = (struct in6_addr *)__entry->src;
  41. *in6 = flp->saddr;
  42. in6 = (struct in6_addr *)__entry->dst;
  43. *in6 = flp->daddr;
  44. __entry->proto = flp->flowi6_proto;
  45. if (__entry->proto == IPPROTO_TCP ||
  46. __entry->proto == IPPROTO_UDP) {
  47. __entry->sport = ntohs(flp->fl6_sport);
  48. __entry->dport = ntohs(flp->fl6_dport);
  49. } else {
  50. __entry->sport = 0;
  51. __entry->dport = 0;
  52. }
  53. if (f6i->fib6_nh.nh_dev) {
  54. __assign_str(name, f6i->fib6_nh.nh_dev);
  55. } else {
  56. __assign_str(name, "-");
  57. }
  58. if (f6i == net->ipv6.fib6_null_entry) {
  59. struct in6_addr in6_zero = {};
  60. in6 = (struct in6_addr *)__entry->gw;
  61. *in6 = in6_zero;
  62. } else if (f6i) {
  63. in6 = (struct in6_addr *)__entry->gw;
  64. *in6 = f6i->fib6_nh.nh_gw;
  65. }
  66. ),
  67. TP_printk("table %3u oif %d iif %d proto %u %pI6c/%u -> %pI6c/%u tos %d scope %d flags %x ==> dev %s gw %pI6c err %d",
  68. __entry->tb_id, __entry->oif, __entry->iif, __entry->proto,
  69. __entry->src, __entry->sport, __entry->dst, __entry->dport,
  70. __entry->tos, __entry->scope, __entry->flags,
  71. __get_str(name), __entry->gw, __entry->err)
  72. );
  73. #endif /* _TRACE_FIB6_H */
  74. /* This part must be outside protection */
  75. #include <trace/define_trace.h>