]> git.ipfire.org Git - people/ms/strongswan.git/commitdiff
tun-device: Remove the superfluous use of select() before read()
authorMartin Willi <martin@revosec.ch>
Wed, 5 Nov 2014 15:43:01 +0000 (16:43 +0100)
committerMartin Willi <martin@revosec.ch>
Fri, 21 Nov 2014 10:16:48 +0000 (11:16 +0100)
src/libstrongswan/networking/tun_device.c
src/libstrongswan/networking/tun_device.h

index ff2c4a337e11863c2cb41b8e5b7149a3e4379dfd..035b846bb6b12cc21c945a6b59a128b24ebb4c09 100644 (file)
@@ -347,31 +347,20 @@ METHOD(tun_device_t, read_packet, bool,
        private_tun_device_t *this, chunk_t *packet)
 {
        ssize_t len;
-       fd_set set;
        bool old;
 
-       FD_ZERO(&set);
-       FD_SET(this->tunfd, &set);
+       *packet = chunk_alloc(get_mtu(this));
 
+       thread_cleanup_push(free, packet->ptr);
        old = thread_cancelability(TRUE);
-       len = select(this->tunfd + 1, &set, NULL, NULL, NULL);
-       thread_cancelability(old);
-
-       if (len < 0)
-       {
-               DBG1(DBG_LIB, "select on TUN device %s failed: %s", this->if_name,
-                        strerror(errno));
-               return FALSE;
-       }
-       /* FIXME: this is quite expensive for lots of small packets, copy from
-        * local buffer instead? */
-       *packet = chunk_alloc(get_mtu(this));
        len = read(this->tunfd, packet->ptr, packet->len);
+       thread_cancelability(old);
+       thread_cleanup_pop(FALSE);
        if (len < 0)
        {
                DBG1(DBG_LIB, "reading from TUN device %s failed: %s", this->if_name,
                         strerror(errno));
-               chunk_free(packet);
+               free(packet->ptr);
                return FALSE;
        }
        packet->len = len;
index 543125bebfc715d3e8d8dd053f4290646c3ab6e9..880369ba71b325e47250aa9572f7eee3af771b87 100644 (file)
@@ -31,8 +31,6 @@ typedef struct tun_device_t tun_device_t;
  * Class to create TUN devices
  *
  * Creating such a device requires the CAP_NET_ADMIN capability.
- *
- * @note The implementation is currently very Linux specific
  */
 struct tun_device_t {
 
@@ -42,7 +40,7 @@ struct tun_device_t {
         * @note This call blocks until a packet is available. It is a thread
         * cancellation point.
         *
-        * @param packet                the packet read from the device
+        * @param packet                the packet read from the device, allocated
         * @return                              TRUE if successful
         */
        bool (*read_packet)(tun_device_t *this, chunk_t *packet);