ppp-comp.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /*
  2. * ppp-comp.h - Definitions for doing PPP packet compression.
  3. *
  4. * Copyright (c) 1994 Paul Mackerras. All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. *
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. *
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in
  15. * the documentation and/or other materials provided with the
  16. * distribution.
  17. *
  18. * 3. The name(s) of the authors of this software must not be used to
  19. * endorse or promote products derived from this software without
  20. * prior written permission.
  21. *
  22. * 4. Redistributions of any form whatsoever must retain the following
  23. * acknowledgment:
  24. * "This product includes software developed by Paul Mackerras
  25. * <paulus@samba.org>".
  26. *
  27. * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO
  28. * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  29. * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
  30. * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  31. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
  32. * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
  33. * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  34. *
  35. * $Id: ppp-comp.h,v 1.2 2002/12/06 09:49:16 paulus Exp $
  36. */
  37. #ifndef _NET_PPP_COMP_H
  38. #define _NET_PPP_COMP_H
  39. /*
  40. * The following symbols control whether we include code for
  41. * various compression methods.
  42. */
  43. #ifndef DO_BSD_COMPRESS
  44. #define DO_BSD_COMPRESS 1 /* by default, include BSD-Compress */
  45. #endif
  46. #ifndef DO_DEFLATE
  47. #define DO_DEFLATE 1 /* by default, include Deflate */
  48. #endif
  49. #define DO_PREDICTOR_1 0
  50. #define DO_PREDICTOR_2 0
  51. /*
  52. * Structure giving methods for compression/decompression.
  53. */
  54. struct compressor {
  55. int compress_proto; /* CCP compression protocol number */
  56. /* Allocate space for a decompressor (receive side) */
  57. void *(*decomp_alloc) __P((u_char *options, int opt_len));
  58. /* Free space used by a decompressor */
  59. void (*decomp_free) __P((void *state));
  60. /* Initialize a decompressor */
  61. int (*decomp_init) __P((void *state, u_char *options, int opt_len,
  62. int unit, int hdrlen, int mru, int debug));
  63. /* Reset a decompressor */
  64. void (*decomp_reset) __P((void *state));
  65. /* Decompress a packet. */
  66. int (*decompress) __P((void *state, u_char *mp, int inlen,
  67. u_char *dmp, int *outlen));
  68. /* Update state for an incompressible packet received */
  69. void (*incomp) __P((void *state, u_char *mp, int len));
  70. /* Return decompression statistics */
  71. void (*decomp_stat) __P((void *state, struct compstat *stats));
  72. };
  73. /*
  74. * Return values for decompress routine.
  75. * We need to make these distinctions so that we can disable certain
  76. * useful functionality, namely sending a CCP reset-request as a result
  77. * of an error detected after decompression. This is to avoid infringing
  78. * a patent held by Motorola.
  79. * Don't you just lurve software patents.
  80. */
  81. #define DECOMP_OK 0 /* everything went OK */
  82. #define DECOMP_ERROR 1 /* error detected before decomp. */
  83. #define DECOMP_FATALERROR 2 /* error detected after decomp. */
  84. /*
  85. * CCP codes.
  86. */
  87. #define CCP_CONFREQ 1
  88. #define CCP_CONFACK 2
  89. #define CCP_CONFNAK 3
  90. #define CCP_CONFREJ 4
  91. #define CCP_TERMREQ 5
  92. #define CCP_TERMACK 6
  93. #define CCP_RESETREQ 14
  94. #define CCP_RESETACK 15
  95. /*
  96. * Max # bytes for a CCP option
  97. */
  98. #define CCP_MAX_OPTION_LENGTH 32
  99. /*
  100. * Parts of a CCP packet.
  101. */
  102. #define CCP_CODE(dp) ((dp)[0])
  103. #define CCP_ID(dp) ((dp)[1])
  104. #define CCP_LENGTH(dp) (((dp)[2] << 8) + (dp)[3])
  105. #define CCP_HDRLEN 4
  106. #define CCP_OPT_CODE(dp) ((dp)[0])
  107. #define CCP_OPT_LENGTH(dp) ((dp)[1])
  108. #define CCP_OPT_MINLEN 2
  109. /*
  110. * Definitions for BSD-Compress.
  111. */
  112. #define CI_BSD_COMPRESS 21 /* config. option for BSD-Compress */
  113. #define CILEN_BSD_COMPRESS 3 /* length of config. option */
  114. /* Macros for handling the 3rd byte of the BSD-Compress config option. */
  115. #define BSD_NBITS(x) ((x) & 0x1F) /* number of bits requested */
  116. #define BSD_VERSION(x) ((x) >> 5) /* version of option format */
  117. #define BSD_CURRENT_VERSION 1 /* current version number */
  118. #define BSD_MAKE_OPT(v, n) (((v) << 5) | (n))
  119. #define BSD_MIN_BITS 9 /* smallest code size supported */
  120. #define BSD_MAX_BITS 15 /* largest code size supported */
  121. /*
  122. * Definitions for Deflate.
  123. */
  124. #define CI_DEFLATE 26 /* config option for Deflate */
  125. #define CI_DEFLATE_DRAFT 24 /* value used in original draft RFC */
  126. #define CILEN_DEFLATE 4 /* length of its config option */
  127. #define DEFLATE_MIN_SIZE 8
  128. #define DEFLATE_MAX_SIZE 15
  129. #define DEFLATE_METHOD_VAL 8
  130. #define DEFLATE_SIZE(x) (((x) >> 4) + DEFLATE_MIN_SIZE)
  131. #define DEFLATE_METHOD(x) ((x) & 0x0F)
  132. #define DEFLATE_MAKE_OPT(w) ((((w) - DEFLATE_MIN_SIZE) << 4) \
  133. + DEFLATE_METHOD_VAL)
  134. #define DEFLATE_CHK_SEQUENCE 0
  135. /*
  136. * Definitions for other, as yet unsupported, compression methods.
  137. */
  138. #define CI_PREDICTOR_1 1 /* config option for Predictor-1 */
  139. #define CILEN_PREDICTOR_1 2 /* length of its config option */
  140. #define CI_PREDICTOR_2 2 /* config option for Predictor-2 */
  141. #define CILEN_PREDICTOR_2 2 /* length of its config option */
  142. #endif /* _NET_PPP_COMP_H */