]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
REORG: include: move hpack*.h to haproxy/ and split hpack-tbl
authorWilly Tarreau <w@1wt.eu>
Wed, 3 Jun 2020 07:09:57 +0000 (09:09 +0200)
committerWilly Tarreau <w@1wt.eu>
Thu, 11 Jun 2020 08:18:57 +0000 (10:18 +0200)
The various hpack files are self-contained, but hpack-tbl was one of
those showing difficulties when pools were added because that began
to add quite some dependencies. Now when built in standalone mode,
it still uses the bare minimum pool definitions and doesn't require
to know the prototypes anymore when only the structures are needed.
Thus the files were moved verbatim except for hpack-tbl which was
split between types and prototypes.

12 files changed:
contrib/hpack/decode.c
contrib/hpack/gen-enc.c
include/haproxy/hpack-dec.h [moved from include/common/hpack-dec.h with 94% similarity]
include/haproxy/hpack-enc.h [moved from include/common/hpack-enc.h with 99% similarity]
include/haproxy/hpack-huff.h [moved from include/common/hpack-huff.h with 89% similarity]
include/haproxy/hpack-tbl-t.h [moved from include/common/hpack-tbl.h with 63% similarity]
include/haproxy/hpack-tbl.h [new file with mode: 0644]
src/hpack-dec.c
src/hpack-enc.c
src/hpack-huff.c
src/hpack-tbl.c
src/mux_h2.c

index bc38f92f7d0c596ded65e8351c5950962e5bc260..c924e4843b5cb2f204c40c6a190b73f08c05e587 100644 (file)
@@ -19,7 +19,7 @@
 #include <stdlib.h>
 #include <unistd.h>
 #include <haproxy/chunk.h>
-#include <common/hpack-dec.h>
+#include <haproxy/hpack-dec.h>
 
 #define MAX_RQ_SIZE 65536
 #define MAX_HDR_NUM 1000
index 36b132bd70dbcd0a7653c22de0bdfb9c87c342af..3fc5ef986d01e0d2f2b8d601709ed7dba1e94a28 100644 (file)
@@ -15,7 +15,7 @@
 #include <stdlib.h>
 #include <unistd.h>
 #include <import/ist.h>
-#include <common/hpack-tbl.h>
+#include <haproxy/hpack-tbl-t.h>
 #include "../../src/hpack-tbl.c"
 
 struct idxhdr {
similarity index 94%
rename from include/common/hpack-dec.h
rename to include/haproxy/hpack-dec.h
index 1926574c5a7bed2b91fcc0f638265203f994e1e2..4fb1a36586a3edbfdfce98c95dec0f311fa5f3ef 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * HPACK decompressor (RFC7541)
  *
- * Copyright (C) 2014-2017 Willy Tarreau <willy@haproxy.org>
+ * Copyright (C) 2014-2020 Willy Tarreau <willy@haproxy.org>
  * Copyright (C) 2017 HAProxy Technologies
  *
  * Permission is hereby granted, free of charge, to any person obtaining
@@ -30,7 +30,7 @@
 
 #include <haproxy/api.h>
 #include <haproxy/chunk.h>
-#include <common/hpack-tbl.h>
+#include <haproxy/hpack-tbl.h>
 
 int hpack_decode_frame(struct hpack_dht *dht, const uint8_t *raw, uint32_t len,
                        struct http_hdr *list, int list_size,
similarity index 99%
rename from include/common/hpack-enc.h
rename to include/haproxy/hpack-enc.h
index ede8d284539e690106478fd2ae3b1e71dfbb652a..7511c5da089fb8479e400b282da0ebdca5b07983 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * HPACK compressor (RFC7541)
  *
- * Copyright (C) 2014-2017 Willy Tarreau <willy@haproxy.org>
+ * Copyright (C) 2014-2020 Willy Tarreau <willy@haproxy.org>
  * Copyright (C) 2017 HAProxy Technologies
  *
  * Permission is hereby granted, free of charge, to any person obtaining
 #define _COMMON_HPACK_ENC_H
 
 #include <string.h>
+#include <import/ist.h>
 #include <haproxy/api.h>
 #include <haproxy/buf-t.h>
 #include <haproxy/http-t.h>
-#include <import/ist.h>
 
 int hpack_encode_header(struct buffer *out, const struct ist n,
                        const struct ist v);
similarity index 89%
rename from include/common/hpack-huff.h
rename to include/haproxy/hpack-huff.h
index 04276d2c5ab3656d9bae6acb539f60ad0996d06f..f93910312e8c616f715640ea78c912b22f7018df 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Huffman decoding and encoding for HPACK (RFC7541)
  *
- * Copyright (C) 2014-2017 Willy Tarreau <willy@haproxy.org>
+ * Copyright (C) 2014-2020 Willy Tarreau <willy@haproxy.org>
  * Copyright (C) 2017 HAProxy Technologies
  *
  * Permission is hereby granted, free of charge, to any person obtaining
  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  * OTHER DEALINGS IN THE SOFTWARE.
  */
-#ifndef _PROTO_HPACK_HUFF_H
-#define _PROTO_HPACK_HUFF_H
+#ifndef _HAPROXY_HPACK_HUFF_H
+#define _HAPROXY_HPACK_HUFF_H
 
 #include <inttypes.h>
 
 int huff_enc(const char *s, char *out);
 int huff_dec(const uint8_t *huff, int hlen, char *out, int olen);
 
-#endif
+#endif /* _HAPROXY_HPACK_HUFF_H */
similarity index 63%
rename from include/common/hpack-tbl.h
rename to include/haproxy/hpack-tbl-t.h
index b0ab4ff4feb10807361dedee073e372673d5cd2c..7c8eb3224cc95c7baa4e5f1fbb1fff65b1843666 100644 (file)
@@ -1,7 +1,7 @@
 /*
- * HPACK header table management (RFC7541) - type definitions and prototypes
+ * HPACK header table management (RFC7541) - type definitions
  *
- * Copyright (C) 2014-2017 Willy Tarreau <willy@haproxy.org>
+ * Copyright (C) 2014-2020 Willy Tarreau <willy@haproxy.org>
  * Copyright (C) 2017 HAProxy Technologies
  *
  * Permission is hereby granted, free of charge, to any person obtaining
  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  * OTHER DEALINGS IN THE SOFTWARE.
  */
-#ifndef _COMMON_HPACK_TBL_H
-#define _COMMON_HPACK_TBL_H
+#ifndef _HAPROXY_HPACK_TBL_T_H
+#define _HAPROXY_HPACK_TBL_T_H
 
-#include <stdlib.h>
-#include <haproxy/api.h>
-#include <haproxy/http-hdr-t.h>
-#include <import/ist.h>
-#include <haproxy/pool.h>
+#include <inttypes.h>
 
 /* Dynamic Headers Table, usable for tables up to 4GB long and values of 64kB-1.
  * The model can be improved by using offsets relative to the table entry's end
@@ -132,137 +128,5 @@ enum {
 
 /* static header table as in RFC7541 Appendix A. [0] unused. */
 #define HPACK_SHT_SIZE 62
-extern const struct http_hdr hpack_sht[HPACK_SHT_SIZE];
-extern struct pool_head *pool_head_hpack_tbl;
 
-/* when built outside of haproxy, HPACK_STANDALONE must be defined, and
- * pool_head_hpack_tbl->size must be set to the DHT size.
- */
-#ifndef HPACK_STANDALONE
-#define hpack_alloc(pool)      pool_alloc(pool)
-#define hpack_free(pool, ptr)  pool_free(pool, ptr)
-#else
-#define hpack_alloc(pool)      malloc(pool->size)
-#define hpack_free(pool, ptr)  free(ptr)
-#endif
-
-extern int __hpack_dht_make_room(struct hpack_dht *dht, unsigned int needed);
-extern int hpack_dht_insert(struct hpack_dht *dht, struct ist name, struct ist value);
-
-/* return a pointer to the entry designated by index <idx> (starting at 1) or
- * NULL if this index is not there.
- */
-static inline const struct hpack_dte *hpack_get_dte(const struct hpack_dht *dht, uint16_t idx)
-{
-       idx--;
-
-       if (idx >= dht->used)
-               return NULL;
-
-       if (idx <= dht->head)
-               idx = dht->head - idx;
-       else
-               idx = dht->head - idx + dht->wrap;
-
-       return &dht->dte[idx];
-}
-
-/* returns non-zero if <idx> is valid for table <dht> */
-static inline int hpack_valid_idx(const struct hpack_dht *dht, uint32_t idx)
-{
-       return idx < dht->used + HPACK_SHT_SIZE;
-}
-
-/* return a pointer to the header name for entry <dte>. */
-static inline struct ist hpack_get_name(const struct hpack_dht *dht, const struct hpack_dte *dte)
-{
-       struct ist ret = {
-               .ptr = (void *)dht + dte->addr,
-               .len = dte->nlen,
-       };
-       return ret;
-}
-
-/* return a pointer to the header value for entry <dte>. */
-static inline struct ist hpack_get_value(const struct hpack_dht *dht, const struct hpack_dte *dte)
-{
-       struct ist ret = {
-               .ptr = (void *)dht + dte->addr + dte->nlen,
-               .len = dte->vlen,
-       };
-       return ret;
-}
-
-/* takes an idx, returns the associated name */
-static inline struct ist hpack_idx_to_name(const struct hpack_dht *dht, uint32_t idx)
-{
-       const struct hpack_dte *dte;
-
-       if (idx < HPACK_SHT_SIZE)
-               return hpack_sht[idx].n;
-
-       dte = hpack_get_dte(dht, idx - HPACK_SHT_SIZE + 1);
-       if (!dte)
-               return ist("### ERR ###"); // error
-
-       return hpack_get_name(dht, dte);
-}
-
-/* takes an idx, returns the associated value */
-static inline struct ist hpack_idx_to_value(const struct hpack_dht *dht, uint32_t idx)
-{
-       const struct hpack_dte *dte;
-
-       if (idx < HPACK_SHT_SIZE)
-               return hpack_sht[idx].v;
-
-       dte = hpack_get_dte(dht, idx - HPACK_SHT_SIZE + 1);
-       if (!dte)
-               return ist("### ERR ###"); // error
-
-       return hpack_get_value(dht, dte);
-}
-
-/* Purges table dht until a header field of <needed> bytes fits according to
- * the protocol (adding 32 bytes overhead). Returns non-zero on success, zero
- * on failure (ie: table empty but still not sufficient).
- */
-static inline int hpack_dht_make_room(struct hpack_dht *dht, unsigned int needed)
-{
-       if (dht->used * 32 + dht->total + needed + 32 <= dht->size)
-               return 1;
-       else if (!dht->used)
-               return 0;
-
-       return __hpack_dht_make_room(dht, needed);
-}
-
-/* allocate a dynamic headers table of <size> bytes and return it initialized */
-static inline void hpack_dht_init(struct hpack_dht *dht, uint32_t size)
-{
-       dht->size = size;
-       dht->total = 0;
-       dht->used = 0;
-}
-
-/* allocate a dynamic headers table from the pool and return it initialized */
-static inline struct hpack_dht *hpack_dht_alloc()
-{
-       struct hpack_dht *dht;
-
-       if (unlikely(!pool_head_hpack_tbl))
-               return NULL;
-
-       dht = hpack_alloc(pool_head_hpack_tbl);
-       if (dht)
-               hpack_dht_init(dht, pool_head_hpack_tbl->size);
-       return dht;
-}
-
-/* free a dynamic headers table */
-static inline void hpack_dht_free(struct hpack_dht *dht)
-{
-       hpack_free(pool_head_hpack_tbl, dht);
-}
-
-#endif /* _COMMON_HPACK_TBL_H */
+#endif /* _HAPROXY_HPACK_TBL_T_H */
diff --git a/include/haproxy/hpack-tbl.h b/include/haproxy/hpack-tbl.h
new file mode 100644 (file)
index 0000000..a75ab06
--- /dev/null
@@ -0,0 +1,171 @@
+/*
+ * HPACK header table management (RFC7541) - prototypes
+ *
+ * Copyright (C) 2014-2020 Willy Tarreau <willy@haproxy.org>
+ * Copyright (C) 2017 HAProxy Technologies
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+ * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+ * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ * OTHER DEALINGS IN THE SOFTWARE.
+ */
+#ifndef _HAPROXY_HPACK_TBL_H
+#define _HAPROXY_HPACK_TBL_H
+
+#include <import/ist.h>
+#include <haproxy/api.h>
+#include <haproxy/hpack-tbl-t.h>
+#include <haproxy/http-hdr-t.h>
+
+/* when built outside of haproxy, HPACK_STANDALONE must be defined, and
+ * pool_head_hpack_tbl->size must be set to the DHT size.
+ */
+#ifndef HPACK_STANDALONE
+#include <haproxy/pool.h>
+#define hpack_alloc(pool)      pool_alloc(pool)
+#define hpack_free(pool, ptr)  pool_free(pool, ptr)
+#else
+#include <stdlib.h>
+#include <haproxy/pool-t.h>
+#define hpack_alloc(pool)      malloc(pool->size)
+#define hpack_free(pool, ptr)  free(ptr)
+#endif
+
+extern const struct http_hdr hpack_sht[HPACK_SHT_SIZE];
+extern struct pool_head *pool_head_hpack_tbl;
+
+extern int __hpack_dht_make_room(struct hpack_dht *dht, unsigned int needed);
+extern int hpack_dht_insert(struct hpack_dht *dht, struct ist name, struct ist value);
+
+/* return a pointer to the entry designated by index <idx> (starting at 1) or
+ * NULL if this index is not there.
+ */
+static inline const struct hpack_dte *hpack_get_dte(const struct hpack_dht *dht, uint16_t idx)
+{
+       idx--;
+
+       if (idx >= dht->used)
+               return NULL;
+
+       if (idx <= dht->head)
+               idx = dht->head - idx;
+       else
+               idx = dht->head - idx + dht->wrap;
+
+       return &dht->dte[idx];
+}
+
+/* returns non-zero if <idx> is valid for table <dht> */
+static inline int hpack_valid_idx(const struct hpack_dht *dht, uint32_t idx)
+{
+       return idx < dht->used + HPACK_SHT_SIZE;
+}
+
+/* return a pointer to the header name for entry <dte>. */
+static inline struct ist hpack_get_name(const struct hpack_dht *dht, const struct hpack_dte *dte)
+{
+       struct ist ret = {
+               .ptr = (void *)dht + dte->addr,
+               .len = dte->nlen,
+       };
+       return ret;
+}
+
+/* return a pointer to the header value for entry <dte>. */
+static inline struct ist hpack_get_value(const struct hpack_dht *dht, const struct hpack_dte *dte)
+{
+       struct ist ret = {
+               .ptr = (void *)dht + dte->addr + dte->nlen,
+               .len = dte->vlen,
+       };
+       return ret;
+}
+
+/* takes an idx, returns the associated name */
+static inline struct ist hpack_idx_to_name(const struct hpack_dht *dht, uint32_t idx)
+{
+       const struct hpack_dte *dte;
+
+       if (idx < HPACK_SHT_SIZE)
+               return hpack_sht[idx].n;
+
+       dte = hpack_get_dte(dht, idx - HPACK_SHT_SIZE + 1);
+       if (!dte)
+               return ist("### ERR ###"); // error
+
+       return hpack_get_name(dht, dte);
+}
+
+/* takes an idx, returns the associated value */
+static inline struct ist hpack_idx_to_value(const struct hpack_dht *dht, uint32_t idx)
+{
+       const struct hpack_dte *dte;
+
+       if (idx < HPACK_SHT_SIZE)
+               return hpack_sht[idx].v;
+
+       dte = hpack_get_dte(dht, idx - HPACK_SHT_SIZE + 1);
+       if (!dte)
+               return ist("### ERR ###"); // error
+
+       return hpack_get_value(dht, dte);
+}
+
+/* Purges table dht until a header field of <needed> bytes fits according to
+ * the protocol (adding 32 bytes overhead). Returns non-zero on success, zero
+ * on failure (ie: table empty but still not sufficient).
+ */
+static inline int hpack_dht_make_room(struct hpack_dht *dht, unsigned int needed)
+{
+       if (dht->used * 32 + dht->total + needed + 32 <= dht->size)
+               return 1;
+       else if (!dht->used)
+               return 0;
+
+       return __hpack_dht_make_room(dht, needed);
+}
+
+/* allocate a dynamic headers table of <size> bytes and return it initialized */
+static inline void hpack_dht_init(struct hpack_dht *dht, uint32_t size)
+{
+       dht->size = size;
+       dht->total = 0;
+       dht->used = 0;
+}
+
+/* allocate a dynamic headers table from the pool and return it initialized */
+static inline struct hpack_dht *hpack_dht_alloc()
+{
+       struct hpack_dht *dht;
+
+       if (unlikely(!pool_head_hpack_tbl))
+               return NULL;
+
+       dht = hpack_alloc(pool_head_hpack_tbl);
+       if (dht)
+               hpack_dht_init(dht, pool_head_hpack_tbl->size);
+       return dht;
+}
+
+/* free a dynamic headers table */
+static inline void hpack_dht_free(struct hpack_dht *dht)
+{
+       hpack_free(pool_head_hpack_tbl, dht);
+}
+
+#endif /* _HAPROXY_HPACK_TBL_H */
index aa73f9b210853bbecec5a940da77aa92a8a6c6ab..8f8e02bccef9c0bff813ca90c500df390e1b5813 100644 (file)
@@ -31,9 +31,9 @@
 #include <string.h>
 
 #include <common/standard.h>
-#include <common/hpack-dec.h>
-#include <common/hpack-huff.h>
-#include <common/hpack-tbl.h>
+#include <haproxy/hpack-dec.h>
+#include <haproxy/hpack-huff.h>
+#include <haproxy/hpack-tbl.h>
 #include <haproxy/chunk.h>
 #include <common/h2.h>
 #include <import/ist.h>
index 21e28f65444122e4f7c0124baa3e287e188a38fa..62c6652024e070f89d11a1e0853abebf1e7d6684 100644 (file)
@@ -30,7 +30,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include <common/hpack-enc.h>
+#include <haproxy/hpack-enc.h>
 #include <haproxy/http-hdr-t.h>
 #include <import/ist.h>
 
index 19ea16348b3bc0a11f4ba201d9ed48bc4d3b13c2..005dcc4745248ecc6b7ea8f97fb2bc66ad7f6803 100644 (file)
@@ -30,7 +30,7 @@
 #include <string.h>
 
 #include <haproxy/api.h>
-#include <common/hpack-huff.h>
+#include <haproxy/hpack-huff.h>
 
 struct huff {
        uint32_t c; /* code point */
index 31c24b21f58cfd1dff6e78ea0967c6da1858e6b6..8c56a0ddb78450bc6231d78d4642f84aab58c165 100644 (file)
@@ -30,8 +30,8 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include <common/hpack-huff.h>
-#include <common/hpack-tbl.h>
+#include <haproxy/hpack-huff.h>
+#include <haproxy/hpack-tbl.h>
 #include <import/ist.h>
 
 #include <types/global.h>
index 8c72f81657a3493ac5be62dda3ce3e78e70aa450..adc789ad2e08d72d562eda21afbf0d142dbf797f 100644 (file)
@@ -15,9 +15,9 @@
 #include <common/cfgparse.h>
 #include <haproxy/h1.h>
 #include <common/h2.h>
-#include <common/hpack-dec.h>
-#include <common/hpack-enc.h>
-#include <common/hpack-tbl.h>
+#include <haproxy/hpack-dec.h>
+#include <haproxy/hpack-enc.h>
+#include <haproxy/hpack-tbl.h>
 #include <haproxy/htx.h>
 #include <haproxy/net_helper.h>
 #include <proto/connection.h>