:orphan: .. index:: pair: group; Regular binary buffers .. _doxid-group__te__tools__te__bufs: Regular binary buffers ====================== .. toctree:: :hidden: struct_te_buf_pattern.rst Overview ~~~~~~~~ Allocation of buffers, fill in by random numbers, etc. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef struct :ref:`te_buf_pattern` :ref:`te_buf_pattern`; // structs struct :ref:`te_buf_pattern`; // global functions :ref:`te_errno` :ref:`te_compile_buf_pattern`(const char* spec, uint8_t* storage, size_t max_size, :ref:`te_buf_pattern`* pattern); void :ref:`te_fill_pattern_buf`(void* buf, size_t len, const :ref:`te_buf_pattern`* pattern); void* :ref:`te_make_pattern_buf`(size_t min, size_t max, size_t* p_len, const :ref:`te_buf_pattern`* pattern); :ref:`te_errno` :ref:`te_fill_spec_buf`(void* buf, size_t len, const char* spec); void* :ref:`te_make_spec_buf`(size_t min, size_t max, size_t* p_len, const char* spec); static void :ref:`te_fill_buf`(void* buf, size_t len); static void* :ref:`te_make_buf`(size_t min, size_t max, size_t* p_len); static void* :ref:`te_make_buf_by_len`(size_t len); static void* :ref:`te_make_buf_min`(size_t min, size_t* p_len); static void :ref:`te_fill_printable_buf`(void* buf, size_t len); static char* :ref:`te_make_printable_buf`(size_t min, size_t max, size_t* p_len); static char* :ref:`te_make_printable_buf_by_len`(size_t len); void* :ref:`te_calloc_fill`(size_t num, size_t size, int byte); bool :ref:`te_compare_bufs`(const void* exp_buf, size_t exp_len, unsigned int n_copies, const void* actual_buf, size_t actual_len, unsigned int log_level); // macros #define :ref:`TE_FILL_SPEC_ASCII` #define :ref:`TE_FILL_SPEC_BINARY` #define :ref:`TE_FILL_SPEC_C_ID` #define :ref:`TE_FILL_SPEC_DECIMAL` #define :ref:`TE_FILL_SPEC_FILENAME` #define :ref:`TE_FILL_SPEC_HEX` #define :ref:`TE_FILL_SPEC_HEX_LCASE` #define :ref:`TE_FILL_SPEC_JSON_STR` #define :ref:`TE_FILL_SPEC_PRINTABLE` #define :ref:`TE_FILL_SPEC_TEXT` #define :ref:`TE_FILL_SPEC_URI_CHUNK` #define :ref:`TE_FILL_SPEC_WORD` #define :ref:`TE_FILL_SPEC_XML_NAME` #define :ref:`TE_FILL_SPEC_XML_TEXT` .. _details-group__te__tools__te__bufs: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Allocation of buffers, fill in by random numbers, etc. Copyright (C) 2004-2022 OKTET Labs Ltd. All rights reserved. Typedefs -------- .. index:: pair: typedef; te_buf_pattern .. _doxid-group__te__tools__te__bufs_1ga457f1a59fb369b4262c1d7137edad8fb: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`te_buf_pattern` te_buf_pattern Compiled buffer fill pattern. The structure should be treated as opaque and only filled by :ref:`te_compile_buf_pattern() `. The compiled pattern is a sequence of "possible bytes", where each "possible byte" is a number followed by that many byte values. If the number is zero, any byte is possible at that position. Global Functions ---------------- .. index:: pair: function; te_compile_buf_pattern .. _doxid-group__te__tools__te__bufs_1gaa4275bb7d02946345ae3921d8724319d: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_compile_buf_pattern(const char* spec, uint8_t* storage, size_t max_size, :ref:`te_buf_pattern`* pattern) Convert a textual pattern spec into a compiled pattern. The pattern spec is a string consisting of three parts: *prefix* ```` (*repeat* ````) *suffix*, where both *prefix* and *suffix* are optional. The resulting byte sequence is produced as follows: * first *prefix* is generated; * then *repeat* is repeated until there is only room for *suffix* * then *suffix* is generated. If the buffer is shorter than the prefix and the suffix together, the suffix is laid over the prefix. This is slightly counter-intuitive, but it e.g. allows to ensure easily that a string would be zero-terminated. Each part is a sequence of byte specs, which are either: * any verbatim bytes except an open bracket, a backtick and a binary zero; * a backtick followed by any byte including a binary zero; * a byte set. A byte set is a sequence of elements enclosed in ``[ ... ]``, where each element is either: * any verbatim byte except a hyphen, a caret, a closing bracket, a backtick and a binary zero; * a backtick followed by any byte including a binary zero; * a range: a pair of bytes separated by ``-``; * a literal unescaped hyphen if it's the first or the last element of a byte set. An empty byte set ``[]`` means any byte. A byte set may also contain a right-associative exclusion operator ``^`` : *A* ``^`` *B* ``^`` *C* means "all bytes from @e A except (those in @e B except those in @e C); see below for examples. @note The backtick was chosen as an escape character instead of a more common backslash in order to avoid double-escaping in C literals. The compiled pattern is a sequence of "possible bytes", where each "possible byte" is a number followed by that many byte values. If the number is zero, any byte is possible at that position. The compiled pattern data are stored in @p storage which should be an array of at least @p max_size bytes. @p pattern holds pointers inside @p storage, so the latter should not have a shorter duration that the former. @par Examples: - @c "[0-9]" a sequence of decimal digits (not zero-terminated) - @c "[a-zA-Z\_]([a-zA-Z0-9\_])`\0" a valid C identifier (zero-terminated) - @c "[^`\0\x1-\x1F\x7F-\xFF^ \t]" a sequence of printable ASCII characters + newline and tab - @c "[ -~ \t]" a shorter version of the previous - @c " ``[([0-9a-f])``]`\0" a zero-terminated sequence of hexadecimal digits enclosed in brackets .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - spec - pattern spec * - storage - buffer to hold the compiled pattern * - max_size - total size of ``storage`` * - pattern - compiled pattern header (the structure is completely initialised by this function) * - TE_ENOBUFS - There is not enough room in ``storage`` to hold the data. * - TE_EILSEQ - An unmatched ```` [ or ```` ( is found. * - TE_ENODATA - The spec contains no actual byte specs. * - TE_EINVAL - The spec contains multiple repeat sections. .. rubric:: Returns: status code .. index:: pair: function; te_fill_pattern_buf .. _doxid-group__te__tools__te__bufs_1ga20c9ece667533f2e73bb10e16fb20376: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_fill_pattern_buf(void* buf, size_t len, const :ref:`te_buf_pattern`* pattern) Fill ``buf`` of length ``len`` with random bytes according to a given ``pattern``. If ``pattern`` is ``NULL``, the buffer is filled with unconstrained random bytes. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - buf - buffer * - len - length of ``buf`` * - pattern - compiled pattern (see :ref:`te_compile_buf_pattern() `) .. index:: pair: function; te_make_pattern_buf .. _doxid-group__te__tools__te__bufs_1ga560e6e1cfbc9f53107da71b301063bf0: .. ref-code-block:: cpp :class: doxyrest-title-code-block void* te_make_pattern_buf(size_t min, size_t max, size_t* p_len, const :ref:`te_buf_pattern`* pattern) Allocate a buffer of random size between ``min`` and ``max`` filled with random bytes according to ``pattern``. If ``pattern`` is ``NULL``, the buffer is filled with unconstrained random bytes. ``p_len`` may be ``NULL``, if either ``min`` is equal to ``max``, or ``spec`` contains a terminating ``NUL`` byte, since in this case the size may be determined by ``strlen()``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - min - minimum allowed size * - max - maximum allowed size * - p_len - actual size of the buffer (may be ``NULL``) * - pattern - compiled pattern (see :ref:`te_compile_buf_pattern() `) .. rubric:: Returns: an allocated and filled buffer (never ``NULL``) .. index:: pair: function; te_fill_spec_buf .. _doxid-group__te__tools__te__bufs_1ga03ea2ee22dae8af862e3da89ac11ce65: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_fill_spec_buf(void* buf, size_t len, const char* spec) Fill ``buf`` of length ``len`` with random bytes according to a given ``spec``. The function only returns an error if ``spec`` is malformed. So callers that always pass known constant patterns to it, need not check for the return value. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - buf - buffer * - len - length of ``buf`` * - spec - pattern spec (see :ref:`te_compile_buf_pattern() `) .. rubric:: Returns: status code .. index:: pair: function; te_make_spec_buf .. _doxid-group__te__tools__te__bufs_1gad199bfbfaf12fa053438ee921b465b72: .. ref-code-block:: cpp :class: doxyrest-title-code-block void* te_make_spec_buf(size_t min, size_t max, size_t* p_len, const char* spec) Allocate a buffer of random size between ``min`` and ``max`` filled with random bytes according to ``spec``. ``p_len`` may be ``NULL``, if either ``min`` is equal to ``max``, or ``spec`` contains a terminating ``NUL`` byte, since in this case the size may be determined by ``strlen()``. The function only returns ``NULL`` if ``spec`` is malformed. So callers that always pass known constant patterns to it, need not check for the return value being not ``NULL``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - min - minimum allowed size * - max - maximum allowed size * - p_len - actual size of the buffer (may be ``NULL``) * - spec - pattern spec (see :ref:`te_compile_buf_pattern() `) .. rubric:: Returns: an allocated and filled buffer .. index:: pair: function; te_fill_buf .. _doxid-group__te__tools__te__bufs_1gaa6a1306efca0f66d412efd3407de97e0: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void te_fill_buf(void* buf, size_t len) Fill buffer with random bytes. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - buf - buffer pointer * - len - buffer length .. rubric:: See also: :ref:`te_fill_pattern_buf() ` .. index:: pair: function; te_make_buf .. _doxid-group__te__tools__te__bufs_1gaab4a434444654456c18c03cec15c8ecc: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void* te_make_buf(size_t min, size_t max, size_t* p_len) Allocate buffer of random size between ``min`` and ``max`` and fill it with random bytes. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - min - minimum allowed size * - max - maximum allowed size * - p_len - actual size of the buffer (may be ``NULL`` if ``min`` is equal to ``max``) .. rubric:: Returns: an allocated and filled buffer .. rubric:: See also: :ref:`te_make_pattern_buf() ` .. index:: pair: function; te_make_buf_by_len .. _doxid-group__te__tools__te__bufs_1ga281f99680baff46273c63948c75c430c: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void* te_make_buf_by_len(size_t len) Allocate a buffer of given size ``len`` and fill it with random bytes. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - len - buffer length .. rubric:: Returns: an allocated and filled buffer .. rubric:: See also: :ref:`te_make_pattern_buf() ` .. index:: pair: function; te_make_buf_min .. _doxid-group__te__tools__te__bufs_1gad345ac450f5c3deef0dae2036ec417f6: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void* te_make_buf_min(size_t min, size_t* p_len) Allocate a buffer of at least ``min`` bytes and fill it with random bytes .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - min - minimum buffer length * - p_len - actual buffer length .. rubric:: Returns: an allocated and filled buffer .. index:: pair: function; te_fill_printable_buf .. _doxid-group__te__tools__te__bufs_1gad5452abe32f63109cc5631e6c5671495: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void te_fill_printable_buf(void* buf, size_t len) Fill a buffer with random printable characters. The last byte will be zero, so the result may be used as a C string. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - buf - buffer pointer * - len - buffer length .. rubric:: See also: :ref:`te_fill_spec_buf() ` .. index:: pair: function; te_make_printable_buf .. _doxid-group__te__tools__te__bufs_1gaf3a4fd056d671fb515e54cb5296edfb5: .. ref-code-block:: cpp :class: doxyrest-title-code-block static char* te_make_printable_buf(size_t min, size_t max, size_t* p_len) Allocate buffer of random size between ``min`` and ``max`` and fill it with random printable characters. The buffer will be NUL-terminated, so it can be used as a C string. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - min - minimum allowed size * - max - maximum allowed size * - p_len - actual size of the buffer (may be ``NULL``) .. rubric:: Returns: an allocated and filled buffer .. rubric:: See also: :ref:`te_make_spec_buf() ` .. index:: pair: function; te_make_printable_buf_by_len .. _doxid-group__te__tools__te__bufs_1ga2bf1ad224f4c43cfd6cf15b85005bd39: .. ref-code-block:: cpp :class: doxyrest-title-code-block static char* te_make_printable_buf_by_len(size_t len) Allocate a buffer of given size ``len`` and fill it with random printable characters. The buffer will be NUL-terminated. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - len - buffer length .. rubric:: Returns: an allocated and filled buffer .. rubric:: See also: :ref:`te_make_spec_buf() ` .. index:: pair: function; te_calloc_fill .. _doxid-group__te__tools__te__bufs_1gadc0671b17a5f094d355759b835713170: .. ref-code-block:: cpp :class: doxyrest-title-code-block void* te_calloc_fill(size_t num, size_t size, int byte) Allocate memory and fill it with the ``byte`` .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - num - Items number * - size - Item instance size * - byte - Byte to fill memory .. rubric:: Returns: Pointer to the memory block .. index:: pair: function; te_compare_bufs .. _doxid-group__te__tools__te__bufs_1ga21fb8b3bf8e26213a7b398fa4018d882: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool te_compare_bufs(const void* exp_buf, size_t exp_len, unsigned int n_copies, const void* actual_buf, size_t actual_len, unsigned int log_level) Compare and probably log the difference of two buffers. It can compare buffers of unequal size. Unlike :ref:`CHECK_BUFS_EQUAL() `, it does not fail a test, so it can be used both in the Engine and agents. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - exp_buf - Expected data. * - exp_len - Length of expected data. * - n_copies - Number of copies of the expected buffer that should be in the actual data. * - actual_buf - Actual data. * - actual_len - Length of actual data. * - log_level - Log level for diff dumps. If zero, no logging is done. .. rubric:: Returns: ``true`` if the lengths and the content of buffers are the same. Macros ------ .. index:: pair: define; TE_FILL_SPEC_ASCII .. _doxid-group__te__tools__te__bufs_1gacf50b266bf9f0530648eff363a677da6: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_ASCII A random sequence of ASCII characters excluding ``NUL``. .. index:: pair: define; TE_FILL_SPEC_BINARY .. _doxid-group__te__tools__te__bufs_1ga2a0a434fbaa3a7918cafc907d897022e: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_BINARY A random sequence of bytes including ``NULs``. .. index:: pair: define; TE_FILL_SPEC_C_ID .. _doxid-group__te__tools__te__bufs_1gac51b36a13a9fe80f29d92e1666791e49: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_C_ID A valid C identifier. .. index:: pair: define; TE_FILL_SPEC_DECIMAL .. _doxid-group__te__tools__te__bufs_1ga8e411ce3a6b89d22d53cfb8fc0313596: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_DECIMAL Common fill patterns specs. All sequences except TE_FILL_SPEC_BINARY are zero-terminated. A sequence of decimal digits. .. index:: pair: define; TE_FILL_SPEC_FILENAME .. _doxid-group__te__tools__te__bufs_1ga48baef6a2bf063f5be3f3136feceb0eb: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_FILENAME A safe filename. A name contains no directory separators, no wildcards, no spaces and no characters that may be interpreted by a shell, such as a dollar sign. A name also does not start with a dot. .. index:: pair: define; TE_FILL_SPEC_HEX .. _doxid-group__te__tools__te__bufs_1gacceac3faa461cf725ffe9262aaeca78a: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_HEX A sequence of hex digits. .. index:: pair: define; TE_FILL_SPEC_HEX_LCASE .. _doxid-group__te__tools__te__bufs_1gafca998a6c2b09f5bfd4c988c7758a75b: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_HEX_LCASE A sequence of hex digits (lowercase variant). .. index:: pair: define; TE_FILL_SPEC_JSON_STR .. _doxid-group__te__tools__te__bufs_1gadf5ee240a922f9613bc041125cec3954: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_JSON_STR A valid content of a JSON string literal. It contains any printable characters except quotes and backslashes. .. index:: pair: define; TE_FILL_SPEC_PRINTABLE .. _doxid-group__te__tools__te__bufs_1ga090c67d21da6e1e231975f89f60915dd: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_PRINTABLE A sequence of printable characters. .. index:: pair: define; TE_FILL_SPEC_TEXT .. _doxid-group__te__tools__te__bufs_1ga0df08342aad014d5d744d0b6202aa1ea: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_TEXT A sequence of printable characters, tabs and newlines. .. index:: pair: define; TE_FILL_SPEC_URI_CHUNK .. _doxid-group__te__tools__te__bufs_1gaffe27ff8db8ab7b678eb491f5d61d774: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_URI_CHUNK A valid URI chunk. It contains only RFC 3986 "unreserved" characters: alphanumerics, underscores, hyphens, periods and tildes. .. index:: pair: define; TE_FILL_SPEC_WORD .. _doxid-group__te__tools__te__bufs_1ga45c4f21ae6fa18657c2d2eff87305670: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_WORD A sequence of Latin letters. .. index:: pair: define; TE_FILL_SPEC_XML_NAME .. _doxid-group__te__tools__te__bufs_1ga8437911e9e678af4855244e155e1ec47: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_XML_NAME A valid XML name. It contains only alphanumerics, underscores, hyphens and periods, and it starts with either an alphanumeric or an underscore. .. index:: pair: define; TE_FILL_SPEC_XML_TEXT .. _doxid-group__te__tools__te__bufs_1ga2dab5539fb512882d7742ff57655d10f: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_FILL_SPEC_XML_TEXT A valid XML text. It contains any printable characters except quotes, apostrophes, ampersands and angle brackets. It may contain newlines.