x25_facilities.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * X.25 Packet Layer release 002
  3.  *
  4.  * This is ALPHA test software. This code may break your machine, randomly fail to work with new 
  5.  * releases, misbehave and/or generally screw up. It might even work. 
  6.  *
  7.  * This code REQUIRES 2.1.15 or higher
  8.  *
  9.  * This module:
  10.  * This module is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU General Public License
  12.  * as published by the Free Software Foundation; either version
  13.  * 2 of the License, or (at your option) any later version.
  14.  *
  15.  * History
  16.  * X.25 001 Split from x25_subr.c
  17.  * mar/20/00 Daniela Squassoni Disabling/enabling of facilities 
  18.  *   negotiation.
  19.  */
  20. #include <linux/errno.h>
  21. #include <linux/types.h>
  22. #include <linux/socket.h>
  23. #include <linux/in.h>
  24. #include <linux/kernel.h>
  25. #include <linux/sched.h>
  26. #include <linux/timer.h>
  27. #include <linux/string.h>
  28. #include <linux/sockios.h>
  29. #include <linux/net.h>
  30. #include <linux/inet.h>
  31. #include <linux/netdevice.h>
  32. #include <linux/skbuff.h>
  33. #include <net/sock.h>
  34. #include <asm/segment.h>
  35. #include <asm/system.h>
  36. #include <linux/fcntl.h>
  37. #include <linux/mm.h>
  38. #include <linux/interrupt.h>
  39. #include <net/x25.h>
  40. /*
  41.  * Parse a set of facilities into the facilities structure. Unrecognised
  42.  * facilities are written to the debug log file.
  43.  */
  44. int x25_parse_facilities(struct sk_buff *skb, struct x25_facilities *facilities, unsigned long *vc_fac_mask)
  45. {
  46. unsigned int len;
  47. unsigned char *p = skb->data;
  48. len = *p++;
  49. *vc_fac_mask = 0;
  50. while (len > 0) {
  51. switch (*p & X25_FAC_CLASS_MASK) {
  52. case X25_FAC_CLASS_A:
  53. switch (*p) {
  54. case X25_FAC_REVERSE:
  55. facilities->reverse = (p[1] & 0x01);
  56. *vc_fac_mask |= X25_MASK_REVERSE;
  57. break;
  58. case X25_FAC_THROUGHPUT:
  59. facilities->throughput = p[1];
  60. *vc_fac_mask |= X25_MASK_THROUGHPUT;
  61. break;
  62. default:
  63. printk(KERN_DEBUG "X.25: unknown facility %02X, value %02Xn", p[0], p[1]);
  64. break;
  65. }
  66. p   += 2;
  67. len -= 2;
  68. break;
  69. case X25_FAC_CLASS_B:
  70. switch (*p) {
  71. case X25_FAC_PACKET_SIZE:
  72. facilities->pacsize_in  = p[1];
  73. facilities->pacsize_out = p[2];
  74. *vc_fac_mask |= X25_MASK_PACKET_SIZE;
  75. break;
  76. case X25_FAC_WINDOW_SIZE:
  77. facilities->winsize_in  = p[1];
  78. facilities->winsize_out = p[2];
  79. *vc_fac_mask |= X25_MASK_WINDOW_SIZE;
  80. break;
  81. default:
  82. printk(KERN_DEBUG "X.25: unknown facility %02X, values %02X, %02Xn", p[0], p[1], p[2]);
  83. break;
  84. }
  85. p   += 3;
  86. len -= 3;
  87. break;
  88. case X25_FAC_CLASS_C:
  89. printk(KERN_DEBUG "X.25: unknown facility %02X, values %02X, %02X, %02Xn", p[0], p[1], p[2], p[3]);
  90. p   += 4;
  91. len -= 4;
  92. break;
  93. case X25_FAC_CLASS_D:
  94. printk(KERN_DEBUG "X.25: unknown facility %02X, length %d, values %02X, %02X, %02X, %02Xn", p[0], p[1], p[2], p[3], p[4], p[5]);
  95. p   += p[1] + 2;
  96. len -= p[1] + 2;
  97. break;
  98. }
  99. }
  100. return p - skb->data;
  101. }
  102. /*
  103.  * Create a set of facilities.
  104.  */
  105. int x25_create_facilities(unsigned char *buffer, struct x25_facilities *facilities, unsigned long facil_mask)
  106. {
  107. unsigned char *p = buffer + 1;
  108. int len;
  109. if (facil_mask == 0) {
  110. buffer [0] = 0; /* length of the facilities field in call_req or call_accept packets */
  111. len = 1; /* 1 byte for the length field */
  112. return len;
  113. }
  114. if ((facilities->reverse != 0) && (facil_mask & X25_MASK_REVERSE)) {
  115. *p++ = X25_FAC_REVERSE;
  116. *p++ = (facilities->reverse) ? 0x01 : 0x00;
  117. }
  118. if ((facilities->throughput != 0) && (facil_mask & X25_MASK_THROUGHPUT)) {
  119. *p++ = X25_FAC_THROUGHPUT;
  120. *p++ = facilities->throughput;
  121. }
  122. if ((facilities->pacsize_in != 0 || facilities->pacsize_out != 0) && (facil_mask & X25_MASK_PACKET_SIZE)) {
  123. *p++ = X25_FAC_PACKET_SIZE;
  124. *p++ = (facilities->pacsize_in  == 0) ? facilities->pacsize_out : facilities->pacsize_in;
  125. *p++ = (facilities->pacsize_out == 0) ? facilities->pacsize_in  : facilities->pacsize_out;
  126. }
  127. if ((facilities->winsize_in != 0 || facilities->winsize_out != 0) && (facil_mask & X25_MASK_WINDOW_SIZE)) {
  128. *p++ = X25_FAC_WINDOW_SIZE;
  129. *p++ = (facilities->winsize_in  == 0) ? facilities->winsize_out : facilities->winsize_in;
  130. *p++ = (facilities->winsize_out == 0) ? facilities->winsize_in  : facilities->winsize_out;
  131. }
  132. len       = p - buffer;
  133. buffer[0] = len - 1;
  134. return len;
  135. }
  136. /*
  137.  * Try to reach a compromise on a set of facilities.
  138.  *
  139.  * The only real problem is with reverse charging.
  140.  */
  141. int x25_negotiate_facilities(struct sk_buff *skb, struct sock *sk, struct x25_facilities *new)
  142. {
  143. struct x25_facilities *ours;
  144. struct x25_facilities theirs;
  145. int len;
  146. memset(&theirs, 0x00, sizeof(struct x25_facilities));
  147. ours = &sk->protinfo.x25->facilities;
  148. *new = *ours;
  149. len = x25_parse_facilities(skb, &theirs, &sk->protinfo.x25->vc_facil_mask);
  150. /*
  151.  * They want reverse charging, we won't accept it.
  152.  */
  153. if (theirs.reverse != 0 && ours->reverse == 0) {
  154. SOCK_DEBUG(sk, "X.25: rejecting reverse charging request");
  155. return -1;
  156. }
  157. new->reverse = theirs.reverse;
  158. if (theirs.throughput != 0) {
  159. if (theirs.throughput < ours->throughput) {
  160. SOCK_DEBUG(sk, "X.25: throughput negotiated down");
  161. new->throughput = theirs.throughput;
  162. }
  163. }
  164. if (theirs.pacsize_in != 0 && theirs.pacsize_out != 0) {
  165. if (theirs.pacsize_in < ours->pacsize_in) {
  166. SOCK_DEBUG(sk, "X.25: packet size inwards negotiated down");
  167. new->pacsize_in = theirs.pacsize_in;
  168. }
  169. if (theirs.pacsize_out < ours->pacsize_out) {
  170. SOCK_DEBUG(sk, "X.25: packet size outwards negotiated down");
  171. new->pacsize_out = theirs.pacsize_out;
  172. }
  173. }
  174. if (theirs.winsize_in != 0 && theirs.winsize_out != 0) {
  175. if (theirs.winsize_in < ours->winsize_in) {
  176. SOCK_DEBUG(sk, "X.25: window size inwards negotiated down");
  177. new->winsize_in = theirs.winsize_in;
  178. }
  179. if (theirs.winsize_out < ours->winsize_out) {
  180. SOCK_DEBUG(sk, "X.25: window size outwards negotiated down");
  181. new->winsize_out = theirs.winsize_out;
  182. }
  183. }
  184. return len;
  185. }
  186. /*
  187.  * Limit values of certain facilities according to the capability of the 
  188.  *      currently attached x25 link.
  189.  */
  190. void x25_limit_facilities(struct x25_facilities *facilities,
  191.   struct x25_neigh *neighbour)
  192. {
  193. if( ! neighbour->extended ){
  194. if( facilities->winsize_in  > 7 ){
  195. printk(KERN_DEBUG "X.25: incoming winsize limited to 7n");
  196. facilities->winsize_in = 7;
  197. }
  198. if( facilities->winsize_out > 7 ){
  199. facilities->winsize_out = 7;
  200. printk( KERN_DEBUG "X.25: outgoing winsize limited to 7n");
  201. }
  202. }
  203. }