#include <sys/param.h>
#include <sys/endian.h>
#include <sys/stat.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "rtlbt_fw.h"
#include "rtlbt_dbg.h"
static const struct rtlbt_id_table rtlbt_ic_id_table[] = {
{
.lmp_subversion = RTLBT_ROM_LMP_8723A,
.hci_revision = 0xb,
.hci_version = 0x6,
.flags = RTLBT_IC_FLAG_SIMPLE,
.fw_name = "rtl8723a",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8723B,
.hci_revision = 0xb,
.hci_version = 0x6,
.fw_name = "rtl8723b",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8723B,
.hci_revision = 0xd,
.hci_version = 0x8,
.flags = RTLBT_IC_FLAG_CONFIG,
.fw_name = "rtl8723d",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8821A,
.hci_revision = 0xa,
.hci_version = 0x6,
.fw_name = "rtl8821a",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8821A,
.hci_revision = 0xc,
.hci_version = 0x8,
.flags = RTLBT_IC_FLAG_MSFT,
.fw_name = "rtl8821c",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8761A,
.hci_revision = 0xa,
.hci_version = 0x6,
.fw_name = "rtl8761a",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8761A,
.hci_revision = 0xb,
.hci_version = 0xa,
.fw_name = "rtl8761bu",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8822B,
.hci_revision = 0xc,
.hci_version = 0xa,
.flags = RTLBT_IC_FLAG_MSFT,
.fw_name = "rtl8822cu",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8822B,
.hci_revision = 0xb,
.hci_version = 0x7,
.flags = RTLBT_IC_FLAG_CONFIG | RTLBT_IC_FLAG_MSFT,
.fw_name = "rtl8822b",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8852A,
.hci_revision = 0xa,
.hci_version = 0xb,
.flags = RTLBT_IC_FLAG_MSFT,
.fw_name = "rtl8852au",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8852A,
.hci_revision = 0xb,
.hci_version = 0xb,
.flags = RTLBT_IC_FLAG_MSFT,
.fw_name = "rtl8852bu",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8852A,
.hci_revision = 0xc,
.hci_version = 0xc,
.flags = RTLBT_IC_FLAG_MSFT,
.fw_name = "rtl8852cu",
.fw_suffix = "_fw_v2.bin",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8851B,
.hci_revision = 0xb,
.hci_version = 0xc,
.flags = RTLBT_IC_FLAG_MSFT,
.fw_name = "rtl8851bu",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8922A,
.hci_revision = 0xa,
.hci_version = 0xc,
.flags = RTLBT_IC_FLAG_MSFT,
.fw_name = "rtl8922au",
}, {
.lmp_subversion = RTLBT_ROM_LMP_8852A,
.hci_revision = 0x87,
.hci_version = 0xc,
.flags = RTLBT_IC_FLAG_MSFT,
.fw_name = "rtl8852btu",
},
};
static const uint16_t project_ids[] = {
[ 0 ] = RTLBT_ROM_LMP_8723A,
[ 1 ] = RTLBT_ROM_LMP_8723B,
[ 2 ] = RTLBT_ROM_LMP_8821A,
[ 3 ] = RTLBT_ROM_LMP_8761A,
[ 7 ] = RTLBT_ROM_LMP_8703B,
[ 8 ] = RTLBT_ROM_LMP_8822B,
[ 9 ] = RTLBT_ROM_LMP_8723B,
[ 10 ] = RTLBT_ROM_LMP_8821A,
[ 13 ] = RTLBT_ROM_LMP_8822B,
[ 14 ] = RTLBT_ROM_LMP_8761A,
[ 18 ] = RTLBT_ROM_LMP_8852A,
[ 19 ] = RTLBT_ROM_LMP_8723B,
[ 20 ] = RTLBT_ROM_LMP_8852A,
[ 25 ] = RTLBT_ROM_LMP_8852A,
[ 33 ] = RTLBT_ROM_LMP_8822B,
[ 36 ] = RTLBT_ROM_LMP_8851B,
[ 44 ] = RTLBT_ROM_LMP_8922A,
[ 47 ] = RTLBT_ROM_LMP_8852A,
};
static const uint8_t fw_header_sig_v1[8] =
{0x52, 0x65, 0x61, 0x6C, 0x74, 0x65, 0x63, 0x68};
static const uint8_t fw_header_sig_v2[8] =
{0x52, 0x54, 0x42, 0x54, 0x43, 0x6F, 0x72, 0x65};
static const uint8_t fw_ext_sig[4] = {0x51, 0x04, 0xFD, 0x77};
int
rtlbt_fw_read(struct rtlbt_firmware *fw, const char *fwname)
{
int fd;
struct stat sb;
unsigned char *buf;
ssize_t r;
fd = open(fwname, O_RDONLY);
if (fd < 0) {
warn("%s: open: %s", __func__, fwname);
return (0);
}
if (fstat(fd, &sb) != 0) {
warn("%s: stat: %s", __func__, fwname);
close(fd);
return (0);
}
buf = calloc(1, sb.st_size);
if (buf == NULL) {
warn("%s: calloc", __func__);
close(fd);
return (0);
}
r = read(fd, buf, sb.st_size);
if (r < 0) {
warn("%s: read", __func__);
free(buf);
close(fd);
return (0);
}
if (r != sb.st_size) {
rtlbt_err("read len %d != file size %d",
(int) r,
(int) sb.st_size);
free(buf);
close(fd);
return (0);
}
memset(fw, 0, sizeof(*fw));
fw->fwname = strdup(fwname);
fw->len = sb.st_size;
fw->buf = buf;
close(fd);
return (1);
}
void
rtlbt_fw_free(struct rtlbt_firmware *fw)
{
if (fw->fwname)
free(fw->fwname);
if (fw->buf)
free(fw->buf);
memset(fw, 0, sizeof(*fw));
}
char *
rtlbt_get_fwname(const char *fw_name, const char *prefix, const char *suffix)
{
char *fwname;
asprintf(&fwname, "%s/%s%s", prefix, fw_name, suffix);
return (fwname);
}
const struct rtlbt_id_table *
rtlbt_get_ic(uint16_t lmp_subversion, uint16_t hci_revision,
uint8_t hci_version)
{
unsigned int i;
for (i = 0; i < nitems(rtlbt_ic_id_table); i++) {
if (rtlbt_ic_id_table[i].lmp_subversion == lmp_subversion &&
rtlbt_ic_id_table[i].hci_revision == hci_revision &&
rtlbt_ic_id_table[i].hci_version == hci_version)
return (rtlbt_ic_id_table + i);
}
return (NULL);
}
enum rtlbt_fw_type
rtlbt_get_fw_type(struct rtlbt_firmware *fw, uint16_t *fw_lmp_subversion)
{
enum rtlbt_fw_type fw_type;
size_t fw_header_len;
uint8_t *ptr;
uint8_t opcode, oplen, project_id;
if (fw->len < 8) {
rtlbt_err("firmware file too small");
return (RTLBT_FW_TYPE_UNKNOWN);
}
if (memcmp(fw->buf, fw_header_sig_v1, sizeof(fw_header_sig_v1)) == 0) {
fw_type = RTLBT_FW_TYPE_V1;
fw_header_len = sizeof(struct rtlbt_fw_header_v1);
} else
if (memcmp(fw->buf, fw_header_sig_v2, sizeof(fw_header_sig_v2)) == 0) {
fw_type = RTLBT_FW_TYPE_V2;
fw_header_len = sizeof(struct rtlbt_fw_header_v2);
} else
return (RTLBT_FW_TYPE_UNKNOWN);
if (fw->len < fw_header_len + sizeof(fw_ext_sig) + 4) {
rtlbt_err("firmware file too small");
return (RTLBT_FW_TYPE_UNKNOWN);
}
ptr = fw->buf + fw->len - sizeof(fw_ext_sig);
if (memcmp(ptr, fw_ext_sig, sizeof(fw_ext_sig)) != 0) {
rtlbt_err("invalid extension section signature");
return (RTLBT_FW_TYPE_UNKNOWN);
}
do {
opcode = *--ptr;
oplen = *--ptr;
ptr -= oplen;
rtlbt_debug("code=%x len=%x", opcode, oplen);
if (opcode == 0x00) {
if (oplen != 1) {
rtlbt_err("invalid instruction length");
return (RTLBT_FW_TYPE_UNKNOWN);
}
project_id = *ptr;
rtlbt_debug("project_id=%x", project_id);
if (project_id >= nitems(project_ids) ||
project_ids[project_id] == 0) {
rtlbt_err("unknown project id %x", project_id);
return (RTLBT_FW_TYPE_UNKNOWN);
}
*fw_lmp_subversion = project_ids[project_id];
return (fw_type);
}
} while (opcode != 0xff && ptr > fw->buf + fw_header_len);
rtlbt_err("can not find project id instruction");
return (RTLBT_FW_TYPE_UNKNOWN);
};
int
rtlbt_parse_fwfile_v1(struct rtlbt_firmware *fw, uint8_t rom_version)
{
struct rtlbt_fw_header_v1 *fw_header;
uint8_t *patch_buf;
unsigned int i;
const uint8_t *chip_id_base;
uint32_t patch_offset;
uint16_t patch_length, num_patches;
fw_header = (struct rtlbt_fw_header_v1 *)fw->buf;
num_patches = le16toh(fw_header->num_patches);
rtlbt_debug("fw_version=%x, num_patches=%d",
le32toh(fw_header->fw_version), num_patches);
if (fw->len < sizeof(struct rtlbt_fw_header_v1) +
sizeof(fw_ext_sig) + 4 + 8 * num_patches) {
errno = EINVAL;
return (-1);
}
chip_id_base = fw->buf + sizeof(struct rtlbt_fw_header_v1);
for (i = 0; i < num_patches; i++) {
if (le16dec(chip_id_base + i * 2) != rom_version + 1)
continue;
patch_length = le16dec(chip_id_base + 2 * (num_patches + i));
patch_offset = le32dec(chip_id_base + 4 * (num_patches + i));
break;
}
if (i >= num_patches) {
rtlbt_err("can not find patch for chip id %d", rom_version);
errno = EINVAL;
return (-1);
}
rtlbt_debug(
"index=%d length=%x offset=%x", i, patch_length, patch_offset);
if (fw->len < patch_offset + patch_length) {
errno = EINVAL;
return (-1);
}
patch_buf = malloc(patch_length);
if (patch_buf == NULL) {
errno = ENOMEM;
return (-1);
}
memcpy(patch_buf, fw->buf + patch_offset, patch_length - 4);
memcpy(patch_buf + patch_length - 4, &fw_header->fw_version, 4);
free(fw->buf);
fw->buf = patch_buf;
fw->len = patch_length;
return (0);
}
static void *
rtlbt_iov_fetch(struct rtlbt_iov *iov, uint32_t len)
{
void *data = NULL;
if (iov->len >= len) {
data = iov->data;
iov->data += len;
iov->len -= len;
}
return (data);
}
static int
rtlbt_patch_entry_cmp(struct rtlbt_patch_entry *a, struct rtlbt_patch_entry *b,
void *thunk __unused)
{
return ((a->prio > b->prio) - (a->prio < b->prio));
}
static int
rtlbt_parse_section(struct rtlbt_patch_list *patch_list, uint32_t opcode,
uint8_t *data, uint32_t len, uint8_t rom_version, uint8_t key_id)
{
struct rtlbt_sec_hdr *hdr;
struct rtlbt_patch_entry *entry;
struct rtlbt_subsec_hdr *subsec_hdr;
struct rtlbt_subsec_security_hdr *subsec_security_hdr;
uint16_t num_subsecs;
uint8_t *subsec_data;
uint32_t subsec_len;
int i, sec_len = 0;
struct rtlbt_iov iov = {
.data = data,
.len = len,
};
hdr = rtlbt_iov_fetch(&iov, sizeof(*hdr));
if (hdr == NULL) {
errno = EINVAL;
return (-1);
}
num_subsecs = le16toh(hdr->num);
for (i = 0; i < num_subsecs; i++) {
subsec_hdr = rtlbt_iov_fetch(&iov, sizeof(*subsec_hdr));
if (subsec_hdr == NULL)
break;
subsec_len = le32toh(subsec_hdr->len);
rtlbt_debug("subsection, eco 0x%02x, prio 0x%02x, len 0x%x",
subsec_hdr->eco, subsec_hdr->prio, subsec_len);
subsec_data = rtlbt_iov_fetch(&iov, subsec_len);
if (subsec_data == NULL)
break;
if (subsec_hdr->eco == rom_version + 1) {
if (opcode == RTLBT_PATCH_SECURITY_HEADER) {
subsec_security_hdr = (void *)subsec_hdr;
if (subsec_security_hdr->key_id == key_id)
break;
continue;
}
entry = calloc(1, sizeof(*entry));
if (entry == NULL) {
errno = ENOMEM;
return (-1);
}
*entry = (struct rtlbt_patch_entry) {
.opcode = opcode,
.len = subsec_len,
.prio = subsec_hdr->prio,
.data = subsec_data,
};
SLIST_INSERT_HEAD(patch_list, entry, next);
sec_len += subsec_len;
}
}
return (sec_len);
}
int
rtlbt_parse_fwfile_v2(struct rtlbt_firmware *fw, uint8_t rom_version,
uint8_t key_id)
{
struct rtlbt_fw_header_v2 *hdr;
struct rtlbt_section *section;
struct rtlbt_patch_entry *entry;
uint32_t num_sections;
uint32_t section_len;
uint32_t opcode;
int seclen, len = 0, patch_len = 0;
uint32_t i;
uint8_t *section_data, *patch_buf;
struct rtlbt_patch_list patch_list =
SLIST_HEAD_INITIALIZER(patch_list);
struct rtlbt_iov iov = {
.data = fw->buf,
.len = fw->len - 7,
};
hdr = rtlbt_iov_fetch(&iov, sizeof(*hdr));
if (hdr == NULL) {
errno = EINVAL;
return (-1);
}
num_sections = le32toh(hdr->num_sections);
rtlbt_debug("FW version %02x%02x%02x%02x-%02x%02x%02x%02x",
hdr->fw_version[0], hdr->fw_version[1],
hdr->fw_version[2], hdr->fw_version[3],
hdr->fw_version[4], hdr->fw_version[5],
hdr->fw_version[6], hdr->fw_version[7]);
for (i = 0; i < num_sections; i++) {
section = rtlbt_iov_fetch(&iov, sizeof(*section));
if (section == NULL)
break;
section_len = le32toh(section->len);
opcode = le32toh(section->opcode);
rtlbt_debug("section, opcode 0x%08x", section->opcode);
section_data = rtlbt_iov_fetch(&iov, section_len);
if (section_data == NULL)
break;
seclen = 0;
switch (opcode) {
case RTLBT_PATCH_SECURITY_HEADER:
if (key_id == 0)
break;
case RTLBT_PATCH_SNIPPETS:
case RTLBT_PATCH_DUMMY_HEADER:
seclen = rtlbt_parse_section(&patch_list, opcode,
section_data, section_len, rom_version, key_id);
break;
default:
break;
}
if (seclen < 0) {
rtlbt_err("Section parse (0x%08x) failed. err %d",
opcode, errno);
return (-1);
}
len += seclen;
}
if (len == 0) {
errno = ENOMSG;
return (-1);
}
patch_buf = calloc(1, len);
if (patch_buf == NULL) {
errno = ENOMEM;
return (-1);
}
SLIST_MERGESORT(&patch_list, NULL,
rtlbt_patch_entry_cmp, rtlbt_patch_entry, next);
while (!SLIST_EMPTY(&patch_list)) {
entry = SLIST_FIRST(&patch_list);
rtlbt_debug("opcode 0x%08x, addr 0x%p, len 0x%x",
entry->opcode, entry->data, entry->len);
memcpy(patch_buf + patch_len, entry->data, entry->len);
patch_len += entry->len;
SLIST_REMOVE_HEAD(&patch_list, next);
free(entry);
}
if (patch_len == 0) {
errno = EPERM;
return (-1);
}
free(fw->buf);
fw->buf = patch_buf;
fw->len = patch_len;
return (0);
}
int
rtlbt_append_fwfile(struct rtlbt_firmware *fw, struct rtlbt_firmware *opt)
{
uint8_t *buf;
int len;
len = fw->len + opt->len;
buf = realloc(fw->buf, len);
if (buf == NULL)
return (-1);
memcpy(buf + fw->len, opt->buf, opt->len);
fw->buf = buf;
fw->len = len;
return (0);
}