keys.txt 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869
  1. ============================
  2. KERNEL KEY RETENTION SERVICE
  3. ============================
  4. This service allows cryptographic keys, authentication tokens, cross-domain
  5. user mappings, and similar to be cached in the kernel for the use of
  6. filesystems other kernel services.
  7. Keyrings are permitted; these are a special type of key that can hold links to
  8. other keys. Processes each have three standard keyring subscriptions that a
  9. kernel service can search for relevant keys.
  10. The key service can be configured on by enabling:
  11. "Security options"/"Enable access key retention support" (CONFIG_KEYS)
  12. This document has the following sections:
  13. - Key overview
  14. - Key service overview
  15. - Key access permissions
  16. - New procfs files
  17. - Userspace system call interface
  18. - Kernel services
  19. - Defining a key type
  20. - Request-key callback service
  21. - Key access filesystem
  22. ============
  23. KEY OVERVIEW
  24. ============
  25. In this context, keys represent units of cryptographic data, authentication
  26. tokens, keyrings, etc.. These are represented in the kernel by struct key.
  27. Each key has a number of attributes:
  28. - A serial number.
  29. - A type.
  30. - A description (for matching a key in a search).
  31. - Access control information.
  32. - An expiry time.
  33. - A payload.
  34. - State.
  35. (*) Each key is issued a serial number of type key_serial_t that is unique
  36. for the lifetime of that key. All serial numbers are positive non-zero
  37. 32-bit integers.
  38. Userspace programs can use a key's serial numbers as a way to gain access
  39. to it, subject to permission checking.
  40. (*) Each key is of a defined "type". Types must be registered inside the
  41. kernel by a kernel service (such as a filesystem) before keys of that
  42. type can be added or used. Userspace programs cannot define new types
  43. directly.
  44. Key types are represented in the kernel by struct key_type. This defines
  45. a number of operations that can be performed on a key of that type.
  46. Should a type be removed from the system, all the keys of that type will
  47. be invalidated.
  48. (*) Each key has a description. This should be a printable string. The key
  49. type provides an operation to perform a match between the description on
  50. a key and a criterion string.
  51. (*) Each key has an owner user ID, a group ID and a permissions mask. These
  52. are used to control what a process may do to a key from userspace, and
  53. whether a kernel service will be able to find the key.
  54. (*) Each key can be set to expire at a specific time by the key type's
  55. instantiation function. Keys can also be immortal.
  56. (*) Each key can have a payload. This is a quantity of data that represent
  57. the actual "key". In the case of a keyring, this is a list of keys to
  58. which the keyring links; in the case of a user-defined key, it's an
  59. arbitrary blob of data.
  60. Having a payload is not required; and the payload can, in fact, just be a
  61. value stored in the struct key itself.
  62. When a key is instantiated, the key type's instantiation function is
  63. called with a blob of data, and that then creates the key's payload in
  64. some way.
  65. Similarly, when userspace wants to read back the contents of the key, if
  66. permitted, another key type operation will be called to convert the key's
  67. attached payload back into a blob of data.
  68. (*) Each key can be in one of a number of basic states:
  69. (*) Uninstantiated. The key exists, but does not have any data
  70. attached. Keys being requested from userspace will be in this state.
  71. (*) Instantiated. This is the normal state. The key is fully formed, and
  72. has data attached.
  73. (*) Negative. This is a relatively short-lived state. The key acts as a
  74. note saying that a previous call out to userspace failed, and acts as
  75. a throttle on key lookups. A negative key can be updated to a normal
  76. state.
  77. (*) Expired. Keys can have lifetimes set. If their lifetime is exceeded,
  78. they traverse to this state. An expired key can be updated back to a
  79. normal state.
  80. (*) Revoked. A key is put in this state by userspace action. It can't be
  81. found or operated upon (apart from by unlinking it).
  82. (*) Dead. The key's type was unregistered, and so the key is now useless.
  83. ====================
  84. KEY SERVICE OVERVIEW
  85. ====================
  86. The key service provides a number of features besides keys:
  87. (*) The key service defines two special key types:
  88. (+) "keyring"
  89. Keyrings are special keys that contain a list of other keys. Keyring
  90. lists can be modified using various system calls. Keyrings should not
  91. be given a payload when created.
  92. (+) "user"
  93. A key of this type has a description and a payload that are arbitrary
  94. blobs of data. These can be created, updated and read by userspace,
  95. and aren't intended for use by kernel services.
  96. (*) Each process subscribes to three keyrings: a thread-specific keyring, a
  97. process-specific keyring, and a session-specific keyring.
  98. The thread-specific keyring is discarded from the child when any sort of
  99. clone, fork, vfork or execve occurs. A new keyring is created only when
  100. required.
  101. The process-specific keyring is replaced with an empty one in the child
  102. on clone, fork, vfork unless CLONE_THREAD is supplied, in which case it
  103. is shared. execve also discards the process's process keyring and creates
  104. a new one.
  105. The session-specific keyring is persistent across clone, fork, vfork and
  106. execve, even when the latter executes a set-UID or set-GID binary. A
  107. process can, however, replace its current session keyring with a new one
  108. by using PR_JOIN_SESSION_KEYRING. It is permitted to request an anonymous
  109. new one, or to attempt to create or join one of a specific name.
  110. The ownership of the thread keyring changes when the real UID and GID of
  111. the thread changes.
  112. (*) Each user ID resident in the system holds two special keyrings: a user
  113. specific keyring and a default user session keyring. The default session
  114. keyring is initialised with a link to the user-specific keyring.
  115. When a process changes its real UID, if it used to have no session key, it
  116. will be subscribed to the default session key for the new UID.
  117. If a process attempts to access its session key when it doesn't have one,
  118. it will be subscribed to the default for its current UID.
  119. (*) Each user has two quotas against which the keys they own are tracked. One
  120. limits the total number of keys and keyrings, the other limits the total
  121. amount of description and payload space that can be consumed.
  122. The user can view information on this and other statistics through procfs
  123. files.
  124. Process-specific and thread-specific keyrings are not counted towards a
  125. user's quota.
  126. If a system call that modifies a key or keyring in some way would put the
  127. user over quota, the operation is refused and error EDQUOT is returned.
  128. (*) There's a system call interface by which userspace programs can create
  129. and manipulate keys and keyrings.
  130. (*) There's a kernel interface by which services can register types and
  131. search for keys.
  132. (*) There's a way for the a search done from the kernel to call back to
  133. userspace to request a key that can't be found in a process's keyrings.
  134. (*) An optional filesystem is available through which the key database can be
  135. viewed and manipulated.
  136. ======================
  137. KEY ACCESS PERMISSIONS
  138. ======================
  139. Keys have an owner user ID, a group access ID, and a permissions mask. The
  140. mask has up to eight bits each for user, group and other access. Only five of
  141. each set of eight bits are defined. These permissions granted are:
  142. (*) View
  143. This permits a key or keyring's attributes to be viewed - including key
  144. type and description.
  145. (*) Read
  146. This permits a key's payload to be viewed or a keyring's list of linked
  147. keys.
  148. (*) Write
  149. This permits a key's payload to be instantiated or updated, or it allows
  150. a link to be added to or removed from a keyring.
  151. (*) Search
  152. This permits keyrings to be searched and keys to be found. Searches can
  153. only recurse into nested keyrings that have search permission set.
  154. (*) Link
  155. This permits a key or keyring to be linked to. To create a link from a
  156. keyring to a key, a process must have Write permission on the keyring and
  157. Link permission on the key.
  158. For changing the ownership, group ID or permissions mask, being the owner of
  159. the key or having the sysadmin capability is sufficient.
  160. ================
  161. NEW PROCFS FILES
  162. ================
  163. Two files have been added to procfs by which an administrator can find out
  164. about the status of the key service:
  165. (*) /proc/keys
  166. This lists all the keys on the system, giving information about their
  167. type, description and permissions. The payload of the key is not
  168. available this way:
  169. SERIAL FLAGS USAGE EXPY PERM UID GID TYPE DESCRIPTION: SUMMARY
  170. 00000001 I----- 39 perm 1f0000 0 0 keyring _uid_ses.0: 1/4
  171. 00000002 I----- 2 perm 1f0000 0 0 keyring _uid.0: empty
  172. 00000007 I----- 1 perm 1f0000 0 0 keyring _pid.1: empty
  173. 0000018d I----- 1 perm 1f0000 0 0 keyring _pid.412: empty
  174. 000004d2 I--Q-- 1 perm 1f0000 32 -1 keyring _uid.32: 1/4
  175. 000004d3 I--Q-- 3 perm 1f0000 32 -1 keyring _uid_ses.32: empty
  176. 00000892 I--QU- 1 perm 1f0000 0 0 user metal:copper: 0
  177. 00000893 I--Q-N 1 35s 1f0000 0 0 user metal:silver: 0
  178. 00000894 I--Q-- 1 10h 1f0000 0 0 user metal:gold: 0
  179. The flags are:
  180. I Instantiated
  181. R Revoked
  182. D Dead
  183. Q Contributes to user's quota
  184. U Under contruction by callback to userspace
  185. N Negative key
  186. This file must be enabled at kernel configuration time as it allows anyone
  187. to list the keys database.
  188. (*) /proc/key-users
  189. This file lists the tracking data for each user that has at least one key
  190. on the system. Such data includes quota information and statistics:
  191. [root@andromeda root]# cat /proc/key-users
  192. 0: 46 45/45 1/100 13/10000
  193. 29: 2 2/2 2/100 40/10000
  194. 32: 2 2/2 2/100 40/10000
  195. 38: 2 2/2 2/100 40/10000
  196. The format of each line is
  197. <UID>: User ID to which this applies
  198. <usage> Structure refcount
  199. <inst>/<keys> Total number of keys and number instantiated
  200. <keys>/<max> Key count quota
  201. <bytes>/<max> Key size quota
  202. ===============================
  203. USERSPACE SYSTEM CALL INTERFACE
  204. ===============================
  205. Userspace can manipulate keys directly through three new syscalls: add_key,
  206. request_key and keyctl. The latter provides a number of functions for
  207. manipulating keys.
  208. When referring to a key directly, userspace programs should use the key's
  209. serial number (a positive 32-bit integer). However, there are some special
  210. values available for referring to special keys and keyrings that relate to the
  211. process making the call:
  212. CONSTANT VALUE KEY REFERENCED
  213. ============================== ====== ===========================
  214. KEY_SPEC_THREAD_KEYRING -1 thread-specific keyring
  215. KEY_SPEC_PROCESS_KEYRING -2 process-specific keyring
  216. KEY_SPEC_SESSION_KEYRING -3 session-specific keyring
  217. KEY_SPEC_USER_KEYRING -4 UID-specific keyring
  218. KEY_SPEC_USER_SESSION_KEYRING -5 UID-session keyring
  219. KEY_SPEC_GROUP_KEYRING -6 GID-specific keyring
  220. The main syscalls are:
  221. (*) Create a new key of given type, description and payload and add it to the
  222. nominated keyring:
  223. key_serial_t add_key(const char *type, const char *desc,
  224. const void *payload, size_t plen,
  225. key_serial_t keyring);
  226. If a key of the same type and description as that proposed already exists
  227. in the keyring, this will try to update it with the given payload, or it
  228. will return error EEXIST if that function is not supported by the key
  229. type. The process must also have permission to write to the key to be
  230. able to update it. The new key will have all user permissions granted and
  231. no group or third party permissions.
  232. Otherwise, this will attempt to create a new key of the specified type
  233. and description, and to instantiate it with the supplied payload and
  234. attach it to the keyring. In this case, an error will be generated if the
  235. process does not have permission to write to the keyring.
  236. The payload is optional, and the pointer can be NULL if not required by
  237. the type. The payload is plen in size, and plen can be zero for an empty
  238. payload.
  239. A new keyring can be generated by setting type "keyring", the keyring
  240. name as the description (or NULL) and setting the payload to NULL.
  241. User defined keys can be created by specifying type "user". It is
  242. recommended that a user defined key's description by prefixed with a type
  243. ID and a colon, such as "krb5tgt:" for a Kerberos 5 ticket granting
  244. ticket.
  245. Any other type must have been registered with the kernel in advance by a
  246. kernel service such as a filesystem.
  247. The ID of the new or updated key is returned if successful.
  248. (*) Search the process's keyrings for a key, potentially calling out to
  249. userspace to create it.
  250. key_serial_t request_key(const char *type, const char *description,
  251. const char *callout_info,
  252. key_serial_t dest_keyring);
  253. This function searches all the process's keyrings in the order thread,
  254. process, session for a matching key. This works very much like
  255. KEYCTL_SEARCH, including the optional attachment of the discovered key to
  256. a keyring.
  257. If a key cannot be found, and if callout_info is not NULL, then
  258. /sbin/request-key will be invoked in an attempt to obtain a key. The
  259. callout_info string will be passed as an argument to the program.
  260. The keyctl syscall functions are:
  261. (*) Map a special key ID to a real key ID for this process:
  262. key_serial_t keyctl(KEYCTL_GET_KEYRING_ID, key_serial_t id,
  263. int create);
  264. The special key specified by "id" is looked up (with the key being
  265. created if necessary) and the ID of the key or keyring thus found is
  266. returned if it exists.
  267. If the key does not yet exist, the key will be created if "create" is
  268. non-zero; and the error ENOKEY will be returned if "create" is zero.
  269. (*) Replace the session keyring this process subscribes to with a new one:
  270. key_serial_t keyctl(KEYCTL_JOIN_SESSION_KEYRING, const char *name);
  271. If name is NULL, an anonymous keyring is created attached to the process
  272. as its session keyring, displacing the old session keyring.
  273. If name is not NULL, if a keyring of that name exists, the process
  274. attempts to attach it as the session keyring, returning an error if that
  275. is not permitted; otherwise a new keyring of that name is created and
  276. attached as the session keyring.
  277. To attach to a named keyring, the keyring must have search permission for
  278. the process's ownership.
  279. The ID of the new session keyring is returned if successful.
  280. (*) Update the specified key:
  281. long keyctl(KEYCTL_UPDATE, key_serial_t key, const void *payload,
  282. size_t plen);
  283. This will try to update the specified key with the given payload, or it
  284. will return error EOPNOTSUPP if that function is not supported by the key
  285. type. The process must also have permission to write to the key to be
  286. able to update it.
  287. The payload is of length plen, and may be absent or empty as for
  288. add_key().
  289. (*) Revoke a key:
  290. long keyctl(KEYCTL_REVOKE, key_serial_t key);
  291. This makes a key unavailable for further operations. Further attempts to
  292. use the key will be met with error EKEYREVOKED, and the key will no longer
  293. be findable.
  294. (*) Change the ownership of a key:
  295. long keyctl(KEYCTL_CHOWN, key_serial_t key, uid_t uid, gid_t gid);
  296. This function permits a key's owner and group ID to be changed. Either
  297. one of uid or gid can be set to -1 to suppress that change.
  298. Only the superuser can change a key's owner to something other than the
  299. key's current owner. Similarly, only the superuser can change a key's
  300. group ID to something other than the calling process's group ID or one of
  301. its group list members.
  302. (*) Change the permissions mask on a key:
  303. long keyctl(KEYCTL_SETPERM, key_serial_t key, key_perm_t perm);
  304. This function permits the owner of a key or the superuser to change the
  305. permissions mask on a key.
  306. Only bits the available bits are permitted; if any other bits are set,
  307. error EINVAL will be returned.
  308. (*) Describe a key:
  309. long keyctl(KEYCTL_DESCRIBE, key_serial_t key, char *buffer,
  310. size_t buflen);
  311. This function returns a summary of the key's attributes (but not its
  312. payload data) as a string in the buffer provided.
  313. Unless there's an error, it always returns the amount of data it could
  314. produce, even if that's too big for the buffer, but it won't copy more
  315. than requested to userspace. If the buffer pointer is NULL then no copy
  316. will take place.
  317. A process must have view permission on the key for this function to be
  318. successful.
  319. If successful, a string is placed in the buffer in the following format:
  320. <type>;<uid>;<gid>;<perm>;<description>
  321. Where type and description are strings, uid and gid are decimal, and perm
  322. is hexadecimal. A NUL character is included at the end of the string if
  323. the buffer is sufficiently big.
  324. This can be parsed with
  325. sscanf(buffer, "%[^;];%d;%d;%o;%s", type, &uid, &gid, &mode, desc);
  326. (*) Clear out a keyring:
  327. long keyctl(KEYCTL_CLEAR, key_serial_t keyring);
  328. This function clears the list of keys attached to a keyring. The calling
  329. process must have write permission on the keyring, and it must be a
  330. keyring (or else error ENOTDIR will result).
  331. (*) Link a key into a keyring:
  332. long keyctl(KEYCTL_LINK, key_serial_t keyring, key_serial_t key);
  333. This function creates a link from the keyring to the key. The process
  334. must have write permission on the keyring and must have link permission
  335. on the key.
  336. Should the keyring not be a keyring, error ENOTDIR will result; and if
  337. the keyring is full, error ENFILE will result.
  338. The link procedure checks the nesting of the keyrings, returning ELOOP if
  339. it appears to deep or EDEADLK if the link would introduce a cycle.
  340. (*) Unlink a key or keyring from another keyring:
  341. long keyctl(KEYCTL_UNLINK, key_serial_t keyring, key_serial_t key);
  342. This function looks through the keyring for the first link to the
  343. specified key, and removes it if found. Subsequent links to that key are
  344. ignored. The process must have write permission on the keyring.
  345. If the keyring is not a keyring, error ENOTDIR will result; and if the
  346. key is not present, error ENOENT will be the result.
  347. (*) Search a keyring tree for a key:
  348. key_serial_t keyctl(KEYCTL_SEARCH, key_serial_t keyring,
  349. const char *type, const char *description,
  350. key_serial_t dest_keyring);
  351. This searches the keyring tree headed by the specified keyring until a
  352. key is found that matches the type and description criteria. Each keyring
  353. is checked for keys before recursion into its children occurs.
  354. The process must have search permission on the top level keyring, or else
  355. error EACCES will result. Only keyrings that the process has search
  356. permission on will be recursed into, and only keys and keyrings for which
  357. a process has search permission can be matched. If the specified keyring
  358. is not a keyring, ENOTDIR will result.
  359. If the search succeeds, the function will attempt to link the found key
  360. into the destination keyring if one is supplied (non-zero ID). All the
  361. constraints applicable to KEYCTL_LINK apply in this case too.
  362. Error ENOKEY, EKEYREVOKED or EKEYEXPIRED will be returned if the search
  363. fails. On success, the resulting key ID will be returned.
  364. (*) Read the payload data from a key:
  365. key_serial_t keyctl(KEYCTL_READ, key_serial_t keyring, char *buffer,
  366. size_t buflen);
  367. This function attempts to read the payload data from the specified key
  368. into the buffer. The process must have read permission on the key to
  369. succeed.
  370. The returned data will be processed for presentation by the key type. For
  371. instance, a keyring will return an array of key_serial_t entries
  372. representing the IDs of all the keys to which it is subscribed. The user
  373. defined key type will return its data as is. If a key type does not
  374. implement this function, error EOPNOTSUPP will result.
  375. As much of the data as can be fitted into the buffer will be copied to
  376. userspace if the buffer pointer is not NULL.
  377. On a successful return, the function will always return the amount of
  378. data available rather than the amount copied.
  379. (*) Instantiate a partially constructed key.
  380. key_serial_t keyctl(KEYCTL_INSTANTIATE, key_serial_t key,
  381. const void *payload, size_t plen,
  382. key_serial_t keyring);
  383. If the kernel calls back to userspace to complete the instantiation of a
  384. key, userspace should use this call to supply data for the key before the
  385. invoked process returns, or else the key will be marked negative
  386. automatically.
  387. The process must have write access on the key to be able to instantiate
  388. it, and the key must be uninstantiated.
  389. If a keyring is specified (non-zero), the key will also be linked into
  390. that keyring, however all the constraints applying in KEYCTL_LINK apply
  391. in this case too.
  392. The payload and plen arguments describe the payload data as for add_key().
  393. (*) Negatively instantiate a partially constructed key.
  394. key_serial_t keyctl(KEYCTL_NEGATE, key_serial_t key,
  395. unsigned timeout, key_serial_t keyring);
  396. If the kernel calls back to userspace to complete the instantiation of a
  397. key, userspace should use this call mark the key as negative before the
  398. invoked process returns if it is unable to fulfil the request.
  399. The process must have write access on the key to be able to instantiate
  400. it, and the key must be uninstantiated.
  401. If a keyring is specified (non-zero), the key will also be linked into
  402. that keyring, however all the constraints applying in KEYCTL_LINK apply
  403. in this case too.
  404. ===============
  405. KERNEL SERVICES
  406. ===============
  407. The kernel services for key managment are fairly simple to deal with. They can
  408. be broken down into two areas: keys and key types.
  409. Dealing with keys is fairly straightforward. Firstly, the kernel service
  410. registers its type, then it searches for a key of that type. It should retain
  411. the key as long as it has need of it, and then it should release it. For a
  412. filesystem or device file, a search would probably be performed during the
  413. open call, and the key released upon close. How to deal with conflicting keys
  414. due to two different users opening the same file is left to the filesystem
  415. author to solve.
  416. When accessing a key's payload data, key->lock should be at least read locked,
  417. or else the data may be changed by an update being performed from userspace
  418. whilst the driver or filesystem is trying to access it. If no update method is
  419. supplied, then the key's payload may be accessed without holding a lock as
  420. there is no way to change it, provided it can be guaranteed that the key's
  421. type definition won't go away.
  422. (*) To search for a key, call:
  423. struct key *request_key(const struct key_type *type,
  424. const char *description,
  425. const char *callout_string);
  426. This is used to request a key or keyring with a description that matches
  427. the description specified according to the key type's match function. This
  428. permits approximate matching to occur. If callout_string is not NULL, then
  429. /sbin/request-key will be invoked in an attempt to obtain the key from
  430. userspace. In that case, callout_string will be passed as an argument to
  431. the program.
  432. Should the function fail error ENOKEY, EKEYEXPIRED or EKEYREVOKED will be
  433. returned.
  434. (*) When it is no longer required, the key should be released using:
  435. void key_put(struct key *key);
  436. This can be called from interrupt context. If CONFIG_KEYS is not set then
  437. the argument will not be parsed.
  438. (*) Extra references can be made to a key by calling the following function:
  439. struct key *key_get(struct key *key);
  440. These need to be disposed of by calling key_put() when they've been
  441. finished with. The key pointer passed in will be returned. If the pointer
  442. is NULL or CONFIG_KEYS is not set then the key will not be dereferenced and
  443. no increment will take place.
  444. (*) A key's serial number can be obtained by calling:
  445. key_serial_t key_serial(struct key *key);
  446. If key is NULL or if CONFIG_KEYS is not set then 0 will be returned (in the
  447. latter case without parsing the argument).
  448. (*) If a keyring was found in the search, this can be further searched by:
  449. struct key *keyring_search(struct key *keyring,
  450. const struct key_type *type,
  451. const char *description)
  452. This searches the keyring tree specified for a matching key. Error ENOKEY
  453. is returned upon failure. If successful, the returned key will need to be
  454. released.
  455. (*) To check the validity of a key, this function can be called:
  456. int validate_key(struct key *key);
  457. This checks that the key in question hasn't expired or and hasn't been
  458. revoked. Should the key be invalid, error EKEYEXPIRED or EKEYREVOKED will
  459. be returned. If the key is NULL or if CONFIG_KEYS is not set then 0 will be
  460. returned (in the latter case without parsing the argument).
  461. (*) To register a key type, the following function should be called:
  462. int register_key_type(struct key_type *type);
  463. This will return error EEXIST if a type of the same name is already
  464. present.
  465. (*) To unregister a key type, call:
  466. void unregister_key_type(struct key_type *type);
  467. ===================
  468. DEFINING A KEY TYPE
  469. ===================
  470. A kernel service may want to define its own key type. For instance, an AFS
  471. filesystem might want to define a Kerberos 5 ticket key type. To do this, it
  472. author fills in a struct key_type and registers it with the system.
  473. The structure has a number of fields, some of which are mandatory:
  474. (*) const char *name
  475. The name of the key type. This is used to translate a key type name
  476. supplied by userspace into a pointer to the structure.
  477. (*) size_t def_datalen
  478. This is optional - it supplies the default payload data length as
  479. contributed to the quota. If the key type's payload is always or almost
  480. always the same size, then this is a more efficient way to do things.
  481. The data length (and quota) on a particular key can always be changed
  482. during instantiation or update by calling:
  483. int key_payload_reserve(struct key *key, size_t datalen);
  484. With the revised data length. Error EDQUOT will be returned if this is
  485. not viable.
  486. (*) int (*instantiate)(struct key *key, const void *data, size_t datalen);
  487. This method is called to attach a payload to a key during construction.
  488. The payload attached need not bear any relation to the data passed to
  489. this function.
  490. If the amount of data attached to the key differs from the size in
  491. keytype->def_datalen, then key_payload_reserve() should be called.
  492. This method does not have to lock the key in order to attach a payload.
  493. The fact that KEY_FLAG_INSTANTIATED is not set in key->flags prevents
  494. anything else from gaining access to the key.
  495. This method may sleep if it wishes.
  496. (*) int (*duplicate)(struct key *key, const struct key *source);
  497. If this type of key can be duplicated, then this method should be
  498. provided. It is called to copy the payload attached to the source into
  499. the new key. The data length on the new key will have been updated and
  500. the quota adjusted already.
  501. This method will be called with the source key's semaphore read-locked to
  502. prevent its payload from being changed. It is safe to sleep here.
  503. (*) int (*update)(struct key *key, const void *data, size_t datalen);
  504. If this type of key can be updated, then this method should be
  505. provided. It is called to update a key's payload from the blob of data
  506. provided.
  507. key_payload_reserve() should be called if the data length might change
  508. before any changes are actually made. Note that if this succeeds, the
  509. type is committed to changing the key because it's already been altered,
  510. so all memory allocation must be done first.
  511. key_payload_reserve() should be called with the key->lock write locked,
  512. and the changes to the key's attached payload should be made before the
  513. key is locked.
  514. The key will have its semaphore write-locked before this method is
  515. called. Any changes to the key should be made with the key's rwlock
  516. write-locked also. It is safe to sleep here.
  517. (*) int (*match)(const struct key *key, const void *desc);
  518. This method is called to match a key against a description. It should
  519. return non-zero if the two match, zero if they don't.
  520. This method should not need to lock the key in any way. The type and
  521. description can be considered invariant, and the payload should not be
  522. accessed (the key may not yet be instantiated).
  523. It is not safe to sleep in this method; the caller may hold spinlocks.
  524. (*) void (*destroy)(struct key *key);
  525. This method is optional. It is called to discard the payload data on a
  526. key when it is being destroyed.
  527. This method does not need to lock the key; it can consider the key as
  528. being inaccessible. Note that the key's type may have changed before this
  529. function is called.
  530. It is not safe to sleep in this method; the caller may hold spinlocks.
  531. (*) void (*describe)(const struct key *key, struct seq_file *p);
  532. This method is optional. It is called during /proc/keys reading to
  533. summarise a key's description and payload in text form.
  534. This method will be called with the key's rwlock read-locked. This will
  535. prevent the key's payload and state changing; also the description should
  536. not change. This also means it is not safe to sleep in this method.
  537. (*) long (*read)(const struct key *key, char __user *buffer, size_t buflen);
  538. This method is optional. It is called by KEYCTL_READ to translate the
  539. key's payload into something a blob of data for userspace to deal
  540. with. Ideally, the blob should be in the same format as that passed in to
  541. the instantiate and update methods.
  542. If successful, the blob size that could be produced should be returned
  543. rather than the size copied.
  544. This method will be called with the key's semaphore read-locked. This
  545. will prevent the key's payload changing. It is not necessary to also
  546. read-lock key->lock when accessing the key's payload. It is safe to sleep
  547. in this method, such as might happen when the userspace buffer is
  548. accessed.
  549. ============================
  550. REQUEST-KEY CALLBACK SERVICE
  551. ============================
  552. To create a new key, the kernel will attempt to execute the following command
  553. line:
  554. /sbin/request-key create <key> <uid> <gid> \
  555. <threadring> <processring> <sessionring> <callout_info>
  556. <key> is the key being constructed, and the three keyrings are the process
  557. keyrings from the process that caused the search to be issued. These are
  558. included for two reasons:
  559. (1) There may be an authentication token in one of the keyrings that is
  560. required to obtain the key, eg: a Kerberos Ticket-Granting Ticket.
  561. (2) The new key should probably be cached in one of these rings.
  562. This program should set it UID and GID to those specified before attempting to
  563. access any more keys. It may then look around for a user specific process to
  564. hand the request off to (perhaps a path held in placed in another key by, for
  565. example, the KDE desktop manager).
  566. The program (or whatever it calls) should finish construction of the key by
  567. calling KEYCTL_INSTANTIATE, which also permits it to cache the key in one of
  568. the keyrings (probably the session ring) before returning. Alternatively, the
  569. key can be marked as negative with KEYCTL_NEGATE; this also permits the key to
  570. be cached in one of the keyrings.
  571. If it returns with the key remaining in the unconstructed state, the key will
  572. be marked as being negative, it will be added to the session keyring, and an
  573. error will be returned to the key requestor.
  574. Supplementary information may be provided from whoever or whatever invoked
  575. this service. This will be passed as the <callout_info> parameter. If no such
  576. information was made available, then "-" will be passed as this parameter
  577. instead.
  578. Similarly, the kernel may attempt to update an expired or a soon to expire key
  579. by executing:
  580. /sbin/request-key update <key> <uid> <gid> \
  581. <threadring> <processring> <sessionring>
  582. In this case, the program isn't required to actually attach the key to a ring;
  583. the rings are provided for reference.