| 
									
										
										
										
											2009-04-08 20:40:59 +02:00
										 |  |  | #ifndef _TRACE_SYSCALL_H
 | 
					
						
							|  |  |  | #define _TRACE_SYSCALL_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-10 16:52:31 -04:00
										 |  |  | #include <linux/tracepoint.h>
 | 
					
						
							| 
									
										
										
										
											2009-08-10 16:52:47 -04:00
										 |  |  | #include <linux/unistd.h>
 | 
					
						
							|  |  |  | #include <linux/ftrace_event.h>
 | 
					
						
							| 
									
										
										
										
											2014-04-13 20:58:54 +02:00
										 |  |  | #include <linux/thread_info.h>
 | 
					
						
							| 
									
										
										
										
											2009-08-10 16:52:31 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-08 20:40:59 +02:00
										 |  |  | #include <asm/ptrace.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-10 16:52:31 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-08 20:40:59 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * A syscall entry in the ftrace syscalls array. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @name: name of the syscall | 
					
						
							| 
									
										
										
										
											2009-12-01 16:23:47 +08:00
										 |  |  |  * @syscall_nr: number of the syscall | 
					
						
							| 
									
										
										
										
											2009-04-08 20:40:59 +02:00
										 |  |  |  * @nb_args: number of parameters it takes | 
					
						
							|  |  |  |  * @types: list of types as strings | 
					
						
							|  |  |  |  * @args: list of args as strings (args[i] matches types[i]) | 
					
						
							| 
									
										
										
										
											2013-06-29 00:08:05 -05:00
										 |  |  |  * @enter_fields: list of fields for syscall_enter trace event | 
					
						
							| 
									
										
										
										
											2009-08-19 15:54:51 +08:00
										 |  |  |  * @enter_event: associated syscall_enter trace event | 
					
						
							|  |  |  |  * @exit_event: associated syscall_exit trace event | 
					
						
							| 
									
										
										
										
											2009-04-08 20:40:59 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | struct syscall_metadata { | 
					
						
							|  |  |  | 	const char	*name; | 
					
						
							| 
									
										
										
										
											2009-12-01 16:23:47 +08:00
										 |  |  | 	int		syscall_nr; | 
					
						
							| 
									
										
										
										
											2009-04-08 20:40:59 +02:00
										 |  |  | 	int		nb_args; | 
					
						
							|  |  |  | 	const char	**types; | 
					
						
							|  |  |  | 	const char	**args; | 
					
						
							| 
									
										
										
										
											2010-04-22 10:35:55 -04:00
										 |  |  | 	struct list_head enter_fields; | 
					
						
							| 
									
										
										
										
											2009-08-19 15:54:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	struct ftrace_event_call *enter_event; | 
					
						
							|  |  |  | 	struct ftrace_event_call *exit_event; | 
					
						
							| 
									
										
										
										
											2009-04-08 20:40:59 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-13 20:58:54 +02:00
										 |  |  | #if defined(CONFIG_TRACEPOINTS) && defined(CONFIG_HAVE_SYSCALL_TRACEPOINTS)
 | 
					
						
							|  |  |  | static inline void syscall_tracepoint_update(struct task_struct *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (test_thread_flag(TIF_SYSCALL_TRACEPOINT)) | 
					
						
							|  |  |  | 		set_tsk_thread_flag(p, TIF_SYSCALL_TRACEPOINT); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		clear_tsk_thread_flag(p, TIF_SYSCALL_TRACEPOINT); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static inline void syscall_tracepoint_update(struct task_struct *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-08 20:40:59 +02:00
										 |  |  | #endif /* _TRACE_SYSCALL_H */
 |