[IMPROVE] create slot_manager
[kernel/swap-modules.git] / driver / sspt / sspt_procs.h
1 #ifndef __SSPT_PROC__
2 #define __SSPT_PROC__
3
4 /*
5  *  Dynamic Binary Instrumentation Module based on KProbes
6  *  modules/driver/sspt/sspt_procs.h
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21  *
22  * Copyright (C) Samsung Electronics, 2013
23  *
24  * 2013         Vyacheslav Cherkashin <v.cherkashin@samsung.com>
25  *
26  */
27
28 #include <linux/types.h>
29 #include "sspt_file.h"
30
31 struct slot_manager;
32
33 struct sspt_procs {
34         struct list_head list;
35         pid_t tgid;
36         struct dentry *dentry;
37         struct slot_manager *sm;
38         struct list_head file_list;
39 };
40
41
42 struct sspt_procs *sspt_procs_create(struct dentry* dentry, pid_t tgid);
43 struct sspt_procs *sspt_procs_copy(struct sspt_procs *procs, struct task_struct *task);
44 void sspt_procs_free(struct sspt_procs *procs);
45 void sspt_procs_free_all(void);
46
47 void sspt_procs_add_ip_data(struct sspt_procs *procs, struct dentry* dentry,
48                 char *name, struct ip_data *ip_d);
49 struct sspt_file *sspt_procs_find_file(struct sspt_procs *procs, struct dentry *dentry);
50 struct sspt_file *sspt_procs_find_file_or_new(struct sspt_procs *procs,
51                 struct dentry *dentry, char *name);
52
53 #endif /* __SSPT_PROC__ */