mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
b6340fcd76
This adds security to flow key for labeling of flows as also to allow for making flow cache lookups based on the security label seemless. Signed-off-by: Venkat Yekkirala <vyekkirala@TrustedCS.com> Signed-off-by: David S. Miller <davem@davemloft.net>
14 lines
657 B
Text
14 lines
657 B
Text
flowi structure:
|
|
|
|
The secid member in the flow structure is used in LSMs (e.g. SELinux) to indicate
|
|
the label of the flow. This label of the flow is currently used in selecting
|
|
matching labeled xfrm(s).
|
|
|
|
If this is an outbound flow, the label is derived from the socket, if any, or
|
|
the incoming packet this flow is being generated as a response to (e.g. tcp
|
|
resets, timewait ack, etc.). It is also conceivable that the label could be
|
|
derived from other sources such as process context, device, etc., in special
|
|
cases, as may be appropriate.
|
|
|
|
If this is an inbound flow, the label is derived from the IPSec security
|
|
associations, if any, used by the packet.
|