Coverage Report

Created: 2022-11-30 06:20

/src/openssl/crypto/bio/bss_mem.c
Line
Count
Source (jump to first uncovered line)
1
/* crypto/bio/bss_mem.c */
2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3
 * All rights reserved.
4
 *
5
 * This package is an SSL implementation written
6
 * by Eric Young (eay@cryptsoft.com).
7
 * The implementation was written so as to conform with Netscapes SSL.
8
 *
9
 * This library is free for commercial and non-commercial use as long as
10
 * the following conditions are aheared to.  The following conditions
11
 * apply to all code found in this distribution, be it the RC4, RSA,
12
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13
 * included with this distribution is covered by the same copyright terms
14
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15
 *
16
 * Copyright remains Eric Young's, and as such any Copyright notices in
17
 * the code are not to be removed.
18
 * If this package is used in a product, Eric Young should be given attribution
19
 * as the author of the parts of the library used.
20
 * This can be in the form of a textual message at program startup or
21
 * in documentation (online or textual) provided with the package.
22
 *
23
 * Redistribution and use in source and binary forms, with or without
24
 * modification, are permitted provided that the following conditions
25
 * are met:
26
 * 1. Redistributions of source code must retain the copyright
27
 *    notice, this list of conditions and the following disclaimer.
28
 * 2. Redistributions in binary form must reproduce the above copyright
29
 *    notice, this list of conditions and the following disclaimer in the
30
 *    documentation and/or other materials provided with the distribution.
31
 * 3. All advertising materials mentioning features or use of this software
32
 *    must display the following acknowledgement:
33
 *    "This product includes cryptographic software written by
34
 *     Eric Young (eay@cryptsoft.com)"
35
 *    The word 'cryptographic' can be left out if the rouines from the library
36
 *    being used are not cryptographic related :-).
37
 * 4. If you include any Windows specific code (or a derivative thereof) from
38
 *    the apps directory (application code) you must include an acknowledgement:
39
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40
 *
41
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51
 * SUCH DAMAGE.
52
 *
53
 * The licence and distribution terms for any publically available version or
54
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
55
 * copied and put under another distribution licence
56
 * [including the GNU Public Licence.]
57
 */
58
59
#include <stdio.h>
60
#include <errno.h>
61
#include "cryptlib.h"
62
#include <openssl/bio.h>
63
64
static int mem_write(BIO *h, const char *buf, int num);
65
static int mem_read(BIO *h, char *buf, int size);
66
static int mem_puts(BIO *h, const char *str);
67
static int mem_gets(BIO *h, char *str, int size);
68
static long mem_ctrl(BIO *h, int cmd, long arg1, void *arg2);
69
static int mem_new(BIO *h);
70
static int mem_free(BIO *data);
71
static BIO_METHOD mem_method = {
72
    BIO_TYPE_MEM,
73
    "memory buffer",
74
    mem_write,
75
    mem_read,
76
    mem_puts,
77
    mem_gets,
78
    mem_ctrl,
79
    mem_new,
80
    mem_free,
81
    NULL,
82
};
83
84
/*
85
 * bio->num is used to hold the value to return on 'empty', if it is 0,
86
 * should_retry is not set
87
 */
88
89
BIO_METHOD *BIO_s_mem(void)
90
0
{
91
0
    return (&mem_method);
92
0
}
93
94
95
BIO *BIO_new_mem_buf(const void *buf, int len)
96
0
{
97
0
    BIO *ret;
98
0
    BUF_MEM *b;
99
0
    size_t sz;
100
101
0
    if (!buf) {
102
0
        BIOerr(BIO_F_BIO_NEW_MEM_BUF, BIO_R_NULL_PARAMETER);
103
0
        return NULL;
104
0
    }
105
0
    sz = (len < 0) ? strlen(buf) : (size_t)len;
106
0
    if (!(ret = BIO_new(BIO_s_mem())))
107
0
        return NULL;
108
0
    b = (BUF_MEM *)ret->ptr;
109
    /* Cast away const and trust in the MEM_RDONLY flag. */
110
0
    b->data = (void *)buf;
111
0
    b->length = sz;
112
0
    b->max = sz;
113
0
    ret->flags |= BIO_FLAGS_MEM_RDONLY;
114
    /* Since this is static data retrying wont help */
115
0
    ret->num = 0;
116
0
    return ret;
117
0
}
118
119
static int mem_new(BIO *bi)
120
0
{
121
0
    BUF_MEM *b;
122
123
0
    if ((b = BUF_MEM_new()) == NULL)
124
0
        return (0);
125
0
    bi->shutdown = 1;
126
0
    bi->init = 1;
127
0
    bi->num = -1;
128
0
    bi->ptr = (char *)b;
129
0
    return (1);
130
0
}
131
132
static int mem_free(BIO *a)
133
0
{
134
0
    if (a == NULL)
135
0
        return (0);
136
0
    if (a->shutdown) {
137
0
        if ((a->init) && (a->ptr != NULL)) {
138
0
            BUF_MEM *b;
139
0
            b = (BUF_MEM *)a->ptr;
140
0
            if (a->flags & BIO_FLAGS_MEM_RDONLY)
141
0
                b->data = NULL;
142
0
            BUF_MEM_free(b);
143
0
            a->ptr = NULL;
144
0
        }
145
0
    }
146
0
    return (1);
147
0
}
148
149
static int mem_read(BIO *b, char *out, int outl)
150
0
{
151
0
    int ret = -1;
152
0
    BUF_MEM *bm;
153
154
0
    bm = (BUF_MEM *)b->ptr;
155
0
    BIO_clear_retry_flags(b);
156
0
    ret = (outl >= 0 && (size_t)outl > bm->length) ? (int)bm->length : outl;
157
0
    if ((out != NULL) && (ret > 0)) {
158
0
        memcpy(out, bm->data, ret);
159
0
        bm->length -= ret;
160
0
        if (b->flags & BIO_FLAGS_MEM_RDONLY)
161
0
            bm->data += ret;
162
0
        else {
163
0
            memmove(&(bm->data[0]), &(bm->data[ret]), bm->length);
164
0
        }
165
0
    } else if (bm->length == 0) {
166
0
        ret = b->num;
167
0
        if (ret != 0)
168
0
            BIO_set_retry_read(b);
169
0
    }
170
0
    return (ret);
171
0
}
172
173
static int mem_write(BIO *b, const char *in, int inl)
174
0
{
175
0
    int ret = -1;
176
0
    int blen;
177
0
    BUF_MEM *bm;
178
179
0
    bm = (BUF_MEM *)b->ptr;
180
0
    if (in == NULL) {
181
0
        BIOerr(BIO_F_MEM_WRITE, BIO_R_NULL_PARAMETER);
182
0
        goto end;
183
0
    }
184
185
0
    if (b->flags & BIO_FLAGS_MEM_RDONLY) {
186
0
        BIOerr(BIO_F_MEM_WRITE, BIO_R_WRITE_TO_READ_ONLY_BIO);
187
0
        goto end;
188
0
    }
189
190
0
    BIO_clear_retry_flags(b);
191
0
    blen = bm->length;
192
0
    if (BUF_MEM_grow_clean(bm, blen + inl) != (blen + inl))
193
0
        goto end;
194
0
    memcpy(&(bm->data[blen]), in, inl);
195
0
    ret = inl;
196
0
 end:
197
0
    return (ret);
198
0
}
199
200
static long mem_ctrl(BIO *b, int cmd, long num, void *ptr)
201
0
{
202
0
    long ret = 1;
203
0
    char **pptr;
204
205
0
    BUF_MEM *bm = (BUF_MEM *)b->ptr;
206
207
0
    switch (cmd) {
208
0
    case BIO_CTRL_RESET:
209
0
        if (bm->data != NULL) {
210
            /* For read only case reset to the start again */
211
0
            if (b->flags & BIO_FLAGS_MEM_RDONLY) {
212
0
                bm->data -= bm->max - bm->length;
213
0
                bm->length = bm->max;
214
0
            } else {
215
0
                memset(bm->data, 0, bm->max);
216
0
                bm->length = 0;
217
0
            }
218
0
        }
219
0
        break;
220
0
    case BIO_CTRL_EOF:
221
0
        ret = (long)(bm->length == 0);
222
0
        break;
223
0
    case BIO_C_SET_BUF_MEM_EOF_RETURN:
224
0
        b->num = (int)num;
225
0
        break;
226
0
    case BIO_CTRL_INFO:
227
0
        ret = (long)bm->length;
228
0
        if (ptr != NULL) {
229
0
            pptr = (char **)ptr;
230
0
            *pptr = (char *)&(bm->data[0]);
231
0
        }
232
0
        break;
233
0
    case BIO_C_SET_BUF_MEM:
234
0
        mem_free(b);
235
0
        b->shutdown = (int)num;
236
0
        b->ptr = ptr;
237
0
        break;
238
0
    case BIO_C_GET_BUF_MEM_PTR:
239
0
        if (ptr != NULL) {
240
0
            pptr = (char **)ptr;
241
0
            *pptr = (char *)bm;
242
0
        }
243
0
        break;
244
0
    case BIO_CTRL_GET_CLOSE:
245
0
        ret = (long)b->shutdown;
246
0
        break;
247
0
    case BIO_CTRL_SET_CLOSE:
248
0
        b->shutdown = (int)num;
249
0
        break;
250
251
0
    case BIO_CTRL_WPENDING:
252
0
        ret = 0L;
253
0
        break;
254
0
    case BIO_CTRL_PENDING:
255
0
        ret = (long)bm->length;
256
0
        break;
257
0
    case BIO_CTRL_DUP:
258
0
    case BIO_CTRL_FLUSH:
259
0
        ret = 1;
260
0
        break;
261
0
    case BIO_CTRL_PUSH:
262
0
    case BIO_CTRL_POP:
263
0
    default:
264
0
        ret = 0;
265
0
        break;
266
0
    }
267
0
    return (ret);
268
0
}
269
270
static int mem_gets(BIO *bp, char *buf, int size)
271
0
{
272
0
    int i, j;
273
0
    int ret = -1;
274
0
    char *p;
275
0
    BUF_MEM *bm = (BUF_MEM *)bp->ptr;
276
277
0
    BIO_clear_retry_flags(bp);
278
0
    j = bm->length;
279
0
    if ((size - 1) < j)
280
0
        j = size - 1;
281
0
    if (j <= 0) {
282
0
        *buf = '\0';
283
0
        return 0;
284
0
    }
285
0
    p = bm->data;
286
0
    for (i = 0; i < j; i++) {
287
0
        if (p[i] == '\n') {
288
0
            i++;
289
0
            break;
290
0
        }
291
0
    }
292
293
    /*
294
     * i is now the max num of bytes to copy, either j or up to
295
     * and including the first newline
296
     */
297
298
0
    i = mem_read(bp, buf, i);
299
0
    if (i > 0)
300
0
        buf[i] = '\0';
301
0
    ret = i;
302
0
    return (ret);
303
0
}
304
305
static int mem_puts(BIO *bp, const char *str)
306
0
{
307
0
    int n, ret;
308
309
0
    n = strlen(str);
310
0
    ret = mem_write(bp, str, n);
311
    /* memory semantics is that it will always work */
312
0
    return (ret);
313
0
}