forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MLSXFRM]: Add security sid to flowi
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 <[email protected]> Signed-off-by: David S. Miller <[email protected]>
- Loading branch information
Venkat Yekkirala
authored and
David S. Miller
committed
Sep 22, 2006
1 parent
892c141
commit b6340fc
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters