blob: b8253250d723314da1fd7b544289d49b38078c24 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * X.25 Packet Layer release 002
3 *
4 * This is ALPHA test software. This code may break your machine,
5 * randomly fail to work with new releases, misbehave and/or generally
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +09006 * screw up. It might even work.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This code REQUIRES 2.1.15 or higher
9 *
10 * This module:
11 * This module is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 *
16 * History
17 * X.25 001 Split from x25_subr.c
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +090018 * mar/20/00 Daniela Squassoni Disabling/enabling of facilities
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * negotiation.
Shaun Pereiraebc3f642005-06-22 22:16:17 -070020 * apr/14/05 Shaun Pereira - Allow fast select with no restriction
21 * on response.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
24#include <linux/kernel.h>
25#include <linux/string.h>
26#include <linux/skbuff.h>
27#include <net/sock.h>
28#include <net/x25.h>
29
andrew hendry95c30432011-02-07 00:08:15 +000030/**
31 * x25_parse_facilities - Parse facilities from skb into the facilities structs
32 *
33 * @skb: sk_buff to parse
Lucas De Marchi25985ed2011-03-30 22:57:33 -030034 * @facilities: Regular facilities, updated as facilities are found
andrew hendry95c30432011-02-07 00:08:15 +000035 * @dte_facs: ITU DTE facilities, updated as DTE facilities are found
36 * @vc_fac_mask: mask is updated with all facilities found
37 *
38 * Return codes:
39 * -1 - Parsing error, caller should drop call and clean up
40 * 0 - Parse OK, this skb has no facilities
41 * >0 - Parse OK, returns the length of the facilities header
42 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 */
Shaun Pereiraa64b7b92006-03-22 00:01:31 -080044int x25_parse_facilities(struct sk_buff *skb, struct x25_facilities *facilities,
45 struct x25_dte_facilities *dte_facs, unsigned long *vc_fac_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Matthew Daleycb101ed2011-10-14 18:45:04 +000047 unsigned char *p;
John Hughesf5eb9172010-04-07 21:29:25 -070048 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 *vc_fac_mask = 0;
51
Shaun Pereiraa64b7b92006-03-22 00:01:31 -080052 /*
53 * The kernel knows which facilities were set on an incoming call but
54 * currently this information is not available to userspace. Here we
55 * give userspace who read incoming call facilities 0 length to indicate
56 * it wasn't set.
57 */
58 dte_facs->calling_len = 0;
59 dte_facs->called_len = 0;
60 memset(dte_facs->called_ae, '\0', sizeof(dte_facs->called_ae));
61 memset(dte_facs->calling_ae, '\0', sizeof(dte_facs->calling_ae));
62
Matthew Daleycb101ed2011-10-14 18:45:04 +000063 if (!pskb_may_pull(skb, 1))
John Hughesf5eb9172010-04-07 21:29:25 -070064 return 0;
65
Matthew Daleycb101ed2011-10-14 18:45:04 +000066 len = skb->data[0];
John Hughesf5eb9172010-04-07 21:29:25 -070067
Matthew Daleycb101ed2011-10-14 18:45:04 +000068 if (!pskb_may_pull(skb, 1 + len))
John Hughesf5eb9172010-04-07 21:29:25 -070069 return -1;
70
Matthew Daleycb101ed2011-10-14 18:45:04 +000071 p = skb->data + 1;
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 while (len > 0) {
74 switch (*p & X25_FAC_CLASS_MASK) {
75 case X25_FAC_CLASS_A:
Dan Rosenberg5ef41302010-11-12 12:44:42 -080076 if (len < 2)
andrew hendry95c30432011-02-07 00:08:15 +000077 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 switch (*p) {
79 case X25_FAC_REVERSE:
Shaun Pereiraebc3f642005-06-22 22:16:17 -070080 if((p[1] & 0x81) == 0x81) {
81 facilities->reverse = p[1] & 0x81;
82 *vc_fac_mask |= X25_MASK_REVERSE;
83 break;
84 }
85
86 if((p[1] & 0x01) == 0x01) {
87 facilities->reverse = p[1] & 0x01;
88 *vc_fac_mask |= X25_MASK_REVERSE;
89 break;
90 }
91
92 if((p[1] & 0x80) == 0x80) {
93 facilities->reverse = p[1] & 0x80;
94 *vc_fac_mask |= X25_MASK_REVERSE;
95 break;
96 }
97
98 if(p[1] == 0x00) {
99 facilities->reverse
100 = X25_DEFAULT_REVERSE;
101 *vc_fac_mask |= X25_MASK_REVERSE;
102 break;
103 }
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 case X25_FAC_THROUGHPUT:
106 facilities->throughput = p[1];
107 *vc_fac_mask |= X25_MASK_THROUGHPUT;
108 break;
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800109 case X25_MARKER:
110 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 default:
112 printk(KERN_DEBUG "X.25: unknown facility "
113 "%02X, value %02X\n",
114 p[0], p[1]);
115 break;
116 }
117 p += 2;
118 len -= 2;
119 break;
120 case X25_FAC_CLASS_B:
Dan Rosenberg5ef41302010-11-12 12:44:42 -0800121 if (len < 3)
andrew hendry95c30432011-02-07 00:08:15 +0000122 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 switch (*p) {
124 case X25_FAC_PACKET_SIZE:
125 facilities->pacsize_in = p[1];
126 facilities->pacsize_out = p[2];
127 *vc_fac_mask |= X25_MASK_PACKET_SIZE;
128 break;
129 case X25_FAC_WINDOW_SIZE:
130 facilities->winsize_in = p[1];
131 facilities->winsize_out = p[2];
132 *vc_fac_mask |= X25_MASK_WINDOW_SIZE;
133 break;
134 default:
135 printk(KERN_DEBUG "X.25: unknown facility "
136 "%02X, values %02X, %02X\n",
137 p[0], p[1], p[2]);
138 break;
139 }
140 p += 3;
141 len -= 3;
142 break;
143 case X25_FAC_CLASS_C:
Dan Rosenberg5ef41302010-11-12 12:44:42 -0800144 if (len < 4)
andrew hendry95c30432011-02-07 00:08:15 +0000145 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 printk(KERN_DEBUG "X.25: unknown facility %02X, "
147 "values %02X, %02X, %02X\n",
148 p[0], p[1], p[2], p[3]);
149 p += 4;
150 len -= 4;
151 break;
152 case X25_FAC_CLASS_D:
Dan Rosenberg5ef41302010-11-12 12:44:42 -0800153 if (len < p[1] + 2)
andrew hendry95c30432011-02-07 00:08:15 +0000154 return -1;
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800155 switch (*p) {
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +0900156 case X25_FAC_CALLING_AE:
andrew hendrya6331d62010-11-03 12:54:53 +0000157 if (p[1] > X25_MAX_DTE_FACIL_LEN || p[1] <= 1)
andrew hendry95c30432011-02-07 00:08:15 +0000158 return -1;
Dan Carpenter80aa4e12013-09-03 12:03:40 +0300159 if (p[2] > X25_MAX_AE_LEN)
160 return -1;
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800161 dte_facs->calling_len = p[2];
162 memcpy(dte_facs->calling_ae, &p[3], p[1] - 1);
163 *vc_fac_mask |= X25_MASK_CALLING_AE;
164 break;
165 case X25_FAC_CALLED_AE:
andrew hendrya6331d62010-11-03 12:54:53 +0000166 if (p[1] > X25_MAX_DTE_FACIL_LEN || p[1] <= 1)
andrew hendry95c30432011-02-07 00:08:15 +0000167 return -1;
Dan Carpenter80aa4e12013-09-03 12:03:40 +0300168 if (p[2] > X25_MAX_AE_LEN)
169 return -1;
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800170 dte_facs->called_len = p[2];
171 memcpy(dte_facs->called_ae, &p[3], p[1] - 1);
172 *vc_fac_mask |= X25_MASK_CALLED_AE;
173 break;
174 default:
175 printk(KERN_DEBUG "X.25: unknown facility %02X,"
Dan Rosenberg5ef41302010-11-12 12:44:42 -0800176 "length %d\n", p[0], p[1]);
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800177 break;
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 len -= p[1] + 2;
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800180 p += p[1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 break;
182 }
183 }
184
185 return p - skb->data;
186}
187
188/*
189 * Create a set of facilities.
190 */
191int x25_create_facilities(unsigned char *buffer,
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800192 struct x25_facilities *facilities,
193 struct x25_dte_facilities *dte_facs, unsigned long facil_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 unsigned char *p = buffer + 1;
196 int len;
197
198 if (!facil_mask) {
199 /*
200 * Length of the facilities field in call_req or
201 * call_accept packets
202 */
203 buffer[0] = 0;
204 len = 1; /* 1 byte for the length field */
205 return len;
206 }
207
208 if (facilities->reverse && (facil_mask & X25_MASK_REVERSE)) {
209 *p++ = X25_FAC_REVERSE;
Shaun Pereiraebc3f642005-06-22 22:16:17 -0700210 *p++ = facilities->reverse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212
213 if (facilities->throughput && (facil_mask & X25_MASK_THROUGHPUT)) {
214 *p++ = X25_FAC_THROUGHPUT;
215 *p++ = facilities->throughput;
216 }
217
218 if ((facilities->pacsize_in || facilities->pacsize_out) &&
219 (facil_mask & X25_MASK_PACKET_SIZE)) {
220 *p++ = X25_FAC_PACKET_SIZE;
221 *p++ = facilities->pacsize_in ? : facilities->pacsize_out;
222 *p++ = facilities->pacsize_out ? : facilities->pacsize_in;
223 }
224
225 if ((facilities->winsize_in || facilities->winsize_out) &&
226 (facil_mask & X25_MASK_WINDOW_SIZE)) {
227 *p++ = X25_FAC_WINDOW_SIZE;
228 *p++ = facilities->winsize_in ? : facilities->winsize_out;
229 *p++ = facilities->winsize_out ? : facilities->winsize_in;
230 }
231
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800232 if (facil_mask & (X25_MASK_CALLING_AE|X25_MASK_CALLED_AE)) {
233 *p++ = X25_MARKER;
234 *p++ = X25_DTE_SERVICES;
235 }
236
237 if (dte_facs->calling_len && (facil_mask & X25_MASK_CALLING_AE)) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000238 unsigned int bytecount = (dte_facs->calling_len + 1) >> 1;
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800239 *p++ = X25_FAC_CALLING_AE;
240 *p++ = 1 + bytecount;
241 *p++ = dte_facs->calling_len;
242 memcpy(p, dte_facs->calling_ae, bytecount);
243 p += bytecount;
244 }
245
246 if (dte_facs->called_len && (facil_mask & X25_MASK_CALLED_AE)) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000247 unsigned int bytecount = (dte_facs->called_len % 2) ?
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800248 dte_facs->called_len / 2 + 1 :
249 dte_facs->called_len / 2;
250 *p++ = X25_FAC_CALLED_AE;
251 *p++ = 1 + bytecount;
252 *p++ = dte_facs->called_len;
253 memcpy(p, dte_facs->called_ae, bytecount);
254 p+=bytecount;
255 }
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 len = p - buffer;
258 buffer[0] = len - 1;
259
260 return len;
261}
262
263/*
264 * Try to reach a compromise on a set of facilities.
265 *
266 * The only real problem is with reverse charging.
267 */
268int x25_negotiate_facilities(struct sk_buff *skb, struct sock *sk,
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800269 struct x25_facilities *new, struct x25_dte_facilities *dte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 struct x25_sock *x25 = x25_sk(sk);
272 struct x25_facilities *ours = &x25->facilities;
273 struct x25_facilities theirs;
274 int len;
275
276 memset(&theirs, 0, sizeof(theirs));
277 memcpy(new, ours, sizeof(*new));
278
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800279 len = x25_parse_facilities(skb, &theirs, dte, &x25->vc_facil_mask);
John Hughesf5eb9172010-04-07 21:29:25 -0700280 if (len < 0)
281 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 /*
284 * They want reverse charging, we won't accept it.
285 */
Shaun Pereiraebc3f642005-06-22 22:16:17 -0700286 if ((theirs.reverse & 0x01 ) && (ours->reverse & 0x01)) {
Andrew Hendryd2e75432007-01-04 17:00:56 -0800287 SOCK_DEBUG(sk, "X.25: rejecting reverse charging request\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return -1;
289 }
290
291 new->reverse = theirs.reverse;
292
293 if (theirs.throughput) {
John Hughesddd04512010-04-04 06:48:10 +0000294 int theirs_in = theirs.throughput & 0x0f;
295 int theirs_out = theirs.throughput & 0xf0;
296 int ours_in = ours->throughput & 0x0f;
297 int ours_out = ours->throughput & 0xf0;
298 if (!ours_in || theirs_in < ours_in) {
299 SOCK_DEBUG(sk, "X.25: inbound throughput negotiated\n");
300 new->throughput = (new->throughput & 0xf0) | theirs_in;
301 }
302 if (!ours_out || theirs_out < ours_out) {
303 SOCK_DEBUG(sk,
304 "X.25: outbound throughput negotiated\n");
305 new->throughput = (new->throughput & 0x0f) | theirs_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307 }
308
309 if (theirs.pacsize_in && theirs.pacsize_out) {
310 if (theirs.pacsize_in < ours->pacsize_in) {
Andrew Hendryd2e75432007-01-04 17:00:56 -0800311 SOCK_DEBUG(sk, "X.25: packet size inwards negotiated down\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 new->pacsize_in = theirs.pacsize_in;
313 }
314 if (theirs.pacsize_out < ours->pacsize_out) {
Andrew Hendryd2e75432007-01-04 17:00:56 -0800315 SOCK_DEBUG(sk, "X.25: packet size outwards negotiated down\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 new->pacsize_out = theirs.pacsize_out;
317 }
318 }
319
320 if (theirs.winsize_in && theirs.winsize_out) {
321 if (theirs.winsize_in < ours->winsize_in) {
Andrew Hendryd2e75432007-01-04 17:00:56 -0800322 SOCK_DEBUG(sk, "X.25: window size inwards negotiated down\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 new->winsize_in = theirs.winsize_in;
324 }
325 if (theirs.winsize_out < ours->winsize_out) {
Andrew Hendryd2e75432007-01-04 17:00:56 -0800326 SOCK_DEBUG(sk, "X.25: window size outwards negotiated down\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 new->winsize_out = theirs.winsize_out;
328 }
329 }
330
331 return len;
332}
333
334/*
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +0900335 * Limit values of certain facilities according to the capability of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 * currently attached x25 link.
337 */
338void x25_limit_facilities(struct x25_facilities *facilities,
339 struct x25_neigh *nb)
340{
341
342 if (!nb->extended) {
343 if (facilities->winsize_in > 7) {
344 printk(KERN_DEBUG "X.25: incoming winsize limited to 7\n");
345 facilities->winsize_in = 7;
346 }
347 if (facilities->winsize_out > 7) {
348 facilities->winsize_out = 7;
349 printk( KERN_DEBUG "X.25: outgoing winsize limited to 7\n");
350 }
351 }
352}