xref: /netbsd-src/external/bsd/ntp/dist/sntp/libevent/include/event2/tag.h (revision cdfa2a7ef92791ba9db70a584a1d904730e6fb46)
1 /*	$NetBSD: tag.h,v 1.5 2020/05/25 20:47:34 christos Exp $	*/
2 
3 /*
4  * Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu>
5  * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. The name of the author may not be used to endorse or promote products
16  *    derived from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 #ifndef EVENT2_TAG_H_INCLUDED_
30 #define EVENT2_TAG_H_INCLUDED_
31 
32 /** @file event2/tag.h
33 
34   Helper functions for reading and writing tagged data onto buffers.
35 
36  */
37 
38 #include <event2/visibility.h>
39 
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
43 
44 #include <event2/event-config.h>
45 #ifdef EVENT__HAVE_SYS_TYPES_H
46 #include <sys/types.h>
47 #endif
48 #ifdef EVENT__HAVE_SYS_TIME_H
49 #include <sys/time.h>
50 #endif
51 
52 /* For int types. */
53 #include <event2/util.h>
54 
55 struct evbuffer;
56 
57 /*
58  * Marshaling tagged data - We assume that all tags are inserted in their
59  * numeric order - so that unknown tags will always be higher than the
60  * known ones - and we can just ignore the end of an event buffer.
61  */
62 
63 EVENT2_EXPORT_SYMBOL
64 void evtag_init(void);
65 
66 /**
67    Unmarshals the header and returns the length of the payload
68 
69    @param evbuf the buffer from which to unmarshal data
70    @param ptag a pointer in which the tag id is being stored
71    @returns -1 on failure or the number of bytes in the remaining payload.
72 */
73 EVENT2_EXPORT_SYMBOL
74 int evtag_unmarshal_header(struct evbuffer *evbuf, ev_uint32_t *ptag);
75 
76 EVENT2_EXPORT_SYMBOL
77 void evtag_marshal(struct evbuffer *evbuf, ev_uint32_t tag, const void *data,
78     ev_uint32_t len);
79 EVENT2_EXPORT_SYMBOL
80 void evtag_marshal_buffer(struct evbuffer *evbuf, ev_uint32_t tag,
81     struct evbuffer *data);
82 
83 /**
84   Encode an integer and store it in an evbuffer.
85 
86   We encode integers by nybbles; the first nibble contains the number
87   of significant nibbles - 1;  this allows us to encode up to 64-bit
88   integers.  This function is byte-order independent.
89 
90   @param evbuf evbuffer to store the encoded number
91   @param number a 32-bit integer
92  */
93 EVENT2_EXPORT_SYMBOL
94 void evtag_encode_int(struct evbuffer *evbuf, ev_uint32_t number);
95 EVENT2_EXPORT_SYMBOL
96 void evtag_encode_int64(struct evbuffer *evbuf, ev_uint64_t number);
97 
98 EVENT2_EXPORT_SYMBOL
99 void evtag_marshal_int(struct evbuffer *evbuf, ev_uint32_t tag,
100     ev_uint32_t integer);
101 EVENT2_EXPORT_SYMBOL
102 void evtag_marshal_int64(struct evbuffer *evbuf, ev_uint32_t tag,
103     ev_uint64_t integer);
104 
105 EVENT2_EXPORT_SYMBOL
106 void evtag_marshal_string(struct evbuffer *buf, ev_uint32_t tag,
107     const char *string);
108 
109 EVENT2_EXPORT_SYMBOL
110 void evtag_marshal_timeval(struct evbuffer *evbuf, ev_uint32_t tag,
111     struct timeval *tv);
112 
113 EVENT2_EXPORT_SYMBOL
114 int evtag_unmarshal(struct evbuffer *src, ev_uint32_t *ptag,
115     struct evbuffer *dst);
116 EVENT2_EXPORT_SYMBOL
117 int evtag_peek(struct evbuffer *evbuf, ev_uint32_t *ptag);
118 EVENT2_EXPORT_SYMBOL
119 int evtag_peek_length(struct evbuffer *evbuf, ev_uint32_t *plength);
120 EVENT2_EXPORT_SYMBOL
121 int evtag_payload_length(struct evbuffer *evbuf, ev_uint32_t *plength);
122 EVENT2_EXPORT_SYMBOL
123 int evtag_consume(struct evbuffer *evbuf);
124 
125 EVENT2_EXPORT_SYMBOL
126 int evtag_unmarshal_int(struct evbuffer *evbuf, ev_uint32_t need_tag,
127     ev_uint32_t *pinteger);
128 EVENT2_EXPORT_SYMBOL
129 int evtag_unmarshal_int64(struct evbuffer *evbuf, ev_uint32_t need_tag,
130     ev_uint64_t *pinteger);
131 
132 EVENT2_EXPORT_SYMBOL
133 int evtag_unmarshal_fixed(struct evbuffer *src, ev_uint32_t need_tag,
134     void *data, size_t len);
135 
136 EVENT2_EXPORT_SYMBOL
137 int evtag_unmarshal_string(struct evbuffer *evbuf, ev_uint32_t need_tag,
138     char **pstring);
139 
140 EVENT2_EXPORT_SYMBOL
141 int evtag_unmarshal_timeval(struct evbuffer *evbuf, ev_uint32_t need_tag,
142     struct timeval *ptv);
143 
144 #ifdef __cplusplus
145 }
146 #endif
147 
148 #endif /* EVENT2_TAG_H_INCLUDED_ */
149