summaryrefslogtreecommitdiffstats
path: root/net/802/llc.c
blob: d280fb38f6310eb693b8da595d8d9f561b1ec7aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
/*
 *	802.2 Class 2 LLC service.
 */
 
 
int llc_rx_adm(struct sock *sk,struct sk_buff *skb, int type, int cmd, int pf, int nr, int ns)
{
	if(type==CMD)
	{
		if(cmd==DISC)
			send_response(sk,DM|pf);
		else if(cmd==SABM)
		{
			if(sk->state!=TCP_LISTEN)
				send_response(sk. DM|pf);
			else
			{
				sk=ll_rx_accept(sk);
				if(sk!=NULL)
				{
					send_response(sk, UA|pf);
					sk->llc.vs=0;
					sk->llc.vr=0;
					sk->llc.p_flag=0;
					sk->llc.remote_busy=0;
					llc_state(sk,LLC_NORMAL);
				}
			}	
		}
		else if(pf)
			send_response(sk, DM|PF);
	}
	return 0;
}

int llc_rx_setup(struct sock *sk, struct sk_buff *skb, int type, int cmd, int pf, int nr, int ns)
{
	if(type==CMD)
	{
		if(cmd==SABM)
		{
			sk->llc.vs=0;
			sk->llc.vr=0;
			send_response(sk, UA|pf);
		}
		if(cmd==DISC)
		{
			send_response(sk, DM|pf);
			llc_error(sk,ECONNRESET);
			llc_state(sk, LLC_ADM);
		}
	}
	else
	{
		if(cmd==UA && pf==sk->llc.p_flag)
		{
			del_timer(&sk->llc.t1);
			sk->llc.vs=0;
			llc_update_p_flag(sk,pf);
			llc_state(sk,LLC_NORMAL);
		}
		if(cmd==DM)
		{
			llc_error(sk, ECONNRESET);
			llc_state(sk, LLC_ADM);
		}
	}
}

int llc_rx_reset(struct sock *sk, struct sk_buff *skb, int type, int cmd, int pf, int nr, int ns)
{
	if(type==CMD)
	{
		if(cmd==SABM)
		{
			sk->llc.vr=0;
			sk->llc.vs=0;
			send_response(sk, UA|pf);
		}
		else if(cmd==DISC)
		{
			if(sk->llc.cause_flag==1)
				llc_shutdown(sk,SHUTDOWN_MASK);
			else
				llc_eror(sk, ECONNREFUSED);
			send_response(sk, DM|pf);
			llc_state(sk, LLC_ADM);
		}
	}
	else
	{
		if(cmd==UA)
		{
			if(sk->llc.p_flag==pf)
			{
				del_timer(&sk->llc.t1);
				sk->llc.vs=0;
				sk->llc.vr=0;
				llc_update_p_flag(sk,pf);
				llc_confirm_reset(sk, sk->llc.cause_flag);
				sk->llc.remote_busy=0;
				llc_state(sk, LLC_NORMAL);
			}
		}
		if(cmd==DM)
		{	/* Should check cause_flag */
			llc_shutdown(sk, SHUTDOWN_MASK);
			llc_state(sk, LLC_ADM);
		}
	}
	return 0;
}

int llc_rx_d_conn(struct sock *sk, struct sk_buff *skb, int type, int cmd, int pf, int nr, int ns)
{
	if(type==CMD)
	{
		if(cmd==SABM)
		{
			llc_error(sk, ECONNRESET);
			llc_state(sk, ADM);
		}
		else if(cmd==DISC)
		{
			send_response(UA|pf);
			llc_state(sk, LLC_D_CONN);
		}
		else if(pf)
			send_response(sk, DM|PF);
	}
	else
	{
		if(cmd==UA && pf==sk->llc.p_flag)
		{
			del_timer(&sk->llc.t1);
			llc_state(sk, ADM);
			llc_confirm_reset(sk, sk->llc.cause_flag);
		}
		if(cmd==DM)
		{
			del_timer(&sk->llc.t1);
			/*if(sk->llc.cause_flag)*/
			llc_shutdown(sk, SHUTDOWN_MASK);	
		}
		
	}
	return 0;
}

int llc_rx_error(struct sock *sk, struct sk_buff *skb, int type, int cmd, int pf, int nr, int ns)
{
	if(type==CMD)
	{
		if(cmd==SABM)
		{
			sk->llc.vs=0;
			sk->llc.vr=0;
			send_response(sk, UA|pf);
			llc_error(sk,ECONNRESET);
			sk->llc.p_flag=0;
			sk->llc.remote_busy=0;
			llc_state(sk, LLC_NORMAL);
		}
		else if(cmd==DISC)
		{
			send_response(sk, UA|pf);
			llc_shutdown(sk, SHUTDOWN_MASK);
			llc_state(sk, LLC_ADM);
		}
		else
			llc_resend_frmr_rsp(sk,pf);
	}
	else
	{
		if(cmd==DM)
		{
			llc_error(sk, ECONNRESET);
			del_timer(&sk->llc.t1);
			llc_state(sk, LLC_ADM);
		}
		if(cmd==FRMR)
		{
			send_command(sk, SABM);
			sk->llc.p_flag=pf;
			llc_start_t1();
			sk->llc.retry_count=0;
			sk->llc.cause_flag=0;
			llc_error(sk, EPROTO);
			llc_state(sk, LLC_RESET);
		}
	}
}


/*
 *	Subroutine for handling the shared cases of the data modes.
 */
 
int llc_rx_nr_shared(struct sock *sk, struct sk_buff *skb, int type, int cmd, int pf, int nr, int ns)
{
	if(type==CMD)
	{
		if(cmd==SABM)
		{
			/*
			 *	Optional reset processing. We decline resets.
			 */
			send_response(sk,DM|pf);
			llc_error(sk, ECONNRESET);
			llc_state(sk, LLC_ADM);
		}
		else if(cmd==DISC)
		{
			send_response(sk,UA|pf);
			llc_state(sk, LLC_ADM);
			llc_shutdown(sk, SHUTDOWN_MASK);
		}
		/*
		 *	We only ever use windows of 7, so there is no illegal NR/NS value
		 *	otherwise we would FRMR here and go to ERROR state
		 */
		else if(cmd==ILLEGAL)
		{
			llc_send_frmr_response(sk, ILLEGAL_TYPE,pf);
			llc_state(sk, LLC_ERROR);
			llc_error(sk, EPROTO);
		}
		else
			/*
			 *	Not covered by general rule
			 */
			return 0;
	}
	else
	{
		/*
		 *	We close on errors
		 */
		if(cmd==FRMR)
		{
			send_command(sk, DM|pf);
			sk->llc.p_flag=pf;
			llc_start_t1(sk);
			llc_error(sk, EPROTO);
			sk->llc.cause_flag=0;
			llc_state(sk, LLC_D_CONN):
		}
		else if(cmd==DM)
		{
			llc_state(sk, LLC_ADM);
			llc_error(sk, ECONNREFUSED);
		}
		/*
		 *	We always use a window of 7 so can't get I resp
		 *	with invalid NS,  or any resp with invalid NR. If
		 *	we add this they do the same as..
		 */
		else if(cmd==UA)
		{
			llc_send_frmr_response(sk, UNEXPECTED_CONTROL, pf);
			llc_state(sk, LLC_ERROR);
			llc_error(sk, EPROTO);
		}
		else if(pf==1 && sk->llc.p_flag==0)
		{
			llc_send_frmr_response(sk, UNEXPECTED_RESPONSE, pf);
			llc_state(sk, LLC_ERROR);
			llc_error(sk, EPROTO);
		}
		else if(cmd==ILLEGAL)
		{
			llc_send_frmr_response(sk, ILLEGAL_TYPE,pf);
			llc_state(sk, LLC_ERROR);
			llc_error(sk, EPROTO);
		}
		else
			/*
			 *	Not covered by general rule
			 */
			return 0
	}
	/*
	 *	Processed.
	 */
	return 1;
}

int llc_rx_normal(struct sock *sk, struct sk_buff *skb, int type, int cmd, int pf, int nr, int ns)
{
	if(llc_rx_nr_shared(sk, skb, type, cmd, pf, nr, ns))
		return 0;
	if(cmd==I)
	{
		if(llc_invalid_ns(sk,ns))
		{
			if((type==RESP && sk->llc.p_flag==pf)||(type==CMD && pf==0 && sk->llc.p_flag==0))
			{
				llc_command(sk, REJ|PF);
				llc_ack_frames(sk,nr);	/* Ack frames and update N(R) */
				sk->llc.p_flag=PF;
				llc_state(sk, LLC_REJECT);
				sk->llc.retry_count=0;
				llc_start_t1(sk);
				sk->llc.remote_busy=0;
			}
			else if((type==CMD && !pf && sk->llc.p_flag==1) || (type==RESP && !pf && sk->llc.p_flag==1))
			{
				if(type==CMD)
					llc_response(sk, REJ);
				else
					llc_command(sk, REJ);
				llc_ack_frames(sk,nr);
				sk->llc.retry_count=0;
				llc_state(sk, LLC_REJECT);
				llc_start_t1(sk);
			}
			else if(pf && type==CMD)
			{
				llc_response(sk, REJ|PF);
				llc_ack_frames(sk,nr);
				sk->llc.retry_count=0;
				llc_start_t1(sk);
			}
		}
		else
		{
			/*
			 *	Valid I frame cases
			 */
			 
			 if(sk->llc.p_flag==pf && !(type==CMD && pf))
			 {
			 	sk->llc.vr=(sk->llc.vr+1)&7;
			 	llc_queue_rr_cmd(sk, PF);
			 	sk->llc.retry_count=0;
			 	llc_start_t1(sk);
			 	sk->llc.p_flag=1;
			 	llc_ack_frames(sk,nr);
			 	sk->llc.remote_busy=0;
			 }
			 else if(sk->ppc.p_flag!=pf)
			 {
			 	sk->llc.vr=(sk->llc.vr+1)&7;
			 	if(type==CMD)
			 		llc_queue_rr_resp(sk, 0);
			 	else
			 		llc_queue_rr_cmd(sk, 0);
			 	if(sk->llc.nr!=nr)
			 	{
			 		llc_ack_frames(sk,nr);
			 		llc_reset_t1(sk);
			 	}
			 }
			 else if(pf)
			 {
			 	sk->llc.vr=(sk->llc.vr+1)&7;
			 	llc_queue_rr_resp(sk,PF);
			 	if(sk->llc.nr!=nr)
			 	{
					llc_ack_frames(sk,nr);
					llc_reset_t1(sk);
			 	}
			 }
			 llc_queue_data(sk,skb);
			 return 1;
		}
	}
	else if(cmd==RR||cmd==RNR)
	{
		if(type==CMD || (type==RESP && (!pf || pf==1 && sk->llc.p_flag==1)))
		{
			llc_update_p_flag(sk,pf);
			if(sk->llc.nr!=nr)
			{
				llc_ack_frames(sk,nr);
				llc_reset_t1(sk);
			}
			if(cmd==RR)
				sk->llc.remote_busy=0;
			else
			{	sk->llc.remote_busy=1;
					if(!llc_t1_running(sk))
					llc_start_t1(sk);
			}
		}
		else if(type==cmd && pf)
		{
			if(cmd==RR)
				llc_queue_rr_resp(sk,PF);
			else
			{
				send_response(sk, RR|PF);
				if(!llc_t1_running(sk))
					llc_start_t1(sk);
			}
			if(sk->llc.nr!=nr)
			{
				llc_ack_frames(sk,nr);
				llc_reset_t1(sk);
			}
			if(cmd==RR)
				sk->llc.remote_busy=0;
			else
				sk->llc.remote_busy=1;
		}
	}
	else if(cmd==REJ)
	{
		
	}
}