2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3 * Copyright (C) <2004> Thomas Vander Stichele <thomas at apestaart dot org>
5 * gsttcp.c: TCP functions
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
27 #include <sys/types.h>
28 #include <sys/socket.h>
29 #include <netinet/in.h>
30 #include <arpa/inet.h>
33 #include <sys/ioctl.h>
35 #ifdef HAVE_FIONREAD_IN_SYS_FILIO
36 #include <sys/filio.h>
40 #include <gst/gst-i18n-plugin.h>
42 GST_DEBUG_CATEGORY_EXTERN (tcp_debug);
43 #define GST_CAT_DEFAULT tcp_debug
46 #define MSG_NOSIGNAL 0
49 /* resolve host to IP address, throwing errors if it fails */
50 /* host can already be an IP address */
51 /* returns a newly allocated gchar * with the dotted ip address,
52 or NULL, in which case it already fired an error. */
54 gst_tcp_host_to_ip (GstElement * element, const gchar * host)
56 struct hostent *hostinfo;
61 GST_DEBUG_OBJECT (element, "resolving host %s", host);
63 /* first check if it already is an IP address */
64 if (inet_aton (host, &addr)) {
68 /* FIXME: could do a localhost check here */
70 /* perform a name lookup */
71 if (!(hostinfo = gethostbyname (host)))
74 if (hostinfo->h_addrtype != AF_INET)
77 addrs = hostinfo->h_addr_list;
79 /* There could be more than one IP address, but we just return the first */
80 ip = g_strdup (inet_ntoa (*(struct in_addr *) *addrs));
83 GST_DEBUG_OBJECT (element, "resolved to IP %s", ip);
88 GST_ELEMENT_ERROR (element, RESOURCE, NOT_FOUND, (NULL),
89 ("Could not find IP address for host \"%s\".", host));
94 GST_ELEMENT_ERROR (element, RESOURCE, NOT_FOUND, (NULL),
95 ("host \"%s\" is not an IP host", host));
100 /* write buffer to given socket incrementally.
101 * Returns number of bytes written.
104 gst_tcp_socket_write (int socket, const void *buf, size_t count)
106 size_t bytes_written = 0;
108 while (bytes_written < count) {
109 ssize_t wrote = send (socket, (const char *) buf + bytes_written,
110 count - bytes_written, MSG_NOSIGNAL);
113 GST_WARNING ("error while writing");
114 return bytes_written;
116 bytes_written += wrote;
119 GST_LOG ("wrote %" G_GSIZE_FORMAT " bytes successfully", bytes_written);
120 return bytes_written;
123 /* close the socket and reset the fd. Used to clean up after errors. */
125 gst_tcp_socket_close (GstPollFD * socket)
127 if (socket->fd >= 0) {
133 /* read a buffer from the given socket
135 * - a GstBuffer in which data should be read
136 * - NULL, indicating a connection close or an error, to be handled with
140 gst_tcp_read_buffer (GstElement * this, int socket, GstPoll * fdset,
150 /* do a blocking select on the socket */
151 /* no action (0) is an error too in our case */
152 if ((ret = gst_poll_wait (fdset, GST_CLOCK_TIME_NONE)) <= 0) {
153 if (ret == -1 && errno == EBUSY)
159 /* ask how much is available for reading on the socket */
160 if (ioctl (socket, FIONREAD, &readsize) < 0)
166 /* sizeof(ssize_t) >= sizeof(int), so I know readsize <= SSIZE_MAX */
168 *buf = gst_buffer_new_and_alloc (readsize);
170 data = gst_buffer_map (*buf, NULL, NULL, GST_MAP_WRITE);
171 bytes_read = read (socket, data, readsize);
172 gst_buffer_unmap (*buf, data, bytes_read);
177 if (bytes_read < readsize)
178 /* but mom, you promised to give me readsize bytes! */
181 GST_LOG_OBJECT (this,
182 "returning buffer of size %" G_GSSIZE_FORMAT, bytes_read);
188 GST_ELEMENT_ERROR (this, RESOURCE, READ, (NULL),
189 ("select failed: %s", g_strerror (errno)));
190 return GST_FLOW_ERROR;
194 GST_DEBUG_OBJECT (this, "Select was cancelled");
195 return GST_FLOW_WRONG_STATE;
199 GST_ELEMENT_ERROR (this, RESOURCE, READ, (NULL),
200 ("ioctl failed: %s", g_strerror (errno)));
201 return GST_FLOW_ERROR;
205 GST_DEBUG_OBJECT (this, "Got EOS on socket stream");
210 GST_ELEMENT_ERROR (this, RESOURCE, READ, (NULL),
211 ("read failed: %s", g_strerror (errno)));
212 gst_buffer_unref (*buf);
214 return GST_FLOW_ERROR;
218 GST_ELEMENT_ERROR (this, RESOURCE, READ, (NULL),
219 ("short read: wanted %d bytes, got %" G_GSSIZE_FORMAT, readsize,
221 gst_buffer_unref (*buf);
223 return GST_FLOW_ERROR;