CSR BC5 chip,降低蓝牙SPP security

在蓝牙SPP设计的时候,很多产品是默认将security降到最低,不需要输入连接的PIN码。

做法是呼叫下面的函数“ConnectionSmRegisterIncomingservice”,将第三个参数设为“sec_in_none”即可,代码如下。

这个函数可以在SPP_SM_AUTHENTICATE_CFM/SPP_INIT_CFM/SPP_CONNECT_CFM时候被呼叫。

hid_spp/spp.c <spp_inquire()>

ConnectionSmRegisterIncomingService(protocol_l2cap, 0x0001, sec_in_none);

关于SPP security的参数,也是十分多的,如下面的定义,

typedef enum
{
    /*! No security - in Mode 4 this is equivalent to Security Level 0*/
    sec_in_none                    = 0x0000,                      
    /*! mode 4 & legacy - results in a  DM_SM_AUTORISE_IND on connection attempt
    for devices not marked in as 'trusted' in the device database. */
    sec_in_authorisation           = 0x0001,              
    /*! legacy - For connections where at least one device is not in mode 4, 
    legacy pairing procedure should be used. The users may have to enter PINS.
    */
    sec_in_authentication          = 0x0002, 
    /*! legacy - The link should be encrypted after legacy authentication. */
    sec_in_encryption              = 0x0004,
    /*! mode 4 - Where both devices are in Mode 4, Secure Simple Pairing is
    used. */
    sec4_in_ssp                    = 0x0100,
    /*! mode 4 - Where both devices are in Mode 4, Man-In-The-Middle protection
    is used. */
    sec4_in_mitm                   = 0x0200,
    /*! mode 4 - Don't support legacy security procedures. Prevents devices 
    using the legacy pairing procedures to autenticate devices that do not 
    support Secure Simple Pairing. */
    sec4_in_no_legacy              = 0x0400,
    /*! mode 4 - Security Level 1. Minimal user interaction required. 
    Encryption not necessary (for SDP - for all 2.1+EDR devices, it is mandated
    for all other services). MITM not necessary. */
    sec4_in_level_1                = sec4_in_ssp,
    /*! mode 4 - Security Level 2. MITM not necessary, Encryption desired. */
    sec4_in_level_2                = (sec4_in_ssp | sec_in_authentication | sec_in_encryption),
    /*! mode 4 - security Level 3. MITM necessary, Encryption disired, user 
    interaction is acceptable. */
    sec4_in_level_3                = (sec4_in_ssp | sec4_in_mitm | sec_in_authentication | sec_in_encryption)
} dm_security_in;

函数“ConnectionSmRegisterInComingService”定义如下,

/*! 
	@brief This function is called to register the security requirements for
	access to a service when the Bluestack Security Controller is in Security
	Mode 2 or 3.

    @param protocol_id The protocol identifier (protocol_l2cap or
    protocol_rfcomm).
    
    @param channel Channel for the protocol defined by the protocol_id that the
    access is being requested on (e.g. RFCOMM server channel number).
    
    @param security - A bitwise setting of the security to be used. See the
    documentation for dm_security_in.
	

	The registered security level is applied to all incoming connections on the
	specified 'channel'.
*/
void ConnectionSmRegisterIncomingService(dm_protocol_id protocol_id, uint32 channel, dm_security_in security);


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值