Make links no longer needed.
[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 (or event log
61         under NT).
62
63 */
64
65 #if !defined(WIN32) || defined(WINNT)
66
67 #include <stdio.h>
68 #include <errno.h>
69
70 #ifndef WIN32
71 #include <syslog.h>
72 #endif
73
74 #include "cryptlib.h"
75 #include "buffer.h"
76 #include "err.h"
77
78 #ifndef NOPROTO
79 static int MS_CALLBACK slg_write(BIO *h,char *buf,int num);
80 static int MS_CALLBACK slg_puts(BIO *h,char *str);
81 static long MS_CALLBACK slg_ctrl(BIO *h,int cmd,long arg1,char *arg2);
82 static int MS_CALLBACK slg_new(BIO *h);
83 static int MS_CALLBACK slg_free(BIO *data);
84 #else
85 static int MS_CALLBACK slg_write();
86 static int MS_CALLBACK slg_puts();
87 static long MS_CALLBACK slg_ctrl();
88 static int MS_CALLBACK slg_new();
89 static int MS_CALLBACK slg_free();
90 #endif
91
92 static int xopenlog(BIO* bp, char* name, int level);
93 static int xcloselog(BIO* bp);
94
95 static BIO_METHOD methods_slg=
96         {
97         BIO_TYPE_MEM,"syslog",
98         slg_write,
99         NULL,
100         slg_puts,
101         NULL,
102         slg_ctrl,
103         slg_new,
104         slg_free,
105         };
106
107 BIO_METHOD *BIO_s_log()
108         {
109         return(&methods_slg);
110         }
111
112 static int MS_CALLBACK slg_new(bi)
113 BIO *bi;
114         {
115         bi->init=1;
116         bi->num=0;
117         bi->ptr=NULL;
118 #ifndef WIN32
119         xopenlog(bi, "application", LOG_DAEMON);
120 #else
121         xopenlog(bi, "application", 0);
122 #endif
123         return(1);
124         }
125
126 static int MS_CALLBACK slg_free(a)
127 BIO *a;
128         {
129         if (a == NULL) return(0);
130         xcloselog(a);
131         return(1);
132         }
133         
134 static int MS_CALLBACK slg_write(b,in,inl)
135 BIO *b;
136 char *in;
137 int inl;
138         {
139         int ret= inl;
140         char* buf= in;
141         char* pp;
142 #if defined(WIN32)
143         LPTSTR lpszStrings[1];
144         WORD evtype= EVENTLOG_ERROR_TYPE;
145 #else
146         int priority;
147 #endif
148
149         if((buf= (char *)Malloc(inl+ 1)) == NULL){
150                 return(0);
151         }
152         strncpy(buf, in, inl);
153         buf[inl]= '\0';
154 #if defined(WIN32)
155         if(strncmp(buf, "ERR ", 4) == 0){
156                 evtype= EVENTLOG_ERROR_TYPE;
157                 pp= buf+ 4;
158         }else if(strncmp(buf, "WAR ", 4) == 0){
159                 evtype= EVENTLOG_WARNING_TYPE;
160                 pp= buf+ 4;
161         }else if(strncmp(buf, "INF ", 4) == 0){
162                 evtype= EVENTLOG_INFORMATION_TYPE;
163                 pp= buf+ 4;
164         }else{
165                 evtype= EVENTLOG_ERROR_TYPE;
166                 pp= buf;
167         }
168         lpszStrings[0]= pp;
169
170         if(b->ptr)
171                 ReportEvent(b->ptr, evtype, 0, 1024, NULL, 1, 0,
172                                 lpszStrings, NULL);
173 #else
174         if(strncmp(buf, "ERR ", 4) == 0){
175                 priority= LOG_ERR;
176                 pp= buf+ 4;
177         }else if(strncmp(buf, "WAR ", 4) == 0){
178                 priority= LOG_WARNING;
179                 pp= buf+ 4;
180         }else if(strncmp(buf, "INF ", 4) == 0){
181                 priority= LOG_INFO;
182                 pp= buf+ 4;
183         }else{
184                 priority= LOG_ERR;
185                 pp= buf;
186         }
187
188         syslog(priority, "%s", pp);
189 #endif
190         Free(buf);
191         return(ret);
192         }
193
194 static long MS_CALLBACK slg_ctrl(b,cmd,num,ptr)
195 BIO *b;
196 int cmd;
197 long num;
198 char *ptr;
199         {
200         switch (cmd)
201                 {
202         case BIO_CTRL_SET:
203                 xcloselog(b);
204                 xopenlog(b, ptr, num);
205                 break;
206         default:
207                 break;
208                 }
209         return(0);
210         }
211
212 static int MS_CALLBACK slg_puts(bp,str)
213 BIO *bp;
214 char *str;
215         {
216         int n,ret;
217
218         n=strlen(str);
219         ret=slg_write(bp,str,n);
220         return(ret);
221         }
222
223 static int xopenlog(BIO* bp, char* name, int level)
224 {
225 #if defined(WIN32)
226         if((bp->ptr= (char *)RegisterEventSource(NULL, name)) == NULL){
227                 return(0);
228         }
229 #else
230         openlog(name, LOG_PID|LOG_CONS, level);
231 #endif
232         return(1);
233 }
234
235 static int xcloselog(BIO* bp)
236 {
237 #if defined(WIN32)
238         if(bp->ptr)
239                 DeregisterEventSource((HANDLE)(bp->ptr));
240         bp->ptr= NULL;
241 #else
242         closelog();
243 #endif
244         return(1);
245 }
246
247 #endif