blob: 373952f530f52c4fb973ed206b9505c1de08bdb1 [file] [log] [blame]
Adam Langley9ef99d52016-10-25 17:33:49 -07001/* Copyright (c) 2016, Google Inc.
2 *
3 * Permission to use, copy, modify, and/or distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies.
6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
15#ifndef OPENSSL_HEADER_POOL_H
16#define OPENSSL_HEADER_POOL_H
17
18#include <openssl/base.h>
19
David Benjamin01f8a8c2017-04-15 18:12:55 -040020#include <openssl/stack.h>
21
Adam Langley9ef99d52016-10-25 17:33:49 -070022#if defined(__cplusplus)
23extern "C" {
24#endif
25
26
David Benjamin4512b792017-08-18 19:21:50 -040027// Buffers and buffer pools.
28//
29// |CRYPTO_BUFFER|s are simply reference-counted blobs. A |CRYPTO_BUFFER_POOL|
30// is an intern table for |CRYPTO_BUFFER|s. This allows for a single copy of a
31// given blob to be kept in memory and referenced from multiple places.
Adam Langley9ef99d52016-10-25 17:33:49 -070032
33
David Benjamin01f8a8c2017-04-15 18:12:55 -040034DEFINE_STACK_OF(CRYPTO_BUFFER)
35
David Benjamin4512b792017-08-18 19:21:50 -040036// CRYPTO_BUFFER_POOL_new returns a freshly allocated |CRYPTO_BUFFER_POOL| or
37// NULL on error.
Adam Langley9ef99d52016-10-25 17:33:49 -070038OPENSSL_EXPORT CRYPTO_BUFFER_POOL* CRYPTO_BUFFER_POOL_new(void);
39
David Benjamin4512b792017-08-18 19:21:50 -040040// CRYPTO_BUFFER_POOL_free frees |pool|, which must be empty.
Adam Langley9ef99d52016-10-25 17:33:49 -070041OPENSSL_EXPORT void CRYPTO_BUFFER_POOL_free(CRYPTO_BUFFER_POOL *pool);
42
David Benjamin4512b792017-08-18 19:21:50 -040043// CRYPTO_BUFFER_new returns a |CRYPTO_BUFFER| containing a copy of |data|, or
44// else NULL on error. If |pool| is not NULL then the returned value may be a
45// reference to a previously existing |CRYPTO_BUFFER| that contained the same
46// data. Otherwise, the returned, fresh |CRYPTO_BUFFER| will be added to the
47// pool.
Adam Langley9ef99d52016-10-25 17:33:49 -070048OPENSSL_EXPORT CRYPTO_BUFFER *CRYPTO_BUFFER_new(const uint8_t *data, size_t len,
49 CRYPTO_BUFFER_POOL *pool);
50
David Benjamin4512b792017-08-18 19:21:50 -040051// CRYPTO_BUFFER_new_from_CBS acts the same as |CRYPTO_BUFFER_new|.
Adam Langley9ef99d52016-10-25 17:33:49 -070052OPENSSL_EXPORT CRYPTO_BUFFER *CRYPTO_BUFFER_new_from_CBS(
53 CBS *cbs, CRYPTO_BUFFER_POOL *pool);
54
David Benjamin4512b792017-08-18 19:21:50 -040055// CRYPTO_BUFFER_free decrements the reference count of |buf|. If there are no
56// other references, or if the only remaining reference is from a pool, then
57// |buf| will be freed.
Adam Langley9ef99d52016-10-25 17:33:49 -070058OPENSSL_EXPORT void CRYPTO_BUFFER_free(CRYPTO_BUFFER *buf);
59
David Benjamin4512b792017-08-18 19:21:50 -040060// CRYPTO_BUFFER_up_ref increments the reference count of |buf| and returns
61// one.
Adam Langley9ef99d52016-10-25 17:33:49 -070062OPENSSL_EXPORT int CRYPTO_BUFFER_up_ref(CRYPTO_BUFFER *buf);
63
David Benjamin4512b792017-08-18 19:21:50 -040064// CRYPTO_BUFFER_data returns a pointer to the data contained in |buf|.
Adam Langley9ef99d52016-10-25 17:33:49 -070065OPENSSL_EXPORT const uint8_t *CRYPTO_BUFFER_data(const CRYPTO_BUFFER *buf);
66
David Benjamin4512b792017-08-18 19:21:50 -040067// CRYPTO_BUFFER_len returns the length, in bytes, of the data contained in
68// |buf|.
David Benjamind547f552016-10-28 08:55:59 -040069OPENSSL_EXPORT size_t CRYPTO_BUFFER_len(const CRYPTO_BUFFER *buf);
Adam Langley9ef99d52016-10-25 17:33:49 -070070
David Benjamin4512b792017-08-18 19:21:50 -040071// CRYPTO_BUFFER_init_CBS initialises |out| to point at the data from |buf|.
Adam Langley9ef99d52016-10-25 17:33:49 -070072OPENSSL_EXPORT void CRYPTO_BUFFER_init_CBS(const CRYPTO_BUFFER *buf, CBS *out);
73
74
75#if defined(__cplusplus)
David Benjamin4512b792017-08-18 19:21:50 -040076} // extern C
Adam Langley9ef99d52016-10-25 17:33:49 -070077
78extern "C++" {
79
80namespace bssl {
81
82BORINGSSL_MAKE_DELETER(CRYPTO_BUFFER_POOL, CRYPTO_BUFFER_POOL_free)
83BORINGSSL_MAKE_DELETER(CRYPTO_BUFFER, CRYPTO_BUFFER_free)
84
Adam Langley9ef99d52016-10-25 17:33:49 -070085} // namespace bssl
86
David Benjamin4512b792017-08-18 19:21:50 -040087} // extern C++
Adam Langley9ef99d52016-10-25 17:33:49 -070088
89#endif
90
91#endif // OPENSSL_HEADER_POOL_H