key-type.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /* Definitions for key type implementations
  2. *
  3. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public Licence
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the Licence, or (at your option) any later version.
  10. */
  11. #ifndef _LINUX_KEY_TYPE_H
  12. #define _LINUX_KEY_TYPE_H
  13. #include <linux/key.h>
  14. #include <linux/errno.h>
  15. #ifdef CONFIG_KEYS
  16. /*
  17. * key under-construction record
  18. * - passed to the request_key actor if supplied
  19. */
  20. struct key_construction {
  21. struct key *key; /* key being constructed */
  22. struct key *authkey;/* authorisation for key being constructed */
  23. };
  24. /*
  25. * Pre-parsed payload, used by key add, update and instantiate.
  26. *
  27. * This struct will be cleared and data and datalen will be set with the data
  28. * and length parameters from the caller and quotalen will be set from
  29. * def_datalen from the key type. Then if the preparse() op is provided by the
  30. * key type, that will be called. Then the struct will be passed to the
  31. * instantiate() or the update() op.
  32. *
  33. * If the preparse() op is given, the free_preparse() op will be called to
  34. * clear the contents.
  35. */
  36. struct key_preparsed_payload {
  37. char *description; /* Proposed key description (or NULL) */
  38. union key_payload payload; /* Proposed payload */
  39. const void *data; /* Raw data */
  40. size_t datalen; /* Raw datalen */
  41. size_t quotalen; /* Quota length for proposed payload */
  42. time_t expiry; /* Expiry time of key */
  43. } __randomize_layout;
  44. typedef int (*request_key_actor_t)(struct key_construction *key,
  45. const char *op, void *aux);
  46. /*
  47. * Preparsed matching criterion.
  48. */
  49. struct key_match_data {
  50. /* Comparison function, defaults to exact description match, but can be
  51. * overridden by type->match_preparse(). Should return true if a match
  52. * is found and false if not.
  53. */
  54. bool (*cmp)(const struct key *key,
  55. const struct key_match_data *match_data);
  56. const void *raw_data; /* Raw match data */
  57. void *preparsed; /* For ->match_preparse() to stash stuff */
  58. unsigned lookup_type; /* Type of lookup for this search. */
  59. #define KEYRING_SEARCH_LOOKUP_DIRECT 0x0000 /* Direct lookup by description. */
  60. #define KEYRING_SEARCH_LOOKUP_ITERATE 0x0001 /* Iterative search. */
  61. };
  62. /*
  63. * kernel managed key type definition
  64. */
  65. struct key_type {
  66. /* name of the type */
  67. const char *name;
  68. /* default payload length for quota precalculation (optional)
  69. * - this can be used instead of calling key_payload_reserve(), that
  70. * function only needs to be called if the real datalen is different
  71. */
  72. size_t def_datalen;
  73. /* vet a description */
  74. int (*vet_description)(const char *description);
  75. /* Preparse the data blob from userspace that is to be the payload,
  76. * generating a proposed description and payload that will be handed to
  77. * the instantiate() and update() ops.
  78. */
  79. int (*preparse)(struct key_preparsed_payload *prep);
  80. /* Free a preparse data structure.
  81. */
  82. void (*free_preparse)(struct key_preparsed_payload *prep);
  83. /* instantiate a key of this type
  84. * - this method should call key_payload_reserve() to determine if the
  85. * user's quota will hold the payload
  86. */
  87. int (*instantiate)(struct key *key, struct key_preparsed_payload *prep);
  88. /* update a key of this type (optional)
  89. * - this method should call key_payload_reserve() to recalculate the
  90. * quota consumption
  91. * - the key must be locked against read when modifying
  92. */
  93. int (*update)(struct key *key, struct key_preparsed_payload *prep);
  94. /* Preparse the data supplied to ->match() (optional). The
  95. * data to be preparsed can be found in match_data->raw_data.
  96. * The lookup type can also be set by this function.
  97. */
  98. int (*match_preparse)(struct key_match_data *match_data);
  99. /* Free preparsed match data (optional). This should be supplied it
  100. * ->match_preparse() is supplied. */
  101. void (*match_free)(struct key_match_data *match_data);
  102. /* clear some of the data from a key on revokation (optional)
  103. * - the key's semaphore will be write-locked by the caller
  104. */
  105. void (*revoke)(struct key *key);
  106. /* clear the data from a key (optional) */
  107. void (*destroy)(struct key *key);
  108. /* describe a key */
  109. void (*describe)(const struct key *key, struct seq_file *p);
  110. /* read a key's data (optional)
  111. * - permission checks will be done by the caller
  112. * - the key's semaphore will be readlocked by the caller
  113. * - should return the amount of data that could be read, no matter how
  114. * much is copied into the buffer
  115. * - shouldn't do the copy if the buffer is NULL
  116. */
  117. long (*read)(const struct key *key, char __user *buffer, size_t buflen);
  118. /* handle request_key() for this type instead of invoking
  119. * /sbin/request-key (optional)
  120. * - key is the key to instantiate
  121. * - authkey is the authority to assume when instantiating this key
  122. * - op is the operation to be done, usually "create"
  123. * - the call must not return until the instantiation process has run
  124. * its course
  125. */
  126. request_key_actor_t request_key;
  127. /* Look up a keyring access restriction (optional)
  128. *
  129. * - NULL is a valid return value (meaning the requested restriction
  130. * is known but will never block addition of a key)
  131. * - should return -EINVAL if the restriction is unknown
  132. */
  133. struct key_restriction *(*lookup_restriction)(const char *params);
  134. /* internal fields */
  135. struct list_head link; /* link in types list */
  136. struct lock_class_key lock_class; /* key->sem lock class */
  137. } __randomize_layout;
  138. extern struct key_type key_type_keyring;
  139. extern int register_key_type(struct key_type *ktype);
  140. extern void unregister_key_type(struct key_type *ktype);
  141. extern int key_payload_reserve(struct key *key, size_t datalen);
  142. extern int key_instantiate_and_link(struct key *key,
  143. const void *data,
  144. size_t datalen,
  145. struct key *keyring,
  146. struct key *instkey);
  147. extern int key_reject_and_link(struct key *key,
  148. unsigned timeout,
  149. unsigned error,
  150. struct key *keyring,
  151. struct key *instkey);
  152. extern void complete_request_key(struct key_construction *cons, int error);
  153. static inline int key_negate_and_link(struct key *key,
  154. unsigned timeout,
  155. struct key *keyring,
  156. struct key *instkey)
  157. {
  158. return key_reject_and_link(key, timeout, ENOKEY, keyring, instkey);
  159. }
  160. extern int generic_key_instantiate(struct key *key, struct key_preparsed_payload *prep);
  161. #endif /* CONFIG_KEYS */
  162. #endif /* _LINUX_KEY_TYPE_H */