trezor-core/extmod/modtrezormsg/modtrezormsg-unix.h

68 lines
1.5 KiB
C
Raw Normal View History

2016-04-28 18:15:18 -07:00
#include <arpa/inet.h>
#include <sys/socket.h>
2016-04-29 06:05:08 -07:00
#include <fcntl.h>
2016-04-28 18:15:18 -07:00
#include <assert.h>
#include <stdlib.h>
2016-04-28 18:15:18 -07:00
#define TREZOR_UDP_PORT 21324
2016-04-28 18:15:18 -07:00
static int s;
static struct sockaddr_in si_me, si_other;
static socklen_t slen = 0;
void msg_init(void)
{
2016-04-29 06:05:08 -07:00
s = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
2016-04-28 18:15:18 -07:00
assert(s != -1);
2016-04-29 06:05:08 -07:00
fcntl(s, F_SETFL, O_NONBLOCK);
2016-04-28 18:15:18 -07:00
si_me.sin_family = AF_INET;
const char *ip = getenv("TREZOR_UDP_IP");
if (ip) {
si_me.sin_addr.s_addr = inet_addr(ip);
} else {
si_me.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
}
const char *port = getenv("TREZOR_UDP_PORT");
if (port) {
si_me.sin_port = htons(atoi(port));
} else {
si_me.sin_port = htons(TREZOR_UDP_PORT);
}
2016-04-28 18:15:18 -07:00
int b;
b = bind(s, (struct sockaddr*)&si_me, sizeof(si_me));
assert(b != -1);
}
2016-05-23 08:53:42 -07:00
ssize_t msg_recv(uint8_t *iface, uint8_t *buf, size_t len)
2016-04-28 18:15:18 -07:00
{
struct sockaddr_in si;
2016-05-18 10:27:42 -07:00
socklen_t sl = sizeof(si);
2016-05-23 08:53:42 -07:00
memset(buf, 0, len);
iface = 0; // UDP uses always interface 0
size_t r = recvfrom(s, buf, len, MSG_DONTWAIT, (struct sockaddr *)&si, &sl);
if (r < 0) {
return r;
2016-04-28 18:15:18 -07:00
}
si_other = si;
slen = sl;
2016-05-23 08:53:42 -07:00
return r;
2016-04-28 18:15:18 -07:00
}
2016-05-23 08:53:42 -07:00
ssize_t msg_send(uint8_t iface, const uint8_t *buf, size_t len)
2016-04-28 18:15:18 -07:00
{
2016-05-23 08:53:42 -07:00
(void)iface; // ignore interface for UDP
ssize_t r = -1;
2016-04-28 18:15:18 -07:00
if (slen) {
r = sendto(s, buf, len, MSG_DONTWAIT, (const struct sockaddr *)&si_other, slen);
}
return r;
}
// from modtrezorui:
uint32_t trezorui_poll_sdl_event(void);
#define msg_poll_ui_event trezorui_poll_sdl_event