blob: 646c0a7d50faae5980038fba2e0a41fddfa6b4c1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_PERSONALITY_H
2#define _LINUX_PERSONALITY_H
3
David Howells607ca462012-10-13 10:46:48 +01004#include <uapi/linux/personality.h>
5
Ralf Baechle34e856e2006-10-19 23:28:17 -07006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007/*
8 * Handling of different ABIs (personalities).
9 */
10
11struct exec_domain;
12struct pt_regs;
13
14extern int register_exec_domain(struct exec_domain *);
15extern int unregister_exec_domain(struct exec_domain *);
Oleg Nesterov485d5272010-06-04 14:14:58 -070016extern int __set_personality(unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19/*
20 * Description of an execution domain.
21 *
22 * The first two members are refernced from assembly source
23 * and should stay where they are unless explicitly needed.
24 */
25typedef void (*handler_t)(int, struct pt_regs *);
26
27struct exec_domain {
28 const char *name; /* name of the execdomain */
29 handler_t handler; /* handler for syscalls */
30 unsigned char pers_low; /* lowest personality */
31 unsigned char pers_high; /* highest personality */
32 unsigned long *signal_map; /* signal mapping */
33 unsigned long *signal_invmap; /* reverse signal mapping */
34 struct map_segment *err_map; /* error mapping */
35 struct map_segment *socktype_map; /* socket type mapping */
36 struct map_segment *sockopt_map; /* socket option mapping */
37 struct map_segment *af_map; /* address family mapping */
38 struct module *module; /* module context of the ed. */
39 struct exec_domain *next; /* linked list (internal) */
40};
41
42/*
43 * Return the base personality without flags.
44 */
45#define personality(pers) (pers & PER_MASK)
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
49 * Change personality of the currently running process.
50 */
51#define set_personality(pers) \
Russell Kingd8b295f2006-11-10 12:27:53 -080052 ((current->personality == (pers)) ? 0 : __set_personality(pers))
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#endif /* _LINUX_PERSONALITY_H */