87da68ee0d
Use UHID output reports to synchronize CapsLock and VerrNum states. PR #4473 <https://github.com/Genymobile/scrcpy/pull/4473> Co-authored-by: Romain Vimont <rom@rom1v.com> Signed-off-by: Romain Vimont <rom@rom1v.com>
94 lines
2.5 KiB
C
94 lines
2.5 KiB
C
#include "device_msg.h"
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "util/binary.h"
|
|
#include "util/log.h"
|
|
|
|
ssize_t
|
|
sc_device_msg_deserialize(const uint8_t *buf, size_t len,
|
|
struct sc_device_msg *msg) {
|
|
if (!len) {
|
|
return 0; // no message
|
|
}
|
|
|
|
msg->type = buf[0];
|
|
switch (msg->type) {
|
|
case DEVICE_MSG_TYPE_CLIPBOARD: {
|
|
if (len < 5) {
|
|
// at least type + empty string length
|
|
return 0; // no complete message
|
|
}
|
|
size_t clipboard_len = sc_read32be(&buf[1]);
|
|
if (clipboard_len > len - 5) {
|
|
return 0; // no complete message
|
|
}
|
|
char *text = malloc(clipboard_len + 1);
|
|
if (!text) {
|
|
LOG_OOM();
|
|
return -1;
|
|
}
|
|
if (clipboard_len) {
|
|
memcpy(text, &buf[5], clipboard_len);
|
|
}
|
|
text[clipboard_len] = '\0';
|
|
|
|
msg->clipboard.text = text;
|
|
return 5 + clipboard_len;
|
|
}
|
|
case DEVICE_MSG_TYPE_ACK_CLIPBOARD: {
|
|
if (len < 9) {
|
|
return 0; // no complete message
|
|
}
|
|
uint64_t sequence = sc_read64be(&buf[1]);
|
|
msg->ack_clipboard.sequence = sequence;
|
|
return 9;
|
|
}
|
|
case DEVICE_MSG_TYPE_UHID_OUTPUT: {
|
|
if (len < 5) {
|
|
// at least id + size
|
|
return 0; // not available
|
|
}
|
|
uint16_t id = sc_read16be(&buf[1]);
|
|
size_t size = sc_read16be(&buf[3]);
|
|
if (size < len - 5) {
|
|
return 0; // not available
|
|
}
|
|
uint8_t *data = malloc(size);
|
|
if (!data) {
|
|
LOG_OOM();
|
|
return -1;
|
|
}
|
|
if (size) {
|
|
memcpy(data, &buf[5], size);
|
|
}
|
|
|
|
msg->uhid_output.id = id;
|
|
msg->uhid_output.size = size;
|
|
msg->uhid_output.data = data;
|
|
|
|
return 5 + size;
|
|
}
|
|
default:
|
|
LOGW("Unknown device message type: %d", (int) msg->type);
|
|
return -1; // error, we cannot recover
|
|
}
|
|
}
|
|
|
|
void
|
|
sc_device_msg_destroy(struct sc_device_msg *msg) {
|
|
switch (msg->type) {
|
|
case DEVICE_MSG_TYPE_CLIPBOARD:
|
|
free(msg->clipboard.text);
|
|
break;
|
|
case DEVICE_MSG_TYPE_UHID_OUTPUT:
|
|
free(msg->uhid_output.data);
|
|
break;
|
|
default:
|
|
// nothing to do
|
|
break;
|
|
}
|
|
}
|