6be8d5edac823e9669c4ed70f4f43883b2c8a14d
[profile/mobile/platform/kernel/linux-3.10-sc7730.git] / kernel / swap / ks_features / ksf_msg.h
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 2 of the License, or
5  * (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software
14  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15  *
16  * Copyright (C) Samsung Electronics, 2015
17  *
18  * 2015         Vyacheslav Cherkashin <v.cherkashin@samsung.com>
19  *
20  */
21
22
23 #ifndef _KSF_MSG_H
24 #define _KSF_MSG_H
25
26
27 enum probe_t {
28         PT_KS_NONE      = 0x00,
29         PT_KS_FILE      = 0x01,
30         PT_KS_IPC       = 0x02,
31         PT_KS_PROCESS   = 0x04,
32         PT_KS_SIGNAL    = 0x08,
33         PT_KS_NETWORK   = 0x10,
34         PT_KS_DESC      = 0x20
35 };
36
37
38 enum file_api_t {
39         FOPS_OPEN               = 0,
40         FOPS_CLOSE              = 1,
41         FOPS_READ_BEGIN         = 2,
42         FOPS_READ_END           = 3,
43         FOPS_READ               = FOPS_READ_BEGIN,
44         FOPS_WRITE_BEGIN        = 4,
45         FOPS_WRITE_END          = 5,
46         FOPS_WRITE              = FOPS_WRITE_BEGIN,
47         FOPS_DIRECTORY          = 6,
48         FOPS_PERMS              = 7,
49         FOPS_OTHER              = 8,
50         FOPS_SEND               = 9,
51         FOPS_RECV               = 10,
52         FOPS_OPTION             = 11,
53         FOPS_MANAGE             = 12,
54         FOPS_LOCK_START         = 14, /* 13 */
55         FOPS_LOCK_END           = 15,
56         FOPS_LOCK_RELEASE       = 16
57 };
58
59
60 struct pt_regs;
61
62
63 void ksf_msg_entry(struct pt_regs *regs, unsigned long func_addr,
64                    enum probe_t type, const char *fmt);
65 void ksf_msg_exit(struct pt_regs *regs, unsigned long func_addr,
66                   unsigned long ret_addr, enum probe_t type, char ret_type);
67
68 void ksf_msg_file_entry(int fd, enum file_api_t api, const char *path);
69 void ksf_msg_file_entry_open(int fd, enum file_api_t api, const char *path,
70                              const char __user *ofile);
71 void ksf_msg_file_entry_lock(int fd, enum file_api_t api, const char *path,
72                              int type, int whence, s64 start, s64 len);
73 void ksf_msg_file_exit(struct pt_regs *regs, char ret_type);
74
75 void ksf_switch_entry(struct pt_regs *regs);
76 void ksf_switch_exit(struct pt_regs *regs);
77
78
79 #endif /* _KSF_MSG_H */