Skip to content

Commit 4ecaf47

Browse files
committed
Issue 132 - Sometimes, when outgoing frames would exceeed the "window" size
(MAXFRAME or EMAXFRAME) they would get stuck in a queue and not be released later.
1 parent 38ab57a commit 4ecaf47

File tree

4 files changed

+47
-7
lines changed

4 files changed

+47
-7
lines changed

CHANGES.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11

22
# Revision History #
33

4+
## Version 1.5 -- Beta Test 3 -- July 2018 ##
5+
6+
### New Features: ###
7+
8+
- "**NOXID**" configuration file option to avoid sending XID command to listed station(s). If other end is a partial v2.2 implementation, which recognizes SABME, but not XID, we would waste a lot of time resending XID many times before giving up. This is less drastic than the "**V20**" option which doesn't even attempt to use v2.2 with listed station(s).
9+
10+
### Bugs Fixed: ###
11+
12+
- Issue 132 - Under certain conditions, outgoing connected mode data would get stuck in a queue and not be transmitted. This could happen if client application sends a burst of data larger than the "window" size (MAXFRAME or EMAXFRAME option).
13+
14+
### Notes: ###
15+
16+
Windows binary distribution now uses gcc (MinGW) version 6.3.0.
17+
18+
19+
420
## Version 1.5 -- Beta Test 2 -- February 2018 ##
521

622
### Bugs Fixed: ###

ax25_link.c

+30-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// This file is part of Dire Wolf, an amateur radio packet TNC.
33
//
4-
// Copyright (C) 2016, 2017 John Langner, WB2OSZ
4+
// Copyright (C) 2016, 2017, 2018 John Langner, WB2OSZ
55
//
66
// This program is free software: you can redistribute it and/or modify
77
// it under the terms of the GNU General Public License as published by
@@ -286,7 +286,7 @@ typedef struct ax25_dlsm_s {
286286
int k_maxframe; // Window size. Defaults to 4 (mod 8) or 32 (mod 128).
287287
// Maximum number of unacknowledged information
288288
// frames that can be outstanding.
289-
// "MAXFRAME" parameter in configuration file.
289+
// "MAXFRAME" or "EMAXFRAME" parameter in configuration file.
290290

291291
int rc; // Retry count. Give up after n2.
292292

@@ -418,7 +418,7 @@ typedef struct ax25_dlsm_s {
418418
// Counting outgoing could probably be done in lm_data_request so
419419
// it would not have to be scattered all over the place. TBD
420420

421-
int count_recv_frame_type[frame_not_AX25+1];
421+
int count_recv_frame_type[frame_not_AX25+1];
422422

423423
int peak_rc_value; // Peak value of retry count (rc).
424424

@@ -427,6 +427,9 @@ typedef struct ax25_dlsm_s {
427427

428428
cdata_t *i_frame_queue; // Connected data from client which has not been transmitted yet.
429429
// Linked list.
430+
// The name is misleading because these are just blocks of
431+
// data, not "I frames" at this point. The name comes from
432+
// the protocol specification.
430433

431434
cdata_t *txdata_by_ns[128]; // Data which has already been transmitted.
432435
// Indexed by N(S) in case it gets lost and needs to be sent again.
@@ -562,6 +565,13 @@ static int AX25MODULO(int n, int m, const char *file, const char *func, int line
562565
}
563566

564567

568+
// Test whether we can send more or if we need to wait
569+
// because we have reached 'maxframe' outstanding frames.
570+
// Argument must be 'S'.
571+
572+
#define WITHIN_WINDOW_SIZE(x) (x->vs != AX25MODULO(x->va + x->k_maxframe, x->modulo, __FILE__, __func__, __LINE__))
573+
574+
565575
// Timer macros to provide debug output with location from where they are called.
566576

567577
#define START_T1 start_t1(S, __func__, __LINE__)
@@ -1396,8 +1406,7 @@ static void data_request_good_size (ax25_dlsm_t *S, cdata_t *txdata)
13961406
case state_4_timer_recovery:
13971407

13981408
if ( ( ! S->peer_receiver_busy ) &&
1399-
S->vs != AX25MODULO(S->va + S->k_maxframe, S->modulo, __FILE__, __func__, __LINE__) ) {
1400-
1409+
WITHIN_WINDOW_SIZE(S) ) {
14011410
S->acknowledge_pending = 1;
14021411
lm_seize_request (S->chan);
14031412
}
@@ -2203,6 +2212,21 @@ void lm_data_indication (dlq_item_t *E)
22032212
break;
22042213
}
22052214

2215+
// An incoming frame might have ack'ed frames we sent or indicated peer is no longer busy.
2216+
// Rather than putting this test in many places, where those conditions, may have changed,
2217+
// we will try to catch them all on this single path.
2218+
// Start transmission if we now have some outgoing data ready to go.
2219+
// (Added in 1.5 beta 3 for issue 132.)
2220+
2221+
if ( S->i_frame_queue != NULL &&
2222+
(S->state == state_3_connected || S->state == state_4_timer_recovery) &&
2223+
( ! S->peer_receiver_busy ) &&
2224+
WITHIN_WINDOW_SIZE(S) ) {
2225+
2226+
//S->acknowledge_pending = 1;
2227+
lm_seize_request (S->chan);
2228+
}
2229+
22062230
} /* end lm_data_indication */
22072231

22082232

@@ -6201,7 +6225,7 @@ static void i_frame_pop_off_queue (ax25_dlsm_t *S)
62016225

62026226
while ( ( ! S->peer_receiver_busy ) &&
62036227
S->i_frame_queue != NULL &&
6204-
S->vs != AX25MODULO(S->va + S->k_maxframe, S->modulo, __FILE__, __func__, __LINE__) ) {
6228+
WITHIN_WINDOW_SIZE(S) ) {
62056229

62066230
cdata_t *txdata;
62076231

direwolf.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ int main (int argc, char *argv[])
262262

263263
text_color_init(t_opt);
264264
text_color_set(DW_COLOR_INFO);
265-
dw_printf ("Dire Wolf version %d.%d (%s) Beta Test 2\n", MAJOR_VERSION, MINOR_VERSION, __DATE__);
265+
dw_printf ("Dire Wolf version %d.%d (%s) Beta Test 3\n", MAJOR_VERSION, MINOR_VERSION, __DATE__);
266266
//dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "C", __DATE__);
267267
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
268268

doc/User-Guide.pdf

-519 KB
Binary file not shown.

0 commit comments

Comments
 (0)