iconv_xlat.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*-
  2. * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
  3. *
  4. * Copyright (c) 2000-2001 Boris Popov
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  20. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. */
  28. #include <sys/cdefs.h>
  29. __FBSDID("$FreeBSD$");
  30. #include <sys/param.h>
  31. #include <sys/kernel.h>
  32. #include <sys/systm.h>
  33. #include <sys/malloc.h>
  34. #include <sys/iconv.h>
  35. #include "iconv_converter_if.h"
  36. /*
  37. * "XLAT" converter
  38. */
  39. #ifdef MODULE_DEPEND
  40. MODULE_DEPEND(iconv_xlat, libiconv, 2, 2, 2);
  41. #endif
  42. /*
  43. * XLAT converter instance
  44. */
  45. struct iconv_xlat {
  46. KOBJ_FIELDS;
  47. u_char * d_table;
  48. struct iconv_cspair * d_csp;
  49. };
  50. static int
  51. iconv_xlat_open(struct iconv_converter_class *dcp,
  52. struct iconv_cspair *csp, struct iconv_cspair *cspf, void **dpp)
  53. {
  54. struct iconv_xlat *dp;
  55. dp = (struct iconv_xlat *)kobj_create((struct kobj_class*)dcp, M_ICONV, M_WAITOK);
  56. dp->d_table = csp->cp_data;
  57. dp->d_csp = csp;
  58. csp->cp_refcount++;
  59. *dpp = (void*)dp;
  60. return 0;
  61. }
  62. static int
  63. iconv_xlat_close(void *data)
  64. {
  65. struct iconv_xlat *dp = data;
  66. dp->d_csp->cp_refcount--;
  67. kobj_delete((struct kobj*)data, M_ICONV);
  68. return 0;
  69. }
  70. static int
  71. iconv_xlat_conv(void *d2p, const char **inbuf,
  72. size_t *inbytesleft, char **outbuf, size_t *outbytesleft,
  73. int convchar, int casetype)
  74. {
  75. struct iconv_xlat *dp = (struct iconv_xlat*)d2p;
  76. const char *src;
  77. char *dst;
  78. int n, r;
  79. if (inbuf == NULL || *inbuf == NULL || outbuf == NULL || *outbuf == NULL)
  80. return 0;
  81. if (casetype != 0)
  82. return -1;
  83. if (convchar == 1)
  84. r = n = 1;
  85. else
  86. r = n = min(*inbytesleft, *outbytesleft);
  87. src = *inbuf;
  88. dst = *outbuf;
  89. while(r--)
  90. *dst++ = dp->d_table[(u_char)*src++];
  91. *inbuf += n;
  92. *outbuf += n;
  93. *inbytesleft -= n;
  94. *outbytesleft -= n;
  95. return 0;
  96. }
  97. static const char *
  98. iconv_xlat_name(struct iconv_converter_class *dcp)
  99. {
  100. return "xlat";
  101. }
  102. static kobj_method_t iconv_xlat_methods[] = {
  103. KOBJMETHOD(iconv_converter_open, iconv_xlat_open),
  104. KOBJMETHOD(iconv_converter_close, iconv_xlat_close),
  105. KOBJMETHOD(iconv_converter_conv, iconv_xlat_conv),
  106. #if 0
  107. KOBJMETHOD(iconv_converter_init, iconv_xlat_init),
  108. KOBJMETHOD(iconv_converter_done, iconv_xlat_done),
  109. #endif
  110. KOBJMETHOD(iconv_converter_name, iconv_xlat_name),
  111. {0, 0}
  112. };
  113. KICONV_CONVERTER(xlat, sizeof(struct iconv_xlat));