]> git.sesse.net Git - vlc/blob - src/stream_output/announce.c
* src/stream_output/announce.c: msvc compilation fix.
[vlc] / src / stream_output / announce.c
1 /*****************************************************************************
2  * announce.c : Session announcement
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  *
6  * Authors: ClĂ©ment Stenac <zorglub@via.ecp.fr>
7  *          Damien Lucas <nitrox@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                                /* free() */
28 #include <stdio.h>                                              /* sprintf() */
29 #include <string.h>                                            /* strerror() */
30
31 #ifdef HAVE_UNISTD_H
32 #   include <unistd.h>
33 #endif
34
35 #include <vlc/vlc.h>
36
37 #include <vlc/sout.h>
38 #undef DEBUG_BUFFER
39
40 #include <announce.h>
41 #include <network.h>
42
43 #define SAP_IPV4_ADDR "224.2.127.254" /* Standard port and address for SAP */
44 #define SAP_PORT 9875
45
46 #define SAP_IPV6_ADDR_1 "FF0"
47 #define SAP_IPV6_ADDR_2 "::2:7FFE"
48
49 /*****************************************************************************
50  * sout_SAPNew: Creates a SAP Session
51  *****************************************************************************/
52 sap_session_t * sout_SAPNew ( sout_instance_t *p_sout ,
53                 char * psz_url_arg , char *psz_port_arg ,
54                 char * psz_name_arg, int ip_version,
55                 char * psz_v6_scope )
56 {
57     sap_session_t       *p_new; /* The SAP structure */
58     module_t            *p_network; /* Network module */
59     network_socket_t    socket_desc; /* Socket descriptor */
60     char                psz_network[6]; /* IPv4 or IPv6 */
61     char                *sap_ipv6_addr=NULL; /* IPv6 built address */
62
63     /* Allocate the SAP structure */
64     p_new = (sap_session_t *)malloc( sizeof ( sap_session_t ) ) ;
65     if ( !p_new )
66     {
67         msg_Err( p_sout, "No memory left" );
68         return NULL;
69     }
70
71     /* Fill the information in the structure */
72     sprintf ( p_new->psz_url , "%s" , psz_url_arg );
73     sprintf ( p_new->psz_name , "%s" , psz_name_arg );
74     /* Port is not implemented in sout */
75     sprintf ( p_new->psz_port, "%s" , psz_port_arg );
76
77     p_new->i_ip_version = ip_version;
78
79     /* Only "6" triggers IPv6. IPv4 is default */
80     if( ip_version != 6 )
81     {
82         msg_Dbg( p_sout , "Creating IPv4 SAP socket" );
83
84         /* Fill the socket descriptor */
85         socket_desc.i_type            = NETWORK_UDP;
86         socket_desc.psz_bind_addr     = "";
87         socket_desc.i_bind_port       = 0;
88         socket_desc.psz_server_addr   = SAP_IPV4_ADDR;
89         socket_desc.i_server_port     = SAP_PORT;
90         socket_desc.i_handle          = 0;
91
92         /* Call the network module */
93         sprintf ( psz_network, "ipv4" );
94         p_sout->p_private=(void*) &socket_desc;
95         if( !( p_network = module_Need( p_sout, "network", psz_network ) ) )
96         {
97              msg_Warn( p_sout, "failed to open a connection (udp)" );
98              return NULL;
99         }
100         module_Unneed( p_sout, p_network );
101
102         p_new->socket   =       socket_desc.i_handle;
103         if(p_new->socket <= 0 )
104         {
105             msg_Warn( p_sout, "Unable to initialize SAP" );
106             return NULL;
107         }
108     }
109     else
110     {
111         msg_Dbg(p_sout , "Creating IPv6 SAP socket with scope %s"
112                         , psz_v6_scope );
113
114         /* Initialize and build the IPv6 address to broadcast to */
115         sap_ipv6_addr = (char *)malloc(28*sizeof(char));
116         if ( !sap_ipv6_addr )
117         {
118             msg_Err( p_sout, "No memory left" );
119             return NULL;
120         }
121         sprintf(sap_ipv6_addr,"%s%c%s",
122                          SAP_IPV6_ADDR_1,
123                          psz_v6_scope[0],
124                          SAP_IPV6_ADDR_2);
125
126         /* Fill the socket descriptor */
127         socket_desc.i_type        = NETWORK_UDP;
128         socket_desc.psz_bind_addr = "";
129         socket_desc.i_bind_port   = 0;
130         socket_desc.psz_server_addr = sap_ipv6_addr;
131         socket_desc.i_server_port     = SAP_PORT;
132         socket_desc.i_handle          = 0;
133
134         sprintf ( psz_network, "ipv6" );
135
136         /* Call the network module */
137         p_sout->p_private=(void*) &socket_desc;
138         if( !( p_network = module_Need( p_sout, "network", psz_network ) ) )
139         {
140             msg_Warn( p_sout, "failed to open a connection (udp)" );
141             return NULL;
142         }
143         module_Unneed( p_sout, p_network );
144
145         p_new->socket   =       socket_desc.i_handle;
146
147         if(p_new->socket <= 0 )
148         {
149             msg_Warn( p_sout, "Unable to initialize SAP" );
150             return NULL;
151         }
152
153         /* Free what we allocated */
154         if( sap_ipv6_addr ) free(sap_ipv6_addr);
155     }
156
157     msg_Dbg (p_sout,"SAP initialization complete");
158
159     return(p_new);
160 }
161
162 /*****************************************************************************
163  * sout_SAPDelete: Deletes a SAP Session
164  *****************************************************************************/
165 void sout_SAPDelete( sout_instance_t *p_sout , sap_session_t * p_this )
166 {
167     if( close(p_this->socket) )
168     {
169         msg_Err ( p_sout, "Unable to close SAP socket");
170     }
171
172     if( p_this ) free( p_this );
173 }
174
175 /*****************************************************************************
176  * sout_SAPSend: Sends a SAP packet
177  *****************************************************************************/
178 void sout_SAPSend( sout_instance_t *p_sout, sap_session_t * p_this)
179 {
180     char *sap_head;                         /* SAP header */
181     char sap_msg[1000];                     /* SDP content */
182     char *sap_send;                         /* What we send */
183     char *payload_type="application/sdp";
184     int i_send_result=0;                    /* Result of send */
185     int i;
186     int i_header_size;                      /* SAP header size */
187     int i_msg_size;                         /* SDP content size */
188     int i_size;                             /* Total size */
189
190     /* We send a packet every 24 calls to the function */
191     if( p_this->sendnow == 24 )
192     {
193         i_header_size = 9 + strlen( payload_type );
194         sap_head = ( char * )malloc( i_header_size * sizeof( char ) );
195
196         if( ! sap_head )
197         {
198             msg_Warn( p_sout , "No memory left");
199             return;
200         }
201
202         /* Create the SAP headers */
203         sap_head[0]=0x20; /* Means IPv4, not encrypted, not compressed */
204         sap_head[1]=0x00; /* No authentification */
205         sap_head[2]=0x42; /* Version */
206         sap_head[3]=0x12; /* Version */
207
208         sap_head[4]=0x01; /* Source IP  FIXME: we should get the real address */
209         sap_head[5]=0x02; /* idem */
210         sap_head[6]=0x03; /* idem */
211         sap_head[7]=0x04; /* idem */
212
213         strncpy( sap_head+8 , payload_type , 15 );
214         sap_head[ i_header_size-1 ] = '\0';
215
216         /* Create the SDP content */
217         /* Do not add spaces at beginning of the lines ! */
218         sprintf( sap_msg, "v=0\n"
219                           "o=VideoLAN 3247692199 3247895918 IN IP4 VideoLAN\n"
220                           "s=%s\n"
221                           "u=VideoLAN\n"
222                           "t=0 0\n"
223                           "m=audio %s udp 14\n"
224                           "c=IN IP4 %s/15\n"
225                           "a=type:test\n",
226                  p_this->psz_name , p_this->psz_port , p_this->psz_url );
227
228         i_msg_size = strlen( sap_msg );
229         i_size = i_msg_size + i_header_size;
230
231         /* Create the message */
232         sap_send = ( char* )malloc( i_size*sizeof(char) );
233         if( !sap_send )
234         {
235             msg_Err( p_sout ,  "No memory left") ;
236             return;
237         }
238
239         for( i = 0 ; i < i_header_size ; i++ )
240         {
241             sap_send[i] = sap_head[i];
242         }
243
244         for( ;  i < i_size ; i++ )
245         {
246             sap_send[i] = sap_msg[i-i_header_size];
247         }
248
249         if( i_size < 1024 ) /* We mustn't send packets larger than 1024B */
250         {
251             if( p_this->i_ip_version == 6)
252             {
253                 i_send_result =  send( p_this->socket, sap_send, i_size, 0 );
254             }
255             else
256             {
257                 i_send_result =  send( p_this->socket, sap_send, i_size, 0 );
258             }
259         }
260
261         if( i_send_result == -1 )
262         {
263             msg_Warn(p_sout, "SAP send failed on socket %i", p_this->socket );
264             perror("sendto");
265         }
266
267         p_this->sendnow = 0;
268
269         /* Free what we allocated */
270         if(sap_send) free(sap_send);
271         if(sap_head) free(sap_head);
272     }
273
274     p_this->sendnow++;
275 }