rtsp: Improved parsing of messages.
[platform/upstream/gstreamer.git] / gst-libs / gst / rtsp / gstrtspconnection.c
1 /* GStreamer
2  * Copyright (C) <2005-2009> Wim Taymans <wim.taymans@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 /*
20  * Unless otherwise indicated, Source Code is licensed under MIT license.
21  * See further explanation attached in License Statement (distributed in the file
22  * LICENSE).
23  *
24  * Permission is hereby granted, free of charge, to any person obtaining a copy of
25  * this software and associated documentation files (the "Software"), to deal in
26  * the Software without restriction, including without limitation the rights to
27  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
28  * of the Software, and to permit persons to whom the Software is furnished to do
29  * so, subject to the following conditions:
30  *
31  * The above copyright notice and this permission notice shall be included in all
32  * copies or substantial portions of the Software.
33  *
34  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
35  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
36  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
37  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
38  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
39  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
40  * SOFTWARE.
41  */
42
43 /**
44  * SECTION:gstrtspconnection
45  * @short_description: manage RTSP connections
46  * @see_also: gstrtspurl
47  *  
48  * <refsect2>
49  * <para>
50  * This object manages the RTSP connection to the server. It provides function
51  * to receive and send bytes and messages.
52  * </para>
53  * </refsect2>
54  *  
55  * Last reviewed on 2007-07-24 (0.10.14)
56  */
57
58 #ifdef HAVE_CONFIG_H
59 #  include <config.h>
60 #endif
61
62 #include <stdio.h>
63 #include <errno.h>
64 #include <stdlib.h>
65 #include <string.h>
66 #include <time.h>
67
68 #ifdef HAVE_UNISTD_H
69 #include <unistd.h>
70 #endif
71
72 /* we include this here to get the G_OS_* defines */
73 #include <glib.h>
74 #include <gst/gst.h>
75
76 #ifdef G_OS_WIN32
77 /* ws2_32.dll has getaddrinfo and freeaddrinfo on Windows XP and later.
78  * minwg32 headers check WINVER before allowing the use of these */
79 #ifndef WINVER
80 #define WINVER 0x0501
81 #endif
82 #include <winsock2.h>
83 #include <ws2tcpip.h>
84 #define EINPROGRESS WSAEINPROGRESS
85 #else
86 #include <sys/ioctl.h>
87 #include <netdb.h>
88 #include <sys/socket.h>
89 #include <fcntl.h>
90 #include <netinet/in.h>
91 #endif
92
93 #ifdef HAVE_FIONREAD_IN_SYS_FILIO
94 #include <sys/filio.h>
95 #endif
96
97 #include "gstrtspconnection.h"
98 #include "gstrtspbase64.h"
99
100 union gst_sockaddr
101 {
102   struct sockaddr sa;
103   struct sockaddr_in sa_in;
104   struct sockaddr_in6 sa_in6;
105   struct sockaddr_storage sa_stor;
106 };
107
108 typedef struct
109 {
110   gint state;
111   guint save;
112   guchar out[3];                /* the size must be evenly divisible by 3 */
113   guint cout;
114   guint coutl;
115 } DecodeCtx;
116
117 static GstRTSPResult read_line (GstRTSPConnection * conn, guint8 * buffer,
118     guint * idx, guint size);
119 static GstRTSPResult parse_key_value (guint8 * buffer, gchar * key,
120     guint keysize, gchar ** value);
121 static void parse_string (gchar * dest, gint size, gchar ** src);
122
123 #ifdef G_OS_WIN32
124 #define READ_SOCKET(fd, buf, len) recv (fd, (char *)buf, len, 0)
125 #define WRITE_SOCKET(fd, buf, len) send (fd, (const char *)buf, len, 0)
126 #define SETSOCKOPT(sock, level, name, val, len) setsockopt (sock, level, name, (const char *)val, len)
127 #define CLOSE_SOCKET(sock) closesocket (sock)
128 #define ERRNO_IS_EAGAIN (WSAGetLastError () == WSAEWOULDBLOCK)
129 #define ERRNO_IS_EINTR (WSAGetLastError () == WSAEINTR)
130 /* According to Microsoft's connect() documentation this one returns
131  * WSAEWOULDBLOCK and not WSAEINPROGRESS. */
132 #define ERRNO_IS_EINPROGRESS (WSAGetLastError () == WSAEWOULDBLOCK)
133 #else
134 #define READ_SOCKET(fd, buf, len) read (fd, buf, len)
135 #define WRITE_SOCKET(fd, buf, len) write (fd, buf, len)
136 #define SETSOCKOPT(sock, level, name, val, len) setsockopt (sock, level, name, val, len)
137 #define CLOSE_SOCKET(sock) close (sock)
138 #define ERRNO_IS_EAGAIN (errno == EAGAIN)
139 #define ERRNO_IS_EINTR (errno == EINTR)
140 #define ERRNO_IS_EINPROGRESS (errno == EINPROGRESS)
141 #endif
142
143 #define ADD_POLLFD(fdset, pfd, fd)        \
144 G_STMT_START {                            \
145   (pfd)->fd = fd;                         \
146   gst_poll_add_fd (fdset, pfd);           \
147 } G_STMT_END
148
149 #define REMOVE_POLLFD(fdset, pfd)          \
150 G_STMT_START {                             \
151   if ((pfd)->fd != -1) {                   \
152     GST_DEBUG ("remove fd %d", (pfd)->fd); \
153     gst_poll_remove_fd (fdset, pfd);       \
154     CLOSE_SOCKET ((pfd)->fd);              \
155     (pfd)->fd = -1;                        \
156   }                                        \
157 } G_STMT_END
158
159 typedef enum
160 {
161   TUNNEL_STATE_NONE,
162   TUNNEL_STATE_GET,
163   TUNNEL_STATE_POST,
164   TUNNEL_STATE_COMPLETE
165 } GstRTSPTunnelState;
166
167 #define TUNNELID_LEN   24
168
169 struct _GstRTSPConnection
170 {
171   /*< private > */
172   /* URL for the connection */
173   GstRTSPUrl *url;
174
175   /* connection state */
176   GstPollFD fd0;
177   GstPollFD fd1;
178
179   GstPollFD *readfd;
180   GstPollFD *writefd;
181
182   gchar tunnelid[TUNNELID_LEN];
183   gboolean tunneled;
184   GstRTSPTunnelState tstate;
185
186   GstPoll *fdset;
187   gchar *ip;
188
189   gchar *initial_buffer;
190   gsize initial_buffer_offset;
191
192   /* Session state */
193   gint cseq;                    /* sequence number */
194   gchar session_id[512];        /* session id */
195   gint timeout;                 /* session timeout in seconds */
196   GTimer *timer;                /* timeout timer */
197
198   /* Authentication */
199   GstRTSPAuthMethod auth_method;
200   gchar *username;
201   gchar *passwd;
202   GHashTable *auth_params;
203
204   DecodeCtx ctx;
205   DecodeCtx *ctxp;
206
207   gchar *proxy_host;
208   guint proxy_port;
209 };
210
211 enum
212 {
213   STATE_START = 0,
214   STATE_DATA_HEADER,
215   STATE_DATA_BODY,
216   STATE_READ_LINES,
217   STATE_END,
218   STATE_LAST
219 };
220
221 /* a structure for constructing RTSPMessages */
222 typedef struct
223 {
224   gint state;
225   GstRTSPResult status;
226   guint8 buffer[4096];
227   guint offset;
228
229   guint line;
230   guint8 *body_data;
231   glong body_len;
232 } GstRTSPBuilder;
233
234 static void
235 build_reset (GstRTSPBuilder * builder)
236 {
237   g_free (builder->body_data);
238   memset (builder, 0, sizeof (GstRTSPBuilder));
239 }
240
241 /**
242  * gst_rtsp_connection_create:
243  * @url: a #GstRTSPUrl 
244  * @conn: storage for a #GstRTSPConnection
245  *
246  * Create a newly allocated #GstRTSPConnection from @url and store it in @conn.
247  * The connection will not yet attempt to connect to @url, use
248  * gst_rtsp_connection_connect().
249  *
250  * A copy of @url will be made.
251  *
252  * Returns: #GST_RTSP_OK when @conn contains a valid connection.
253  */
254 GstRTSPResult
255 gst_rtsp_connection_create (const GstRTSPUrl * url, GstRTSPConnection ** conn)
256 {
257   GstRTSPConnection *newconn;
258 #ifdef G_OS_WIN32
259   WSADATA w;
260   int error;
261 #endif
262
263   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
264
265 #ifdef G_OS_WIN32
266   error = WSAStartup (0x0202, &w);
267
268   if (error)
269     goto startup_error;
270
271   if (w.wVersion != 0x0202)
272     goto version_error;
273 #endif
274
275   newconn = g_new0 (GstRTSPConnection, 1);
276
277   if ((newconn->fdset = gst_poll_new (TRUE)) == NULL)
278     goto no_fdset;
279
280   newconn->url = gst_rtsp_url_copy (url);
281   newconn->fd0.fd = -1;
282   newconn->fd1.fd = -1;
283   newconn->timer = g_timer_new ();
284   newconn->timeout = 60;
285   newconn->cseq = 1;
286
287   newconn->auth_method = GST_RTSP_AUTH_NONE;
288   newconn->username = NULL;
289   newconn->passwd = NULL;
290   newconn->auth_params = NULL;
291
292   *conn = newconn;
293
294   return GST_RTSP_OK;
295
296   /* ERRORS */
297 #ifdef G_OS_WIN32
298 startup_error:
299   {
300     g_warning ("Error %d on WSAStartup", error);
301     return GST_RTSP_EWSASTART;
302   }
303 version_error:
304   {
305     g_warning ("Windows sockets are not version 0x202 (current 0x%x)",
306         w.wVersion);
307     WSACleanup ();
308     return GST_RTSP_EWSAVERSION;
309   }
310 #endif
311 no_fdset:
312   {
313     g_free (newconn);
314 #ifdef G_OS_WIN32
315     WSACleanup ();
316 #endif
317     return GST_RTSP_ESYS;
318   }
319 }
320
321 /**
322  * gst_rtsp_connection_create_from_fd:
323  * @fd: a file descriptor
324  * @ip: the IP address of the other end
325  * @port: the port used by the other end
326  * @initial_buffer: data already read from @fd
327  * @conn: storage for a #GstRTSPConnection
328  *
329  * Create a new #GstRTSPConnection for handling communication on the existing
330  * file descriptor @fd. The @initial_buffer contains any data already read from
331  * @fd which should be used before starting to read new data.
332  *
333  * Returns: #GST_RTSP_OK when @conn contains a valid connection.
334  *
335  * Since: 0.10.25
336  */
337 GstRTSPResult
338 gst_rtsp_connection_create_from_fd (gint fd, const gchar * ip, guint16 port,
339     const gchar * initial_buffer, GstRTSPConnection ** conn)
340 {
341   GstRTSPConnection *newconn = NULL;
342   GstRTSPUrl *url;
343 #ifdef G_OS_WIN32
344   gulong flags = 1;
345 #endif
346   GstRTSPResult res;
347
348   g_return_val_if_fail (fd >= 0, GST_RTSP_EINVAL);
349   g_return_val_if_fail (ip != NULL, GST_RTSP_EINVAL);
350   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
351
352   /* set to non-blocking mode so that we can cancel the communication */
353 #ifndef G_OS_WIN32
354   fcntl (fd, F_SETFL, O_NONBLOCK);
355 #else
356   ioctlsocket (fd, FIONBIO, &flags);
357 #endif /* G_OS_WIN32 */
358
359   /* create a url for the client address */
360   url = g_new0 (GstRTSPUrl, 1);
361   url->host = g_strdup (ip);
362   url->port = port;
363
364   /* now create the connection object */
365   GST_RTSP_CHECK (gst_rtsp_connection_create (url, &newconn), newconn_failed);
366   gst_rtsp_url_free (url);
367
368   ADD_POLLFD (newconn->fdset, &newconn->fd0, fd);
369
370   /* both read and write initially */
371   newconn->readfd = &newconn->fd0;
372   newconn->writefd = &newconn->fd0;
373
374   newconn->ip = g_strdup (ip);
375
376   newconn->initial_buffer = g_strdup (initial_buffer);
377
378   *conn = newconn;
379
380   return GST_RTSP_OK;
381
382   /* ERRORS */
383 newconn_failed:
384   {
385     gst_rtsp_url_free (url);
386     return res;
387   }
388 }
389
390 /**
391  * gst_rtsp_connection_accept:
392  * @sock: a socket
393  * @conn: storage for a #GstRTSPConnection
394  *
395  * Accept a new connection on @sock and create a new #GstRTSPConnection for
396  * handling communication on new socket.
397  *
398  * Returns: #GST_RTSP_OK when @conn contains a valid connection.
399  *
400  * Since: 0.10.23
401  */
402 GstRTSPResult
403 gst_rtsp_connection_accept (gint sock, GstRTSPConnection ** conn)
404 {
405   int fd;
406   union gst_sockaddr sa;
407   socklen_t slen = sizeof (sa);
408   gchar ip[INET6_ADDRSTRLEN];
409   guint16 port;
410
411   g_return_val_if_fail (sock >= 0, GST_RTSP_EINVAL);
412   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
413
414   memset (&sa, 0, slen);
415
416 #ifndef G_OS_WIN32
417   fd = accept (sock, &sa.sa, &slen);
418 #else
419   fd = accept (sock, &sa.sa, (gint *) & slen);
420 #endif /* G_OS_WIN32 */
421   if (fd == -1)
422     goto accept_failed;
423
424   if (getnameinfo (&sa.sa, slen, ip, sizeof (ip), NULL, 0, NI_NUMERICHOST) != 0)
425     goto getnameinfo_failed;
426
427   if (sa.sa.sa_family == AF_INET)
428     port = sa.sa_in.sin_port;
429   else if (sa.sa.sa_family == AF_INET6)
430     port = sa.sa_in6.sin6_port;
431   else
432     goto wrong_family;
433
434   return gst_rtsp_connection_create_from_fd (fd, ip, port, NULL, conn);
435
436   /* ERRORS */
437 accept_failed:
438   {
439     return GST_RTSP_ESYS;
440   }
441 getnameinfo_failed:
442 wrong_family:
443   {
444     close (fd);
445     return GST_RTSP_ERROR;
446   }
447 }
448
449 static gchar *
450 do_resolve (const gchar * host)
451 {
452   static gchar ip[INET6_ADDRSTRLEN];
453   struct addrinfo *aires;
454   struct addrinfo *ai;
455   gint aierr;
456
457   aierr = getaddrinfo (host, NULL, NULL, &aires);
458   if (aierr != 0)
459     goto no_addrinfo;
460
461   for (ai = aires; ai; ai = ai->ai_next) {
462     if (ai->ai_family == AF_INET || ai->ai_family == AF_INET6) {
463       break;
464     }
465   }
466   if (ai == NULL)
467     goto no_family;
468
469   aierr = getnameinfo (ai->ai_addr, ai->ai_addrlen, ip, sizeof (ip), NULL, 0,
470       NI_NUMERICHOST | NI_NUMERICSERV);
471   if (aierr != 0)
472     goto no_address;
473
474   freeaddrinfo (aires);
475
476   return g_strdup (ip);
477
478   /* ERRORS */
479 no_addrinfo:
480   {
481     GST_ERROR ("no addrinfo found for %s: %s", host, gai_strerror (aierr));
482     return NULL;
483   }
484 no_family:
485   {
486     GST_ERROR ("no family found for %s", host);
487     freeaddrinfo (aires);
488     return NULL;
489   }
490 no_address:
491   {
492     GST_ERROR ("no address found for %s: %s", host, gai_strerror (aierr));
493     freeaddrinfo (aires);
494     return NULL;
495   }
496 }
497
498 static GstRTSPResult
499 do_connect (const gchar * ip, guint16 port, GstPollFD * fdout,
500     GstPoll * fdset, GTimeVal * timeout)
501 {
502   gint fd;
503   struct addrinfo hints;
504   struct addrinfo *aires;
505   struct addrinfo *ai;
506   gint aierr;
507   gchar service[NI_MAXSERV];
508   gint ret;
509 #ifdef G_OS_WIN32
510   unsigned long flags = 1;
511 #endif /* G_OS_WIN32 */
512   GstClockTime to;
513   gint retval;
514
515   memset (&hints, 0, sizeof hints);
516   hints.ai_flags = AI_NUMERICHOST;
517   hints.ai_family = AF_UNSPEC;
518   hints.ai_socktype = SOCK_STREAM;
519   g_snprintf (service, sizeof (service) - 1, "%hu", port);
520   service[sizeof (service) - 1] = '\0';
521
522   aierr = getaddrinfo (ip, service, &hints, &aires);
523   if (aierr != 0)
524     goto no_addrinfo;
525
526   for (ai = aires; ai; ai = ai->ai_next) {
527     if (ai->ai_family == AF_INET || ai->ai_family == AF_INET6) {
528       break;
529     }
530   }
531   if (ai == NULL)
532     goto no_family;
533
534   fd = socket (ai->ai_family, SOCK_STREAM, 0);
535   if (fd == -1)
536     goto no_socket;
537
538   /* set to non-blocking mode so that we can cancel the connect */
539 #ifndef G_OS_WIN32
540   fcntl (fd, F_SETFL, O_NONBLOCK);
541 #else
542   ioctlsocket (fd, FIONBIO, &flags);
543 #endif /* G_OS_WIN32 */
544
545   /* add the socket to our fdset */
546   ADD_POLLFD (fdset, fdout, fd);
547
548   /* we are going to connect ASYNC now */
549   ret = connect (fd, ai->ai_addr, ai->ai_addrlen);
550   if (ret == 0)
551     goto done;
552   if (!ERRNO_IS_EINPROGRESS)
553     goto sys_error;
554
555   /* wait for connect to complete up to the specified timeout or until we got
556    * interrupted. */
557   gst_poll_fd_ctl_write (fdset, fdout, TRUE);
558
559   to = timeout ? GST_TIMEVAL_TO_TIME (*timeout) : GST_CLOCK_TIME_NONE;
560
561   do {
562     retval = gst_poll_wait (fdset, to);
563   } while (retval == -1 && (errno == EINTR || errno == EAGAIN));
564
565   if (retval == 0)
566     goto timeout;
567   else if (retval == -1)
568     goto sys_error;
569
570   /* we can still have an error connecting on windows */
571   if (gst_poll_fd_has_error (fdset, fdout)) {
572     socklen_t len = sizeof (errno);
573 #ifndef G_OS_WIN32
574     getsockopt (fd, SOL_SOCKET, SO_ERROR, &errno, &len);
575 #else
576     getsockopt (fd, SOL_SOCKET, SO_ERROR, (char *) &errno, &len);
577 #endif
578     goto sys_error;
579   }
580
581   gst_poll_fd_ignored (fdset, fdout);
582
583 done:
584   freeaddrinfo (aires);
585
586   return GST_RTSP_OK;
587
588   /* ERRORS */
589 no_addrinfo:
590   {
591     GST_ERROR ("no addrinfo found for %s: %s", ip, gai_strerror (aierr));
592     return GST_RTSP_ERROR;
593   }
594 no_family:
595   {
596     GST_ERROR ("no family found for %s", ip);
597     freeaddrinfo (aires);
598     return GST_RTSP_ERROR;
599   }
600 no_socket:
601   {
602     GST_ERROR ("no socket %d (%s)", errno, g_strerror (errno));
603     freeaddrinfo (aires);
604     return GST_RTSP_ESYS;
605   }
606 sys_error:
607   {
608     GST_ERROR ("system error %d (%s)", errno, g_strerror (errno));
609     REMOVE_POLLFD (fdset, fdout);
610     freeaddrinfo (aires);
611     return GST_RTSP_ESYS;
612   }
613 timeout:
614   {
615     GST_ERROR ("timeout");
616     REMOVE_POLLFD (fdset, fdout);
617     freeaddrinfo (aires);
618     return GST_RTSP_ETIMEOUT;
619   }
620 }
621
622 static GstRTSPResult
623 setup_tunneling (GstRTSPConnection * conn, GTimeVal * timeout)
624 {
625   gint i;
626   GstRTSPResult res;
627   gchar *str;
628   guint idx, line;
629   gint retval;
630   GstClockTime to;
631   gchar *ip, *url_port_str;
632   guint16 port, url_port;
633   gchar codestr[4], *resultstr;
634   gint code;
635   GstRTSPUrl *url;
636   gchar *hostparam;
637
638   /* create a random sessionid */
639   for (i = 0; i < TUNNELID_LEN; i++)
640     conn->tunnelid[i] = g_random_int_range ('a', 'z');
641   conn->tunnelid[TUNNELID_LEN - 1] = '\0';
642
643   url = conn->url;
644   /* get the port from the url */
645   gst_rtsp_url_get_port (url, &url_port);
646
647   if (conn->proxy_host) {
648     hostparam = g_strdup_printf ("Host: %s:%d\r\n", url->host, url_port);
649     url_port_str = g_strdup_printf (":%d", url_port);
650     ip = conn->proxy_host;
651     port = conn->proxy_port;
652   } else {
653     hostparam = NULL;
654     url_port_str = NULL;
655     ip = conn->ip;
656     port = url_port;
657   }
658
659   /* */
660   str = g_strdup_printf ("GET %s%s%s%s%s%s HTTP/1.0\r\n"
661       "%s"
662       "x-sessioncookie: %s\r\n"
663       "Accept: application/x-rtsp-tunnelled\r\n"
664       "Pragma: no-cache\r\n"
665       "Cache-Control: no-cache\r\n" "\r\n",
666       conn->proxy_host ? "http://" : "",
667       conn->proxy_host ? url->host : "",
668       conn->proxy_host ? url_port_str : "",
669       url->abspath, url->query ? "?" : "", url->query ? url->query : "",
670       hostparam ? hostparam : "", conn->tunnelid);
671
672   /* we start by writing to this fd */
673   conn->writefd = &conn->fd0;
674
675   res = gst_rtsp_connection_write (conn, (guint8 *) str, strlen (str), timeout);
676   g_free (str);
677   if (res != GST_RTSP_OK)
678     goto write_failed;
679
680   gst_poll_fd_ctl_write (conn->fdset, &conn->fd0, FALSE);
681   gst_poll_fd_ctl_read (conn->fdset, &conn->fd0, TRUE);
682
683   to = timeout ? GST_TIMEVAL_TO_TIME (*timeout) : GST_CLOCK_TIME_NONE;
684
685   line = 0;
686   while (TRUE) {
687     guint8 buffer[4096];
688
689     idx = 0;
690     while (TRUE) {
691       res = read_line (conn, buffer, &idx, sizeof (buffer));
692       if (res == GST_RTSP_EEOF)
693         goto eof;
694       if (res == GST_RTSP_OK)
695         break;
696       if (res != GST_RTSP_EINTR)
697         goto read_error;
698
699       do {
700         retval = gst_poll_wait (conn->fdset, to);
701       } while (retval == -1 && (errno == EINTR || errno == EAGAIN));
702
703       /* check for timeout */
704       if (retval == 0)
705         goto timeout;
706
707       if (retval == -1) {
708         if (errno == EBUSY)
709           goto stopped;
710         else
711           goto select_error;
712       }
713     }
714
715     /* check for last line */
716     if (buffer[0] == '\r')
717       buffer[0] = '\0';
718     if (buffer[0] == '\0')
719       break;
720
721     if (line == 0) {
722       /* first line, parse response */
723       gchar versionstr[20];
724       gchar *bptr;
725
726       bptr = (gchar *) buffer;
727
728       parse_string (versionstr, sizeof (versionstr), &bptr);
729       parse_string (codestr, sizeof (codestr), &bptr);
730       code = atoi (codestr);
731
732       while (g_ascii_isspace (*bptr))
733         bptr++;
734
735       resultstr = bptr;
736
737       if (code != GST_RTSP_STS_OK)
738         goto wrong_result;
739     } else {
740       gchar key[32];
741       gchar *value;
742
743       /* other lines, parse key/value */
744       res = parse_key_value (buffer, key, sizeof (key), &value);
745       if (res == GST_RTSP_OK) {
746         /* we got a new ip address */
747         if (g_ascii_strcasecmp (key, "x-server-ip-address") == 0) {
748           if (conn->proxy_host) {
749             /* if we use a proxy we need to change the destination url */
750             g_free (url->host);
751             url->host = g_strdup (value);
752             g_free (hostparam);
753             g_free (url_port_str);
754             hostparam =
755                 g_strdup_printf ("Host: %s:%d\r\n", url->host, url_port);
756             url_port_str = g_strdup_printf (":%d", url_port);
757           } else {
758             /* and resolve the new ip address */
759             if (!(ip = do_resolve (conn->ip)))
760               goto not_resolved;
761             g_free (conn->ip);
762             conn->ip = ip;
763           }
764         }
765       }
766     }
767     line++;
768   }
769
770   /* connect to the host/port */
771   res = do_connect (ip, port, &conn->fd1, conn->fdset, timeout);
772   if (res != GST_RTSP_OK)
773     goto connect_failed;
774
775   /* this is now our writing socket */
776   conn->writefd = &conn->fd1;
777
778   /* */
779   str = g_strdup_printf ("POST %s%s%s%s%s%s HTTP/1.0\r\n"
780       "%s"
781       "x-sessioncookie: %s\r\n"
782       "Content-Type: application/x-rtsp-tunnelled\r\n"
783       "Pragma: no-cache\r\n"
784       "Cache-Control: no-cache\r\n"
785       "Content-Length: 32767\r\n"
786       "Expires: Sun, 9 Jan 1972 00:00:00 GMT\r\n"
787       "\r\n",
788       conn->proxy_host ? "http://" : "",
789       conn->proxy_host ? url->host : "",
790       conn->proxy_host ? url_port_str : "",
791       url->abspath, url->query ? "?" : "", url->query ? url->query : "",
792       hostparam ? hostparam : "", conn->tunnelid);
793
794   res = gst_rtsp_connection_write (conn, (guint8 *) str, strlen (str), timeout);
795   g_free (str);
796   if (res != GST_RTSP_OK)
797     goto write_failed;
798
799 exit:
800   g_free (hostparam);
801   g_free (url_port_str);
802
803   return res;
804
805   /* ERRORS */
806 write_failed:
807   {
808     GST_ERROR ("write failed (%d)", res);
809     goto exit;
810   }
811 eof:
812   {
813     res = GST_RTSP_EEOF;
814     goto exit;
815   }
816 read_error:
817   {
818     goto exit;
819   }
820 timeout:
821   {
822     res = GST_RTSP_ETIMEOUT;
823     goto exit;
824   }
825 select_error:
826   {
827     res = GST_RTSP_ESYS;
828     goto exit;
829   }
830 stopped:
831   {
832     res = GST_RTSP_EINTR;
833     goto exit;
834   }
835 wrong_result:
836   {
837     GST_ERROR ("got failure response %d %s", code, resultstr);
838     res = GST_RTSP_ERROR;
839     goto exit;
840   }
841 not_resolved:
842   {
843     GST_ERROR ("could not resolve %s", conn->ip);
844     res = GST_RTSP_ENET;
845     goto exit;
846   }
847 connect_failed:
848   {
849     GST_ERROR ("failed to connect");
850     goto exit;
851   }
852 }
853
854 /**
855  * gst_rtsp_connection_connect:
856  * @conn: a #GstRTSPConnection 
857  * @timeout: a #GTimeVal timeout
858  *
859  * Attempt to connect to the url of @conn made with
860  * gst_rtsp_connection_create(). If @timeout is #NULL this function can block
861  * forever. If @timeout contains a valid timeout, this function will return
862  * #GST_RTSP_ETIMEOUT after the timeout expired.
863  *
864  * This function can be cancelled with gst_rtsp_connection_flush().
865  *
866  * Returns: #GST_RTSP_OK when a connection could be made.
867  */
868 GstRTSPResult
869 gst_rtsp_connection_connect (GstRTSPConnection * conn, GTimeVal * timeout)
870 {
871   GstRTSPResult res;
872   gchar *ip;
873   guint16 port;
874   GstRTSPUrl *url;
875
876   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
877   g_return_val_if_fail (conn->url != NULL, GST_RTSP_EINVAL);
878   g_return_val_if_fail (conn->fd0.fd < 0, GST_RTSP_EINVAL);
879
880   url = conn->url;
881
882   if (conn->proxy_host && conn->tunneled) {
883     if (!(ip = do_resolve (conn->proxy_host))) {
884       GST_ERROR ("could not resolve %s", conn->proxy_host);
885       goto not_resolved;
886     }
887     port = conn->proxy_port;
888     g_free (conn->proxy_host);
889     conn->proxy_host = ip;
890   } else {
891     if (!(ip = do_resolve (url->host))) {
892       GST_ERROR ("could not resolve %s", url->host);
893       goto not_resolved;
894     }
895     /* get the port from the url */
896     gst_rtsp_url_get_port (url, &port);
897
898     g_free (conn->ip);
899     conn->ip = ip;
900   }
901
902   /* connect to the host/port */
903   res = do_connect (ip, port, &conn->fd0, conn->fdset, timeout);
904   if (res != GST_RTSP_OK)
905     goto connect_failed;
906
907   /* this is our read URL */
908   conn->readfd = &conn->fd0;
909
910   if (conn->tunneled) {
911     res = setup_tunneling (conn, timeout);
912     if (res != GST_RTSP_OK)
913       goto tunneling_failed;
914   } else {
915     conn->writefd = &conn->fd0;
916   }
917
918   return GST_RTSP_OK;
919
920 not_resolved:
921   {
922     return GST_RTSP_ENET;
923   }
924 connect_failed:
925   {
926     GST_ERROR ("failed to connect");
927     return res;
928   }
929 tunneling_failed:
930   {
931     GST_ERROR ("failed to setup tunneling");
932     return res;
933   }
934 }
935
936 static void
937 auth_digest_compute_hex_urp (const gchar * username,
938     const gchar * realm, const gchar * password, gchar hex_urp[33])
939 {
940   GChecksum *md5_context = g_checksum_new (G_CHECKSUM_MD5);
941   const gchar *digest_string;
942
943   g_checksum_update (md5_context, (const guchar *) username, strlen (username));
944   g_checksum_update (md5_context, (const guchar *) ":", 1);
945   g_checksum_update (md5_context, (const guchar *) realm, strlen (realm));
946   g_checksum_update (md5_context, (const guchar *) ":", 1);
947   g_checksum_update (md5_context, (const guchar *) password, strlen (password));
948   digest_string = g_checksum_get_string (md5_context);
949
950   memset (hex_urp, 0, 33);
951   memcpy (hex_urp, digest_string, strlen (digest_string));
952
953   g_checksum_free (md5_context);
954 }
955
956 static void
957 auth_digest_compute_response (const gchar * method,
958     const gchar * uri, const gchar * hex_a1, const gchar * nonce,
959     gchar response[33])
960 {
961   char hex_a2[33] = { 0, };
962   GChecksum *md5_context = g_checksum_new (G_CHECKSUM_MD5);
963   const gchar *digest_string;
964
965   /* compute A2 */
966   g_checksum_update (md5_context, (const guchar *) method, strlen (method));
967   g_checksum_update (md5_context, (const guchar *) ":", 1);
968   g_checksum_update (md5_context, (const guchar *) uri, strlen (uri));
969   digest_string = g_checksum_get_string (md5_context);
970   memcpy (hex_a2, digest_string, strlen (digest_string));
971
972   /* compute KD */
973 #if GLIB_CHECK_VERSION (2, 18, 0)
974   g_checksum_reset (md5_context);
975 #else
976   g_checksum_free (md5_context);
977   md5_context = g_checksum_new (G_CHECKSUM_MD5);
978 #endif
979   g_checksum_update (md5_context, (const guchar *) hex_a1, strlen (hex_a1));
980   g_checksum_update (md5_context, (const guchar *) ":", 1);
981   g_checksum_update (md5_context, (const guchar *) nonce, strlen (nonce));
982   g_checksum_update (md5_context, (const guchar *) ":", 1);
983
984   g_checksum_update (md5_context, (const guchar *) hex_a2, 32);
985   digest_string = g_checksum_get_string (md5_context);
986   memset (response, 0, 33);
987   memcpy (response, digest_string, strlen (digest_string));
988
989   g_checksum_free (md5_context);
990 }
991
992 static void
993 add_auth_header (GstRTSPConnection * conn, GstRTSPMessage * message)
994 {
995   switch (conn->auth_method) {
996     case GST_RTSP_AUTH_BASIC:{
997       gchar *user_pass;
998       gchar *user_pass64;
999       gchar *auth_string;
1000
1001       user_pass = g_strdup_printf ("%s:%s", conn->username, conn->passwd);
1002       user_pass64 = g_base64_encode ((guchar *) user_pass, strlen (user_pass));
1003       auth_string = g_strdup_printf ("Basic %s", user_pass64);
1004
1005       gst_rtsp_message_take_header (message, GST_RTSP_HDR_AUTHORIZATION,
1006           auth_string);
1007
1008       g_free (user_pass);
1009       g_free (user_pass64);
1010       break;
1011     }
1012     case GST_RTSP_AUTH_DIGEST:{
1013       gchar response[33], hex_urp[33];
1014       gchar *auth_string, *auth_string2;
1015       gchar *realm;
1016       gchar *nonce;
1017       gchar *opaque;
1018       const gchar *uri;
1019       const gchar *method;
1020
1021       /* we need to have some params set */
1022       if (conn->auth_params == NULL)
1023         break;
1024
1025       /* we need the realm and nonce */
1026       realm = (gchar *) g_hash_table_lookup (conn->auth_params, "realm");
1027       nonce = (gchar *) g_hash_table_lookup (conn->auth_params, "nonce");
1028       if (realm == NULL || nonce == NULL)
1029         break;
1030
1031       auth_digest_compute_hex_urp (conn->username, realm, conn->passwd,
1032           hex_urp);
1033
1034       method = gst_rtsp_method_as_text (message->type_data.request.method);
1035       uri = message->type_data.request.uri;
1036
1037       /* Assume no qop, algorithm=md5, stale=false */
1038       /* For algorithm MD5, a1 = urp. */
1039       auth_digest_compute_response (method, uri, hex_urp, nonce, response);
1040       auth_string = g_strdup_printf ("Digest username=\"%s\", "
1041           "realm=\"%s\", nonce=\"%s\", uri=\"%s\", response=\"%s\"",
1042           conn->username, realm, nonce, uri, response);
1043
1044       opaque = (gchar *) g_hash_table_lookup (conn->auth_params, "opaque");
1045       if (opaque) {
1046         auth_string2 = g_strdup_printf ("%s, opaque=\"%s\"", auth_string,
1047             opaque);
1048         g_free (auth_string);
1049         auth_string = auth_string2;
1050       }
1051       gst_rtsp_message_take_header (message, GST_RTSP_HDR_AUTHORIZATION,
1052           auth_string);
1053       break;
1054     }
1055     default:
1056       /* Nothing to do */
1057       break;
1058   }
1059 }
1060
1061 static void
1062 gen_date_string (gchar * date_string, guint len)
1063 {
1064   GTimeVal tv;
1065   time_t t;
1066 #ifdef HAVE_GMTIME_R
1067   struct tm tm_;
1068 #endif
1069
1070   g_get_current_time (&tv);
1071   t = (time_t) tv.tv_sec;
1072
1073 #ifdef HAVE_GMTIME_R
1074   strftime (date_string, len, "%a, %d %b %Y %H:%M:%S GMT", gmtime_r (&t, &tm_));
1075 #else
1076   strftime (date_string, len, "%a, %d %b %Y %H:%M:%S GMT", gmtime (&t));
1077 #endif
1078 }
1079
1080 static GstRTSPResult
1081 write_bytes (gint fd, const guint8 * buffer, guint * idx, guint size)
1082 {
1083   guint left;
1084
1085   if (G_UNLIKELY (*idx > size))
1086     return GST_RTSP_ERROR;
1087
1088   left = size - *idx;
1089
1090   while (left) {
1091     gint r;
1092
1093     r = WRITE_SOCKET (fd, &buffer[*idx], left);
1094     if (G_UNLIKELY (r == 0)) {
1095       return GST_RTSP_EINTR;
1096     } else if (G_UNLIKELY (r < 0)) {
1097       if (ERRNO_IS_EAGAIN)
1098         return GST_RTSP_EINTR;
1099       if (!ERRNO_IS_EINTR)
1100         return GST_RTSP_ESYS;
1101     } else {
1102       left -= r;
1103       *idx += r;
1104     }
1105   }
1106   return GST_RTSP_OK;
1107 }
1108
1109 static gint
1110 fill_raw_bytes (GstRTSPConnection * conn, guint8 * buffer, guint size)
1111 {
1112   gint out = 0;
1113
1114   if (G_UNLIKELY (conn->initial_buffer != NULL)) {
1115     gsize left = strlen (&conn->initial_buffer[conn->initial_buffer_offset]);
1116
1117     out = MIN (left, size);
1118     memcpy (buffer, &conn->initial_buffer[conn->initial_buffer_offset], out);
1119
1120     if (left == (gsize) out) {
1121       g_free (conn->initial_buffer);
1122       conn->initial_buffer = NULL;
1123       conn->initial_buffer_offset = 0;
1124     } else
1125       conn->initial_buffer_offset += out;
1126   }
1127
1128   if (G_LIKELY (size > (guint) out)) {
1129     gint r;
1130
1131     r = READ_SOCKET (conn->readfd->fd, &buffer[out], size - out);
1132     if (r <= 0) {
1133       if (out == 0)
1134         out = r;
1135     } else
1136       out += r;
1137   }
1138
1139   return out;
1140 }
1141
1142 static gint
1143 fill_bytes (GstRTSPConnection * conn, guint8 * buffer, guint size)
1144 {
1145   DecodeCtx *ctx = conn->ctxp;
1146   gint out = 0;
1147
1148   if (ctx) {
1149     while (size > 0) {
1150       guint8 in[sizeof (ctx->out) * 4 / 3];
1151       gint r;
1152
1153       while (size > 0 && ctx->cout < ctx->coutl) {
1154         /* we have some leftover bytes */
1155         *buffer++ = ctx->out[ctx->cout++];
1156         size--;
1157         out++;
1158       }
1159
1160       /* got what we needed? */
1161       if (size == 0)
1162         break;
1163
1164       /* try to read more bytes */
1165       r = fill_raw_bytes (conn, in, sizeof (in));
1166       if (r <= 0) {
1167         if (out == 0)
1168           out = r;
1169         break;
1170       }
1171
1172       ctx->cout = 0;
1173       ctx->coutl =
1174           g_base64_decode_step ((gchar *) in, r, ctx->out, &ctx->state,
1175           &ctx->save);
1176     }
1177   } else {
1178     out = fill_raw_bytes (conn, buffer, size);
1179   }
1180
1181   return out;
1182 }
1183
1184 static GstRTSPResult
1185 read_bytes (GstRTSPConnection * conn, guint8 * buffer, guint * idx, guint size)
1186 {
1187   guint left;
1188
1189   if (G_UNLIKELY (*idx > size))
1190     return GST_RTSP_ERROR;
1191
1192   left = size - *idx;
1193
1194   while (left) {
1195     gint r;
1196
1197     r = fill_bytes (conn, &buffer[*idx], left);
1198     if (G_UNLIKELY (r == 0)) {
1199       return GST_RTSP_EEOF;
1200     } else if (G_UNLIKELY (r < 0)) {
1201       if (ERRNO_IS_EAGAIN)
1202         return GST_RTSP_EINTR;
1203       if (!ERRNO_IS_EINTR)
1204         return GST_RTSP_ESYS;
1205     } else {
1206       left -= r;
1207       *idx += r;
1208     }
1209   }
1210   return GST_RTSP_OK;
1211 }
1212
1213 static GstRTSPResult
1214 read_line (GstRTSPConnection * conn, guint8 * buffer, guint * idx, guint size)
1215 {
1216   while (TRUE) {
1217     guint8 c;
1218     gint r;
1219
1220     r = fill_bytes (conn, &c, 1);
1221     if (G_UNLIKELY (r == 0)) {
1222       return GST_RTSP_EEOF;
1223     } else if (G_UNLIKELY (r < 0)) {
1224       if (ERRNO_IS_EAGAIN)
1225         return GST_RTSP_EINTR;
1226       if (!ERRNO_IS_EINTR)
1227         return GST_RTSP_ESYS;
1228     } else {
1229       if (c == '\n')            /* end on \n */
1230         break;
1231       if (c == '\r')            /* ignore \r */
1232         continue;
1233
1234       if (G_LIKELY (*idx < size - 1))
1235         buffer[(*idx)++] = c;
1236     }
1237   }
1238   buffer[*idx] = '\0';
1239
1240   return GST_RTSP_OK;
1241 }
1242
1243 /**
1244  * gst_rtsp_connection_write:
1245  * @conn: a #GstRTSPConnection
1246  * @data: the data to write
1247  * @size: the size of @data
1248  * @timeout: a timeout value or #NULL
1249  *
1250  * Attempt to write @size bytes of @data to the connected @conn, blocking up to
1251  * the specified @timeout. @timeout can be #NULL, in which case this function
1252  * might block forever.
1253  * 
1254  * This function can be cancelled with gst_rtsp_connection_flush().
1255  *
1256  * Returns: #GST_RTSP_OK on success.
1257  */
1258 GstRTSPResult
1259 gst_rtsp_connection_write (GstRTSPConnection * conn, const guint8 * data,
1260     guint size, GTimeVal * timeout)
1261 {
1262   guint offset;
1263   gint retval;
1264   GstClockTime to;
1265   GstRTSPResult res;
1266
1267   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
1268   g_return_val_if_fail (data != NULL || size == 0, GST_RTSP_EINVAL);
1269   g_return_val_if_fail (conn->writefd != NULL, GST_RTSP_EINVAL);
1270
1271   gst_poll_set_controllable (conn->fdset, TRUE);
1272   gst_poll_fd_ctl_write (conn->fdset, conn->writefd, TRUE);
1273   gst_poll_fd_ctl_read (conn->fdset, conn->readfd, FALSE);
1274   /* clear all previous poll results */
1275   gst_poll_fd_ignored (conn->fdset, conn->writefd);
1276   gst_poll_fd_ignored (conn->fdset, conn->readfd);
1277
1278   to = timeout ? GST_TIMEVAL_TO_TIME (*timeout) : GST_CLOCK_TIME_NONE;
1279
1280   offset = 0;
1281
1282   while (TRUE) {
1283     /* try to write */
1284     res = write_bytes (conn->writefd->fd, data, &offset, size);
1285     if (G_LIKELY (res == GST_RTSP_OK))
1286       break;
1287     if (G_UNLIKELY (res != GST_RTSP_EINTR))
1288       goto write_error;
1289
1290     /* not all is written, wait until we can write more */
1291     do {
1292       retval = gst_poll_wait (conn->fdset, to);
1293     } while (retval == -1 && (errno == EINTR || errno == EAGAIN));
1294
1295     if (G_UNLIKELY (retval == 0))
1296       goto timeout;
1297
1298     if (G_UNLIKELY (retval == -1)) {
1299       if (errno == EBUSY)
1300         goto stopped;
1301       else
1302         goto select_error;
1303     }
1304   }
1305   return GST_RTSP_OK;
1306
1307   /* ERRORS */
1308 timeout:
1309   {
1310     return GST_RTSP_ETIMEOUT;
1311   }
1312 select_error:
1313   {
1314     return GST_RTSP_ESYS;
1315   }
1316 stopped:
1317   {
1318     return GST_RTSP_EINTR;
1319   }
1320 write_error:
1321   {
1322     return res;
1323   }
1324 }
1325
1326 static GString *
1327 message_to_string (GstRTSPConnection * conn, GstRTSPMessage * message)
1328 {
1329   GString *str = NULL;
1330
1331   str = g_string_new ("");
1332
1333   switch (message->type) {
1334     case GST_RTSP_MESSAGE_REQUEST:
1335       /* create request string, add CSeq */
1336       g_string_append_printf (str, "%s %s RTSP/1.0\r\n"
1337           "CSeq: %d\r\n",
1338           gst_rtsp_method_as_text (message->type_data.request.method),
1339           message->type_data.request.uri, conn->cseq++);
1340       /* add session id if we have one */
1341       if (conn->session_id[0] != '\0') {
1342         gst_rtsp_message_remove_header (message, GST_RTSP_HDR_SESSION, -1);
1343         gst_rtsp_message_add_header (message, GST_RTSP_HDR_SESSION,
1344             conn->session_id);
1345       }
1346       /* add any authentication headers */
1347       add_auth_header (conn, message);
1348       break;
1349     case GST_RTSP_MESSAGE_RESPONSE:
1350       /* create response string */
1351       g_string_append_printf (str, "RTSP/1.0 %d %s\r\n",
1352           message->type_data.response.code, message->type_data.response.reason);
1353       break;
1354     case GST_RTSP_MESSAGE_HTTP_REQUEST:
1355       /* create request string */
1356       g_string_append_printf (str, "%s %s HTTP/%s\r\n",
1357           gst_rtsp_method_as_text (message->type_data.request.method),
1358           message->type_data.request.uri,
1359           gst_rtsp_version_as_text (message->type_data.request.version));
1360       /* add any authentication headers */
1361       add_auth_header (conn, message);
1362       break;
1363     case GST_RTSP_MESSAGE_HTTP_RESPONSE:
1364       /* create response string */
1365       g_string_append_printf (str, "HTTP/%s %d %s\r\n",
1366           gst_rtsp_version_as_text (message->type_data.request.version),
1367           message->type_data.response.code, message->type_data.response.reason);
1368       break;
1369     case GST_RTSP_MESSAGE_DATA:
1370     {
1371       guint8 data_header[4];
1372
1373       /* prepare data header */
1374       data_header[0] = '$';
1375       data_header[1] = message->type_data.data.channel;
1376       data_header[2] = (message->body_size >> 8) & 0xff;
1377       data_header[3] = message->body_size & 0xff;
1378
1379       /* create string with header and data */
1380       str = g_string_append_len (str, (gchar *) data_header, 4);
1381       str =
1382           g_string_append_len (str, (gchar *) message->body,
1383           message->body_size);
1384       break;
1385     }
1386     default:
1387       g_string_free (str, TRUE);
1388       g_return_val_if_reached (NULL);
1389       break;
1390   }
1391
1392   /* append headers and body */
1393   if (message->type != GST_RTSP_MESSAGE_DATA) {
1394     gchar date_string[100];
1395
1396     gen_date_string (date_string, sizeof (date_string));
1397
1398     /* add date header */
1399     gst_rtsp_message_remove_header (message, GST_RTSP_HDR_DATE, -1);
1400     gst_rtsp_message_add_header (message, GST_RTSP_HDR_DATE, date_string);
1401
1402     /* append headers */
1403     gst_rtsp_message_append_headers (message, str);
1404
1405     /* append Content-Length and body if needed */
1406     if (message->body != NULL && message->body_size > 0) {
1407       gchar *len;
1408
1409       len = g_strdup_printf ("%d", message->body_size);
1410       g_string_append_printf (str, "%s: %s\r\n",
1411           gst_rtsp_header_as_text (GST_RTSP_HDR_CONTENT_LENGTH), len);
1412       g_free (len);
1413       /* header ends here */
1414       g_string_append (str, "\r\n");
1415       str =
1416           g_string_append_len (str, (gchar *) message->body,
1417           message->body_size);
1418     } else {
1419       /* just end headers */
1420       g_string_append (str, "\r\n");
1421     }
1422   }
1423
1424   return str;
1425 }
1426
1427 /**
1428  * gst_rtsp_connection_send:
1429  * @conn: a #GstRTSPConnection
1430  * @message: the message to send
1431  * @timeout: a timeout value or #NULL
1432  *
1433  * Attempt to send @message to the connected @conn, blocking up to
1434  * the specified @timeout. @timeout can be #NULL, in which case this function
1435  * might block forever.
1436  * 
1437  * This function can be cancelled with gst_rtsp_connection_flush().
1438  *
1439  * Returns: #GST_RTSP_OK on success.
1440  */
1441 GstRTSPResult
1442 gst_rtsp_connection_send (GstRTSPConnection * conn, GstRTSPMessage * message,
1443     GTimeVal * timeout)
1444 {
1445   GString *string = NULL;
1446   GstRTSPResult res;
1447   gchar *str;
1448   gsize len;
1449
1450   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
1451   g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
1452
1453   if (G_UNLIKELY (!(string = message_to_string (conn, message))))
1454     goto no_message;
1455
1456   if (conn->tunneled) {
1457     str = g_base64_encode ((const guchar *) string->str, string->len);
1458     g_string_free (string, TRUE);
1459     len = strlen (str);
1460   } else {
1461     str = string->str;
1462     len = string->len;
1463     g_string_free (string, FALSE);
1464   }
1465
1466   /* write request */
1467   res = gst_rtsp_connection_write (conn, (guint8 *) str, len, timeout);
1468
1469   g_free (str);
1470
1471   return res;
1472
1473 no_message:
1474   {
1475     g_warning ("Wrong message");
1476     return GST_RTSP_EINVAL;
1477   }
1478 }
1479
1480 static void
1481 parse_string (gchar * dest, gint size, gchar ** src)
1482 {
1483   gint idx;
1484
1485   idx = 0;
1486   /* skip spaces */
1487   while (g_ascii_isspace (**src))
1488     (*src)++;
1489
1490   while (!g_ascii_isspace (**src) && **src != '\0') {
1491     if (idx < size - 1)
1492       dest[idx++] = **src;
1493     (*src)++;
1494   }
1495   if (size > 0)
1496     dest[idx] = '\0';
1497 }
1498
1499 static void
1500 parse_key (gchar * dest, gint size, gchar ** src)
1501 {
1502   gint idx;
1503
1504   idx = 0;
1505   while (**src != ':' && **src != '\0') {
1506     if (idx < size - 1)
1507       dest[idx++] = **src;
1508     (*src)++;
1509   }
1510   if (size > 0)
1511     dest[idx] = '\0';
1512 }
1513
1514 static GstRTSPResult
1515 parse_protocol_version (gchar * protocol, GstRTSPMsgType * type,
1516     GstRTSPVersion * version)
1517 {
1518   GstRTSPResult res = GST_RTSP_OK;
1519   gchar *ver;
1520
1521   if (G_LIKELY ((ver = strchr (protocol, '/')) != NULL)) {
1522     guint major;
1523     guint minor;
1524     gchar dummychar;
1525
1526     *ver++ = '\0';
1527
1528     /* the version number must be formatted as X.Y with nothing following */
1529     if (sscanf (ver, "%u.%u%c", &major, &minor, &dummychar) != 2)
1530       res = GST_RTSP_EPARSE;
1531
1532     if (g_ascii_strcasecmp (protocol, "RTSP") == 0) {
1533       if (major != 1 || minor != 0) {
1534         *version = GST_RTSP_VERSION_INVALID;
1535         res = GST_RTSP_ERROR;
1536       }
1537     } else if (g_ascii_strcasecmp (protocol, "HTTP") == 0) {
1538       if (*type == GST_RTSP_MESSAGE_REQUEST)
1539         *type = GST_RTSP_MESSAGE_HTTP_REQUEST;
1540       else if (*type == GST_RTSP_MESSAGE_RESPONSE)
1541         *type = GST_RTSP_MESSAGE_HTTP_RESPONSE;
1542
1543       if (major == 1 && minor == 1) {
1544         *version = GST_RTSP_VERSION_1_1;
1545       } else if (major != 1 || minor != 0) {
1546         *version = GST_RTSP_VERSION_INVALID;
1547         res = GST_RTSP_ERROR;
1548       }
1549     } else
1550       res = GST_RTSP_EPARSE;
1551   } else
1552     res = GST_RTSP_EPARSE;
1553
1554   return res;
1555 }
1556
1557 static GstRTSPResult
1558 parse_response_status (guint8 * buffer, GstRTSPMessage * msg)
1559 {
1560   GstRTSPResult res = GST_RTSP_OK;
1561   GstRTSPResult res2;
1562   gchar versionstr[20];
1563   gchar codestr[4];
1564   gint code;
1565   gchar *bptr;
1566
1567   bptr = (gchar *) buffer;
1568
1569   parse_string (versionstr, sizeof (versionstr), &bptr);
1570
1571   parse_string (codestr, sizeof (codestr), &bptr);
1572   code = atoi (codestr);
1573   if (G_UNLIKELY (*codestr == '\0' || code < 0 || code >= 600))
1574     res = GST_RTSP_EPARSE;
1575
1576   while (g_ascii_isspace (*bptr))
1577     bptr++;
1578
1579   if (G_UNLIKELY (gst_rtsp_message_init_response (msg, code, bptr,
1580               NULL) != GST_RTSP_OK))
1581     res = GST_RTSP_EPARSE;
1582
1583   res2 = parse_protocol_version (versionstr, &msg->type,
1584       &msg->type_data.response.version);
1585   if (G_LIKELY (res == GST_RTSP_OK))
1586     res = res2;
1587
1588   return res;
1589 }
1590
1591 static GstRTSPResult
1592 parse_request_line (guint8 * buffer, GstRTSPMessage * msg)
1593 {
1594   GstRTSPResult res = GST_RTSP_OK;
1595   GstRTSPResult res2;
1596   gchar versionstr[20];
1597   gchar methodstr[20];
1598   gchar urlstr[4096];
1599   gchar *bptr;
1600   GstRTSPMethod method;
1601
1602   bptr = (gchar *) buffer;
1603
1604   parse_string (methodstr, sizeof (methodstr), &bptr);
1605   method = gst_rtsp_find_method (methodstr);
1606
1607   parse_string (urlstr, sizeof (urlstr), &bptr);
1608   if (G_UNLIKELY (*urlstr == '\0'))
1609     res = GST_RTSP_EPARSE;
1610
1611   parse_string (versionstr, sizeof (versionstr), &bptr);
1612
1613   if (G_UNLIKELY (*bptr != '\0'))
1614     res = GST_RTSP_EPARSE;
1615
1616   if (G_UNLIKELY (gst_rtsp_message_init_request (msg, method,
1617               urlstr) != GST_RTSP_OK))
1618     res = GST_RTSP_EPARSE;
1619
1620   res2 = parse_protocol_version (versionstr, &msg->type,
1621       &msg->type_data.request.version);
1622   if (G_LIKELY (res == GST_RTSP_OK))
1623     res = res2;
1624
1625   if (G_LIKELY (msg->type == GST_RTSP_MESSAGE_REQUEST)) {
1626     /* GET and POST are not allowed as RTSP methods */
1627     if (msg->type_data.request.method == GST_RTSP_GET ||
1628         msg->type_data.request.method == GST_RTSP_POST) {
1629       msg->type_data.request.method = GST_RTSP_INVALID;
1630       if (res == GST_RTSP_OK)
1631         res = GST_RTSP_ERROR;
1632     }
1633   } else if (msg->type == GST_RTSP_MESSAGE_HTTP_REQUEST) {
1634     /* only GET and POST are allowed as HTTP methods */
1635     if (msg->type_data.request.method != GST_RTSP_GET &&
1636         msg->type_data.request.method != GST_RTSP_POST) {
1637       msg->type_data.request.method = GST_RTSP_INVALID;
1638       if (res == GST_RTSP_OK)
1639         res = GST_RTSP_ERROR;
1640     }
1641   }
1642
1643   return res;
1644 }
1645
1646 static GstRTSPResult
1647 parse_key_value (guint8 * buffer, gchar * key, guint keysize, gchar ** value)
1648 {
1649   gchar *bptr;
1650
1651   bptr = (gchar *) buffer;
1652
1653   /* read key */
1654   parse_key (key, keysize, &bptr);
1655   if (G_UNLIKELY (*bptr != ':'))
1656     goto no_column;
1657
1658   bptr++;
1659   while (g_ascii_isspace (*bptr))
1660     bptr++;
1661
1662   *value = bptr;
1663
1664   return GST_RTSP_OK;
1665
1666   /* ERRORS */
1667 no_column:
1668   {
1669     return GST_RTSP_EPARSE;
1670   }
1671 }
1672
1673 /* parsing lines means reading a Key: Value pair */
1674 static GstRTSPResult
1675 parse_line (guint8 * buffer, GstRTSPMessage * msg)
1676 {
1677   GstRTSPResult res;
1678   gchar key[32];
1679   gchar *value;
1680   GstRTSPHeaderField field;
1681
1682   res = parse_key_value (buffer, key, sizeof (key), &value);
1683   if (G_UNLIKELY (res != GST_RTSP_OK))
1684     goto parse_error;
1685
1686   field = gst_rtsp_find_header_field (key);
1687   if (field != GST_RTSP_HDR_INVALID)
1688     gst_rtsp_message_add_header (msg, field, value);
1689
1690   return GST_RTSP_OK;
1691
1692   /* ERRORS */
1693 parse_error:
1694   {
1695     return res;
1696   }
1697 }
1698
1699 /* returns:
1700  *  GST_RTSP_OK when a complete message was read.
1701  *  GST_RTSP_EEOF: when the socket is closed
1702  *  GST_RTSP_EINTR: when more data is needed.
1703  *  GST_RTSP_..: some other error occured.
1704  */
1705 static GstRTSPResult
1706 build_next (GstRTSPBuilder * builder, GstRTSPMessage * message,
1707     GstRTSPConnection * conn)
1708 {
1709   GstRTSPResult res;
1710
1711   while (TRUE) {
1712     switch (builder->state) {
1713       case STATE_START:
1714         builder->offset = 0;
1715         res =
1716             read_bytes (conn, (guint8 *) builder->buffer, &builder->offset, 1);
1717         if (res != GST_RTSP_OK)
1718           goto done;
1719
1720         /* we have 1 bytes now and we can see if this is a data message or
1721          * not */
1722         if (builder->buffer[0] == '$') {
1723           /* data message, prepare for the header */
1724           builder->state = STATE_DATA_HEADER;
1725         } else {
1726           builder->line = 0;
1727           builder->state = STATE_READ_LINES;
1728         }
1729         break;
1730       case STATE_DATA_HEADER:
1731       {
1732         res =
1733             read_bytes (conn, (guint8 *) builder->buffer, &builder->offset, 4);
1734         if (res != GST_RTSP_OK)
1735           goto done;
1736
1737         gst_rtsp_message_init_data (message, builder->buffer[1]);
1738
1739         builder->body_len = (builder->buffer[2] << 8) | builder->buffer[3];
1740         builder->body_data = g_malloc (builder->body_len + 1);
1741         builder->body_data[builder->body_len] = '\0';
1742         builder->offset = 0;
1743         builder->state = STATE_DATA_BODY;
1744         break;
1745       }
1746       case STATE_DATA_BODY:
1747       {
1748         res =
1749             read_bytes (conn, builder->body_data, &builder->offset,
1750             builder->body_len);
1751         if (res != GST_RTSP_OK)
1752           goto done;
1753
1754         /* we have the complete body now, store in the message adjusting the
1755          * length to include the traling '\0' */
1756         gst_rtsp_message_take_body (message,
1757             (guint8 *) builder->body_data, builder->body_len + 1);
1758         builder->body_data = NULL;
1759         builder->body_len = 0;
1760
1761         builder->state = STATE_END;
1762         break;
1763       }
1764       case STATE_READ_LINES:
1765       {
1766         res = read_line (conn, builder->buffer, &builder->offset,
1767             sizeof (builder->buffer));
1768         if (res != GST_RTSP_OK)
1769           goto done;
1770
1771         /* we have a regular response */
1772         if (builder->buffer[0] == '\r') {
1773           builder->buffer[0] = '\0';
1774         }
1775
1776         if (builder->buffer[0] == '\0') {
1777           gchar *hdrval;
1778
1779           /* empty line, end of message header */
1780           /* see if there is a Content-Length header */
1781           if (gst_rtsp_message_get_header (message,
1782                   GST_RTSP_HDR_CONTENT_LENGTH, &hdrval, 0) == GST_RTSP_OK) {
1783             /* there is, prepare to read the body */
1784             builder->body_len = atol (hdrval);
1785             builder->body_data = g_malloc (builder->body_len + 1);
1786             builder->body_data[builder->body_len] = '\0';
1787             builder->offset = 0;
1788             builder->state = STATE_DATA_BODY;
1789           } else {
1790             builder->state = STATE_END;
1791           }
1792           break;
1793         }
1794
1795         /* we have a line */
1796         if (builder->line == 0) {
1797           /* first line, check for response status */
1798           if (memcmp (builder->buffer, "RTSP", 4) == 0 ||
1799               memcmp (builder->buffer, "HTTP", 4) == 0) {
1800             builder->status = parse_response_status (builder->buffer, message);
1801           } else {
1802             builder->status = parse_request_line (builder->buffer, message);
1803           }
1804         } else {
1805           /* else just parse the line */
1806           res = parse_line (builder->buffer, message);
1807           if (res != GST_RTSP_OK)
1808             builder->status = res;
1809         }
1810         builder->line++;
1811         builder->offset = 0;
1812         break;
1813       }
1814       case STATE_END:
1815       {
1816         gchar *session_cookie;
1817         gchar *session_id;
1818
1819         if (message->type == GST_RTSP_MESSAGE_DATA) {
1820           /* data messages don't have headers */
1821           res = GST_RTSP_OK;
1822           goto done;
1823         }
1824
1825         /* save the tunnel session in the connection */
1826         if (message->type == GST_RTSP_MESSAGE_HTTP_REQUEST &&
1827             !conn->manual_http &&
1828             conn->tstate == TUNNEL_STATE_NONE &&
1829             gst_rtsp_message_get_header (message, GST_RTSP_HDR_X_SESSIONCOOKIE,
1830                 &session_cookie, 0) == GST_RTSP_OK) {
1831           strncpy (conn->tunnelid, session_cookie, TUNNELID_LEN);
1832           conn->tunnelid[TUNNELID_LEN - 1] = '\0';
1833           conn->tunneled = TRUE;
1834         }
1835
1836         /* save session id in the connection for further use */
1837         if (message->type == GST_RTSP_MESSAGE_RESPONSE &&
1838             gst_rtsp_message_get_header (message, GST_RTSP_HDR_SESSION,
1839                 &session_id, 0) == GST_RTSP_OK) {
1840           gint maxlen, i;
1841
1842           maxlen = sizeof (conn->session_id) - 1;
1843           /* the sessionid can have attributes marked with ;
1844            * Make sure we strip them */
1845           for (i = 0; session_id[i] != '\0'; i++) {
1846             if (session_id[i] == ';') {
1847               maxlen = i;
1848               /* parse timeout */
1849               do {
1850                 i++;
1851               } while (g_ascii_isspace (session_id[i]));
1852               if (g_str_has_prefix (&session_id[i], "timeout=")) {
1853                 gint to;
1854
1855                 /* if we parsed something valid, configure */
1856                 if ((to = atoi (&session_id[i + 8])) > 0)
1857                   conn->timeout = to;
1858               }
1859               break;
1860             }
1861           }
1862
1863           /* make sure to not overflow */
1864           strncpy (conn->session_id, session_id, maxlen);
1865           conn->session_id[maxlen] = '\0';
1866         }
1867         res = builder->status;
1868         goto done;
1869       }
1870       default:
1871         res = GST_RTSP_ERROR;
1872         break;
1873     }
1874   }
1875 done:
1876   return res;
1877 }
1878
1879 /**
1880  * gst_rtsp_connection_read:
1881  * @conn: a #GstRTSPConnection
1882  * @data: the data to read
1883  * @size: the size of @data
1884  * @timeout: a timeout value or #NULL
1885  *
1886  * Attempt to read @size bytes into @data from the connected @conn, blocking up to
1887  * the specified @timeout. @timeout can be #NULL, in which case this function
1888  * might block forever.
1889  *
1890  * This function can be cancelled with gst_rtsp_connection_flush().
1891  *
1892  * Returns: #GST_RTSP_OK on success.
1893  */
1894 GstRTSPResult
1895 gst_rtsp_connection_read (GstRTSPConnection * conn, guint8 * data, guint size,
1896     GTimeVal * timeout)
1897 {
1898   guint offset;
1899   gint retval;
1900   GstClockTime to;
1901   GstRTSPResult res;
1902
1903   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
1904   g_return_val_if_fail (data != NULL, GST_RTSP_EINVAL);
1905   g_return_val_if_fail (conn->readfd != NULL, GST_RTSP_EINVAL);
1906
1907   if (G_UNLIKELY (size == 0))
1908     return GST_RTSP_OK;
1909
1910   offset = 0;
1911
1912   /* configure timeout if any */
1913   to = timeout ? GST_TIMEVAL_TO_TIME (*timeout) : GST_CLOCK_TIME_NONE;
1914
1915   gst_poll_set_controllable (conn->fdset, TRUE);
1916   gst_poll_fd_ctl_write (conn->fdset, conn->writefd, FALSE);
1917   gst_poll_fd_ctl_read (conn->fdset, conn->readfd, TRUE);
1918
1919   while (TRUE) {
1920     res = read_bytes (conn, data, &offset, size);
1921     if (G_UNLIKELY (res == GST_RTSP_EEOF))
1922       goto eof;
1923     if (G_LIKELY (res == GST_RTSP_OK))
1924       break;
1925     if (G_UNLIKELY (res != GST_RTSP_EINTR))
1926       goto read_error;
1927
1928     do {
1929       retval = gst_poll_wait (conn->fdset, to);
1930     } while (retval == -1 && (errno == EINTR || errno == EAGAIN));
1931
1932     /* check for timeout */
1933     if (G_UNLIKELY (retval == 0))
1934       goto select_timeout;
1935
1936     if (G_UNLIKELY (retval == -1)) {
1937       if (errno == EBUSY)
1938         goto stopped;
1939       else
1940         goto select_error;
1941     }
1942     gst_poll_set_controllable (conn->fdset, FALSE);
1943   }
1944   return GST_RTSP_OK;
1945
1946   /* ERRORS */
1947 select_error:
1948   {
1949     return GST_RTSP_ESYS;
1950   }
1951 select_timeout:
1952   {
1953     return GST_RTSP_ETIMEOUT;
1954   }
1955 stopped:
1956   {
1957     return GST_RTSP_EINTR;
1958   }
1959 eof:
1960   {
1961     return GST_RTSP_EEOF;
1962   }
1963 read_error:
1964   {
1965     return res;
1966   }
1967 }
1968
1969 static GString *
1970 gen_tunnel_reply (GstRTSPConnection * conn, GstRTSPStatusCode code)
1971 {
1972   GString *str;
1973   gchar date_string[100];
1974   const gchar *status;
1975
1976   gen_date_string (date_string, sizeof (date_string));
1977
1978   status = gst_rtsp_status_as_text (code);
1979   if (status == NULL) {
1980     code = GST_RTSP_STS_INTERNAL_SERVER_ERROR;
1981     status = "Internal Server Error";
1982   }
1983
1984   str = g_string_new ("");
1985
1986   /* */
1987   g_string_append_printf (str, "HTTP/1.0 %d %s\r\n", code, status);
1988   g_string_append_printf (str,
1989       "Server: GStreamer RTSP Server\r\n"
1990       "Date: %s\r\n"
1991       "Connection: close\r\n"
1992       "Cache-Control: no-store\r\n" "Pragma: no-cache\r\n", date_string);
1993   if (code == GST_RTSP_STS_OK) {
1994     if (conn->ip)
1995       g_string_append_printf (str, "x-server-ip-address: %s\r\n", conn->ip);
1996     g_string_append_printf (str,
1997         "Content-Type: application/x-rtsp-tunnelled\r\n");
1998   }
1999   g_string_append_printf (str, "\r\n");
2000   return str;
2001 }
2002
2003 /**
2004  * gst_rtsp_connection_receive:
2005  * @conn: a #GstRTSPConnection
2006  * @message: the message to read
2007  * @timeout: a timeout value or #NULL
2008  *
2009  * Attempt to read into @message from the connected @conn, blocking up to
2010  * the specified @timeout. @timeout can be #NULL, in which case this function
2011  * might block forever.
2012  * 
2013  * This function can be cancelled with gst_rtsp_connection_flush().
2014  *
2015  * Returns: #GST_RTSP_OK on success.
2016  */
2017 GstRTSPResult
2018 gst_rtsp_connection_receive (GstRTSPConnection * conn, GstRTSPMessage * message,
2019     GTimeVal * timeout)
2020 {
2021   GstRTSPResult res;
2022   GstRTSPBuilder builder;
2023   gint retval;
2024   GstClockTime to;
2025
2026   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
2027   g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
2028   g_return_val_if_fail (conn->readfd != NULL, GST_RTSP_EINVAL);
2029
2030   /* configure timeout if any */
2031   to = timeout ? GST_TIMEVAL_TO_TIME (*timeout) : GST_CLOCK_TIME_NONE;
2032
2033   gst_poll_set_controllable (conn->fdset, TRUE);
2034   gst_poll_fd_ctl_write (conn->fdset, conn->writefd, FALSE);
2035   gst_poll_fd_ctl_read (conn->fdset, conn->readfd, TRUE);
2036
2037   memset (&builder, 0, sizeof (GstRTSPBuilder));
2038   while (TRUE) {
2039     res = build_next (&builder, message, conn);
2040     if (G_UNLIKELY (res == GST_RTSP_EEOF))
2041       goto eof;
2042     else if (G_LIKELY (res == GST_RTSP_OK)) {
2043       if (message->type == GST_RTSP_MESSAGE_HTTP_REQUEST) {
2044         if (conn->tstate == TUNNEL_STATE_NONE &&
2045             message->type_data.request.method == GST_RTSP_GET) {
2046           GString *str;
2047
2048           conn->tstate = TUNNEL_STATE_GET;
2049
2050           /* tunnel GET request, we can reply now */
2051           str = gen_tunnel_reply (conn, GST_RTSP_STS_OK);
2052           res =
2053               gst_rtsp_connection_write (conn, (guint8 *) str->str, str->len,
2054               timeout);
2055           g_string_free (str, TRUE);
2056           res = GST_RTSP_ETGET;
2057           goto cleanup;
2058         } else if (conn->tstate == TUNNEL_STATE_NONE &&
2059             message->type_data.request.method == GST_RTSP_POST) {
2060           conn->tstate = TUNNEL_STATE_POST;
2061
2062           /* tunnel POST request, the caller now has to link the two
2063            * connections. */
2064           res = GST_RTSP_ETPOST;
2065           goto cleanup;
2066         } else {
2067           res = GST_RTSP_EPARSE;
2068           goto cleanup;
2069         }
2070       }
2071
2072       break;
2073     } else if (G_UNLIKELY (res != GST_RTSP_EINTR))
2074       goto read_error;
2075
2076     do {
2077       retval = gst_poll_wait (conn->fdset, to);
2078     } while (retval == -1 && (errno == EINTR || errno == EAGAIN));
2079
2080     /* check for timeout */
2081     if (G_UNLIKELY (retval == 0))
2082       goto select_timeout;
2083
2084     if (G_UNLIKELY (retval == -1)) {
2085       if (errno == EBUSY)
2086         goto stopped;
2087       else
2088         goto select_error;
2089     }
2090     gst_poll_set_controllable (conn->fdset, FALSE);
2091   }
2092
2093   /* we have a message here */
2094   build_reset (&builder);
2095
2096   return GST_RTSP_OK;
2097
2098   /* ERRORS */
2099 select_error:
2100   {
2101     res = GST_RTSP_ESYS;
2102     goto cleanup;
2103   }
2104 select_timeout:
2105   {
2106     res = GST_RTSP_ETIMEOUT;
2107     goto cleanup;
2108   }
2109 stopped:
2110   {
2111     res = GST_RTSP_EINTR;
2112     goto cleanup;
2113   }
2114 eof:
2115   {
2116     res = GST_RTSP_EEOF;
2117     goto cleanup;
2118   }
2119 read_error:
2120 cleanup:
2121   {
2122     build_reset (&builder);
2123     gst_rtsp_message_unset (message);
2124     return res;
2125   }
2126 }
2127
2128 /**
2129  * gst_rtsp_connection_close:
2130  * @conn: a #GstRTSPConnection
2131  *
2132  * Close the connected @conn. After this call, the connection is in the same
2133  * state as when it was first created.
2134  * 
2135  * Returns: #GST_RTSP_OK on success.
2136  */
2137 GstRTSPResult
2138 gst_rtsp_connection_close (GstRTSPConnection * conn)
2139 {
2140   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
2141
2142   g_free (conn->ip);
2143   conn->ip = NULL;
2144
2145   g_free (conn->initial_buffer);
2146   conn->initial_buffer = NULL;
2147   conn->initial_buffer_offset = 0;
2148
2149   REMOVE_POLLFD (conn->fdset, &conn->fd0);
2150   REMOVE_POLLFD (conn->fdset, &conn->fd1);
2151   conn->writefd = NULL;
2152   conn->readfd = NULL;
2153   conn->tunneled = FALSE;
2154   conn->tstate = TUNNEL_STATE_NONE;
2155   conn->ctxp = NULL;
2156   g_free (conn->username);
2157   conn->username = NULL;
2158   g_free (conn->passwd);
2159   conn->passwd = NULL;
2160   gst_rtsp_connection_clear_auth_params (conn);
2161   conn->timeout = 60;
2162   conn->cseq = 0;
2163   conn->session_id[0] = '\0';
2164
2165   return GST_RTSP_OK;
2166 }
2167
2168 /**
2169  * gst_rtsp_connection_free:
2170  * @conn: a #GstRTSPConnection
2171  *
2172  * Close and free @conn.
2173  * 
2174  * Returns: #GST_RTSP_OK on success.
2175  */
2176 GstRTSPResult
2177 gst_rtsp_connection_free (GstRTSPConnection * conn)
2178 {
2179   GstRTSPResult res;
2180
2181   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
2182
2183   res = gst_rtsp_connection_close (conn);
2184   gst_poll_free (conn->fdset);
2185   g_timer_destroy (conn->timer);
2186   gst_rtsp_url_free (conn->url);
2187   g_free (conn->proxy_host);
2188   g_free (conn);
2189 #ifdef G_OS_WIN32
2190   WSACleanup ();
2191 #endif
2192
2193   return res;
2194 }
2195
2196 /**
2197  * gst_rtsp_connection_poll:
2198  * @conn: a #GstRTSPConnection
2199  * @events: a bitmask of #GstRTSPEvent flags to check
2200  * @revents: location for result flags 
2201  * @timeout: a timeout
2202  *
2203  * Wait up to the specified @timeout for the connection to become available for
2204  * at least one of the operations specified in @events. When the function returns
2205  * with #GST_RTSP_OK, @revents will contain a bitmask of available operations on
2206  * @conn.
2207  *
2208  * @timeout can be #NULL, in which case this function might block forever.
2209  *
2210  * This function can be cancelled with gst_rtsp_connection_flush().
2211  * 
2212  * Returns: #GST_RTSP_OK on success.
2213  *
2214  * Since: 0.10.15
2215  */
2216 GstRTSPResult
2217 gst_rtsp_connection_poll (GstRTSPConnection * conn, GstRTSPEvent events,
2218     GstRTSPEvent * revents, GTimeVal * timeout)
2219 {
2220   GstClockTime to;
2221   gint retval;
2222
2223   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
2224   g_return_val_if_fail (events != 0, GST_RTSP_EINVAL);
2225   g_return_val_if_fail (revents != NULL, GST_RTSP_EINVAL);
2226   g_return_val_if_fail (conn->readfd != NULL, GST_RTSP_EINVAL);
2227   g_return_val_if_fail (conn->writefd != NULL, GST_RTSP_EINVAL);
2228
2229   gst_poll_set_controllable (conn->fdset, TRUE);
2230
2231   /* add fd to writer set when asked to */
2232   gst_poll_fd_ctl_write (conn->fdset, conn->writefd,
2233       events & GST_RTSP_EV_WRITE);
2234
2235   /* add fd to reader set when asked to */
2236   gst_poll_fd_ctl_read (conn->fdset, conn->readfd, events & GST_RTSP_EV_READ);
2237
2238   /* configure timeout if any */
2239   to = timeout ? GST_TIMEVAL_TO_TIME (*timeout) : GST_CLOCK_TIME_NONE;
2240
2241   do {
2242     retval = gst_poll_wait (conn->fdset, to);
2243   } while (retval == -1 && (errno == EINTR || errno == EAGAIN));
2244
2245   if (G_UNLIKELY (retval == 0))
2246     goto select_timeout;
2247
2248   if (G_UNLIKELY (retval == -1)) {
2249     if (errno == EBUSY)
2250       goto stopped;
2251     else
2252       goto select_error;
2253   }
2254
2255   *revents = 0;
2256   if (events & GST_RTSP_EV_READ) {
2257     if (gst_poll_fd_can_read (conn->fdset, conn->readfd))
2258       *revents |= GST_RTSP_EV_READ;
2259   }
2260   if (events & GST_RTSP_EV_WRITE) {
2261     if (gst_poll_fd_can_write (conn->fdset, conn->writefd))
2262       *revents |= GST_RTSP_EV_WRITE;
2263   }
2264   return GST_RTSP_OK;
2265
2266   /* ERRORS */
2267 select_timeout:
2268   {
2269     return GST_RTSP_ETIMEOUT;
2270   }
2271 select_error:
2272   {
2273     return GST_RTSP_ESYS;
2274   }
2275 stopped:
2276   {
2277     return GST_RTSP_EINTR;
2278   }
2279 }
2280
2281 /**
2282  * gst_rtsp_connection_next_timeout:
2283  * @conn: a #GstRTSPConnection
2284  * @timeout: a timeout
2285  *
2286  * Calculate the next timeout for @conn, storing the result in @timeout.
2287  * 
2288  * Returns: #GST_RTSP_OK.
2289  */
2290 GstRTSPResult
2291 gst_rtsp_connection_next_timeout (GstRTSPConnection * conn, GTimeVal * timeout)
2292 {
2293   gdouble elapsed;
2294   glong sec;
2295   gulong usec;
2296
2297   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
2298   g_return_val_if_fail (timeout != NULL, GST_RTSP_EINVAL);
2299
2300   elapsed = g_timer_elapsed (conn->timer, &usec);
2301   if (elapsed >= conn->timeout) {
2302     sec = 0;
2303     usec = 0;
2304   } else {
2305     sec = conn->timeout - elapsed;
2306   }
2307
2308   timeout->tv_sec = sec;
2309   timeout->tv_usec = usec;
2310
2311   return GST_RTSP_OK;
2312 }
2313
2314 /**
2315  * gst_rtsp_connection_reset_timeout:
2316  * @conn: a #GstRTSPConnection
2317  *
2318  * Reset the timeout of @conn.
2319  * 
2320  * Returns: #GST_RTSP_OK.
2321  */
2322 GstRTSPResult
2323 gst_rtsp_connection_reset_timeout (GstRTSPConnection * conn)
2324 {
2325   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
2326
2327   g_timer_start (conn->timer);
2328
2329   return GST_RTSP_OK;
2330 }
2331
2332 /**
2333  * gst_rtsp_connection_flush:
2334  * @conn: a #GstRTSPConnection
2335  * @flush: start or stop the flush
2336  *
2337  * Start or stop the flushing action on @conn. When flushing, all current
2338  * and future actions on @conn will return #GST_RTSP_EINTR until the connection
2339  * is set to non-flushing mode again.
2340  * 
2341  * Returns: #GST_RTSP_OK.
2342  */
2343 GstRTSPResult
2344 gst_rtsp_connection_flush (GstRTSPConnection * conn, gboolean flush)
2345 {
2346   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
2347
2348   gst_poll_set_flushing (conn->fdset, flush);
2349
2350   return GST_RTSP_OK;
2351 }
2352
2353 /**
2354  * gst_rtsp_connection_set_proxy:
2355  * @conn: a #GstRTSPConnection
2356  * @host: the proxy host
2357  * @port: the proxy port
2358  *
2359  * Set the proxy host and port.
2360  * 
2361  * Returns: #GST_RTSP_OK.
2362  *
2363  * Since: 0.10.23
2364  */
2365 GstRTSPResult
2366 gst_rtsp_connection_set_proxy (GstRTSPConnection * conn,
2367     const gchar * host, guint port)
2368 {
2369   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
2370
2371   g_free (conn->proxy_host);
2372   conn->proxy_host = g_strdup (host);
2373   conn->proxy_port = port;
2374
2375   return GST_RTSP_OK;
2376 }
2377
2378 /**
2379  * gst_rtsp_connection_set_auth:
2380  * @conn: a #GstRTSPConnection
2381  * @method: authentication method
2382  * @user: the user
2383  * @pass: the password
2384  *
2385  * Configure @conn for authentication mode @method with @user and @pass as the
2386  * user and password respectively.
2387  * 
2388  * Returns: #GST_RTSP_OK.
2389  */
2390 GstRTSPResult
2391 gst_rtsp_connection_set_auth (GstRTSPConnection * conn,
2392     GstRTSPAuthMethod method, const gchar * user, const gchar * pass)
2393 {
2394   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
2395
2396   if (method == GST_RTSP_AUTH_DIGEST && ((user == NULL || pass == NULL)
2397           || g_strrstr (user, ":") != NULL))
2398     return GST_RTSP_EINVAL;
2399
2400   /* Make sure the username and passwd are being set for authentication */
2401   if (method == GST_RTSP_AUTH_NONE && (user == NULL || pass == NULL))
2402     return GST_RTSP_EINVAL;
2403
2404   /* ":" chars are not allowed in usernames for basic auth */
2405   if (method == GST_RTSP_AUTH_BASIC && g_strrstr (user, ":") != NULL)
2406     return GST_RTSP_EINVAL;
2407
2408   g_free (conn->username);
2409   g_free (conn->passwd);
2410
2411   conn->auth_method = method;
2412   conn->username = g_strdup (user);
2413   conn->passwd = g_strdup (pass);
2414
2415   return GST_RTSP_OK;
2416 }
2417
2418 /**
2419  * str_case_hash:
2420  * @key: ASCII string to hash
2421  *
2422  * Hashes @key in a case-insensitive manner.
2423  *
2424  * Returns: the hash code.
2425  **/
2426 static guint
2427 str_case_hash (gconstpointer key)
2428 {
2429   const char *p = key;
2430   guint h = g_ascii_toupper (*p);
2431
2432   if (h)
2433     for (p += 1; *p != '\0'; p++)
2434       h = (h << 5) - h + g_ascii_toupper (*p);
2435
2436   return h;
2437 }
2438
2439 /**
2440  * str_case_equal:
2441  * @v1: an ASCII string
2442  * @v2: another ASCII string
2443  *
2444  * Compares @v1 and @v2 in a case-insensitive manner
2445  *
2446  * Returns: %TRUE if they are equal (modulo case)
2447  **/
2448 static gboolean
2449 str_case_equal (gconstpointer v1, gconstpointer v2)
2450 {
2451   const char *string1 = v1;
2452   const char *string2 = v2;
2453
2454   return g_ascii_strcasecmp (string1, string2) == 0;
2455 }
2456
2457 /**
2458  * gst_rtsp_connection_set_auth_param:
2459  * @conn: a #GstRTSPConnection
2460  * @param: authentication directive
2461  * @value: value
2462  *
2463  * Setup @conn with authentication directives. This is not necesary for
2464  * methods #GST_RTSP_AUTH_NONE and #GST_RTSP_AUTH_BASIC. For
2465  * #GST_RTSP_AUTH_DIGEST, directives should be taken from the digest challenge
2466  * in the WWW-Authenticate response header and can include realm, domain,
2467  * nonce, opaque, stale, algorithm, qop as per RFC2617.
2468  * 
2469  * Since: 0.10.20
2470  */
2471 void
2472 gst_rtsp_connection_set_auth_param (GstRTSPConnection * conn,
2473     const gchar * param, const gchar * value)
2474 {
2475   g_return_if_fail (conn != NULL);
2476   g_return_if_fail (param != NULL);
2477
2478   if (conn->auth_params == NULL) {
2479     conn->auth_params =
2480         g_hash_table_new_full (str_case_hash, str_case_equal, g_free, g_free);
2481   }
2482   g_hash_table_insert (conn->auth_params, g_strdup (param), g_strdup (value));
2483 }
2484
2485 /**
2486  * gst_rtsp_connection_clear_auth_params:
2487  * @conn: a #GstRTSPConnection
2488  *
2489  * Clear the list of authentication directives stored in @conn.
2490  *
2491  * Since: 0.10.20
2492  */
2493 void
2494 gst_rtsp_connection_clear_auth_params (GstRTSPConnection * conn)
2495 {
2496   g_return_if_fail (conn != NULL);
2497
2498   if (conn->auth_params != NULL) {
2499     g_hash_table_destroy (conn->auth_params);
2500     conn->auth_params = NULL;
2501   }
2502 }
2503
2504 static GstRTSPResult
2505 set_qos_dscp (gint fd, guint qos_dscp)
2506 {
2507   union gst_sockaddr sa;
2508   socklen_t slen = sizeof (sa);
2509   gint af;
2510   gint tos;
2511
2512   if (fd == -1)
2513     return GST_RTSP_OK;
2514
2515   if (getsockname (fd, &sa.sa, &slen) < 0)
2516     goto no_getsockname;
2517
2518   af = sa.sa.sa_family;
2519
2520   /* if this is an IPv4-mapped address then do IPv4 QoS */
2521   if (af == AF_INET6) {
2522     if (IN6_IS_ADDR_V4MAPPED (&sa.sa_in6.sin6_addr))
2523       af = AF_INET;
2524   }
2525
2526   /* extract and shift 6 bits of the DSCP */
2527   tos = (qos_dscp & 0x3f) << 2;
2528
2529   switch (af) {
2530     case AF_INET:
2531       if (SETSOCKOPT (fd, IPPROTO_IP, IP_TOS, &tos, sizeof (tos)) < 0)
2532         goto no_setsockopt;
2533       break;
2534     case AF_INET6:
2535 #ifdef IPV6_TCLASS
2536       if (SETSOCKOPT (fd, IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof (tos)) < 0)
2537         goto no_setsockopt;
2538       break;
2539 #endif
2540     default:
2541       goto wrong_family;
2542   }
2543
2544   return GST_RTSP_OK;
2545
2546   /* ERRORS */
2547 no_getsockname:
2548 no_setsockopt:
2549   {
2550     return GST_RTSP_ESYS;
2551   }
2552
2553 wrong_family:
2554   {
2555     return GST_RTSP_ERROR;
2556   }
2557 }
2558
2559 /**
2560  * gst_rtsp_connection_set_qos_dscp:
2561  * @conn: a #GstRTSPConnection
2562  * @qos_dscp: DSCP value
2563  *
2564  * Configure @conn to use the specified DSCP value.
2565  *
2566  * Returns: #GST_RTSP_OK on success.
2567  *
2568  * Since: 0.10.20
2569  */
2570 GstRTSPResult
2571 gst_rtsp_connection_set_qos_dscp (GstRTSPConnection * conn, guint qos_dscp)
2572 {
2573   GstRTSPResult res;
2574
2575   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
2576   g_return_val_if_fail (conn->readfd != NULL, GST_RTSP_EINVAL);
2577   g_return_val_if_fail (conn->writefd != NULL, GST_RTSP_EINVAL);
2578
2579   res = set_qos_dscp (conn->fd0.fd, qos_dscp);
2580   if (res == GST_RTSP_OK)
2581     res = set_qos_dscp (conn->fd1.fd, qos_dscp);
2582
2583   return res;
2584 }
2585
2586
2587 /**
2588  * gst_rtsp_connection_get_url:
2589  * @conn: a #GstRTSPConnection
2590  *
2591  * Retrieve the URL of the other end of @conn.
2592  *
2593  * Returns: The URL. This value remains valid until the
2594  * connection is freed.
2595  *
2596  * Since: 0.10.23
2597  */
2598 GstRTSPUrl *
2599 gst_rtsp_connection_get_url (const GstRTSPConnection * conn)
2600 {
2601   g_return_val_if_fail (conn != NULL, NULL);
2602
2603   return conn->url;
2604 }
2605
2606 /**
2607  * gst_rtsp_connection_get_ip:
2608  * @conn: a #GstRTSPConnection
2609  *
2610  * Retrieve the IP address of the other end of @conn.
2611  *
2612  * Returns: The IP address as a string. this value remains valid until the
2613  * connection is closed.
2614  *
2615  * Since: 0.10.20
2616  */
2617 const gchar *
2618 gst_rtsp_connection_get_ip (const GstRTSPConnection * conn)
2619 {
2620   g_return_val_if_fail (conn != NULL, NULL);
2621
2622   return conn->ip;
2623 }
2624
2625 /**
2626  * gst_rtsp_connection_set_ip:
2627  * @conn: a #GstRTSPConnection
2628  * @ip: an ip address
2629  *
2630  * Set the IP address of the server.
2631  *
2632  * Since: 0.10.23
2633  */
2634 void
2635 gst_rtsp_connection_set_ip (GstRTSPConnection * conn, const gchar * ip)
2636 {
2637   g_return_if_fail (conn != NULL);
2638
2639   g_free (conn->ip);
2640   conn->ip = g_strdup (ip);
2641 }
2642
2643 /**
2644  * gst_rtsp_connection_get_readfd:
2645  * @conn: a #GstRTSPConnection
2646  *
2647  * Get the file descriptor for reading.
2648  *
2649  * Returns: the file descriptor used for reading or -1 on error. The file
2650  * descriptor remains valid until the connection is closed.
2651  *
2652  * Since: 0.10.23
2653  */
2654 gint
2655 gst_rtsp_connection_get_readfd (const GstRTSPConnection * conn)
2656 {
2657   g_return_val_if_fail (conn != NULL, -1);
2658   g_return_val_if_fail (conn->readfd != NULL, -1);
2659
2660   return conn->readfd->fd;
2661 }
2662
2663 /**
2664  * gst_rtsp_connection_get_writefd:
2665  * @conn: a #GstRTSPConnection
2666  *
2667  * Get the file descriptor for writing.
2668  *
2669  * Returns: the file descriptor used for writing or -1 on error. The file
2670  * descriptor remains valid until the connection is closed.
2671  *
2672  * Since: 0.10.23
2673  */
2674 gint
2675 gst_rtsp_connection_get_writefd (const GstRTSPConnection * conn)
2676 {
2677   g_return_val_if_fail (conn != NULL, -1);
2678   g_return_val_if_fail (conn->writefd != NULL, -1);
2679
2680   return conn->writefd->fd;
2681 }
2682
2683
2684 /**
2685  * gst_rtsp_connection_set_tunneled:
2686  * @conn: a #GstRTSPConnection
2687  * @tunneled: the new state
2688  *
2689  * Set the HTTP tunneling state of the connection. This must be configured before
2690  * the @conn is connected.
2691  *
2692  * Since: 0.10.23
2693  */
2694 void
2695 gst_rtsp_connection_set_tunneled (GstRTSPConnection * conn, gboolean tunneled)
2696 {
2697   g_return_if_fail (conn != NULL);
2698   g_return_if_fail (conn->readfd == NULL);
2699   g_return_if_fail (conn->writefd == NULL);
2700
2701   conn->tunneled = tunneled;
2702 }
2703
2704 /**
2705  * gst_rtsp_connection_is_tunneled:
2706  * @conn: a #GstRTSPConnection
2707  *
2708  * Get the tunneling state of the connection. 
2709  *
2710  * Returns: if @conn is using HTTP tunneling.
2711  *
2712  * Since: 0.10.23
2713  */
2714 gboolean
2715 gst_rtsp_connection_is_tunneled (const GstRTSPConnection * conn)
2716 {
2717   g_return_val_if_fail (conn != NULL, FALSE);
2718
2719   return conn->tunneled;
2720 }
2721
2722 /**
2723  * gst_rtsp_connection_get_tunnelid:
2724  * @conn: a #GstRTSPConnection
2725  *
2726  * Get the tunnel session id the connection. 
2727  *
2728  * Returns: returns a non-empty string if @conn is being tunneled over HTTP.
2729  *
2730  * Since: 0.10.23
2731  */
2732 const gchar *
2733 gst_rtsp_connection_get_tunnelid (const GstRTSPConnection * conn)
2734 {
2735   g_return_val_if_fail (conn != NULL, NULL);
2736
2737   if (!conn->tunneled)
2738     return NULL;
2739
2740   return conn->tunnelid;
2741 }
2742
2743 /**
2744  * gst_rtsp_connection_do_tunnel:
2745  * @conn: a #GstRTSPConnection
2746  * @conn2: a #GstRTSPConnection
2747  *
2748  * If @conn received the first tunnel connection and @conn2 received
2749  * the second tunnel connection, link the two connections together so that
2750  * @conn manages the tunneled connection.
2751  *
2752  * After this call, @conn2 cannot be used anymore and must be freed with
2753  * gst_rtsp_connection_free().
2754  *
2755  * Returns: return GST_RTSP_OK on success.
2756  *
2757  * Since: 0.10.23
2758  */
2759 GstRTSPResult
2760 gst_rtsp_connection_do_tunnel (GstRTSPConnection * conn,
2761     GstRTSPConnection * conn2)
2762 {
2763   g_return_val_if_fail (conn != NULL, GST_RTSP_EINVAL);
2764   g_return_val_if_fail (conn2 != NULL, GST_RTSP_EINVAL);
2765   g_return_val_if_fail (conn->tstate == TUNNEL_STATE_GET, GST_RTSP_EINVAL);
2766   g_return_val_if_fail (conn2->tstate == TUNNEL_STATE_POST, GST_RTSP_EINVAL);
2767   g_return_val_if_fail (!memcmp (conn2->tunnelid, conn->tunnelid, TUNNELID_LEN),
2768       GST_RTSP_EINVAL);
2769
2770   /* both connections have fd0 as the read/write socket. start by taking the
2771    * socket from conn2 and set it as the socket in conn */
2772   conn->fd1 = conn2->fd0;
2773
2774   /* clean up some of the state of conn2 */
2775   gst_poll_remove_fd (conn2->fdset, &conn2->fd0);
2776   conn2->fd0.fd = -1;
2777   conn2->readfd = conn2->writefd = NULL;
2778
2779   /* We make fd0 the write socket and fd1 the read socket. */
2780   conn->writefd = &conn->fd0;
2781   conn->readfd = &conn->fd1;
2782
2783   conn->tstate = TUNNEL_STATE_COMPLETE;
2784
2785   /* we need base64 decoding for the readfd */
2786   conn->ctx.state = 0;
2787   conn->ctx.save = 0;
2788   conn->ctx.cout = 0;
2789   conn->ctx.coutl = 0;
2790   conn->ctxp = &conn->ctx;
2791
2792   return GST_RTSP_OK;
2793 }
2794
2795 #define READ_COND   (G_IO_IN | G_IO_HUP | G_IO_ERR)
2796 #define WRITE_COND  (G_IO_OUT | G_IO_ERR)
2797
2798 typedef struct
2799 {
2800   guint8 *data;
2801   guint size;
2802   guint id;
2803 } GstRTSPRec;
2804
2805 /* async functions */
2806 struct _GstRTSPWatch
2807 {
2808   GSource source;
2809
2810   GstRTSPConnection *conn;
2811
2812   GstRTSPBuilder builder;
2813   GstRTSPMessage message;
2814
2815   GPollFD readfd;
2816   GPollFD writefd;
2817   gboolean write_added;
2818
2819   /* queued message for transmission */
2820   guint id;
2821   GAsyncQueue *messages;
2822   guint8 *write_data;
2823   guint write_off;
2824   guint write_size;
2825   guint write_id;
2826
2827   GstRTSPWatchFuncs funcs;
2828
2829   gpointer user_data;
2830   GDestroyNotify notify;
2831 };
2832
2833 static gboolean
2834 gst_rtsp_source_prepare (GSource * source, gint * timeout)
2835 {
2836   GstRTSPWatch *watch = (GstRTSPWatch *) source;
2837
2838   if (watch->conn->initial_buffer != NULL)
2839     return TRUE;
2840
2841   *timeout = (watch->conn->timeout * 1000);
2842
2843   return FALSE;
2844 }
2845
2846 static gboolean
2847 gst_rtsp_source_check (GSource * source)
2848 {
2849   GstRTSPWatch *watch = (GstRTSPWatch *) source;
2850
2851   if (watch->readfd.revents & READ_COND)
2852     return TRUE;
2853
2854   if (watch->writefd.revents & WRITE_COND)
2855     return TRUE;
2856
2857   return FALSE;
2858 }
2859
2860 static gboolean
2861 gst_rtsp_source_dispatch (GSource * source, GSourceFunc callback G_GNUC_UNUSED,
2862     gpointer user_data G_GNUC_UNUSED)
2863 {
2864   GstRTSPWatch *watch = (GstRTSPWatch *) source;
2865   GstRTSPResult res;
2866
2867   /* first read as much as we can */
2868   if (watch->readfd.revents & READ_COND || watch->conn->initial_buffer != NULL) {
2869     do {
2870       res = build_next (&watch->builder, &watch->message, watch->conn);
2871       if (res == GST_RTSP_EINTR)
2872         break;
2873       else if (G_UNLIKELY (res == GST_RTSP_EEOF))
2874         goto eof;
2875       else if (G_LIKELY (res == GST_RTSP_OK)) {
2876         if (watch->message.type == GST_RTSP_MESSAGE_HTTP_REQUEST) {
2877           if (watch->conn->tstate == TUNNEL_STATE_NONE &&
2878               watch->message.type_data.request.method == GST_RTSP_GET) {
2879             GString *str;
2880             GstRTSPStatusCode code;
2881             guint size;
2882
2883             watch->conn->tstate = TUNNEL_STATE_GET;
2884
2885             if (watch->funcs.tunnel_start)
2886               code = watch->funcs.tunnel_start (watch, watch->user_data);
2887             else
2888               code = GST_RTSP_STS_OK;
2889
2890             /* queue the response string */
2891             str = gen_tunnel_reply (watch->conn, code);
2892             size = str->len;
2893             gst_rtsp_watch_queue_data (watch, (guint8 *) g_string_free (str,
2894                     FALSE), size);
2895             goto read_done;
2896           } else if (watch->conn->tstate == TUNNEL_STATE_NONE &&
2897               watch->message.type_data.request.method == GST_RTSP_POST) {
2898             watch->conn->tstate = TUNNEL_STATE_POST;
2899
2900             /* in the callback the connection should be tunneled with the
2901              * GET connection */
2902             if (watch->funcs.tunnel_complete)
2903               watch->funcs.tunnel_complete (watch, watch->user_data);
2904             goto read_done;
2905           } else {
2906             res = GST_RTSP_ERROR;
2907           }
2908         }
2909       }
2910
2911       if (G_LIKELY (res == GST_RTSP_OK)) {
2912         if (watch->funcs.message_received)
2913           watch->funcs.message_received (watch, &watch->message,
2914               watch->user_data);
2915       } else
2916         goto error;
2917
2918     read_done:
2919       gst_rtsp_message_unset (&watch->message);
2920       build_reset (&watch->builder);
2921     } while (FALSE);
2922   }
2923
2924   if (watch->writefd.revents & WRITE_COND) {
2925     do {
2926       if (watch->write_data == NULL) {
2927         GstRTSPRec *rec;
2928
2929         /* get a new message from the queue */
2930         rec = g_async_queue_try_pop (watch->messages);
2931         if (rec == NULL)
2932           goto done;
2933
2934         watch->write_off = 0;
2935         watch->write_data = rec->data;
2936         watch->write_size = rec->size;
2937         watch->write_id = rec->id;
2938
2939         g_slice_free (GstRTSPRec, rec);
2940       }
2941
2942       res = write_bytes (watch->writefd.fd, watch->write_data,
2943           &watch->write_off, watch->write_size);
2944       if (res == GST_RTSP_EINTR)
2945         break;
2946       if (G_UNLIKELY (res != GST_RTSP_OK))
2947         goto error;
2948
2949       if (watch->funcs.message_sent)
2950         watch->funcs.message_sent (watch, watch->write_id, watch->user_data);
2951
2952     done:
2953       if (g_async_queue_length (watch->messages) == 0 && watch->write_added) {
2954         g_source_remove_poll ((GSource *) watch, &watch->writefd);
2955         watch->write_added = FALSE;
2956         watch->writefd.revents = 0;
2957       }
2958       g_free (watch->write_data);
2959       watch->write_data = NULL;
2960     } while (FALSE);
2961   }
2962
2963   return TRUE;
2964
2965   /* ERRORS */
2966 eof:
2967   {
2968     if (watch->funcs.closed)
2969       watch->funcs.closed (watch, watch->user_data);
2970     return FALSE;
2971   }
2972 error:
2973   {
2974     if (watch->funcs.error)
2975       watch->funcs.error (watch, res, watch->user_data);
2976     return FALSE;
2977   }
2978 }
2979
2980 static void
2981 gst_rtsp_rec_free (gpointer data)
2982 {
2983   GstRTSPRec *rec = data;
2984
2985   g_free (rec->data);
2986   g_slice_free (GstRTSPRec, rec);
2987 }
2988
2989 static void
2990 gst_rtsp_source_finalize (GSource * source)
2991 {
2992   GstRTSPWatch *watch = (GstRTSPWatch *) source;
2993
2994   build_reset (&watch->builder);
2995   gst_rtsp_message_unset (&watch->message);
2996
2997   g_async_queue_unref (watch->messages);
2998   watch->messages = NULL;
2999
3000   g_free (watch->write_data);
3001
3002   if (watch->notify)
3003     watch->notify (watch->user_data);
3004 }
3005
3006 static GSourceFuncs gst_rtsp_source_funcs = {
3007   gst_rtsp_source_prepare,
3008   gst_rtsp_source_check,
3009   gst_rtsp_source_dispatch,
3010   gst_rtsp_source_finalize,
3011   NULL,
3012   NULL
3013 };
3014
3015 /**
3016  * gst_rtsp_watch_new:
3017  * @conn: a #GstRTSPConnection
3018  * @funcs: watch functions
3019  * @user_data: user data to pass to @funcs
3020  * @notify: notify when @user_data is not referenced anymore
3021  *
3022  * Create a watch object for @conn. The functions provided in @funcs will be
3023  * called with @user_data when activity happened on the watch.
3024  *
3025  * The new watch is usually created so that it can be attached to a
3026  * maincontext with gst_rtsp_watch_attach(). 
3027  *
3028  * @conn must exist for the entire lifetime of the watch.
3029  *
3030  * Returns: a #GstRTSPWatch that can be used for asynchronous RTSP
3031  * communication. Free with gst_rtsp_watch_unref () after usage.
3032  *
3033  * Since: 0.10.23
3034  */
3035 GstRTSPWatch *
3036 gst_rtsp_watch_new (GstRTSPConnection * conn,
3037     GstRTSPWatchFuncs * funcs, gpointer user_data, GDestroyNotify notify)
3038 {
3039   GstRTSPWatch *result;
3040
3041   g_return_val_if_fail (conn != NULL, NULL);
3042   g_return_val_if_fail (funcs != NULL, NULL);
3043   g_return_val_if_fail (conn->readfd != NULL, NULL);
3044   g_return_val_if_fail (conn->writefd != NULL, NULL);
3045
3046   result = (GstRTSPWatch *) g_source_new (&gst_rtsp_source_funcs,
3047       sizeof (GstRTSPWatch));
3048
3049   result->conn = conn;
3050   result->builder.state = STATE_START;
3051
3052   result->messages = g_async_queue_new_full (gst_rtsp_rec_free);
3053
3054   result->readfd.fd = -1;
3055   result->writefd.fd = -1;
3056
3057   gst_rtsp_watch_reset (result);
3058
3059   result->funcs = *funcs;
3060   result->user_data = user_data;
3061   result->notify = notify;
3062
3063   /* only add the read fd, the write fd is only added when we have data
3064    * to send. */
3065   g_source_add_poll ((GSource *) result, &result->readfd);
3066
3067   return result;
3068 }
3069
3070 /**
3071  * gst_rtsp_watch_reset:
3072  * @watch: a #GstRTSPWatch
3073  *
3074  * Reset @watch, this is usually called after gst_rtsp_connection_do_tunnel()
3075  * when the file descriptors of the connection might have changed.
3076  *
3077  * Since: 0.10.23
3078  */
3079 void
3080 gst_rtsp_watch_reset (GstRTSPWatch * watch)
3081 {
3082   if (watch->readfd.fd != -1)
3083     g_source_remove_poll ((GSource *) watch, &watch->readfd);
3084   if (watch->writefd.fd != -1)
3085     g_source_remove_poll ((GSource *) watch, &watch->writefd);
3086
3087   watch->readfd.fd = watch->conn->readfd->fd;
3088   watch->readfd.events = READ_COND;
3089   watch->readfd.revents = 0;
3090
3091   watch->writefd.fd = watch->conn->writefd->fd;
3092   watch->writefd.events = WRITE_COND;
3093   watch->writefd.revents = 0;
3094   watch->write_added = FALSE;
3095
3096   g_source_add_poll ((GSource *) watch, &watch->readfd);
3097 }
3098
3099 /**
3100  * gst_rtsp_watch_attach:
3101  * @watch: a #GstRTSPWatch
3102  * @context: a GMainContext (if NULL, the default context will be used)
3103  *
3104  * Adds a #GstRTSPWatch to a context so that it will be executed within that context.
3105  *
3106  * Returns: the ID (greater than 0) for the watch within the GMainContext. 
3107  *
3108  * Since: 0.10.23
3109  */
3110 guint
3111 gst_rtsp_watch_attach (GstRTSPWatch * watch, GMainContext * context)
3112 {
3113   g_return_val_if_fail (watch != NULL, 0);
3114
3115   return g_source_attach ((GSource *) watch, context);
3116 }
3117
3118 /**
3119  * gst_rtsp_watch_unref:
3120  * @watch: a #GstRTSPWatch
3121  *
3122  * Decreases the reference count of @watch by one. If the resulting reference
3123  * count is zero the watch and associated memory will be destroyed.
3124  *
3125  * Since: 0.10.23
3126  */
3127 void
3128 gst_rtsp_watch_unref (GstRTSPWatch * watch)
3129 {
3130   g_return_if_fail (watch != NULL);
3131
3132   g_source_unref ((GSource *) watch);
3133 }
3134
3135 /**
3136  * gst_rtsp_watch_queue_data:
3137  * @watch: a #GstRTSPWatch
3138  * @data: the data to queue
3139  * @size: the size of @data
3140  *
3141  * Queue @data for transmission in @watch. It will be transmitted when the
3142  * connection of the @watch becomes writable.
3143  *
3144  * This function will take ownership of @data and g_free() it after use.
3145  *
3146  * The return value of this function will be used as the id argument in the
3147  * message_sent callback.
3148  *
3149  * Returns: an id.
3150  *
3151  * Since: 0.10.24
3152  */
3153 guint
3154 gst_rtsp_watch_queue_data (GstRTSPWatch * watch, const guint8 * data,
3155     guint size)
3156 {
3157   GstRTSPRec *rec;
3158
3159   g_return_val_if_fail (watch != NULL, GST_RTSP_EINVAL);
3160   g_return_val_if_fail (data != NULL, GST_RTSP_EINVAL);
3161   g_return_val_if_fail (size != 0, GST_RTSP_EINVAL);
3162
3163   /* make a record with the data and id */
3164   rec = g_slice_new (GstRTSPRec);
3165   rec->data = (guint8 *) data;
3166   rec->size = size;
3167   do {
3168     /* make sure rec->id is never 0 */
3169     rec->id = ++watch->id;
3170   } while (G_UNLIKELY (rec->id == 0));
3171
3172   /* add the record to a queue. FIXME we would like to have an upper limit here */
3173   g_async_queue_push (watch->messages, rec);
3174
3175   /* FIXME: does the following need to be made thread-safe? (this might be
3176    * called from a streaming thread, like appsink's render function) */
3177   /* make sure the main context will now also check for writability on the
3178    * socket */
3179   if (!watch->write_added) {
3180     g_source_add_poll ((GSource *) watch, &watch->writefd);
3181     watch->write_added = TRUE;
3182   }
3183
3184   return rec->id;
3185 }
3186
3187 /**
3188  * gst_rtsp_watch_queue_message:
3189  * @watch: a #GstRTSPWatch
3190  * @message: a #GstRTSPMessage
3191  *
3192  * Queue a @message for transmission in @watch. The contents of this
3193  * message will be serialized and transmitted when the connection of the
3194  * @watch becomes writable.
3195  *
3196  * The return value of this function will be used as the id argument in the
3197  * message_sent callback.
3198  *
3199  * Returns: an id.
3200  *
3201  * Since: 0.10.23
3202  */
3203 guint
3204 gst_rtsp_watch_queue_message (GstRTSPWatch * watch, GstRTSPMessage * message)
3205 {
3206   GString *str;
3207   guint size;
3208
3209   g_return_val_if_fail (watch != NULL, GST_RTSP_EINVAL);
3210   g_return_val_if_fail (message != NULL, GST_RTSP_EINVAL);
3211
3212   /* make a record with the message as a string and id */
3213   str = message_to_string (watch->conn, message);
3214   size = str->len;
3215   return gst_rtsp_watch_queue_data (watch,
3216       (guint8 *) g_string_free (str, FALSE), size);
3217 }