Blame view

net/ax25/ax25_out.c 8.64 KB
2874c5fd2   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
4
5
6
7
   *
   * Copyright (C) Alan Cox GW4PTS (alan@lxorguk.ukuu.org.uk)
   * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
   * Copyright (C) Joerg Reuter DL1BKE (jreuter@yaina.de)
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
9
10
11
12
  #include <linux/errno.h>
  #include <linux/types.h>
  #include <linux/socket.h>
  #include <linux/in.h>
  #include <linux/kernel.h>
70868eace   Ralf Baechle   [AX.25]: Move AX....
13
  #include <linux/module.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
16
17
18
  #include <linux/timer.h>
  #include <linux/string.h>
  #include <linux/sockios.h>
  #include <linux/spinlock.h>
  #include <linux/net.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
19
  #include <linux/slab.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
21
22
23
  #include <net/ax25.h>
  #include <linux/inet.h>
  #include <linux/netdevice.h>
  #include <linux/skbuff.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
  #include <net/sock.h>
7c0f6ba68   Linus Torvalds   Replace <asm/uacc...
25
  #include <linux/uaccess.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  #include <linux/fcntl.h>
  #include <linux/mm.h>
  #include <linux/interrupt.h>
  
  static DEFINE_SPINLOCK(ax25_frag_lock);
  
  ax25_cb *ax25_send_frame(struct sk_buff *skb, int paclen, ax25_address *src, ax25_address *dest, ax25_digi *digi, struct net_device *dev)
  {
  	ax25_dev *ax25_dev;
  	ax25_cb *ax25;
  
  	/*
  	 * Take the default packet length for the device if zero is
  	 * specified.
  	 */
  	if (paclen == 0) {
  		if ((ax25_dev = ax25_dev_ax25dev(dev)) == NULL)
  			return NULL;
  
  		paclen = ax25_dev->values[AX25_VALUES_PACLEN];
  	}
  
  	/*
  	 * Look for an existing connection.
  	 */
  	if ((ax25 = ax25_find_cb(src, dest, digi, dev)) != NULL) {
  		ax25_output(ax25, paclen, skb);
  		return ax25;		/* It already existed */
  	}
  
  	if ((ax25_dev = ax25_dev_ax25dev(dev)) == NULL)
  		return NULL;
  
  	if ((ax25 = ax25_create_cb()) == NULL)
  		return NULL;
  
  	ax25_fillin_cb(ax25, ax25_dev);
  
  	ax25->source_addr = *src;
  	ax25->dest_addr   = *dest;
  
  	if (digi != NULL) {
0459d70ad   Arnaldo Carvalho de Melo   [AX25]: Use kmemdup
68
69
  		ax25->digipeat = kmemdup(digi, sizeof(*digi), GFP_ATOMIC);
  		if (ax25->digipeat == NULL) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
70
71
72
  			ax25_cb_put(ax25);
  			return NULL;
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
  	}
  
  	switch (ax25->ax25_dev->values[AX25_VALUES_PROTOCOL]) {
  	case AX25_PROTO_STD_SIMPLEX:
  	case AX25_PROTO_STD_DUPLEX:
  		ax25_std_establish_data_link(ax25);
  		break;
  
  #ifdef CONFIG_AX25_DAMA_SLAVE
  	case AX25_PROTO_DAMA_SLAVE:
  		if (ax25_dev->dama.slave)
  			ax25_ds_establish_data_link(ax25);
  		else
  			ax25_std_establish_data_link(ax25);
  		break;
  #endif
  	}
d00c362f1   Jarek Poplawski   ax25: netrom: ros...
90
91
92
93
94
  	/*
  	 * There is one ref for the state machine; a caller needs
  	 * one more to put it back, just like with the existing one.
  	 */
  	ax25_cb_hold(ax25);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
95
96
97
98
99
100
101
102
103
104
  	ax25_cb_add(ax25);
  
  	ax25->state = AX25_STATE_1;
  
  	ax25_start_heartbeat(ax25);
  
  	ax25_output(ax25, paclen, skb);
  
  	return ax25;			/* We had to create it */
  }
70868eace   Ralf Baechle   [AX.25]: Move AX....
105
  EXPORT_SYMBOL(ax25_send_frame);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
106
107
108
109
110
111
112
113
114
115
116
  /*
   *	All outgoing AX.25 I frames pass via this routine. Therefore this is
   *	where the fragmentation of frames takes place. If fragment is set to
   *	zero then we are not allowed to do fragmentation, even if the frame
   *	is too large.
   */
  void ax25_output(ax25_cb *ax25, int paclen, struct sk_buff *skb)
  {
  	struct sk_buff *skbn;
  	unsigned char *p;
  	int frontlen, len, fragno, ka9qfrag, first = 1;
f47b7257c   Jarek Poplawski   [AX25] ax25_out: ...
117
118
119
120
121
  	if (paclen < 16) {
  		WARN_ON_ONCE(1);
  		kfree_skb(skb);
  		return;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  	if ((skb->len - 1) > paclen) {
  		if (*skb->data == AX25_P_TEXT) {
  			skb_pull(skb, 1); /* skip PID */
  			ka9qfrag = 0;
  		} else {
  			paclen -= 2;	/* Allow for fragment control info */
  			ka9qfrag = 1;
  		}
  
  		fragno = skb->len / paclen;
  		if (skb->len % paclen == 0) fragno--;
  
  		frontlen = skb_headroom(skb);	/* Address space + CTRL */
  
  		while (skb->len > 0) {
  			spin_lock_bh(&ax25_frag_lock);
  			if ((skbn = alloc_skb(paclen + 2 + frontlen, GFP_ATOMIC)) == NULL) {
  				spin_unlock_bh(&ax25_frag_lock);
  				printk(KERN_CRIT "AX.25: ax25_output - out of memory
  ");
  				return;
  			}
  
  			if (skb->sk != NULL)
  				skb_set_owner_w(skbn, skb->sk);
  
  			spin_unlock_bh(&ax25_frag_lock);
  
  			len = (paclen > skb->len) ? skb->len : paclen;
  
  			if (ka9qfrag == 1) {
  				skb_reserve(skbn, frontlen + 2);
c14d2450c   Arnaldo Carvalho de Melo   [SK_BUFF]: Introd...
154
155
  				skb_set_network_header(skbn,
  						      skb_network_offset(skb));
d626f62b1   Arnaldo Carvalho de Melo   [SK_BUFF]: Introd...
156
  				skb_copy_from_linear_data(skb, skb_put(skbn, len), len);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
157
158
159
160
161
162
163
164
165
166
167
  				p = skb_push(skbn, 2);
  
  				*p++ = AX25_P_SEGMENT;
  
  				*p = fragno--;
  				if (first) {
  					*p |= AX25_SEG_FIRST;
  					first = 0;
  				}
  			} else {
  				skb_reserve(skbn, frontlen + 1);
c14d2450c   Arnaldo Carvalho de Melo   [SK_BUFF]: Introd...
168
169
  				skb_set_network_header(skbn,
  						      skb_network_offset(skb));
d626f62b1   Arnaldo Carvalho de Melo   [SK_BUFF]: Introd...
170
  				skb_copy_from_linear_data(skb, skb_put(skbn, len), len);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  				p = skb_push(skbn, 1);
  				*p = AX25_P_TEXT;
  			}
  
  			skb_pull(skb, len);
  			skb_queue_tail(&ax25->write_queue, skbn); /* Throw it on the queue */
  		}
  
  		kfree_skb(skb);
  	} else {
  		skb_queue_tail(&ax25->write_queue, skb);	  /* Throw it on the queue */
  	}
  
  	switch (ax25->ax25_dev->values[AX25_VALUES_PROTOCOL]) {
  	case AX25_PROTO_STD_SIMPLEX:
  	case AX25_PROTO_STD_DUPLEX:
  		ax25_kick(ax25);
  		break;
  
  #ifdef CONFIG_AX25_DAMA_SLAVE
  	/*
  	 * A DAMA slave is _required_ to work as normal AX.25L2V2
  	 * if no DAMA master is available.
  	 */
  	case AX25_PROTO_DAMA_SLAVE:
  		if (!ax25->ax25_dev->dama.slave) ax25_kick(ax25);
  		break;
  #endif
  	}
  }
  
  /*
   *  This procedure is passed a buffer descriptor for an iframe. It builds
   *  the rest of the control part of the frame and then writes it out.
   */
  static void ax25_send_iframe(ax25_cb *ax25, struct sk_buff *skb, int poll_bit)
  {
  	unsigned char *frame;
  
  	if (skb == NULL)
  		return;
c1d2bbe1c   Arnaldo Carvalho de Melo   [SK_BUFF]: Introd...
212
  	skb_reset_network_header(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  
  	if (ax25->modulus == AX25_MODULUS) {
  		frame = skb_push(skb, 1);
  
  		*frame = AX25_I;
  		*frame |= (poll_bit) ? AX25_PF : 0;
  		*frame |= (ax25->vr << 5);
  		*frame |= (ax25->vs << 1);
  	} else {
  		frame = skb_push(skb, 2);
  
  		frame[0] = AX25_I;
  		frame[0] |= (ax25->vs << 1);
  		frame[1] = (poll_bit) ? AX25_EPF : 0;
  		frame[1] |= (ax25->vr << 1);
  	}
  
  	ax25_start_idletimer(ax25);
  
  	ax25_transmit_buffer(ax25, skb, AX25_COMMAND);
  }
  
  void ax25_kick(ax25_cb *ax25)
  {
  	struct sk_buff *skb, *skbn;
  	int last = 1;
  	unsigned short start, end, next;
  
  	if (ax25->state != AX25_STATE_3 && ax25->state != AX25_STATE_4)
  		return;
  
  	if (ax25->condition & AX25_COND_PEER_RX_BUSY)
  		return;
  
  	if (skb_peek(&ax25->write_queue) == NULL)
  		return;
  
  	start = (skb_peek(&ax25->ack_queue) == NULL) ? ax25->va : ax25->vs;
  	end   = (ax25->va + ax25->window) % ax25->modulus;
  
  	if (start == end)
  		return;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
255
256
257
258
259
260
261
262
  	/*
  	 * Transmit data until either we're out of data to send or
  	 * the window is full. Send a poll on the final I frame if
  	 * the window is filled.
  	 */
  
  	/*
  	 * Dequeue the frame and copy it.
f47b7257c   Jarek Poplawski   [AX25] ax25_out: ...
263
  	 * Check for race with ax25_clear_queues().
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
264
265
  	 */
  	skb  = skb_dequeue(&ax25->write_queue);
f47b7257c   Jarek Poplawski   [AX25] ax25_out: ...
266
267
268
269
  	if (!skb)
  		return;
  
  	ax25->vs = start;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  
  	do {
  		if ((skbn = skb_clone(skb, GFP_ATOMIC)) == NULL) {
  			skb_queue_head(&ax25->write_queue, skb);
  			break;
  		}
  
  		if (skb->sk != NULL)
  			skb_set_owner_w(skbn, skb->sk);
  
  		next = (ax25->vs + 1) % ax25->modulus;
  		last = (next == end);
  
  		/*
  		 * Transmit the frame copy.
  		 * bke 960114: do not set the Poll bit on the last frame
  		 * in DAMA mode.
  		 */
  		switch (ax25->ax25_dev->values[AX25_VALUES_PROTOCOL]) {
  		case AX25_PROTO_STD_SIMPLEX:
  		case AX25_PROTO_STD_DUPLEX:
  			ax25_send_iframe(ax25, skbn, (last) ? AX25_POLLON : AX25_POLLOFF);
  			break;
  
  #ifdef CONFIG_AX25_DAMA_SLAVE
  		case AX25_PROTO_DAMA_SLAVE:
  			ax25_send_iframe(ax25, skbn, AX25_POLLOFF);
  			break;
  #endif
  		}
  
  		ax25->vs = next;
  
  		/*
  		 * Requeue the original data frame.
  		 */
  		skb_queue_tail(&ax25->ack_queue, skb);
  
  	} while (!last && (skb = skb_dequeue(&ax25->write_queue)) != NULL);
  
  	ax25->condition &= ~AX25_COND_ACK_PENDING;
  
  	if (!ax25_t1timer_running(ax25)) {
  		ax25_stop_t3timer(ax25);
  		ax25_calculate_t1(ax25);
  		ax25_start_t1timer(ax25);
  	}
  }
  
  void ax25_transmit_buffer(ax25_cb *ax25, struct sk_buff *skb, int type)
  {
  	struct sk_buff *skbn;
  	unsigned char *ptr;
  	int headroom;
  
  	if (ax25->ax25_dev == NULL) {
  		ax25_disconnect(ax25, ENETUNREACH);
  		return;
  	}
  
  	headroom = ax25_addr_size(ax25->digipeat);
  
  	if (skb_headroom(skb) < headroom) {
  		if ((skbn = skb_realloc_headroom(skb, headroom)) == NULL) {
  			printk(KERN_CRIT "AX.25: ax25_transmit_buffer - out of memory
  ");
  			kfree_skb(skb);
  			return;
  		}
  
  		if (skb->sk != NULL)
  			skb_set_owner_w(skbn, skb->sk);
5d0ba55b6   Eric Dumazet   net: use consume_...
342
  		consume_skb(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
343
344
345
346
347
348
  		skb = skbn;
  	}
  
  	ptr = skb_push(skb, headroom);
  
  	ax25_addr_build(ptr, &ax25->source_addr, &ax25->dest_addr, ax25->digipeat, type, ax25->modulus);
29c4be51e   Arnaldo Carvalho de Melo   [AX25]: make ax25...
349
  	ax25_queue_xmit(skb, ax25->ax25_dev->dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
350
351
352
353
354
355
  }
  
  /*
   *	A small shim to dev_queue_xmit to add the KISS control byte, and do
   *	any packet forwarding in operation.
   */
29c4be51e   Arnaldo Carvalho de Melo   [AX25]: make ax25...
356
  void ax25_queue_xmit(struct sk_buff *skb, struct net_device *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
357
358
  {
  	unsigned char *ptr;
56cb51562   Arnaldo Carvalho de Melo   [AX25] Introduce ...
359
  	skb->protocol = ax25_type_trans(skb, ax25_fwd_dev(dev));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  
  	ptr  = skb_push(skb, 1);
  	*ptr = 0x00;			/* KISS */
  
  	dev_queue_xmit(skb);
  }
  
  int ax25_check_iframes_acked(ax25_cb *ax25, unsigned short nr)
  {
  	if (ax25->vs == nr) {
  		ax25_frames_acked(ax25, nr);
  		ax25_calculate_rtt(ax25);
  		ax25_stop_t1timer(ax25);
  		ax25_start_t3timer(ax25);
  		return 1;
  	} else {
  		if (ax25->va != nr) {
  			ax25_frames_acked(ax25, nr);
  			ax25_calculate_t1(ax25);
  			ax25_start_t1timer(ax25);
  			return 1;
  		}
  	}
  	return 0;
  }