rfc1459.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * rfc1459.c
  3. *
  4. */
  5. /*
  6. * Copyright (C) 1990 Jarkko Oikarinen
  7. * Copyright (C) 1999, 2000, 2001, 2002 Eggheads Development Team
  8. *
  9. * This code was more or less cloned from the ircd-hybrid 5.3 source.
  10. * The original code was written by Otto Harkoonen and even though it
  11. * it not entirely in synch with section 2.2 of RFC1459 in that it
  12. * additionally defines carat as an uppercase version of tilde, it's
  13. * what is in the servers themselves so we're going with it this way.
  14. *
  15. * If for some reason someone who maintains the source for ircd decides
  16. * to change the code to be completely RFC compliant, the change here
  17. * would be absolutely miniscule.
  18. *
  19. * BTW, since carat characters are allowed in nicknames and tildes are
  20. * not, I stronly suggest that people convert to uppercase when doing
  21. * comparisons or creation of hash elements (which tcl laughably calls
  22. * arrays) to avoid making entries with impossible nicknames in them.
  23. *
  24. * --+ Dagmar
  25. */
  26. #include "main.h"
  27. int _rfc_casecmp(const char *s1, const char *s2)
  28. {
  29. register unsigned char *str1 = (unsigned char *) s1;
  30. register unsigned char *str2 = (unsigned char *) s2;
  31. register int res;
  32. while (!(res = rfc_toupper(*str1) - rfc_toupper(*str2))) {
  33. if (*str1 == '\0')
  34. return 0;
  35. str1++;
  36. str2++;
  37. }
  38. return (res);
  39. }
  40. int _rfc_ncasecmp(const char *str1, const char *str2, int n)
  41. {
  42. register unsigned char *s1 = (unsigned char *) str1;
  43. register unsigned char *s2 = (unsigned char *) str2;
  44. register int res;
  45. while (!(res = rfc_toupper(*s1) - rfc_toupper(*s2))) {
  46. s1++;
  47. s2++;
  48. n--;
  49. if (!n || (*s1 == '\0' && *s2 == '\0'))
  50. return 0;
  51. }
  52. return (res);
  53. }
  54. unsigned char rfc_tolowertab[];
  55. unsigned char rfc_touppertab[];
  56. int _rfc_tolower(int c)
  57. {
  58. return rfc_tolowertab[(unsigned char)(c)];
  59. }
  60. int _rfc_toupper(int c)
  61. {
  62. return rfc_touppertab[(unsigned char)(c)];
  63. }
  64. unsigned char rfc_tolowertab[] =
  65. {0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa,
  66. 0xb, 0xc, 0xd, 0xe, 0xf, 0x10, 0x11, 0x12, 0x13, 0x14,
  67. 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,
  68. 0x1e, 0x1f,
  69. ' ', '!', '"', '#', '$', '%', '&', 0x27, '(', ')',
  70. '*', '+', ',', '-', '.', '/',
  71. '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
  72. ':', ';', '<', '=', '>', '?',
  73. '@', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i',
  74. 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's',
  75. 't', 'u', 'v', 'w', 'x', 'y', 'z', '{', '|', '}', '~',
  76. '_',
  77. '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i',
  78. 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's',
  79. 't', 'u', 'v', 'w', 'x', 'y', 'z', '{', '|', '}', '~',
  80. 0x7f,
  81. 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89,
  82. 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
  83. 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99,
  84. 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,
  85. 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9,
  86. 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,
  87. 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9,
  88. 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,
  89. 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9,
  90. 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,
  91. 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9,
  92. 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf,
  93. 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9,
  94. 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef,
  95. 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9,
  96. 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff};
  97. unsigned char rfc_touppertab[] =
  98. {0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa,
  99. 0xb, 0xc, 0xd, 0xe, 0xf, 0x10, 0x11, 0x12, 0x13, 0x14,
  100. 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,
  101. 0x1e, 0x1f,
  102. ' ', '!', '"', '#', '$', '%', '&', 0x27, '(', ')',
  103. '*', '+', ',', '-', '.', '/',
  104. '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
  105. ':', ';', '<', '=', '>', '?',
  106. '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I',
  107. 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S',
  108. 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '[', '\\', ']', '^',
  109. 0x5f,
  110. '`', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I',
  111. 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S',
  112. 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '[', '\\', ']', '^',
  113. 0x7f,
  114. 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89,
  115. 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
  116. 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99,
  117. 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,
  118. 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9,
  119. 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,
  120. 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9,
  121. 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,
  122. 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9,
  123. 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,
  124. 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9,
  125. 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf,
  126. 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9,
  127. 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef,
  128. 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9,
  129. 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff};