fib6.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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_result *res,
  12. struct fib6_table *table, const struct flowi6 *flp),
  13. TP_ARGS(net, res, 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. __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(res->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 (res->nh && res->nh->fib_nh_dev) {
  54. strlcpy(__entry->name, res->nh->fib_nh_dev->name, IFNAMSIZ);
  55. } else {
  56. strcpy(__entry->name, "-");
  57. }
  58. if (res->f6i == net->ipv6.fib6_null_entry) {
  59. in6 = (struct in6_addr *)__entry->gw;
  60. *in6 = in6addr_any;
  61. } else if (res->nh) {
  62. in6 = (struct in6_addr *)__entry->gw;
  63. *in6 = res->nh->fib_nh_gw6;
  64. }
  65. ),
  66. 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",
  67. __entry->tb_id, __entry->oif, __entry->iif, __entry->proto,
  68. __entry->src, __entry->sport, __entry->dst, __entry->dport,
  69. __entry->tos, __entry->scope, __entry->flags,
  70. __entry->name, __entry->gw, __entry->err)
  71. );
  72. #endif /* _TRACE_FIB6_H */
  73. /* This part must be outside protection */
  74. #include <trace/define_trace.h>