|
@@ -52,6 +52,7 @@ struct proc_event {
|
|
|
PROC_EVENT_EXEC = 0x00000002,
|
|
|
PROC_EVENT_UID = 0x00000004,
|
|
|
PROC_EVENT_GID = 0x00000040,
|
|
|
+ PROC_EVENT_SID = 0x00000080,
|
|
|
/* "next" should be 0x00000400 */
|
|
|
/* "last" is the last process event: exit */
|
|
|
PROC_EVENT_EXIT = 0x80000000
|
|
@@ -89,6 +90,11 @@ struct proc_event {
|
|
|
} e;
|
|
|
} id;
|
|
|
|
|
|
+ struct sid_proc_event {
|
|
|
+ __kernel_pid_t process_pid;
|
|
|
+ __kernel_pid_t process_tgid;
|
|
|
+ } sid;
|
|
|
+
|
|
|
struct exit_proc_event {
|
|
|
__kernel_pid_t process_pid;
|
|
|
__kernel_pid_t process_tgid;
|
|
@@ -102,6 +108,7 @@ struct proc_event {
|
|
|
void proc_fork_connector(struct task_struct *task);
|
|
|
void proc_exec_connector(struct task_struct *task);
|
|
|
void proc_id_connector(struct task_struct *task, int which_id);
|
|
|
+void proc_sid_connector(struct task_struct *task);
|
|
|
void proc_exit_connector(struct task_struct *task);
|
|
|
#else
|
|
|
static inline void proc_fork_connector(struct task_struct *task)
|
|
@@ -114,6 +121,9 @@ static inline void proc_id_connector(struct task_struct *task,
|
|
|
int which_id)
|
|
|
{}
|
|
|
|
|
|
+static inline void proc_sid_connector(struct task_struct *task)
|
|
|
+{}
|
|
|
+
|
|
|
static inline void proc_exit_connector(struct task_struct *task)
|
|
|
{}
|
|
|
#endif /* CONFIG_PROC_EVENTS */
|