#include "xlat/af_packet_types.h"
#include "xlat/bdaddr_types.h"
+#include "xlat/bluetooth_l2_psm.h"
#include "xlat/hci_channels.h"
#define SIZEOF_SA_FAMILY sizeof(((struct sockaddr *) 0)->sa_family)
#endif
}
+static void
+print_bluetooth_l2_psm(const char *prefix, uint16_t psm)
+{
+ const uint16_t psm_he = btohs(psm);
+ const char *psm_name = xlookup(bluetooth_l2_psm, psm_he);
+ const bool psm_str = psm_name || (psm_he >= L2CAP_PSM_LE_DYN_START
+ && psm_he <= L2CAP_PSM_LE_DYN_END)
+ || (psm_he >= L2CAP_PSM_DYN_START);
+
+ tprintf("%shtobs(", prefix);
+
+ if (xlat_verbose(xlat_verbosity) != XLAT_STYLE_ABBREV || !psm_str)
+ tprintf("%#x", psm_he);
+
+ if (xlat_verbose(xlat_verbosity) == XLAT_STYLE_RAW)
+ goto print_bluetooth_l2_psm_end;
+
+ if (xlat_verbose(xlat_verbosity) == XLAT_STYLE_VERBOSE || !psm_str)
+ tprints(" /* ");
+
+ if (psm_name) {
+ tprints(psm_name);
+ } else if (psm_he >= L2CAP_PSM_LE_DYN_START
+ && psm_he <= L2CAP_PSM_LE_DYN_END) {
+ print_xlat(L2CAP_PSM_LE_DYN_START);
+ tprintf(" + %u", psm_he - L2CAP_PSM_LE_DYN_START);
+ } else if (psm_he >= L2CAP_PSM_DYN_START) {
+ print_xlat(L2CAP_PSM_DYN_START);
+ tprintf(" + %u", psm_he - L2CAP_PSM_DYN_START);
+ } else {
+ tprints("L2CAP_PSM_???");
+ }
+
+ if (xlat_verbose(xlat_verbosity) == XLAT_STYLE_VERBOSE || !psm_str)
+ tprints(" */");
+
+print_bluetooth_l2_psm_end:
+ tprints(")");
+}
+
static void
print_sockaddr_data_bt(const void *const buf, const int addrlen)
{
}
case sizeof(struct sockaddr_l2): {
const struct sockaddr_l2 *const l2 = buf;
- tprintf("l2_psm=htobs(%hu)"
- ", l2_bdaddr=%02x:%02x:%02x:%02x:%02x:%02x"
+ print_bluetooth_l2_psm("l2_psm=", l2->l2_psm);
+ tprintf(", l2_bdaddr=%02x:%02x:%02x:%02x:%02x:%02x"
", l2_cid=htobs(%hu), l2_bdaddr_type=",
- btohs(l2->l2_psm),
l2->l2_bdaddr.b[0], l2->l2_bdaddr.b[1],
l2->l2_bdaddr.b[2], l2->l2_bdaddr.b[3],
l2->l2_bdaddr.b[4], l2->l2_bdaddr.b[5],
int ret = connect(-1, l2, len);
printf("connect(-1, {sa_family=AF_BLUETOOTH"
- ", l2_psm=htobs(%hu)"
+ ", l2_psm=htobs(L2CAP_PSM_DYN_START + %hu)"
", l2_bdaddr=%02x:%02x:%02x:%02x:%02x:%02x"
", l2_cid=htobs(%hu), l2_bdaddr_type=0xce /* BDADDR_??? */}"
- ", %u) = %d EBADF (%m)\n", h_psm,
+ ", %u) = %d EBADF (%m)\n", h_psm - 0x1001,
c_l2.l2_bdaddr.b[0], c_l2.l2_bdaddr.b[1],
c_l2.l2_bdaddr.b[2], c_l2.l2_bdaddr.b[3],
c_l2.l2_bdaddr.b[4], c_l2.l2_bdaddr.b[5],
h_cid, len, ret);
+ c_l2.l2_psm = htobs(1);
c_l2.l2_bdaddr_type = BDADDR_LE_RANDOM;
memcpy(l2, &c_l2, sizeof(c_l2));
ret = connect(-1, l2, len);
printf("connect(-1, {sa_family=AF_BLUETOOTH"
- ", l2_psm=htobs(%hu)"
+ ", l2_psm=htobs(L2CAP_PSM_SDP)"
", l2_bdaddr=%02x:%02x:%02x:%02x:%02x:%02x"
", l2_cid=htobs(%hu), l2_bdaddr_type=BDADDR_LE_RANDOM}"
- ", %u) = %d EBADF (%m)\n", h_psm,
+ ", %u) = %d EBADF (%m)\n",
c_l2.l2_bdaddr.b[0], c_l2.l2_bdaddr.b[1],
c_l2.l2_bdaddr.b[2], c_l2.l2_bdaddr.b[3],
c_l2.l2_bdaddr.b[4], c_l2.l2_bdaddr.b[5],
h_cid, len, ret);
+ c_l2.l2_psm = htobs(0xbad);
c_l2.l2_bdaddr_type = 3;
memcpy(l2, &c_l2, sizeof(c_l2));
ret = connect(-1, l2, len);
printf("connect(-1, {sa_family=AF_BLUETOOTH"
- ", l2_psm=htobs(%hu)"
+ ", l2_psm=htobs(0xbad /* L2CAP_PSM_??? */)"
", l2_bdaddr=%02x:%02x:%02x:%02x:%02x:%02x"
", l2_cid=htobs(%hu), l2_bdaddr_type=0x3 /* BDADDR_??? */}"
- ", %u) = %d EBADF (%m)\n", h_psm,
+ ", %u) = %d EBADF (%m)\n",
c_l2.l2_bdaddr.b[0], c_l2.l2_bdaddr.b[1],
c_l2.l2_bdaddr.b[2], c_l2.l2_bdaddr.b[3],
c_l2.l2_bdaddr.b[4], c_l2.l2_bdaddr.b[5],