2 * CIPSO - Commercial IP Security Option
4 * This is an implementation of the CIPSO 2.2 protocol as specified in
5 * draft-ietf-cipso-ipsecurity-01.txt with additional tag types as found in
6 * FIPS-188, copies of both documents can be found in the Documentation
7 * directory. While CIPSO never became a full IETF RFC standard many vendors
8 * have chosen to adopt the protocol and over the years it has become a
9 * de-facto standard for labeled networking.
11 * Author: Paul Moore <paul.moore@hp.com>
16 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
26 * the GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34 #include <linux/init.h>
35 #include <linux/types.h>
36 #include <linux/rcupdate.h>
37 #include <linux/list.h>
38 #include <linux/spinlock.h>
39 #include <linux/string.h>
40 #include <linux/jhash.h>
44 #include <net/netlabel.h>
45 #include <net/cipso_ipv4.h>
46 #include <asm/atomic.h>
48 #include <asm/unaligned.h>
50 struct cipso_v4_domhsh_entry
{
53 struct list_head list
;
57 /* List of available DOI definitions */
58 /* XXX - Updates should be minimal so having a single lock for the
59 * cipso_v4_doi_list and the cipso_v4_doi_list->dom_list should be
61 /* XXX - This currently assumes a minimal number of different DOIs in use,
62 * if in practice there are a lot of different DOIs this list should
63 * probably be turned into a hash table or something similar so we
64 * can do quick lookups. */
65 static DEFINE_SPINLOCK(cipso_v4_doi_list_lock
);
66 static struct list_head cipso_v4_doi_list
= LIST_HEAD_INIT(cipso_v4_doi_list
);
68 /* Label mapping cache */
69 int cipso_v4_cache_enabled
= 1;
70 int cipso_v4_cache_bucketsize
= 10;
71 #define CIPSO_V4_CACHE_BUCKETBITS 7
72 #define CIPSO_V4_CACHE_BUCKETS (1 << CIPSO_V4_CACHE_BUCKETBITS)
73 #define CIPSO_V4_CACHE_REORDERLIMIT 10
74 struct cipso_v4_map_cache_bkt
{
77 struct list_head list
;
79 struct cipso_v4_map_cache_entry
{
84 struct netlbl_lsm_cache
*lsm_data
;
87 struct list_head list
;
89 static struct cipso_v4_map_cache_bkt
*cipso_v4_cache
= NULL
;
91 /* Restricted bitmap (tag #1) flags */
92 int cipso_v4_rbm_optfmt
= 0;
93 int cipso_v4_rbm_strictvalid
= 1;
99 /* Maximum size of the CIPSO IP option, derived from the fact that the maximum
100 * IPv4 header size is 60 bytes and the base IPv4 header is 20 bytes long. */
101 #define CIPSO_V4_OPT_LEN_MAX 40
103 /* Length of the base CIPSO option, this includes the option type (1 byte), the
104 * option length (1 byte), and the DOI (4 bytes). */
105 #define CIPSO_V4_HDR_LEN 6
107 /* Base length of the restrictive category bitmap tag (tag #1). */
108 #define CIPSO_V4_TAG_RBM_BLEN 4
110 /* Base length of the enumerated category tag (tag #2). */
111 #define CIPSO_V4_TAG_ENUM_BLEN 4
113 /* Base length of the ranged categories bitmap tag (tag #5). */
114 #define CIPSO_V4_TAG_RNG_BLEN 4
115 /* The maximum number of category ranges permitted in the ranged category tag
116 * (tag #5). You may note that the IETF draft states that the maximum number
117 * of category ranges is 7, but if the low end of the last category range is
118 * zero then it is possibile to fit 8 category ranges because the zero should
120 #define CIPSO_V4_TAG_RNG_CAT_MAX 8
127 * cipso_v4_bitmap_walk - Walk a bitmap looking for a bit
128 * @bitmap: the bitmap
129 * @bitmap_len: length in bits
130 * @offset: starting offset
131 * @state: if non-zero, look for a set (1) bit else look for a cleared (0) bit
134 * Starting at @offset, walk the bitmap from left to right until either the
135 * desired bit is found or we reach the end. Return the bit offset, -1 if
136 * not found, or -2 if error.
138 static int cipso_v4_bitmap_walk(const unsigned char *bitmap
,
145 unsigned char bitmask
;
148 /* gcc always rounds to zero when doing integer division */
149 byte_offset
= offset
/ 8;
150 byte
= bitmap
[byte_offset
];
152 bitmask
= 0x80 >> (offset
% 8);
154 while (bit_spot
< bitmap_len
) {
155 if ((state
&& (byte
& bitmask
) == bitmask
) ||
156 (state
== 0 && (byte
& bitmask
) == 0))
162 byte
= bitmap
[++byte_offset
];
171 * cipso_v4_bitmap_setbit - Sets a single bit in a bitmap
172 * @bitmap: the bitmap
174 * @state: if non-zero, set the bit (1) else clear the bit (0)
177 * Set a single bit in the bitmask. Returns zero on success, negative values
180 static void cipso_v4_bitmap_setbit(unsigned char *bitmap
,
187 /* gcc always rounds to zero when doing integer division */
189 bitmask
= 0x80 >> (bit
% 8);
191 bitmap
[byte_spot
] |= bitmask
;
193 bitmap
[byte_spot
] &= ~bitmask
;
197 * cipso_v4_doi_domhsh_free - Frees a domain list entry
198 * @entry: the entry's RCU field
201 * This function is designed to be used as a callback to the call_rcu()
202 * function so that the memory allocated to a domain list entry can be released
206 static void cipso_v4_doi_domhsh_free(struct rcu_head
*entry
)
208 struct cipso_v4_domhsh_entry
*ptr
;
210 ptr
= container_of(entry
, struct cipso_v4_domhsh_entry
, rcu
);
216 * cipso_v4_cache_entry_free - Frees a cache entry
217 * @entry: the entry to free
220 * This function frees the memory associated with a cache entry including the
221 * LSM cache data if there are no longer any users, i.e. reference count == 0.
224 static void cipso_v4_cache_entry_free(struct cipso_v4_map_cache_entry
*entry
)
227 netlbl_secattr_cache_free(entry
->lsm_data
);
233 * cipso_v4_map_cache_hash - Hashing function for the CIPSO cache
235 * @key_len: the length of the key in bytes
238 * The CIPSO tag hashing function. Returns a 32-bit hash value.
241 static u32
cipso_v4_map_cache_hash(const unsigned char *key
, u32 key_len
)
243 return jhash(key
, key_len
, 0);
247 * Label Mapping Cache Functions
251 * cipso_v4_cache_init - Initialize the CIPSO cache
254 * Initializes the CIPSO label mapping cache, this function should be called
255 * before any of the other functions defined in this file. Returns zero on
256 * success, negative values on error.
259 static int cipso_v4_cache_init(void)
263 cipso_v4_cache
= kcalloc(CIPSO_V4_CACHE_BUCKETS
,
264 sizeof(struct cipso_v4_map_cache_bkt
),
266 if (cipso_v4_cache
== NULL
)
269 for (iter
= 0; iter
< CIPSO_V4_CACHE_BUCKETS
; iter
++) {
270 spin_lock_init(&cipso_v4_cache
[iter
].lock
);
271 cipso_v4_cache
[iter
].size
= 0;
272 INIT_LIST_HEAD(&cipso_v4_cache
[iter
].list
);
279 * cipso_v4_cache_invalidate - Invalidates the current CIPSO cache
282 * Invalidates and frees any entries in the CIPSO cache. Returns zero on
283 * success and negative values on failure.
286 void cipso_v4_cache_invalidate(void)
288 struct cipso_v4_map_cache_entry
*entry
, *tmp_entry
;
291 for (iter
= 0; iter
< CIPSO_V4_CACHE_BUCKETS
; iter
++) {
292 spin_lock_bh(&cipso_v4_cache
[iter
].lock
);
293 list_for_each_entry_safe(entry
,
295 &cipso_v4_cache
[iter
].list
, list
) {
296 list_del(&entry
->list
);
297 cipso_v4_cache_entry_free(entry
);
299 cipso_v4_cache
[iter
].size
= 0;
300 spin_unlock_bh(&cipso_v4_cache
[iter
].lock
);
307 * cipso_v4_cache_check - Check the CIPSO cache for a label mapping
308 * @key: the buffer to check
309 * @key_len: buffer length in bytes
310 * @secattr: the security attribute struct to use
313 * This function checks the cache to see if a label mapping already exists for
314 * the given key. If there is a match then the cache is adjusted and the
315 * @secattr struct is populated with the correct LSM security attributes. The
316 * cache is adjusted in the following manner if the entry is not already the
317 * first in the cache bucket:
319 * 1. The cache entry's activity counter is incremented
320 * 2. The previous (higher ranking) entry's activity counter is decremented
321 * 3. If the difference between the two activity counters is geater than
322 * CIPSO_V4_CACHE_REORDERLIMIT the two entries are swapped
324 * Returns zero on success, -ENOENT for a cache miss, and other negative values
328 static int cipso_v4_cache_check(const unsigned char *key
,
330 struct netlbl_lsm_secattr
*secattr
)
333 struct cipso_v4_map_cache_entry
*entry
;
334 struct cipso_v4_map_cache_entry
*prev_entry
= NULL
;
337 if (!cipso_v4_cache_enabled
)
340 hash
= cipso_v4_map_cache_hash(key
, key_len
);
341 bkt
= hash
& (CIPSO_V4_CACHE_BUCKETBITS
- 1);
342 spin_lock_bh(&cipso_v4_cache
[bkt
].lock
);
343 list_for_each_entry(entry
, &cipso_v4_cache
[bkt
].list
, list
) {
344 if (entry
->hash
== hash
&&
345 entry
->key_len
== key_len
&&
346 memcmp(entry
->key
, key
, key_len
) == 0) {
347 entry
->activity
+= 1;
348 atomic_inc(&entry
->lsm_data
->refcount
);
349 secattr
->cache
= entry
->lsm_data
;
350 secattr
->flags
|= NETLBL_SECATTR_CACHE
;
351 if (prev_entry
== NULL
) {
352 spin_unlock_bh(&cipso_v4_cache
[bkt
].lock
);
356 if (prev_entry
->activity
> 0)
357 prev_entry
->activity
-= 1;
358 if (entry
->activity
> prev_entry
->activity
&&
359 entry
->activity
- prev_entry
->activity
>
360 CIPSO_V4_CACHE_REORDERLIMIT
) {
361 __list_del(entry
->list
.prev
, entry
->list
.next
);
362 __list_add(&entry
->list
,
363 prev_entry
->list
.prev
,
367 spin_unlock_bh(&cipso_v4_cache
[bkt
].lock
);
372 spin_unlock_bh(&cipso_v4_cache
[bkt
].lock
);
378 * cipso_v4_cache_add - Add an entry to the CIPSO cache
380 * @secattr: the packet's security attributes
383 * Add a new entry into the CIPSO label mapping cache. Add the new entry to
384 * head of the cache bucket's list, if the cache bucket is out of room remove
385 * the last entry in the list first. It is important to note that there is
386 * currently no checking for duplicate keys. Returns zero on success,
387 * negative values on failure.
390 int cipso_v4_cache_add(const struct sk_buff
*skb
,
391 const struct netlbl_lsm_secattr
*secattr
)
393 int ret_val
= -EPERM
;
395 struct cipso_v4_map_cache_entry
*entry
= NULL
;
396 struct cipso_v4_map_cache_entry
*old_entry
= NULL
;
397 unsigned char *cipso_ptr
;
400 if (!cipso_v4_cache_enabled
|| cipso_v4_cache_bucketsize
<= 0)
403 cipso_ptr
= CIPSO_V4_OPTPTR(skb
);
404 cipso_ptr_len
= cipso_ptr
[1];
406 entry
= kzalloc(sizeof(*entry
), GFP_ATOMIC
);
409 entry
->key
= kmemdup(cipso_ptr
, cipso_ptr_len
, GFP_ATOMIC
);
410 if (entry
->key
== NULL
) {
412 goto cache_add_failure
;
414 entry
->key_len
= cipso_ptr_len
;
415 entry
->hash
= cipso_v4_map_cache_hash(cipso_ptr
, cipso_ptr_len
);
416 atomic_inc(&secattr
->cache
->refcount
);
417 entry
->lsm_data
= secattr
->cache
;
419 bkt
= entry
->hash
& (CIPSO_V4_CACHE_BUCKETBITS
- 1);
420 spin_lock_bh(&cipso_v4_cache
[bkt
].lock
);
421 if (cipso_v4_cache
[bkt
].size
< cipso_v4_cache_bucketsize
) {
422 list_add(&entry
->list
, &cipso_v4_cache
[bkt
].list
);
423 cipso_v4_cache
[bkt
].size
+= 1;
425 old_entry
= list_entry(cipso_v4_cache
[bkt
].list
.prev
,
426 struct cipso_v4_map_cache_entry
, list
);
427 list_del(&old_entry
->list
);
428 list_add(&entry
->list
, &cipso_v4_cache
[bkt
].list
);
429 cipso_v4_cache_entry_free(old_entry
);
431 spin_unlock_bh(&cipso_v4_cache
[bkt
].lock
);
437 cipso_v4_cache_entry_free(entry
);
446 * cipso_v4_doi_search - Searches for a DOI definition
447 * @doi: the DOI to search for
450 * Search the DOI definition list for a DOI definition with a DOI value that
451 * matches @doi. The caller is responsibile for calling rcu_read_[un]lock().
452 * Returns a pointer to the DOI definition on success and NULL on failure.
454 static struct cipso_v4_doi
*cipso_v4_doi_search(u32 doi
)
456 struct cipso_v4_doi
*iter
;
458 list_for_each_entry_rcu(iter
, &cipso_v4_doi_list
, list
)
459 if (iter
->doi
== doi
&& iter
->valid
)
465 * cipso_v4_doi_add - Add a new DOI to the CIPSO protocol engine
466 * @doi_def: the DOI structure
469 * The caller defines a new DOI for use by the CIPSO engine and calls this
470 * function to add it to the list of acceptable domains. The caller must
471 * ensure that the mapping table specified in @doi_def->map meets all of the
472 * requirements of the mapping type (see cipso_ipv4.h for details). Returns
473 * zero on success and non-zero on failure.
476 int cipso_v4_doi_add(struct cipso_v4_doi
*doi_def
)
480 if (doi_def
== NULL
|| doi_def
->doi
== CIPSO_V4_DOI_UNKNOWN
)
482 for (iter
= 0; iter
< CIPSO_V4_TAG_MAXCNT
; iter
++) {
483 switch (doi_def
->tags
[iter
]) {
484 case CIPSO_V4_TAG_RBITMAP
:
486 case CIPSO_V4_TAG_RANGE
:
487 if (doi_def
->type
!= CIPSO_V4_MAP_PASS
)
490 case CIPSO_V4_TAG_INVALID
:
494 case CIPSO_V4_TAG_ENUM
:
495 if (doi_def
->type
!= CIPSO_V4_MAP_PASS
)
504 INIT_RCU_HEAD(&doi_def
->rcu
);
505 INIT_LIST_HEAD(&doi_def
->dom_list
);
508 if (cipso_v4_doi_search(doi_def
->doi
) != NULL
)
509 goto doi_add_failure_rlock
;
510 spin_lock(&cipso_v4_doi_list_lock
);
511 if (cipso_v4_doi_search(doi_def
->doi
) != NULL
)
512 goto doi_add_failure_slock
;
513 list_add_tail_rcu(&doi_def
->list
, &cipso_v4_doi_list
);
514 spin_unlock(&cipso_v4_doi_list_lock
);
519 doi_add_failure_slock
:
520 spin_unlock(&cipso_v4_doi_list_lock
);
521 doi_add_failure_rlock
:
527 * cipso_v4_doi_remove - Remove an existing DOI from the CIPSO protocol engine
528 * @doi: the DOI value
529 * @audit_secid: the LSM secid to use in the audit message
530 * @callback: the DOI cleanup/free callback
533 * Removes a DOI definition from the CIPSO engine, @callback is called to
534 * free any memory. The NetLabel routines will be called to release their own
535 * LSM domain mappings as well as our own domain list. Returns zero on
536 * success and negative values on failure.
539 int cipso_v4_doi_remove(u32 doi
,
540 struct netlbl_audit
*audit_info
,
541 void (*callback
) (struct rcu_head
* head
))
543 struct cipso_v4_doi
*doi_def
;
544 struct cipso_v4_domhsh_entry
*dom_iter
;
547 if (cipso_v4_doi_search(doi
) != NULL
) {
548 spin_lock(&cipso_v4_doi_list_lock
);
549 doi_def
= cipso_v4_doi_search(doi
);
550 if (doi_def
== NULL
) {
551 spin_unlock(&cipso_v4_doi_list_lock
);
556 list_del_rcu(&doi_def
->list
);
557 spin_unlock(&cipso_v4_doi_list_lock
);
558 list_for_each_entry_rcu(dom_iter
, &doi_def
->dom_list
, list
)
560 netlbl_domhsh_remove(dom_iter
->domain
,
562 cipso_v4_cache_invalidate();
565 call_rcu(&doi_def
->rcu
, callback
);
574 * cipso_v4_doi_getdef - Returns a pointer to a valid DOI definition
575 * @doi: the DOI value
578 * Searches for a valid DOI definition and if one is found it is returned to
579 * the caller. Otherwise NULL is returned. The caller must ensure that
580 * rcu_read_lock() is held while accessing the returned definition.
583 struct cipso_v4_doi
*cipso_v4_doi_getdef(u32 doi
)
585 return cipso_v4_doi_search(doi
);
589 * cipso_v4_doi_walk - Iterate through the DOI definitions
590 * @skip_cnt: skip past this number of DOI definitions, updated
591 * @callback: callback for each DOI definition
592 * @cb_arg: argument for the callback function
595 * Iterate over the DOI definition list, skipping the first @skip_cnt entries.
596 * For each entry call @callback, if @callback returns a negative value stop
597 * 'walking' through the list and return. Updates the value in @skip_cnt upon
598 * return. Returns zero on success, negative values on failure.
601 int cipso_v4_doi_walk(u32
*skip_cnt
,
602 int (*callback
) (struct cipso_v4_doi
*doi_def
, void *arg
),
605 int ret_val
= -ENOENT
;
607 struct cipso_v4_doi
*iter_doi
;
610 list_for_each_entry_rcu(iter_doi
, &cipso_v4_doi_list
, list
)
611 if (iter_doi
->valid
) {
612 if (doi_cnt
++ < *skip_cnt
)
614 ret_val
= callback(iter_doi
, cb_arg
);
617 goto doi_walk_return
;
628 * cipso_v4_doi_domhsh_add - Adds a domain entry to a DOI definition
629 * @doi_def: the DOI definition
630 * @domain: the domain to add
633 * Adds the @domain to the DOI specified by @doi_def, this function
634 * should only be called by external functions (i.e. NetLabel). This function
635 * does allocate memory. Returns zero on success, negative values on failure.
638 int cipso_v4_doi_domhsh_add(struct cipso_v4_doi
*doi_def
, const char *domain
)
640 struct cipso_v4_domhsh_entry
*iter
;
641 struct cipso_v4_domhsh_entry
*new_dom
;
643 new_dom
= kzalloc(sizeof(*new_dom
), GFP_KERNEL
);
647 new_dom
->domain
= kstrdup(domain
, GFP_KERNEL
);
648 if (new_dom
->domain
== NULL
) {
654 INIT_RCU_HEAD(&new_dom
->rcu
);
657 spin_lock(&cipso_v4_doi_list_lock
);
658 list_for_each_entry_rcu(iter
, &doi_def
->dom_list
, list
)
660 ((domain
!= NULL
&& iter
->domain
!= NULL
&&
661 strcmp(iter
->domain
, domain
) == 0) ||
662 (domain
== NULL
&& iter
->domain
== NULL
))) {
663 spin_unlock(&cipso_v4_doi_list_lock
);
665 kfree(new_dom
->domain
);
669 list_add_tail_rcu(&new_dom
->list
, &doi_def
->dom_list
);
670 spin_unlock(&cipso_v4_doi_list_lock
);
677 * cipso_v4_doi_domhsh_remove - Removes a domain entry from a DOI definition
678 * @doi_def: the DOI definition
679 * @domain: the domain to remove
682 * Removes the @domain from the DOI specified by @doi_def, this function
683 * should only be called by external functions (i.e. NetLabel). Returns zero
684 * on success and negative values on error.
687 int cipso_v4_doi_domhsh_remove(struct cipso_v4_doi
*doi_def
,
690 struct cipso_v4_domhsh_entry
*iter
;
693 spin_lock(&cipso_v4_doi_list_lock
);
694 list_for_each_entry_rcu(iter
, &doi_def
->dom_list
, list
)
696 ((domain
!= NULL
&& iter
->domain
!= NULL
&&
697 strcmp(iter
->domain
, domain
) == 0) ||
698 (domain
== NULL
&& iter
->domain
== NULL
))) {
700 list_del_rcu(&iter
->list
);
701 spin_unlock(&cipso_v4_doi_list_lock
);
703 call_rcu(&iter
->rcu
, cipso_v4_doi_domhsh_free
);
707 spin_unlock(&cipso_v4_doi_list_lock
);
714 * Label Mapping Functions
718 * cipso_v4_map_lvl_valid - Checks to see if the given level is understood
719 * @doi_def: the DOI definition
720 * @level: the level to check
723 * Checks the given level against the given DOI definition and returns a
724 * negative value if the level does not have a valid mapping and a zero value
725 * if the level is defined by the DOI.
728 static int cipso_v4_map_lvl_valid(const struct cipso_v4_doi
*doi_def
, u8 level
)
730 switch (doi_def
->type
) {
731 case CIPSO_V4_MAP_PASS
:
733 case CIPSO_V4_MAP_STD
:
734 if (doi_def
->map
.std
->lvl
.cipso
[level
] < CIPSO_V4_INV_LVL
)
743 * cipso_v4_map_lvl_hton - Perform a level mapping from the host to the network
744 * @doi_def: the DOI definition
745 * @host_lvl: the host MLS level
746 * @net_lvl: the network/CIPSO MLS level
749 * Perform a label mapping to translate a local MLS level to the correct
750 * CIPSO level using the given DOI definition. Returns zero on success,
751 * negative values otherwise.
754 static int cipso_v4_map_lvl_hton(const struct cipso_v4_doi
*doi_def
,
758 switch (doi_def
->type
) {
759 case CIPSO_V4_MAP_PASS
:
762 case CIPSO_V4_MAP_STD
:
763 if (host_lvl
< doi_def
->map
.std
->lvl
.local_size
&&
764 doi_def
->map
.std
->lvl
.local
[host_lvl
] < CIPSO_V4_INV_LVL
) {
765 *net_lvl
= doi_def
->map
.std
->lvl
.local
[host_lvl
];
775 * cipso_v4_map_lvl_ntoh - Perform a level mapping from the network to the host
776 * @doi_def: the DOI definition
777 * @net_lvl: the network/CIPSO MLS level
778 * @host_lvl: the host MLS level
781 * Perform a label mapping to translate a CIPSO level to the correct local MLS
782 * level using the given DOI definition. Returns zero on success, negative
786 static int cipso_v4_map_lvl_ntoh(const struct cipso_v4_doi
*doi_def
,
790 struct cipso_v4_std_map_tbl
*map_tbl
;
792 switch (doi_def
->type
) {
793 case CIPSO_V4_MAP_PASS
:
796 case CIPSO_V4_MAP_STD
:
797 map_tbl
= doi_def
->map
.std
;
798 if (net_lvl
< map_tbl
->lvl
.cipso_size
&&
799 map_tbl
->lvl
.cipso
[net_lvl
] < CIPSO_V4_INV_LVL
) {
800 *host_lvl
= doi_def
->map
.std
->lvl
.cipso
[net_lvl
];
810 * cipso_v4_map_cat_rbm_valid - Checks to see if the category bitmap is valid
811 * @doi_def: the DOI definition
812 * @bitmap: category bitmap
813 * @bitmap_len: bitmap length in bytes
816 * Checks the given category bitmap against the given DOI definition and
817 * returns a negative value if any of the categories in the bitmap do not have
818 * a valid mapping and a zero value if all of the categories are valid.
821 static int cipso_v4_map_cat_rbm_valid(const struct cipso_v4_doi
*doi_def
,
822 const unsigned char *bitmap
,
826 u32 bitmap_len_bits
= bitmap_len
* 8;
830 switch (doi_def
->type
) {
831 case CIPSO_V4_MAP_PASS
:
833 case CIPSO_V4_MAP_STD
:
834 cipso_cat_size
= doi_def
->map
.std
->cat
.cipso_size
;
835 cipso_array
= doi_def
->map
.std
->cat
.cipso
;
837 cat
= cipso_v4_bitmap_walk(bitmap
,
843 if (cat
>= cipso_cat_size
||
844 cipso_array
[cat
] >= CIPSO_V4_INV_CAT
)
857 * cipso_v4_map_cat_rbm_hton - Perform a category mapping from host to network
858 * @doi_def: the DOI definition
859 * @secattr: the security attributes
860 * @net_cat: the zero'd out category bitmap in network/CIPSO format
861 * @net_cat_len: the length of the CIPSO bitmap in bytes
864 * Perform a label mapping to translate a local MLS category bitmap to the
865 * correct CIPSO bitmap using the given DOI definition. Returns the minimum
866 * size in bytes of the network bitmap on success, negative values otherwise.
869 static int cipso_v4_map_cat_rbm_hton(const struct cipso_v4_doi
*doi_def
,
870 const struct netlbl_lsm_secattr
*secattr
,
871 unsigned char *net_cat
,
875 u32 net_spot
= CIPSO_V4_INV_CAT
;
876 u32 net_spot_max
= 0;
877 u32 net_clen_bits
= net_cat_len
* 8;
878 u32 host_cat_size
= 0;
879 u32
*host_cat_array
= NULL
;
881 if (doi_def
->type
== CIPSO_V4_MAP_STD
) {
882 host_cat_size
= doi_def
->map
.std
->cat
.local_size
;
883 host_cat_array
= doi_def
->map
.std
->cat
.local
;
887 host_spot
= netlbl_secattr_catmap_walk(secattr
->mls_cat
,
892 switch (doi_def
->type
) {
893 case CIPSO_V4_MAP_PASS
:
894 net_spot
= host_spot
;
896 case CIPSO_V4_MAP_STD
:
897 if (host_spot
>= host_cat_size
)
899 net_spot
= host_cat_array
[host_spot
];
900 if (net_spot
>= CIPSO_V4_INV_CAT
)
904 if (net_spot
>= net_clen_bits
)
906 cipso_v4_bitmap_setbit(net_cat
, net_spot
, 1);
908 if (net_spot
> net_spot_max
)
909 net_spot_max
= net_spot
;
912 if (++net_spot_max
% 8)
913 return net_spot_max
/ 8 + 1;
914 return net_spot_max
/ 8;
918 * cipso_v4_map_cat_rbm_ntoh - Perform a category mapping from network to host
919 * @doi_def: the DOI definition
920 * @net_cat: the category bitmap in network/CIPSO format
921 * @net_cat_len: the length of the CIPSO bitmap in bytes
922 * @secattr: the security attributes
925 * Perform a label mapping to translate a CIPSO bitmap to the correct local
926 * MLS category bitmap using the given DOI definition. Returns zero on
927 * success, negative values on failure.
930 static int cipso_v4_map_cat_rbm_ntoh(const struct cipso_v4_doi
*doi_def
,
931 const unsigned char *net_cat
,
933 struct netlbl_lsm_secattr
*secattr
)
937 u32 host_spot
= CIPSO_V4_INV_CAT
;
938 u32 net_clen_bits
= net_cat_len
* 8;
939 u32 net_cat_size
= 0;
940 u32
*net_cat_array
= NULL
;
942 if (doi_def
->type
== CIPSO_V4_MAP_STD
) {
943 net_cat_size
= doi_def
->map
.std
->cat
.cipso_size
;
944 net_cat_array
= doi_def
->map
.std
->cat
.cipso
;
948 net_spot
= cipso_v4_bitmap_walk(net_cat
,
958 switch (doi_def
->type
) {
959 case CIPSO_V4_MAP_PASS
:
960 host_spot
= net_spot
;
962 case CIPSO_V4_MAP_STD
:
963 if (net_spot
>= net_cat_size
)
965 host_spot
= net_cat_array
[net_spot
];
966 if (host_spot
>= CIPSO_V4_INV_CAT
)
970 ret_val
= netlbl_secattr_catmap_setbit(secattr
->mls_cat
,
981 * cipso_v4_map_cat_enum_valid - Checks to see if the categories are valid
982 * @doi_def: the DOI definition
983 * @enumcat: category list
984 * @enumcat_len: length of the category list in bytes
987 * Checks the given categories against the given DOI definition and returns a
988 * negative value if any of the categories do not have a valid mapping and a
989 * zero value if all of the categories are valid.
992 static int cipso_v4_map_cat_enum_valid(const struct cipso_v4_doi
*doi_def
,
993 const unsigned char *enumcat
,
1000 if (doi_def
->type
!= CIPSO_V4_MAP_PASS
|| enumcat_len
& 0x01)
1003 for (iter
= 0; iter
< enumcat_len
; iter
+= 2) {
1004 cat
= ntohs(get_unaligned((__be16
*)&enumcat
[iter
]));
1005 if (cat
<= cat_prev
)
1014 * cipso_v4_map_cat_enum_hton - Perform a category mapping from host to network
1015 * @doi_def: the DOI definition
1016 * @secattr: the security attributes
1017 * @net_cat: the zero'd out category list in network/CIPSO format
1018 * @net_cat_len: the length of the CIPSO category list in bytes
1021 * Perform a label mapping to translate a local MLS category bitmap to the
1022 * correct CIPSO category list using the given DOI definition. Returns the
1023 * size in bytes of the network category bitmap on success, negative values
1027 static int cipso_v4_map_cat_enum_hton(const struct cipso_v4_doi
*doi_def
,
1028 const struct netlbl_lsm_secattr
*secattr
,
1029 unsigned char *net_cat
,
1036 cat
= netlbl_secattr_catmap_walk(secattr
->mls_cat
, cat
+ 1);
1039 if ((cat_iter
+ 2) > net_cat_len
)
1042 *((__be16
*)&net_cat
[cat_iter
]) = htons(cat
);
1050 * cipso_v4_map_cat_enum_ntoh - Perform a category mapping from network to host
1051 * @doi_def: the DOI definition
1052 * @net_cat: the category list in network/CIPSO format
1053 * @net_cat_len: the length of the CIPSO bitmap in bytes
1054 * @secattr: the security attributes
1057 * Perform a label mapping to translate a CIPSO category list to the correct
1058 * local MLS category bitmap using the given DOI definition. Returns zero on
1059 * success, negative values on failure.
1062 static int cipso_v4_map_cat_enum_ntoh(const struct cipso_v4_doi
*doi_def
,
1063 const unsigned char *net_cat
,
1065 struct netlbl_lsm_secattr
*secattr
)
1070 for (iter
= 0; iter
< net_cat_len
; iter
+= 2) {
1071 ret_val
= netlbl_secattr_catmap_setbit(secattr
->mls_cat
,
1072 ntohs(get_unaligned((__be16
*)&net_cat
[iter
])),
1082 * cipso_v4_map_cat_rng_valid - Checks to see if the categories are valid
1083 * @doi_def: the DOI definition
1084 * @rngcat: category list
1085 * @rngcat_len: length of the category list in bytes
1088 * Checks the given categories against the given DOI definition and returns a
1089 * negative value if any of the categories do not have a valid mapping and a
1090 * zero value if all of the categories are valid.
1093 static int cipso_v4_map_cat_rng_valid(const struct cipso_v4_doi
*doi_def
,
1094 const unsigned char *rngcat
,
1099 u32 cat_prev
= CIPSO_V4_MAX_REM_CATS
+ 1;
1102 if (doi_def
->type
!= CIPSO_V4_MAP_PASS
|| rngcat_len
& 0x01)
1105 for (iter
= 0; iter
< rngcat_len
; iter
+= 4) {
1106 cat_high
= ntohs(get_unaligned((__be16
*)&rngcat
[iter
]));
1107 if ((iter
+ 4) <= rngcat_len
)
1109 get_unaligned((__be16
*)&rngcat
[iter
+ 2]));
1113 if (cat_high
> cat_prev
)
1123 * cipso_v4_map_cat_rng_hton - Perform a category mapping from host to network
1124 * @doi_def: the DOI definition
1125 * @secattr: the security attributes
1126 * @net_cat: the zero'd out category list in network/CIPSO format
1127 * @net_cat_len: the length of the CIPSO category list in bytes
1130 * Perform a label mapping to translate a local MLS category bitmap to the
1131 * correct CIPSO category list using the given DOI definition. Returns the
1132 * size in bytes of the network category bitmap on success, negative values
1136 static int cipso_v4_map_cat_rng_hton(const struct cipso_v4_doi
*doi_def
,
1137 const struct netlbl_lsm_secattr
*secattr
,
1138 unsigned char *net_cat
,
1142 u16 array
[CIPSO_V4_TAG_RNG_CAT_MAX
* 2];
1146 /* make sure we don't overflow the 'array[]' variable */
1148 (CIPSO_V4_OPT_LEN_MAX
- CIPSO_V4_HDR_LEN
- CIPSO_V4_TAG_RNG_BLEN
))
1152 iter
= netlbl_secattr_catmap_walk(secattr
->mls_cat
, iter
+ 1);
1155 cat_size
+= (iter
== 0 ? 0 : sizeof(u16
));
1156 if (cat_size
> net_cat_len
)
1158 array
[array_cnt
++] = iter
;
1160 iter
= netlbl_secattr_catmap_walk_rng(secattr
->mls_cat
, iter
);
1163 cat_size
+= sizeof(u16
);
1164 if (cat_size
> net_cat_len
)
1166 array
[array_cnt
++] = iter
;
1169 for (iter
= 0; array_cnt
> 0;) {
1170 *((__be16
*)&net_cat
[iter
]) = htons(array
[--array_cnt
]);
1173 if (array
[array_cnt
] != 0) {
1174 *((__be16
*)&net_cat
[iter
]) = htons(array
[array_cnt
]);
1183 * cipso_v4_map_cat_rng_ntoh - Perform a category mapping from network to host
1184 * @doi_def: the DOI definition
1185 * @net_cat: the category list in network/CIPSO format
1186 * @net_cat_len: the length of the CIPSO bitmap in bytes
1187 * @secattr: the security attributes
1190 * Perform a label mapping to translate a CIPSO category list to the correct
1191 * local MLS category bitmap using the given DOI definition. Returns zero on
1192 * success, negative values on failure.
1195 static int cipso_v4_map_cat_rng_ntoh(const struct cipso_v4_doi
*doi_def
,
1196 const unsigned char *net_cat
,
1198 struct netlbl_lsm_secattr
*secattr
)
1205 for (net_iter
= 0; net_iter
< net_cat_len
; net_iter
+= 4) {
1206 cat_high
= ntohs(get_unaligned((__be16
*)&net_cat
[net_iter
]));
1207 if ((net_iter
+ 4) <= net_cat_len
)
1209 get_unaligned((__be16
*)&net_cat
[net_iter
+ 2]));
1213 ret_val
= netlbl_secattr_catmap_setrng(secattr
->mls_cat
,
1225 * Protocol Handling Functions
1229 * cipso_v4_gentag_hdr - Generate a CIPSO option header
1230 * @doi_def: the DOI definition
1231 * @len: the total tag length in bytes, not including this header
1232 * @buf: the CIPSO option buffer
1235 * Write a CIPSO header into the beginning of @buffer.
1238 static void cipso_v4_gentag_hdr(const struct cipso_v4_doi
*doi_def
,
1242 buf
[0] = IPOPT_CIPSO
;
1243 buf
[1] = CIPSO_V4_HDR_LEN
+ len
;
1244 *(__be32
*)&buf
[2] = htonl(doi_def
->doi
);
1248 * cipso_v4_gentag_rbm - Generate a CIPSO restricted bitmap tag (type #1)
1249 * @doi_def: the DOI definition
1250 * @secattr: the security attributes
1251 * @buffer: the option buffer
1252 * @buffer_len: length of buffer in bytes
1255 * Generate a CIPSO option using the restricted bitmap tag, tag type #1. The
1256 * actual buffer length may be larger than the indicated size due to
1257 * translation between host and network category bitmaps. Returns the size of
1258 * the tag on success, negative values on failure.
1261 static int cipso_v4_gentag_rbm(const struct cipso_v4_doi
*doi_def
,
1262 const struct netlbl_lsm_secattr
*secattr
,
1263 unsigned char *buffer
,
1270 if ((secattr
->flags
& NETLBL_SECATTR_MLS_LVL
) == 0)
1273 ret_val
= cipso_v4_map_lvl_hton(doi_def
, secattr
->mls_lvl
, &level
);
1277 if (secattr
->flags
& NETLBL_SECATTR_MLS_CAT
) {
1278 ret_val
= cipso_v4_map_cat_rbm_hton(doi_def
,
1285 /* This will send packets using the "optimized" format when
1286 * possibile as specified in section 3.4.2.6 of the
1288 if (cipso_v4_rbm_optfmt
&& ret_val
> 0 && ret_val
<= 10)
1291 tag_len
= 4 + ret_val
;
1296 buffer
[1] = tag_len
;
1303 * cipso_v4_parsetag_rbm - Parse a CIPSO restricted bitmap tag
1304 * @doi_def: the DOI definition
1305 * @tag: the CIPSO tag
1306 * @secattr: the security attributes
1309 * Parse a CIPSO restricted bitmap tag (tag type #1) and return the security
1310 * attributes in @secattr. Return zero on success, negatives values on
1314 static int cipso_v4_parsetag_rbm(const struct cipso_v4_doi
*doi_def
,
1315 const unsigned char *tag
,
1316 struct netlbl_lsm_secattr
*secattr
)
1319 u8 tag_len
= tag
[1];
1322 ret_val
= cipso_v4_map_lvl_ntoh(doi_def
, tag
[3], &level
);
1325 secattr
->mls_lvl
= level
;
1326 secattr
->flags
|= NETLBL_SECATTR_MLS_LVL
;
1329 secattr
->mls_cat
= netlbl_secattr_catmap_alloc(GFP_ATOMIC
);
1330 if (secattr
->mls_cat
== NULL
)
1333 ret_val
= cipso_v4_map_cat_rbm_ntoh(doi_def
,
1338 netlbl_secattr_catmap_free(secattr
->mls_cat
);
1342 secattr
->flags
|= NETLBL_SECATTR_MLS_CAT
;
1349 * cipso_v4_gentag_enum - Generate a CIPSO enumerated tag (type #2)
1350 * @doi_def: the DOI definition
1351 * @secattr: the security attributes
1352 * @buffer: the option buffer
1353 * @buffer_len: length of buffer in bytes
1356 * Generate a CIPSO option using the enumerated tag, tag type #2. Returns the
1357 * size of the tag on success, negative values on failure.
1360 static int cipso_v4_gentag_enum(const struct cipso_v4_doi
*doi_def
,
1361 const struct netlbl_lsm_secattr
*secattr
,
1362 unsigned char *buffer
,
1369 if (!(secattr
->flags
& NETLBL_SECATTR_MLS_LVL
))
1372 ret_val
= cipso_v4_map_lvl_hton(doi_def
, secattr
->mls_lvl
, &level
);
1376 if (secattr
->flags
& NETLBL_SECATTR_MLS_CAT
) {
1377 ret_val
= cipso_v4_map_cat_enum_hton(doi_def
,
1384 tag_len
= 4 + ret_val
;
1389 buffer
[1] = tag_len
;
1396 * cipso_v4_parsetag_enum - Parse a CIPSO enumerated tag
1397 * @doi_def: the DOI definition
1398 * @tag: the CIPSO tag
1399 * @secattr: the security attributes
1402 * Parse a CIPSO enumerated tag (tag type #2) and return the security
1403 * attributes in @secattr. Return zero on success, negatives values on
1407 static int cipso_v4_parsetag_enum(const struct cipso_v4_doi
*doi_def
,
1408 const unsigned char *tag
,
1409 struct netlbl_lsm_secattr
*secattr
)
1412 u8 tag_len
= tag
[1];
1415 ret_val
= cipso_v4_map_lvl_ntoh(doi_def
, tag
[3], &level
);
1418 secattr
->mls_lvl
= level
;
1419 secattr
->flags
|= NETLBL_SECATTR_MLS_LVL
;
1422 secattr
->mls_cat
= netlbl_secattr_catmap_alloc(GFP_ATOMIC
);
1423 if (secattr
->mls_cat
== NULL
)
1426 ret_val
= cipso_v4_map_cat_enum_ntoh(doi_def
,
1431 netlbl_secattr_catmap_free(secattr
->mls_cat
);
1435 secattr
->flags
|= NETLBL_SECATTR_MLS_CAT
;
1442 * cipso_v4_gentag_rng - Generate a CIPSO ranged tag (type #5)
1443 * @doi_def: the DOI definition
1444 * @secattr: the security attributes
1445 * @buffer: the option buffer
1446 * @buffer_len: length of buffer in bytes
1449 * Generate a CIPSO option using the ranged tag, tag type #5. Returns the
1450 * size of the tag on success, negative values on failure.
1453 static int cipso_v4_gentag_rng(const struct cipso_v4_doi
*doi_def
,
1454 const struct netlbl_lsm_secattr
*secattr
,
1455 unsigned char *buffer
,
1462 if (!(secattr
->flags
& NETLBL_SECATTR_MLS_LVL
))
1465 ret_val
= cipso_v4_map_lvl_hton(doi_def
, secattr
->mls_lvl
, &level
);
1469 if (secattr
->flags
& NETLBL_SECATTR_MLS_CAT
) {
1470 ret_val
= cipso_v4_map_cat_rng_hton(doi_def
,
1477 tag_len
= 4 + ret_val
;
1482 buffer
[1] = tag_len
;
1489 * cipso_v4_parsetag_rng - Parse a CIPSO ranged tag
1490 * @doi_def: the DOI definition
1491 * @tag: the CIPSO tag
1492 * @secattr: the security attributes
1495 * Parse a CIPSO ranged tag (tag type #5) and return the security attributes
1496 * in @secattr. Return zero on success, negatives values on failure.
1499 static int cipso_v4_parsetag_rng(const struct cipso_v4_doi
*doi_def
,
1500 const unsigned char *tag
,
1501 struct netlbl_lsm_secattr
*secattr
)
1504 u8 tag_len
= tag
[1];
1507 ret_val
= cipso_v4_map_lvl_ntoh(doi_def
, tag
[3], &level
);
1510 secattr
->mls_lvl
= level
;
1511 secattr
->flags
|= NETLBL_SECATTR_MLS_LVL
;
1514 secattr
->mls_cat
= netlbl_secattr_catmap_alloc(GFP_ATOMIC
);
1515 if (secattr
->mls_cat
== NULL
)
1518 ret_val
= cipso_v4_map_cat_rng_ntoh(doi_def
,
1523 netlbl_secattr_catmap_free(secattr
->mls_cat
);
1527 secattr
->flags
|= NETLBL_SECATTR_MLS_CAT
;
1534 * cipso_v4_validate - Validate a CIPSO option
1535 * @option: the start of the option, on error it is set to point to the error
1538 * This routine is called to validate a CIPSO option, it checks all of the
1539 * fields to ensure that they are at least valid, see the draft snippet below
1540 * for details. If the option is valid then a zero value is returned and
1541 * the value of @option is unchanged. If the option is invalid then a
1542 * non-zero value is returned and @option is adjusted to point to the
1543 * offending portion of the option. From the IETF draft ...
1545 * "If any field within the CIPSO options, such as the DOI identifier, is not
1546 * recognized the IP datagram is discarded and an ICMP 'parameter problem'
1547 * (type 12) is generated and returned. The ICMP code field is set to 'bad
1548 * parameter' (code 0) and the pointer is set to the start of the CIPSO field
1549 * that is unrecognized."
1552 int cipso_v4_validate(unsigned char **option
)
1554 unsigned char *opt
= *option
;
1556 unsigned char opt_iter
;
1557 unsigned char err_offset
= 0;
1560 struct cipso_v4_doi
*doi_def
= NULL
;
1563 /* caller already checks for length values that are too large */
1567 goto validate_return
;
1571 doi_def
= cipso_v4_doi_search(ntohl(get_unaligned((__be32
*)&opt
[2])));
1572 if (doi_def
== NULL
) {
1574 goto validate_return_locked
;
1578 tag
= opt
+ opt_iter
;
1579 while (opt_iter
< opt_len
) {
1580 for (tag_iter
= 0; doi_def
->tags
[tag_iter
] != tag
[0];)
1581 if (doi_def
->tags
[tag_iter
] == CIPSO_V4_TAG_INVALID
||
1582 ++tag_iter
== CIPSO_V4_TAG_MAXCNT
) {
1583 err_offset
= opt_iter
;
1584 goto validate_return_locked
;
1588 if (tag_len
> (opt_len
- opt_iter
)) {
1589 err_offset
= opt_iter
+ 1;
1590 goto validate_return_locked
;
1594 case CIPSO_V4_TAG_RBITMAP
:
1596 err_offset
= opt_iter
+ 1;
1597 goto validate_return_locked
;
1600 /* We are already going to do all the verification
1601 * necessary at the socket layer so from our point of
1602 * view it is safe to turn these checks off (and less
1603 * work), however, the CIPSO draft says we should do
1604 * all the CIPSO validations here but it doesn't
1605 * really specify _exactly_ what we need to validate
1606 * ... so, just make it a sysctl tunable. */
1607 if (cipso_v4_rbm_strictvalid
) {
1608 if (cipso_v4_map_lvl_valid(doi_def
,
1610 err_offset
= opt_iter
+ 3;
1611 goto validate_return_locked
;
1614 cipso_v4_map_cat_rbm_valid(doi_def
,
1617 err_offset
= opt_iter
+ 4;
1618 goto validate_return_locked
;
1622 case CIPSO_V4_TAG_ENUM
:
1624 err_offset
= opt_iter
+ 1;
1625 goto validate_return_locked
;
1628 if (cipso_v4_map_lvl_valid(doi_def
,
1630 err_offset
= opt_iter
+ 3;
1631 goto validate_return_locked
;
1634 cipso_v4_map_cat_enum_valid(doi_def
,
1637 err_offset
= opt_iter
+ 4;
1638 goto validate_return_locked
;
1641 case CIPSO_V4_TAG_RANGE
:
1643 err_offset
= opt_iter
+ 1;
1644 goto validate_return_locked
;
1647 if (cipso_v4_map_lvl_valid(doi_def
,
1649 err_offset
= opt_iter
+ 3;
1650 goto validate_return_locked
;
1653 cipso_v4_map_cat_rng_valid(doi_def
,
1656 err_offset
= opt_iter
+ 4;
1657 goto validate_return_locked
;
1661 err_offset
= opt_iter
;
1662 goto validate_return_locked
;
1666 opt_iter
+= tag_len
;
1669 validate_return_locked
:
1672 *option
= opt
+ err_offset
;
1677 * cipso_v4_error - Send the correct reponse for a bad packet
1679 * @error: the error code
1680 * @gateway: CIPSO gateway flag
1683 * Based on the error code given in @error, send an ICMP error message back to
1684 * the originating host. From the IETF draft ...
1686 * "If the contents of the CIPSO [option] are valid but the security label is
1687 * outside of the configured host or port label range, the datagram is
1688 * discarded and an ICMP 'destination unreachable' (type 3) is generated and
1689 * returned. The code field of the ICMP is set to 'communication with
1690 * destination network administratively prohibited' (code 9) or to
1691 * 'communication with destination host administratively prohibited'
1692 * (code 10). The value of the code is dependent on whether the originator
1693 * of the ICMP message is acting as a CIPSO host or a CIPSO gateway. The
1694 * recipient of the ICMP message MUST be able to handle either value. The
1695 * same procedure is performed if a CIPSO [option] can not be added to an
1696 * IP packet because it is too large to fit in the IP options area."
1698 * "If the error is triggered by receipt of an ICMP message, the message is
1699 * discarded and no response is permitted (consistent with general ICMP
1700 * processing rules)."
1703 void cipso_v4_error(struct sk_buff
*skb
, int error
, u32 gateway
)
1705 if (ip_hdr(skb
)->protocol
== IPPROTO_ICMP
|| error
!= -EACCES
)
1709 icmp_send(skb
, ICMP_DEST_UNREACH
, ICMP_NET_ANO
, 0);
1711 icmp_send(skb
, ICMP_DEST_UNREACH
, ICMP_HOST_ANO
, 0);
1715 * cipso_v4_sock_setattr - Add a CIPSO option to a socket
1717 * @doi_def: the CIPSO DOI to use
1718 * @secattr: the specific security attributes of the socket
1721 * Set the CIPSO option on the given socket using the DOI definition and
1722 * security attributes passed to the function. This function requires
1723 * exclusive access to @sk, which means it either needs to be in the
1724 * process of being created or locked. Returns zero on success and negative
1725 * values on failure.
1728 int cipso_v4_sock_setattr(struct sock
*sk
,
1729 const struct cipso_v4_doi
*doi_def
,
1730 const struct netlbl_lsm_secattr
*secattr
)
1732 int ret_val
= -EPERM
;
1737 struct ip_options
*opt
= NULL
;
1738 struct inet_sock
*sk_inet
;
1739 struct inet_connection_sock
*sk_conn
;
1741 /* In the case of sock_create_lite(), the sock->sk field is not
1742 * defined yet but it is not a problem as the only users of these
1743 * "lite" PF_INET sockets are functions which do an accept() call
1744 * afterwards so we will label the socket as part of the accept(). */
1748 /* We allocate the maximum CIPSO option size here so we are probably
1749 * being a little wasteful, but it makes our life _much_ easier later
1750 * on and after all we are only talking about 40 bytes. */
1751 buf_len
= CIPSO_V4_OPT_LEN_MAX
;
1752 buf
= kmalloc(buf_len
, GFP_ATOMIC
);
1755 goto socket_setattr_failure
;
1758 /* XXX - This code assumes only one tag per CIPSO option which isn't
1759 * really a good assumption to make but since we only support the MAC
1760 * tags right now it is a safe assumption. */
1763 memset(buf
, 0, buf_len
);
1764 switch (doi_def
->tags
[iter
]) {
1765 case CIPSO_V4_TAG_RBITMAP
:
1766 ret_val
= cipso_v4_gentag_rbm(doi_def
,
1768 &buf
[CIPSO_V4_HDR_LEN
],
1769 buf_len
- CIPSO_V4_HDR_LEN
);
1771 case CIPSO_V4_TAG_ENUM
:
1772 ret_val
= cipso_v4_gentag_enum(doi_def
,
1774 &buf
[CIPSO_V4_HDR_LEN
],
1775 buf_len
- CIPSO_V4_HDR_LEN
);
1777 case CIPSO_V4_TAG_RANGE
:
1778 ret_val
= cipso_v4_gentag_rng(doi_def
,
1780 &buf
[CIPSO_V4_HDR_LEN
],
1781 buf_len
- CIPSO_V4_HDR_LEN
);
1785 goto socket_setattr_failure
;
1789 } while (ret_val
< 0 &&
1790 iter
< CIPSO_V4_TAG_MAXCNT
&&
1791 doi_def
->tags
[iter
] != CIPSO_V4_TAG_INVALID
);
1793 goto socket_setattr_failure
;
1794 cipso_v4_gentag_hdr(doi_def
, buf
, ret_val
);
1795 buf_len
= CIPSO_V4_HDR_LEN
+ ret_val
;
1797 /* We can't use ip_options_get() directly because it makes a call to
1798 * ip_options_get_alloc() which allocates memory with GFP_KERNEL and
1799 * we won't always have CAP_NET_RAW even though we _always_ want to
1800 * set the IPOPT_CIPSO option. */
1801 opt_len
= (buf_len
+ 3) & ~3;
1802 opt
= kzalloc(sizeof(*opt
) + opt_len
, GFP_ATOMIC
);
1805 goto socket_setattr_failure
;
1807 memcpy(opt
->__data
, buf
, buf_len
);
1808 opt
->optlen
= opt_len
;
1810 opt
->cipso
= sizeof(struct iphdr
);
1814 sk_inet
= inet_sk(sk
);
1815 if (sk_inet
->is_icsk
) {
1816 sk_conn
= inet_csk(sk
);
1818 sk_conn
->icsk_ext_hdr_len
-= sk_inet
->opt
->optlen
;
1819 sk_conn
->icsk_ext_hdr_len
+= opt
->optlen
;
1820 sk_conn
->icsk_sync_mss(sk
, sk_conn
->icsk_pmtu_cookie
);
1822 opt
= xchg(&sk_inet
->opt
, opt
);
1827 socket_setattr_failure
:
1834 * cipso_v4_sock_getattr - Get the security attributes from a sock
1836 * @secattr: the security attributes
1839 * Query @sk to see if there is a CIPSO option attached to the sock and if
1840 * there is return the CIPSO security attributes in @secattr. This function
1841 * requires that @sk be locked, or privately held, but it does not do any
1842 * locking itself. Returns zero on success and negative values on failure.
1845 int cipso_v4_sock_getattr(struct sock
*sk
, struct netlbl_lsm_secattr
*secattr
)
1847 int ret_val
= -ENOMSG
;
1848 struct inet_sock
*sk_inet
;
1849 unsigned char *cipso_ptr
;
1851 struct cipso_v4_doi
*doi_def
;
1853 sk_inet
= inet_sk(sk
);
1854 if (sk_inet
->opt
== NULL
|| sk_inet
->opt
->cipso
== 0)
1856 cipso_ptr
= sk_inet
->opt
->__data
+ sk_inet
->opt
->cipso
-
1857 sizeof(struct iphdr
);
1858 ret_val
= cipso_v4_cache_check(cipso_ptr
, cipso_ptr
[1], secattr
);
1862 doi
= ntohl(get_unaligned((__be32
*)&cipso_ptr
[2]));
1864 doi_def
= cipso_v4_doi_search(doi
);
1865 if (doi_def
== NULL
) {
1870 /* XXX - This code assumes only one tag per CIPSO option which isn't
1871 * really a good assumption to make but since we only support the MAC
1872 * tags right now it is a safe assumption. */
1873 switch (cipso_ptr
[6]) {
1874 case CIPSO_V4_TAG_RBITMAP
:
1875 ret_val
= cipso_v4_parsetag_rbm(doi_def
,
1879 case CIPSO_V4_TAG_ENUM
:
1880 ret_val
= cipso_v4_parsetag_enum(doi_def
,
1884 case CIPSO_V4_TAG_RANGE
:
1885 ret_val
= cipso_v4_parsetag_rng(doi_def
,
1896 * cipso_v4_skbuff_getattr - Get the security attributes from the CIPSO option
1898 * @secattr: the security attributes
1901 * Parse the given packet's CIPSO option and return the security attributes.
1902 * Returns zero on success and negative values on failure.
1905 int cipso_v4_skbuff_getattr(const struct sk_buff
*skb
,
1906 struct netlbl_lsm_secattr
*secattr
)
1908 int ret_val
= -ENOMSG
;
1909 unsigned char *cipso_ptr
;
1911 struct cipso_v4_doi
*doi_def
;
1913 cipso_ptr
= CIPSO_V4_OPTPTR(skb
);
1914 if (cipso_v4_cache_check(cipso_ptr
, cipso_ptr
[1], secattr
) == 0)
1917 doi
= ntohl(get_unaligned((__be32
*)&cipso_ptr
[2]));
1919 doi_def
= cipso_v4_doi_search(doi
);
1920 if (doi_def
== NULL
)
1921 goto skbuff_getattr_return
;
1923 /* XXX - This code assumes only one tag per CIPSO option which isn't
1924 * really a good assumption to make but since we only support the MAC
1925 * tags right now it is a safe assumption. */
1926 switch (cipso_ptr
[6]) {
1927 case CIPSO_V4_TAG_RBITMAP
:
1928 ret_val
= cipso_v4_parsetag_rbm(doi_def
,
1932 case CIPSO_V4_TAG_ENUM
:
1933 ret_val
= cipso_v4_parsetag_enum(doi_def
,
1937 case CIPSO_V4_TAG_RANGE
:
1938 ret_val
= cipso_v4_parsetag_rng(doi_def
,
1944 skbuff_getattr_return
:
1954 * cipso_v4_init - Initialize the CIPSO module
1957 * Initialize the CIPSO module and prepare it for use. Returns zero on success
1958 * and negative values on failure.
1961 static int __init
cipso_v4_init(void)
1965 ret_val
= cipso_v4_cache_init();
1967 panic("Failed to initialize the CIPSO/IPv4 cache (%d)\n",
1973 subsys_initcall(cipso_v4_init
);