2012-09-28 08:09:29 -07:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "ObexBase.h"
|
|
|
|
|
|
|
|
BEGIN_BLUETOOTH_NAMESPACE
|
|
|
|
|
|
|
|
int
|
2013-12-11 06:53:24 -08:00
|
|
|
AppendHeaderName(uint8_t* aRetBuf, int aBufferSize, const char* aName,
|
|
|
|
int aLength)
|
2012-09-28 08:09:29 -07:00
|
|
|
{
|
2012-11-02 18:36:34 -07:00
|
|
|
int headerLength = aLength + 3;
|
2012-09-28 08:09:29 -07:00
|
|
|
|
2012-11-02 18:36:34 -07:00
|
|
|
aRetBuf[0] = ObexHeaderId::Name;
|
|
|
|
aRetBuf[1] = (headerLength & 0xFF00) >> 8;
|
|
|
|
aRetBuf[2] = headerLength & 0x00FF;
|
2012-09-28 08:09:29 -07:00
|
|
|
|
2013-12-11 06:53:24 -08:00
|
|
|
memcpy(&aRetBuf[3], aName, (aLength < aBufferSize - 3)? aLength
|
|
|
|
: aBufferSize - 3);
|
2012-09-28 08:09:29 -07:00
|
|
|
|
|
|
|
return headerLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2013-12-11 06:53:24 -08:00
|
|
|
AppendHeaderBody(uint8_t* aRetBuf, int aBufferSize, const uint8_t* aData,
|
|
|
|
int aLength)
|
2012-09-28 08:09:29 -07:00
|
|
|
{
|
2012-11-02 18:36:34 -07:00
|
|
|
int headerLength = aLength + 3;
|
2012-09-28 08:09:29 -07:00
|
|
|
|
2012-11-02 18:36:34 -07:00
|
|
|
aRetBuf[0] = ObexHeaderId::Body;
|
|
|
|
aRetBuf[1] = (headerLength & 0xFF00) >> 8;
|
|
|
|
aRetBuf[2] = headerLength & 0x00FF;
|
2012-09-28 08:09:29 -07:00
|
|
|
|
2013-12-11 06:53:24 -08:00
|
|
|
memcpy(&aRetBuf[3], aData, (aLength < aBufferSize - 3)? aLength
|
|
|
|
: aBufferSize - 3);
|
2012-09-28 08:09:29 -07:00
|
|
|
|
|
|
|
return headerLength;
|
|
|
|
}
|
|
|
|
|
2012-12-10 21:55:37 -08:00
|
|
|
int
|
|
|
|
AppendHeaderEndOfBody(uint8_t* aRetBuf)
|
|
|
|
{
|
|
|
|
aRetBuf[0] = ObexHeaderId::EndOfBody;
|
|
|
|
aRetBuf[1] = 0x00;
|
|
|
|
aRetBuf[2] = 0x03;
|
|
|
|
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
2012-09-28 08:09:29 -07:00
|
|
|
int
|
2012-11-02 18:36:34 -07:00
|
|
|
AppendHeaderLength(uint8_t* aRetBuf, int aObjectLength)
|
2012-09-28 08:09:29 -07:00
|
|
|
{
|
2012-11-02 18:36:34 -07:00
|
|
|
aRetBuf[0] = ObexHeaderId::Length;
|
|
|
|
aRetBuf[1] = (aObjectLength & 0xFF000000) >> 24;
|
|
|
|
aRetBuf[2] = (aObjectLength & 0x00FF0000) >> 16;
|
|
|
|
aRetBuf[3] = (aObjectLength & 0x0000FF00) >> 8;
|
|
|
|
aRetBuf[4] = aObjectLength & 0x000000FF;
|
2012-09-28 08:09:29 -07:00
|
|
|
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-11-02 18:36:34 -07:00
|
|
|
AppendHeaderConnectionId(uint8_t* aRetBuf, int aConnectionId)
|
2012-09-28 08:09:29 -07:00
|
|
|
{
|
2012-11-02 18:36:34 -07:00
|
|
|
aRetBuf[0] = ObexHeaderId::ConnectionId;
|
|
|
|
aRetBuf[1] = (aConnectionId & 0xFF000000) >> 24;
|
|
|
|
aRetBuf[2] = (aConnectionId & 0x00FF0000) >> 16;
|
|
|
|
aRetBuf[3] = (aConnectionId & 0x0000FF00) >> 8;
|
|
|
|
aRetBuf[4] = aConnectionId & 0x000000FF;
|
2012-09-28 08:09:29 -07:00
|
|
|
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-11-02 18:36:34 -07:00
|
|
|
SetObexPacketInfo(uint8_t* aRetBuf, uint8_t aOpcode, int aPacketLength)
|
2012-09-28 08:09:29 -07:00
|
|
|
{
|
2012-11-02 18:36:34 -07:00
|
|
|
aRetBuf[0] = aOpcode;
|
|
|
|
aRetBuf[1] = (aPacketLength & 0xFF00) >> 8;
|
|
|
|
aRetBuf[2] = aPacketLength & 0x00FF;
|
2012-09-28 08:09:29 -07:00
|
|
|
}
|
|
|
|
|
2013-12-06 00:23:35 -08:00
|
|
|
bool
|
2012-11-07 17:46:31 -08:00
|
|
|
ParseHeaders(const uint8_t* aHeaderStart,
|
|
|
|
int aTotalLength,
|
|
|
|
ObexHeaderSet* aRetHandlerSet)
|
2012-09-28 08:09:29 -07:00
|
|
|
{
|
2012-11-07 17:46:31 -08:00
|
|
|
const uint8_t* ptr = aHeaderStart;
|
2012-10-30 20:15:12 -07:00
|
|
|
|
|
|
|
while (ptr - aHeaderStart < aTotalLength) {
|
2012-11-07 17:46:31 -08:00
|
|
|
ObexHeaderId headerId = (ObexHeaderId)*ptr++;
|
2012-09-28 08:09:29 -07:00
|
|
|
|
2013-12-06 00:23:35 -08:00
|
|
|
uint16_t contentLength = 0;
|
2012-09-28 08:09:29 -07:00
|
|
|
uint8_t highByte, lowByte;
|
|
|
|
|
|
|
|
// Defined in 2.1 OBEX Headers, IrOBEX 1.2
|
|
|
|
switch (headerId >> 6)
|
|
|
|
{
|
|
|
|
case 0x00:
|
2013-10-28 07:04:12 -07:00
|
|
|
// Null-terminated Unicode text, length prefixed with 2-byte
|
2012-10-30 20:15:12 -07:00
|
|
|
// unsigned integer.
|
2012-09-28 08:09:29 -07:00
|
|
|
case 0x01:
|
|
|
|
// byte sequence, length prefixed with 2 byte unsigned integer.
|
|
|
|
highByte = *ptr++;
|
|
|
|
lowByte = *ptr++;
|
2013-12-06 00:23:35 -08:00
|
|
|
contentLength = (((uint16_t)highByte << 8) | lowByte) - 3;
|
2012-09-28 08:09:29 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x02:
|
|
|
|
// 1 byte quantity
|
2012-10-16 23:48:52 -07:00
|
|
|
contentLength = 1;
|
2012-09-28 08:09:29 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x03:
|
|
|
|
// 4 byte quantity
|
2012-10-16 23:48:52 -07:00
|
|
|
contentLength = 4;
|
2012-09-28 08:09:29 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-12-06 00:23:35 -08:00
|
|
|
// Length check to prevent from memory pollusion.
|
|
|
|
if (ptr + contentLength > aHeaderStart + aTotalLength) {
|
|
|
|
// Severe error occurred. We can't even believe the received data, so
|
|
|
|
// clear all headers.
|
|
|
|
MOZ_ASSERT(false);
|
|
|
|
aRetHandlerSet->ClearHeaders();
|
|
|
|
return false;
|
|
|
|
}
|
2012-09-28 08:09:29 -07:00
|
|
|
|
2013-12-06 00:23:35 -08:00
|
|
|
aRetHandlerSet->AddHeader(new ObexHeader(headerId, contentLength, ptr));
|
2012-10-16 23:48:52 -07:00
|
|
|
ptr += contentLength;
|
2012-09-28 08:09:29 -07:00
|
|
|
}
|
2013-12-06 00:23:35 -08:00
|
|
|
|
|
|
|
return true;
|
2012-09-28 08:09:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
END_BLUETOOTH_NAMESPACE
|