2001-05-13 00:41:32 +08:00
|
|
|
/*
|
|
|
|
* libpri: An implementation of Primary Rate ISDN
|
|
|
|
*
|
2005-06-22 06:47:39 +08:00
|
|
|
* Written by Mark Spencer <markster@digium.com>
|
2001-05-13 00:41:32 +08:00
|
|
|
*
|
2008-08-06 06:18:12 +08:00
|
|
|
* Copyright (C) 2001-2005, Digium, Inc.
|
2001-05-13 00:41:32 +08:00
|
|
|
* All Rights Reserved.
|
2008-08-06 06:18:12 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* See http://www.asterisk.org for more information about
|
|
|
|
* the Asterisk project. Please do not directly contact
|
|
|
|
* any of the maintainers of this project for assistance;
|
|
|
|
* the project provides a web site, mailing lists and IRC
|
|
|
|
* channels for your use.
|
2001-05-13 00:41:32 +08:00
|
|
|
*
|
2008-08-06 06:18:12 +08:00
|
|
|
* This program is free software, distributed under the terms of
|
|
|
|
* the GNU General Public License Version 2 as published by the
|
|
|
|
* Free Software Foundation. See the LICENSE file included with
|
|
|
|
* this program for more details.
|
2001-05-13 00:41:32 +08:00
|
|
|
*
|
2008-08-06 06:18:12 +08:00
|
|
|
* In addition, when this program is distributed with Asterisk in
|
|
|
|
* any form that would qualify as a 'combined work' or as a
|
|
|
|
* 'derivative work' (but not mere aggregation), you can redistribute
|
|
|
|
* and/or modify the combination under the terms of the license
|
|
|
|
* provided with that copy of Asterisk, instead of the license
|
|
|
|
* terms granted here.
|
2001-05-13 00:41:32 +08:00
|
|
|
*/
|
2005-06-22 06:47:39 +08:00
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
2004-12-16 04:15:28 +08:00
|
|
|
#include "compat.h"
|
2001-05-13 00:41:32 +08:00
|
|
|
#include "libpri.h"
|
|
|
|
#include "pri_internal.h"
|
|
|
|
#include "pri_q921.h"
|
|
|
|
#include "pri_q931.h"
|
|
|
|
|
2001-11-30 02:09:09 +08:00
|
|
|
/*
|
|
|
|
* Define RANDOM_DROPS To randomly drop packets in order to simulate loss for testing
|
|
|
|
* retransmission functionality
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
#define RANDOM_DROPS
|
|
|
|
*/
|
|
|
|
|
2004-06-05 14:50:55 +08:00
|
|
|
#define Q921_INIT(pri, hf) do { \
|
2003-02-12 21:59:23 +08:00
|
|
|
memset(&(hf),0,sizeof(hf)); \
|
2004-06-05 14:50:55 +08:00
|
|
|
(hf).h.sapi = (pri)->sapi; \
|
2001-05-13 00:41:32 +08:00
|
|
|
(hf).h.ea1 = 0; \
|
|
|
|
(hf).h.ea2 = 1; \
|
2004-06-05 14:50:55 +08:00
|
|
|
(hf).h.tei = (pri)->tei; \
|
2001-05-13 00:41:32 +08:00
|
|
|
} while(0)
|
|
|
|
|
2003-09-25 14:13:14 +08:00
|
|
|
static void reschedule_t203(struct pri *pri);
|
2008-11-22 08:34:26 +08:00
|
|
|
static void reschedule_t200(struct pri *pri);
|
2008-05-08 03:51:44 +08:00
|
|
|
static void q921_restart(struct pri *pri, int now);
|
|
|
|
static void q921_tei_release_and_reacquire(struct pri *master);
|
2003-09-25 14:13:14 +08:00
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
static void q921_discard_retransmissions(struct pri *pri)
|
|
|
|
{
|
|
|
|
struct q921_frame *f, *p;
|
|
|
|
f = pri->txqueue;
|
|
|
|
while(f) {
|
|
|
|
p = f;
|
|
|
|
f = f->next;
|
|
|
|
/* Free frame */
|
|
|
|
free(p);
|
|
|
|
}
|
|
|
|
pri->txqueue = NULL;
|
|
|
|
}
|
|
|
|
|
2003-09-25 14:13:14 +08:00
|
|
|
static int q921_transmit(struct pri *pri, q921_h *h, int len)
|
|
|
|
{
|
2001-05-13 00:41:32 +08:00
|
|
|
int res;
|
2008-05-08 03:51:44 +08:00
|
|
|
|
2004-06-05 14:50:55 +08:00
|
|
|
if (pri->master)
|
2008-05-08 03:51:44 +08:00
|
|
|
pri = pri->master;
|
|
|
|
|
2001-11-30 02:09:09 +08:00
|
|
|
#ifdef RANDOM_DROPS
|
|
|
|
if (!(random() % 3)) {
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, " === Dropping Packet ===\n");
|
2001-11-30 02:09:09 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2004-03-15 13:53:25 +08:00
|
|
|
#ifdef LIBPRI_COUNTERS
|
|
|
|
pri->q921_txcount++;
|
|
|
|
#endif
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Just send it raw */
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & (PRI_DEBUG_Q921_DUMP | PRI_DEBUG_Q921_RAW))
|
2005-05-23 23:06:33 +08:00
|
|
|
q921_dump(pri, h, len, pri->debug & PRI_DEBUG_Q921_RAW, 1);
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Write an extra two bytes for the FCS */
|
2005-03-17 23:46:23 +08:00
|
|
|
res = pri->write_func ? pri->write_func(pri, h, len + 2) : 0;
|
2001-05-13 00:41:32 +08:00
|
|
|
if (res != (len + 2)) {
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "Short write: %d/%d (%s)\n", res, len + 2, strerror(errno));
|
2001-05-13 00:41:32 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-05-08 03:51:44 +08:00
|
|
|
static void q921_send_tei(struct pri *pri, int message, int ri, int ai, int iscommand)
|
|
|
|
{
|
|
|
|
q921_u *f;
|
|
|
|
|
|
|
|
if (!(f = calloc(1, sizeof(*f) + 5)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
Q921_INIT(pri, *f);
|
|
|
|
f->h.c_r = (pri->localtype == PRI_NETWORK) ? iscommand : !iscommand;
|
|
|
|
f->ft = Q921_FRAMETYPE_U;
|
|
|
|
f->data[0] = 0x0f; /* Management entity */
|
|
|
|
f->data[1] = (ri >> 8) & 0xff;
|
|
|
|
f->data[2] = ri & 0xff;
|
|
|
|
f->data[3] = message;
|
|
|
|
f->data[4] = (ai << 1) | 1;
|
|
|
|
if (pri->debug & PRI_DEBUG_Q921_STATE)
|
|
|
|
pri_message(pri, "Sending TEI management message %d, TEI=%d\n", message, ai);
|
|
|
|
q921_transmit(pri, (q921_h *)f, 8);
|
|
|
|
free(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void q921_tei_request(void *vpri)
|
|
|
|
{
|
|
|
|
struct pri *pri = (struct pri *)vpri;
|
|
|
|
|
|
|
|
if (pri->subchannel) {
|
|
|
|
pri_error(pri, "Cannot request TEI while its already assigned\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pri->n202_counter++;
|
|
|
|
#if 0
|
|
|
|
if (pri->n202_counter > pri->timers[PRI_TIMER_N202]) {
|
|
|
|
pri_error(pri, "Unable to assign TEI from network\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
pri->ri = random() % 65535;
|
|
|
|
q921_send_tei(pri, Q921_TEI_IDENTITY_REQUEST, pri->ri, Q921_TEI_GROUP, 1);
|
2009-09-03 04:04:03 +08:00
|
|
|
pri_schedule_del(pri, pri->t202_timer);
|
2008-05-08 03:51:44 +08:00
|
|
|
pri->t202_timer = pri_schedule_event(pri, pri->timers[PRI_TIMER_T202], q921_tei_request, pri);
|
|
|
|
}
|
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
static void q921_send_ua(struct pri *pri, int pfbit)
|
|
|
|
{
|
|
|
|
q921_h h;
|
2004-06-05 14:50:55 +08:00
|
|
|
Q921_INIT(pri, h);
|
2001-05-13 00:41:32 +08:00
|
|
|
h.u.m3 = 3; /* M3 = 3 */
|
|
|
|
h.u.m2 = 0; /* M2 = 0 */
|
|
|
|
h.u.p_f = pfbit; /* Final bit on */
|
|
|
|
h.u.ft = Q921_FRAMETYPE_U;
|
|
|
|
switch(pri->localtype) {
|
|
|
|
case PRI_NETWORK:
|
|
|
|
h.h.c_r = 0;
|
|
|
|
break;
|
|
|
|
case PRI_CPE:
|
|
|
|
h.h.c_r = 1;
|
|
|
|
break;
|
|
|
|
default:
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "Don't know how to U/A on a type %d node\n", pri->localtype);
|
2001-05-13 00:41:32 +08:00
|
|
|
return;
|
|
|
|
}
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & (PRI_DEBUG_Q921_STATE | PRI_DEBUG_Q921_DUMP))
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "Sending Unnumbered Acknowledgement\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
q921_transmit(pri, &h, 3);
|
|
|
|
}
|
|
|
|
|
2003-02-12 21:59:23 +08:00
|
|
|
static void q921_send_sabme_now(void *vpri);
|
|
|
|
|
|
|
|
static void q921_send_sabme(void *vpri, int now)
|
2001-05-13 00:41:32 +08:00
|
|
|
{
|
|
|
|
struct pri *pri = vpri;
|
|
|
|
q921_h h;
|
2009-09-03 04:04:03 +08:00
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
pri_schedule_del(pri, pri->sabme_timer);
|
2004-10-02 22:55:20 +08:00
|
|
|
pri->sabme_timer = pri_schedule_event(pri, pri->timers[PRI_TIMER_T200], q921_send_sabme_now, pri);
|
2003-02-12 21:59:23 +08:00
|
|
|
if (!now)
|
|
|
|
return;
|
2004-06-05 14:50:55 +08:00
|
|
|
Q921_INIT(pri, h);
|
2002-03-18 21:59:09 +08:00
|
|
|
h.u.m3 = 3; /* M3 = 3 */
|
|
|
|
h.u.m2 = 3; /* M2 = 3 */
|
2001-05-13 00:41:32 +08:00
|
|
|
h.u.p_f = 1; /* Poll bit set */
|
|
|
|
h.u.ft = Q921_FRAMETYPE_U;
|
|
|
|
switch(pri->localtype) {
|
|
|
|
case PRI_NETWORK:
|
|
|
|
h.h.c_r = 1;
|
|
|
|
break;
|
|
|
|
case PRI_CPE:
|
|
|
|
h.h.c_r = 0;
|
|
|
|
break;
|
|
|
|
default:
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "Don't know how to U/A on a type %d node\n", pri->localtype);
|
2001-05-13 00:41:32 +08:00
|
|
|
return;
|
|
|
|
}
|
2008-05-08 03:51:44 +08:00
|
|
|
if (pri->bri && (pri->state == Q921_AWAITING_ESTABLISH)) {
|
|
|
|
if (pri->sabme_count >= pri->timers[PRI_TIMER_N200]) {
|
|
|
|
pri_schedule_del(pri, pri->sabme_timer);
|
|
|
|
pri->sabme_timer = 0;
|
|
|
|
q921_tei_release_and_reacquire(pri->master);
|
|
|
|
} else {
|
|
|
|
pri->sabme_count++;
|
|
|
|
}
|
|
|
|
}
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & (PRI_DEBUG_Q921_STATE | PRI_DEBUG_Q921_DUMP))
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "Sending Set Asynchronous Balanced Mode Extended\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
q921_transmit(pri, &h, 3);
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_STATE && pri->q921_state != Q921_AWAITING_ESTABLISH)
|
|
|
|
pri_message(pri, DBGHEAD "q921_state now is Q921_AWAITING_ESTABLISH\n", DBGINFO);
|
2001-05-13 00:41:32 +08:00
|
|
|
pri->q921_state = Q921_AWAITING_ESTABLISH;
|
|
|
|
}
|
|
|
|
|
2003-02-12 21:59:23 +08:00
|
|
|
static void q921_send_sabme_now(void *vpri)
|
|
|
|
{
|
|
|
|
q921_send_sabme(vpri, 1);
|
|
|
|
}
|
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
static int q921_ack_packet(struct pri *pri, int num)
|
|
|
|
{
|
|
|
|
struct q921_frame *f, *prev = NULL;
|
|
|
|
f = pri->txqueue;
|
|
|
|
while(f) {
|
|
|
|
if (f->h.n_s == num) {
|
2003-02-12 21:59:23 +08:00
|
|
|
/* Cancel each packet as necessary */
|
2001-05-13 00:41:32 +08:00
|
|
|
/* That's our packet */
|
|
|
|
if (prev)
|
|
|
|
prev->next = f->next;
|
|
|
|
else
|
|
|
|
pri->txqueue = f->next;
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- ACKing packet %d, new txqueue is %d (-1 means empty)\n", f->h.n_s, pri->txqueue ? pri->txqueue->h.n_s : -1);
|
2003-02-12 21:59:23 +08:00
|
|
|
/* Update v_a */
|
|
|
|
pri->v_a = num;
|
2001-05-13 00:41:32 +08:00
|
|
|
free(f);
|
|
|
|
/* Reset retransmission counter if we actually acked something */
|
|
|
|
pri->retrans = 0;
|
2004-03-29 16:09:01 +08:00
|
|
|
/* Decrement window size */
|
|
|
|
pri->windowlen--;
|
2001-05-13 00:41:32 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2003-02-12 21:59:23 +08:00
|
|
|
prev = f;
|
2001-05-13 00:41:32 +08:00
|
|
|
f = f->next;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void t203_expire(void *);
|
|
|
|
static void t200_expire(void *);
|
2003-09-25 14:13:14 +08:00
|
|
|
|
2008-11-22 08:34:26 +08:00
|
|
|
static void reschedule_t200(struct pri *pri)
|
|
|
|
{
|
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
|
|
|
pri_message(pri, "-- Restarting T200 timer\n");
|
2009-09-03 04:04:03 +08:00
|
|
|
pri_schedule_del(pri, pri->t200_timer);
|
2008-11-22 08:34:26 +08:00
|
|
|
pri->t200_timer = pri_schedule_event(pri, pri->timers[PRI_TIMER_T200], t200_expire, pri);
|
|
|
|
}
|
|
|
|
|
2003-09-25 14:13:14 +08:00
|
|
|
static void reschedule_t203(struct pri *pri)
|
|
|
|
{
|
2008-11-22 08:34:26 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
|
|
|
pri_message(pri, "-- Restarting T203 timer\n");
|
2009-09-03 04:04:03 +08:00
|
|
|
pri_schedule_del(pri, pri->t203_timer);
|
2008-11-22 08:34:26 +08:00
|
|
|
pri->t203_timer = pri_schedule_event(pri, pri->timers[PRI_TIMER_T203], t203_expire, pri);
|
2003-09-25 14:13:14 +08:00
|
|
|
}
|
2001-05-13 00:41:32 +08:00
|
|
|
|
2009-01-23 05:48:41 +08:00
|
|
|
static void q921_send_queued_iframes(struct pri *pri)
|
|
|
|
{
|
|
|
|
struct q921_frame *f;
|
|
|
|
|
|
|
|
f = pri->txqueue;
|
|
|
|
while(f && (pri->windowlen < pri->window)) {
|
|
|
|
if (!f->transmitted) {
|
|
|
|
/* Send it now... */
|
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
|
|
|
pri_message(pri, "-- Finally transmitting %d, since window opened up (%d)\n", f->h.n_s, pri->windowlen);
|
|
|
|
f->transmitted++;
|
|
|
|
pri->windowlen++;
|
|
|
|
f->h.n_r = pri->v_r;
|
|
|
|
f->h.p_f = 0;
|
|
|
|
q921_transmit(pri, (q921_h *)(&f->h), f->len);
|
|
|
|
}
|
|
|
|
f = f->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-22 08:34:26 +08:00
|
|
|
static pri_event *q921_ack_rx(struct pri *pri, int ack, int send_untransmitted_frames)
|
2001-05-13 00:41:32 +08:00
|
|
|
{
|
|
|
|
int x;
|
|
|
|
int cnt=0;
|
2003-09-25 14:13:14 +08:00
|
|
|
pri_event *ev;
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Make sure the ACK was within our window */
|
|
|
|
for (x=pri->v_a; (x != pri->v_s) && (x != ack); Q921_INC(x));
|
|
|
|
if (x != ack) {
|
|
|
|
/* ACK was outside of our window --- ignore */
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "ACK received for '%d' outside of window of '%d' to '%d', restarting\n", ack, pri->v_a, pri->v_s);
|
2003-09-25 14:13:14 +08:00
|
|
|
ev = q921_dchannel_down(pri);
|
|
|
|
q921_start(pri, 1);
|
|
|
|
pri->schedev = 1;
|
|
|
|
return ev;
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
/* Cancel each packet as necessary */
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- ACKing all packets from %d to (but not including) %d\n", pri->v_a, ack);
|
2001-05-13 00:41:32 +08:00
|
|
|
for (x=pri->v_a; x != ack; Q921_INC(x))
|
|
|
|
cnt += q921_ack_packet(pri, x);
|
2001-11-30 02:09:09 +08:00
|
|
|
if (!pri->txqueue) {
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- Since there was nothing left, stopping T200 counter\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Something was ACK'd. Stop T200 counter */
|
2009-09-03 04:04:03 +08:00
|
|
|
pri_schedule_del(pri, pri->t200_timer);
|
|
|
|
pri->t200_timer = 0;
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
if (pri->t203_timer) {
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- Stopping T203 counter since we got an ACK\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
pri_schedule_del(pri, pri->t203_timer);
|
|
|
|
pri->t203_timer = 0;
|
|
|
|
}
|
|
|
|
if (pri->txqueue) {
|
|
|
|
/* Something left to transmit, Start the T200 counter again if we stopped it */
|
2008-11-22 08:34:26 +08:00
|
|
|
if (!pri->busy && send_untransmitted_frames) {
|
|
|
|
pri->retrans = 0;
|
|
|
|
/* Search for something to send */
|
2009-01-23 05:48:41 +08:00
|
|
|
q921_send_queued_iframes(pri);
|
2008-11-22 08:34:26 +08:00
|
|
|
}
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2008-11-22 08:34:26 +08:00
|
|
|
pri_message(pri, "-- Waiting for acknowledge, restarting T200 counter\n");
|
|
|
|
reschedule_t200(pri);
|
2001-05-13 00:41:32 +08:00
|
|
|
} else {
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- Nothing left, starting T203 counter\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Nothing to transmit, start the T203 counter instead */
|
2004-10-02 22:55:20 +08:00
|
|
|
pri->t203_timer = pri_schedule_event(pri, pri->timers[PRI_TIMER_T203], t203_expire, pri);
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
2003-09-25 14:13:14 +08:00
|
|
|
return NULL;
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
|
2003-09-25 14:13:14 +08:00
|
|
|
static void q921_reject(struct pri *pri, int pf)
|
2002-03-18 21:59:09 +08:00
|
|
|
{
|
|
|
|
q921_h h;
|
2004-06-05 14:50:55 +08:00
|
|
|
Q921_INIT(pri, h);
|
2002-03-18 21:59:09 +08:00
|
|
|
h.s.x0 = 0; /* Always 0 */
|
|
|
|
h.s.ss = 2; /* Reject */
|
|
|
|
h.s.ft = 1; /* Frametype (01) */
|
|
|
|
h.s.n_r = pri->v_r; /* Where to start retransmission */
|
2003-09-25 14:13:14 +08:00
|
|
|
h.s.p_f = pf;
|
2002-03-18 21:59:09 +08:00
|
|
|
switch(pri->localtype) {
|
|
|
|
case PRI_NETWORK:
|
|
|
|
h.h.c_r = 0;
|
|
|
|
break;
|
|
|
|
case PRI_CPE:
|
|
|
|
h.h.c_r = 1;
|
|
|
|
break;
|
|
|
|
default:
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "Don't know how to U/A on a type %d node\n", pri->localtype);
|
2002-03-18 21:59:09 +08:00
|
|
|
return;
|
|
|
|
}
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "Sending Reject (%d)\n", pri->v_r);
|
2003-09-25 14:13:14 +08:00
|
|
|
pri->sentrej = 1;
|
2002-03-18 21:59:09 +08:00
|
|
|
q921_transmit(pri, &h, 4);
|
|
|
|
}
|
|
|
|
|
2003-09-25 14:13:14 +08:00
|
|
|
static void q921_rr(struct pri *pri, int pbit, int cmd) {
|
2001-05-13 00:41:32 +08:00
|
|
|
q921_h h;
|
2004-06-05 14:50:55 +08:00
|
|
|
Q921_INIT(pri, h);
|
2001-05-13 00:41:32 +08:00
|
|
|
h.s.x0 = 0; /* Always 0 */
|
|
|
|
h.s.ss = 0; /* Receive Ready */
|
|
|
|
h.s.ft = 1; /* Frametype (01) */
|
|
|
|
h.s.n_r = pri->v_r; /* N/R */
|
|
|
|
h.s.p_f = pbit; /* Poll/Final set appropriately */
|
|
|
|
switch(pri->localtype) {
|
|
|
|
case PRI_NETWORK:
|
2003-09-25 14:13:14 +08:00
|
|
|
if (cmd)
|
|
|
|
h.h.c_r = 1;
|
|
|
|
else
|
|
|
|
h.h.c_r = 0;
|
2001-05-13 00:41:32 +08:00
|
|
|
break;
|
|
|
|
case PRI_CPE:
|
2003-09-25 14:13:14 +08:00
|
|
|
if (cmd)
|
|
|
|
h.h.c_r = 0;
|
|
|
|
else
|
|
|
|
h.h.c_r = 1;
|
2001-05-13 00:41:32 +08:00
|
|
|
break;
|
|
|
|
default:
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "Don't know how to U/A on a type %d node\n", pri->localtype);
|
2001-05-13 00:41:32 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
pri->v_na = pri->v_r; /* Make a note that we've already acked this */
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "Sending Receiver Ready (%d)\n", pri->v_r);
|
2001-05-13 00:41:32 +08:00
|
|
|
q921_transmit(pri, &h, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void t200_expire(void *vpri)
|
|
|
|
{
|
|
|
|
struct pri *pri = vpri;
|
2008-11-22 08:34:26 +08:00
|
|
|
q921_frame *f, *lastframe=NULL;
|
2008-04-16 08:21:01 +08:00
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
if (pri->txqueue) {
|
|
|
|
/* Retransmit first packet in the queue, setting the poll bit */
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- T200 counter expired, What to do...\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
pri->solicitfbit = 1;
|
2008-04-16 08:21:01 +08:00
|
|
|
/* Up to three retransmissions */
|
|
|
|
if (pri->retrans < pri->timers[PRI_TIMER_N200]) {
|
2008-11-22 08:34:26 +08:00
|
|
|
pri->retrans++;
|
2008-04-16 08:21:01 +08:00
|
|
|
/* Reschedule t200_timer */
|
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
|
|
|
pri_message(pri, "-- Retransmitting %d bytes\n", pri->txqueue->len);
|
|
|
|
if (pri->busy)
|
|
|
|
q921_rr(pri, 1, 1);
|
|
|
|
else {
|
|
|
|
if (!pri->txqueue->transmitted)
|
|
|
|
pri_error(pri, "!! Not good - head of queue has not been transmitted yet\n");
|
2008-11-22 08:34:26 +08:00
|
|
|
/*Actually we need to retransmit the last transmitted packet, setting the poll bit */
|
|
|
|
for (f=pri->txqueue; f; f = f->next) {
|
|
|
|
if (f->transmitted)
|
|
|
|
lastframe = f;
|
|
|
|
}
|
|
|
|
if (lastframe) {
|
|
|
|
/* Force Poll bit */
|
|
|
|
lastframe->h.p_f = 1;
|
|
|
|
/* Update nr */
|
|
|
|
lastframe->h.n_r = pri->v_r;
|
|
|
|
pri->v_na = pri->v_r;
|
|
|
|
q921_transmit(pri, (q921_h *)&lastframe->h, lastframe->len);
|
|
|
|
}
|
2008-04-16 08:21:01 +08:00
|
|
|
}
|
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2008-05-08 03:51:44 +08:00
|
|
|
pri_message(pri, "-- Rescheduling retransmission (%d)\n", pri->retrans);
|
2008-04-16 08:21:01 +08:00
|
|
|
pri->t200_timer = pri_schedule_event(pri, pri->timers[PRI_TIMER_T200], t200_expire, pri);
|
|
|
|
} else {
|
|
|
|
if (pri->debug & PRI_DEBUG_Q921_STATE)
|
2008-05-08 03:51:44 +08:00
|
|
|
pri_message(pri, "-- Timeout occured, restarting PRI\n");
|
2008-04-16 08:21:01 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_STATE && pri->q921_state != Q921_LINK_CONNECTION_RELEASED)
|
2008-05-08 03:51:44 +08:00
|
|
|
pri_message(pri, DBGHEAD "q921_state now is Q921_LINK_CONNECTION_RELEASED\n",DBGINFO);
|
2008-04-16 08:21:01 +08:00
|
|
|
pri->q921_state = Q921_LINK_CONNECTION_RELEASED;
|
2008-05-08 03:51:44 +08:00
|
|
|
pri->t200_timer = 0;
|
2009-01-10 01:58:28 +08:00
|
|
|
if (pri->bri && pri->master) {
|
|
|
|
q921_tei_release_and_reacquire(pri->master);
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
q921_dchannel_down(pri);
|
|
|
|
q921_start(pri, 1);
|
|
|
|
pri->schedev = 1;
|
|
|
|
}
|
2004-03-29 16:09:01 +08:00
|
|
|
}
|
2004-06-07 23:55:39 +08:00
|
|
|
} else if (pri->solicitfbit) {
|
2008-04-16 08:21:01 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
|
|
|
pri_message(pri, "-- Retrying poll with f-bit\n");
|
2004-10-02 22:55:20 +08:00
|
|
|
if (pri->retrans < pri->timers[PRI_TIMER_N200]) {
|
2008-11-22 08:34:26 +08:00
|
|
|
pri->retrans++;
|
2004-06-07 23:55:39 +08:00
|
|
|
pri->solicitfbit = 1;
|
|
|
|
q921_rr(pri, 1, 1);
|
2004-10-02 22:55:20 +08:00
|
|
|
pri->t200_timer = pri_schedule_event(pri, pri->timers[PRI_TIMER_T200], t200_expire, pri);
|
2004-06-07 23:55:39 +08:00
|
|
|
} else {
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_STATE)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- Timeout occured, restarting PRI\n");
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_STATE && pri->q921_state != Q921_LINK_CONNECTION_RELEASED)
|
|
|
|
pri_message(pri, DBGHEAD "q921_state now is Q921_LINK_CONNECTION_RELEASED\n", DBGINFO);
|
2004-06-08 01:00:29 +08:00
|
|
|
pri->q921_state = Q921_LINK_CONNECTION_RELEASED;
|
|
|
|
pri->t200_timer = 0;
|
2008-05-08 03:51:44 +08:00
|
|
|
if (pri->bri && pri->master) {
|
|
|
|
q921_tei_release_and_reacquire(pri->master);
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
q921_dchannel_down(pri);
|
|
|
|
q921_start(pri, 1);
|
|
|
|
pri->schedev = 1;
|
|
|
|
}
|
2004-06-07 23:55:39 +08:00
|
|
|
}
|
2001-05-13 00:41:32 +08:00
|
|
|
} else {
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "T200 counter expired, nothing to send...\n");
|
2004-06-07 23:55:39 +08:00
|
|
|
pri->t200_timer = 0;
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int q921_transmit_iframe(struct pri *pri, void *buf, int len, int cr)
|
|
|
|
{
|
|
|
|
q921_frame *f, *prev=NULL;
|
2008-05-08 03:51:44 +08:00
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
for (f=pri->txqueue; f; f = f->next) prev = f;
|
2008-05-08 03:51:44 +08:00
|
|
|
f = calloc(1, sizeof(q921_frame) + len + 2);
|
2001-05-13 00:41:32 +08:00
|
|
|
if (f) {
|
2004-06-05 14:50:55 +08:00
|
|
|
Q921_INIT(pri, f->h);
|
2001-05-13 00:41:32 +08:00
|
|
|
switch(pri->localtype) {
|
|
|
|
case PRI_NETWORK:
|
|
|
|
if (cr)
|
|
|
|
f->h.h.c_r = 1;
|
|
|
|
else
|
|
|
|
f->h.h.c_r = 0;
|
|
|
|
break;
|
|
|
|
case PRI_CPE:
|
|
|
|
if (cr)
|
|
|
|
f->h.h.c_r = 0;
|
|
|
|
else
|
|
|
|
f->h.h.c_r = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
f->next = NULL;
|
2004-03-29 16:09:01 +08:00
|
|
|
f->transmitted = 0;
|
2001-05-13 00:41:32 +08:00
|
|
|
f->len = len + 4;
|
|
|
|
memcpy(f->h.data, buf, len);
|
|
|
|
f->h.n_s = pri->v_s;
|
|
|
|
f->h.n_r = pri->v_r;
|
|
|
|
pri->v_s++;
|
|
|
|
pri->v_na = pri->v_r;
|
|
|
|
f->h.p_f = 0;
|
|
|
|
f->h.ft = 0;
|
|
|
|
if (prev)
|
|
|
|
prev->next = f;
|
|
|
|
else
|
|
|
|
pri->txqueue = f;
|
2004-03-29 16:09:01 +08:00
|
|
|
/* Immediately transmit unless we're in a recovery state, or the window
|
|
|
|
size is too big */
|
2009-01-28 07:22:06 +08:00
|
|
|
if ((pri->q921_state == Q921_LINK_CONNECTION_ESTABLISHED) && (!pri->retrans && !pri->busy)) {
|
2004-03-29 16:09:01 +08:00
|
|
|
if (pri->windowlen < pri->window) {
|
There are two changes in this commit that are bug fixes for various Q.921 issues found in internal testing.
Both were exposed/introduced by the TBR4 compliance patch for bug #12861, in changing how retransmissions and in how
the transmission queue was maintained. TX-RX message flow and acknowledgement was severely restricted,
since the patch changed the behavior so that pending untransmitted frames would not actually be send until
the next RR was received in normal circumstances, or REJ when a reject frame was received. On busy links,
this can severly limit the amount of useful traffic that is sent, and can slow down message transmission.
Until someone can point out where in Q.921 it is mandated for us to wait for RR frames to start sending
untransmitted messages, the first change is to allow us to send untransmitted frames when we receive new
I frames as well, with updated N(R).
The other bug fixed is a situation caused by the restricted traffic flow, if an outside process tries to send
an I-frame asynchronous to an RR frame, when the transmit window was previously closed and then opened up but
an RR has not been received yet. A bug was found with the integration of the old transmit code with the new reject
handling code which caused the new frame to be sent immediately, regardless if there were any pending untransmitted
I-frames in the queue to be sent and causing an out of order I-frame to be sent to the other side. This bug is
also fixed in this patch.
git-svn-id: https://origsvn.digium.com/svn/libpri/branches/1.4@859 2fbb986a-6c06-0410-b554-c9c1f0a7f128
2009-06-10 03:47:05 +08:00
|
|
|
q921_send_queued_iframes(pri);
|
2004-03-29 16:09:01 +08:00
|
|
|
} else {
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "Delaying transmission of %d, window is %d/%d long\n",
|
2004-03-29 16:09:01 +08:00
|
|
|
f->h.n_s, pri->windowlen, pri->window);
|
|
|
|
}
|
2003-09-25 14:13:14 +08:00
|
|
|
}
|
2001-05-13 00:41:32 +08:00
|
|
|
if (pri->t203_timer) {
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "Stopping T_203 timer\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
pri_schedule_del(pri, pri->t203_timer);
|
|
|
|
pri->t203_timer = 0;
|
|
|
|
}
|
2009-01-28 07:22:06 +08:00
|
|
|
|
2009-01-23 05:48:41 +08:00
|
|
|
/* Check this so that we don't try to send frames while multi frame mode is down */
|
2009-01-28 07:22:06 +08:00
|
|
|
if (pri->q921_state == Q921_LINK_CONNECTION_ESTABLISHED) {
|
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
|
|
|
pri_message(pri, "Starting T_200 timer\n");
|
|
|
|
|
2009-01-23 05:48:41 +08:00
|
|
|
reschedule_t200(pri);
|
2009-01-28 07:22:06 +08:00
|
|
|
}
|
2001-05-13 00:41:32 +08:00
|
|
|
} else {
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "!! Out of memory for Q.921 transmit\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void t203_expire(void *vpri)
|
|
|
|
{
|
|
|
|
struct pri *pri = vpri;
|
2003-09-25 14:13:14 +08:00
|
|
|
if (pri->q921_state == Q921_LINK_CONNECTION_ESTABLISHED) {
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "T203 counter expired, sending RR and scheduling T203 again\n");
|
2003-09-25 14:13:14 +08:00
|
|
|
/* Solicit an F-bit in the other's RR */
|
|
|
|
pri->solicitfbit = 1;
|
2004-06-07 23:55:39 +08:00
|
|
|
pri->retrans = 0;
|
2003-09-25 14:13:14 +08:00
|
|
|
q921_rr(pri, 1, 1);
|
2004-06-07 23:55:39 +08:00
|
|
|
/* Start timer T200 to resend our RR if we don't get it */
|
2004-10-02 22:55:20 +08:00
|
|
|
pri->t203_timer = pri_schedule_event(pri, pri->timers[PRI_TIMER_T200], t200_expire, pri);
|
2003-09-25 14:13:14 +08:00
|
|
|
} else {
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "T203 counter expired in weird state %d\n", pri->q921_state);
|
2003-09-25 14:13:14 +08:00
|
|
|
pri->t203_timer = 0;
|
|
|
|
}
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
static pri_event *q921_handle_iframe(struct pri *pri, q921_i *i, int len)
|
|
|
|
{
|
|
|
|
int res;
|
2003-09-25 14:13:14 +08:00
|
|
|
pri_event *ev;
|
2008-11-22 08:34:26 +08:00
|
|
|
|
|
|
|
pri->solicitfbit = 0;
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Make sure this is a valid packet */
|
|
|
|
if (i->n_s == pri->v_r) {
|
|
|
|
/* Increment next expected I-frame */
|
|
|
|
Q921_INC(pri->v_r);
|
|
|
|
/* Handle their ACK */
|
2003-09-25 14:13:14 +08:00
|
|
|
pri->sentrej = 0;
|
There are two changes in this commit that are bug fixes for various Q.921 issues found in internal testing.
Both were exposed/introduced by the TBR4 compliance patch for bug #12861, in changing how retransmissions and in how
the transmission queue was maintained. TX-RX message flow and acknowledgement was severely restricted,
since the patch changed the behavior so that pending untransmitted frames would not actually be send until
the next RR was received in normal circumstances, or REJ when a reject frame was received. On busy links,
this can severly limit the amount of useful traffic that is sent, and can slow down message transmission.
Until someone can point out where in Q.921 it is mandated for us to wait for RR frames to start sending
untransmitted messages, the first change is to allow us to send untransmitted frames when we receive new
I frames as well, with updated N(R).
The other bug fixed is a situation caused by the restricted traffic flow, if an outside process tries to send
an I-frame asynchronous to an RR frame, when the transmit window was previously closed and then opened up but
an RR has not been received yet. A bug was found with the integration of the old transmit code with the new reject
handling code which caused the new frame to be sent immediately, regardless if there were any pending untransmitted
I-frames in the queue to be sent and causing an out of order I-frame to be sent to the other side. This bug is
also fixed in this patch.
git-svn-id: https://origsvn.digium.com/svn/libpri/branches/1.4@859 2fbb986a-6c06-0410-b554-c9c1f0a7f128
2009-06-10 03:47:05 +08:00
|
|
|
ev = q921_ack_rx(pri, i->n_r, 1);
|
2003-09-25 14:13:14 +08:00
|
|
|
if (ev)
|
|
|
|
return ev;
|
2001-05-13 00:41:32 +08:00
|
|
|
if (i->p_f) {
|
|
|
|
/* If the Poll/Final bit is set, immediate send the RR */
|
2003-09-25 14:13:14 +08:00
|
|
|
q921_rr(pri, 1, 0);
|
2008-11-22 08:34:26 +08:00
|
|
|
} else if (pri->busy || pri->retrans) {
|
|
|
|
q921_rr(pri, 0, 0);
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
/* Receive Q.931 data */
|
|
|
|
res = q931_receive(pri, (q931_h *)i->data, len - 4);
|
|
|
|
/* Send an RR if one wasn't sent already */
|
|
|
|
if (pri->v_na != pri->v_r)
|
2003-09-25 14:13:14 +08:00
|
|
|
q921_rr(pri, 0, 0);
|
2001-05-13 00:41:32 +08:00
|
|
|
if (res == -1) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (res & Q931_RES_HAVEEVENT)
|
|
|
|
return &pri->ev;
|
|
|
|
} else {
|
2003-09-25 14:13:14 +08:00
|
|
|
/* If we haven't already sent a reject, send it now, otherwise
|
|
|
|
we are obliged to RR */
|
|
|
|
if (!pri->sentrej)
|
|
|
|
q921_reject(pri, i->p_f);
|
|
|
|
else if (i->p_f)
|
|
|
|
q921_rr(pri, 1, 0);
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-05-23 23:06:33 +08:00
|
|
|
void q921_dump(struct pri *pri, q921_h *h, int len, int showraw, int txrx)
|
2001-05-13 00:41:32 +08:00
|
|
|
{
|
|
|
|
int x;
|
2002-03-18 21:59:09 +08:00
|
|
|
char *type;
|
|
|
|
char direction_tag;
|
|
|
|
|
|
|
|
direction_tag = txrx ? '>' : '<';
|
2001-05-13 00:41:32 +08:00
|
|
|
if (showraw) {
|
2004-04-05 16:22:14 +08:00
|
|
|
char *buf = malloc(len * 3 + 1);
|
|
|
|
int buflen = 0;
|
|
|
|
if (buf) {
|
2009-09-15 06:32:40 +08:00
|
|
|
pri_message(pri, "\n");
|
2004-04-05 16:22:14 +08:00
|
|
|
for (x=0;x<len;x++)
|
|
|
|
buflen += sprintf(buf + buflen, "%02x ", h->raw[x]);
|
2009-09-15 06:32:40 +08:00
|
|
|
pri_message(pri, "%c [ %s]\n", direction_tag, buf);
|
2004-04-05 16:22:14 +08:00
|
|
|
free(buf);
|
|
|
|
}
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
2001-05-21 21:39:30 +08:00
|
|
|
|
2009-09-15 06:32:40 +08:00
|
|
|
pri_message(pri, "\n");
|
2002-03-18 21:59:09 +08:00
|
|
|
switch (h->h.data[0] & Q921_FRAMETYPE_MASK) {
|
2001-05-13 00:41:32 +08:00
|
|
|
case 0:
|
|
|
|
case 2:
|
2009-09-15 06:32:40 +08:00
|
|
|
pri_message(pri, "%c Informational frame:\n", direction_tag);
|
2001-05-13 00:41:32 +08:00
|
|
|
break;
|
|
|
|
case 1:
|
2009-09-15 06:32:40 +08:00
|
|
|
pri_message(pri, "%c Supervisory frame:\n", direction_tag);
|
2001-05-13 00:41:32 +08:00
|
|
|
break;
|
|
|
|
case 3:
|
2009-09-15 06:32:40 +08:00
|
|
|
pri_message(pri, "%c Unnumbered frame:\n", direction_tag);
|
2001-05-13 00:41:32 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-09-15 06:32:40 +08:00
|
|
|
pri_message(pri, "%c SAPI: %02d C/R: %d EA: %d\n",
|
2002-03-18 21:59:09 +08:00
|
|
|
direction_tag,
|
2001-05-13 00:41:32 +08:00
|
|
|
h->h.sapi,
|
|
|
|
h->h.c_r,
|
2009-09-15 06:32:40 +08:00
|
|
|
h->h.ea1);
|
|
|
|
pri_message(pri, "%c TEI: %03d EA: %d\n",
|
2002-03-18 21:59:09 +08:00
|
|
|
direction_tag,
|
2001-05-13 00:41:32 +08:00
|
|
|
h->h.tei,
|
|
|
|
h->h.ea2);
|
2008-12-24 05:38:25 +08:00
|
|
|
|
2002-03-18 21:59:09 +08:00
|
|
|
switch (h->h.data[0] & Q921_FRAMETYPE_MASK) {
|
2001-05-13 00:41:32 +08:00
|
|
|
case 0:
|
|
|
|
case 2:
|
|
|
|
/* Informational frame */
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri,
|
2009-09-15 06:32:40 +08:00
|
|
|
"%c N(S): %03d 0: %d\n",
|
2002-03-18 21:59:09 +08:00
|
|
|
direction_tag,
|
2001-05-13 00:41:32 +08:00
|
|
|
h->i.n_s,
|
2009-09-15 06:32:40 +08:00
|
|
|
h->i.ft);
|
|
|
|
pri_message(pri,
|
|
|
|
"%c N(R): %03d P: %d\n",
|
2002-03-18 21:59:09 +08:00
|
|
|
direction_tag,
|
2001-05-13 00:41:32 +08:00
|
|
|
h->i.n_r,
|
2009-09-15 06:32:40 +08:00
|
|
|
h->i.p_f);
|
|
|
|
pri_message(pri,
|
|
|
|
"%c %d bytes of data\n",
|
2002-03-18 21:59:09 +08:00
|
|
|
direction_tag,
|
2001-05-13 00:41:32 +08:00
|
|
|
len - 4);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
/* Supervisory frame */
|
2002-03-18 21:59:09 +08:00
|
|
|
type = "???";
|
|
|
|
switch (h->s.ss) {
|
|
|
|
case 0:
|
|
|
|
type = "RR (receive ready)";
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
type = "RNR (receive not ready)";
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
type = "REJ (reject)";
|
|
|
|
break;
|
|
|
|
}
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri,
|
2009-09-15 06:32:40 +08:00
|
|
|
"%c Zero: %d S: %d 01: %d [ %s ]\n",
|
2002-03-18 21:59:09 +08:00
|
|
|
direction_tag,
|
2001-05-13 00:41:32 +08:00
|
|
|
h->s.x0,
|
|
|
|
h->s.ss,
|
|
|
|
h->s.ft,
|
2009-09-15 06:32:40 +08:00
|
|
|
type);
|
|
|
|
pri_message(pri,
|
|
|
|
"%c N(R): %03d P/F: %d\n",
|
2002-03-18 21:59:09 +08:00
|
|
|
direction_tag,
|
2001-05-13 00:41:32 +08:00
|
|
|
h->s.n_r,
|
2009-09-15 06:32:40 +08:00
|
|
|
h->s.p_f);
|
|
|
|
pri_message(pri,
|
|
|
|
"%c %d bytes of data\n",
|
2002-03-18 21:59:09 +08:00
|
|
|
direction_tag,
|
2001-05-13 00:41:32 +08:00
|
|
|
len - 4);
|
|
|
|
break;
|
2002-03-18 21:59:09 +08:00
|
|
|
case 3:
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Unnumbered frame */
|
2002-03-18 21:59:09 +08:00
|
|
|
type = "???";
|
|
|
|
if (h->u.ft == 3) {
|
|
|
|
switch (h->u.m3) {
|
|
|
|
case 0:
|
|
|
|
if (h->u.m2 == 3)
|
|
|
|
type = "DM (disconnect mode)";
|
|
|
|
else if (h->u.m2 == 0)
|
|
|
|
type = "UI (unnumbered information)";
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (h->u.m2 == 0)
|
|
|
|
type = "DISC (disconnect)";
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
if (h->u.m2 == 3)
|
|
|
|
type = "SABME (set asynchronous balanced mode extended)";
|
|
|
|
else if (h->u.m2 == 0)
|
|
|
|
type = "UA (unnumbered acknowledgement)";
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
if (h->u.m2 == 1)
|
|
|
|
type = "FRMR (frame reject)";
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
if (h->u.m2 == 3)
|
|
|
|
type = "XID (exchange identification note)";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri,
|
2009-09-15 06:32:40 +08:00
|
|
|
"%c M3: %d P/F: %d M2: %d 11: %d [ %s ]\n",
|
2002-03-18 21:59:09 +08:00
|
|
|
direction_tag,
|
2001-05-13 00:41:32 +08:00
|
|
|
h->u.m3,
|
|
|
|
h->u.p_f,
|
|
|
|
h->u.m2,
|
|
|
|
h->u.ft,
|
2009-09-15 06:32:40 +08:00
|
|
|
type);
|
|
|
|
pri_message(pri,
|
|
|
|
"%c %d bytes of data\n",
|
2002-03-18 21:59:09 +08:00
|
|
|
direction_tag,
|
2001-05-13 00:41:32 +08:00
|
|
|
len - 3);
|
|
|
|
break;
|
|
|
|
};
|
2008-12-24 05:38:25 +08:00
|
|
|
|
|
|
|
if ((h->u.ft == 3) && (h->u.m3 == 0) && (h->u.m2 == 0) && (h->u.data[0] == 0x0f)) {
|
|
|
|
int ri;
|
|
|
|
int tei;
|
|
|
|
|
|
|
|
ri = (h->u.data[1] << 8) | h->u.data[2];
|
|
|
|
tei = (h->u.data[4] >> 1);
|
|
|
|
/* TEI assignment related */
|
|
|
|
switch (h->u.data[3]) {
|
|
|
|
case Q921_TEI_IDENTITY_REQUEST:
|
|
|
|
type = "TEI Identity Request";
|
|
|
|
break;
|
|
|
|
case Q921_TEI_IDENTITY_ASSIGNED:
|
|
|
|
type = "TEI Identity Assigned";
|
|
|
|
break;
|
|
|
|
case Q921_TEI_IDENTITY_CHECK_REQUEST:
|
|
|
|
type = "TEI Identity Check Request";
|
|
|
|
break;
|
|
|
|
case Q921_TEI_IDENTITY_REMOVE:
|
|
|
|
type = "TEI Identity Remove";
|
|
|
|
break;
|
|
|
|
case Q921_TEI_IDENTITY_DENIED:
|
|
|
|
type = "TEI Identity Denied";
|
|
|
|
break;
|
|
|
|
case Q921_TEI_IDENTITY_CHECK_RESPONSE:
|
|
|
|
type = "TEI Identity Check Response";
|
|
|
|
break;
|
|
|
|
case Q921_TEI_IDENTITY_VERIFY:
|
|
|
|
type = "TEI Identity Verify";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
type = "Unknown";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pri_message(pri, "%c MDL Message: %s (%d)\n", direction_tag, type, h->u.data[3]);
|
|
|
|
pri_message(pri, "%c RI: %d\n", direction_tag, ri);
|
|
|
|
pri_message(pri, "%c Ai: %d E:%d\n", direction_tag, (h->u.data[4] >> 1) & 0x7f, h->u.data[4] & 1);
|
|
|
|
}
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
|
2009-04-14 23:05:21 +08:00
|
|
|
pri_event *q921_dchannel_up(struct pri *pri)
|
2001-05-13 00:41:32 +08:00
|
|
|
{
|
2009-10-08 02:33:09 +08:00
|
|
|
if (pri->tei == Q921_TEI_PRI) {
|
|
|
|
q921_reset(pri, 1);
|
|
|
|
} else {
|
|
|
|
q921_reset(pri, 0);
|
|
|
|
}
|
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Stop any SABME retransmissions */
|
2009-09-03 04:04:03 +08:00
|
|
|
pri_schedule_del(pri, pri->sabme_timer);
|
|
|
|
pri->sabme_timer = 0;
|
2001-05-13 00:41:32 +08:00
|
|
|
|
2003-09-25 14:13:14 +08:00
|
|
|
/* Reset any rejects */
|
|
|
|
pri->sentrej = 0;
|
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Go into connection established state */
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_STATE && pri->q921_state != Q921_LINK_CONNECTION_ESTABLISHED)
|
|
|
|
pri_message(pri, DBGHEAD "q921_state now is Q921_LINK_CONNECTION_ESTABLISHED\n", DBGINFO);
|
2001-05-13 00:41:32 +08:00
|
|
|
pri->q921_state = Q921_LINK_CONNECTION_ESTABLISHED;
|
|
|
|
|
2009-10-08 02:33:09 +08:00
|
|
|
/* Ensure that we do not have T200 or T203 running when the link comes up */
|
|
|
|
pri_schedule_del(pri, pri->t200_timer);
|
|
|
|
pri->t200_timer = 0;
|
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Start the T203 timer */
|
2009-10-08 02:33:09 +08:00
|
|
|
pri_schedule_del(pri, pri->t203_timer);
|
2004-10-02 22:55:20 +08:00
|
|
|
pri->t203_timer = pri_schedule_event(pri, pri->timers[PRI_TIMER_T203], t203_expire, pri);
|
2001-05-13 00:41:32 +08:00
|
|
|
|
2006-07-07 05:11:37 +08:00
|
|
|
/* Notify Layer 3 */
|
|
|
|
q931_dl_indication(pri, PRI_EVENT_DCHAN_UP);
|
|
|
|
|
2009-01-23 05:48:41 +08:00
|
|
|
q921_send_queued_iframes(pri);
|
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Report event that D-Channel is now up */
|
|
|
|
pri->ev.gen.e = PRI_EVENT_DCHAN_UP;
|
|
|
|
return &pri->ev;
|
|
|
|
}
|
|
|
|
|
2009-04-14 23:05:21 +08:00
|
|
|
pri_event *q921_dchannel_down(struct pri *pri)
|
2001-05-13 00:41:32 +08:00
|
|
|
{
|
|
|
|
/* Reset counters, reset sabme timer etc */
|
2009-10-08 02:33:09 +08:00
|
|
|
q921_reset(pri, 1);
|
2001-05-13 00:41:32 +08:00
|
|
|
|
2006-07-07 05:11:37 +08:00
|
|
|
/* Notify Layer 3 */
|
|
|
|
q931_dl_indication(pri, PRI_EVENT_DCHAN_DOWN);
|
|
|
|
|
2009-05-02 06:47:41 +08:00
|
|
|
/* Report event that D-Channel is now down */
|
2001-05-13 00:41:32 +08:00
|
|
|
pri->ev.gen.e = PRI_EVENT_DCHAN_DOWN;
|
|
|
|
return &pri->ev;
|
|
|
|
}
|
|
|
|
|
2009-10-08 02:33:09 +08:00
|
|
|
void q921_reset(struct pri *pri, int reset_iqueue)
|
2001-05-13 00:41:32 +08:00
|
|
|
{
|
|
|
|
/* Having gotten a SABME we MUST reset our entire state */
|
2009-10-08 02:33:09 +08:00
|
|
|
if (reset_iqueue)
|
|
|
|
pri->v_s = 0;
|
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
pri->v_a = 0;
|
|
|
|
pri->v_r = 0;
|
|
|
|
pri->v_na = 0;
|
2004-10-02 22:55:20 +08:00
|
|
|
pri->window = pri->timers[PRI_TIMER_K];
|
2004-03-29 16:09:01 +08:00
|
|
|
pri->windowlen = 0;
|
2009-09-03 04:04:03 +08:00
|
|
|
pri_schedule_del(pri, pri->sabme_timer);
|
|
|
|
pri_schedule_del(pri, pri->t203_timer);
|
|
|
|
pri_schedule_del(pri, pri->t200_timer);
|
2001-05-13 00:41:32 +08:00
|
|
|
pri->sabme_timer = 0;
|
2008-05-08 03:51:44 +08:00
|
|
|
pri->sabme_count = 0;
|
2001-05-13 00:41:32 +08:00
|
|
|
pri->t203_timer = 0;
|
|
|
|
pri->t200_timer = 0;
|
|
|
|
pri->busy = 0;
|
|
|
|
pri->solicitfbit = 0;
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_STATE && pri->q921_state != Q921_LINK_CONNECTION_RELEASED)
|
|
|
|
pri_message(pri, DBGHEAD "q921_state now is Q921_LINK_CONNECTION_RELEASED\n", DBGINFO);
|
2001-05-13 00:41:32 +08:00
|
|
|
pri->q921_state = Q921_LINK_CONNECTION_RELEASED;
|
|
|
|
pri->retrans = 0;
|
2003-09-25 14:13:14 +08:00
|
|
|
pri->sentrej = 0;
|
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Discard anything waiting to go out */
|
2009-10-08 02:33:09 +08:00
|
|
|
if (reset_iqueue)
|
|
|
|
q921_discard_retransmissions(pri);
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
|
2008-05-08 03:51:44 +08:00
|
|
|
static void q921_tei_release_and_reacquire(struct pri *master)
|
|
|
|
{
|
|
|
|
/* Make sure the master is passed into this function */
|
|
|
|
q921_dchannel_down(master->subchannel);
|
|
|
|
__pri_free_tei(master->subchannel);
|
|
|
|
master->subchannel = NULL;
|
|
|
|
master->ev.gen.e = PRI_EVENT_DCHAN_DOWN;
|
|
|
|
master->schedev = 1;
|
|
|
|
q921_start(master, master->localtype == PRI_CPE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static pri_event *q921_receive_MDL(struct pri *pri, q921_u *h, int len)
|
|
|
|
{
|
|
|
|
int ri;
|
|
|
|
struct pri *sub;
|
|
|
|
int tei;
|
|
|
|
if (pri->debug & PRI_DEBUG_Q921_STATE)
|
|
|
|
pri_message(pri, "Received MDL message\n");
|
|
|
|
if (h->data[0] != 0x0f) {
|
|
|
|
pri_error(pri, "Received MDL with unsupported management entity %02x\n", h->data[0]);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (!(h->data[4] & 0x01)) {
|
|
|
|
pri_error(pri, "Received MDL with multibyte TEI identifier\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
ri = (h->data[1] << 8) | h->data[2];
|
|
|
|
tei = (h->data[4] >> 1);
|
|
|
|
switch(h->data[3]) {
|
|
|
|
case Q921_TEI_IDENTITY_REQUEST:
|
|
|
|
if (tei != 127) {
|
|
|
|
pri_error(pri, "Received TEI identity request with invalid TEI %d\n", tei);
|
|
|
|
q921_send_tei(pri, Q921_TEI_IDENTITY_DENIED, ri, tei, 1);
|
|
|
|
}
|
|
|
|
/* Go to master */
|
|
|
|
for (sub = pri; sub->master; sub = sub->master);
|
|
|
|
tei = 64;
|
2009-05-02 06:47:41 +08:00
|
|
|
/*! \todo XXX Error: The following loop never terminates! */
|
2008-05-08 03:51:44 +08:00
|
|
|
while(sub->subchannel) {
|
|
|
|
if(sub->subchannel->tei == tei)
|
|
|
|
++tei;
|
|
|
|
}
|
|
|
|
sub->subchannel = __pri_new_tei(-1, pri->localtype, pri->switchtype, pri, NULL, NULL, NULL, tei, 1);
|
|
|
|
if (!sub->subchannel) {
|
|
|
|
pri_error(pri, "Unable to allocate D-channel for new TEI %d\n", tei);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
q921_send_tei(pri, Q921_TEI_IDENTITY_ASSIGNED, ri, tei, 1);
|
|
|
|
break;
|
|
|
|
case Q921_TEI_IDENTITY_ASSIGNED:
|
|
|
|
if (ri != pri->ri) {
|
|
|
|
pri_message(pri, "TEI assignment received for invalid Ri %02x (our is %02x)\n", ri, pri->ri);
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-09-03 04:04:03 +08:00
|
|
|
pri_schedule_del(pri, pri->t202_timer);
|
|
|
|
pri->t202_timer = 0;
|
2008-05-08 03:51:44 +08:00
|
|
|
if (pri->subchannel && (pri->subchannel->tei == tei)) {
|
|
|
|
pri_error(pri, "TEI already assigned (new is %d, current is %d)\n", tei, pri->subchannel->tei);
|
|
|
|
q921_tei_release_and_reacquire(pri);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
pri_message(pri, "TEI assiged to %d\n", tei);
|
|
|
|
pri->subchannel = __pri_new_tei(-1, pri->localtype, pri->switchtype, pri, NULL, NULL, NULL, tei, 1);
|
|
|
|
if (!pri->subchannel) {
|
|
|
|
pri_error(pri, "Unable to allocate D-channel for new TEI %d\n", tei);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
pri->q921_state = Q921_TEI_ASSIGNED;
|
|
|
|
break;
|
|
|
|
case Q921_TEI_IDENTITY_CHECK_REQUEST:
|
|
|
|
/* We're assuming one TEI per PRI in TE PTMP mode */
|
|
|
|
|
|
|
|
/* If no subchannel (TEI) ignore */
|
|
|
|
if (!pri->subchannel)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* If it's addressed to the group TEI or to our TEI specifically, we respond */
|
|
|
|
if ((tei == Q921_TEI_GROUP) || (tei == pri->subchannel->tei))
|
|
|
|
q921_send_tei(pri, Q921_TEI_IDENTITY_CHECK_RESPONSE, random() % 65535, pri->subchannel->tei, 1);
|
|
|
|
|
|
|
|
break;
|
|
|
|
case Q921_TEI_IDENTITY_REMOVE:
|
|
|
|
/* XXX: Assuming multiframe mode has been disconnected already */
|
|
|
|
if (!pri->subchannel)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if ((tei == Q921_TEI_GROUP) || (tei == pri->subchannel->tei)) {
|
|
|
|
q921_tei_release_and_reacquire(pri);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL; /* Do we need to return something??? */
|
|
|
|
}
|
|
|
|
|
2008-11-22 08:34:26 +08:00
|
|
|
static int is_command(struct pri *pri, q921_h *h)
|
|
|
|
{
|
|
|
|
int command =0;
|
|
|
|
int c_r = h->s.h.c_r;
|
|
|
|
|
|
|
|
if ((pri->localtype == PRI_NETWORK && c_r == 0) ||
|
|
|
|
(pri->localtype == PRI_CPE && c_r == 1))
|
|
|
|
command = 1;
|
|
|
|
|
|
|
|
return( command );
|
|
|
|
}
|
|
|
|
|
2004-06-05 14:50:55 +08:00
|
|
|
static pri_event *__q921_receive_qualified(struct pri *pri, q921_h *h, int len)
|
2001-05-13 00:41:32 +08:00
|
|
|
{
|
2002-03-18 21:59:09 +08:00
|
|
|
q921_frame *f;
|
2003-09-25 14:13:14 +08:00
|
|
|
pri_event *ev;
|
2003-02-12 21:59:23 +08:00
|
|
|
int sendnow;
|
2001-05-21 21:39:30 +08:00
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
switch(h->h.data[0] & Q921_FRAMETYPE_MASK) {
|
|
|
|
case 0:
|
|
|
|
case 2:
|
|
|
|
if (pri->q921_state != Q921_LINK_CONNECTION_ESTABLISHED) {
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "!! Got I-frame while link state %d\n", pri->q921_state);
|
2001-05-13 00:41:32 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* Informational frame */
|
|
|
|
if (len < 4) {
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "!! Received short I-frame (expected 4, got %d)\n", len);
|
2001-05-13 00:41:32 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return q921_handle_iframe(pri, &h->i, len);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
if (pri->q921_state != Q921_LINK_CONNECTION_ESTABLISHED) {
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "!! Got S-frame while link down\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (len < 4) {
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "!! Received short S-frame (expected 4, got %d)\n", len);
|
2001-05-13 00:41:32 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch(h->s.ss) {
|
|
|
|
case 0:
|
|
|
|
/* Receiver Ready */
|
|
|
|
pri->busy = 0;
|
|
|
|
/* Acknowledge frames as necessary */
|
2008-11-22 08:34:26 +08:00
|
|
|
ev = q921_ack_rx(pri, h->s.n_r, 1);
|
2003-09-25 14:13:14 +08:00
|
|
|
if (ev)
|
|
|
|
return ev;
|
2008-11-22 08:34:26 +08:00
|
|
|
if (is_command(pri, h))
|
|
|
|
pri->solicitfbit = 0;
|
2001-05-13 00:41:32 +08:00
|
|
|
if (h->s.p_f) {
|
|
|
|
/* If it's a p/f one then send back a RR in return with the p/f bit set */
|
2008-11-22 08:34:26 +08:00
|
|
|
if (!is_command(pri, h)) {
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- Got RR response to our frame\n");
|
2008-11-22 08:34:26 +08:00
|
|
|
pri->retrans = 0;
|
2001-05-13 00:41:32 +08:00
|
|
|
} else {
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- Unsolicited RR with P/F bit, responding\n");
|
2003-09-25 14:13:14 +08:00
|
|
|
q921_rr(pri, 1, 0);
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2008-05-08 03:51:44 +08:00
|
|
|
case 1:
|
|
|
|
/* Receiver not ready */
|
|
|
|
if (pri->debug & PRI_DEBUG_Q921_STATE)
|
|
|
|
pri_message(pri, "-- Got receiver not ready\n");
|
|
|
|
pri->busy = 1;
|
2008-11-22 08:34:26 +08:00
|
|
|
ev = q921_ack_rx(pri, h->s.n_r, 0);
|
|
|
|
if (ev)
|
|
|
|
return ev;
|
|
|
|
if (h->s.p_f && is_command(pri, h))
|
|
|
|
q921_rr(pri, 1, 0);
|
|
|
|
pri->solicitfbit = 1;
|
|
|
|
pri->retrans = 0;
|
|
|
|
if (pri->t203_timer) {
|
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
|
|
|
pri_message(pri, "Stopping T_203 timer\n");
|
|
|
|
pri_schedule_del(pri, pri->t203_timer);
|
|
|
|
pri->t203_timer = 0;
|
|
|
|
}
|
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
|
|
|
pri_message(pri, "Restarting T_200 timer\n");
|
|
|
|
reschedule_t200(pri);
|
2008-05-08 03:51:44 +08:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
/* Just retransmit */
|
|
|
|
if (pri->debug & PRI_DEBUG_Q921_STATE)
|
|
|
|
pri_message(pri, "-- Got reject requesting packet %d... Retransmitting.\n", h->s.n_r);
|
2008-11-22 08:34:26 +08:00
|
|
|
if (pri->busy && !is_command(pri, h))
|
|
|
|
pri->solicitfbit = 0;
|
|
|
|
pri->busy = 0;
|
|
|
|
if (is_command(pri, h) && h->s.p_f)
|
|
|
|
q921_rr(pri, 1, 0);
|
|
|
|
q921_ack_rx(pri, h->s.n_r, 0);
|
|
|
|
/*Resend only if we are in the Multiple Frame Established state or when
|
|
|
|
we are in the Time Recovery state and received responce with bit F=1*/
|
|
|
|
if ((pri->solicitfbit == 0) || (pri->solicitfbit && !is_command(pri, h) && h->s.p_f)) {
|
|
|
|
pri->solicitfbit = 0;
|
|
|
|
pri->retrans = 0;
|
|
|
|
sendnow = 0;
|
|
|
|
/* Resend I-frames starting from frame where f->h.n_s == h->s.n_r */
|
|
|
|
for (f = pri->txqueue; f && (f->h.n_s != h->s.n_r); f = f->next);
|
|
|
|
while (f) {
|
|
|
|
sendnow = 1;
|
|
|
|
if (f->transmitted || (!f->transmitted && (pri->windowlen < pri->window))) {
|
|
|
|
if (pri->debug & PRI_DEBUG_Q921_STATE)
|
|
|
|
pri_error(pri, "!! Got reject for frame %d, retransmitting frame %d now, updating n_r!\n", h->s.n_r, f->h.n_s);
|
|
|
|
f->h.n_r = pri->v_r;
|
|
|
|
f->h.p_f = 0;
|
|
|
|
if (!f->transmitted && (pri->windowlen < pri->window))
|
|
|
|
pri->windowlen++;
|
|
|
|
q921_transmit(pri, (q921_h *)(&f->h), f->len);
|
|
|
|
}
|
|
|
|
f = f->next;
|
|
|
|
}
|
|
|
|
if (!sendnow) {
|
|
|
|
if (pri->txqueue) {
|
|
|
|
/* This should never happen */
|
|
|
|
if (!h->s.p_f || h->s.n_r) {
|
|
|
|
pri_error(pri, "!! Got reject for frame %d, but we only have others!\n", h->s.n_r);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Hrm, we have nothing to send, but have been REJ'd. Reset v_a, v_s, etc */
|
|
|
|
pri_error(pri, "!! Got reject for frame %d, but we have nothing -- resetting!\n", h->s.n_r);
|
|
|
|
pri->v_a = h->s.n_r;
|
|
|
|
pri->v_s = h->s.n_r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Reset t200 timer if it was somehow going */
|
2009-09-03 04:04:03 +08:00
|
|
|
pri_schedule_del(pri, pri->t200_timer);
|
|
|
|
pri->t200_timer = 0;
|
2008-11-22 08:34:26 +08:00
|
|
|
/* Reset and restart t203 timer */
|
|
|
|
reschedule_t203(pri);
|
|
|
|
}
|
2008-05-08 03:51:44 +08:00
|
|
|
break;
|
2001-05-13 00:41:32 +08:00
|
|
|
default:
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "!! XXX Unknown Supervisory frame ss=0x%02x,pf=%02xnr=%02x vs=%02x, va=%02x XXX\n", h->s.ss, h->s.p_f, h->s.n_r,
|
2001-11-30 02:09:09 +08:00
|
|
|
pri->v_s, pri->v_a);
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
if (len < 3) {
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "!! Received short unnumbered frame\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch(h->u.m3) {
|
|
|
|
case 0:
|
|
|
|
if (h->u.m2 == 3) {
|
|
|
|
if (h->u.p_f) {
|
2003-02-12 21:59:23 +08:00
|
|
|
/* Section 5.7.1 says we should restart on receiving a DM response with the f-bit set to
|
|
|
|
one, but we wait T200 first */
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & (PRI_DEBUG_Q921_STATE | PRI_DEBUG_Q921_DUMP))
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- Got DM Mode from peer.\n");
|
2003-02-12 21:59:23 +08:00
|
|
|
/* Disconnected mode, try again after T200 */
|
|
|
|
ev = q921_dchannel_down(pri);
|
2008-05-08 03:51:44 +08:00
|
|
|
q921_restart(pri, 0);
|
2003-02-12 21:59:23 +08:00
|
|
|
return ev;
|
|
|
|
|
2001-05-13 00:41:32 +08:00
|
|
|
} else {
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- Ignoring unsolicited DM with p/f set to 0\n");
|
2003-02-12 21:59:23 +08:00
|
|
|
#if 0
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Requesting that we start */
|
2008-05-08 03:51:44 +08:00
|
|
|
q921_restart(pri, 0);
|
2003-02-12 21:59:23 +08:00
|
|
|
#endif
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
} else if (!h->u.m2) {
|
2008-05-08 03:51:44 +08:00
|
|
|
if ((pri->sapi == Q921_SAPI_LAYER2_MANAGEMENT) && (pri->tei == Q921_TEI_GROUP))
|
|
|
|
q921_receive_MDL(pri, (q921_u *)h, len);
|
|
|
|
else {
|
|
|
|
int res;
|
|
|
|
|
|
|
|
res = q931_receive(pri, (q931_h *) h->u.data, len - 3);
|
|
|
|
if (res == -1) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (res & Q931_RES_HAVEEVENT)
|
|
|
|
return &pri->ev;
|
|
|
|
}
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & (PRI_DEBUG_Q921_STATE | PRI_DEBUG_Q921_DUMP))
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- Got Disconnect from peer.\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Acknowledge */
|
|
|
|
q921_send_ua(pri, h->u.p_f);
|
2003-09-25 14:13:14 +08:00
|
|
|
ev = q921_dchannel_down(pri);
|
2008-05-08 03:51:44 +08:00
|
|
|
q921_restart(pri, 0);
|
2003-09-25 14:13:14 +08:00
|
|
|
return ev;
|
2001-05-13 00:41:32 +08:00
|
|
|
case 3:
|
|
|
|
if (h->u.m2 == 3) {
|
|
|
|
/* SABME */
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & (PRI_DEBUG_Q921_STATE | PRI_DEBUG_Q921_DUMP)) {
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- Got SABME from %s peer.\n", h->h.c_r ? "network" : "cpe");
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
if (h->h.c_r) {
|
|
|
|
pri->remotetype = PRI_NETWORK;
|
|
|
|
if (pri->localtype == PRI_NETWORK) {
|
|
|
|
/* We can't both be networks */
|
|
|
|
return pri_mkerror(pri, "We think we're the network, but they think they're the network, too.");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
pri->remotetype = PRI_CPE;
|
|
|
|
if (pri->localtype == PRI_CPE) {
|
|
|
|
/* We can't both be CPE */
|
|
|
|
return pri_mkerror(pri, "We think we're the CPE, but they think they're the CPE too.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Send Unnumbered Acknowledgement */
|
|
|
|
q921_send_ua(pri, h->u.p_f);
|
|
|
|
return q921_dchannel_up(pri);
|
|
|
|
} else if (h->u.m2 == 0) {
|
|
|
|
/* It's a UA */
|
|
|
|
if (pri->q921_state == Q921_AWAITING_ESTABLISH) {
|
2006-06-07 06:06:52 +08:00
|
|
|
if (pri->debug & (PRI_DEBUG_Q921_STATE | PRI_DEBUG_Q921_DUMP)) {
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_message(pri, "-- Got UA from %s peer Link up.\n", h->h.c_r ? "cpe" : "network");
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
return q921_dchannel_up(pri);
|
2008-05-08 03:51:44 +08:00
|
|
|
} else if ((pri->q921_state >= Q921_TEI_ASSIGNED) && pri->bri) {
|
|
|
|
/* Possible duplicate TEI assignment */
|
|
|
|
if (pri->master)
|
|
|
|
q921_tei_release_and_reacquire(pri->master);
|
|
|
|
else
|
|
|
|
pri_error(pri, "Huh!? no master found\n");
|
|
|
|
} else {
|
|
|
|
/* Since we're not in the AWAITING_ESTABLISH STATE, it's unsolicited */
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "!! Got a UA, but i'm in state %d\n", pri->q921_state);
|
2008-05-08 03:51:44 +08:00
|
|
|
|
|
|
|
}
|
2001-05-13 00:41:32 +08:00
|
|
|
} else
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "!! Weird frame received (m3=3, m2 = %d)\n", h->u.m2);
|
2001-05-13 00:41:32 +08:00
|
|
|
break;
|
|
|
|
case 4:
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "!! Frame got rejected!\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
break;
|
|
|
|
case 5:
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "!! XID frames not supported\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
break;
|
|
|
|
default:
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "!! Don't know what to do with M3=%d u-frames\n", h->u.m3);
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-06-05 14:50:55 +08:00
|
|
|
static pri_event *__q921_receive(struct pri *pri, q921_h *h, int len)
|
|
|
|
{
|
|
|
|
pri_event *ev;
|
|
|
|
/* Discard FCS */
|
|
|
|
len -= 2;
|
|
|
|
|
2006-06-07 06:06:52 +08:00
|
|
|
if (!pri->master && pri->debug & (PRI_DEBUG_Q921_DUMP | PRI_DEBUG_Q921_RAW))
|
2005-05-23 23:06:33 +08:00
|
|
|
q921_dump(pri, h, len, pri->debug & PRI_DEBUG_Q921_RAW, 0);
|
2004-06-05 14:50:55 +08:00
|
|
|
|
|
|
|
/* Check some reject conditions -- Start by rejecting improper ea's */
|
|
|
|
if (h->h.ea1 || !(h->h.ea2))
|
|
|
|
return NULL;
|
|
|
|
|
2008-05-08 03:51:44 +08:00
|
|
|
#if 0 /* Will be rejected by subchannel analyzis */
|
2004-06-05 14:50:55 +08:00
|
|
|
/* Check for broadcasts - not yet handled */
|
|
|
|
if (h->h.tei == Q921_TEI_GROUP)
|
|
|
|
return NULL;
|
2008-05-08 03:51:44 +08:00
|
|
|
#endif
|
2004-06-05 14:50:55 +08:00
|
|
|
|
2008-05-08 03:51:44 +08:00
|
|
|
if (!((h->h.sapi == pri->sapi) && ((h->h.tei == pri->tei) || (h->h.tei == Q921_TEI_GROUP)))) {
|
|
|
|
/* Check for SAPIs we don't yet handle */
|
2004-06-05 14:50:55 +08:00
|
|
|
/* If it's not us, try any subchannels we have */
|
|
|
|
if (pri->subchannel)
|
|
|
|
return q921_receive(pri->subchannel, h, len + 2);
|
2008-05-08 03:51:44 +08:00
|
|
|
else {
|
2004-06-05 14:50:55 +08:00
|
|
|
return NULL;
|
2008-05-08 03:51:44 +08:00
|
|
|
}
|
2004-07-16 10:14:04 +08:00
|
|
|
|
2004-06-05 14:50:55 +08:00
|
|
|
}
|
2008-05-08 03:51:44 +08:00
|
|
|
if (pri->debug & PRI_DEBUG_Q921_DUMP)
|
|
|
|
pri_message(pri, "Handling message for SAPI/TEI=%d/%d\n", h->h.sapi, h->h.tei);
|
2004-06-05 14:50:55 +08:00
|
|
|
ev = __q921_receive_qualified(pri, h, len);
|
|
|
|
reschedule_t203(pri);
|
|
|
|
return ev;
|
|
|
|
}
|
|
|
|
|
2003-09-25 14:13:14 +08:00
|
|
|
pri_event *q921_receive(struct pri *pri, q921_h *h, int len)
|
|
|
|
{
|
|
|
|
pri_event *e;
|
|
|
|
e = __q921_receive(pri, h, len);
|
2004-03-15 13:53:25 +08:00
|
|
|
#ifdef LIBPRI_COUNTERS
|
|
|
|
pri->q921_rxcount++;
|
|
|
|
#endif
|
2003-09-25 14:13:14 +08:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
2008-05-08 03:51:44 +08:00
|
|
|
static void q921_restart(struct pri *pri, int now)
|
2001-05-13 00:41:32 +08:00
|
|
|
{
|
|
|
|
if (pri->q921_state != Q921_LINK_CONNECTION_RELEASED) {
|
2005-05-23 23:06:33 +08:00
|
|
|
pri_error(pri, "!! q921_start: Not in 'Link Connection Released' state\n");
|
2001-05-13 00:41:32 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Reset our interface */
|
2009-10-08 02:33:09 +08:00
|
|
|
q921_reset(pri, 1);
|
2001-05-13 00:41:32 +08:00
|
|
|
/* Do the SABME XXX Maybe we should implement T_WAIT? XXX */
|
2003-02-12 21:59:23 +08:00
|
|
|
q921_send_sabme(pri, now);
|
2001-05-13 00:41:32 +08:00
|
|
|
}
|
2008-05-08 03:51:44 +08:00
|
|
|
|
|
|
|
void q921_start(struct pri *pri, int isCPE)
|
|
|
|
{
|
2009-10-08 02:33:09 +08:00
|
|
|
q921_reset(pri, 1);
|
2008-05-08 03:51:44 +08:00
|
|
|
if ((pri->sapi == Q921_SAPI_LAYER2_MANAGEMENT) && (pri->tei == Q921_TEI_GROUP)) {
|
|
|
|
pri->q921_state = Q921_DOWN;
|
|
|
|
if (isCPE)
|
|
|
|
q921_tei_request(pri);
|
|
|
|
} else {
|
|
|
|
q921_send_sabme(pri, isCPE);
|
|
|
|
}
|
|
|
|
}
|