mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
d15c345fe3
Add a new kernel subsystem, NetLabel, to provide explicit packet labeling services (CIPSO, RIPSO, etc.) to LSM developers. NetLabel is designed to work in conjunction with a LSM to intercept and decode security labels on incoming network packets as well as ensure that outgoing network packets are labeled according to the security mechanism employed by the LSM. The NetLabel subsystem is configured through a Generic NETLINK interface described in the header files included in this patch. Signed-off-by: Paul Moore <paul.moore@hp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
17 lines
297 B
Makefile
17 lines
297 B
Makefile
#
|
|
# Makefile for the NetLabel subsystem.
|
|
#
|
|
# Feb 9, 2006, Paul Moore <paul.moore@hp.com>
|
|
#
|
|
|
|
# base objects
|
|
obj-y := netlabel_user.o netlabel_kapi.o netlabel_domainhash.o
|
|
|
|
# management objects
|
|
obj-y += netlabel_mgmt.o
|
|
|
|
# protocol modules
|
|
obj-y += netlabel_unlabeled.o
|
|
obj-y += netlabel_cipso_v4.o
|
|
|