71 #if defined(OPENSSL_SYS_WINCE)
72 #elif defined(OPENSSL_SYS_WIN32)
73 #elif defined(OPENSSL_SYS_VMS)
76 # include <lib$routines.h>
79 # if __INITIAL_POINTER_SIZE && defined _ANSI_C_SOURCE
80 # if __INITIAL_POINTER_SIZE == 64
81 # pragma pointer_size save
82 # pragma pointer_size 32
83 void * _malloc32 (__size_t);
84 # pragma pointer_size restore
87 #elif defined(__ultrix)
88 # include <sys/syslog.h>
89 #elif defined(OPENSSL_SYS_NETWARE)
91 #elif (!defined(MSDOS) || defined(WATT32)) && !defined(OPENSSL_SYS_VXWORKS) && !defined(NO_SYSLOG)
100 #if defined(OPENSSL_SYS_WIN32)
105 #define LOG_WARNING 4
110 #define LOG_DAEMON (3<<3)
111 #elif defined(OPENSSL_SYS_VMS)
117 #define LOG_WARNING 4
122 #define LOG_DAEMON OPC$M_NM_NTWORK
127 static long MS_CALLBACK slg_ctrl(
BIO *
h,
int cmd,
long arg1,
void *arg2);
130 static void xopenlog(
BIO*
bp,
char* name,
int level);
131 static void xsyslog(
BIO*
bp,
int priority,
const char*
string);
132 static void xcloselog(
BIO*
bp);
149 return(&methods_slg);
157 xopenlog(bi,
"application", LOG_DAEMON);
163 if (a == NULL)
return(0);
182 { 6,
"PANIC ", LOG_EMERG },
183 { 6,
"EMERG ", LOG_EMERG },
184 { 4,
"EMR ", LOG_EMERG },
185 { 6,
"ALERT ", LOG_ALERT },
186 { 4,
"ALR ", LOG_ALERT },
187 { 5,
"CRIT ", LOG_CRIT },
188 { 4,
"CRI ", LOG_CRIT },
189 { 6,
"ERROR ", LOG_ERR },
190 { 4,
"ERR ", LOG_ERR },
191 { 8,
"WARNING ", LOG_WARNING },
192 { 5,
"WARN ", LOG_WARNING },
193 { 4,
"WAR ", LOG_WARNING },
194 { 7,
"NOTICE ", LOG_NOTICE },
195 { 5,
"NOTE ", LOG_NOTICE },
196 { 4,
"NOT ", LOG_NOTICE },
197 { 5,
"INFO ", LOG_INFO },
198 { 4,
"INF ", LOG_INFO },
199 { 6,
"DEBUG ", LOG_DEBUG },
200 { 4,
"DBG ", LOG_DEBUG },
207 strncpy(buf, in, inl);
211 while(strncmp(buf, mapping[i].str, mapping[i].strl) != 0) i++;
212 priority = mapping[i].log_level;
213 pp = buf + mapping[i].strl;
215 xsyslog(b, priority, pp);
227 xopenlog(b, ptr, num);
240 ret=slg_write(bp,str,n);
244 #if defined(OPENSSL_SYS_WIN32)
246 static void xopenlog(
BIO* bp,
char* name,
int level)
248 if (GetVersion() < 0x80000000)
249 bp->
ptr = RegisterEventSourceA(NULL,name);
254 static void xsyslog(
BIO *bp,
int priority,
const char *
string)
256 LPCSTR lpszStrings[2];
257 WORD evtype= EVENTLOG_ERROR_TYPE;
269 evtype = EVENTLOG_ERROR_TYPE;
272 evtype = EVENTLOG_WARNING_TYPE;
277 evtype = EVENTLOG_INFORMATION_TYPE;
281 evtype = EVENTLOG_ERROR_TYPE;
285 sprintf(pidbuf,
"[%u] ", GetCurrentProcessId());
286 lpszStrings[0] = pidbuf;
287 lpszStrings[1] = string;
289 ReportEventA(bp->
ptr, evtype, 0, 1024, NULL, 2, 0,
293 static void xcloselog(
BIO* bp)
296 DeregisterEventSource((HANDLE)(bp->
ptr));
300 #elif defined(OPENSSL_SYS_VMS)
302 static int VMS_OPC_target = LOG_DAEMON;
304 static void xopenlog(
BIO* bp,
char* name,
int level)
306 VMS_OPC_target = level;
309 static void xsyslog(
BIO *bp,
int priority,
const char *
string)
311 struct dsc$descriptor_s opc_dsc;
314 #if __INITIAL_POINTER_SIZE == 64
315 # pragma pointer_size save
316 # pragma pointer_size 32
317 # define OPCDEF_TYPE __char_ptr32
318 # define OPCDEF_MALLOC _malloc32
320 # define OPCDEF_TYPE char *
321 # define OPCDEF_MALLOC OPENSSL_malloc
324 struct opcdef *opcdef_p;
326 #if __INITIAL_POINTER_SIZE == 64
327 # pragma pointer_size restore
332 struct dsc$descriptor_s buf_dsc;
333 $DESCRIPTOR(fao_cmd,
"!AZ: !AZ");
338 case LOG_EMERG: priority_tag =
"Emergency";
break;
339 case LOG_ALERT: priority_tag =
"Alert";
break;
340 case LOG_CRIT: priority_tag =
"Critical";
break;
341 case LOG_ERR: priority_tag =
"Error";
break;
342 case LOG_WARNING: priority_tag =
"Warning";
break;
343 case LOG_NOTICE: priority_tag =
"Notice";
break;
344 case LOG_INFO: priority_tag =
"Info";
break;
345 case LOG_DEBUG: priority_tag =
"DEBUG";
break;
348 buf_dsc.dsc$b_dtype = DSC$K_DTYPE_T;
349 buf_dsc.dsc$b_class = DSC$K_CLASS_S;
350 buf_dsc.dsc$a_pointer = buf;
351 buf_dsc.dsc$w_length =
sizeof(buf) - 1;
353 lib$sys_fao(&fao_cmd, &len, &buf_dsc, priority_tag,
string);
356 opcdef_p = OPCDEF_MALLOC( 8+ len);
357 opcdef_p->opc$b_ms_type = OPC$_RQ_RQST;
358 memcpy(opcdef_p->opc$z_ms_target_classes, &VMS_OPC_target, 3);
359 opcdef_p->opc$l_ms_rqstid = 0;
360 memcpy(&opcdef_p->opc$l_ms_text, buf, len);
362 opc_dsc.dsc$b_dtype = DSC$K_DTYPE_T;
363 opc_dsc.dsc$b_class = DSC$K_CLASS_S;
364 opc_dsc.dsc$a_pointer = (OPCDEF_TYPE) opcdef_p;
365 opc_dsc.dsc$w_length = len + 8;
367 sys$sndopr(opc_dsc, 0);
372 static void xcloselog(
BIO* bp)
378 static void xopenlog(
BIO* bp,
char* name,
int level)
381 openlog(name, LOG_PID|LOG_CONS|LOG_NDELAY, level);
383 openlog(name, LOG_PID|LOG_CONS, level);
387 static void xsyslog(
BIO *bp,
int priority,
const char *
string)
389 syslog(priority,
"%s",
string);
392 static void xcloselog(
BIO* bp)