Blame view

net/tipc/trace.h 13 KB
b4b9771bc   Tuong Lien   tipc: enable trac...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  /*
   * net/tipc/trace.h: TIPC tracepoints
   *
   * Copyright (c) 2018, Ericsson AB
   * All rights reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions and the following disclaimer.
   * 2. Redistributions in binary form must reproduce the above copyright
   *    notice, this list of conditions and the following disclaimer in the
   *    documentation and/or other materials provided with the distribution.
   * 3. Neither the names of the copyright holders nor the names of its
   *    contributors may be used to endorse or promote products derived from
   *    this software without specific prior written permission.
   *
   * Alternatively, this software may be distributed under the terms of the
   * GNU General Public License ("GPL") version 2 as published by the Free
   * Software Foundation.
   *
   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "ASIS"
   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,THE
   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   * POSSIBILITY OF SUCH DAMAGE.
   */
  
  #undef TRACE_SYSTEM
  #define TRACE_SYSTEM tipc
  
  #if !defined(_TIPC_TRACE_H) || defined(TRACE_HEADER_MULTI_READ)
  #define _TIPC_TRACE_H
  
  #include <linux/tracepoint.h>
  #include "core.h"
  #include "link.h"
  #include "socket.h"
  #include "node.h"
  
  #define SKB_LMIN	(100)
  #define SKB_LMAX	(SKB_LMIN * 2)
  #define LIST_LMIN	(SKB_LMIN * 3)
  #define LIST_LMAX	(SKB_LMIN * 11)
  #define SK_LMIN		(SKB_LMIN * 2)
  #define SK_LMAX		(SKB_LMIN * 11)
  #define LINK_LMIN	(SKB_LMIN)
  #define LINK_LMAX	(SKB_LMIN * 16)
  #define NODE_LMIN	(SKB_LMIN)
  #define NODE_LMAX	(SKB_LMIN * 11)
  
  #ifndef __TIPC_TRACE_ENUM
  #define __TIPC_TRACE_ENUM
  enum {
  	TIPC_DUMP_NONE		= 0,
  
  	TIPC_DUMP_TRANSMQ	= 1,
  	TIPC_DUMP_BACKLOGQ	= (1 << 1),
  	TIPC_DUMP_DEFERDQ	= (1 << 2),
  	TIPC_DUMP_INPUTQ	= (1 << 3),
  	TIPC_DUMP_WAKEUP        = (1 << 4),
  
  	TIPC_DUMP_SK_SNDQ	= (1 << 8),
  	TIPC_DUMP_SK_RCVQ	= (1 << 9),
  	TIPC_DUMP_SK_BKLGQ	= (1 << 10),
  	TIPC_DUMP_ALL		= 0xffffu
  };
  #endif
26574db0c   Tuong Lien   tipc: add trace_e...
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
  /* Link & Node FSM states: */
  #define state_sym(val)							  \
  	__print_symbolic(val,						  \
  			{(0xe),		"ESTABLISHED"			},\
  			{(0xe << 4),	"ESTABLISHING"			},\
  			{(0x1 << 8),	"RESET"				},\
  			{(0x2 << 12),	"RESETTING"			},\
  			{(0xd << 16),	"PEER_RESET"			},\
  			{(0xf << 20),	"FAILINGOVER"			},\
  			{(0xc << 24),	"SYNCHING"			},\
  			{(0xdd),	"SELF_DOWN_PEER_DOWN"		},\
  			{(0xaa),	"SELF_UP_PEER_UP"		},\
  			{(0xd1),	"SELF_DOWN_PEER_LEAVING"	},\
  			{(0xac),	"SELF_UP_PEER_COMING"		},\
  			{(0xca),	"SELF_COMING_PEER_UP"		},\
  			{(0x1d),	"SELF_LEAVING_PEER_DOWN"	},\
  			{(0xf0),	"FAILINGOVER"			},\
  			{(0xcc),	"SYNCHING"			})
  
  /* Link & Node FSM events: */
  #define evt_sym(val)							  \
  	__print_symbolic(val,						  \
  			{(0xec1ab1e),	"ESTABLISH_EVT"			},\
  			{(0x9eed0e),	"PEER_RESET_EVT"		},\
  			{(0xfa110e),	"FAILURE_EVT"			},\
  			{(0x10ca1d0e),	"RESET_EVT"			},\
  			{(0xfa110bee),	"FAILOVER_BEGIN_EVT"		},\
  			{(0xfa110ede),	"FAILOVER_END_EVT"		},\
  			{(0xc1ccbee),	"SYNCH_BEGIN_EVT"		},\
  			{(0xc1ccede),	"SYNCH_END_EVT"			},\
  			{(0xece),	"SELF_ESTABL_CONTACT_EVT"	},\
  			{(0x1ce),	"SELF_LOST_CONTACT_EVT"		},\
  			{(0x9ece),	"PEER_ESTABL_CONTACT_EVT"	},\
  			{(0x91ce),	"PEER_LOST_CONTACT_EVT"		},\
  			{(0xfbe),	"FAILOVER_BEGIN_EVT"		},\
  			{(0xfee),	"FAILOVER_END_EVT"		},\
  			{(0xcbe),	"SYNCH_BEGIN_EVT"		},\
  			{(0xcee),	"SYNCH_END_EVT"			})
cf5f55f7f   Tuong Lien   tipc: add trace_e...
114
115
116
117
118
119
120
121
122
123
  /* Bearer, net device events: */
  #define dev_evt_sym(val)						  \
  	__print_symbolic(val,						  \
  			{(NETDEV_CHANGE),	"NETDEV_CHANGE"		},\
  			{(NETDEV_GOING_DOWN),	"NETDEV_GOING_DOWN"	},\
  			{(NETDEV_UP),		"NETDEV_UP"		},\
  			{(NETDEV_CHANGEMTU),	"NETDEV_CHANGEMTU"	},\
  			{(NETDEV_CHANGEADDR),	"NETDEV_CHANGEADDR"	},\
  			{(NETDEV_UNREGISTER),	"NETDEV_UNREGISTER"	},\
  			{(NETDEV_CHANGENAME),	"NETDEV_CHANGENAME"	})
01e661ebf   Tuong Lien   tipc: add trace_e...
124
  extern unsigned long sysctl_tipc_sk_filter[5] __read_mostly;
b4b9771bc   Tuong Lien   tipc: enable trac...
125
126
127
128
129
  int tipc_skb_dump(struct sk_buff *skb, bool more, char *buf);
  int tipc_list_dump(struct sk_buff_head *list, bool more, char *buf);
  int tipc_sk_dump(struct sock *sk, u16 dqueues, char *buf);
  int tipc_link_dump(struct tipc_link *l, u16 dqueues, char *buf);
  int tipc_node_dump(struct tipc_node *n, bool more, char *buf);
01e661ebf   Tuong Lien   tipc: add trace_e...
130
  bool tipc_sk_filtering(struct sock *sk);
b4b9771bc   Tuong Lien   tipc: enable trac...
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
  
  DECLARE_EVENT_CLASS(tipc_skb_class,
  
  	TP_PROTO(struct sk_buff *skb, bool more, const char *header),
  
  	TP_ARGS(skb, more, header),
  
  	TP_STRUCT__entry(
  		__string(header, header)
  		__dynamic_array(char, buf, (more) ? SKB_LMAX : SKB_LMIN)
  	),
  
  	TP_fast_assign(
  		__assign_str(header, header);
  		tipc_skb_dump(skb, more, __get_str(buf));
  	),
  
  	TP_printk("%s
  %s", __get_str(header), __get_str(buf))
  )
  
  #define DEFINE_SKB_EVENT(name) \
  DEFINE_EVENT(tipc_skb_class, name, \
  	TP_PROTO(struct sk_buff *skb, bool more, const char *header), \
  	TP_ARGS(skb, more, header))
  DEFINE_SKB_EVENT(tipc_skb_dump);
26574db0c   Tuong Lien   tipc: add trace_e...
157
158
  DEFINE_SKB_EVENT(tipc_proto_build);
  DEFINE_SKB_EVENT(tipc_proto_rcv);
b4b9771bc   Tuong Lien   tipc: enable trac...
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
  
  DECLARE_EVENT_CLASS(tipc_list_class,
  
  	TP_PROTO(struct sk_buff_head *list, bool more, const char *header),
  
  	TP_ARGS(list, more, header),
  
  	TP_STRUCT__entry(
  		__string(header, header)
  		__dynamic_array(char, buf, (more) ? LIST_LMAX : LIST_LMIN)
  	),
  
  	TP_fast_assign(
  		__assign_str(header, header);
  		tipc_list_dump(list, more, __get_str(buf));
  	),
  
  	TP_printk("%s
  %s", __get_str(header), __get_str(buf))
  );
  
  #define DEFINE_LIST_EVENT(name) \
  DEFINE_EVENT(tipc_list_class, name, \
  	TP_PROTO(struct sk_buff_head *list, bool more, const char *header), \
  	TP_ARGS(list, more, header))
  DEFINE_LIST_EVENT(tipc_list_dump);
  
  DECLARE_EVENT_CLASS(tipc_sk_class,
  
  	TP_PROTO(struct sock *sk, struct sk_buff *skb, u16 dqueues,
  		 const char *header),
  
  	TP_ARGS(sk, skb, dqueues, header),
  
  	TP_STRUCT__entry(
  		__string(header, header)
  		__field(u32, portid)
  		__dynamic_array(char, buf, (dqueues) ? SK_LMAX : SK_LMIN)
  		__dynamic_array(char, skb_buf, (skb) ? SKB_LMIN : 1)
  	),
  
  	TP_fast_assign(
  		__assign_str(header, header);
  		__entry->portid = tipc_sock_get_portid(sk);
  		tipc_sk_dump(sk, dqueues, __get_str(buf));
  		if (skb)
  			tipc_skb_dump(skb, false, __get_str(skb_buf));
  		else
  			*(__get_str(skb_buf)) = '\0';
  	),
  
  	TP_printk("<%u> %s
  %s%s", __entry->portid, __get_str(header),
  		  __get_str(skb_buf), __get_str(buf))
  );
01e661ebf   Tuong Lien   tipc: add trace_e...
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
  #define DEFINE_SK_EVENT_FILTER(name) \
  DEFINE_EVENT_CONDITION(tipc_sk_class, name, \
  	TP_PROTO(struct sock *sk, struct sk_buff *skb, u16 dqueues, \
  		 const char *header), \
  	TP_ARGS(sk, skb, dqueues, header), \
  	TP_CONDITION(tipc_sk_filtering(sk)))
  DEFINE_SK_EVENT_FILTER(tipc_sk_dump);
  DEFINE_SK_EVENT_FILTER(tipc_sk_create);
  DEFINE_SK_EVENT_FILTER(tipc_sk_sendmcast);
  DEFINE_SK_EVENT_FILTER(tipc_sk_sendmsg);
  DEFINE_SK_EVENT_FILTER(tipc_sk_sendstream);
  DEFINE_SK_EVENT_FILTER(tipc_sk_poll);
  DEFINE_SK_EVENT_FILTER(tipc_sk_filter_rcv);
  DEFINE_SK_EVENT_FILTER(tipc_sk_advance_rx);
  DEFINE_SK_EVENT_FILTER(tipc_sk_rej_msg);
  DEFINE_SK_EVENT_FILTER(tipc_sk_drop_msg);
  DEFINE_SK_EVENT_FILTER(tipc_sk_release);
  DEFINE_SK_EVENT_FILTER(tipc_sk_shutdown);
  
  #define DEFINE_SK_EVENT_FILTER_COND(name, cond) \
  DEFINE_EVENT_CONDITION(tipc_sk_class, name, \
b4b9771bc   Tuong Lien   tipc: enable trac...
235
236
  	TP_PROTO(struct sock *sk, struct sk_buff *skb, u16 dqueues, \
  		 const char *header), \
01e661ebf   Tuong Lien   tipc: add trace_e...
237
238
239
240
  	TP_ARGS(sk, skb, dqueues, header), \
  	TP_CONDITION(tipc_sk_filtering(sk) && (cond)))
  DEFINE_SK_EVENT_FILTER_COND(tipc_sk_overlimit1, tipc_sk_overlimit1(sk, skb));
  DEFINE_SK_EVENT_FILTER_COND(tipc_sk_overlimit2, tipc_sk_overlimit2(sk, skb));
b4b9771bc   Tuong Lien   tipc: enable trac...
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
  
  DECLARE_EVENT_CLASS(tipc_link_class,
  
  	TP_PROTO(struct tipc_link *l, u16 dqueues, const char *header),
  
  	TP_ARGS(l, dqueues, header),
  
  	TP_STRUCT__entry(
  		__string(header, header)
  		__array(char, name, TIPC_MAX_LINK_NAME)
  		__dynamic_array(char, buf, (dqueues) ? LINK_LMAX : LINK_LMIN)
  	),
  
  	TP_fast_assign(
  		__assign_str(header, header);
03b6fefd9   Tuong Lien   tipc: add support...
256
  		memcpy(__entry->name, tipc_link_name(l), TIPC_MAX_LINK_NAME);
b4b9771bc   Tuong Lien   tipc: enable trac...
257
258
259
260
261
262
263
264
265
266
267
268
269
  		tipc_link_dump(l, dqueues, __get_str(buf));
  	),
  
  	TP_printk("<%s> %s
  %s", __entry->name, __get_str(header),
  		  __get_str(buf))
  );
  
  #define DEFINE_LINK_EVENT(name) \
  DEFINE_EVENT(tipc_link_class, name, \
  	TP_PROTO(struct tipc_link *l, u16 dqueues, const char *header), \
  	TP_ARGS(l, dqueues, header))
  DEFINE_LINK_EVENT(tipc_link_dump);
26574db0c   Tuong Lien   tipc: add trace_e...
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
  DEFINE_LINK_EVENT(tipc_link_conges);
  DEFINE_LINK_EVENT(tipc_link_timeout);
  DEFINE_LINK_EVENT(tipc_link_reset);
  
  #define DEFINE_LINK_EVENT_COND(name, cond) \
  DEFINE_EVENT_CONDITION(tipc_link_class, name, \
  	TP_PROTO(struct tipc_link *l, u16 dqueues, const char *header), \
  	TP_ARGS(l, dqueues, header), \
  	TP_CONDITION(cond))
  DEFINE_LINK_EVENT_COND(tipc_link_too_silent, tipc_link_too_silent(l));
  
  DECLARE_EVENT_CLASS(tipc_link_transmq_class,
  
  	TP_PROTO(struct tipc_link *r, u16 f, u16 t, struct sk_buff_head *tq),
  
  	TP_ARGS(r, f, t, tq),
  
  	TP_STRUCT__entry(
  		__array(char, name, TIPC_MAX_LINK_NAME)
  		__field(u16, from)
  		__field(u16, to)
  		__field(u32, len)
  		__field(u16, fseqno)
  		__field(u16, lseqno)
  	),
  
  	TP_fast_assign(
03b6fefd9   Tuong Lien   tipc: add support...
297
  		memcpy(__entry->name, tipc_link_name(r), TIPC_MAX_LINK_NAME);
26574db0c   Tuong Lien   tipc: add trace_e...
298
299
300
  		__entry->from = f;
  		__entry->to = t;
  		__entry->len = skb_queue_len(tq);
c6ed7a5cc   Tuong Lien   tipc: add back li...
301
302
303
304
  		__entry->fseqno = __entry->len ?
  				  msg_seqno(buf_msg(skb_peek(tq))) : 0;
  		__entry->lseqno = __entry->len ?
  				  msg_seqno(buf_msg(skb_peek_tail(tq))) : 0;
26574db0c   Tuong Lien   tipc: add trace_e...
305
306
307
308
309
310
311
  	),
  
  	TP_printk("<%s> retrans req: [%u-%u] transmq: %u [%u-%u]
  ",
  		  __entry->name, __entry->from, __entry->to,
  		  __entry->len, __entry->fseqno, __entry->lseqno)
  );
c6ed7a5cc   Tuong Lien   tipc: add back li...
312
  DEFINE_EVENT_CONDITION(tipc_link_transmq_class, tipc_link_retrans,
26574db0c   Tuong Lien   tipc: add trace_e...
313
  	TP_PROTO(struct tipc_link *r, u16 f, u16 t, struct sk_buff_head *tq),
c6ed7a5cc   Tuong Lien   tipc: add back li...
314
315
  	TP_ARGS(r, f, t, tq),
  	TP_CONDITION(less_eq(f, t))
26574db0c   Tuong Lien   tipc: add trace_e...
316
317
318
319
320
  );
  
  DEFINE_EVENT_PRINT(tipc_link_transmq_class, tipc_link_bc_ack,
  	TP_PROTO(struct tipc_link *r, u16 f, u16 t, struct sk_buff_head *tq),
  	TP_ARGS(r, f, t, tq),
c6ed7a5cc   Tuong Lien   tipc: add back li...
321
322
  	TP_printk("<%s> acked: %u gap: %u transmq: %u [%u-%u]
  ",
26574db0c   Tuong Lien   tipc: add trace_e...
323
324
325
  		  __entry->name, __entry->from, __entry->to,
  		  __entry->len, __entry->fseqno, __entry->lseqno)
  );
b4b9771bc   Tuong Lien   tipc: enable trac...
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
  
  DECLARE_EVENT_CLASS(tipc_node_class,
  
  	TP_PROTO(struct tipc_node *n, bool more, const char *header),
  
  	TP_ARGS(n, more, header),
  
  	TP_STRUCT__entry(
  		__string(header, header)
  		__field(u32, addr)
  		__dynamic_array(char, buf, (more) ? NODE_LMAX : NODE_LMIN)
  	),
  
  	TP_fast_assign(
  		__assign_str(header, header);
  		__entry->addr = tipc_node_get_addr(n);
  		tipc_node_dump(n, more, __get_str(buf));
  	),
  
  	TP_printk("<%x> %s
  %s", __entry->addr, __get_str(header),
  		  __get_str(buf))
  );
  
  #define DEFINE_NODE_EVENT(name) \
  DEFINE_EVENT(tipc_node_class, name, \
  	TP_PROTO(struct tipc_node *n, bool more, const char *header), \
  	TP_ARGS(n, more, header))
  DEFINE_NODE_EVENT(tipc_node_dump);
eb18a510b   Tuong Lien   tipc: add trace_e...
355
356
357
358
359
360
361
362
  DEFINE_NODE_EVENT(tipc_node_create);
  DEFINE_NODE_EVENT(tipc_node_delete);
  DEFINE_NODE_EVENT(tipc_node_lost_contact);
  DEFINE_NODE_EVENT(tipc_node_timeout);
  DEFINE_NODE_EVENT(tipc_node_link_up);
  DEFINE_NODE_EVENT(tipc_node_link_down);
  DEFINE_NODE_EVENT(tipc_node_reset_links);
  DEFINE_NODE_EVENT(tipc_node_check_state);
b4b9771bc   Tuong Lien   tipc: enable trac...
363

26574db0c   Tuong Lien   tipc: add trace_e...
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
  DECLARE_EVENT_CLASS(tipc_fsm_class,
  
  	TP_PROTO(const char *name, u32 os, u32 ns, int evt),
  
  	TP_ARGS(name, os, ns, evt),
  
  	TP_STRUCT__entry(
  		__string(name, name)
  		__field(u32, os)
  		__field(u32, ns)
  		__field(u32, evt)
  	),
  
  	TP_fast_assign(
  		__assign_str(name, name);
  		__entry->os = os;
  		__entry->ns = ns;
  		__entry->evt = evt;
  	),
  
  	TP_printk("<%s> %s--(%s)->%s
  ", __get_str(name),
  		  state_sym(__entry->os), evt_sym(__entry->evt),
  		  state_sym(__entry->ns))
  );
  
  #define DEFINE_FSM_EVENT(fsm_name) \
  DEFINE_EVENT(tipc_fsm_class, fsm_name, \
  	TP_PROTO(const char *name, u32 os, u32 ns, int evt), \
  	TP_ARGS(name, os, ns, evt))
  DEFINE_FSM_EVENT(tipc_link_fsm);
eb18a510b   Tuong Lien   tipc: add trace_e...
395
  DEFINE_FSM_EVENT(tipc_node_fsm);
26574db0c   Tuong Lien   tipc: add trace_e...
396

cf5f55f7f   Tuong Lien   tipc: add trace_e...
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
  TRACE_EVENT(tipc_l2_device_event,
  
  	TP_PROTO(struct net_device *dev, struct tipc_bearer *b,
  		 unsigned long evt),
  
  	TP_ARGS(dev, b, evt),
  
  	TP_STRUCT__entry(
  		__string(dev_name, dev->name)
  		__string(b_name, b->name)
  		__field(unsigned long, evt)
  		__field(u8, b_up)
  		__field(u8, carrier)
  		__field(u8, oper)
  	),
  
  	TP_fast_assign(
  		__assign_str(dev_name, dev->name);
  		__assign_str(b_name, b->name);
  		__entry->evt = evt;
  		__entry->b_up = test_bit(0, &b->up);
  		__entry->carrier = netif_carrier_ok(dev);
  		__entry->oper = netif_oper_up(dev);
  	),
  
  	TP_printk("%s on: <%s>/<%s> oper: %s carrier: %s bearer: %s
  ",
  		  dev_evt_sym(__entry->evt), __get_str(dev_name),
  		  __get_str(b_name), (__entry->oper) ? "up" : "down",
  		  (__entry->carrier) ? "ok" : "notok",
  		  (__entry->b_up) ? "up" : "down")
  );
b4b9771bc   Tuong Lien   tipc: enable trac...
429
430
431
432
433
434
435
436
  #endif /* _TIPC_TRACE_H */
  
  /* This part must be outside protection */
  #undef TRACE_INCLUDE_PATH
  #define TRACE_INCLUDE_PATH .
  #undef TRACE_INCLUDE_FILE
  #define TRACE_INCLUDE_FILE trace
  #include <trace/define_trace.h>