/******************************************************************************* ** ** Function RFCOMM_DlcEstablishRsp ** ** Description This function is called by the port emulation entity ** acks Establish Indication. ** *******************************************************************************/ void RFCOMM_DlcEstablishRsp (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu, UINT16 result) { tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci); if ((p_mcb->state != RFC_MX_STATE_CONNECTED) && (result == RFCOMM_SUCCESS)) { PORT_DlcReleaseInd (p_mcb, dlci); return; } rfc_port_sm_execute(p_port, RFC_EVENT_ESTABLISH_RSP, &result); }
/******************************************************************************* ** ** Function RFCOMM_DlcEstablishReq ** ** Description This function is called by the user app to establish ** connection with the specific dlci on a specific bd device. ** It will allocate RFCOMM connection control block if not ** allocated before and dispatch open event to the state ** machine. ** *******************************************************************************/ void RFCOMM_DlcEstablishReq (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu) { tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci); if (p_mcb->state != RFC_MX_STATE_CONNECTED) { PORT_DlcEstablishCnf (p_mcb, dlci, 0, RFCOMM_ERROR); return; } rfc_port_sm_execute(p_port, RFC_EVENT_OPEN, NULL); }
/******************************************************************************* ** ** Function rfc_sec_check_complete ** ** Description The function called when Security Manager finishes ** verification of the service side connection ** ** Returns void ** *******************************************************************************/ void rfc_sec_check_complete (BD_ADDR bd_addr, tBT_TRANSPORT transport, void *p_ref_data, UINT8 res) { tPORT *p_port = (tPORT *)p_ref_data; UNUSED(bd_addr); UNUSED(transport); /* Verify that PORT is still waiting for Security to complete */ if (!p_port->in_use || ((p_port->rfc.state != RFC_STATE_ORIG_WAIT_SEC_CHECK) && (p_port->rfc.state != RFC_STATE_TERM_WAIT_SEC_CHECK))) { return; } rfc_port_sm_execute ((tPORT *)p_ref_data, RFC_EVENT_SEC_COMPLETE, &res); }
/******************************************************************************* ** ** Function rfcomm_process_timeout ** ** Description The function called every second to check RFCOMM timers ** ** Returns void ** *******************************************************************************/ void rfcomm_process_timeout (TIMER_LIST_ENT *p_tle) { switch (p_tle->event) { case BTU_TTYPE_RFCOMM_MFC: rfc_mx_sm_execute ((tRFC_MCB *)p_tle->param, RFC_EVENT_TIMEOUT, NULL); break; case BTU_TTYPE_RFCOMM_PORT: rfc_port_sm_execute ((tPORT *)p_tle->param, RFC_EVENT_TIMEOUT, NULL); break; default: break; } }
/******************************************************************************* ** ** Function RFCOMM_DlcEstablishRsp ** ** Description This function is called by the port emulation entity ** acks Establish Indication. ** *******************************************************************************/ void RFCOMM_DlcEstablishRsp (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu, UINT16 result) { UNUSED(mtu); if ((p_mcb->state != RFC_MX_STATE_CONNECTED) && (result == RFCOMM_SUCCESS)) { PORT_DlcReleaseInd (p_mcb, dlci); return; } tPORT *p_port = port_find_mcb_dlci_port (p_mcb, dlci); if (p_port == NULL) { RFCOMM_TRACE_WARNING("%s Unable to find DLCI port dlci:%d", __func__, dlci); return; } rfc_port_sm_execute(p_port, RFC_EVENT_ESTABLISH_RSP, &result); }
/******************************************************************************* ** ** Function RFCOMM_DlcEstablishReq ** ** Description This function is called by the user app to establish ** connection with the specific dlci on a specific bd device. ** It will allocate RFCOMM connection control block if not ** allocated before and dispatch open event to the state ** machine. ** *******************************************************************************/ void RFCOMM_DlcEstablishReq (tRFC_MCB *p_mcb, UINT8 dlci, UINT16 mtu) { UNUSED(mtu); if (p_mcb->state != RFC_MX_STATE_CONNECTED) { PORT_DlcEstablishCnf (p_mcb, dlci, 0, RFCOMM_ERROR); return; } tPORT *p_port = port_find_mcb_dlci_port(p_mcb, dlci); if (p_port == NULL) { RFCOMM_TRACE_WARNING("%s Unable to find DLCI port dlci:%d", __func__, dlci); return; } rfc_port_sm_execute(p_port, RFC_EVENT_OPEN, NULL); }
/******************************************************************************* ** ** Function RFCOMM_DataReq ** ** Description This function is called by the user app to send data buffer ** *******************************************************************************/ void RFCOMM_DataReq (tRFC_MCB *p_mcb, UINT8 dlci, BT_HDR *p_buf) { rfc_port_sm_execute(port_find_mcb_dlci_port (p_mcb, dlci), RFC_EVENT_DATA, p_buf); }
/******************************************************************************* ** ** Function RFCOMM_DlcReleaseReq ** ** Description This function is called by the PORT unit to close DLC ** *******************************************************************************/ void RFCOMM_DlcReleaseReq (tRFC_MCB *p_mcb, UINT8 dlci) { rfc_port_sm_execute(port_find_mcb_dlci_port (p_mcb, dlci), RFC_EVENT_CLOSE, 0); }
/******************************************************************************* ** ** Function RFCOMM_BufDataInd ** ** Description This is a callback function called by L2CAP when ** data RFCOMM frame is received. Parse the frames, check ** the checksum and dispatch event to multiplexer or port ** state machine depending on the frame destination. ** *******************************************************************************/ void RFCOMM_BufDataInd (UINT16 lcid, BT_HDR *p_buf) { tRFC_MCB *p_mcb = rfc_find_lcid_mcb (lcid); tPORT *p_port; UINT8 event; if (!p_mcb) { RFCOMM_TRACE_WARNING ("RFCOMM_BufDataInd LCID:0x%x", lcid); GKI_freebuf (p_buf); return; } event = rfc_parse_data (p_mcb, &rfc_cb.rfc.rx_frame, p_buf); /* If the frame did not pass validation just ignore it */ if (event == RFC_EVENT_BAD_FRAME) { GKI_freebuf (p_buf); return; } if (rfc_cb.rfc.rx_frame.dlci == RFCOMM_MX_DLCI) { /* Take special care of the Multiplexer Control Messages */ if (event == RFC_EVENT_UIH) { rfc_process_mx_message (p_mcb, p_buf); return; } /* Other multiplexer events go to state machine */ rfc_mx_sm_execute (p_mcb, event, NULL); GKI_freebuf (p_buf); return; } /* The frame was received on the data channel DLCI, verify that DLC exists */ if (((p_port = port_find_mcb_dlci_port (p_mcb, rfc_cb.rfc.rx_frame.dlci)) == NULL) || (!p_port->rfc.p_mcb)) { /* If this is a SABME on the new port, check if any appl is waiting for it */ if (event != RFC_EVENT_SABME) { if (( p_mcb->is_initiator && !rfc_cb.rfc.rx_frame.cr) || (!p_mcb->is_initiator && rfc_cb.rfc.rx_frame.cr)) rfc_send_dm (p_mcb, rfc_cb.rfc.rx_frame.dlci, rfc_cb.rfc.rx_frame.pf); GKI_freebuf (p_buf); return; } if ((p_port = port_find_dlci_port (rfc_cb.rfc.rx_frame.dlci)) == NULL) { rfc_send_dm (p_mcb, rfc_cb.rfc.rx_frame.dlci, TRUE); GKI_freebuf (p_buf); return; } p_mcb->port_inx[rfc_cb.rfc.rx_frame.dlci] = p_port->inx; p_port->rfc.p_mcb = p_mcb; } if (event == RFC_EVENT_UIH) { if (p_buf->len > 0) rfc_port_sm_execute (p_port, event, p_buf); else GKI_freebuf (p_buf); if (rfc_cb.rfc.rx_frame.credit != 0) rfc_inc_credit (p_port, rfc_cb.rfc.rx_frame.credit); return; } rfc_port_sm_execute (p_port, event, NULL); GKI_freebuf (p_buf); }