162e250f9baff0219d84151f84579c563f996a00
[openssl.git] / crypto / bio / bf_null.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 #include <stdio.h>
59 #include <errno.h>
60 #include "bio_lcl.h"
61 #include "internal/cryptlib.h"
62
63 /*
64  * BIO_put and BIO_get both add to the digest, BIO_gets returns the digest
65  */
66
67 static int nullf_write(BIO *h, const char *buf, int num);
68 static int nullf_read(BIO *h, char *buf, int size);
69 static int nullf_puts(BIO *h, const char *str);
70 static int nullf_gets(BIO *h, char *str, int size);
71 static long nullf_ctrl(BIO *h, int cmd, long arg1, void *arg2);
72 static int nullf_new(BIO *h);
73 static int nullf_free(BIO *data);
74 static long nullf_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp);
75 static const BIO_METHOD methods_nullf = {
76     BIO_TYPE_NULL_FILTER,
77     "NULL filter",
78     nullf_write,
79     nullf_read,
80     nullf_puts,
81     nullf_gets,
82     nullf_ctrl,
83     nullf_new,
84     nullf_free,
85     nullf_callback_ctrl,
86 };
87
88 const BIO_METHOD *BIO_f_null(void)
89 {
90     return (&methods_nullf);
91 }
92
93 static int nullf_new(BIO *bi)
94 {
95     bi->init = 1;
96     bi->ptr = NULL;
97     bi->flags = 0;
98     return (1);
99 }
100
101 static int nullf_free(BIO *a)
102 {
103     if (a == NULL)
104         return (0);
105     /*-
106     a->ptr=NULL;
107     a->init=0;
108     a->flags=0;
109     */
110     return (1);
111 }
112
113 static int nullf_read(BIO *b, char *out, int outl)
114 {
115     int ret = 0;
116
117     if (out == NULL)
118         return (0);
119     if (b->next_bio == NULL)
120         return (0);
121     ret = BIO_read(b->next_bio, out, outl);
122     BIO_clear_retry_flags(b);
123     BIO_copy_next_retry(b);
124     return (ret);
125 }
126
127 static int nullf_write(BIO *b, const char *in, int inl)
128 {
129     int ret = 0;
130
131     if ((in == NULL) || (inl <= 0))
132         return (0);
133     if (b->next_bio == NULL)
134         return (0);
135     ret = BIO_write(b->next_bio, in, inl);
136     BIO_clear_retry_flags(b);
137     BIO_copy_next_retry(b);
138     return (ret);
139 }
140
141 static long nullf_ctrl(BIO *b, int cmd, long num, void *ptr)
142 {
143     long ret;
144
145     if (b->next_bio == NULL)
146         return (0);
147     switch (cmd) {
148     case BIO_C_DO_STATE_MACHINE:
149         BIO_clear_retry_flags(b);
150         ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
151         BIO_copy_next_retry(b);
152         break;
153     case BIO_CTRL_DUP:
154         ret = 0L;
155         break;
156     default:
157         ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
158     }
159     return (ret);
160 }
161
162 static long nullf_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
163 {
164     long ret = 1;
165
166     if (b->next_bio == NULL)
167         return (0);
168     switch (cmd) {
169     default:
170         ret = BIO_callback_ctrl(b->next_bio, cmd, fp);
171         break;
172     }
173     return (ret);
174 }
175
176 static int nullf_gets(BIO *bp, char *buf, int size)
177 {
178     if (bp->next_bio == NULL)
179         return (0);
180     return (BIO_gets(bp->next_bio, buf, size));
181 }
182
183 static int nullf_puts(BIO *bp, const char *str)
184 {
185     if (bp->next_bio == NULL)
186         return (0);
187     return (BIO_puts(bp->next_bio, str));
188 }