VOOZH about

URL: https://manpages.org/bio_s_mem/3

⇱ man BIO_s_mem (3): BIO_set_mem_buf,


BIO_s_mem(3) BIO_set_mem_buf,

SYNOPSIS


#include <openssl/bio.h>
BIO_METHOD * BIO_s_mem(void);
BIO_set_mem_eof_return(BIO *b,int v)
long BIO_get_mem_data(BIO *b, char **pp)
BIO_set_mem_buf(BIO *b,BUF_MEM *bm,int c)
BIO_get_mem_ptr(BIO *b,BUF_MEM **pp)
BIO *BIO_new_mem_buf(const void *buf, int len);

DESCRIPTION

BIO_s_mem() return the memory method function.

A memory is a source/sink which uses memory for its I/O. Data written to a memory is stored in a structure which is extended as appropriate to accommodate the stored data.

Any data written to a memory can be recalled by reading from it. Unless the memory is read only any data read from it is deleted from the

Memory BIOs support BIO_gets() and BIO_puts().

If the flag is set when a memory is freed then the underlying structure is also freed.

Calling BIO_reset() on a read write memory clears any data in it. On a read only it restores the to its original state and the read only data can be read again.

BIO_eof() is true if no data is in the

BIO_ctrl_pending() returns the number of bytes currently stored.

BIO_set_mem_eof_return() sets the behaviour of memory b when it is empty. If the v is zero then an empty memory will return (that is it will return zero and BIO_should_retry(b) will be false. If v is non zero then it will return v when it is empty and it will set the read retry flag (that is BIO_read_retry(b) is true). To avoid ambiguity with a normal positive return value v should be set to a negative value, typically -1.

BIO_get_mem_data() sets pp to a pointer to the start of the memory BIOs data and returns the total amount of data available. It is implemented as a macro.

BIO_set_mem_buf() sets the internal structure to bm and sets the close flag to c, that is c should be either or It is a macro.

BIO_get_mem_ptr() places the underlying structure in pp. It is a macro.

BIO_new_mem_buf() creates a memory using len bytes of data at buf, if len is -1 then the buf is assumed to be nul terminated and its length is determined by strlen. The is set to a read only state and as a result cannot be written to. This is useful when some data needs to be made available from a static area of memory in the form of a The supplied data is read directly from the supplied buffer: it is not copied first, so the supplied area of memory must be unchanged until the is freed.

NOTES

Writes to memory BIOs will always succeed if memory is available: that is their size can grow indefinitely.

Every read from a read write memory will remove the data just read with an internal copy operation, if a contains a lot of data and it is read in small chunks the operation can be very slow. The use of a read only memory avoids this problem. If the must be read write then adding a buffering to the chain will speed up the process.

BUGS

There should be an option to set the maximum size of a memory

There should be a way to ``rewind'' a read write without destroying its contents.

The copying operation should not occur after every small read of a large to improve efficiency.

EXAMPLE

Create a memory and write some data to it:
 BIO *mem = BIO_new(BIO_s_mem());
 BIO_puts(mem, "Hello World\n");

Create a read only memory

 char data[] = "Hello World";
 BIO *mem;
 mem = BIO_new_mem_buf(data, -1);

Extract the structure from a memory and then free up the

 BUF_MEM *bptr;
 BIO_get_mem_ptr(mem, &bptr);
 BIO_set_close(mem, BIO_NOCLOSE); /* So BIO_free() leaves BUF_MEM alone */
 BIO_free(mem);