Make bss_log.c a bit more readable, and implement it for VMS as well.
[openssl.git] / crypto / bio / bss_log.c
1 /* crypto/bio/bss_log.c */
2 /* ====================================================================
3  * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer. 
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in
14  *    the documentation and/or other materials provided with the
15  *    distribution.
16  *
17  * 3. All advertising materials mentioning features or use of this
18  *    software must display the following acknowledgment:
19  *    "This product includes software developed by the OpenSSL Project
20  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
21  *
22  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
23  *    endorse or promote products derived from this software without
24  *    prior written permission. For written permission, please contact
25  *    licensing@OpenSSL.org.
26  *
27  * 5. Products derived from this software may not be called "OpenSSL"
28  *    nor may "OpenSSL" appear in their names without prior written
29  *    permission of the OpenSSL Project.
30  *
31  * 6. Redistributions of any form whatsoever must retain the following
32  *    acknowledgment:
33  *    "This product includes software developed by the OpenSSL Project
34  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
35  *
36  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
37  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
40  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
42  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
45  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
47  * OF THE POSSIBILITY OF SUCH DAMAGE.
48  * ====================================================================
49  *
50  * This product includes cryptographic software written by Eric Young
51  * (eay@cryptsoft.com).  This product includes software written by Tim
52  * Hudson (tjh@cryptsoft.com).
53  *
54  */
55
56 /*
57         Why BIO_s_log?
58
59         BIO_s_log is useful for system daemons (or services under NT).
60         It is one-way BIO, it sends all stuff to syslogd (on system that
61         commonly use that), or event log (on NT), or OPCOM (on OpenVMS).
62
63 */
64
65
66 #include <stdio.h>
67 #include <errno.h>
68
69 #if defined(WIN32)
70 #include <process.h>
71 #elif defined(VMS) || defined(__VMS)
72 #include <opcdef.h>
73 #include <descrip.h>
74 #elif defined(__ultrix)
75 #include <sys/syslog.h>
76 #else
77 #include <syslog.h>
78 #endif
79
80 #include "cryptlib.h"
81 #include <openssl/buffer.h>
82 #include <openssl/err.h>
83 #ifndef NO_SYSLOG
84
85 #if defined(WIN32)
86 #define LOG_EMERG       0
87 #define LOG_ALERT       1
88 #define LOG_CRIT        2
89 #define LOG_ERR         3
90 #define LOG_WARNING     4
91 #define LOG_NOTICE      5
92 #define LOG_INFO        6
93 #define LOG_DEBUG       7
94
95 #define LOG_DAEMON      (3<<3)
96 #elif defined(VMS)
97 /* On VMS, we don't really care about these, but we need them to compile */
98 #define LOG_EMERG       0
99 #define LOG_ALERT       1
100 #define LOG_CRIT        2
101 #define LOG_ERR         3
102 #define LOG_WARNING     4
103 #define LOG_NOTICE      5
104 #define LOG_INFO        6
105 #define LOG_DEBUG       7
106
107 #define LOG_DAEMON      OPC$M_NM_NTWORK
108 #endif
109
110 static int MS_CALLBACK slg_write(BIO *h,char *buf,int num);
111 static int MS_CALLBACK slg_puts(BIO *h,char *str);
112 static long MS_CALLBACK slg_ctrl(BIO *h,int cmd,long arg1,char *arg2);
113 static int MS_CALLBACK slg_new(BIO *h);
114 static int MS_CALLBACK slg_free(BIO *data);
115 static void xopenlog(BIO* bp, const char* name, int level);
116 static void xsyslog(BIO* bp, int priority, const char* string);
117 static void xcloselog(BIO* bp);
118
119 static BIO_METHOD methods_slg=
120         {
121         BIO_TYPE_MEM,"syslog",
122         slg_write,
123         NULL,
124         slg_puts,
125         NULL,
126         slg_ctrl,
127         slg_new,
128         slg_free,
129         NULL,
130         };
131
132 BIO_METHOD *BIO_s_log(void)
133         {
134         return(&methods_slg);
135         }
136
137 static int MS_CALLBACK slg_new(BIO *bi)
138         {
139         bi->init=1;
140         bi->num=0;
141         bi->ptr=NULL;
142         xopenlog(bi, "application", LOG_DAEMON);
143         return(1);
144         }
145
146 static int MS_CALLBACK slg_free(BIO *a)
147         {
148         if (a == NULL) return(0);
149         xcloselog(a);
150         return(1);
151         }
152         
153 static int MS_CALLBACK slg_write(BIO *b, char *in, int inl)
154         {
155         int ret= inl;
156         char* buf= in;
157         char* pp;
158         int priority;
159
160         if((buf= (char *)Malloc(inl+ 1)) == NULL){
161                 return(0);
162         }
163         strncpy(buf, in, inl);
164         buf[inl]= '\0';
165
166         if(strncmp(buf, "ERR ", 4) == 0){
167                 priority= LOG_ERR;
168                 pp= buf+ 4;
169         }else if(strncmp(buf, "WAR ", 4) == 0){
170                 priority= LOG_WARNING;
171                 pp= buf+ 4;
172         }else if(strncmp(buf, "INF ", 4) == 0){
173                 priority= LOG_INFO;
174                 pp= buf+ 4;
175         }else{
176                 priority= LOG_ERR;
177                 pp= buf;
178         }
179
180         xsyslog(b, priority, pp);
181
182         Free(buf);
183         return(ret);
184         }
185
186 static long MS_CALLBACK slg_ctrl(BIO *b, int cmd, long num, char *ptr)
187         {
188         switch (cmd)
189                 {
190         case BIO_CTRL_SET:
191                 xcloselog(b);
192                 xopenlog(b, ptr, num);
193                 break;
194         default:
195                 break;
196                 }
197         return(0);
198         }
199
200 static int MS_CALLBACK slg_puts(BIO *bp, char *str)
201         {
202         int n,ret;
203
204         n=strlen(str);
205         ret=slg_write(bp,str,n);
206         return(ret);
207         }
208
209 #if defined(WIN32)
210
211 static void xopenlog(BIO* bp, const char* name, int level)
212 {
213         if((bp->ptr= (char *)RegisterEventSource(NULL, name)) == NULL){
214                 return(0);
215         }
216         return(1);
217 }
218
219 static void xsyslog(BIO *bp, int priority, const char *string)
220 {
221         LPCSTR lpszStrings[2];
222         WORD evtype= EVENTLOG_ERROR_TYPE;
223         int pid = _getpid();
224         char pidbuf[20];
225
226         switch (priority)
227                 {
228         case LOG_ERR:
229                 evtype = EVENTLOG_ERROR_TYPE;
230                 break;
231         case LOG_WARNING:
232                 evtype = EVENTLOG_WARNING_TYPE;
233                 break;
234         case LOG_INFO:
235                 evtype = EVENTLOG_INFORMATION_TYPE;
236                 break;
237         default:
238                 evtype = EVENTLOG_ERROR_TYPE;
239                 break;
240                 }
241
242         sprintf(pidbuf, "[%d] ", pid);
243         lpszStrings[0] = pidbuf;
244         lpszStrings[1] = pp;
245
246         if(bp->ptr)
247                 ReportEvent(bp->ptr, evtype, 0, 1024, NULL, 2, 0,
248                                 lpszStrings, NULL);
249         return 1;
250 }
251         
252 static void xcloselog(BIO* bp)
253 {
254         if(bp->ptr)
255                 DeregisterEventSource((HANDLE)(bp->ptr));
256         bp->ptr= NULL;
257         return(1);
258 }
259
260 #elif defined(VMS)
261
262 static int VMS_OPC_target = OPC$M_NM_NTWORK;
263
264 static void xopenlog(BIO* bp, const char* name, int level)
265 {
266         VMS_OPC_target = level; 
267 }
268
269 statis void xsyslog(BIO *bp, int priority, const char *string)
270 {
271         struct descriptor_s opc_dsc;
272         struct opcdef *opcdef_p;
273         char buf[10240];
274         unsigned int len;
275         $DESCRIPTOR(buf_dsc, buf);
276         $DESCRIPTOR(fao_cmd, "!AZ");
277
278         lib$sys_fao(&fao_cmd, &len, &buf_dsc, s);
279
280         /* we knoe there's an 8 byte header.  That's documented */
281         opcdef_p = (struct opcdef *) Malloc(8 + strlen(s));
282         opcdef_p->opc$b_ms_type = OPC$_RQ_RQST;
283         memcpy(opcdef_p->opc$b_ms_target, &priority, 3);
284         opcdef_p->opc$l_ms_rqstid = 0;
285         memcpy(&opcdef_p->opc$l_ms_text, buf, len);
286
287         opc_dsc.dsc$b_dtype = DSC$K_DTYPE_T;
288         opc_dsc.dsc$b_class = DSC$K_CLASS_S;
289         opc_dsc.dsc$a_pointer = opcdef_p;
290         opc_dsc.dsc$w_length = len + 8;
291
292         sys$sndopc(opc_dsc, 0);
293
294         Free(opcdef_p);
295 }
296
297 static void xcloselog(BIO* bp)
298 {
299 }
300
301 #else
302
303 static void xopenlog(BIO* bp, const char* name, int level)
304 {
305         openlog(name, LOG_PID|LOG_CONS, level);
306 }
307
308 static void xsyslog(BIO *bp, int priority, const char *string)
309 {
310         syslog(priority, "%s", string);
311 }
312
313 static void xcloselog(BIO* bp)
314 {
315         closelog();
316 }
317
318 #endif
319
320 #endif