-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathlog.c
427 lines (359 loc) · 11.4 KB
/
log.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
/* log.c -- Guile-SSH logging procedures
*
* Copyright (C) 2014, 2015, 2016, 2017 Artyom V. Poptsov <poptsov.artyom@gmail.com>
*
* This file is part of Guile-SSH
*
* Guile-SSH is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* Guile-SSH is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#include <stdarg.h>
#include <libguile.h>
#include <libssh/libssh.h>
#include <libssh/callbacks.h>
#include <sys/time.h>
#include <time.h>
#include <stdio.h> /* DEBUG */
#include <unistd.h> /* DEBUG */
#include <execinfo.h>
#include <stdlib.h>
#include <stdio.h>
#include "log.h"
#include "error.h"
#include "common.h"
/* Log verbosity levels used by libssh sessions and servers. */
gssh_symbol_t log_verbosity[] = {
/* 0, No logging at all */
{ "nolog", SSH_LOG_NOLOG },
/* 1, Only rare and noteworthy events */
{ "rare", SSH_LOG_RARE },
/* 2, High level protocol information */
{ "protocol", SSH_LOG_PROTOCOL },
/* 3, Lower level protocol infomations, packet level */
{ "packet", SSH_LOG_PACKET },
/* 4, Every function path */
{ "functions", SSH_LOG_FUNCTIONS },
{ NULL, -1 }
};
/* Whether the default calback was set or not. */
static int is_logging_callback_set = 0;
/* A Scheme log printer. */
static SCM logging_callback = SCM_BOOL_F;
static SCM userdata = SCM_BOOL_F;
/* The libssh logging callback which calls Scheme callback procedure. */
void
libssh_logging_callback (int c_priority,
const char *c_function_name,
const char *c_message,
void *c_userdata)
{
SCM priority = scm_from_int (c_priority);
SCM function = scm_from_locale_string (c_function_name);
SCM message = scm_from_locale_string (c_message);
scm_call_4 (logging_callback, priority, function, message, userdata);
scm_remember_upto_here_1 (priority);
scm_remember_upto_here_1 (function);
scm_remember_upto_here_1 (message);
scm_remember_upto_here_1 (userdata);
}
/**
* Log a backtrace, with a FUNCTION_NAME attached.
*/
void
log_backtrace (const char* function_name)
{
enum {
/* Maximum number of stack frames that can be obtained. */
STACK_BUF_SZ = 20,
/* Maximum log message length. */
MESSAGE_BUF_SZ = 120
};
void *array[STACK_BUF_SZ];
char message[MESSAGE_BUF_SZ];
char **strings;
int32_t size, i;
size = backtrace (array, STACK_BUF_SZ);
strings = backtrace_symbols (array, size);
if (strings != NULL)
{
snprintf (message,
MESSAGE_BUF_SZ,
"Obtained %d stack frames:",
size);
libssh_logging_callback (SSH_LOG_NOLOG,
function_name,
message,
NULL);
fflush (stderr);
for (i = 0; i < size; i++)
{
snprintf (message,
MESSAGE_BUF_SZ,
"#%-2d %s",
i,
strings[i]);
libssh_logging_callback (SSH_LOG_NOLOG,
function_name,
message,
NULL);
fflush (stderr);
}
}
free (strings);
}
#define TBUF_SZ 64
#define DATE_BUF_SZ 128
static int
_get_current_timestring (char *buf, size_t len)
{
char tbuf[TBUF_SZ];
struct timeval tv;
struct tm *tm;
time_t t;
gettimeofday (&tv, NULL);
t = (time_t) tv.tv_sec;
tm = localtime (&t);
if (tm == NULL)
return -1;
strftime (tbuf, sizeof (tbuf) - 1, "%Y/%m/%d %H:%M:%S", tm);
snprintf (buf, len, "%s.%06ld", tbuf, (long) tv.tv_usec);
return 0;
}
SCM_DEFINE (guile_ssh_default_libssh_log_printer,
"%default-libssh-log-printer", 4, 0, 0,
(SCM priority, SCM function_name, SCM message, SCM user_data),
"")
{
char date[DATE_BUF_SZ] = {0};
int rc = _get_current_timestring (date, sizeof(date));
scm_puts ("[", scm_current_error_port ());
if (rc == 0)
{
scm_puts (date, scm_current_error_port ());
scm_puts (", ", scm_current_error_port ());
}
scm_display (priority, scm_current_error_port ());
scm_puts ("] ", scm_current_error_port ());
scm_display (message, scm_current_error_port ());
scm_newline (scm_current_error_port ());
scm_remember_upto_here_1 (priority);
scm_remember_upto_here_1 (function_name);
scm_remember_upto_here_1 (message);
scm_remember_upto_here_1 (user_data);
return SCM_UNDEFINED;
}
SCM_DEFINE (guile_ssh_set_logging_callback_x,
"set-logging-callback!", 1, 0, 0,
(SCM procedure),
"")
#define FUNC_NAME s_guile_ssh_set_logging_callback_x
{
SCM_ASSERT (scm_procedure_p (procedure), procedure, SCM_ARG1, FUNC_NAME);
if (! is_logging_callback_set)
{
int res = ssh_set_log_userdata (SCM_BOOL_F);
if (res != SSH_OK)
guile_ssh_error1 (FUNC_NAME, "Could not set userdata", procedure);
res = ssh_set_log_callback (&libssh_logging_callback);
if (res != SSH_OK)
guile_ssh_error1 (FUNC_NAME, "Could not setup logging", procedure);
is_logging_callback_set = 1;
}
logging_callback = procedure;
return SCM_UNDEFINED;
}
#undef FUNC_NAME
SCM_DEFINE (guile_ssh_get_logging_callback,
"current-logging-callback", 0, 0, 0,
(void),
"")
{
return logging_callback;
}
SCM_DEFINE (guile_ssh_set_log_useradata_x,
"set-log-userdata!", 1, 0, 0,
(SCM data),
"")
#define FUNC_NAME s_guile_ssh_set_log_useradata_x
{
userdata = data;
return SCM_UNDEFINED;
}
#undef FUNC_NAME
SCM_DEFINE (guile_ssh_get_log_userdata,
"get-log-userdata", 0, 0, 0,
(void),
"")
{
return userdata;
}
SCM_DEFINE (guile_ssh_write_log,
"%write-log", 3, 0, 0,
(SCM priority, SCM function_name, SCM message),
"\
Write a MESSAGE to the libssh log with the given PRIORITY. Return value is \n\
undefined. \
")
#define FUNC_NAME s_guile_ssh_write_log
{
const gssh_symbol_t *c_priority;
SCM_ASSERT (scm_symbol_p (priority), priority, SCM_ARG1, FUNC_NAME);
SCM_ASSERT (scm_string_p (function_name), function_name, SCM_ARG2, FUNC_NAME);
SCM_ASSERT (scm_string_p (message), message, SCM_ARG3, FUNC_NAME);
SCM userdata = guile_ssh_get_log_userdata ();
c_priority = gssh_symbol_from_scm (log_verbosity, priority);
if (! c_priority)
guile_ssh_error1 (FUNC_NAME, "Wrong priority level", priority);
if (c_priority->value > ssh_get_log_level ())
return SCM_UNDEFINED;
scm_call_4 (logging_callback,
scm_from_int (c_priority->value),
function_name,
message,
userdata);
scm_remember_upto_here_1 (priority);
scm_remember_upto_here_1 (function_name);
scm_remember_upto_here_1 (message);
scm_remember_upto_here_1 (userdata);
return SCM_UNDEFINED;
}
#undef FUNC_NAME
SCM_DEFINE (guile_ssh_set_log_verbosity_x,
"set-log-verbosity!", 1, 0, 0,
(SCM verbosity),
"\
Set the global log verbosity to a VERBOSITY. Throw `guile-ssh-error' on \
error. Return value is undefined.\
")
#define FUNC_NAME s_guile_ssh_set_log_verbosity_x
{
const gssh_symbol_t *opt = gssh_symbol_from_scm (log_verbosity, verbosity);
int res;
if (! opt)
guile_ssh_error1 (FUNC_NAME, "Wrong verbosity level", verbosity);
res = ssh_set_log_level (opt->value);
if (res == SSH_ERROR)
guile_ssh_error1 (FUNC_NAME, "Could not set log verbosity", verbosity);
return SCM_UNDEFINED;
}
#undef FUNC_NAME
SCM_DEFINE (guile_ssh_get_log_verbosity,
"get-log-verbosity", 0, 0, 0,
(void),
"\
Get global log verbosity value.\
")
{
return gssh_symbol_to_scm (log_verbosity, ssh_get_log_level ());
}
static void
_gssh_log (const char* c_prefix,
int c_priority,
const char* c_function_name,
const char* msg,
SCM args)
{
SCM prefix = scm_from_locale_string (c_prefix);
SCM message = scm_from_locale_string (msg);
SCM priority = scm_from_int (c_priority);
SCM function = scm_from_locale_string (c_function_name);
SCM str_obj = SCM_BOOL_F;
if (c_priority > ssh_get_log_level ())
return;
if (args != SCM_UNDEFINED)
{
str_obj = scm_object_to_string (args, SCM_UNDEFINED);
message = scm_string_append (scm_list_n (prefix,
scm_from_locale_string (" "),
message,
scm_from_locale_string (": "),
str_obj,
SCM_UNDEFINED));
}
else
{
message = scm_string_append (scm_list_n (prefix,
scm_from_locale_string (" "),
message,
SCM_UNDEFINED));
}
SCM userdata = guile_ssh_get_log_userdata ();
scm_call_4 (logging_callback,
priority,
function,
message,
userdata);
scm_remember_upto_here_1 (str_obj);
scm_remember_upto_here_1 (args);
scm_remember_upto_here_1 (prefix);
scm_remember_upto_here_1 (message);
scm_remember_upto_here_1 (function);
scm_remember_upto_here_1 (userdata);
}
/* Write an error MESSAGE along with ARGS to the libssh log. */
void
_gssh_log_error (const char* function_name, const char* msg, SCM args)
{
_gssh_log ("[GSSH ERROR]", SSH_LOG_NOLOG, function_name, msg, args);
}
void
_gssh_log_error_format (const char* function_name, SCM args, const char* fmt, ...)
{
va_list arg;
enum { MSG_SZ = 100 };
char msg[MSG_SZ];
va_start (arg, fmt);
vsnprintf (msg, MSG_SZ, fmt, arg);
va_end (arg);
_gssh_log_error(function_name, msg, args);
}
void
_gssh_log_warning (const char* function_name, const char* msg, SCM args)
{
_gssh_log ("[GSSH WARNING]", SSH_LOG_WARNING, function_name, msg, args);
}
#ifdef DEBUG
void
_gssh_log_debug (const char* function_name, const char* msg, SCM args)
{
char *c_str;
_gssh_log ("[GSSH DEBUG]", SSH_LOG_FUNCTIONS, function_name, msg, args);
}
void
_gssh_log_debug1 (const char* function_name, const char* msg)
{
_gssh_log ("[GSSH DEBUG]", SSH_LOG_FUNCTIONS, function_name, msg,
SCM_UNDEFINED);
}
void
_gssh_log_debug_format(const char* function_name, SCM args, const char* fmt, ...)
{
va_list arg;
enum { MSG_SZ = 100 };
char msg[MSG_SZ];
va_start (arg, fmt);
vsnprintf (msg, MSG_SZ, fmt, arg);
va_end (arg);
_gssh_log_debug(function_name, msg, args);
}
#else
#define _gssh_log_debug_format(function_name, args, fmt, ...)
#endif /* ifdef DEBUG */
/* Initialization */
void
init_log_func (void)
{
#include "log.x"
}
/* log.c ends here */