2006-04-14 23:47:33 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-02-13 15:35:19 +00:00
|
|
|
|
|
|
|
|
Copyright 2006 Lennart Poettering
|
2007-05-29 17:24:48 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2006-04-14 23:47:33 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
|
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
2007-05-29 17:24:48 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2006-04-14 23:47:33 +00:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
2007-05-29 17:24:48 +00:00
|
|
|
|
2006-04-14 23:47:33 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2006-04-14 23:47:33 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/socket.h>
|
2006-07-16 23:20:27 +00:00
|
|
|
#include <netinet/in.h>
|
2006-04-14 23:47:33 +00:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <unistd.h>
|
2006-04-16 00:16:53 +00:00
|
|
|
#include <sys/ioctl.h>
|
2006-04-14 23:47:33 +00:00
|
|
|
|
2006-04-18 14:09:56 +00:00
|
|
|
#ifdef HAVE_SYS_FILIO_H
|
|
|
|
|
#include <sys/filio.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/xmalloc.h>
|
2006-05-17 16:34:18 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/core-error.h>
|
|
|
|
|
#include <pulsecore/core-util.h>
|
|
|
|
|
#include <pulsecore/log.h>
|
2007-09-18 17:41:51 +00:00
|
|
|
#include <pulsecore/macro.h>
|
2006-04-14 23:47:33 +00:00
|
|
|
|
|
|
|
|
#include "sap.h"
|
2006-04-16 00:16:53 +00:00
|
|
|
#include "sdp.h"
|
|
|
|
|
|
|
|
|
|
#define MIME_TYPE "application/sdp"
|
2006-04-14 23:47:33 +00:00
|
|
|
|
|
|
|
|
pa_sap_context* pa_sap_context_init_send(pa_sap_context *c, int fd, char *sdp_data) {
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(fd >= 0);
|
|
|
|
|
pa_assert(sdp_data);
|
2006-04-14 23:47:33 +00:00
|
|
|
|
|
|
|
|
c->fd = fd;
|
|
|
|
|
c->sdp_data = sdp_data;
|
|
|
|
|
c->msg_id_hash = (uint16_t) (rand()*rand());
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
|
|
|
return c;
|
2006-04-14 23:47:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pa_sap_context_destroy(pa_sap_context *c) {
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_assert(c);
|
2006-04-14 23:47:33 +00:00
|
|
|
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_close(c->fd);
|
2006-04-14 23:47:33 +00:00
|
|
|
pa_xfree(c->sdp_data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int pa_sap_send(pa_sap_context *c, int goodbye) {
|
|
|
|
|
uint32_t header;
|
|
|
|
|
struct sockaddr_storage sa_buf;
|
|
|
|
|
struct sockaddr *sa = (struct sockaddr*) &sa_buf;
|
|
|
|
|
socklen_t salen = sizeof(sa_buf);
|
|
|
|
|
struct iovec iov[4];
|
|
|
|
|
struct msghdr m;
|
|
|
|
|
int k;
|
|
|
|
|
|
|
|
|
|
if (getsockname(c->fd, sa, &salen) < 0) {
|
2006-05-22 15:20:46 +00:00
|
|
|
pa_log("getsockname() failed: %s\n", pa_cstrerror(errno));
|
2006-04-14 23:47:33 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_assert(sa->sa_family == AF_INET || sa->sa_family == AF_INET6);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
2006-04-14 23:47:33 +00:00
|
|
|
header = htonl(((uint32_t) 1 << 29) |
|
|
|
|
|
(sa->sa_family == AF_INET6 ? (uint32_t) 1 << 28 : 0) |
|
|
|
|
|
(goodbye ? (uint32_t) 1 << 26 : 0) |
|
|
|
|
|
(c->msg_id_hash));
|
|
|
|
|
|
|
|
|
|
iov[0].iov_base = &header;
|
|
|
|
|
iov[0].iov_len = sizeof(header);
|
|
|
|
|
|
|
|
|
|
iov[1].iov_base = sa->sa_family == AF_INET ? (void*) &((struct sockaddr_in*) sa)->sin_addr : (void*) &((struct sockaddr_in6*) sa)->sin6_addr;
|
|
|
|
|
iov[1].iov_len = sa->sa_family == AF_INET ? 4 : 16;
|
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
iov[2].iov_base = (char*) MIME_TYPE;
|
|
|
|
|
iov[2].iov_len = sizeof(MIME_TYPE);
|
2006-04-14 23:47:33 +00:00
|
|
|
|
|
|
|
|
iov[3].iov_base = c->sdp_data;
|
|
|
|
|
iov[3].iov_len = strlen(c->sdp_data);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
2006-04-14 23:47:33 +00:00
|
|
|
m.msg_name = NULL;
|
|
|
|
|
m.msg_namelen = 0;
|
|
|
|
|
m.msg_iov = iov;
|
|
|
|
|
m.msg_iovlen = 4;
|
|
|
|
|
m.msg_control = NULL;
|
|
|
|
|
m.msg_controllen = 0;
|
|
|
|
|
m.msg_flags = 0;
|
2007-05-29 17:24:48 +00:00
|
|
|
|
2006-04-14 23:47:33 +00:00
|
|
|
if ((k = sendmsg(c->fd, &m, MSG_DONTWAIT)) < 0)
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_log_warn("sendmsg() failed: %s\n", pa_cstrerror(errno));
|
2006-04-14 23:47:33 +00:00
|
|
|
|
|
|
|
|
return k;
|
|
|
|
|
}
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
pa_sap_context* pa_sap_context_init_recv(pa_sap_context *c, int fd) {
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(fd >= 0);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
c->fd = fd;
|
|
|
|
|
c->sdp_data = NULL;
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int pa_sap_recv(pa_sap_context *c, int *goodbye) {
|
|
|
|
|
struct msghdr m;
|
|
|
|
|
struct iovec iov;
|
|
|
|
|
int size, k;
|
|
|
|
|
char *buf = NULL, *e;
|
|
|
|
|
uint32_t header;
|
|
|
|
|
int six, ac;
|
|
|
|
|
ssize_t r;
|
2007-05-29 17:24:48 +00:00
|
|
|
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(goodbye);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
if (ioctl(c->fd, FIONREAD, &size) < 0) {
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_log_warn("FIONREAD failed: %s", pa_cstrerror(errno));
|
2006-04-16 00:16:53 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buf = pa_xnew(char, size+1);
|
|
|
|
|
buf[size] = 0;
|
2007-05-29 17:24:48 +00:00
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
iov.iov_base = buf;
|
|
|
|
|
iov.iov_len = size;
|
|
|
|
|
|
|
|
|
|
m.msg_name = NULL;
|
|
|
|
|
m.msg_namelen = 0;
|
|
|
|
|
m.msg_iov = &iov;
|
|
|
|
|
m.msg_iovlen = 1;
|
|
|
|
|
m.msg_control = NULL;
|
|
|
|
|
m.msg_controllen = 0;
|
|
|
|
|
m.msg_flags = 0;
|
2007-05-29 17:24:48 +00:00
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
if ((r = recvmsg(c->fd, &m, 0)) != size) {
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_log_warn("recvmsg() failed: %s", r < 0 ? pa_cstrerror(errno) : "size mismatch");
|
2006-04-16 00:16:53 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (size < 4) {
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_log_warn("SAP packet too short.");
|
2006-04-16 00:16:53 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
memcpy(&header, buf, sizeof(uint32_t));
|
|
|
|
|
header = ntohl(header);
|
|
|
|
|
|
|
|
|
|
if (header >> 29 != 1) {
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_log_warn("Unsupported SAP version.");
|
2006-04-16 00:16:53 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((header >> 25) & 1) {
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_log_warn("Encrypted SAP not supported.");
|
2006-04-16 00:16:53 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((header >> 24) & 1) {
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_log_warn("Compressed SAP not supported.");
|
2006-04-16 00:16:53 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
six = (header >> 28) & 1;
|
|
|
|
|
ac = (header >> 16) & 0xFF;
|
|
|
|
|
|
|
|
|
|
k = 4 + (six ? 16 : 4) + ac*4;
|
|
|
|
|
if (size < k) {
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_log_warn("SAP packet too short (AD).");
|
2006-04-16 00:16:53 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
e = buf + k;
|
|
|
|
|
size -= k;
|
|
|
|
|
|
|
|
|
|
if ((unsigned) size >= sizeof(MIME_TYPE) && !strcmp(e, MIME_TYPE)) {
|
|
|
|
|
e += sizeof(MIME_TYPE);
|
|
|
|
|
size -= sizeof(MIME_TYPE);
|
|
|
|
|
} else if ((unsigned) size < sizeof(PA_SDP_HEADER)-1 || strncmp(e, PA_SDP_HEADER, sizeof(PA_SDP_HEADER)-1)) {
|
2007-09-18 17:41:51 +00:00
|
|
|
pa_log_warn("Invalid SDP header.");
|
2006-04-16 00:16:53 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (c->sdp_data)
|
|
|
|
|
pa_xfree(c->sdp_data);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
c->sdp_data = pa_xstrndup(e, size);
|
|
|
|
|
pa_xfree(buf);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
*goodbye = !!((header >> 26) & 1);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
pa_xfree(buf);
|
|
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|