blob: 64164f8fde707022ed0d9e11770cc00fbc7913fa [file] [log] [blame]
Casey Schauflere114e472008-02-04 22:29:50 -08001/*
2 * Copyright (C) 2007 Casey Schaufler <casey@schaufler-ca.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, version 2.
7 *
8 * Author:
9 * Casey Schaufler <casey@schaufler-ca.com>
10 *
11 */
12
13#ifndef _SECURITY_SMACK_H
14#define _SECURITY_SMACK_H
15
16#include <linux/capability.h>
17#include <linux/spinlock.h>
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +020018#include <linux/security.h>
Casey Schaufler6d3dc072008-12-31 12:54:12 -050019#include <linux/in.h>
Casey Schauflere114e472008-02-04 22:29:50 -080020#include <net/netlabel.h>
Etienne Basset7198e2e2009-03-24 20:53:24 +010021#include <linux/list.h>
22#include <linux/rculist.h>
Casey Schauflere114e472008-02-04 22:29:50 -080023
24/*
25 * Why 23? CIPSO is constrained to 30, so a 32 byte buffer is
26 * bigger than can be used, and 24 is the next lower multiple
27 * of 8, and there are too many issues if there isn't space set
28 * aside for the terminating null byte.
29 */
30#define SMK_MAXLEN 23
31#define SMK_LABELLEN (SMK_MAXLEN+1)
32
Casey Schauflere114e472008-02-04 22:29:50 -080033struct superblock_smack {
34 char *smk_root;
35 char *smk_floor;
36 char *smk_hat;
37 char *smk_default;
38 int smk_initialized;
39 spinlock_t smk_sblock; /* for initialization */
40};
41
42struct socket_smack {
43 char *smk_out; /* outbound label */
44 char *smk_in; /* inbound label */
Casey Schaufler6d3dc072008-12-31 12:54:12 -050045 int smk_labeled; /* label scheme */
Casey Schauflere114e472008-02-04 22:29:50 -080046 char smk_packet[SMK_LABELLEN]; /* TCP peer label */
47};
48
49/*
50 * Inode smack data
51 */
52struct inode_smack {
53 char *smk_inode; /* label of the fso */
54 struct mutex smk_lock; /* initialization lock */
55 int smk_flags; /* smack inode flags */
56};
57
58#define SMK_INODE_INSTANT 0x01 /* inode is instantiated */
59
60/*
61 * A label access rule.
62 */
63struct smack_rule {
Etienne Basset7198e2e2009-03-24 20:53:24 +010064 struct list_head list;
65 char *smk_subject;
66 char *smk_object;
67 int smk_access;
Casey Schauflere114e472008-02-04 22:29:50 -080068};
69
70/*
71 * An entry in the table mapping smack values to
72 * CIPSO level/category-set values.
73 */
74struct smack_cipso {
75 int smk_level;
76 char smk_catset[SMK_LABELLEN];
77};
78
79/*
Casey Schaufler6d3dc072008-12-31 12:54:12 -050080 * An entry in the table identifying hosts.
81 */
82struct smk_netlbladdr {
Etienne Basset7198e2e2009-03-24 20:53:24 +010083 struct list_head list;
Casey Schaufler6d3dc072008-12-31 12:54:12 -050084 struct sockaddr_in smk_host; /* network address */
85 struct in_addr smk_mask; /* network mask */
86 char *smk_label; /* label */
87};
88
89/*
Casey Schauflere114e472008-02-04 22:29:50 -080090 * This is the repository for labels seen so that it is
91 * not necessary to keep allocating tiny chuncks of memory
92 * and so that they can be shared.
93 *
94 * Labels are never modified in place. Anytime a label
95 * is imported (e.g. xattrset on a file) the list is checked
96 * for it and it is added if it doesn't exist. The address
97 * is passed out in either case. Entries are added, but
98 * never deleted.
99 *
100 * Since labels are hanging around anyway it doesn't
101 * hurt to maintain a secid for those awkward situations
102 * where kernel components that ought to use LSM independent
103 * interfaces don't. The secid should go away when all of
104 * these components have been repaired.
105 *
106 * If there is a cipso value associated with the label it
107 * gets stored here, too. This will most likely be rare as
108 * the cipso direct mapping in used internally.
109 */
110struct smack_known {
Etienne Basset7198e2e2009-03-24 20:53:24 +0100111 struct list_head list;
Casey Schauflere114e472008-02-04 22:29:50 -0800112 char smk_known[SMK_LABELLEN];
113 u32 smk_secid;
114 struct smack_cipso *smk_cipso;
115 spinlock_t smk_cipsolock; /* for changing cipso map */
116};
117
118/*
119 * Mount options
120 */
121#define SMK_FSDEFAULT "smackfsdef="
122#define SMK_FSFLOOR "smackfsfloor="
123#define SMK_FSHAT "smackfshat="
124#define SMK_FSROOT "smackfsroot="
125
126/*
127 * xattr names
128 */
129#define XATTR_SMACK_SUFFIX "SMACK64"
130#define XATTR_SMACK_IPIN "SMACK64IPIN"
131#define XATTR_SMACK_IPOUT "SMACK64IPOUT"
132#define XATTR_NAME_SMACK XATTR_SECURITY_PREFIX XATTR_SMACK_SUFFIX
133#define XATTR_NAME_SMACKIPIN XATTR_SECURITY_PREFIX XATTR_SMACK_IPIN
134#define XATTR_NAME_SMACKIPOUT XATTR_SECURITY_PREFIX XATTR_SMACK_IPOUT
135
136/*
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500137 * How communications on this socket are treated.
138 * Usually it's determined by the underlying netlabel code
139 * but there are certain cases, including single label hosts
140 * and potentially single label interfaces for which the
141 * treatment can not be known in advance.
142 *
143 * The possibility of additional labeling schemes being
144 * introduced in the future exists as well.
145 */
146#define SMACK_UNLABELED_SOCKET 0
147#define SMACK_CIPSO_SOCKET 1
148
149/*
150 * smackfs magic number
Casey Schauflere114e472008-02-04 22:29:50 -0800151 * smackfs macic number
152 */
153#define SMACK_MAGIC 0x43415d53 /* "SMAC" */
154
155/*
156 * A limit on the number of entries in the lists
157 * makes some of the list administration easier.
158 */
159#define SMACK_LIST_MAX 10000
160
161/*
162 * CIPSO defaults.
163 */
164#define SMACK_CIPSO_DOI_DEFAULT 3 /* Historical */
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500165#define SMACK_CIPSO_DOI_INVALID -1 /* Not a DOI */
Casey Schauflere114e472008-02-04 22:29:50 -0800166#define SMACK_CIPSO_DIRECT_DEFAULT 250 /* Arbitrary */
167#define SMACK_CIPSO_MAXCATVAL 63 /* Bigger gets harder */
168#define SMACK_CIPSO_MAXLEVEL 255 /* CIPSO 2.2 standard */
169#define SMACK_CIPSO_MAXCATNUM 239 /* CIPSO 2.2 standard */
170
171/*
172 * Just to make the common cases easier to deal with
173 */
174#define MAY_ANY (MAY_READ | MAY_WRITE | MAY_APPEND | MAY_EXEC)
175#define MAY_ANYREAD (MAY_READ | MAY_EXEC)
176#define MAY_ANYWRITE (MAY_WRITE | MAY_APPEND)
177#define MAY_READWRITE (MAY_READ | MAY_WRITE)
178#define MAY_NOT 0
179
180/*
181 * These functions are in smack_lsm.c
182 */
183struct inode_smack *new_inode_smack(char *);
184
185/*
186 * These functions are in smack_access.c
187 */
188int smk_access(char *, char *, int);
189int smk_curacc(char *, u32);
190int smack_to_cipso(const char *, struct smack_cipso *);
191void smack_from_cipso(u32, char *, char *);
192char *smack_from_secid(const u32);
193char *smk_import(const char *, int);
194struct smack_known *smk_import_entry(const char *, int);
195u32 smack_to_secid(const char *);
196
197/*
198 * Shared data.
199 */
200extern int smack_cipso_direct;
Casey Schauflere114e472008-02-04 22:29:50 -0800201extern char *smack_net_ambient;
Casey Schaufler15446232008-07-30 15:37:11 -0700202extern char *smack_onlycap;
Casey Schauflere114e472008-02-04 22:29:50 -0800203
Casey Schauflere114e472008-02-04 22:29:50 -0800204extern struct smack_known smack_known_floor;
205extern struct smack_known smack_known_hat;
206extern struct smack_known smack_known_huh;
207extern struct smack_known smack_known_invalid;
208extern struct smack_known smack_known_star;
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500209extern struct smack_known smack_known_web;
Casey Schauflere114e472008-02-04 22:29:50 -0800210
Etienne Basset7198e2e2009-03-24 20:53:24 +0100211extern struct list_head smack_known_list;
212extern struct list_head smack_rule_list;
213extern struct list_head smk_netlbladdr_list;
214
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +0200215extern struct security_operations smack_ops;
Casey Schauflere114e472008-02-04 22:29:50 -0800216
217/*
218 * Stricly for CIPSO level manipulation.
219 * Set the category bit number in a smack label sized buffer.
220 */
221static inline void smack_catset_bit(int cat, char *catsetp)
222{
223 if (cat > SMK_LABELLEN * 8)
224 return;
225
226 catsetp[(cat - 1) / 8] |= 0x80 >> ((cat - 1) % 8);
227}
228
229/*
230 * Present a pointer to the smack label in an inode blob.
231 */
232static inline char *smk_of_inode(const struct inode *isp)
233{
234 struct inode_smack *sip = isp->i_security;
235 return sip->smk_inode;
236}
237
238#endif /* _SECURITY_SMACK_H */