[layer23] Reconnect of layer 2 link must be performed in idle mode also
[osmocom-bb.git] / src / host / layer23 / src / common / lapdm.c
index b199c62..b1c0d40 100644 (file)
@@ -155,7 +155,7 @@ enum lapdm_format {
 };
 
 static void lapdm_t200_cb(void *data);
-static int rslms_send_i(struct lapdm_msg_ctx *mctx);
+static int rslms_send_i(struct lapdm_msg_ctx *mctx, int line);
 
 /* UTILITY FUNCTIONS */
 
@@ -524,9 +524,8 @@ static void lapdm_t200_cb(void *data)
                        send_rll_simple(RSL_MT_REL_IND, &dl->mctx);
                        /* send MDL ERROR INIDCATION to L3 */
                        rsl_rll_error(RLL_CAUSE_T200_EXPIRED, &dl->mctx);
-                       /* flush buffers */
+                       /* flush tx buffers */
                        lapdm_dl_flush_tx(dl);
-                       lapdm_dl_flush_send(dl);
                        /* go back to idle state */
                        lapdm_dl_newstate(dl, LAPDm_STATE_IDLE);
                        /* NOTE: we must not change any other states or buffers
@@ -1046,7 +1045,7 @@ static int lapdm_rx_u(struct msgb *msg, struct lapdm_msg_ctx *mctx)
                /* enter multiple-frame-established state */
                lapdm_dl_newstate(dl, LAPDm_STATE_MF_EST);
                /* send outstanding frames, if any (resume / reconnect) */
-               rslms_send_i(mctx);
+               rslms_send_i(mctx, __LINE__);
                /* send notification to L3 */
                rc = send_rll_simple(RSL_MT_EST_CONF, mctx);
                msgb_free(msg);
@@ -1126,7 +1125,7 @@ static int lapdm_rx_s(struct msgb *msg, struct lapdm_msg_ctx *mctx)
                        }
                }
                /* Send message, if possible due to acknowledged data */
-               rslms_send_i(mctx);
+               rslms_send_i(mctx, __LINE__);
 
                break;
        case LAPDm_S_RNR:
@@ -1169,7 +1168,7 @@ static int lapdm_rx_s(struct msgb *msg, struct lapdm_msg_ctx *mctx)
                                "received\n");
 
                /* Send message, if possible due to acknowledged data */
-               rslms_send_i(mctx);
+               rslms_send_i(mctx, __LINE__);
 
                break;
        case LAPDm_S_REJ:
@@ -1273,7 +1272,7 @@ static int lapdm_rx_s(struct msgb *msg, struct lapdm_msg_ctx *mctx)
                /* FIXME: 5.5.4.2 2) */
 
                /* Send message, if possible due to acknowledged data */
-               rslms_send_i(mctx);
+               rslms_send_i(mctx, __LINE__);
 
                break;
        default:
@@ -1431,13 +1430,15 @@ static int lapdm_rx_i(struct msgb *msg, struct lapdm_msg_ctx *mctx)
                /* check if we are not in own receiver busy */
                if (!dl->own_busy) {
                        /* NOTE: V(R) is already set above */
-                       rc = rslms_send_i(mctx);
+                       rc = rslms_send_i(mctx, __LINE__);
                        if (rc) {
                                LOGP(DLAPDM, LOGL_INFO, "we are not busy and "
                                        "have no pending data, send RR\n");
                                /* Send RR with F=0 */
                                return lapdm_send_rr(mctx, 0);
                        }
+                       /* all I or one RR is sent, we are done */
+                       return 0;
                } else {
                        LOGP(DLAPDM, LOGL_INFO, "we are busy, send RNR\n");
                        /* Send RNR with F=0 */
@@ -1446,7 +1447,7 @@ static int lapdm_rx_i(struct msgb *msg, struct lapdm_msg_ctx *mctx)
        }
 
        /* Send message, if possible due to acknowledged data */
-       rslms_send_i(mctx);
+       rslms_send_i(mctx, __LINE__);
 
        return rc;
 }
@@ -1727,12 +1728,12 @@ static int rslms_rx_rll_data_req(struct msgb *msg, struct lapdm_datalink *dl)
        msgb_enqueue(&dl->send_queue, msg);
 
        /* Send message, if possible */
-       rslms_send_i(&dl->mctx);
+       rslms_send_i(&dl->mctx, __LINE__);
        return 0;
 }
 
 /* Send next I frame from queued/buffered data */
-static int rslms_send_i(struct lapdm_msg_ctx *mctx)
+static int rslms_send_i(struct lapdm_msg_ctx *mctx, int line)
 {
        struct lapdm_datalink *dl = mctx->dl;
        uint8_t chan_nr = mctx->chan_nr;
@@ -1743,6 +1744,8 @@ static int rslms_send_i(struct lapdm_msg_ctx *mctx)
        int length, left;
        int rc = -1; /* we sent nothing */
 
+       LOGP(DLAPDM, LOGL_INFO, "%s() called from line %d\n", __func__, line);
+
        next_frame:
 
        if (dl->peer_busy) {
@@ -1860,13 +1863,15 @@ static int rslms_rx_rll_susp_req(struct msgb *msg, struct lapdm_datalink *dl)
 
        /* put back the send-buffer to the send-queue (first position) */
        if (dl->send_buffer) {
+               LOGP(DLAPDM, LOGL_INFO, "put frame in sendbuffer back to "
+                       "queue\n");
                llist_add(&dl->send_buffer->list, &dl->send_queue);
                dl->send_buffer = NULL;
-       }
+       } else
+               LOGP(DLAPDM, LOGL_INFO, "no frame in sendbuffer\n");
 
-       /* Clear transmit and send buffer, if any */
+       /* Clear transmit buffer, but keep send buffer */
        lapdm_dl_flush_tx(dl);
-       lapdm_dl_flush_send(dl);
 
        msgb_free(msg);
 
@@ -1899,13 +1904,19 @@ static int rslms_rx_rll_res_req(struct msgb *msg, struct lapdm_datalink *dl)
        }
        length = TLVP_LEN(&tv, RSL_IE_L3_INFO);
 
-       LOGP(DLAPDM, LOGL_INFO, "perform re-establishment (SABM)\n");
+       LOGP(DLAPDM, LOGL_INFO, "perform re-establishment (SABM) length=%d\n",
+               length);
        
        /* Replace message in the send-buffer (reconnect) */
        if (dl->send_buffer)
                msgb_free(dl->send_buffer);
        dl->send_out = 0;
-       dl->send_buffer = msg;
+       if (length) {
+               /* Remove the RSL/RLL header */
+               msgb_pull_l2h(msg);
+               /* Write data into the send buffer, to be sent first */
+               dl->send_buffer = msg;
+       }
 
        /* Discard partly received L3 message */
        if (dl->rcv_buffer) {
@@ -2125,7 +2136,8 @@ static struct l2downstate {
         RSL_MT_RES_REQ, rslms_rx_rll_res_req},
 
        /* create and send SABM command (reconnect) */
-       {SBIT(LAPDm_STATE_MF_EST) |
+       {SBIT(LAPDm_STATE_IDLE) |
+        SBIT(LAPDm_STATE_MF_EST) |
         SBIT(LAPDm_STATE_TIMER_RECOV),
         RSL_MT_RECON_REQ, rslms_rx_rll_res_req},