123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502 |
- #ifndef _SECURITY_SMACK_H
- #define _SECURITY_SMACK_H
- #include <linux/capability.h>
- #include <linux/spinlock.h>
- #include <linux/lsm_hooks.h>
- #include <linux/in.h>
- #if IS_ENABLED(CONFIG_IPV6)
- #include <linux/in6.h>
- #endif
- #include <net/netlabel.h>
- #include <linux/list.h>
- #include <linux/rculist.h>
- #include <linux/lsm_audit.h>
- #if IS_ENABLED(CONFIG_IPV6) && !defined(CONFIG_SECURITY_SMACK_NETFILTER)
- #define SMACK_IPV6_PORT_LABELING 1
- #endif
- #if IS_ENABLED(CONFIG_IPV6) && defined(CONFIG_SECURITY_SMACK_NETFILTER)
- #define SMACK_IPV6_SECMARK_LABELING 1
- #endif
- #define SMK_LABELLEN 24
- #define SMK_LONGLABEL 256
- struct smack_known {
- struct list_head list;
- struct hlist_node smk_hashed;
- char *smk_known;
- u32 smk_secid;
- struct netlbl_lsm_secattr smk_netlabel;
- struct list_head smk_rules;
- struct mutex smk_rules_lock;
- };
- #define SMK_CIPSOLEN 24
- struct superblock_smack {
- struct smack_known *smk_root;
- struct smack_known *smk_floor;
- struct smack_known *smk_hat;
- struct smack_known *smk_default;
- int smk_flags;
- };
- #define SMK_SB_INITIALIZED 0x01
- #define SMK_SB_UNTRUSTED 0x02
- struct socket_smack {
- struct smack_known *smk_out;
- struct smack_known *smk_in;
- struct smack_known *smk_packet;
- };
- struct inode_smack {
- struct smack_known *smk_inode;
- struct smack_known *smk_task;
- struct smack_known *smk_mmap;
- struct mutex smk_lock;
- int smk_flags;
- };
- struct task_smack {
- struct smack_known *smk_task;
- struct smack_known *smk_forked;
- struct list_head smk_rules;
- struct mutex smk_rules_lock;
- struct list_head smk_relabel;
- };
- #define SMK_INODE_INSTANT 0x01
- #define SMK_INODE_TRANSMUTE 0x02
- #define SMK_INODE_CHANGED 0x04
- #define SMK_INODE_IMPURE 0x08
- struct smack_rule {
- struct list_head list;
- struct smack_known *smk_subject;
- struct smack_known *smk_object;
- int smk_access;
- };
- struct smk_net4addr {
- struct list_head list;
- struct in_addr smk_host;
- struct in_addr smk_mask;
- int smk_masks;
- struct smack_known *smk_label;
- };
- #if IS_ENABLED(CONFIG_IPV6)
- struct smk_net6addr {
- struct list_head list;
- struct in6_addr smk_host;
- struct in6_addr smk_mask;
- int smk_masks;
- struct smack_known *smk_label;
- };
- #endif
- #ifdef SMACK_IPV6_PORT_LABELING
- struct smk_port_label {
- struct list_head list;
- struct sock *smk_sock;
- unsigned short smk_port;
- struct smack_known *smk_in;
- struct smack_known *smk_out;
- };
- #endif
- struct smack_known_list_elem {
- struct list_head list;
- struct smack_known *smk_label;
- };
- #define FSDEFAULT_MNT 0x01
- #define FSFLOOR_MNT 0x02
- #define FSHAT_MNT 0x04
- #define FSROOT_MNT 0x08
- #define FSTRANS_MNT 0x10
- #define NUM_SMK_MNT_OPTS 5
- enum {
- Opt_error = -1,
- Opt_fsdefault = 1,
- Opt_fsfloor = 2,
- Opt_fshat = 3,
- Opt_fsroot = 4,
- Opt_fstransmute = 5,
- };
- #define SMK_FSDEFAULT "smackfsdef="
- #define SMK_FSFLOOR "smackfsfloor="
- #define SMK_FSHAT "smackfshat="
- #define SMK_FSROOT "smackfsroot="
- #define SMK_FSTRANS "smackfstransmute="
- #define SMACK_DELETE_OPTION "-DELETE"
- #define SMACK_CIPSO_OPTION "-CIPSO"
- #define SMACK_UNLABELED_SOCKET 0
- #define SMACK_CIPSO_SOCKET 1
- #define SMACK_CIPSO_DOI_DEFAULT 3
- #define SMACK_CIPSO_DOI_INVALID -1
- #define SMACK_CIPSO_DIRECT_DEFAULT 250
- #define SMACK_CIPSO_MAPPED_DEFAULT 251
- #define SMACK_CIPSO_MAXLEVEL 255
- #define SMACK_CIPSO_MAXCATNUM 184
- #define SMACK_PTRACE_DEFAULT 0
- #define SMACK_PTRACE_EXACT 1
- #define SMACK_PTRACE_DRACONIAN 2
- #define SMACK_PTRACE_MAX SMACK_PTRACE_DRACONIAN
- #define MAY_TRANSMUTE 0x00001000
- #define MAY_LOCK 0x00002000
- #define MAY_BRINGUP 0x00004000
- #ifdef CONFIG_SECURITY_SMACK_APPEND_SIGNALS
- #define MAY_DELIVER MAY_APPEND
- #else
- #define MAY_DELIVER MAY_WRITE
- #endif
- #define SMACK_BRINGUP_ALLOW 1
- #define SMACK_UNCONFINED_SUBJECT 2
- #define SMACK_UNCONFINED_OBJECT 3
- #define MAY_ANYREAD (MAY_READ | MAY_EXEC)
- #define MAY_READWRITE (MAY_READ | MAY_WRITE)
- #define MAY_NOT 0
- #define SMK_NUM_ACCESS_TYPE 7
- struct smack_audit_data {
- const char *function;
- char *subject;
- char *object;
- char *request;
- int result;
- };
- struct smk_audit_info {
- #ifdef CONFIG_AUDIT
- struct common_audit_data a;
- struct smack_audit_data sad;
- #endif
- };
- int smk_access_entry(char *, char *, struct list_head *);
- int smk_access(struct smack_known *, struct smack_known *,
- int, struct smk_audit_info *);
- int smk_tskacc(struct task_smack *, struct smack_known *,
- u32, struct smk_audit_info *);
- int smk_curacc(struct smack_known *, u32, struct smk_audit_info *);
- struct smack_known *smack_from_secid(const u32);
- char *smk_parse_smack(const char *string, int len);
- int smk_netlbl_mls(int, char *, struct netlbl_lsm_secattr *, int);
- struct smack_known *smk_import_entry(const char *, int);
- void smk_insert_entry(struct smack_known *skp);
- struct smack_known *smk_find_entry(const char *);
- int smack_privileged(int cap);
- void smk_destroy_label_list(struct list_head *list);
- extern int smack_enabled;
- extern int smack_cipso_direct;
- extern int smack_cipso_mapped;
- extern struct smack_known *smack_net_ambient;
- extern struct smack_known *smack_syslog_label;
- #ifdef CONFIG_SECURITY_SMACK_BRINGUP
- extern struct smack_known *smack_unconfined;
- #endif
- extern int smack_ptrace_rule;
- extern struct smack_known smack_known_floor;
- extern struct smack_known smack_known_hat;
- extern struct smack_known smack_known_huh;
- extern struct smack_known smack_known_invalid;
- extern struct smack_known smack_known_star;
- extern struct smack_known smack_known_web;
- extern struct mutex smack_known_lock;
- extern struct list_head smack_known_list;
- extern struct list_head smk_net4addr_list;
- #if IS_ENABLED(CONFIG_IPV6)
- extern struct list_head smk_net6addr_list;
- #endif
- extern struct mutex smack_onlycap_lock;
- extern struct list_head smack_onlycap_list;
- #define SMACK_HASH_SLOTS 16
- extern struct hlist_head smack_known_hash[SMACK_HASH_SLOTS];
- static inline int smk_inode_transmutable(const struct inode *isp)
- {
- struct inode_smack *sip = isp->i_security;
- return (sip->smk_flags & SMK_INODE_TRANSMUTE) != 0;
- }
- static inline struct smack_known *smk_of_inode(const struct inode *isp)
- {
- struct inode_smack *sip = isp->i_security;
- return sip->smk_inode;
- }
- static inline struct smack_known *smk_of_task(const struct task_smack *tsp)
- {
- return tsp->smk_task;
- }
- static inline struct smack_known *smk_of_task_struct(const struct task_struct *t)
- {
- struct smack_known *skp;
- rcu_read_lock();
- skp = smk_of_task(__task_cred(t)->security);
- rcu_read_unlock();
- return skp;
- }
- static inline struct smack_known *smk_of_forked(const struct task_smack *tsp)
- {
- return tsp->smk_forked;
- }
- static inline struct smack_known *smk_of_current(void)
- {
- return smk_of_task(current_security());
- }
- #define SMACK_AUDIT_DENIED 0x1
- #define SMACK_AUDIT_ACCEPT 0x2
- extern int log_policy;
- void smack_log(char *subject_label, char *object_label,
- int request,
- int result, struct smk_audit_info *auditdata);
- #ifdef CONFIG_AUDIT
- static inline void smk_ad_init(struct smk_audit_info *a, const char *func,
- char type)
- {
- memset(&a->sad, 0, sizeof(a->sad));
- a->a.type = type;
- a->a.smack_audit_data = &a->sad;
- a->a.smack_audit_data->function = func;
- }
- static inline void smk_ad_init_net(struct smk_audit_info *a, const char *func,
- char type, struct lsm_network_audit *net)
- {
- smk_ad_init(a, func, type);
- memset(net, 0, sizeof(*net));
- a->a.u.net = net;
- }
- static inline void smk_ad_setfield_u_tsk(struct smk_audit_info *a,
- struct task_struct *t)
- {
- a->a.u.tsk = t;
- }
- static inline void smk_ad_setfield_u_fs_path_dentry(struct smk_audit_info *a,
- struct dentry *d)
- {
- a->a.u.dentry = d;
- }
- static inline void smk_ad_setfield_u_fs_inode(struct smk_audit_info *a,
- struct inode *i)
- {
- a->a.u.inode = i;
- }
- static inline void smk_ad_setfield_u_fs_path(struct smk_audit_info *a,
- struct path p)
- {
- a->a.u.path = p;
- }
- static inline void smk_ad_setfield_u_net_sk(struct smk_audit_info *a,
- struct sock *sk)
- {
- a->a.u.net->sk = sk;
- }
- #else
- static inline void smk_ad_init(struct smk_audit_info *a, const char *func,
- char type)
- {
- }
- static inline void smk_ad_setfield_u_tsk(struct smk_audit_info *a,
- struct task_struct *t)
- {
- }
- static inline void smk_ad_setfield_u_fs_path_dentry(struct smk_audit_info *a,
- struct dentry *d)
- {
- }
- static inline void smk_ad_setfield_u_fs_path_mnt(struct smk_audit_info *a,
- struct vfsmount *m)
- {
- }
- static inline void smk_ad_setfield_u_fs_inode(struct smk_audit_info *a,
- struct inode *i)
- {
- }
- static inline void smk_ad_setfield_u_fs_path(struct smk_audit_info *a,
- struct path p)
- {
- }
- static inline void smk_ad_setfield_u_net_sk(struct smk_audit_info *a,
- struct sock *sk)
- {
- }
- #endif
- #endif
|