842.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Cryptographic API for the 842 software compression algorithm.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * Copyright (C) IBM Corporation, 2011-2015
  15. *
  16. * Original Authors: Robert Jennings <rcj@linux.vnet.ibm.com>
  17. * Seth Jennings <sjenning@linux.vnet.ibm.com>
  18. *
  19. * Rewrite: Dan Streetman <ddstreet@ieee.org>
  20. *
  21. * This is the software implementation of compression and decompression using
  22. * the 842 format. This uses the software 842 library at lib/842/ which is
  23. * only a reference implementation, and is very, very slow as compared to other
  24. * software compressors. You probably do not want to use this software
  25. * compression. If you have access to the PowerPC 842 compression hardware, you
  26. * want to use the 842 hardware compression interface, which is at:
  27. * drivers/crypto/nx/nx-842-crypto.c
  28. */
  29. #include <linux/init.h>
  30. #include <linux/module.h>
  31. #include <linux/crypto.h>
  32. #include <linux/sw842.h>
  33. struct crypto842_ctx {
  34. char wmem[SW842_MEM_COMPRESS]; /* working memory for compress */
  35. };
  36. static int crypto842_compress(struct crypto_tfm *tfm,
  37. const u8 *src, unsigned int slen,
  38. u8 *dst, unsigned int *dlen)
  39. {
  40. struct crypto842_ctx *ctx = crypto_tfm_ctx(tfm);
  41. return sw842_compress(src, slen, dst, dlen, ctx->wmem);
  42. }
  43. static int crypto842_decompress(struct crypto_tfm *tfm,
  44. const u8 *src, unsigned int slen,
  45. u8 *dst, unsigned int *dlen)
  46. {
  47. return sw842_decompress(src, slen, dst, dlen);
  48. }
  49. static struct crypto_alg alg = {
  50. .cra_name = "842",
  51. .cra_driver_name = "842-generic",
  52. .cra_priority = 100,
  53. .cra_flags = CRYPTO_ALG_TYPE_COMPRESS,
  54. .cra_ctxsize = sizeof(struct crypto842_ctx),
  55. .cra_module = THIS_MODULE,
  56. .cra_u = { .compress = {
  57. .coa_compress = crypto842_compress,
  58. .coa_decompress = crypto842_decompress } }
  59. };
  60. static int __init crypto842_mod_init(void)
  61. {
  62. return crypto_register_alg(&alg);
  63. }
  64. module_init(crypto842_mod_init);
  65. static void __exit crypto842_mod_exit(void)
  66. {
  67. crypto_unregister_alg(&alg);
  68. }
  69. module_exit(crypto842_mod_exit);
  70. MODULE_LICENSE("GPL");
  71. MODULE_DESCRIPTION("842 Software Compression Algorithm");
  72. MODULE_ALIAS_CRYPTO("842");
  73. MODULE_ALIAS_CRYPTO("842-generic");
  74. MODULE_AUTHOR("Dan Streetman <ddstreet@ieee.org>");