osmo-msc/openbsc/src/input/lapd.c

478 lines
11 KiB
C
Raw Normal View History

2010-02-16 21:01:36 +00:00
/*
* minimal standalone network-side lap-d implementation
* oystein@homelien.no, 2009
*/
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include "lapd.h"
#include "openbsc/debug.h"
typedef enum {
2011-02-04 19:34:08 +00:00
LAPD_TEI_NONE = 0,
2010-02-16 21:01:36 +00:00
LAPD_TEI_ASSIGNED,
LAPD_TEI_ACTIVE,
} lapd_tei_state;
const char *lapd_tei_states[] = {
"NONE",
"ASSIGNED",
"ACTIVE",
};
typedef enum {
2011-02-04 19:34:08 +00:00
LAPD_TYPE_NONE = 0,
2010-02-16 21:01:36 +00:00
LAPD_TYPE_I,
LAPD_TYPE_S,
LAPD_TYPE_U,
} lapd_msg_type;
typedef enum {
/* commands/responses */
2010-02-16 21:01:36 +00:00
LAPD_CMD_NONE = 0,
LAPD_CMD_I,
LAPD_CMD_RR,
LAPD_CMD_RNR,
LAPD_CMD_REJ,
LAPD_CMD_SABME,
LAPD_CMD_DM,
LAPD_CMD_UI,
LAPD_CMD_DISC,
LAPD_CMD_UA,
LAPD_CMD_FRMR,
LAPD_CMD_XID,
} lapd_cmd_type;
const char *lapd_cmd_types[] = {
"NONE",
"I",
"RR",
"RNR",
"REJ",
"SABME",
"DM",
"UI",
"DISC",
"UA",
"FRMR",
"XID",
};
2011-02-04 19:34:08 +00:00
const char *lapd_msg_types = "?ISU";
const int network_side = 1; /* 0 for user side */
2010-02-16 21:01:36 +00:00
typedef struct {
2011-02-04 19:34:08 +00:00
int tei;
int sapi;
/* A valid N(R) value is one that is in the range V(A) ≤ N(R) ≤ V(S). */
int vs; /* next to be transmitted */
int va; /* last acked by peer */
int vr; /* next expected to be received */
2011-02-04 19:34:08 +00:00
lapd_tei_state state;
2010-02-16 21:01:36 +00:00
} lapd_tei_t;
/* 3.5.2.2 Send state variable V(S)
* Each point-to-point data link connection endpoint shall have an associated V(S) when using I frame
* commands. V(S) denotes the sequence number of the next I frame to be transmitted. The V(S) can
* take on the value 0 through n minus 1. The value of V(S) shall be incremented by 1 with each
* successive I frame transmission, and shall not exceed V(A) by more than the maximum number of
* outstanding I frames k. The value of k may be in the range of 1 k 127.
*
* 3.5.2.3 Acknowledge state variable V(A)
* Each point-to-point data link connection endpoint shall have an associated V(A) when using I frame
* commands and supervisory frame commands/responses. V(A) identifies the last I frame that has been
* acknowledged by its peer [V(A) 1 equals the N(S) of the last acknowledged I frame]. V(A) can
* take on the value 0 through n minus 1. The value of V(A) shall be updated by the valid N(R) values
* received from its peer (see 3.5.2.6). A valid N(R) value is one that is in the range V(A) N(R)
* V(S).
*
* 3.5.2.5 Receive state variable V(R)
* Each point-to-point data link connection endpoint shall have an associated V(R) when using I frame
* commands and supervisory frame commands/responses. V(R) denotes the sequence number of the
* next in-sequence I frame expected to be received. V(R) can take on the value 0 through n minus 1.
* The value of V(R) shall be incremented by one with the receipt of an error-free, in-sequence I frame
* whose N(S) equals V(R).
*/
2010-02-16 21:01:36 +00:00
#define LAPD_NS(teip) (teip->vs)
#define LAPD_NR(teip) (teip->vr)
/* 3.5.2.4 Send sequence number N(S)
* Only I frames contain N(S), the send sequence number of transmitted I frames. At the time that an in-
* sequence I frame is designated for transmission, the value of N(S) is set equal to V(S).
*
* 3.5.2.6 Receive sequence number N(R)
* All I frames and supervisory frames contain N(R), the expected send sequence number of the next
* received I frame. At the time that a frame of the above types is designated for transmission, the value
* of N(R) is set equal to V(R). N(R) indicates that the data link layer entity transmitting the N(R) has
* correctly received all I frames numbered up to and including N(R) 1.
*/
2011-02-04 19:34:08 +00:00
void (*lapd_transmit_cb) (uint8_t * data, int len, void *cbdata);
2010-02-16 21:01:36 +00:00
static lapd_tei_t tei_list[] = {
2011-02-04 19:34:08 +00:00
{25, 62,},
{1, 0,},
{-1},
2010-02-16 21:01:36 +00:00
};
static lapd_tei_t *teip_from_tei(int tei)
2011-02-04 19:34:08 +00:00
{
2010-02-16 21:01:36 +00:00
lapd_tei_t *p;
for (p = tei_list; p->tei != -1; p++) {
2011-02-04 19:34:08 +00:00
if (p->tei == tei)
return p;
2010-02-16 21:01:36 +00:00
};
return NULL;
};
static void lapd_tei_set_state(lapd_tei_t * teip, int newstate)
2011-02-04 19:34:08 +00:00
{
DEBUGP(DMI, "state change on tei %d: %s -> %s\n", teip->tei,
2011-02-04 19:34:08 +00:00
lapd_tei_states[teip->state], lapd_tei_states[newstate]);
2010-02-16 21:01:36 +00:00
teip->state = newstate;
};
static void lapd_tei_receive(uint8_t * data, int len, void *cbdata)
2011-02-04 19:34:08 +00:00
{
2010-02-16 21:01:36 +00:00
int entity = data[0];
2011-02-04 19:34:08 +00:00
int ref = data[1];
2010-02-16 21:01:36 +00:00
int mt = data[3];
2011-02-04 19:34:08 +00:00
int action = data[4] >> 1;
int e = data[4] & 1;
DEBUGP(DMI, "tei mgmt: entity %x, ref %x, mt %x, action %x, e %x\n", entity, ref, mt, action, e);
2010-02-16 21:01:36 +00:00
switch (mt) {
2011-02-04 19:34:08 +00:00
case 0x01:{ // identity request
2010-02-16 21:01:36 +00:00
int tei = action;
DEBUGP(DMI, "tei mgmt: identity request, accepting "
"tei %d\n", tei);
2010-02-16 21:01:36 +00:00
uint8_t resp[8];
memmove(resp, "\xfe\xff\x03\x0f\x00\x00\x02\x00", 8);
resp[7] = (tei << 1) | 1;
lapd_transmit_cb(resp, 8, cbdata);
2011-02-04 19:34:08 +00:00
lapd_tei_t *teip = teip_from_tei(tei);
2010-02-16 21:01:36 +00:00
if (teip->state == LAPD_TEI_NONE)
lapd_tei_set_state(teip, LAPD_TEI_ASSIGNED);
2011-02-04 19:34:08 +00:00
break;
}
default:
DEBUGP(DMI, "tei mgmt: unknown mt %x action %x\n", mt, action);
2011-02-04 19:34:08 +00:00
assert(0);
2010-02-16 21:01:36 +00:00
};
};
2011-02-04 19:34:08 +00:00
uint8_t *lapd_receive(uint8_t * data, int len, int *ilen, lapd_mph_type * prim,
void *cbdata)
{
2010-02-16 21:01:36 +00:00
#if 0
DEBUGP(DMI, "receive %p, %d\n", data, len);
2010-02-16 21:01:36 +00:00
hexdump(data, len);
#endif
*ilen = 0;
*prim = 0;
if (len < 2) {
DEBUGP(DMI, "len %d < 2\n", len);
2010-02-16 21:01:36 +00:00
return NULL;
};
if ((data[0] & 1) != 0 || (data[1] & 1) != 1) {
DEBUGP(DMI, "address field %x/%x not well formed\n", data[0],
2011-02-04 19:34:08 +00:00
data[1]);
2010-02-16 21:01:36 +00:00
return NULL;
};
2011-02-04 19:34:08 +00:00
int sapi = data[0] >> 2;
2010-02-16 21:01:36 +00:00
int cr = (data[0] >> 1) & 1;
int tei = data[1] >> 1;
int command = network_side ^ cr;
//DEBUGP(DMI, " address sapi %x tei %d cmd %d cr %d\n", sapi, tei, command, cr);
2010-02-16 21:01:36 +00:00
if (len < 3) {
DEBUGP(DMI, "len %d < 3\n", len);
2010-02-16 21:01:36 +00:00
return NULL;
};
lapd_msg_type typ = 0;
lapd_cmd_type cmd = 0;
2011-02-04 19:34:08 +00:00
int pf = -1;
int ns = -1;
int nr = -1;
2010-02-16 21:01:36 +00:00
if ((data[2] & 1) == 0) {
typ = LAPD_TYPE_I;
assert(len >= 4);
ns = data[2] >> 1;
nr = data[3] >> 1;
pf = data[3] & 1;
cmd = LAPD_CMD_I;
} else if ((data[2] & 3) == 1) {
typ = LAPD_TYPE_S;
assert(len >= 4);
nr = data[3] >> 1;
pf = data[3] & 1;
switch (data[2]) {
2011-02-04 19:34:08 +00:00
case 0x1:
cmd = LAPD_CMD_RR;
break;
case 0x5:
cmd = LAPD_CMD_RNR;
break;
case 0x9:
cmd = LAPD_CMD_REJ;
break;
default:
DEBUGP(DMI, "unknown S cmd %x\n", data[2]);
2011-02-04 19:34:08 +00:00
assert(0);
2010-02-16 21:01:36 +00:00
};
} else if ((data[2] & 3) == 3) {
typ = LAPD_TYPE_U;
pf = (data[2] >> 4) & 1;
2011-02-04 19:34:08 +00:00
int val = data[2] & ~(1 << 4);
2010-02-16 21:01:36 +00:00
switch (val) {
2011-02-04 19:34:08 +00:00
case 0x6f:
cmd = LAPD_CMD_SABME;
break;
case 0x0f:
cmd = LAPD_CMD_DM;
break;
case 0x03:
cmd = LAPD_CMD_UI;
break;
case 0x43:
cmd = LAPD_CMD_DISC;
break;
case 0x63:
cmd = LAPD_CMD_UA;
break;
case 0x87:
cmd = LAPD_CMD_FRMR;
break;
case 0xaf:
cmd = LAPD_CMD_XID;
break;
default:
DEBUGP(DMI, "unknown U cmd %x (pf %x data %x)\n", val,
2011-02-04 19:34:08 +00:00
pf, data[2]);
assert(0);
2010-02-16 21:01:36 +00:00
};
};
2011-02-04 19:34:08 +00:00
2010-02-16 21:01:36 +00:00
uint8_t *contents = &data[4];
2011-02-04 19:34:08 +00:00
if (typ == LAPD_TYPE_U)
contents--;
2010-02-16 21:01:36 +00:00
*ilen = len - (contents - data);
2011-02-04 19:34:08 +00:00
2010-02-16 21:01:36 +00:00
lapd_tei_t *teip = teip_from_tei(tei);
if (tei == 127)
lapd_tei_receive(contents, *ilen, cbdata);
DEBUGP(DMI, "<- %c %s sapi %x tei %3d cmd %x pf %x ns %3d nr %3d "
"ilen %d teip %p vs %d va %d vr %d len %d\n",
2011-02-04 19:34:08 +00:00
lapd_msg_types[typ], lapd_cmd_types[cmd], sapi, tei, command, pf,
ns, nr, *ilen, teip, teip ? teip->vs : -1, teip ? teip->va : -1,
teip ? teip->vr : -1, len);
2010-02-16 21:01:36 +00:00
if (teip) {
switch (cmd) {
2011-02-04 19:34:08 +00:00
case LAPD_CMD_I:{
2010-02-16 21:01:36 +00:00
if (ns != teip->vr) {
DEBUGP(DMI, "ns %d != vr %d\n", ns,
2011-02-04 19:34:08 +00:00
teip->vr);
if (ns == ((teip->vr - 1) & 0x7f)) {
DEBUGP(DMI, "DOUBLE FRAME, ignoring\n");
2011-02-04 19:34:08 +00:00
cmd = 0; // ignore
2010-02-16 21:01:36 +00:00
} else {
assert(0);
};
} else {
//printf("IN SEQUENCE\n");
2011-02-04 19:34:08 +00:00
teip->vr = (ns + 1) & 0x7f; // FIXME: hack!
2010-02-16 21:01:36 +00:00
};
break;
2011-02-04 19:34:08 +00:00
}
case LAPD_CMD_UI:
break;
case LAPD_CMD_SABME:{
2010-02-16 21:01:36 +00:00
teip->vs = 0;
teip->vr = 0;
teip->va = 0;
// ua
uint8_t resp[8];
int l = 0;
resp[l++] = data[0];
resp[l++] = (tei << 1) | 1;
resp[l++] = 0x73;
lapd_transmit_cb(resp, l, cbdata);
if (teip->state != LAPD_TEI_ACTIVE) {
if (teip->state == LAPD_TEI_ASSIGNED) {
2011-02-04 19:34:08 +00:00
lapd_tei_set_state(teip,
LAPD_TEI_ACTIVE);
//printf("ASSIGNED and ACTIVE\n");
} else {
#if 0
DEBUGP(DMI, "rr in strange state, send rej\n");
// rej
uint8_t resp[8];
int l = 0;
2011-02-04 19:34:08 +00:00
resp[l++] =
(teip->
sapi << 2) | (network_side
? 0 : 2);
resp[l++] = (tei << 1) | 1;
2011-02-04 19:34:08 +00:00
resp[l++] = 0x09; //rej
resp[l++] =
((teip->vr + 1) << 1) | 0;
lapd_transmit_cb(resp, l,
cbdata);
pf = 0; // dont reply
#endif
};
};
2011-02-04 19:34:08 +00:00
*prim = LAPD_MPH_ACTIVATE_IND;
2011-02-04 19:34:08 +00:00
break;
}
case LAPD_CMD_RR:{
2010-02-16 21:01:36 +00:00
teip->va = (nr & 0x7f);
#if 0
2010-02-16 21:01:36 +00:00
if (teip->state != LAPD_TEI_ACTIVE) {
if (teip->state == LAPD_TEI_ASSIGNED) {
2011-02-04 19:34:08 +00:00
lapd_tei_set_state(teip,
LAPD_TEI_ACTIVE);
2010-02-16 21:01:36 +00:00
*prim = LAPD_MPH_ACTIVATE_IND;
//printf("ASSIGNED and ACTIVE\n");
} else {
#if 0
DEBUGP(DMI, "rr in strange "
"state, send rej\n");
2010-02-16 21:01:36 +00:00
// rej
uint8_t resp[8];
int l = 0;
2011-02-04 19:34:08 +00:00
resp[l++] =
(teip->
sapi << 2) | (network_side
? 0 : 2);
2010-02-16 21:01:36 +00:00
resp[l++] = (tei << 1) | 1;
2011-02-04 19:34:08 +00:00
resp[l++] = 0x09; //rej
resp[l++] =
((teip->vr + 1) << 1) | 0;
lapd_transmit_cb(resp, l,
cbdata);
pf = 0; // dont reply
2010-02-16 21:01:36 +00:00
#endif
};
};
#endif
2010-02-16 21:01:36 +00:00
if (pf) {
// interrogating us, send rr
uint8_t resp[8];
int l = 0;
resp[l++] = data[0];
resp[l++] = (tei << 1) | 1;
2011-02-04 19:34:08 +00:00
resp[l++] = 0x01; // rr
resp[l++] = (LAPD_NR(teip) << 1) | (data[3] & 1); // pf bit from req
2010-02-16 21:01:36 +00:00
lapd_transmit_cb(resp, l, cbdata);
2011-02-04 19:34:08 +00:00
2010-02-16 21:01:36 +00:00
};
2011-02-04 19:34:08 +00:00
break;
}
case LAPD_CMD_FRMR:{
// frame reject
2010-02-16 21:01:36 +00:00
#if 0
if (teip->state == LAPD_TEI_ACTIVE)
*prim = LAPD_MPH_DEACTIVATE_IND;
lapd_tei_set_state(teip, LAPD_TEI_ASSIGNED);
#endif
DEBUGP(DMI, "frame reject, ignoring\n");
2010-02-16 21:01:36 +00:00
assert(0);
2011-02-04 19:34:08 +00:00
break;
}
case LAPD_CMD_DISC:{
// disconnect
2010-02-16 21:01:36 +00:00
uint8_t resp[8];
int l = 0;
resp[l++] = data[0];
resp[l++] = (tei << 1) | 1;
resp[l++] = 0x73;
lapd_transmit_cb(resp, l, cbdata);
lapd_tei_set_state(teip, LAPD_TEI_NONE);
2011-02-04 19:34:08 +00:00
break;
}
default:
DEBUGP(DMI, "unknown cmd for tei %d (cmd %x)\n", tei,
2011-02-04 19:34:08 +00:00
cmd);
assert(0);
2010-02-16 21:01:36 +00:00
};
};
//if ((*prim == 0) && (ilen > 0) && (typ != LAPD_TYPE_S)) {
//if (cmd == LAPD_CMD_I) {
if (typ == LAPD_TYPE_I) {
// send rr
// Thu Jan 22 19:17:13 2009 <4000> sangoma.c:340 read (62/25) 4: fa 33 01 0a
// lapd <- S RR sapi 3e tei 25 cmd 0 pf 0 ns -1 nr 5 ilen 0 teip 0x613800 vs 7 va 5 vr 2 len 4
// interrogating us, send rr
DEBUGP(DMI, "Sending RR response\n");
2010-02-16 21:01:36 +00:00
uint8_t resp[8];
int l = 0;
resp[l++] = data[0];
resp[l++] = (tei << 1) | 1;
2011-02-04 19:34:08 +00:00
resp[l++] = 0x01; // rr
resp[l++] = (LAPD_NR(teip) << 1) | (data[3] & 1); // pf bit from req
2010-02-16 21:01:36 +00:00
lapd_transmit_cb(resp, l, cbdata);
if (cmd != 0) {
*prim = LAPD_DL_DATA_IND;
return contents;
}
} else if (tei != 127 && typ == LAPD_TYPE_U && cmd == LAPD_CMD_UI) {
*prim = LAPD_DL_UNITDATA_IND;
2010-02-16 21:01:36 +00:00
return contents;
}
2010-02-16 21:01:36 +00:00
return NULL;
};
2011-02-04 19:34:08 +00:00
void lapd_transmit(int tei, uint8_t * data, int len, void *cbdata)
{
2010-02-16 21:01:36 +00:00
//printf("lapd_transmit %d, %d\n", tei, len);
//hexdump(data, len);
lapd_tei_t *teip = teip_from_tei(tei);
//printf("teip %p\n", teip);
// prepend stuff
2011-02-04 19:34:08 +00:00
uint8_t buf[10000];
2010-02-16 21:01:36 +00:00
memset(buf, 0, sizeof(buf));
2011-02-04 19:34:08 +00:00
memmove(buf + 4, data, len);
2010-02-16 21:01:36 +00:00
len += 4;
buf[0] = (teip->sapi << 2) | (network_side ? 2 : 0);
buf[1] = (teip->tei << 1) | 1;
buf[2] = (LAPD_NS(teip) << 1);
buf[3] = (LAPD_NR(teip) << 1) | 0;
teip->vs = (teip->vs + 1) & 0x7f;
lapd_transmit_cb(buf, len, cbdata);
};