mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
1122 lines
31 KiB
C
1122 lines
31 KiB
C
/* PipeWire */
|
|
/* SPDX-FileCopyrightText: Copyright © 2022 Wim Taymans <wim.taymans@gmail.com> */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#include "config.h"
|
|
|
|
#include <limits.h>
|
|
#include <unistd.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/ioctl.h>
|
|
#include <arpa/inet.h>
|
|
#include <netinet/ip.h>
|
|
#include <netinet/in.h>
|
|
#include <net/if.h>
|
|
#include <ctype.h>
|
|
|
|
#include <spa/utils/hook.h>
|
|
#include <spa/utils/result.h>
|
|
#include <spa/utils/ringbuffer.h>
|
|
#include <spa/utils/json.h>
|
|
#include <spa/param/audio/format-utils.h>
|
|
#include <spa/debug/types.h>
|
|
|
|
#include <pipewire/pipewire.h>
|
|
#include <pipewire/impl.h>
|
|
|
|
#include <module-rtp/rtp.h>
|
|
|
|
/** \page page_module_rtp_sink PipeWire Module: RTP sink
|
|
*
|
|
* The `rtp-sink` module creates a PipeWire sink that sends audio
|
|
* RTP packets.
|
|
*
|
|
* ## Module Options
|
|
*
|
|
* Options specific to the behavior of this module
|
|
*
|
|
* - `source.ip =<str>`: source IP address, default "0.0.0.0"
|
|
* - `destination.ip =<str>`: destination IP address, default "224.0.0.56"
|
|
* - `destination.port =<int>`: destination port, default random beteen 46000 and 47024
|
|
* - `local.ifname = <str>`: interface name to use
|
|
* - `net.mtu = <int>`: MTU to use, default 1280
|
|
* - `net.ttl = <int>`: TTL to use, default 1
|
|
* - `net.loop = <bool>`: loopback multicast, default false
|
|
* - `sess.min-ptime = <int>`: minimum packet time in milliseconds, default 2
|
|
* - `sess.max-ptime = <int>`: maximum packet time in milliseconds, default 20
|
|
* - `sess.name = <str>`: a session name
|
|
* - `sess.ts-offset = <int>`: an offset to apply to the timestamp, default -1 = random offset
|
|
* - `sess.ts-refclk = <string>`: the name of a reference clock
|
|
* - `sess.media = <string>`: the session media type audio|midi, default audio
|
|
* - `stream.props = {}`: properties to be passed to the stream
|
|
*
|
|
* ## General options
|
|
*
|
|
* Options with well-known behavior:
|
|
*
|
|
* - \ref PW_KEY_REMOTE_NAME
|
|
* - \ref PW_KEY_AUDIO_FORMAT
|
|
* - \ref PW_KEY_AUDIO_RATE
|
|
* - \ref PW_KEY_AUDIO_CHANNELS
|
|
* - \ref SPA_KEY_AUDIO_POSITION
|
|
* - \ref PW_KEY_NODE_NAME
|
|
* - \ref PW_KEY_NODE_DESCRIPTION
|
|
* - \ref PW_KEY_MEDIA_NAME
|
|
* - \ref PW_KEY_NODE_GROUP
|
|
* - \ref PW_KEY_NODE_LATENCY
|
|
* - \ref PW_KEY_NODE_VIRTUAL
|
|
* - \ref PW_KEY_MEDIA_CLASS
|
|
*
|
|
* ## Example configuration
|
|
*\code{.unparsed}
|
|
* context.modules = [
|
|
* { name = libpipewire-module-rtp-sink
|
|
* args = {
|
|
* #local.ifname = "eth0"
|
|
* #source.ip = "0.0.0.0"
|
|
* #destination.ip = "224.0.0.56"
|
|
* #destination.port = 46000
|
|
* #net.mtu = 1280
|
|
* #net.ttl = 1
|
|
* #net.loop = false
|
|
* #sess.min-ptime = 2
|
|
* #sess.max-ptime = 20
|
|
* #sess.name = "PipeWire RTP stream"
|
|
* #sess.media = audio
|
|
* #audio.format = "S16BE"
|
|
* #audio.rate = 48000
|
|
* #audio.channels = 2
|
|
* #audio.position = [ FL FR ]
|
|
* stream.props = {
|
|
* node.name = "rtp-sink"
|
|
* }
|
|
* }
|
|
*}
|
|
*]
|
|
*\endcode
|
|
*
|
|
* \since 0.3.60
|
|
*/
|
|
|
|
#define NAME "rtp-sink"
|
|
|
|
PW_LOG_TOPIC_STATIC(mod_topic, "mod." NAME);
|
|
#define PW_LOG_TOPIC_DEFAULT mod_topic
|
|
|
|
#define BUFFER_SIZE (1u<<20)
|
|
#define BUFFER_MASK (BUFFER_SIZE-1)
|
|
|
|
#define DEFAULT_SESS_MEDIA "audio"
|
|
|
|
#define DEFAULT_FORMAT "S16BE"
|
|
#define DEFAULT_RATE 48000
|
|
#define DEFAULT_CHANNELS 2
|
|
#define DEFAULT_POSITION "[ FL FR ]"
|
|
|
|
#define DEFAULT_PORT 46000
|
|
#define DEFAULT_SOURCE_IP "0.0.0.0"
|
|
#define DEFAULT_DESTINATION_IP "224.0.0.56"
|
|
#define DEFAULT_TTL 1
|
|
#define DEFAULT_MTU 1280
|
|
#define DEFAULT_LOOP false
|
|
#define DEFAULT_DSCP 34 /* Default to AES-67 AF41 (34) */
|
|
|
|
#define DEFAULT_MIN_PTIME 2
|
|
#define DEFAULT_MAX_PTIME 20
|
|
#define DEFAULT_TS_OFFSET -1
|
|
|
|
#define USAGE "source.ip=<source IP address, default:"DEFAULT_SOURCE_IP"> " \
|
|
"destination.ip=<destination IP address, default:"DEFAULT_DESTINATION_IP"> " \
|
|
"destination.port=<int, default random beteen 46000 and 47024> " \
|
|
"local.ifname=<local interface name to use> " \
|
|
"net.mtu=<desired MTU, default:"SPA_STRINGIFY(DEFAULT_MTU)"> " \
|
|
"net.ttl=<desired TTL, default:"SPA_STRINGIFY(DEFAULT_TTL)"> " \
|
|
"net.loop=<desired loopback, default:"SPA_STRINGIFY(DEFAULT_LOOP)"> " \
|
|
"net.dscp=<desired DSCP, default:"SPA_STRINGIFY(DEFAULT_DSCP)"> " \
|
|
"sess.name=<a name for the session> " \
|
|
"sess.min-ptime=<minimum packet time in milliseconds, default:2> " \
|
|
"sess.max-ptime=<maximum packet time in milliseconds, default:20> " \
|
|
"sess.media=<media type, audio or midi, default:audio> " \
|
|
"audio.format=<format, default:"DEFAULT_FORMAT"> " \
|
|
"audio.rate=<sample rate, default:"SPA_STRINGIFY(DEFAULT_RATE)"> " \
|
|
"audio.channels=<number of channels, default:"SPA_STRINGIFY(DEFAULT_CHANNELS)"> "\
|
|
"audio.position=<channel map, default:"DEFAULT_POSITION"> " \
|
|
"stream.props= { key=value ... }"
|
|
|
|
static const struct spa_dict_item module_info[] = {
|
|
{ PW_KEY_MODULE_AUTHOR, "Wim Taymans <wim.taymans@gmail.com>" },
|
|
{ PW_KEY_MODULE_DESCRIPTION, "RTP Sink" },
|
|
{ PW_KEY_MODULE_USAGE, USAGE },
|
|
{ PW_KEY_MODULE_VERSION, PACKAGE_VERSION },
|
|
};
|
|
|
|
struct impl {
|
|
struct pw_context *context;
|
|
|
|
struct pw_impl_module *module;
|
|
struct spa_hook module_listener;
|
|
struct pw_properties *props;
|
|
|
|
struct pw_loop *loop;
|
|
|
|
struct pw_core *core;
|
|
struct spa_hook core_listener;
|
|
struct spa_hook core_proxy_listener;
|
|
|
|
struct spa_source *timer;
|
|
|
|
struct pw_properties *stream_props;
|
|
struct pw_stream *stream;
|
|
struct spa_hook stream_listener;
|
|
|
|
struct spa_io_position *io_position;
|
|
|
|
unsigned int do_disconnect:1;
|
|
|
|
char *ifname;
|
|
char *session_name;
|
|
uint32_t mtu;
|
|
bool ttl;
|
|
bool mcast_loop;
|
|
uint32_t dscp;
|
|
float min_ptime;
|
|
float max_ptime;
|
|
uint32_t psamples;
|
|
uint32_t min_samples;
|
|
uint32_t max_samples;
|
|
|
|
struct sockaddr_storage src_addr;
|
|
socklen_t src_len;
|
|
|
|
uint16_t dst_port;
|
|
struct sockaddr_storage dst_addr;
|
|
socklen_t dst_len;
|
|
|
|
struct spa_audio_info info;
|
|
const struct format_info *format_info;
|
|
uint32_t rate;
|
|
uint32_t stride;
|
|
int payload;
|
|
uint16_t seq;
|
|
uint32_t ssrc;
|
|
uint32_t ts_offset;
|
|
char *ts_refclk;
|
|
|
|
struct spa_ringbuffer ring;
|
|
uint8_t buffer[BUFFER_SIZE];
|
|
|
|
int rtp_fd;
|
|
|
|
unsigned sync:1;
|
|
unsigned apple_midi:1;
|
|
};
|
|
|
|
static void stream_destroy(void *d)
|
|
{
|
|
struct impl *impl = d;
|
|
spa_hook_remove(&impl->stream_listener);
|
|
impl->stream = NULL;
|
|
}
|
|
|
|
static inline void
|
|
set_iovec(struct spa_ringbuffer *rbuf, void *buffer, uint32_t size,
|
|
uint32_t offset, struct iovec *iov, uint32_t len)
|
|
{
|
|
iov[0].iov_len = SPA_MIN(len, size - offset);
|
|
iov[0].iov_base = SPA_PTROFF(buffer, offset, void);
|
|
iov[1].iov_len = len - iov[0].iov_len;
|
|
iov[1].iov_base = buffer;
|
|
}
|
|
|
|
struct format_info {
|
|
uint32_t media_subtype;
|
|
uint32_t format;
|
|
uint32_t size;
|
|
const char *mime;
|
|
const char *media_type;
|
|
};
|
|
|
|
static const struct format_info audio_format_info[] = {
|
|
{ SPA_MEDIA_SUBTYPE_raw, SPA_AUDIO_FORMAT_U8, 1, "L8", "audio" },
|
|
{ SPA_MEDIA_SUBTYPE_raw, SPA_AUDIO_FORMAT_ALAW, 1, "PCMA", "audio" },
|
|
{ SPA_MEDIA_SUBTYPE_raw, SPA_AUDIO_FORMAT_ULAW, 1, "PCMU", "audio" },
|
|
{ SPA_MEDIA_SUBTYPE_raw, SPA_AUDIO_FORMAT_S16_BE, 2, "L16", "audio" },
|
|
{ SPA_MEDIA_SUBTYPE_raw, SPA_AUDIO_FORMAT_S24_BE, 3, "L24", "audio" },
|
|
{ SPA_MEDIA_SUBTYPE_control, 0, 1, "rtp-midi", "audio" },
|
|
};
|
|
|
|
static const struct format_info *find_audio_format_info(const struct spa_audio_info *info)
|
|
{
|
|
SPA_FOR_EACH_ELEMENT_VAR(audio_format_info, f)
|
|
if (f->media_subtype == info->media_subtype &&
|
|
(f->format == 0 || f->format == info->info.raw.format))
|
|
return f;
|
|
return NULL;
|
|
}
|
|
|
|
static ssize_t send_packet(struct impl *impl, struct msghdr *msg)
|
|
{
|
|
ssize_t n;
|
|
n = sendmsg(impl->rtp_fd, msg, MSG_NOSIGNAL);
|
|
if (n < 0) {
|
|
switch (errno) {
|
|
case ECONNREFUSED:
|
|
case ECONNRESET:
|
|
pw_log_debug("remote end not listening");
|
|
break;
|
|
default:
|
|
pw_log_warn("sendmsg() failed, seq:%u dropped: %m",
|
|
impl->seq);
|
|
break;
|
|
}
|
|
}
|
|
impl->seq++;
|
|
return n;
|
|
}
|
|
|
|
static void flush_audio_packets(struct impl *impl)
|
|
{
|
|
int32_t avail;
|
|
uint32_t stride, timestamp;
|
|
struct iovec iov[3];
|
|
struct msghdr msg;
|
|
struct rtp_header header;
|
|
int32_t tosend;
|
|
|
|
avail = spa_ringbuffer_get_read_index(&impl->ring, ×tamp);
|
|
tosend = impl->psamples;
|
|
|
|
if (avail < tosend)
|
|
return;
|
|
|
|
stride = impl->stride;
|
|
|
|
spa_zero(header);
|
|
header.v = 2;
|
|
header.pt = impl->payload;
|
|
header.ssrc = htonl(impl->ssrc);
|
|
|
|
iov[0].iov_base = &header;
|
|
iov[0].iov_len = sizeof(header);
|
|
|
|
msg.msg_name = NULL;
|
|
msg.msg_namelen = 0;
|
|
msg.msg_iov = iov;
|
|
msg.msg_iovlen = 3;
|
|
msg.msg_control = NULL;
|
|
msg.msg_controllen = 0;
|
|
msg.msg_flags = 0;
|
|
|
|
while (avail >= tosend) {
|
|
header.sequence_number = htons(impl->seq);
|
|
header.timestamp = htonl(impl->ts_offset + timestamp);
|
|
|
|
set_iovec(&impl->ring,
|
|
impl->buffer, BUFFER_SIZE,
|
|
(timestamp * stride) & BUFFER_MASK,
|
|
&iov[1], tosend * stride);
|
|
|
|
pw_log_trace("sending %d timestamp:%d", tosend, timestamp);
|
|
|
|
send_packet(impl, &msg);
|
|
|
|
timestamp += tosend;
|
|
avail -= tosend;
|
|
}
|
|
spa_ringbuffer_read_update(&impl->ring, timestamp);
|
|
}
|
|
|
|
static void stream_audio_process(struct impl *impl)
|
|
{
|
|
struct pw_buffer *buf;
|
|
struct spa_data *d;
|
|
uint32_t offs, size, timestamp, expected_timestamp, stride;
|
|
int32_t filled, wanted;
|
|
|
|
if ((buf = pw_stream_dequeue_buffer(impl->stream)) == NULL) {
|
|
pw_log_debug("Out of stream buffers: %m");
|
|
return;
|
|
}
|
|
d = buf->buffer->datas;
|
|
|
|
offs = SPA_MIN(d[0].chunk->offset, d[0].maxsize);
|
|
size = SPA_MIN(d[0].chunk->size, d[0].maxsize - offs);
|
|
stride = impl->stride;
|
|
wanted = size / stride;
|
|
|
|
filled = spa_ringbuffer_get_write_index(&impl->ring, &expected_timestamp);
|
|
if (SPA_LIKELY(impl->io_position))
|
|
timestamp = impl->io_position->clock.position;
|
|
else
|
|
timestamp = expected_timestamp;
|
|
|
|
if (impl->sync) {
|
|
if (expected_timestamp != timestamp) {
|
|
pw_log_warn("expected %u != timestamp %u", expected_timestamp, timestamp);
|
|
impl->sync = false;
|
|
} else if (filled + wanted > (int32_t)(BUFFER_SIZE / stride)) {
|
|
pw_log_warn("overrun %u + %u > %u", filled, wanted, BUFFER_SIZE / stride);
|
|
impl->sync = false;
|
|
}
|
|
}
|
|
if (!impl->sync) {
|
|
pw_log_info("sync to timestamp:%u seq:%u ts_offset:%u SSRC:%u",
|
|
timestamp, impl->seq, impl->ts_offset, impl->ssrc);
|
|
impl->ring.readindex = impl->ring.writeindex = timestamp;
|
|
memset(impl->buffer, 0, BUFFER_SIZE);
|
|
impl->sync = true;
|
|
}
|
|
|
|
spa_ringbuffer_write_data(&impl->ring,
|
|
impl->buffer,
|
|
BUFFER_SIZE,
|
|
(timestamp * stride) & BUFFER_MASK,
|
|
SPA_PTROFF(d[0].data, offs, void), wanted * stride);
|
|
timestamp += wanted;
|
|
spa_ringbuffer_write_update(&impl->ring, timestamp);
|
|
|
|
pw_stream_queue_buffer(impl->stream, buf);
|
|
|
|
flush_audio_packets(impl);
|
|
}
|
|
|
|
static int write_event(uint8_t *p, uint32_t value, void *ev, uint32_t size)
|
|
{
|
|
uint64_t buffer;
|
|
uint8_t b;
|
|
int count = 0;
|
|
|
|
buffer = value & 0x7f;
|
|
while ((value >>= 7)) {
|
|
buffer <<= 8;
|
|
buffer |= ((value & 0x7f) | 0x80);
|
|
}
|
|
do {
|
|
b = buffer & 0xff;
|
|
p[count++] = b;
|
|
buffer >>= 8;
|
|
} while (b & 0x80);
|
|
|
|
memcpy(&p[count], ev, size);
|
|
return count + size;
|
|
}
|
|
|
|
static void flush_midi_packets(struct impl *impl, struct spa_pod_sequence *sequence, uint32_t timestamp)
|
|
{
|
|
struct spa_pod_control *c;
|
|
struct rtp_header header;
|
|
struct rtp_midi_header midi_header;
|
|
struct iovec iov[3];
|
|
struct msghdr msg;
|
|
uint32_t len, prev_offset, base;
|
|
|
|
spa_zero(header);
|
|
header.v = 2;
|
|
header.pt = impl->payload;
|
|
header.ssrc = htonl(impl->ssrc);
|
|
|
|
spa_zero(midi_header);
|
|
midi_header.b = 1;
|
|
midi_header.z = 1;
|
|
|
|
iov[0].iov_base = &header;
|
|
iov[0].iov_len = sizeof(header);
|
|
iov[1].iov_base = &midi_header;
|
|
iov[1].iov_len = sizeof(midi_header);
|
|
iov[2].iov_base = impl->buffer;
|
|
iov[2].iov_len = 0;
|
|
|
|
spa_zero(msg);
|
|
msg.msg_iov = iov;
|
|
msg.msg_iovlen = 3;
|
|
|
|
prev_offset = len = base = 0;
|
|
|
|
SPA_POD_SEQUENCE_FOREACH(sequence, c) {
|
|
void *ev;
|
|
uint32_t size, delta;
|
|
|
|
if (c->type != SPA_CONTROL_Midi)
|
|
continue;
|
|
|
|
ev = SPA_POD_BODY(&c->value),
|
|
size = SPA_POD_BODY_SIZE(&c->value);
|
|
|
|
if (len > 0 && (len + size > impl->mtu ||
|
|
c->offset - base > impl->max_samples)) {
|
|
/* flush packet when we have one and when it's either
|
|
* too large or has too much data. */
|
|
midi_header.len = (len >> 8) & 0xf;
|
|
midi_header.len_b = len & 0xff;
|
|
iov[2].iov_len = len;
|
|
|
|
pw_log_debug("sending %d timestamp:%d %u %u",
|
|
len, timestamp + base,
|
|
c->offset, impl->max_samples);
|
|
send_packet(impl, &msg);
|
|
|
|
len = 0;
|
|
}
|
|
if (len == 0) {
|
|
/* start new packet */
|
|
base = prev_offset = c->offset;
|
|
header.sequence_number = htons(impl->seq);
|
|
header.timestamp = htonl(impl->ts_offset + timestamp + base);
|
|
}
|
|
|
|
delta = c->offset - prev_offset;
|
|
prev_offset = c->offset;
|
|
|
|
len += write_event(&impl->buffer[len], delta, ev, size);
|
|
}
|
|
if (len > 0) {
|
|
/* flush last packet */
|
|
midi_header.len = (len >> 8) & 0xf;
|
|
midi_header.len_b = len & 0xff;
|
|
iov[2].iov_len = len;
|
|
|
|
pw_log_debug("sending %d timestamp:%d", len, base);
|
|
send_packet(impl, &msg);
|
|
}
|
|
}
|
|
|
|
static void send_cmd(struct impl *impl)
|
|
{
|
|
uint8_t buffer[16];
|
|
struct iovec iov[3];
|
|
struct msghdr msg;
|
|
|
|
spa_zero(buffer);
|
|
buffer[0] = 0xff;
|
|
buffer[1] = 0xff;
|
|
buffer[2] = 'I';
|
|
buffer[3] = 'N';
|
|
|
|
iov[0].iov_base = buffer;
|
|
iov[0].iov_len = sizeof(buffer);
|
|
|
|
spa_zero(msg);
|
|
msg.msg_iov = iov;
|
|
msg.msg_iovlen = 1;
|
|
|
|
send_packet(impl, &msg);
|
|
}
|
|
|
|
static void stream_midi_process(void *data)
|
|
{
|
|
struct impl *impl = data;
|
|
struct pw_buffer *buf;
|
|
struct spa_data *d;
|
|
uint32_t offs, size, timestamp;
|
|
struct spa_pod *pod;
|
|
void *ptr;
|
|
|
|
if ((buf = pw_stream_dequeue_buffer(impl->stream)) == NULL) {
|
|
pw_log_debug("Out of stream buffers: %m");
|
|
return;
|
|
}
|
|
d = buf->buffer->datas;
|
|
|
|
offs = SPA_MIN(d[0].chunk->offset, d[0].maxsize);
|
|
size = SPA_MIN(d[0].chunk->size, d[0].maxsize - offs);
|
|
|
|
if (SPA_LIKELY(impl->io_position))
|
|
timestamp = impl->io_position->clock.position;
|
|
else
|
|
timestamp = 0;
|
|
|
|
ptr = SPA_PTROFF(d[0].data, offs, void);
|
|
|
|
if ((pod = spa_pod_from_data(ptr, size, 0, size)) == NULL)
|
|
goto done;
|
|
if (!spa_pod_is_sequence(pod))
|
|
goto done;
|
|
|
|
if (!impl->sync) {
|
|
pw_log_info("sync to timestamp:%u seq:%u ts_offset:%u SSRC:%u",
|
|
timestamp, impl->seq, impl->ts_offset, impl->ssrc);
|
|
impl->sync = true;
|
|
if (impl->apple_midi)
|
|
send_cmd(impl);
|
|
}
|
|
|
|
flush_midi_packets(impl, (struct spa_pod_sequence*)pod, timestamp);
|
|
|
|
done:
|
|
pw_stream_queue_buffer(impl->stream, buf);
|
|
}
|
|
|
|
static void stream_process(void *data)
|
|
{
|
|
struct impl *impl = data;
|
|
switch (impl->info.media_type) {
|
|
case SPA_MEDIA_TYPE_audio:
|
|
stream_audio_process(impl);
|
|
break;
|
|
case SPA_MEDIA_TYPE_application:
|
|
stream_midi_process(impl);
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
static void stream_io_changed(void *data, uint32_t id, void *area, uint32_t size)
|
|
{
|
|
struct impl *impl = data;
|
|
switch (id) {
|
|
case SPA_IO_Position:
|
|
impl->io_position = area;
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void on_stream_state_changed(void *d, enum pw_stream_state old,
|
|
enum pw_stream_state state, const char *error)
|
|
{
|
|
struct impl *impl = d;
|
|
|
|
switch (state) {
|
|
case PW_STREAM_STATE_UNCONNECTED:
|
|
pw_log_info("stream disconnected, unloading");
|
|
pw_impl_module_schedule_destroy(impl->module);
|
|
break;
|
|
case PW_STREAM_STATE_ERROR:
|
|
pw_log_error("stream error: %s", error);
|
|
break;
|
|
case PW_STREAM_STATE_PAUSED:
|
|
impl->sync = false;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
static const struct pw_stream_events in_stream_events = {
|
|
PW_VERSION_STREAM_EVENTS,
|
|
.destroy = stream_destroy,
|
|
.io_changed = stream_io_changed,
|
|
.state_changed = on_stream_state_changed,
|
|
.process = stream_process
|
|
};
|
|
|
|
static int parse_address(const char *address, uint16_t port,
|
|
struct sockaddr_storage *addr, socklen_t *len)
|
|
{
|
|
struct sockaddr_in *sa4 = (struct sockaddr_in*)addr;
|
|
struct sockaddr_in6 *sa6 = (struct sockaddr_in6*)addr;
|
|
|
|
if (inet_pton(AF_INET, address, &sa4->sin_addr) > 0) {
|
|
sa4->sin_family = AF_INET;
|
|
sa4->sin_port = htons(port);
|
|
*len = sizeof(*sa4);
|
|
} else if (inet_pton(AF_INET6, address, &sa6->sin6_addr) > 0) {
|
|
sa6->sin6_family = AF_INET6;
|
|
sa6->sin6_port = htons(port);
|
|
*len = sizeof(*sa6);
|
|
} else
|
|
return -EINVAL;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static bool is_multicast(struct sockaddr *sa, socklen_t salen)
|
|
{
|
|
if (sa->sa_family == AF_INET) {
|
|
static const uint32_t ipv4_mcast_mask = 0xe0000000;
|
|
struct sockaddr_in *sa4 = (struct sockaddr_in*)sa;
|
|
return (ntohl(sa4->sin_addr.s_addr) & ipv4_mcast_mask) == ipv4_mcast_mask;
|
|
} else if (sa->sa_family == AF_INET6) {
|
|
struct sockaddr_in6 *sa6 = (struct sockaddr_in6*)sa;
|
|
return sa6->sin6_addr.s6_addr[0] == 0xff;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static int make_socket(struct sockaddr_storage *src, socklen_t src_len,
|
|
struct sockaddr_storage *dst, socklen_t dst_len,
|
|
bool loop, int ttl, int dscp)
|
|
{
|
|
int af, fd, val, res;
|
|
|
|
af = src->ss_family;
|
|
if ((fd = socket(af, SOCK_DGRAM | SOCK_CLOEXEC | SOCK_NONBLOCK, 0)) < 0) {
|
|
pw_log_error("socket failed: %m");
|
|
return -errno;
|
|
}
|
|
if (bind(fd, (struct sockaddr*)src, src_len) < 0) {
|
|
res = -errno;
|
|
pw_log_error("bind() failed: %m");
|
|
goto error;
|
|
}
|
|
if (connect(fd, (struct sockaddr*)dst, dst_len) < 0) {
|
|
res = -errno;
|
|
pw_log_error("connect() failed: %m");
|
|
goto error;
|
|
}
|
|
if (is_multicast((struct sockaddr*)dst, dst_len)) {
|
|
val = loop;
|
|
if (setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP, &val, sizeof(val)) < 0)
|
|
pw_log_warn("setsockopt(IP_MULTICAST_LOOP) failed: %m");
|
|
|
|
val = ttl;
|
|
if (setsockopt(fd, IPPROTO_IP, IP_MULTICAST_TTL, &val, sizeof(val)) < 0)
|
|
pw_log_warn("setsockopt(IP_MULTICAST_TTL) failed: %m");
|
|
}
|
|
#ifdef SO_PRIORITY
|
|
val = 6;
|
|
if (setsockopt(fd, SOL_SOCKET, SO_PRIORITY, &val, sizeof(val)) < 0)
|
|
pw_log_warn("setsockopt(SO_PRIORITY) failed: %m");
|
|
#endif
|
|
if (dscp > 0) {
|
|
val = IPTOS_DSCP(dscp << 2);
|
|
if (setsockopt(fd, IPPROTO_IP, IP_TOS, &val, sizeof(val)) < 0)
|
|
pw_log_warn("setsockopt(IP_TOS) failed: %m");
|
|
}
|
|
|
|
|
|
return fd;
|
|
error:
|
|
close(fd);
|
|
return res;
|
|
}
|
|
|
|
static int setup_stream(struct impl *impl)
|
|
{
|
|
const struct spa_pod *params[1];
|
|
struct spa_pod_builder b;
|
|
uint32_t n_params;
|
|
uint8_t buffer[1024];
|
|
struct pw_properties *props;
|
|
enum pw_stream_flags flags;
|
|
int res, fd;
|
|
|
|
props = pw_properties_copy(impl->stream_props);
|
|
if (props == NULL)
|
|
return -errno;
|
|
|
|
if (pw_properties_get(props, PW_KEY_NODE_LATENCY) == NULL) {
|
|
pw_properties_setf(props, PW_KEY_NODE_LATENCY,
|
|
"%d/%d", impl->psamples, impl->rate);
|
|
}
|
|
pw_properties_setf(props, PW_KEY_NODE_RATE, "1/%d", impl->rate);
|
|
|
|
impl->stream = pw_stream_new(impl->core,
|
|
"rtp-sink capture", props);
|
|
if (impl->stream == NULL)
|
|
return -errno;
|
|
|
|
pw_stream_add_listener(impl->stream,
|
|
&impl->stream_listener,
|
|
&in_stream_events, impl);
|
|
|
|
n_params = 0;
|
|
spa_pod_builder_init(&b, buffer, sizeof(buffer));
|
|
|
|
flags = PW_STREAM_FLAG_MAP_BUFFERS | PW_STREAM_FLAG_RT_PROCESS;
|
|
|
|
switch (impl->info.media_type) {
|
|
case SPA_MEDIA_TYPE_audio:
|
|
params[n_params++] = spa_format_audio_build(&b,
|
|
SPA_PARAM_EnumFormat, &impl->info);
|
|
flags |= PW_STREAM_FLAG_AUTOCONNECT;
|
|
break;
|
|
case SPA_MEDIA_TYPE_application:
|
|
params[n_params++] = spa_pod_builder_add_object(&b,
|
|
SPA_TYPE_OBJECT_Format, SPA_PARAM_EnumFormat,
|
|
SPA_FORMAT_mediaType, SPA_POD_Id(SPA_MEDIA_TYPE_application),
|
|
SPA_FORMAT_mediaSubtype, SPA_POD_Id(SPA_MEDIA_SUBTYPE_control));
|
|
break;
|
|
default:
|
|
return -EINVAL;
|
|
}
|
|
|
|
if ((res = pw_stream_connect(impl->stream,
|
|
PW_DIRECTION_INPUT,
|
|
PW_ID_ANY,
|
|
flags,
|
|
params, n_params)) < 0)
|
|
return res;
|
|
|
|
|
|
if ((fd = make_socket(&impl->src_addr, impl->src_len,
|
|
&impl->dst_addr, impl->dst_len,
|
|
impl->mcast_loop, impl->ttl,
|
|
impl->dscp)) < 0)
|
|
return fd;
|
|
|
|
impl->rtp_fd = fd;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int get_ip(const struct sockaddr_storage *sa, char *ip, size_t len)
|
|
{
|
|
if (sa->ss_family == AF_INET) {
|
|
struct sockaddr_in *in = (struct sockaddr_in*)sa;
|
|
inet_ntop(sa->ss_family, &in->sin_addr, ip, len);
|
|
} else if (sa->ss_family == AF_INET6) {
|
|
struct sockaddr_in6 *in = (struct sockaddr_in6*)sa;
|
|
inet_ntop(sa->ss_family, &in->sin6_addr, ip, len);
|
|
} else
|
|
return -EIO;
|
|
return 0;
|
|
}
|
|
|
|
static void core_destroy(void *d)
|
|
{
|
|
struct impl *impl = d;
|
|
spa_hook_remove(&impl->core_listener);
|
|
impl->core = NULL;
|
|
pw_impl_module_schedule_destroy(impl->module);
|
|
}
|
|
|
|
static const struct pw_proxy_events core_proxy_events = {
|
|
.destroy = core_destroy,
|
|
};
|
|
|
|
static void impl_destroy(struct impl *impl)
|
|
{
|
|
if (impl->stream)
|
|
pw_stream_destroy(impl->stream);
|
|
|
|
if (impl->core && impl->do_disconnect)
|
|
pw_core_disconnect(impl->core);
|
|
|
|
if (impl->timer)
|
|
pw_loop_destroy_source(impl->loop, impl->timer);
|
|
|
|
if (impl->rtp_fd != -1)
|
|
close(impl->rtp_fd);
|
|
|
|
pw_properties_free(impl->stream_props);
|
|
pw_properties_free(impl->props);
|
|
|
|
free(impl->ifname);
|
|
free(impl->ts_refclk);
|
|
free(impl->session_name);
|
|
free(impl);
|
|
}
|
|
|
|
static void module_destroy(void *d)
|
|
{
|
|
struct impl *impl = d;
|
|
spa_hook_remove(&impl->module_listener);
|
|
impl_destroy(impl);
|
|
}
|
|
|
|
static const struct pw_impl_module_events module_events = {
|
|
PW_VERSION_IMPL_MODULE_EVENTS,
|
|
.destroy = module_destroy,
|
|
};
|
|
|
|
static void on_core_error(void *d, uint32_t id, int seq, int res, const char *message)
|
|
{
|
|
struct impl *impl = d;
|
|
|
|
pw_log_error("error id:%u seq:%d res:%d (%s): %s",
|
|
id, seq, res, spa_strerror(res), message);
|
|
|
|
if (id == PW_ID_CORE && res == -EPIPE)
|
|
pw_impl_module_schedule_destroy(impl->module);
|
|
}
|
|
|
|
static const struct pw_core_events core_events = {
|
|
PW_VERSION_CORE_EVENTS,
|
|
.error = on_core_error,
|
|
};
|
|
|
|
static inline uint32_t format_from_name(const char *name, size_t len)
|
|
{
|
|
int i;
|
|
for (i = 0; spa_type_audio_format[i].name; i++) {
|
|
if (strncmp(name, spa_debug_type_short_name(spa_type_audio_format[i].name), len) == 0)
|
|
return spa_type_audio_format[i].type;
|
|
}
|
|
return SPA_AUDIO_FORMAT_UNKNOWN;
|
|
}
|
|
|
|
static uint32_t channel_from_name(const char *name)
|
|
{
|
|
int i;
|
|
for (i = 0; spa_type_audio_channel[i].name; i++) {
|
|
if (spa_streq(name, spa_debug_type_short_name(spa_type_audio_channel[i].name)))
|
|
return spa_type_audio_channel[i].type;
|
|
}
|
|
return SPA_AUDIO_CHANNEL_UNKNOWN;
|
|
}
|
|
|
|
static void parse_position(struct spa_audio_info_raw *info, const char *val, size_t len)
|
|
{
|
|
struct spa_json it[2];
|
|
char v[256];
|
|
|
|
spa_json_init(&it[0], val, len);
|
|
if (spa_json_enter_array(&it[0], &it[1]) <= 0)
|
|
spa_json_init(&it[1], val, len);
|
|
|
|
info->channels = 0;
|
|
while (spa_json_get_string(&it[1], v, sizeof(v)) > 0 &&
|
|
info->channels < SPA_AUDIO_MAX_CHANNELS) {
|
|
info->position[info->channels++] = channel_from_name(v);
|
|
}
|
|
}
|
|
|
|
static void parse_audio_info(const struct pw_properties *props, struct spa_audio_info_raw *info)
|
|
{
|
|
const char *str;
|
|
|
|
spa_zero(*info);
|
|
if ((str = pw_properties_get(props, PW_KEY_AUDIO_FORMAT)) == NULL)
|
|
str = DEFAULT_FORMAT;
|
|
info->format = format_from_name(str, strlen(str));
|
|
|
|
info->rate = pw_properties_get_uint32(props, PW_KEY_AUDIO_RATE, info->rate);
|
|
if (info->rate == 0)
|
|
info->rate = DEFAULT_RATE;
|
|
|
|
info->channels = pw_properties_get_uint32(props, PW_KEY_AUDIO_CHANNELS, info->channels);
|
|
info->channels = SPA_MIN(info->channels, SPA_AUDIO_MAX_CHANNELS);
|
|
if ((str = pw_properties_get(props, SPA_KEY_AUDIO_POSITION)) != NULL)
|
|
parse_position(info, str, strlen(str));
|
|
if (info->channels == 0)
|
|
parse_position(info, DEFAULT_POSITION, strlen(DEFAULT_POSITION));
|
|
}
|
|
|
|
static void copy_props(struct impl *impl, struct pw_properties *props, const char *key)
|
|
{
|
|
const char *str;
|
|
if ((str = pw_properties_get(props, key)) != NULL) {
|
|
if (pw_properties_get(impl->stream_props, key) == NULL)
|
|
pw_properties_set(impl->stream_props, key, str);
|
|
}
|
|
}
|
|
|
|
SPA_EXPORT
|
|
int pipewire__module_init(struct pw_impl_module *module, const char *args)
|
|
{
|
|
struct pw_context *context = pw_impl_module_get_context(module);
|
|
struct impl *impl;
|
|
struct pw_properties *props = NULL, *stream_props = NULL;
|
|
uint32_t id = pw_global_get_id(pw_impl_module_get_global(module));
|
|
uint32_t pid = getpid();
|
|
int64_t ts_offset;
|
|
char addr[64];
|
|
const char *str;
|
|
int res = 0;
|
|
|
|
PW_LOG_TOPIC_INIT(mod_topic);
|
|
|
|
impl = calloc(1, sizeof(struct impl));
|
|
if (impl == NULL)
|
|
return -errno;
|
|
|
|
impl->rtp_fd = -1;
|
|
|
|
if (args == NULL)
|
|
args = "";
|
|
|
|
props = pw_properties_new_string(args);
|
|
if (props == NULL) {
|
|
res = -errno;
|
|
pw_log_error( "can't create properties: %m");
|
|
goto out;
|
|
}
|
|
impl->props = props;
|
|
|
|
stream_props = pw_properties_new(NULL, NULL);
|
|
if (stream_props == NULL) {
|
|
res = -errno;
|
|
pw_log_error( "can't create properties: %m");
|
|
goto out;
|
|
}
|
|
impl->stream_props = stream_props;
|
|
|
|
impl->module = module;
|
|
impl->context = context;
|
|
impl->loop = pw_context_get_main_loop(context);
|
|
|
|
if (pw_properties_get(props, PW_KEY_NODE_VIRTUAL) == NULL)
|
|
pw_properties_set(props, PW_KEY_NODE_VIRTUAL, "true");
|
|
if (pw_properties_get(stream_props, PW_KEY_NODE_NETWORK) == NULL)
|
|
pw_properties_set(stream_props, PW_KEY_NODE_NETWORK, "true");
|
|
|
|
if (pw_properties_get(props, PW_KEY_NODE_NAME) == NULL)
|
|
pw_properties_setf(props, PW_KEY_NODE_NAME, "rtp-sink-%u-%u", pid, id);
|
|
if (pw_properties_get(props, PW_KEY_NODE_DESCRIPTION) == NULL)
|
|
pw_properties_set(props, PW_KEY_NODE_DESCRIPTION,
|
|
pw_properties_get(props, PW_KEY_NODE_NAME));
|
|
if (pw_properties_get(props, PW_KEY_MEDIA_NAME) == NULL)
|
|
pw_properties_set(props, PW_KEY_MEDIA_NAME, "RTP Sender Stream");
|
|
|
|
if ((str = pw_properties_get(props, "stream.props")) != NULL)
|
|
pw_properties_update_string(stream_props, str, strlen(str));
|
|
|
|
copy_props(impl, props, PW_KEY_AUDIO_FORMAT);
|
|
copy_props(impl, props, PW_KEY_AUDIO_RATE);
|
|
copy_props(impl, props, PW_KEY_AUDIO_CHANNELS);
|
|
copy_props(impl, props, SPA_KEY_AUDIO_POSITION);
|
|
copy_props(impl, props, PW_KEY_NODE_NAME);
|
|
copy_props(impl, props, PW_KEY_NODE_DESCRIPTION);
|
|
copy_props(impl, props, PW_KEY_NODE_GROUP);
|
|
copy_props(impl, props, PW_KEY_NODE_LATENCY);
|
|
copy_props(impl, props, PW_KEY_NODE_VIRTUAL);
|
|
copy_props(impl, props, PW_KEY_NODE_CHANNELNAMES);
|
|
copy_props(impl, props, PW_KEY_MEDIA_NAME);
|
|
copy_props(impl, props, PW_KEY_MEDIA_CLASS);
|
|
|
|
if ((str = pw_properties_get(props, "sess.media")) == NULL)
|
|
str = DEFAULT_SESS_MEDIA;
|
|
|
|
if (spa_streq(str, "audio")) {
|
|
impl->info.media_type = SPA_MEDIA_TYPE_audio;
|
|
impl->info.media_subtype = SPA_MEDIA_SUBTYPE_raw;
|
|
}
|
|
else if (spa_streq(str, "midi")) {
|
|
impl->info.media_type = SPA_MEDIA_TYPE_application;
|
|
impl->info.media_subtype = SPA_MEDIA_SUBTYPE_control;
|
|
}
|
|
else {
|
|
pw_log_error("unsupported media type:%s", str);
|
|
res = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
switch (impl->info.media_type) {
|
|
case SPA_MEDIA_TYPE_audio:
|
|
parse_audio_info(impl->stream_props, &impl->info.info.raw);
|
|
impl->format_info = find_audio_format_info(&impl->info);
|
|
if (impl->format_info == NULL) {
|
|
pw_log_error("unsupported audio format:%d channels:%d",
|
|
impl->info.info.raw.format, impl->info.info.raw.channels);
|
|
res = -EINVAL;
|
|
goto out;
|
|
}
|
|
impl->stride = impl->format_info->size * impl->info.info.raw.channels;
|
|
impl->rate = impl->info.info.raw.rate;
|
|
break;
|
|
case SPA_MEDIA_TYPE_application:
|
|
impl->format_info = find_audio_format_info(&impl->info);
|
|
if (impl->format_info == NULL) {
|
|
res = -EINVAL;
|
|
goto out;
|
|
}
|
|
pw_properties_set(impl->stream_props, PW_KEY_FORMAT_DSP, "8 bit raw midi");
|
|
impl->stride = impl->format_info->size;
|
|
impl->rate = 48000;
|
|
break;
|
|
default:
|
|
spa_assert_not_reached();
|
|
break;
|
|
}
|
|
impl->payload = 127;
|
|
impl->seq = pw_rand32();
|
|
impl->ssrc = pw_rand32();
|
|
|
|
str = pw_properties_get(props, "local.ifname");
|
|
impl->ifname = str ? strdup(str) : NULL;
|
|
|
|
if ((str = pw_properties_get(props, "source.ip")) == NULL)
|
|
str = DEFAULT_SOURCE_IP;
|
|
if ((res = parse_address(str, 0, &impl->src_addr, &impl->src_len)) < 0) {
|
|
pw_log_error("invalid source.ip %s: %s", str, spa_strerror(res));
|
|
goto out;
|
|
}
|
|
|
|
impl->dst_port = DEFAULT_PORT + ((uint32_t) (pw_rand32() % 512) << 1);
|
|
impl->dst_port = pw_properties_get_uint32(props, "destination.port", impl->dst_port);
|
|
if ((str = pw_properties_get(props, "destination.ip")) == NULL)
|
|
str = DEFAULT_DESTINATION_IP;
|
|
if ((res = parse_address(str, impl->dst_port, &impl->dst_addr, &impl->dst_len)) < 0) {
|
|
pw_log_error("invalid destination.ip %s: %s", str, spa_strerror(res));
|
|
goto out;
|
|
}
|
|
|
|
impl->mtu = pw_properties_get_uint32(props, "net.mtu", DEFAULT_MTU);
|
|
impl->ttl = pw_properties_get_uint32(props, "net.ttl", DEFAULT_TTL);
|
|
impl->mcast_loop = pw_properties_get_bool(props, "net.loop", DEFAULT_LOOP);
|
|
impl->dscp = pw_properties_get_uint32(props, "net.dscp", DEFAULT_DSCP);
|
|
|
|
ts_offset = pw_properties_get_int64(props, "sess.ts-offset", DEFAULT_TS_OFFSET);
|
|
impl->ts_offset = ts_offset < 0 ? pw_rand32() : ts_offset;
|
|
|
|
str = pw_properties_get(props, "sess.ts-refclk");
|
|
impl->ts_refclk = str ? strdup(str) : NULL;
|
|
|
|
str = pw_properties_get(props, "sess.min-ptime");
|
|
if (!spa_atof(str, &impl->min_ptime))
|
|
impl->min_ptime = DEFAULT_MIN_PTIME;
|
|
str = pw_properties_get(props, "sess.max-ptime");
|
|
if (!spa_atof(str, &impl->max_ptime))
|
|
impl->max_ptime = DEFAULT_MAX_PTIME;
|
|
|
|
impl->min_samples = impl->min_ptime * impl->rate / 1000;
|
|
impl->max_samples = impl->max_ptime * impl->rate / 1000;
|
|
|
|
impl->psamples = impl->mtu / impl->stride;
|
|
impl->psamples = SPA_CLAMP(impl->psamples, impl->min_samples, impl->max_samples);
|
|
|
|
if ((str = pw_properties_get(props, "sess.name")) == NULL)
|
|
pw_properties_setf(props, "sess.name", "PipeWire RTP Stream on %s",
|
|
pw_get_host_name());
|
|
str = pw_properties_get(props, "sess.name");
|
|
impl->session_name = str ? strdup(str) : NULL;
|
|
|
|
pw_properties_set(stream_props, "rtp.session", impl->session_name);
|
|
get_ip(&impl->src_addr, addr, sizeof(addr));
|
|
pw_properties_set(stream_props, "rtp.source.ip", addr);
|
|
get_ip(&impl->dst_addr, addr, sizeof(addr));
|
|
pw_properties_set(stream_props, "rtp.destination.ip", addr);
|
|
pw_properties_setf(stream_props, "rtp.destination.port", "%u", impl->dst_port);
|
|
pw_properties_setf(stream_props, "rtp.mtu", "%u", impl->mtu);
|
|
pw_properties_setf(stream_props, "rtp.ttl", "%u", impl->ttl);
|
|
pw_properties_setf(stream_props, "rtp.ptime", "%u",
|
|
impl->psamples * 1000 / impl->rate);
|
|
pw_properties_setf(stream_props, "rtp.dscp", "%u", impl->dscp);
|
|
pw_properties_setf(stream_props, "rtp.media", "%s", impl->format_info->media_type);
|
|
pw_properties_setf(stream_props, "rtp.mime", "%s", impl->format_info->mime);
|
|
pw_properties_setf(stream_props, "rtp.payload", "%u", impl->payload);
|
|
pw_properties_setf(stream_props, "rtp.rate", "%u", impl->rate);
|
|
if (impl->info.info.raw.channels > 0)
|
|
pw_properties_setf(stream_props, "rtp.channels", "%u", impl->info.info.raw.channels);
|
|
pw_properties_setf(stream_props, "rtp.ts-offset", "%u", impl->ts_offset);
|
|
if (impl->ts_refclk != NULL)
|
|
pw_properties_set(stream_props, "rtp.ts-refclk", impl->ts_refclk);
|
|
|
|
impl->core = pw_context_get_object(impl->context, PW_TYPE_INTERFACE_Core);
|
|
if (impl->core == NULL) {
|
|
str = pw_properties_get(props, PW_KEY_REMOTE_NAME);
|
|
impl->core = pw_context_connect(impl->context,
|
|
pw_properties_new(
|
|
PW_KEY_REMOTE_NAME, str,
|
|
NULL),
|
|
0);
|
|
impl->do_disconnect = true;
|
|
}
|
|
if (impl->core == NULL) {
|
|
res = -errno;
|
|
pw_log_error("can't connect: %m");
|
|
goto out;
|
|
}
|
|
|
|
pw_proxy_add_listener((struct pw_proxy*)impl->core,
|
|
&impl->core_proxy_listener,
|
|
&core_proxy_events, impl);
|
|
pw_core_add_listener(impl->core,
|
|
&impl->core_listener,
|
|
&core_events, impl);
|
|
|
|
if ((res = setup_stream(impl)) < 0)
|
|
goto out;
|
|
|
|
pw_impl_module_add_listener(module, &impl->module_listener, &module_events, impl);
|
|
|
|
pw_impl_module_update_properties(module, &SPA_DICT_INIT_ARRAY(module_info));
|
|
|
|
pw_log_info("Successfully loaded module-rtp-sink");
|
|
|
|
return 0;
|
|
out:
|
|
impl_destroy(impl);
|
|
return res;
|
|
}
|