paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Packet interface |
| 3 | * Copyright (C) 1999 Kunihiro Ishiguro |
| 4 | * |
| 5 | * This file is part of GNU Zebra. |
| 6 | * |
| 7 | * GNU Zebra is free software; you can redistribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License as published by the |
| 9 | * Free Software Foundation; either version 2, or (at your option) any |
| 10 | * later version. |
| 11 | * |
| 12 | * GNU Zebra is distributed in the hope that it will be useful, but |
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with GNU Zebra; see the file COPYING. If not, write to the Free |
| 19 | * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 20 | * 02111-1307, USA. |
| 21 | */ |
| 22 | |
| 23 | #ifndef _ZEBRA_STREAM_H |
| 24 | #define _ZEBRA_STREAM_H |
| 25 | |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 26 | #include "prefix.h" |
| 27 | |
paul | 050c013 | 2005-02-14 23:47:47 +0000 | [diff] [blame] | 28 | /* |
| 29 | * A stream is an arbitrary buffer, whose contents generally are assumed to |
| 30 | * be in network order. |
| 31 | * |
| 32 | * A stream has the following attributes associated with it: |
| 33 | * |
| 34 | * - size: the allocated, invariant size of the buffer. |
| 35 | * |
| 36 | * - getp: the get position marker, denoting the offset in the stream where |
| 37 | * the next read (or 'get') will be from. This getp marker is |
| 38 | * automatically adjusted when data is read from the stream, the |
| 39 | * user may also manipulate this offset as they wish, within limits |
| 40 | * (see below) |
| 41 | * |
| 42 | * - endp: the end position marker, denoting the offset in the stream where |
| 43 | * valid data ends, and if the user attempted to write (or |
| 44 | * 'put') data where that data would be written (or 'put') to. |
| 45 | * |
| 46 | * These attributes are all size_t values. |
| 47 | * |
| 48 | * Constraints: |
| 49 | * |
| 50 | * 1. getp can never exceed endp |
| 51 | * |
| 52 | * - hence if getp is equal to endp, there is no more valid data that can be |
| 53 | * gotten from the stream (though, the user may reposition getp to earlier in |
| 54 | * the stream, if they wish). |
| 55 | * |
| 56 | * 2. endp can never exceed size |
| 57 | * |
| 58 | * - hence, if endp is equal to size, then the stream is full, and no more |
| 59 | * data can be written to the stream. |
| 60 | * |
| 61 | * In other words the following must always be true, and the stream |
| 62 | * abstraction is allowed internally to assert that the following property |
| 63 | * holds true for a stream, as and when it wishes: |
| 64 | * |
| 65 | * getp <= endp <= size |
| 66 | * |
| 67 | * It is the users responsibility to ensure this property is never violated. |
| 68 | * |
| 69 | * A stream therefore can be thought of like this: |
| 70 | * |
| 71 | * --------------------------------------------------- |
| 72 | * |XXXXXXXXXXXXXXXXXXXXXXXX | |
| 73 | * --------------------------------------------------- |
| 74 | * ^ ^ ^ |
| 75 | * getp endp size |
| 76 | * |
| 77 | * This shows a stream containing data (shown as 'X') up to the endp offset. |
| 78 | * The stream is empty from endp to size. Without adjusting getp, there are |
| 79 | * still endp-getp bytes of valid data to be read from the stream. |
| 80 | * |
| 81 | * Methods are provided to get and put to/from the stream, as well as |
| 82 | * retrieve the values of the 3 markers and manipulate the getp marker. |
| 83 | * |
| 84 | * Note: |
| 85 | * At the moment, newly allocated streams are zero filled. Hence, one can |
| 86 | * use stream_forward_endp() to effectively create arbitrary zero-fill |
| 87 | * padding. However, note that stream_reset() does *not* zero-out the |
| 88 | * stream. This property should **not** be relied upon. |
paul | 0dab930 | 2005-05-03 09:07:56 +0000 | [diff] [blame^] | 89 | * |
| 90 | * Best practice is to use stream_put (<stream *>, NULL, <size>) to zero out |
| 91 | * any part of a stream which isn't otherwise written to. |
paul | 050c013 | 2005-02-14 23:47:47 +0000 | [diff] [blame] | 92 | */ |
| 93 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 94 | /* Stream buffer. */ |
| 95 | struct stream |
| 96 | { |
| 97 | struct stream *next; |
| 98 | |
paul | 050c013 | 2005-02-14 23:47:47 +0000 | [diff] [blame] | 99 | /* Remainder is ***private*** to stream |
| 100 | * direct access is frowned upon! |
| 101 | * Use the appropriate functions/macros |
| 102 | */ |
| 103 | size_t getp; /* next get position */ |
| 104 | size_t endp; /* last valid data position */ |
| 105 | size_t size; /* size of data segment */ |
| 106 | unsigned char data[0]; /* data pointer */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 107 | }; |
| 108 | |
| 109 | /* First in first out queue structure. */ |
| 110 | struct stream_fifo |
| 111 | { |
paul | f2e6c42 | 2005-02-12 14:35:49 +0000 | [diff] [blame] | 112 | size_t count; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 113 | |
| 114 | struct stream *head; |
| 115 | struct stream *tail; |
| 116 | }; |
| 117 | |
| 118 | /* Utility macros. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 119 | #define STREAM_SIZE(S) ((S)->size) |
paul | 050c013 | 2005-02-14 23:47:47 +0000 | [diff] [blame] | 120 | /* number of bytes which can still be written */ |
| 121 | #define STREAM_WRITEABLE(S) ((S)->size - (S)->endp) |
| 122 | /* number of bytes still to be read */ |
| 123 | #define STREAM_READABLE(S) ((S)->endp - (S)->getp) |
| 124 | |
| 125 | /* deprecated macros - do not use in new code */ |
| 126 | #define STREAM_PNT(S) stream_pnt((S)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 127 | #define STREAM_DATA(S) ((S)->data) |
paul | 050c013 | 2005-02-14 23:47:47 +0000 | [diff] [blame] | 128 | #define STREAM_REMAIN(S) STREAM_WRITEABLE((S)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 129 | |
| 130 | /* Stream prototypes. */ |
| 131 | struct stream *stream_new (size_t); |
| 132 | void stream_free (struct stream *); |
paul | 050c013 | 2005-02-14 23:47:47 +0000 | [diff] [blame] | 133 | struct stream * stream_copy (struct stream *new, struct stream *src); |
| 134 | struct stream *stream_dup (struct stream *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 135 | |
paul | f2e6c42 | 2005-02-12 14:35:49 +0000 | [diff] [blame] | 136 | size_t stream_get_getp (struct stream *); |
| 137 | size_t stream_get_endp (struct stream *); |
| 138 | size_t stream_get_size (struct stream *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 139 | u_char *stream_get_data (struct stream *); |
| 140 | |
paul | f2e6c42 | 2005-02-12 14:35:49 +0000 | [diff] [blame] | 141 | void stream_set_getp (struct stream *, size_t); |
paul | 050c013 | 2005-02-14 23:47:47 +0000 | [diff] [blame] | 142 | void stream_forward_getp (struct stream *, size_t); |
| 143 | void stream_forward_endp (struct stream *, size_t); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 144 | |
paul | 0dab930 | 2005-05-03 09:07:56 +0000 | [diff] [blame^] | 145 | void stream_put (struct stream *, void *, size_t); /* NULL source zeroes */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 146 | int stream_putc (struct stream *, u_char); |
paul | f2e6c42 | 2005-02-12 14:35:49 +0000 | [diff] [blame] | 147 | int stream_putc_at (struct stream *, size_t, u_char); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 148 | int stream_putw (struct stream *, u_int16_t); |
paul | f2e6c42 | 2005-02-12 14:35:49 +0000 | [diff] [blame] | 149 | int stream_putw_at (struct stream *, size_t, u_int16_t); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 150 | int stream_putl (struct stream *, u_int32_t); |
paul | f2e6c42 | 2005-02-12 14:35:49 +0000 | [diff] [blame] | 151 | int stream_putl_at (struct stream *, size_t, u_int32_t); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 152 | int stream_put_ipv4 (struct stream *, u_int32_t); |
| 153 | int stream_put_in_addr (struct stream *, struct in_addr *); |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 154 | int stream_put_prefix (struct stream *, struct prefix *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 155 | |
| 156 | void stream_get (void *, struct stream *, size_t); |
| 157 | u_char stream_getc (struct stream *); |
paul | f2e6c42 | 2005-02-12 14:35:49 +0000 | [diff] [blame] | 158 | u_char stream_getc_from (struct stream *, size_t); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 159 | u_int16_t stream_getw (struct stream *); |
paul | f2e6c42 | 2005-02-12 14:35:49 +0000 | [diff] [blame] | 160 | u_int16_t stream_getw_from (struct stream *, size_t); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 161 | u_int32_t stream_getl (struct stream *); |
paul | 050c013 | 2005-02-14 23:47:47 +0000 | [diff] [blame] | 162 | u_int32_t stream_getl_from (struct stream *, size_t); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 163 | u_int32_t stream_get_ipv4 (struct stream *); |
| 164 | |
| 165 | #undef stream_read |
| 166 | #undef stream_write |
ajs | 262feb1 | 2005-02-16 20:35:47 +0000 | [diff] [blame] | 167 | |
| 168 | /* Deprecated: assumes blocking I/O. Will be removed. |
| 169 | Use stream_read_try instead. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 170 | int stream_read (struct stream *, int, size_t); |
ajs | 262feb1 | 2005-02-16 20:35:47 +0000 | [diff] [blame] | 171 | |
| 172 | /* Deprecated: all file descriptors should already be non-blocking. |
| 173 | Will be removed. Use stream_read_try instead. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 174 | int stream_read_unblock (struct stream *, int, size_t); |
ajs | 262feb1 | 2005-02-16 20:35:47 +0000 | [diff] [blame] | 175 | |
| 176 | /* Read up to size bytes into the stream. |
| 177 | Return code: |
| 178 | >0: number of bytes read |
| 179 | 0: end-of-file |
| 180 | -1: fatal error |
| 181 | -2: transient error, should retry later (i.e. EAGAIN or EINTR) |
| 182 | This is suitable for use with non-blocking file descriptors. |
| 183 | */ |
| 184 | extern ssize_t stream_read_try(struct stream *s, int fd, size_t size); |
| 185 | |
paul | 0dab930 | 2005-05-03 09:07:56 +0000 | [diff] [blame^] | 186 | extern ssize_t stream_recvmsg (struct stream *s, int fd, struct msghdr *, |
paul | 050c013 | 2005-02-14 23:47:47 +0000 | [diff] [blame] | 187 | int flags, size_t size); |
paul | 0dab930 | 2005-05-03 09:07:56 +0000 | [diff] [blame^] | 188 | extern ssize_t stream_recvfrom (struct stream *s, int fd, size_t len, int flags, |
| 189 | struct sockaddr *from, socklen_t *fromlen); |
| 190 | size_t stream_write (struct stream *, u_char *, size_t); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 191 | |
paul | 050c013 | 2005-02-14 23:47:47 +0000 | [diff] [blame] | 192 | void stream_reset (struct stream *); /* reset the stream. See Note above */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 193 | int stream_flush (struct stream *, int); |
paul | 050c013 | 2005-02-14 23:47:47 +0000 | [diff] [blame] | 194 | int stream_empty (struct stream *); /* is the stream empty? */ |
| 195 | |
| 196 | /* deprecated */ |
| 197 | u_char *stream_pnt (struct stream *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 198 | |
| 199 | /* Stream fifo. */ |
ajs | 81fb324 | 2005-02-24 16:02:53 +0000 | [diff] [blame] | 200 | struct stream_fifo *stream_fifo_new (void); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 201 | void stream_fifo_push (struct stream_fifo *fifo, struct stream *s); |
| 202 | struct stream *stream_fifo_pop (struct stream_fifo *fifo); |
| 203 | struct stream *stream_fifo_head (struct stream_fifo *fifo); |
| 204 | void stream_fifo_clean (struct stream_fifo *fifo); |
| 205 | void stream_fifo_free (struct stream_fifo *fifo); |
| 206 | |
| 207 | #endif /* _ZEBRA_STREAM_H */ |