| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- /**
- * @file RouteBuffer.h
- * @author Ambroz Bizjak <ambrop7@gmail.com>
- *
- * @section LICENSE
- *
- * This file is part of BadVPN.
- *
- * BadVPN is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2
- * as published by the Free Software Foundation.
- *
- * BadVPN is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * @section DESCRIPTION
- *
- * Packet buffer for zero-copy packet routing.
- */
- #ifndef BADVPN_FLOW_ROUTEBUFFER_H
- #define BADVPN_FLOW_ROUTEBUFFER_H
- #include <misc/debug.h>
- #include <structure/LinkedList1.h>
- #include <base/DebugObject.h>
- #include <flow/PacketPassInterface.h>
- struct RouteBuffer_packet {
- LinkedList1Node node;
- int len;
- };
- /**
- * Packet buffer for zero-copy packet routing.
- *
- * Packets are buffered using {@link RouteBufferSource} objects.
- */
- typedef struct {
- int mtu;
- PacketPassInterface *output;
- LinkedList1 packets_free;
- LinkedList1 packets_used;
- DebugObject d_obj;
- } RouteBuffer;
- /**
- * Object through which packets are buffered into {@link RouteBuffer} objects.
- *
- * A packet is routed by calling {@link RouteBufferSource_Pointer}, writing it to
- * the returned address, then calling {@link RouteBufferSource_Route}.
- */
- typedef struct {
- int mtu;
- struct RouteBuffer_packet *current_packet;
- DebugObject d_obj;
- } RouteBufferSource;
- /**
- * Initializes the object.
- *
- * @param o the object
- * @param mtu maximum packet size. Must be >=0. It will only be possible to route packets to this buffer
- * from {@link RouteBufferSource}.s with the same MTU.
- * @param output output interface. Its MTU must be >=mtu.
- * @param buf_size size of the buffer in number of packet. Must be >0.
- * @return 1 on success, 0 on failure
- */
- int RouteBuffer_Init (RouteBuffer *o, int mtu, PacketPassInterface *output, int buf_size) WARN_UNUSED;
- /**
- * Frees the object.
- */
- void RouteBuffer_Free (RouteBuffer *o);
- /**
- * Retuns the buffer's MTU (mtu argument to {@link RouteBuffer_Init}).
- *
- * @return MTU
- */
- int RouteBuffer_GetMTU (RouteBuffer *o);
- /**
- * Initializes the object.
- *
- * @param o the object
- * @param mtu maximum packet size. Must be >=0. The object will only be able to route packets
- * to {@link RouteBuffer}'s with the same MTU.
- * @return 1 on success, 0 on failure
- */
- int RouteBufferSource_Init (RouteBufferSource *o, int mtu) WARN_UNUSED;
- /**
- * Frees the object.
- *
- * @param o the object
- */
- void RouteBufferSource_Free (RouteBufferSource *o);
- /**
- * Returns a pointer to the current packet.
- * The pointed to memory area will have space for MTU bytes.
- * The pointer is only valid until {@link RouteBufferSource_Route} succeeds.
- *
- * @param o the object
- * @return pointer to the current packet
- */
- uint8_t * RouteBufferSource_Pointer (RouteBufferSource *o);
- /**
- * Routes the current packet to a given buffer.
- * On success, this invalidates the pointer previously returned from
- * {@link RouteBufferSource_Pointer}.
- *
- * @param o the object
- * @param len length of the packet. Must be >=0 and <=MTU.
- * @param b buffer to route to. Its MTU must equal this object's MTU.
- * @param copy_offset Offset from the beginning for copying. Must be >=0 and
- * <=mtu.
- * @param copy_len Number of bytes to copy from the old current packet to the new one.
- * Must be >=0 and <= mtu - copy_offset.
- * @return 1 on success, 0 on failure
- */
- int RouteBufferSource_Route (RouteBufferSource *o, int len, RouteBuffer *b, int copy_offset, int copy_len);
- #endif
|