Bluetooth: fix unaligned access to l2cap conf data

In function l2cap_get_conf_opt() and l2cap_add_conf_opt() the address of
opt->val sometimes is not at the edge of 2-bytes/4-bytes, so 2-bytes/4 bytes
access will cause data misalignment exeception. Use get_unaligned_le16/32
and put_unaligned_le16/32 function to avoid data misalignment execption.

Signed-off-by: steven miao <realmz6@gmail.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>

authored by

steven miao and committed by
Gustavo F. Padovan
bfaaeb3e 556ea928

+4 -4
+4 -4
net/bluetooth/l2cap.c
··· 2421 2421 break; 2422 2422 2423 2423 case 2: 2424 - *val = __le16_to_cpu(*((__le16 *) opt->val)); 2424 + *val = get_unaligned_le16(opt->val); 2425 2425 break; 2426 2426 2427 2427 case 4: 2428 - *val = __le32_to_cpu(*((__le32 *) opt->val)); 2428 + *val = get_unaligned_le32(opt->val); 2429 2429 break; 2430 2430 2431 2431 default: ··· 2452 2452 break; 2453 2453 2454 2454 case 2: 2455 - *((__le16 *) opt->val) = cpu_to_le16(val); 2455 + put_unaligned_le16(cpu_to_le16(val), opt->val); 2456 2456 break; 2457 2457 2458 2458 case 4: 2459 - *((__le32 *) opt->val) = cpu_to_le32(val); 2459 + put_unaligned_le32(cpu_to_le32(val), opt->val); 2460 2460 break; 2461 2461 2462 2462 default: