pcompress.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * Cryptographic API.
  3. *
  4. * Partial (de)compression operations.
  5. *
  6. * Copyright 2008 Sony Corporation
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; version 2 of the License.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program.
  19. * If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. #include <linux/crypto.h>
  22. #include <linux/errno.h>
  23. #include <linux/module.h>
  24. #include <linux/seq_file.h>
  25. #include <linux/string.h>
  26. #include <linux/cryptouser.h>
  27. #include <net/netlink.h>
  28. #include <crypto/compress.h>
  29. #include <crypto/internal/compress.h>
  30. #include "internal.h"
  31. static int crypto_pcomp_init(struct crypto_tfm *tfm, u32 type, u32 mask)
  32. {
  33. return 0;
  34. }
  35. static unsigned int crypto_pcomp_extsize(struct crypto_alg *alg)
  36. {
  37. return alg->cra_ctxsize;
  38. }
  39. static int crypto_pcomp_init_tfm(struct crypto_tfm *tfm)
  40. {
  41. return 0;
  42. }
  43. #ifdef CONFIG_NET
  44. static int crypto_pcomp_report(struct sk_buff *skb, struct crypto_alg *alg)
  45. {
  46. struct crypto_report_comp rpcomp;
  47. snprintf(rpcomp.type, CRYPTO_MAX_ALG_NAME, "%s", "pcomp");
  48. if (nla_put(skb, CRYPTOCFGA_REPORT_COMPRESS,
  49. sizeof(struct crypto_report_comp), &rpcomp))
  50. goto nla_put_failure;
  51. return 0;
  52. nla_put_failure:
  53. return -EMSGSIZE;
  54. }
  55. #else
  56. static int crypto_pcomp_report(struct sk_buff *skb, struct crypto_alg *alg)
  57. {
  58. return -ENOSYS;
  59. }
  60. #endif
  61. static void crypto_pcomp_show(struct seq_file *m, struct crypto_alg *alg)
  62. __attribute__ ((unused));
  63. static void crypto_pcomp_show(struct seq_file *m, struct crypto_alg *alg)
  64. {
  65. seq_printf(m, "type : pcomp\n");
  66. }
  67. static const struct crypto_type crypto_pcomp_type = {
  68. .extsize = crypto_pcomp_extsize,
  69. .init = crypto_pcomp_init,
  70. .init_tfm = crypto_pcomp_init_tfm,
  71. #ifdef CONFIG_PROC_FS
  72. .show = crypto_pcomp_show,
  73. #endif
  74. .report = crypto_pcomp_report,
  75. .maskclear = ~CRYPTO_ALG_TYPE_MASK,
  76. .maskset = CRYPTO_ALG_TYPE_MASK,
  77. .type = CRYPTO_ALG_TYPE_PCOMPRESS,
  78. .tfmsize = offsetof(struct crypto_pcomp, base),
  79. };
  80. struct crypto_pcomp *crypto_alloc_pcomp(const char *alg_name, u32 type,
  81. u32 mask)
  82. {
  83. return crypto_alloc_tfm(alg_name, &crypto_pcomp_type, type, mask);
  84. }
  85. EXPORT_SYMBOL_GPL(crypto_alloc_pcomp);
  86. int crypto_register_pcomp(struct pcomp_alg *alg)
  87. {
  88. struct crypto_alg *base = &alg->base;
  89. base->cra_type = &crypto_pcomp_type;
  90. base->cra_flags &= ~CRYPTO_ALG_TYPE_MASK;
  91. base->cra_flags |= CRYPTO_ALG_TYPE_PCOMPRESS;
  92. return crypto_register_alg(base);
  93. }
  94. EXPORT_SYMBOL_GPL(crypto_register_pcomp);
  95. int crypto_unregister_pcomp(struct pcomp_alg *alg)
  96. {
  97. return crypto_unregister_alg(&alg->base);
  98. }
  99. EXPORT_SYMBOL_GPL(crypto_unregister_pcomp);
  100. MODULE_LICENSE("GPL");
  101. MODULE_DESCRIPTION("Partial (de)compression type");
  102. MODULE_AUTHOR("Sony Corporation");