aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/security
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2012-10-02 14:30:19 -0400
committerDavid Howells <dhowells@redhat.com>2012-10-02 14:30:19 -0400
commit4442d7704c7311d1c42383d365e0b883e0075975 (patch)
treeee80c095ea8b13c2ad62c9406ddc6166c5b09cb4 /Documentation/security
parentf8aa23a55f813c9bddec2a6176e0e67274e6e7c1 (diff)
parentd4f65b5d2497b2fd9c45f06b71deb4ab084a5b66 (diff)
Merge branch 'modsign-keys-devel' into security-next-keys
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'Documentation/security')
-rw-r--r--Documentation/security/keys.txt50
1 files changed, 49 insertions, 1 deletions
diff --git a/Documentation/security/keys.txt b/Documentation/security/keys.txt
index a4f9125c0333..7b4145d00452 100644
--- a/Documentation/security/keys.txt
+++ b/Documentation/security/keys.txt
@@ -412,6 +412,10 @@ The main syscalls are:
412 to the keyring. In this case, an error will be generated if the process 412 to the keyring. In this case, an error will be generated if the process
413 does not have permission to write to the keyring. 413 does not have permission to write to the keyring.
414 414
415 If the key type supports it, if the description is NULL or an empty
416 string, the key type will try and generate a description from the content
417 of the payload.
418
415 The payload is optional, and the pointer can be NULL if not required by 419 The payload is optional, and the pointer can be NULL if not required by
416 the type. The payload is plen in size, and plen can be zero for an empty 420 the type. The payload is plen in size, and plen can be zero for an empty
417 payload. 421 payload.
@@ -1131,12 +1135,53 @@ The structure has a number of fields, some of which are mandatory:
1131 it should return 0. 1135 it should return 0.
1132 1136
1133 1137
1134 (*) int (*instantiate)(struct key *key, const void *data, size_t datalen); 1138 (*) int (*preparse)(struct key_preparsed_payload *prep);
1139
1140 This optional method permits the key type to attempt to parse payload
1141 before a key is created (add key) or the key semaphore is taken (update or
1142 instantiate key). The structure pointed to by prep looks like:
1143
1144 struct key_preparsed_payload {
1145 char *description;
1146 void *type_data[2];
1147 void *payload;
1148 const void *data;
1149 size_t datalen;
1150 size_t quotalen;
1151 };
1152
1153 Before calling the method, the caller will fill in data and datalen with
1154 the payload blob parameters; quotalen will be filled in with the default
1155 quota size from the key type and the rest will be cleared.
1156
1157 If a description can be proposed from the payload contents, that should be
1158 attached as a string to the description field. This will be used for the
1159 key description if the caller of add_key() passes NULL or "".
1160
1161 The method can attach anything it likes to type_data[] and payload. These
1162 are merely passed along to the instantiate() or update() operations.
1163
1164 The method should return 0 if success ful or a negative error code
1165 otherwise.
1166
1167
1168 (*) void (*free_preparse)(struct key_preparsed_payload *prep);
1169
1170 This method is only required if the preparse() method is provided,
1171 otherwise it is unused. It cleans up anything attached to the
1172 description, type_data and payload fields of the key_preparsed_payload
1173 struct as filled in by the preparse() method.
1174
1175
1176 (*) int (*instantiate)(struct key *key, struct key_preparsed_payload *prep);
1135 1177
1136 This method is called to attach a payload to a key during construction. 1178 This method is called to attach a payload to a key during construction.
1137 The payload attached need not bear any relation to the data passed to this 1179 The payload attached need not bear any relation to the data passed to this
1138 function. 1180 function.
1139 1181
1182 The prep->data and prep->datalen fields will define the original payload
1183 blob. If preparse() was supplied then other fields may be filled in also.
1184
1140 If the amount of data attached to the key differs from the size in 1185 If the amount of data attached to the key differs from the size in
1141 keytype->def_datalen, then key_payload_reserve() should be called. 1186 keytype->def_datalen, then key_payload_reserve() should be called.
1142 1187
@@ -1152,6 +1197,9 @@ The structure has a number of fields, some of which are mandatory:
1152 If this type of key can be updated, then this method should be provided. 1197 If this type of key can be updated, then this method should be provided.
1153 It is called to update a key's payload from the blob of data provided. 1198 It is called to update a key's payload from the blob of data provided.
1154 1199
1200 The prep->data and prep->datalen fields will define the original payload
1201 blob. If preparse() was supplied then other fields may be filled in also.
1202
1155 key_payload_reserve() should be called if the data length might change 1203 key_payload_reserve() should be called if the data length might change
1156 before any changes are actually made. Note that if this succeeds, the type 1204 before any changes are actually made. Note that if this succeeds, the type
1157 is committed to changing the key because it's already been altered, so all 1205 is committed to changing the key because it's already been altered, so all