1 /* crypto/bio/bss_log.c */
2 /* ====================================================================
3 * Copyright (c) 1999 The OpenSSL Project. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
31 * 6. Redistributions of any form whatsoever must retain the following
33 * "This product includes software developed by the OpenSSL Project
34 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
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 * ====================================================================
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).
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).
71 #elif defined(VMS) || defined(__VMS)
74 # include <lib$routines.h>
76 #elif defined(__ultrix)
77 # include <sys/syslog.h>
78 #elif !defined(MSDOS) /* Unix */
83 #include <openssl/buffer.h>
84 #include <openssl/err.h>
98 #define LOG_DAEMON (3<<3)
100 /* On VMS, we don't really care about these, but we need them to compile */
105 #define LOG_WARNING 4
110 #define LOG_DAEMON OPC$M_NM_NTWORK
113 static int MS_CALLBACK slg_write(BIO *h,char *buf,int num);
114 static int MS_CALLBACK slg_puts(BIO *h,char *str);
115 static long MS_CALLBACK slg_ctrl(BIO *h,int cmd,long arg1,char *arg2);
116 static int MS_CALLBACK slg_new(BIO *h);
117 static int MS_CALLBACK slg_free(BIO *data);
118 static void xopenlog(BIO* bp, const char* name, int level);
119 static void xsyslog(BIO* bp, int priority, const char* string);
120 static void xcloselog(BIO* bp);
122 static BIO_METHOD methods_slg=
124 BIO_TYPE_MEM,"syslog",
135 BIO_METHOD *BIO_s_log(void)
137 return(&methods_slg);
140 static int MS_CALLBACK slg_new(BIO *bi)
145 xopenlog(bi, "application", LOG_DAEMON);
149 static int MS_CALLBACK slg_free(BIO *a)
151 if (a == NULL) return(0);
156 static int MS_CALLBACK slg_write(BIO *b, char *in, int inl)
163 if((buf= (char *)Malloc(inl+ 1)) == NULL){
166 strncpy(buf, in, inl);
169 if(strncmp(buf, "ERR ", 4) == 0){
172 }else if(strncmp(buf, "WAR ", 4) == 0){
173 priority= LOG_WARNING;
175 }else if(strncmp(buf, "INF ", 4) == 0){
183 xsyslog(b, priority, pp);
189 static long MS_CALLBACK slg_ctrl(BIO *b, int cmd, long num, char *ptr)
195 xopenlog(b, ptr, num);
203 static int MS_CALLBACK slg_puts(BIO *bp, char *str)
208 ret=slg_write(bp,str,n);
214 static void xopenlog(BIO* bp, const char* name, int level)
216 bp->ptr= (char *)RegisterEventSource(NULL, name);
219 static void xsyslog(BIO *bp, int priority, const char *string)
221 LPCSTR lpszStrings[2];
222 WORD evtype= EVENTLOG_ERROR_TYPE;
229 evtype = EVENTLOG_ERROR_TYPE;
232 evtype = EVENTLOG_WARNING_TYPE;
235 evtype = EVENTLOG_INFORMATION_TYPE;
238 evtype = EVENTLOG_ERROR_TYPE;
242 sprintf(pidbuf, "[%d] ", pid);
243 lpszStrings[0] = pidbuf;
244 lpszStrings[1] = string;
247 ReportEvent(bp->ptr, evtype, 0, 1024, NULL, 2, 0,
251 static void xcloselog(BIO* bp)
254 DeregisterEventSource((HANDLE)(bp->ptr));
260 static int VMS_OPC_target = LOG_DAEMON;
262 static void xopenlog(BIO* bp, const char* name, int level)
264 VMS_OPC_target = level;
267 static void xsyslog(BIO *bp, int priority, const char *string)
269 struct dsc$descriptor_s opc_dsc;
270 struct opcdef *opcdef_p;
273 struct dsc$descriptor_s buf_dsc;
274 $DESCRIPTOR(fao_cmd, "!AZ: !AZ");
279 case LOG_EMERG: priority_tag = "Emergency"; break;
280 case LOG_ALERT: priority_tag = "Alert"; break;
281 case LOG_CRIT: priority_tag = "Critical"; break;
282 case LOG_ERR: priority_tag = "Error"; break;
283 case LOG_WARNING: priority_tag = "Warning"; break;
284 case LOG_NOTICE: priority_tag = "Notice"; break;
285 case LOG_INFO: priority_tag = "Info"; break;
286 case LOG_DEBUG: priority_tag = "DEBUG"; break;
289 buf_dsc.dsc$b_dtype = DSC$K_DTYPE_T;
290 buf_dsc.dsc$b_class = DSC$K_CLASS_S;
291 buf_dsc.dsc$a_pointer = buf;
292 buf_dsc.dsc$w_length = sizeof(buf) - 1;
294 lib$sys_fao(&fao_cmd, &len, &buf_dsc, priority_tag, string);
296 /* we know there's an 8 byte header. That's documented */
297 opcdef_p = (struct opcdef *) Malloc(8 + len);
298 opcdef_p->opc$b_ms_type = OPC$_RQ_RQST;
299 memcpy(opcdef_p->opc$z_ms_target_classes, &VMS_OPC_target, 3);
300 opcdef_p->opc$l_ms_rqstid = 0;
301 memcpy(&opcdef_p->opc$l_ms_text, buf, len);
303 opc_dsc.dsc$b_dtype = DSC$K_DTYPE_T;
304 opc_dsc.dsc$b_class = DSC$K_CLASS_S;
305 opc_dsc.dsc$a_pointer = (char *)opcdef_p;
306 opc_dsc.dsc$w_length = len + 8;
308 sys$sndopr(opc_dsc, 0);
313 static void xcloselog(BIO* bp)
319 static void xopenlog(BIO* bp, const char* name, int level)
321 openlog(name, LOG_PID|LOG_CONS, level);
324 static void xsyslog(BIO *bp, int priority, const char *string)
326 syslog(priority, "%s", string);
329 static void xcloselog(BIO* bp)
336 #endif /* NO_SYSLOG */