key-type.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. void *type_data[2]; /* Private key-type data */
  39. void *payload; /* Proposed payload */
  40. const void *data; /* Raw data */
  41. size_t datalen; /* Raw datalen */
  42. size_t quotalen; /* Quota length for proposed payload */
  43. bool trusted; /* True if key is trusted */
  44. };
  45. typedef int (*request_key_actor_t)(struct key_construction *key,
  46. const char *op, void *aux);
  47. /*
  48. * kernel managed key type definition
  49. */
  50. struct key_type {
  51. /* name of the type */
  52. const char *name;
  53. /* default payload length for quota precalculation (optional)
  54. * - this can be used instead of calling key_payload_reserve(), that
  55. * function only needs to be called if the real datalen is different
  56. */
  57. size_t def_datalen;
  58. /* Default key search algorithm. */
  59. unsigned def_lookup_type;
  60. #define KEYRING_SEARCH_LOOKUP_DIRECT 0x0000 /* Direct lookup by description. */
  61. #define KEYRING_SEARCH_LOOKUP_ITERATE 0x0001 /* Iterative search. */
  62. /* vet a description */
  63. int (*vet_description)(const char *description);
  64. /* Preparse the data blob from userspace that is to be the payload,
  65. * generating a proposed description and payload that will be handed to
  66. * the instantiate() and update() ops.
  67. */
  68. int (*preparse)(struct key_preparsed_payload *prep);
  69. /* Free a preparse data structure.
  70. */
  71. void (*free_preparse)(struct key_preparsed_payload *prep);
  72. /* instantiate a key of this type
  73. * - this method should call key_payload_reserve() to determine if the
  74. * user's quota will hold the payload
  75. */
  76. int (*instantiate)(struct key *key, struct key_preparsed_payload *prep);
  77. /* update a key of this type (optional)
  78. * - this method should call key_payload_reserve() to recalculate the
  79. * quota consumption
  80. * - the key must be locked against read when modifying
  81. */
  82. int (*update)(struct key *key, struct key_preparsed_payload *prep);
  83. /* match a key against a description */
  84. int (*match)(const struct key *key, const void *desc);
  85. /* clear some of the data from a key on revokation (optional)
  86. * - the key's semaphore will be write-locked by the caller
  87. */
  88. void (*revoke)(struct key *key);
  89. /* clear the data from a key (optional) */
  90. void (*destroy)(struct key *key);
  91. /* describe a key */
  92. void (*describe)(const struct key *key, struct seq_file *p);
  93. /* read a key's data (optional)
  94. * - permission checks will be done by the caller
  95. * - the key's semaphore will be readlocked by the caller
  96. * - should return the amount of data that could be read, no matter how
  97. * much is copied into the buffer
  98. * - shouldn't do the copy if the buffer is NULL
  99. */
  100. long (*read)(const struct key *key, char __user *buffer, size_t buflen);
  101. /* handle request_key() for this type instead of invoking
  102. * /sbin/request-key (optional)
  103. * - key is the key to instantiate
  104. * - authkey is the authority to assume when instantiating this key
  105. * - op is the operation to be done, usually "create"
  106. * - the call must not return until the instantiation process has run
  107. * its course
  108. */
  109. request_key_actor_t request_key;
  110. /* internal fields */
  111. struct list_head link; /* link in types list */
  112. struct lock_class_key lock_class; /* key->sem lock class */
  113. };
  114. extern struct key_type key_type_keyring;
  115. extern int register_key_type(struct key_type *ktype);
  116. extern void unregister_key_type(struct key_type *ktype);
  117. extern int key_payload_reserve(struct key *key, size_t datalen);
  118. extern int key_instantiate_and_link(struct key *key,
  119. const void *data,
  120. size_t datalen,
  121. struct key *keyring,
  122. struct key *instkey);
  123. extern int key_reject_and_link(struct key *key,
  124. unsigned timeout,
  125. unsigned error,
  126. struct key *keyring,
  127. struct key *instkey);
  128. extern void complete_request_key(struct key_construction *cons, int error);
  129. static inline int key_negate_and_link(struct key *key,
  130. unsigned timeout,
  131. struct key *keyring,
  132. struct key *instkey)
  133. {
  134. return key_reject_and_link(key, timeout, ENOKEY, keyring, instkey);
  135. }
  136. #endif /* CONFIG_KEYS */
  137. #endif /* _LINUX_KEY_TYPE_H */