mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
cb72d38211
CALIPSO is a packet labelling protocol for IPv6 which is very similar to CIPSO. It is specified in RFC 5570. Much of the code is based on the current CIPSO code. This adds support for adding passthrough-type CALIPSO DOIs through the NLBL_CALIPSO_C_ADD command. It requires attributes: NLBL_CALIPSO_A_TYPE which must be CALIPSO_MAP_PASS. NLBL_CALIPSO_A_DOI. In passthrough mode the CALIPSO engine will map MLS secattr levels and categories directly to the packet label. At this stage, the major difference between this and the CIPSO code is that IPv6 may be compiled as a module. To allow for this the CALIPSO functions are registered at module init time. Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
15 lines
331 B
Makefile
15 lines
331 B
Makefile
#
|
|
# Makefile for the NetLabel subsystem.
|
|
#
|
|
|
|
# base objects
|
|
obj-y := netlabel_user.o netlabel_kapi.o
|
|
obj-y += netlabel_domainhash.o netlabel_addrlist.o
|
|
|
|
# management objects
|
|
obj-y += netlabel_mgmt.o
|
|
|
|
# protocol modules
|
|
obj-y += netlabel_unlabeled.o
|
|
obj-y += netlabel_cipso_v4.o
|
|
obj-$(subst m,y,$(CONFIG_IPV6)) += netlabel_calipso.o
|