ReactOS 0.4.15-dev-7934-g1dc8d80
syslog.c File Reference
#include <stdio.h>
#include <string.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include "syslog.h"
Include dependency graph for syslog.c:

Go to the source code of this file.

Macros

#define SYSLOG_DGRAM_SIZE   1024
 

Functions

const charset_syslog_conf_dir (const char *dir)
 
static void init_logger_addr ()
 
void closelog ()
 
void openlog (char *ident, int option, int facility)
 
int setlogmask (int mask)
 
void syslog (int pri, char *fmt,...)
 
void vsyslog (int pri, char *fmt, va_list ap)
 

Variables

static const charsyslog_conf_dir = "."
 
static BOOL initialized = FALSE
 
static int log_mask = 0xFF
 
static charsyslog_ident
 
static int syslog_facility
 
static char str_pid [40]
 
static SOCKADDR_IN sa_logger
 
static SOCKET sock
 
static char local_hostname [MAX_COMPUTERNAME_LENGTH+1]
 
static char datagramm [SYSLOG_DGRAM_SIZE]
 
static int datagramm_size
 

Macro Definition Documentation

◆ SYSLOG_DGRAM_SIZE

#define SYSLOG_DGRAM_SIZE   1024

Definition at line 36 of file syslog.c.

Function Documentation

◆ closelog()

void closelog ( void  )

Definition at line 153 of file syslog.c.

154{
155 if( !initialized )
156 return;
157 closesocket( sock );
158 WSACleanup();
160}
#define FALSE
Definition: types.h:117
#define closesocket
Definition: ncftp.h:477
Definition: tcpcore.h:1455
static BOOL initialized
Definition: syslog.c:39
int PASCAL FAR WSACleanup(void)
Definition: startup.c:60

Referenced by openlog().

◆ init_logger_addr()

static void init_logger_addr ( )
static

Definition at line 70 of file syslog.c.

71{
72 char pathname[ FILENAME_MAX ];
73 char *p;
74 FILE *fd;
75 char host[256];
76 struct hostent * phe;
77
78 memset( &sa_logger, 0, sizeof(SOCKADDR_IN) );
80
81 if( '\\' == syslog_conf_dir[0] || '/' == syslog_conf_dir[0] || ':' == syslog_conf_dir[1] )
82 {
83 /* absolute path */
85 }
86 else
87 {
88 /* relative path */
89 char *q;
90
91 strcpy( pathname, __argv[0] );
92 p = strrchr( pathname, '\\' ) + 1;
93 q = strrchr( pathname, '/' ) + 1;
94 if( p < q )
95 *q = 0;
96 else if( p > q )
97 *p = 0;
98 else
99 pathname[0] = 0;
101 }
102 p = &pathname[ strlen( pathname ) - 1 ];
103 if( '\\' != *p && '/' != *p )
104 {
105 p++; *p = '/';
106 }
107 strcpy( ++p, "syslog.host" );
108
109 /* read destination host name */
110 fd = fopen( pathname, "r" );
111 if( !fd )
112 goto use_default;
113
114 if( NULL == fgets( host, sizeof(host), fd ) )
115 host[0] = 0;
116 else
117 {
118 p = strchr( host, '\n' );
119 if( p )
120 *p = 0;
121 p = strchr( host, '\r' );
122 if( p )
123 *p = 0;
124 }
125 fclose( fd );
126
127 p = strchr( host, ':' );
128 if( p )
129 *p++ = 0;
130
131 phe = gethostbyname( host );
132 if( !phe )
133 goto use_default;
134
135 memcpy( &sa_logger.sin_addr.s_addr, phe->h_addr, phe->h_length );
136
137 if( p )
138 sa_logger.sin_port = htons( (unsigned short) strtoul( p, NULL, 0 ) );
139 else
141 return;
142
143use_default:
144 sa_logger.sin_addr.S_un.S_addr = htonl( 0x7F000001 );
146}
char * strcat(char *DstString, const char *SrcString)
Definition: utclib.c:568
UINT32 strtoul(const char *String, char **Terminator, UINT32 Base)
Definition: utclib.c:696
ACPI_SIZE strlen(const char *String)
Definition: utclib.c:269
char * strcpy(char *DstString, const char *SrcString)
Definition: utclib.c:388
char * strchr(const char *String, int ch)
Definition: utclib.c:501
#define NULL
Definition: types.h:112
#define AF_INET
Definition: tcpip.h:117
PHOSTENT WSAAPI gethostbyname(IN const char FAR *name)
Definition: getxbyxx.c:221
GLdouble GLdouble GLdouble GLdouble q
Definition: gl.h:2063
GLfloat GLfloat p
Definition: glext.h:8902
_Check_return_ _CRTIMP FILE *__cdecl fopen(_In_z_ const char *_Filename, _In_z_ const char *_Mode)
#define FILENAME_MAX
Definition: stdio.h:64
_Check_return_opt_ _CRTIMP char *__cdecl fgets(_Out_writes_z_(_MaxCount) char *_Buf, _In_ int _MaxCount, _Inout_ FILE *_File)
_Check_return_opt_ _CRTIMP int __cdecl fclose(_Inout_ FILE *_File)
_CRTIMP char ** __argv
Definition: getargs.c:18
#define memcpy(s1, s2, n)
Definition: mkisofs.h:878
#define htons(x)
Definition: module.h:215
#define htonl(x)
Definition: module.h:214
char pathname[512]
Definition: util.h:13
_Check_return_ _CRTIMP _CONST_RETURN char *__cdecl strrchr(_In_z_ const char *_Str, _In_ int _Ch)
static int fd
Definition: io.c:51
#define memset(x, y, z)
Definition: compat.h:39
short h_length
Definition: winsock.h:137
struct in_addr sin_addr
Definition: winsock.h:512
short sin_family
Definition: winsock.h:510
u_short sin_port
Definition: winsock.h:511
static const char * syslog_conf_dir
Definition: syslog.c:22
static SOCKADDR_IN sa_logger
Definition: syslog.c:44
#define SYSLOG_PORT
Definition: syslog.h:163
char * host
Definition: whois.c:55

Referenced by openlog().

◆ openlog()

void openlog ( char ident,
int  option,
int  facility 
)

Definition at line 167 of file syslog.c.

168{
169 BOOL failed = TRUE, wsa_initialized = FALSE;
170 WSADATA wsd;
171 SOCKADDR_IN sa_local;
172 DWORD n;
173 int size;
174
175 if( initialized )
176 return;
177
178 syslog_facility = facility? facility : LOG_USER;
179
180 /* FIXME: should we reset logmask? */
181
182 if( option & LOG_PID )
183 snprintf( str_pid, sizeof(str_pid), "[%lu]", GetCurrentProcessId() );
184 else
185 str_pid[0] = 0;
186
187 /* FIXME: handle other options */
188
189 n = sizeof(local_hostname);
191 goto done;
192
194 if( WSAStartup( MAKEWORD( 2, 2 ), &wsd ) )
195 goto done;
196 wsa_initialized = TRUE;
197
199
200 for( n = 0;; n++ )
201 {
202 sock = socket( AF_INET, SOCK_DGRAM, 0 );
203 if( INVALID_SOCKET == sock )
204 goto done;
205
206 memset( &sa_local, 0, sizeof(SOCKADDR_IN) );
207 sa_local.sin_family = AF_INET;
208 if( bind( sock, (SOCKADDR*) &sa_local, sizeof(SOCKADDR_IN) ) == 0 )
209 break;
210 closesocket( sock );
212 if( n == 100 )
213 goto done;
214 Sleep(0);
215 }
216
217 /* get size of datagramm */
218 size = sizeof(datagramm_size);
220 goto done;
221 if( datagramm_size - strlen(local_hostname) - (ident? strlen(ident) : 0) < 64 )
222 goto done;
223 if( datagramm_size > sizeof(datagramm) )
224 datagramm_size = sizeof(datagramm);
225
226 if( atexit( closelog ) )
227 goto done;
228
230 syslog_facility = facility;
231 failed = FALSE;
232
233done:
234 if( failed )
235 {
237 if( wsa_initialized ) WSACleanup();
238 }
239 initialized = !failed;
240}
static WSADATA wsd
Definition: adapter.c:10
#define TRUE
Definition: types.h:120
INT WINAPI WSAStartup(IN WORD wVersionRequested, OUT LPWSADATA lpWSAData)
Definition: startup.c:113
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLsizeiptr size
Definition: glext.h:5919
GLdouble n
Definition: glext.h:7729
int __cdecl atexit(void(__cdecl *)(void))
Definition: atonexit.c:97
INT WSAAPI getsockopt(IN SOCKET s, IN INT level, IN INT optname, OUT CHAR FAR *optval, IN OUT INT FAR *optlen)
Definition: sockctrl.c:271
INT WSAAPI bind(IN SOCKET s, IN CONST struct sockaddr *name, IN INT namelen)
Definition: socklife.c:36
SOCKET WSAAPI socket(IN INT af, IN INT type, IN INT protocol)
Definition: socklife.c:143
Definition: getopt.h:109
VOID WINAPI DECLSPEC_HOTPATCH Sleep(IN DWORD dwMilliseconds)
Definition: synch.c:790
void closelog()
Definition: syslog.c:153
static int syslog_facility
Definition: syslog.c:42
static char str_pid[40]
Definition: syslog.c:43
static char local_hostname[MAX_COMPUTERNAME_LENGTH+1]
Definition: syslog.c:46
static void init_logger_addr()
Definition: syslog.c:70
static char datagramm[SYSLOG_DGRAM_SIZE]
Definition: syslog.c:47
static char * syslog_ident
Definition: syslog.c:41
static int datagramm_size
Definition: syslog.c:48
#define LOG_PID
Definition: syslog.h:156
#define LOG_USER
Definition: syslog.h:88
#define MAKEWORD(a, b)
Definition: typedefs.h:248
DWORD WINAPI GetCurrentProcessId(void)
Definition: proc.c:1158
#define GetComputerName
Definition: winbase.h:3800
_In_ ULONG _In_ ULONG_PTR ident
Definition: winddi.h:3994
#define INVALID_SOCKET
Definition: winsock.h:332
#define SOCK_DGRAM
Definition: winsock.h:336
#define SOL_SOCKET
Definition: winsock.h:398
#define snprintf
Definition: wintirpc.h:48
#define SO_MAX_MSG_SIZE
Definition: ws2def.h:119

Referenced by vsyslog().

◆ set_syslog_conf_dir()

const char * set_syslog_conf_dir ( const char dir)

Definition at line 55 of file syslog.c.

56{
57 const char *ret = syslog_conf_dir;
59 return ret;
60}
unsigned int dir
Definition: maze.c:112
int ret

◆ setlogmask()

int setlogmask ( int  mask)

Definition at line 247 of file syslog.c.

248{
249 int ret = log_mask;
250
251 if( mask )
252 log_mask = mask;
253 return ret;
254}
GLenum GLint GLuint mask
Definition: glext.h:6028
static int log_mask
Definition: syslog.c:40

◆ syslog()

void syslog ( int  pri,
char fmt,
  ... 
)

Definition at line 261 of file syslog.c.

262{
263 va_list ap;
264
265 va_start( ap, fmt );
266 vsyslog( pri, fmt, ap );
267 va_end( ap );
268}
char * va_list
Definition: acmsvcex.h:78
#define va_end(ap)
Definition: acmsvcex.h:90
#define va_start(ap, A)
Definition: acmsvcex.h:91
Definition: dsound.c:943
void vsyslog(int pri, char *fmt, va_list ap)
Definition: syslog.c:275
void int int ULONGLONG int va_list * ap
Definition: winesup.h:36

◆ vsyslog()

void vsyslog ( int  pri,
char fmt,
va_list  ap 
)

Definition at line 275 of file syslog.c.

276{
277 static char *month[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
278 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
279 SYSTEMTIME stm;
280 int len;
281 char *p;
282
283 if( !(LOG_MASK( LOG_PRI( pri )) & log_mask) )
284 return;
285
286 openlog( NULL, 0, pri & LOG_FACMASK );
287 if( !initialized )
288 return;
289
290 if( !(pri & LOG_FACMASK) )
291 pri |= syslog_facility;
292
293 GetLocalTime( &stm );
294 len = sprintf( datagramm, "<%d>%s %2d %02d:%02d:%02d %s %s%s: ",
295 pri,
296 month[ stm.wMonth - 1 ], stm.wDay, stm.wHour, stm.wMinute, stm.wSecond,
299 p = strchr( datagramm, '\n' );
300 if( p )
301 *p = 0;
302 p = strchr( datagramm, '\r' );
303 if( p )
304 *p = 0;
305
307}
VOID WINAPI GetLocalTime(OUT LPSYSTEMTIME lpSystemTime)
Definition: time.c:286
static const WCHAR month[12][4]
Definition: session.c:2150
INT WSAAPI sendto(IN SOCKET s, IN CONST CHAR FAR *buf, IN INT len, IN INT flags, IN CONST struct sockaddr *to, IN INT tolen)
Definition: send.c:82
GLenum GLsizei len
Definition: glext.h:6722
#define sprintf(buf, format,...)
Definition: sprintf.c:55
WORD wMonth
Definition: winbase.h:906
WORD wHour
Definition: winbase.h:909
WORD wSecond
Definition: winbase.h:911
WORD wMinute
Definition: winbase.h:910
WORD wDay
Definition: winbase.h:908
void openlog(char *ident, int option, int facility)
Definition: syslog.c:167
#define LOG_FACMASK
Definition: syslog.h:111
#define LOG_MASK(pri)
Definition: syslog.h:147
#define LOG_PRI(p)
Definition: syslog.h:56
#define vsnprintf
Definition: tif_win32.c:406

Referenced by syslog().

Variable Documentation

◆ datagramm

char datagramm[SYSLOG_DGRAM_SIZE]
static

Definition at line 47 of file syslog.c.

Referenced by openlog(), and vsyslog().

◆ datagramm_size

int datagramm_size
static

Definition at line 48 of file syslog.c.

Referenced by openlog(), and vsyslog().

◆ initialized

◆ local_hostname

char local_hostname[MAX_COMPUTERNAME_LENGTH+1]
static

Definition at line 46 of file syslog.c.

Referenced by openlog(), and vsyslog().

◆ log_mask

int log_mask = 0xFF
static

Definition at line 40 of file syslog.c.

Referenced by setlogmask(), and vsyslog().

◆ sa_logger

SOCKADDR_IN sa_logger
static

Definition at line 44 of file syslog.c.

Referenced by init_logger_addr(), and vsyslog().

◆ sock

SOCKET sock
static

Definition at line 45 of file syslog.c.

◆ str_pid

char str_pid[40]
static

Definition at line 43 of file syslog.c.

Referenced by openlog(), and vsyslog().

◆ syslog_conf_dir

const char* syslog_conf_dir = "."
static

Definition at line 22 of file syslog.c.

Referenced by init_logger_addr(), and set_syslog_conf_dir().

◆ syslog_facility

int syslog_facility
static

Definition at line 42 of file syslog.c.

Referenced by openlog(), and vsyslog().

◆ syslog_ident

char* syslog_ident
static

Definition at line 41 of file syslog.c.

Referenced by openlog(), and vsyslog().