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
);
507 spin_lock(&cipso_v4_doi_list_lock
);
508 if (cipso_v4_doi_search(doi_def
->doi
) != NULL
)
509 goto doi_add_failure
;
510 list_add_tail_rcu(&doi_def
->list
, &cipso_v4_doi_list
);
511 spin_unlock(&cipso_v4_doi_list_lock
);
516 spin_unlock(&cipso_v4_doi_list_lock
);
521 * cipso_v4_doi_remove - Remove an existing DOI from the CIPSO protocol engine
522 * @doi: the DOI value
523 * @audit_secid: the LSM secid to use in the audit message
524 * @callback: the DOI cleanup/free callback
527 * Removes a DOI definition from the CIPSO engine, @callback is called to
528 * free any memory. The NetLabel routines will be called to release their own
529 * LSM domain mappings as well as our own domain list. Returns zero on
530 * success and negative values on failure.
533 int cipso_v4_doi_remove(u32 doi
,
534 struct netlbl_audit
*audit_info
,
535 void (*callback
) (struct rcu_head
* head
))
537 struct cipso_v4_doi
*doi_def
;
538 struct cipso_v4_domhsh_entry
*dom_iter
;
540 spin_lock(&cipso_v4_doi_list_lock
);
541 doi_def
= cipso_v4_doi_search(doi
);
542 if (doi_def
!= NULL
) {
544 list_del_rcu(&doi_def
->list
);
545 spin_unlock(&cipso_v4_doi_list_lock
);
547 list_for_each_entry_rcu(dom_iter
, &doi_def
->dom_list
, list
)
549 netlbl_domhsh_remove(dom_iter
->domain
,
552 cipso_v4_cache_invalidate();
553 call_rcu(&doi_def
->rcu
, callback
);
556 spin_unlock(&cipso_v4_doi_list_lock
);
562 * cipso_v4_doi_getdef - Returns a pointer to a valid DOI definition
563 * @doi: the DOI value
566 * Searches for a valid DOI definition and if one is found it is returned to
567 * the caller. Otherwise NULL is returned. The caller must ensure that
568 * rcu_read_lock() is held while accessing the returned definition.
571 struct cipso_v4_doi
*cipso_v4_doi_getdef(u32 doi
)
573 return cipso_v4_doi_search(doi
);
577 * cipso_v4_doi_walk - Iterate through the DOI definitions
578 * @skip_cnt: skip past this number of DOI definitions, updated
579 * @callback: callback for each DOI definition
580 * @cb_arg: argument for the callback function
583 * Iterate over the DOI definition list, skipping the first @skip_cnt entries.
584 * For each entry call @callback, if @callback returns a negative value stop
585 * 'walking' through the list and return. Updates the value in @skip_cnt upon
586 * return. Returns zero on success, negative values on failure.
589 int cipso_v4_doi_walk(u32
*skip_cnt
,
590 int (*callback
) (struct cipso_v4_doi
*doi_def
, void *arg
),
593 int ret_val
= -ENOENT
;
595 struct cipso_v4_doi
*iter_doi
;
598 list_for_each_entry_rcu(iter_doi
, &cipso_v4_doi_list
, list
)
599 if (iter_doi
->valid
) {
600 if (doi_cnt
++ < *skip_cnt
)
602 ret_val
= callback(iter_doi
, cb_arg
);
605 goto doi_walk_return
;
616 * cipso_v4_doi_domhsh_add - Adds a domain entry to a DOI definition
617 * @doi_def: the DOI definition
618 * @domain: the domain to add
621 * Adds the @domain to the DOI specified by @doi_def, this function
622 * should only be called by external functions (i.e. NetLabel). This function
623 * does allocate memory. Returns zero on success, negative values on failure.
626 int cipso_v4_doi_domhsh_add(struct cipso_v4_doi
*doi_def
, const char *domain
)
628 struct cipso_v4_domhsh_entry
*iter
;
629 struct cipso_v4_domhsh_entry
*new_dom
;
631 new_dom
= kzalloc(sizeof(*new_dom
), GFP_KERNEL
);
635 new_dom
->domain
= kstrdup(domain
, GFP_KERNEL
);
636 if (new_dom
->domain
== NULL
) {
642 INIT_RCU_HEAD(&new_dom
->rcu
);
644 spin_lock(&cipso_v4_doi_list_lock
);
645 list_for_each_entry(iter
, &doi_def
->dom_list
, list
)
647 ((domain
!= NULL
&& iter
->domain
!= NULL
&&
648 strcmp(iter
->domain
, domain
) == 0) ||
649 (domain
== NULL
&& iter
->domain
== NULL
))) {
650 spin_unlock(&cipso_v4_doi_list_lock
);
651 kfree(new_dom
->domain
);
655 list_add_tail_rcu(&new_dom
->list
, &doi_def
->dom_list
);
656 spin_unlock(&cipso_v4_doi_list_lock
);
662 * cipso_v4_doi_domhsh_remove - Removes a domain entry from a DOI definition
663 * @doi_def: the DOI definition
664 * @domain: the domain to remove
667 * Removes the @domain from the DOI specified by @doi_def, this function
668 * should only be called by external functions (i.e. NetLabel). Returns zero
669 * on success and negative values on error.
672 int cipso_v4_doi_domhsh_remove(struct cipso_v4_doi
*doi_def
,
675 struct cipso_v4_domhsh_entry
*iter
;
677 spin_lock(&cipso_v4_doi_list_lock
);
678 list_for_each_entry(iter
, &doi_def
->dom_list
, list
)
680 ((domain
!= NULL
&& iter
->domain
!= NULL
&&
681 strcmp(iter
->domain
, domain
) == 0) ||
682 (domain
== NULL
&& iter
->domain
== NULL
))) {
684 list_del_rcu(&iter
->list
);
685 spin_unlock(&cipso_v4_doi_list_lock
);
686 call_rcu(&iter
->rcu
, cipso_v4_doi_domhsh_free
);
689 spin_unlock(&cipso_v4_doi_list_lock
);
695 * Label Mapping Functions
699 * cipso_v4_map_lvl_valid - Checks to see if the given level is understood
700 * @doi_def: the DOI definition
701 * @level: the level to check
704 * Checks the given level against the given DOI definition and returns a
705 * negative value if the level does not have a valid mapping and a zero value
706 * if the level is defined by the DOI.
709 static int cipso_v4_map_lvl_valid(const struct cipso_v4_doi
*doi_def
, u8 level
)
711 switch (doi_def
->type
) {
712 case CIPSO_V4_MAP_PASS
:
714 case CIPSO_V4_MAP_STD
:
715 if (doi_def
->map
.std
->lvl
.cipso
[level
] < CIPSO_V4_INV_LVL
)
724 * cipso_v4_map_lvl_hton - Perform a level mapping from the host to the network
725 * @doi_def: the DOI definition
726 * @host_lvl: the host MLS level
727 * @net_lvl: the network/CIPSO MLS level
730 * Perform a label mapping to translate a local MLS level to the correct
731 * CIPSO level using the given DOI definition. Returns zero on success,
732 * negative values otherwise.
735 static int cipso_v4_map_lvl_hton(const struct cipso_v4_doi
*doi_def
,
739 switch (doi_def
->type
) {
740 case CIPSO_V4_MAP_PASS
:
743 case CIPSO_V4_MAP_STD
:
744 if (host_lvl
< doi_def
->map
.std
->lvl
.local_size
&&
745 doi_def
->map
.std
->lvl
.local
[host_lvl
] < CIPSO_V4_INV_LVL
) {
746 *net_lvl
= doi_def
->map
.std
->lvl
.local
[host_lvl
];
756 * cipso_v4_map_lvl_ntoh - Perform a level mapping from the network to the host
757 * @doi_def: the DOI definition
758 * @net_lvl: the network/CIPSO MLS level
759 * @host_lvl: the host MLS level
762 * Perform a label mapping to translate a CIPSO level to the correct local MLS
763 * level using the given DOI definition. Returns zero on success, negative
767 static int cipso_v4_map_lvl_ntoh(const struct cipso_v4_doi
*doi_def
,
771 struct cipso_v4_std_map_tbl
*map_tbl
;
773 switch (doi_def
->type
) {
774 case CIPSO_V4_MAP_PASS
:
777 case CIPSO_V4_MAP_STD
:
778 map_tbl
= doi_def
->map
.std
;
779 if (net_lvl
< map_tbl
->lvl
.cipso_size
&&
780 map_tbl
->lvl
.cipso
[net_lvl
] < CIPSO_V4_INV_LVL
) {
781 *host_lvl
= doi_def
->map
.std
->lvl
.cipso
[net_lvl
];
791 * cipso_v4_map_cat_rbm_valid - Checks to see if the category bitmap is valid
792 * @doi_def: the DOI definition
793 * @bitmap: category bitmap
794 * @bitmap_len: bitmap length in bytes
797 * Checks the given category bitmap against the given DOI definition and
798 * returns a negative value if any of the categories in the bitmap do not have
799 * a valid mapping and a zero value if all of the categories are valid.
802 static int cipso_v4_map_cat_rbm_valid(const struct cipso_v4_doi
*doi_def
,
803 const unsigned char *bitmap
,
807 u32 bitmap_len_bits
= bitmap_len
* 8;
811 switch (doi_def
->type
) {
812 case CIPSO_V4_MAP_PASS
:
814 case CIPSO_V4_MAP_STD
:
815 cipso_cat_size
= doi_def
->map
.std
->cat
.cipso_size
;
816 cipso_array
= doi_def
->map
.std
->cat
.cipso
;
818 cat
= cipso_v4_bitmap_walk(bitmap
,
824 if (cat
>= cipso_cat_size
||
825 cipso_array
[cat
] >= CIPSO_V4_INV_CAT
)
838 * cipso_v4_map_cat_rbm_hton - Perform a category mapping from host to network
839 * @doi_def: the DOI definition
840 * @secattr: the security attributes
841 * @net_cat: the zero'd out category bitmap in network/CIPSO format
842 * @net_cat_len: the length of the CIPSO bitmap in bytes
845 * Perform a label mapping to translate a local MLS category bitmap to the
846 * correct CIPSO bitmap using the given DOI definition. Returns the minimum
847 * size in bytes of the network bitmap on success, negative values otherwise.
850 static int cipso_v4_map_cat_rbm_hton(const struct cipso_v4_doi
*doi_def
,
851 const struct netlbl_lsm_secattr
*secattr
,
852 unsigned char *net_cat
,
856 u32 net_spot
= CIPSO_V4_INV_CAT
;
857 u32 net_spot_max
= 0;
858 u32 net_clen_bits
= net_cat_len
* 8;
859 u32 host_cat_size
= 0;
860 u32
*host_cat_array
= NULL
;
862 if (doi_def
->type
== CIPSO_V4_MAP_STD
) {
863 host_cat_size
= doi_def
->map
.std
->cat
.local_size
;
864 host_cat_array
= doi_def
->map
.std
->cat
.local
;
868 host_spot
= netlbl_secattr_catmap_walk(secattr
->mls_cat
,
873 switch (doi_def
->type
) {
874 case CIPSO_V4_MAP_PASS
:
875 net_spot
= host_spot
;
877 case CIPSO_V4_MAP_STD
:
878 if (host_spot
>= host_cat_size
)
880 net_spot
= host_cat_array
[host_spot
];
881 if (net_spot
>= CIPSO_V4_INV_CAT
)
885 if (net_spot
>= net_clen_bits
)
887 cipso_v4_bitmap_setbit(net_cat
, net_spot
, 1);
889 if (net_spot
> net_spot_max
)
890 net_spot_max
= net_spot
;
893 if (++net_spot_max
% 8)
894 return net_spot_max
/ 8 + 1;
895 return net_spot_max
/ 8;
899 * cipso_v4_map_cat_rbm_ntoh - Perform a category mapping from network to host
900 * @doi_def: the DOI definition
901 * @net_cat: the category bitmap in network/CIPSO format
902 * @net_cat_len: the length of the CIPSO bitmap in bytes
903 * @secattr: the security attributes
906 * Perform a label mapping to translate a CIPSO bitmap to the correct local
907 * MLS category bitmap using the given DOI definition. Returns zero on
908 * success, negative values on failure.
911 static int cipso_v4_map_cat_rbm_ntoh(const struct cipso_v4_doi
*doi_def
,
912 const unsigned char *net_cat
,
914 struct netlbl_lsm_secattr
*secattr
)
918 u32 host_spot
= CIPSO_V4_INV_CAT
;
919 u32 net_clen_bits
= net_cat_len
* 8;
920 u32 net_cat_size
= 0;
921 u32
*net_cat_array
= NULL
;
923 if (doi_def
->type
== CIPSO_V4_MAP_STD
) {
924 net_cat_size
= doi_def
->map
.std
->cat
.cipso_size
;
925 net_cat_array
= doi_def
->map
.std
->cat
.cipso
;
929 net_spot
= cipso_v4_bitmap_walk(net_cat
,
939 switch (doi_def
->type
) {
940 case CIPSO_V4_MAP_PASS
:
941 host_spot
= net_spot
;
943 case CIPSO_V4_MAP_STD
:
944 if (net_spot
>= net_cat_size
)
946 host_spot
= net_cat_array
[net_spot
];
947 if (host_spot
>= CIPSO_V4_INV_CAT
)
951 ret_val
= netlbl_secattr_catmap_setbit(secattr
->mls_cat
,
962 * cipso_v4_map_cat_enum_valid - Checks to see if the categories are valid
963 * @doi_def: the DOI definition
964 * @enumcat: category list
965 * @enumcat_len: length of the category list in bytes
968 * Checks the given categories against the given DOI definition and returns a
969 * negative value if any of the categories do not have a valid mapping and a
970 * zero value if all of the categories are valid.
973 static int cipso_v4_map_cat_enum_valid(const struct cipso_v4_doi
*doi_def
,
974 const unsigned char *enumcat
,
981 if (doi_def
->type
!= CIPSO_V4_MAP_PASS
|| enumcat_len
& 0x01)
984 for (iter
= 0; iter
< enumcat_len
; iter
+= 2) {
985 cat
= ntohs(get_unaligned((__be16
*)&enumcat
[iter
]));
995 * cipso_v4_map_cat_enum_hton - Perform a category mapping from host to network
996 * @doi_def: the DOI definition
997 * @secattr: the security attributes
998 * @net_cat: the zero'd out category list in network/CIPSO format
999 * @net_cat_len: the length of the CIPSO category list in bytes
1002 * Perform a label mapping to translate a local MLS category bitmap to the
1003 * correct CIPSO category list using the given DOI definition. Returns the
1004 * size in bytes of the network category bitmap on success, negative values
1008 static int cipso_v4_map_cat_enum_hton(const struct cipso_v4_doi
*doi_def
,
1009 const struct netlbl_lsm_secattr
*secattr
,
1010 unsigned char *net_cat
,
1017 cat
= netlbl_secattr_catmap_walk(secattr
->mls_cat
, cat
+ 1);
1020 if ((cat_iter
+ 2) > net_cat_len
)
1023 *((__be16
*)&net_cat
[cat_iter
]) = htons(cat
);
1031 * cipso_v4_map_cat_enum_ntoh - Perform a category mapping from network to host
1032 * @doi_def: the DOI definition
1033 * @net_cat: the category list in network/CIPSO format
1034 * @net_cat_len: the length of the CIPSO bitmap in bytes
1035 * @secattr: the security attributes
1038 * Perform a label mapping to translate a CIPSO category list to the correct
1039 * local MLS category bitmap using the given DOI definition. Returns zero on
1040 * success, negative values on failure.
1043 static int cipso_v4_map_cat_enum_ntoh(const struct cipso_v4_doi
*doi_def
,
1044 const unsigned char *net_cat
,
1046 struct netlbl_lsm_secattr
*secattr
)
1051 for (iter
= 0; iter
< net_cat_len
; iter
+= 2) {
1052 ret_val
= netlbl_secattr_catmap_setbit(secattr
->mls_cat
,
1053 ntohs(get_unaligned((__be16
*)&net_cat
[iter
])),
1063 * cipso_v4_map_cat_rng_valid - Checks to see if the categories are valid
1064 * @doi_def: the DOI definition
1065 * @rngcat: category list
1066 * @rngcat_len: length of the category list in bytes
1069 * Checks the given categories against the given DOI definition and returns a
1070 * negative value if any of the categories do not have a valid mapping and a
1071 * zero value if all of the categories are valid.
1074 static int cipso_v4_map_cat_rng_valid(const struct cipso_v4_doi
*doi_def
,
1075 const unsigned char *rngcat
,
1080 u32 cat_prev
= CIPSO_V4_MAX_REM_CATS
+ 1;
1083 if (doi_def
->type
!= CIPSO_V4_MAP_PASS
|| rngcat_len
& 0x01)
1086 for (iter
= 0; iter
< rngcat_len
; iter
+= 4) {
1087 cat_high
= ntohs(get_unaligned((__be16
*)&rngcat
[iter
]));
1088 if ((iter
+ 4) <= rngcat_len
)
1090 get_unaligned((__be16
*)&rngcat
[iter
+ 2]));
1094 if (cat_high
> cat_prev
)
1104 * cipso_v4_map_cat_rng_hton - Perform a category mapping from host to network
1105 * @doi_def: the DOI definition
1106 * @secattr: the security attributes
1107 * @net_cat: the zero'd out category list in network/CIPSO format
1108 * @net_cat_len: the length of the CIPSO category list in bytes
1111 * Perform a label mapping to translate a local MLS category bitmap to the
1112 * correct CIPSO category list using the given DOI definition. Returns the
1113 * size in bytes of the network category bitmap on success, negative values
1117 static int cipso_v4_map_cat_rng_hton(const struct cipso_v4_doi
*doi_def
,
1118 const struct netlbl_lsm_secattr
*secattr
,
1119 unsigned char *net_cat
,
1123 u16 array
[CIPSO_V4_TAG_RNG_CAT_MAX
* 2];
1127 /* make sure we don't overflow the 'array[]' variable */
1129 (CIPSO_V4_OPT_LEN_MAX
- CIPSO_V4_HDR_LEN
- CIPSO_V4_TAG_RNG_BLEN
))
1133 iter
= netlbl_secattr_catmap_walk(secattr
->mls_cat
, iter
+ 1);
1136 cat_size
+= (iter
== 0 ? 0 : sizeof(u16
));
1137 if (cat_size
> net_cat_len
)
1139 array
[array_cnt
++] = iter
;
1141 iter
= netlbl_secattr_catmap_walk_rng(secattr
->mls_cat
, iter
);
1144 cat_size
+= sizeof(u16
);
1145 if (cat_size
> net_cat_len
)
1147 array
[array_cnt
++] = iter
;
1150 for (iter
= 0; array_cnt
> 0;) {
1151 *((__be16
*)&net_cat
[iter
]) = htons(array
[--array_cnt
]);
1154 if (array
[array_cnt
] != 0) {
1155 *((__be16
*)&net_cat
[iter
]) = htons(array
[array_cnt
]);
1164 * cipso_v4_map_cat_rng_ntoh - Perform a category mapping from network to host
1165 * @doi_def: the DOI definition
1166 * @net_cat: the category list in network/CIPSO format
1167 * @net_cat_len: the length of the CIPSO bitmap in bytes
1168 * @secattr: the security attributes
1171 * Perform a label mapping to translate a CIPSO category list to the correct
1172 * local MLS category bitmap using the given DOI definition. Returns zero on
1173 * success, negative values on failure.
1176 static int cipso_v4_map_cat_rng_ntoh(const struct cipso_v4_doi
*doi_def
,
1177 const unsigned char *net_cat
,
1179 struct netlbl_lsm_secattr
*secattr
)
1186 for (net_iter
= 0; net_iter
< net_cat_len
; net_iter
+= 4) {
1187 cat_high
= ntohs(get_unaligned((__be16
*)&net_cat
[net_iter
]));
1188 if ((net_iter
+ 4) <= net_cat_len
)
1190 get_unaligned((__be16
*)&net_cat
[net_iter
+ 2]));
1194 ret_val
= netlbl_secattr_catmap_setrng(secattr
->mls_cat
,
1206 * Protocol Handling Functions
1210 * cipso_v4_gentag_hdr - Generate a CIPSO option header
1211 * @doi_def: the DOI definition
1212 * @len: the total tag length in bytes, not including this header
1213 * @buf: the CIPSO option buffer
1216 * Write a CIPSO header into the beginning of @buffer.
1219 static void cipso_v4_gentag_hdr(const struct cipso_v4_doi
*doi_def
,
1223 buf
[0] = IPOPT_CIPSO
;
1224 buf
[1] = CIPSO_V4_HDR_LEN
+ len
;
1225 *(__be32
*)&buf
[2] = htonl(doi_def
->doi
);
1229 * cipso_v4_gentag_rbm - Generate a CIPSO restricted bitmap tag (type #1)
1230 * @doi_def: the DOI definition
1231 * @secattr: the security attributes
1232 * @buffer: the option buffer
1233 * @buffer_len: length of buffer in bytes
1236 * Generate a CIPSO option using the restricted bitmap tag, tag type #1. The
1237 * actual buffer length may be larger than the indicated size due to
1238 * translation between host and network category bitmaps. Returns the size of
1239 * the tag on success, negative values on failure.
1242 static int cipso_v4_gentag_rbm(const struct cipso_v4_doi
*doi_def
,
1243 const struct netlbl_lsm_secattr
*secattr
,
1244 unsigned char *buffer
,
1251 if ((secattr
->flags
& NETLBL_SECATTR_MLS_LVL
) == 0)
1254 ret_val
= cipso_v4_map_lvl_hton(doi_def
, secattr
->mls_lvl
, &level
);
1258 if (secattr
->flags
& NETLBL_SECATTR_MLS_CAT
) {
1259 ret_val
= cipso_v4_map_cat_rbm_hton(doi_def
,
1266 /* This will send packets using the "optimized" format when
1267 * possibile as specified in section 3.4.2.6 of the
1269 if (cipso_v4_rbm_optfmt
&& ret_val
> 0 && ret_val
<= 10)
1272 tag_len
= 4 + ret_val
;
1277 buffer
[1] = tag_len
;
1284 * cipso_v4_parsetag_rbm - Parse a CIPSO restricted bitmap tag
1285 * @doi_def: the DOI definition
1286 * @tag: the CIPSO tag
1287 * @secattr: the security attributes
1290 * Parse a CIPSO restricted bitmap tag (tag type #1) and return the security
1291 * attributes in @secattr. Return zero on success, negatives values on
1295 static int cipso_v4_parsetag_rbm(const struct cipso_v4_doi
*doi_def
,
1296 const unsigned char *tag
,
1297 struct netlbl_lsm_secattr
*secattr
)
1300 u8 tag_len
= tag
[1];
1303 ret_val
= cipso_v4_map_lvl_ntoh(doi_def
, tag
[3], &level
);
1306 secattr
->mls_lvl
= level
;
1307 secattr
->flags
|= NETLBL_SECATTR_MLS_LVL
;
1310 secattr
->mls_cat
= netlbl_secattr_catmap_alloc(GFP_ATOMIC
);
1311 if (secattr
->mls_cat
== NULL
)
1314 ret_val
= cipso_v4_map_cat_rbm_ntoh(doi_def
,
1319 netlbl_secattr_catmap_free(secattr
->mls_cat
);
1323 secattr
->flags
|= NETLBL_SECATTR_MLS_CAT
;
1330 * cipso_v4_gentag_enum - Generate a CIPSO enumerated tag (type #2)
1331 * @doi_def: the DOI definition
1332 * @secattr: the security attributes
1333 * @buffer: the option buffer
1334 * @buffer_len: length of buffer in bytes
1337 * Generate a CIPSO option using the enumerated tag, tag type #2. Returns the
1338 * size of the tag on success, negative values on failure.
1341 static int cipso_v4_gentag_enum(const struct cipso_v4_doi
*doi_def
,
1342 const struct netlbl_lsm_secattr
*secattr
,
1343 unsigned char *buffer
,
1350 if (!(secattr
->flags
& NETLBL_SECATTR_MLS_LVL
))
1353 ret_val
= cipso_v4_map_lvl_hton(doi_def
, secattr
->mls_lvl
, &level
);
1357 if (secattr
->flags
& NETLBL_SECATTR_MLS_CAT
) {
1358 ret_val
= cipso_v4_map_cat_enum_hton(doi_def
,
1365 tag_len
= 4 + ret_val
;
1370 buffer
[1] = tag_len
;
1377 * cipso_v4_parsetag_enum - Parse a CIPSO enumerated tag
1378 * @doi_def: the DOI definition
1379 * @tag: the CIPSO tag
1380 * @secattr: the security attributes
1383 * Parse a CIPSO enumerated tag (tag type #2) and return the security
1384 * attributes in @secattr. Return zero on success, negatives values on
1388 static int cipso_v4_parsetag_enum(const struct cipso_v4_doi
*doi_def
,
1389 const unsigned char *tag
,
1390 struct netlbl_lsm_secattr
*secattr
)
1393 u8 tag_len
= tag
[1];
1396 ret_val
= cipso_v4_map_lvl_ntoh(doi_def
, tag
[3], &level
);
1399 secattr
->mls_lvl
= level
;
1400 secattr
->flags
|= NETLBL_SECATTR_MLS_LVL
;
1403 secattr
->mls_cat
= netlbl_secattr_catmap_alloc(GFP_ATOMIC
);
1404 if (secattr
->mls_cat
== NULL
)
1407 ret_val
= cipso_v4_map_cat_enum_ntoh(doi_def
,
1412 netlbl_secattr_catmap_free(secattr
->mls_cat
);
1416 secattr
->flags
|= NETLBL_SECATTR_MLS_CAT
;
1423 * cipso_v4_gentag_rng - Generate a CIPSO ranged tag (type #5)
1424 * @doi_def: the DOI definition
1425 * @secattr: the security attributes
1426 * @buffer: the option buffer
1427 * @buffer_len: length of buffer in bytes
1430 * Generate a CIPSO option using the ranged tag, tag type #5. Returns the
1431 * size of the tag on success, negative values on failure.
1434 static int cipso_v4_gentag_rng(const struct cipso_v4_doi
*doi_def
,
1435 const struct netlbl_lsm_secattr
*secattr
,
1436 unsigned char *buffer
,
1443 if (!(secattr
->flags
& NETLBL_SECATTR_MLS_LVL
))
1446 ret_val
= cipso_v4_map_lvl_hton(doi_def
, secattr
->mls_lvl
, &level
);
1450 if (secattr
->flags
& NETLBL_SECATTR_MLS_CAT
) {
1451 ret_val
= cipso_v4_map_cat_rng_hton(doi_def
,
1458 tag_len
= 4 + ret_val
;
1463 buffer
[1] = tag_len
;
1470 * cipso_v4_parsetag_rng - Parse a CIPSO ranged tag
1471 * @doi_def: the DOI definition
1472 * @tag: the CIPSO tag
1473 * @secattr: the security attributes
1476 * Parse a CIPSO ranged tag (tag type #5) and return the security attributes
1477 * in @secattr. Return zero on success, negatives values on failure.
1480 static int cipso_v4_parsetag_rng(const struct cipso_v4_doi
*doi_def
,
1481 const unsigned char *tag
,
1482 struct netlbl_lsm_secattr
*secattr
)
1485 u8 tag_len
= tag
[1];
1488 ret_val
= cipso_v4_map_lvl_ntoh(doi_def
, tag
[3], &level
);
1491 secattr
->mls_lvl
= level
;
1492 secattr
->flags
|= NETLBL_SECATTR_MLS_LVL
;
1495 secattr
->mls_cat
= netlbl_secattr_catmap_alloc(GFP_ATOMIC
);
1496 if (secattr
->mls_cat
== NULL
)
1499 ret_val
= cipso_v4_map_cat_rng_ntoh(doi_def
,
1504 netlbl_secattr_catmap_free(secattr
->mls_cat
);
1508 secattr
->flags
|= NETLBL_SECATTR_MLS_CAT
;
1515 * cipso_v4_validate - Validate a CIPSO option
1516 * @option: the start of the option, on error it is set to point to the error
1519 * This routine is called to validate a CIPSO option, it checks all of the
1520 * fields to ensure that they are at least valid, see the draft snippet below
1521 * for details. If the option is valid then a zero value is returned and
1522 * the value of @option is unchanged. If the option is invalid then a
1523 * non-zero value is returned and @option is adjusted to point to the
1524 * offending portion of the option. From the IETF draft ...
1526 * "If any field within the CIPSO options, such as the DOI identifier, is not
1527 * recognized the IP datagram is discarded and an ICMP 'parameter problem'
1528 * (type 12) is generated and returned. The ICMP code field is set to 'bad
1529 * parameter' (code 0) and the pointer is set to the start of the CIPSO field
1530 * that is unrecognized."
1533 int cipso_v4_validate(unsigned char **option
)
1535 unsigned char *opt
= *option
;
1537 unsigned char opt_iter
;
1538 unsigned char err_offset
= 0;
1541 struct cipso_v4_doi
*doi_def
= NULL
;
1544 /* caller already checks for length values that are too large */
1548 goto validate_return
;
1552 doi_def
= cipso_v4_doi_search(ntohl(get_unaligned((__be32
*)&opt
[2])));
1553 if (doi_def
== NULL
) {
1555 goto validate_return_locked
;
1559 tag
= opt
+ opt_iter
;
1560 while (opt_iter
< opt_len
) {
1561 for (tag_iter
= 0; doi_def
->tags
[tag_iter
] != tag
[0];)
1562 if (doi_def
->tags
[tag_iter
] == CIPSO_V4_TAG_INVALID
||
1563 ++tag_iter
== CIPSO_V4_TAG_MAXCNT
) {
1564 err_offset
= opt_iter
;
1565 goto validate_return_locked
;
1569 if (tag_len
> (opt_len
- opt_iter
)) {
1570 err_offset
= opt_iter
+ 1;
1571 goto validate_return_locked
;
1575 case CIPSO_V4_TAG_RBITMAP
:
1577 err_offset
= opt_iter
+ 1;
1578 goto validate_return_locked
;
1581 /* We are already going to do all the verification
1582 * necessary at the socket layer so from our point of
1583 * view it is safe to turn these checks off (and less
1584 * work), however, the CIPSO draft says we should do
1585 * all the CIPSO validations here but it doesn't
1586 * really specify _exactly_ what we need to validate
1587 * ... so, just make it a sysctl tunable. */
1588 if (cipso_v4_rbm_strictvalid
) {
1589 if (cipso_v4_map_lvl_valid(doi_def
,
1591 err_offset
= opt_iter
+ 3;
1592 goto validate_return_locked
;
1595 cipso_v4_map_cat_rbm_valid(doi_def
,
1598 err_offset
= opt_iter
+ 4;
1599 goto validate_return_locked
;
1603 case CIPSO_V4_TAG_ENUM
:
1605 err_offset
= opt_iter
+ 1;
1606 goto validate_return_locked
;
1609 if (cipso_v4_map_lvl_valid(doi_def
,
1611 err_offset
= opt_iter
+ 3;
1612 goto validate_return_locked
;
1615 cipso_v4_map_cat_enum_valid(doi_def
,
1618 err_offset
= opt_iter
+ 4;
1619 goto validate_return_locked
;
1622 case CIPSO_V4_TAG_RANGE
:
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_rng_valid(doi_def
,
1637 err_offset
= opt_iter
+ 4;
1638 goto validate_return_locked
;
1642 err_offset
= opt_iter
;
1643 goto validate_return_locked
;
1647 opt_iter
+= tag_len
;
1650 validate_return_locked
:
1653 *option
= opt
+ err_offset
;
1658 * cipso_v4_error - Send the correct reponse for a bad packet
1660 * @error: the error code
1661 * @gateway: CIPSO gateway flag
1664 * Based on the error code given in @error, send an ICMP error message back to
1665 * the originating host. From the IETF draft ...
1667 * "If the contents of the CIPSO [option] are valid but the security label is
1668 * outside of the configured host or port label range, the datagram is
1669 * discarded and an ICMP 'destination unreachable' (type 3) is generated and
1670 * returned. The code field of the ICMP is set to 'communication with
1671 * destination network administratively prohibited' (code 9) or to
1672 * 'communication with destination host administratively prohibited'
1673 * (code 10). The value of the code is dependent on whether the originator
1674 * of the ICMP message is acting as a CIPSO host or a CIPSO gateway. The
1675 * recipient of the ICMP message MUST be able to handle either value. The
1676 * same procedure is performed if a CIPSO [option] can not be added to an
1677 * IP packet because it is too large to fit in the IP options area."
1679 * "If the error is triggered by receipt of an ICMP message, the message is
1680 * discarded and no response is permitted (consistent with general ICMP
1681 * processing rules)."
1684 void cipso_v4_error(struct sk_buff
*skb
, int error
, u32 gateway
)
1686 if (ip_hdr(skb
)->protocol
== IPPROTO_ICMP
|| error
!= -EACCES
)
1690 icmp_send(skb
, ICMP_DEST_UNREACH
, ICMP_NET_ANO
, 0);
1692 icmp_send(skb
, ICMP_DEST_UNREACH
, ICMP_HOST_ANO
, 0);
1696 * cipso_v4_sock_setattr - Add a CIPSO option to a socket
1698 * @doi_def: the CIPSO DOI to use
1699 * @secattr: the specific security attributes of the socket
1702 * Set the CIPSO option on the given socket using the DOI definition and
1703 * security attributes passed to the function. This function requires
1704 * exclusive access to @sk, which means it either needs to be in the
1705 * process of being created or locked. Returns zero on success and negative
1706 * values on failure.
1709 int cipso_v4_sock_setattr(struct sock
*sk
,
1710 const struct cipso_v4_doi
*doi_def
,
1711 const struct netlbl_lsm_secattr
*secattr
)
1713 int ret_val
= -EPERM
;
1718 struct ip_options
*opt
= NULL
;
1719 struct inet_sock
*sk_inet
;
1720 struct inet_connection_sock
*sk_conn
;
1722 /* In the case of sock_create_lite(), the sock->sk field is not
1723 * defined yet but it is not a problem as the only users of these
1724 * "lite" PF_INET sockets are functions which do an accept() call
1725 * afterwards so we will label the socket as part of the accept(). */
1729 /* We allocate the maximum CIPSO option size here so we are probably
1730 * being a little wasteful, but it makes our life _much_ easier later
1731 * on and after all we are only talking about 40 bytes. */
1732 buf_len
= CIPSO_V4_OPT_LEN_MAX
;
1733 buf
= kmalloc(buf_len
, GFP_ATOMIC
);
1736 goto socket_setattr_failure
;
1739 /* XXX - This code assumes only one tag per CIPSO option which isn't
1740 * really a good assumption to make but since we only support the MAC
1741 * tags right now it is a safe assumption. */
1744 memset(buf
, 0, buf_len
);
1745 switch (doi_def
->tags
[iter
]) {
1746 case CIPSO_V4_TAG_RBITMAP
:
1747 ret_val
= cipso_v4_gentag_rbm(doi_def
,
1749 &buf
[CIPSO_V4_HDR_LEN
],
1750 buf_len
- CIPSO_V4_HDR_LEN
);
1752 case CIPSO_V4_TAG_ENUM
:
1753 ret_val
= cipso_v4_gentag_enum(doi_def
,
1755 &buf
[CIPSO_V4_HDR_LEN
],
1756 buf_len
- CIPSO_V4_HDR_LEN
);
1758 case CIPSO_V4_TAG_RANGE
:
1759 ret_val
= cipso_v4_gentag_rng(doi_def
,
1761 &buf
[CIPSO_V4_HDR_LEN
],
1762 buf_len
- CIPSO_V4_HDR_LEN
);
1766 goto socket_setattr_failure
;
1770 } while (ret_val
< 0 &&
1771 iter
< CIPSO_V4_TAG_MAXCNT
&&
1772 doi_def
->tags
[iter
] != CIPSO_V4_TAG_INVALID
);
1774 goto socket_setattr_failure
;
1775 cipso_v4_gentag_hdr(doi_def
, buf
, ret_val
);
1776 buf_len
= CIPSO_V4_HDR_LEN
+ ret_val
;
1778 /* We can't use ip_options_get() directly because it makes a call to
1779 * ip_options_get_alloc() which allocates memory with GFP_KERNEL and
1780 * we won't always have CAP_NET_RAW even though we _always_ want to
1781 * set the IPOPT_CIPSO option. */
1782 opt_len
= (buf_len
+ 3) & ~3;
1783 opt
= kzalloc(sizeof(*opt
) + opt_len
, GFP_ATOMIC
);
1786 goto socket_setattr_failure
;
1788 memcpy(opt
->__data
, buf
, buf_len
);
1789 opt
->optlen
= opt_len
;
1791 opt
->cipso
= sizeof(struct iphdr
);
1795 sk_inet
= inet_sk(sk
);
1796 if (sk_inet
->is_icsk
) {
1797 sk_conn
= inet_csk(sk
);
1799 sk_conn
->icsk_ext_hdr_len
-= sk_inet
->opt
->optlen
;
1800 sk_conn
->icsk_ext_hdr_len
+= opt
->optlen
;
1801 sk_conn
->icsk_sync_mss(sk
, sk_conn
->icsk_pmtu_cookie
);
1803 opt
= xchg(&sk_inet
->opt
, opt
);
1808 socket_setattr_failure
:
1815 * cipso_v4_getattr - Helper function for the cipso_v4_*_getattr functions
1816 * @cipso: the CIPSO v4 option
1817 * @secattr: the security attributes
1820 * Inspect @cipso and return the security attributes in @secattr. Returns zero
1821 * on success and negative values on failure.
1824 static int cipso_v4_getattr(const unsigned char *cipso
,
1825 struct netlbl_lsm_secattr
*secattr
)
1827 int ret_val
= -ENOMSG
;
1829 struct cipso_v4_doi
*doi_def
;
1831 if (cipso_v4_cache_check(cipso
, cipso
[1], secattr
) == 0)
1834 doi
= ntohl(get_unaligned((__be32
*)&cipso
[2]));
1836 doi_def
= cipso_v4_doi_search(doi
);
1837 if (doi_def
== NULL
)
1838 goto getattr_return
;
1839 /* XXX - This code assumes only one tag per CIPSO option which isn't
1840 * really a good assumption to make but since we only support the MAC
1841 * tags right now it is a safe assumption. */
1843 case CIPSO_V4_TAG_RBITMAP
:
1844 ret_val
= cipso_v4_parsetag_rbm(doi_def
, &cipso
[6], secattr
);
1846 case CIPSO_V4_TAG_ENUM
:
1847 ret_val
= cipso_v4_parsetag_enum(doi_def
, &cipso
[6], secattr
);
1849 case CIPSO_V4_TAG_RANGE
:
1850 ret_val
= cipso_v4_parsetag_rng(doi_def
, &cipso
[6], secattr
);
1860 * cipso_v4_sock_getattr - Get the security attributes from a sock
1862 * @secattr: the security attributes
1865 * Query @sk to see if there is a CIPSO option attached to the sock and if
1866 * there is return the CIPSO security attributes in @secattr. This function
1867 * requires that @sk be locked, or privately held, but it does not do any
1868 * locking itself. Returns zero on success and negative values on failure.
1871 int cipso_v4_sock_getattr(struct sock
*sk
, struct netlbl_lsm_secattr
*secattr
)
1873 struct ip_options
*opt
;
1875 opt
= inet_sk(sk
)->opt
;
1876 if (opt
== NULL
|| opt
->cipso
== 0)
1879 return cipso_v4_getattr(opt
->__data
+ opt
->cipso
- sizeof(struct iphdr
),
1884 * cipso_v4_skbuff_getattr - Get the security attributes from the CIPSO option
1886 * @secattr: the security attributes
1889 * Parse the given packet's CIPSO option and return the security attributes.
1890 * Returns zero on success and negative values on failure.
1893 int cipso_v4_skbuff_getattr(const struct sk_buff
*skb
,
1894 struct netlbl_lsm_secattr
*secattr
)
1896 return cipso_v4_getattr(CIPSO_V4_OPTPTR(skb
), secattr
);
1904 * cipso_v4_init - Initialize the CIPSO module
1907 * Initialize the CIPSO module and prepare it for use. Returns zero on success
1908 * and negative values on failure.
1911 static int __init
cipso_v4_init(void)
1915 ret_val
= cipso_v4_cache_init();
1917 panic("Failed to initialize the CIPSO/IPv4 cache (%d)\n",
1923 subsys_initcall(cipso_v4_init
);