-
Notifications
You must be signed in to change notification settings - Fork 0
/
sap.c
320 lines (259 loc) · 6.86 KB
/
sap.c
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
#include <time.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <stdint.h>
#include <event.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include "getstream.h"
#include "sap.h"
#include "socket.h"
/*
* Implement Mini-SAP Service
*
* RFC 2974 (Session Announcement Protocol)
* http://www.ietf.org/rfc/rfc2974.txt
* RFC 2327 (SDP: Session Description Protocol)
* http://www.ietf.org/rfc/rfc2327.txt
*
*/
/*
RFC 2327
v=0
o=mhandley 2890844526 2890842807 IN IP4 126.16.64.4
o=<username> <session id> <version> <network type> <address type> <address>
s=SDP Seminar
i=A Seminar on the session description protocol
u=http://www.cs.ucl.ac.uk/staff/M.Handley/sdp.03.ps
e=mjh@isi.edu (Mark Handley)
c=IN IP4 224.2.17.12/127
c=<network type> <address type> <connection address>
t=2873397496 2873404696
a=recvonly
m=audio 49170 RTP/AVP 0
m=video 51372 RTP/AVP 31
m=application 32416 udp wb
m=<media> <port> <transport> <fmt list>
a=orient:portrait
*/
static void sap_init_timer_single(struct sap_s *sap);
static char sappkt[SAP_MAX_SIZE];
static int sid=1; /* MSG Identifier - Unique for each session */
#define SAP_VERSION 1
#define SAP_VERSION_SHIFT 5
static void sap_send(int fd, short event, void *arg) {
struct sap_s *sap=arg;
char *sp;
GList *el, *pl, *al;
/* Clear Packet */
memset(&sappkt, 0, SAP_MAX_SIZE);
sappkt[0]=SAP_VERSION<<SAP_VERSION_SHIFT; /* Version + Bitfield */
sappkt[1]=0x0; /* Auth len */
sappkt[2]=sap->sid>>8&0xff; /* Unique session ID */
sappkt[3]=sap->sid&0xff;
/* Set originating address */
sappkt[4]=sap->originatingaddr&0xff;
sappkt[5]=sap->originatingaddr>>8&0xff;
sappkt[6]=sap->originatingaddr>>16&0xff;
sappkt[7]=sap->originatingaddr>>24&0xff;
sp=sappkt+8;
sp+=sprintf(sp, "v=0\r\n");
sp+=sprintf(sp, "o=%s\r\n", sap->odata);
if (sap->output->stream->name)
sp+=sprintf(sp, "s=%s\r\n", sap->output->stream->name);
if (sap->description)
sp+=sprintf(sp, "i=%s\r\n", sap->description);
if (sap->uri)
sp+=sprintf(sp, "u=%s\r\n", sap->uri);
el=g_list_first(sap->emaillist);
while(el) {
char *email=el->data;
sp+=sprintf(sp, "e=%s\r\n", email);
el=g_list_next(el);
}
pl=g_list_first(sap->phonelist);
while(pl) {
char *phone=pl->data;
sp+=sprintf(sp, "p=%s\r\n", phone);
pl=g_list_next(pl);
}
sp+=sprintf(sp, "t=0 0\r\n");
sp+=sprintf(sp, "a=type:broadcast\r\n");
al=g_list_first(sap->attributelist);
while(al) {
char *attribute=al->data;
sp+=sprintf(sp, "a=%s\r\n", attribute);
al=g_list_next(al);
}
sp+=sprintf(sp, "m=%s\r\n", sap->mdata);
sp+=sprintf(sp, "c=%s\r\n", sap->cdata);
if (sap->playgroup) {
sp+=sprintf(sp, "a=x-plgroup:%s\r\n", sap->playgroup);
}
send(sap->fd, sappkt, sp-sappkt, MSG_DONTWAIT);
sap_init_timer_single(sap);
}
static void sap_init_timer_single(struct sap_s *sap) {
static struct timeval tv;
/*
* Create timer to send out SAPs regularly
*/
tv.tv_usec=0;
tv.tv_sec=sap->interval;
evtimer_set(&sap->event, &sap_send, sap);
evtimer_add(&sap->event, &tv);
}
static void sap_init_socket_single(struct sap_s *sap) {
char *maddr;
int port;
int ttl;
sap->fd=socket_open(NULL, 0);
if (sap->fd == -1) {
fprintf(stderr, "Unable to open SAP socket\n");
exit(-1);
}
/* Last resort Multicast config */
maddr=SAP_V4_GLOBAL_ADDRESS;
port=SAP_PORT;
/* get SAP remote address from scope or group */
switch(sap->scope) {
case(SAP_SCOPE_GLOBAL):
maddr=SAP_V4_GLOBAL_ADDRESS;
break;
case(SAP_SCOPE_ORG):
maddr=SAP_V4_ORG_ADDRESS;
break;
case(SAP_SCOPE_LOCAL):
maddr=SAP_V4_LOCAL_ADDRESS;
break;
case(SAP_SCOPE_LINK):
maddr=SAP_V4_LINK_ADDRESS;
break;
case(SAP_SCOPE_NONE):
break;
}
if(sap->group)
maddr=sap->group;
if(sap->port)
port=sap->port;
if(sap->ttl >= 0) {
ttl = sap->ttl; /* use ttl value from sap config */
} else {
ttl = sap->output->ttl; /* use ttl value form output config */
}
socket_join_multicast(sap->fd, maddr);
socket_connect(sap->fd, maddr, port);
socket_set_ttl(sap->fd, ttl);
}
/* Create SDP Connection Data as per RFC2327 */
static char *sap_init_cdata(struct sap_s *sap) {
char cdata[128];
/* mcast c=IN IP4 ipaddr/ttl */
/* ucast c=IN IP4 ipaddr */
/* Ignore the ucast case for UDP and RTP as it does not make
* sense to announce ucast UDP/RTP
*/
switch(sap->output->type) {
case(OTYPE_UDP):
case(OTYPE_RTP):
sprintf(cdata, "IN IP4 %s/%d",
sap->output->remoteaddr,
sap->output->ttl);
break;
case(OTYPE_RTCP):
if (sap->output->localaddr) {
sprintf(cdata, "IN IP4 %s/%d",
sap->output->localaddr,
sap->output->ttl);
} else {
char hname[80];
gethostname(hname, sizeof(hname));
sprintf(cdata, "IN IP4 %s/%d",
hname,
sap->output->ttl);
}
break;
default:
fprintf(stderr, "Unknown stream output type in %s", __FUNCTION__);
exit(-1);
}
return strdup(cdata);
}
/* Create SDP Media Announcement as per RFC2327 */
static char *sap_init_mdata(struct sap_s *sap) {
char mdata[128];
/* m=audio/video ipport udp 33 */
/* m=audio/video ipport rtp/avp 31 */
switch(sap->output->type) {
case(OTYPE_UDP):
sprintf(mdata, "video %d udp 33",
sap->output->remoteport);
break;
case(OTYPE_RTP):
sprintf(mdata, "video %d RTP/AVP 33",
sap->output->remoteport);
break;
case(OTYPE_RTCP):
sprintf(mdata, "video %d RTP/AVP 33",
sap->output->rtpport);
break;
}
return strdup(mdata);
}
/* Create SDP Origin as per RFC2327 */
static char *sap_init_odata(struct sap_s *sap) {
char odata[128];
switch(sap->output->type) {
case(OTYPE_UDP):
case(OTYPE_RTP):
sprintf(odata, "- %d %lu IN IP4 %s",
sap->sid,
time(NULL),
sap->output->remoteaddr);
break;
case(OTYPE_RTCP):
if (sap->output->localaddr) {
sprintf(odata, "IN IP4 %s",
sap->output->localaddr);
} else {
char hname[80];
gethostname(hname, sizeof(hname));
sprintf(odata, "- %d %lu IN IP4 %s",
sap->sid,
time(NULL),
hname);
}
break;
}
return strdup(odata);
}
int sap_init(struct sap_s *sap) {
/* Copy a Session ID into the SAP structure. This needs to be unique
* for a SAP sender and needs to be changed in case the SAP announcement
* changes
*/
sap->sid=sid++;
/*
* FIXME - This would need to be the originating
* not the destination address
*/
if(sap->output->remoteaddr)
sap->originatingaddr=inet_addr(sap->output->remoteaddr);
/* Open Socket */
sap_init_socket_single(sap);
/* Create Stream Connection Data for SDP */
sap->cdata=sap_init_cdata(sap);
/* Create Media Announcement Data for SDP */
sap->mdata=sap_init_mdata(sap);
/* Create Origin Data for SDP */
sap->odata=sap_init_odata(sap);
/* Start timer */
sap_init_timer_single(sap);
return 1;
}