summaryrefslogtreecommitdiff
path: root/monitor/avctp.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-08-29 13:01:11 +0300
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-08-29 13:01:11 +0300
commit1b42893a9a7ee1b1334ea0eb911aa8a3584a259b (patch)
treecf6c4af51af620310fd532de2af834468f6454f7 /monitor/avctp.c
parent31d69f8ecf50b5fbad3a718949553c59bf6ba3f4 (diff)
downloadbluez-1b42893a9a7ee1b1334ea0eb911aa8a3584a259b.tar.gz
monitor: Fix warnings when using l2cap_frame_get*
Diffstat (limited to 'monitor/avctp.c')
-rw-r--r--monitor/avctp.c48
1 files changed, 21 insertions, 27 deletions
diff --git a/monitor/avctp.c b/monitor/avctp.c
index 5543a49ec..64d4b5869 100644
--- a/monitor/avctp.c
+++ b/monitor/avctp.c
@@ -512,15 +512,13 @@ static bool avrcp_get_capabilities(struct l2cap_frame *frame, uint8_t ctype,
switch (cap) {
case 0x2:
for (; count > 0; count--) {
- uint8_t company[3] = {};
+ uint8_t company[3];
- if (frame->size < 3)
+ if (!l2cap_frame_get_u8(frame, &company[0]) ||
+ !l2cap_frame_get_u8(frame, &company[1]) ||
+ !l2cap_frame_get_u8(frame, &company[2]))
return false;
- l2cap_frame_get_u8(frame, &company[0]);
- l2cap_frame_get_u8(frame, &company[1]);
- l2cap_frame_get_u8(frame, &company[2]);
-
print_field("%*c%s: 0x%02x%02x%02x", (indent - 8), ' ',
cap2str(cap), company[0], company[1],
company[2]);
@@ -645,12 +643,14 @@ static bool avrcp_pdu_packet(struct l2cap_frame *frame, uint8_t ctype,
int i;
const struct avrcp_ctrl_pdu_data *ctrl_pdu_data = NULL;
- if (frame->size < 4)
+ if (!l2cap_frame_get_u8(frame, &pduid))
+ return false;
+
+ if (!l2cap_frame_get_u8(frame, &pt))
return false;
- l2cap_frame_get_u8(frame, &pduid);
- l2cap_frame_get_u8(frame, &pt);
- l2cap_frame_get_be16(frame, &len);
+ if (!l2cap_frame_get_be16(frame, &len))
+ return false;
print_indent(indent, COLOR_OFF, "AVRCP: ", pdu2str(pduid), COLOR_OFF,
" pt %s len 0x%04x", pt2str(pt), len);
@@ -680,13 +680,11 @@ static bool avrcp_control_packet(struct l2cap_frame *frame)
{
uint8_t ctype, address, subunit, opcode, company[3], indent = 2;
- if (frame->size < 3)
+ if (!l2cap_frame_get_u8(frame, &ctype) ||
+ !l2cap_frame_get_u8(frame, &address) ||
+ !l2cap_frame_get_u8(frame, &opcode))
return false;
- l2cap_frame_get_u8(frame, &ctype);
- l2cap_frame_get_u8(frame, &address);
- l2cap_frame_get_u8(frame, &opcode);
-
print_field("AV/C: %s: address 0x%02x opcode 0x%02x",
ctype2str(ctype), address, opcode);
@@ -712,13 +710,11 @@ static bool avrcp_control_packet(struct l2cap_frame *frame)
case 0x7c:
return avrcp_passthrough_packet(frame);
case 0x00:
- if (frame->size < 3)
+ if (!l2cap_frame_get_u8(frame, &company[0]) ||
+ !l2cap_frame_get_u8(frame, &company[1]) ||
+ !l2cap_frame_get_u8(frame, &company[2]))
return false;
- l2cap_frame_get_u8(frame, &company[0]);
- l2cap_frame_get_u8(frame, &company[1]);
- l2cap_frame_get_u8(frame, &company[2]);
-
print_field("%*cCompany ID: 0x%02x%02x%02x", indent, ' ',
company[0], company[1], company[2]);
@@ -764,16 +760,14 @@ void avctp_packet(const struct l2cap_frame *frame)
struct l2cap_frame avctp_frame;
const char *pdu_color;
- if (frame->size < 3) {
+ l2cap_frame_pull(&avctp_frame, frame, 0);
+
+ if (!l2cap_frame_get_u8(&avctp_frame, &hdr) ||
+ !l2cap_frame_get_be16(&avctp_frame, &pid)) {
print_text(COLOR_ERROR, "frame too short");
packet_hexdump(frame->data, frame->size);
return;
- }
-
- l2cap_frame_pull(&avctp_frame, frame, 0);
-
- l2cap_frame_get_u8(&avctp_frame, &hdr);
- l2cap_frame_get_be16(&avctp_frame, &pid);
+ }
if (frame->in)
pdu_color = COLOR_MAGENTA;