Bluetooth: Fix SMP security level when we have no IO capabilities
When the local IO capability is NoInputNoOutput any attempt to convert the remote authentication requirement to a target security level is futile. This patch makes sure that we set the target security level at most to MEDIUM if the local IO capability is NoInputNoOutput. Signed-off-by: Johan Hedberg <johan.hedberg@intel.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
		
					parent
					
						
							
								24bd0bd94e
							
						
					
				
			
			
				commit
				
					
						1afc2a1ab6
					
				
			
		
					 1 changed files with 10 additions and 2 deletions
				
			
		| 
						 | 
					@ -959,7 +959,11 @@ static u8 smp_cmd_pairing_req(struct l2cap_conn *conn, struct sk_buff *skb)
 | 
				
			||||||
	memcpy(&smp->preq[1], req, sizeof(*req));
 | 
						memcpy(&smp->preq[1], req, sizeof(*req));
 | 
				
			||||||
	skb_pull(skb, sizeof(*req));
 | 
						skb_pull(skb, sizeof(*req));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (conn->hcon->io_capability == 0x03)
 | 
				
			||||||
 | 
							sec_level = BT_SECURITY_MEDIUM;
 | 
				
			||||||
 | 
						else
 | 
				
			||||||
		sec_level = authreq_to_seclevel(auth);
 | 
							sec_level = authreq_to_seclevel(auth);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (sec_level > conn->hcon->pending_sec_level)
 | 
						if (sec_level > conn->hcon->pending_sec_level)
 | 
				
			||||||
		conn->hcon->pending_sec_level = sec_level;
 | 
							conn->hcon->pending_sec_level = sec_level;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1165,7 +1169,11 @@ static u8 smp_cmd_security_req(struct l2cap_conn *conn, struct sk_buff *skb)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	auth = rp->auth_req & AUTH_REQ_MASK;
 | 
						auth = rp->auth_req & AUTH_REQ_MASK;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (hcon->io_capability == 0x03)
 | 
				
			||||||
 | 
							sec_level = BT_SECURITY_MEDIUM;
 | 
				
			||||||
 | 
						else
 | 
				
			||||||
		sec_level = authreq_to_seclevel(auth);
 | 
							sec_level = authreq_to_seclevel(auth);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (smp_sufficient_security(hcon, sec_level))
 | 
						if (smp_sufficient_security(hcon, sec_level))
 | 
				
			||||||
		return 0;
 | 
							return 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue