1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
|
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2011-2014 Intel Corporation
* Copyright (C) 2004-2010 Marcel Holtmann <marcel@holtmann.org>
*
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define _GNU_SOURCE
#include <stdio.h>
#include <errno.h>
#include <ctype.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <limits.h>
#include <sys/param.h>
#include <sys/epoll.h>
#include <sys/uio.h>
#include "lib/bluetooth.h"
#include "lib/hci.h"
#include "src/shared/mainloop.h"
#include "btdev.h"
#include "serial.h"
#define uninitialized_var(x) x = x
struct serial {
enum serial_type type;
uint16_t id;
int fd;
char path[PATH_MAX];
struct btdev *btdev;
uint8_t *pkt_data;
uint8_t pkt_type;
uint16_t pkt_expect;
uint16_t pkt_len;
uint16_t pkt_offset;
};
static void open_pty(struct serial *serial);
static void serial_destroy(void *user_data)
{
struct serial *serial = user_data;
btdev_destroy(serial->btdev);
serial->btdev = NULL;
close(serial->fd);
serial->fd = -1;
}
static void serial_write_callback(const struct iovec *iov, int iovlen,
void *user_data)
{
struct serial *serial = user_data;
ssize_t written;
written = writev(serial->fd, iov, iovlen);
if (written < 0)
return;
}
static void serial_read_callback(int fd, uint32_t events, void *user_data)
{
struct serial *serial = user_data;
uint8_t buf[4096];
uint8_t *ptr = buf;
ssize_t len;
uint16_t count;
if (events & (EPOLLERR | EPOLLHUP)) {
mainloop_remove_fd(serial->fd);
open_pty(serial);
return;
}
again:
len = read(serial->fd, buf, sizeof(buf));
if (len < 0) {
if (errno == EAGAIN)
goto again;
return;
}
if (!serial->btdev)
return;
count = len;
while (count > 0) {
hci_command_hdr *cmd_hdr;
if (!serial->pkt_data) {
serial->pkt_type = ptr[0];
switch (serial->pkt_type) {
case HCI_COMMAND_PKT:
if (count < HCI_COMMAND_HDR_SIZE + 1) {
serial->pkt_offset += len;
return;
}
cmd_hdr = (hci_command_hdr *) (ptr + 1);
serial->pkt_expect = HCI_COMMAND_HDR_SIZE +
cmd_hdr->plen + 1;
serial->pkt_data = malloc(serial->pkt_expect);
serial->pkt_len = 0;
break;
default:
printf("packet error\n");
return;
}
serial->pkt_offset = 0;
}
if (count >= serial->pkt_expect) {
memcpy(serial->pkt_data + serial->pkt_len,
ptr, serial->pkt_expect);
ptr += serial->pkt_expect;
count -= serial->pkt_expect;
btdev_receive_h4(serial->btdev, serial->pkt_data,
serial->pkt_len + serial->pkt_expect);
free(serial->pkt_data);
serial->pkt_data = NULL;
} else {
memcpy(serial->pkt_data + serial->pkt_len, ptr, count);
serial->pkt_len += count;
serial->pkt_expect -= count;
count = 0;
}
}
}
static void open_pty(struct serial *serial)
{
enum btdev_type uninitialized_var(type);
serial->fd = posix_openpt(O_RDWR | O_NOCTTY);
if (serial->fd < 0) {
perror("Failed to get central pseudo terminal");
return;
}
if (grantpt(serial->fd) < 0) {
perror("Failed to grant peripheral pseudo terminal");
close(serial->fd);
serial->fd = -1;
return;
}
if (unlockpt(serial->fd) < 0) {
perror("Failed to unlock peripheral pseudo terminal");
close(serial->fd);
serial->fd = -1;
return;
}
ptsname_r(serial->fd, serial->path, sizeof(serial->path));
printf("Pseudo terminal at %s\n", serial->path);
switch (serial->type) {
case SERIAL_TYPE_BREDRLE:
type = BTDEV_TYPE_BREDRLE;
break;
case SERIAL_TYPE_BREDR:
type = BTDEV_TYPE_BREDR;
break;
case SERIAL_TYPE_LE:
type = BTDEV_TYPE_LE;
break;
case SERIAL_TYPE_AMP:
type = BTDEV_TYPE_AMP;
break;
}
serial->btdev = btdev_create(type, serial->id);
if (!serial->btdev) {
close(serial->fd);
serial->fd = -1;
return;
}
btdev_set_send_handler(serial->btdev, serial_write_callback, serial);
if (mainloop_add_fd(serial->fd, EPOLLIN, serial_read_callback,
serial, serial_destroy) < 0) {
btdev_destroy(serial->btdev);
serial->btdev = NULL;
close(serial->fd);
serial->fd = -1;
return;
}
}
struct serial *serial_open(enum serial_type type)
{
struct serial *serial;
enum btdev_type uninitialized_var(dev_type);
serial = malloc(sizeof(*serial));
if (!serial)
return NULL;
memset(serial, 0, sizeof(*serial));
serial->type = type;
serial->id = 0x42;
open_pty(serial);
return serial;
}
void serial_close(struct serial *serial)
{
if (!serial)
return;
mainloop_remove_fd(serial->fd);
free(serial);
}
|