-
Notifications
You must be signed in to change notification settings - Fork 3
/
airscan-trace.c
420 lines (355 loc) · 9.6 KB
/
airscan-trace.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
/* AirScan (a.k.a. eSCL) backend for SANE
*
* Copyright (C) 2019 and up by Alexander Pevzner ([email protected])
* See LICENSE for license terms and conditions
*
* Protocol Trace
*/
#include "airscan.h"
#include <limits.h>
#include <stdarg.h>
#include <string.h>
#include <unistd.h>
/* Trace file handle
*/
struct trace {
volatile unsigned int refcnt; /* Reference count */
FILE *log; /* Log file */
FILE *data; /* Data file */
unsigned int index; /* Message index */
};
/* TAR file hader
*/
typedef struct {
char name[100];
char mode[8];
char uid[8];
char gid[8];
char size[12];
char mtime[12];
char checksum[8];
char typeflag[1];
char linkname[100];
char magic[6];
char version[2];
char uname[32];
char gname[32];
char devmajor[8];
char devminor[8];
char prefix[155];
char pad[12];
} tar_header;
/* Name of the process' executable
*/
static const char *trace_program;
/* Full block of zero bytes
*/
static const char trace_zero_block[512];
/* Initialize protocol trace. Called at backend initialization
*/
SANE_Status
trace_init (void)
{
trace_program = os_progname();
if (trace_program == NULL) {
trace_program = "unknown";
}
return SANE_STATUS_GOOD;
}
/* Cleanup protocol trace. Called at backend unload
*/
void
trace_cleanup ()
{
}
/* Open protocol trace
*/
trace*
trace_open (const char *device_name)
{
trace *t;
char *path;
size_t len;
if (conf.dbg_trace == NULL) {
return NULL;
}
(void) os_mkdir(conf.dbg_trace, 0755);
t = mem_new(trace, 1);
t->refcnt = 1;
path = str_dup(conf.dbg_trace);
path = str_terminate(path, '/');
len = strlen(path);
path = str_append(path, trace_program);
path = str_append(path, "-");
path = str_append(path, device_name);
for (; path[len] != '\0'; len ++) {
switch (path[len]) {
case ' ':
case '/':
path[len] = '-';
break;
}
}
path = str_append(path, ".log");
t->log = fopen(path, "w");
path = str_resize(path, str_len(path) - 4);
path = str_append(path, ".tar");
t->data = fopen(path, "wb");
mem_free(path);
if (t->log != NULL && t->data != NULL) {
return t;
}
trace_unref(t);
return NULL;
}
/* Ref the trace
*/
trace*
trace_ref (trace *t)
{
if (t != NULL) {
__sync_fetch_and_add(&t->refcnt, 1);
}
return t;
}
/* Unref the trace. When trace is not longer in use, it will be closed
*/
void
trace_unref (trace *t)
{
if (t != NULL && (__sync_fetch_and_sub(&t->refcnt, 1) == 1)) {
if (t->log != NULL) {
fclose(t->log);
}
if (t->data != NULL) {
if (t->log != NULL) {
/* Normal close - write tar footer */
fwrite(trace_zero_block, sizeof(trace_zero_block), 1, t->data);
fwrite(trace_zero_block, sizeof(trace_zero_block), 1, t->data);
}
fclose(t->data);
}
mem_free(t);
}
}
/* http_query_foreach_request_header()/http_query_foreach_response_header()
* callback
*/
static void
trace_message_headers_foreach_callback (const char *name, const char *value,
void *ptr)
{
trace *t = ptr;
fprintf(t->log, "%s: %s\n", name, value);
}
/* Dump binary data. The data saved as a file into a .TAR archive.
* Returns name of file, where data was saved
*/
static void
trace_dump_data (trace *t, http_data *data)
{
tar_header hdr;
uint32_t chsum;
size_t i;
const char *ext;
log_assert(NULL, sizeof(hdr) == 512);
memset(&hdr, 0, sizeof(hdr));
/* Guess file extension */
ext = "";
if (!strncmp(data->content_type, "image/", 6)) {
ext = data->content_type + 6;
} else if (!strncmp(data->content_type, "application/octet-stream", 24)) {
ext = "dat";
} else if (!strncmp(data->content_type, "application/", 12)) {
ext = data->content_type + 12;
} else if (!strncmp(data->content_type, "text/", 5)) {
ext = data->content_type + 5;
}
if (!*ext) {
ext = "dat";
}
/* Make file name */
sprintf(hdr.name, "%8.8d.%s", t->index ++, ext);
/* Make tar header */
strcpy(hdr.mode, "644");
strcpy(hdr.uid, "0");
strcpy(hdr.gid, "0");
sprintf(hdr.size, "%lo", (unsigned long) data->size);
sprintf(hdr.mtime, "%llo", (long long) time(NULL));
hdr.typeflag[0] = '0';
strcpy(hdr.magic, "ustar");
memcpy(hdr.version, "00", 2);
strcpy(hdr.devmajor, "1");
strcpy(hdr.devminor, "1");
memset(hdr.checksum, ' ', sizeof(hdr.checksum));
chsum = 0;
for (i = 0; i < sizeof(hdr); i ++) {
chsum += ((char*) &hdr)[i];
}
sprintf(hdr.checksum, "%6.6o", chsum & 0777777);
/* Write header and file data */
fwrite(&hdr, sizeof(hdr), 1, t->data);
fwrite(data->bytes, data->size, 1, t->data);
/* Write padding */
i = data->size & (512-1);
if (i != 0) {
fwrite(trace_zero_block, 512 - i, 1, t->data);
}
/* Put a note into the log file */
fprintf(t->log, "%lu bytes of data saved as %s\n",
(unsigned long) data->size, hdr.name);
}
/* Dump text data. The data will be saved directly to the log file
*/
static void
trace_dump_text (trace *t, http_data *data, bool xml)
{
const char *d, *end = (char*) data->bytes + data->size;
int last = -1;
if (xml && xml_format(t->log, data->bytes, data->size)) {
return;
}
for (d = data->bytes; d < end; d ++) {
if (*d != '\r') {
last = *d;
putc(last, t->log);
}
}
if (last != '\n') {
putc('\n', t->log);
}
}
/* Dump message body
*/
void
trace_dump_body (trace *t, http_data *data)
{
if (t == NULL) {
return;
}
if (data->size == 0) {
return;
}
if (str_has_prefix(data->content_type, "text/") ||
str_has_prefix(data->content_type, "application/xml") ||
str_has_prefix(data->content_type, "application/soap+xml") ||
str_has_prefix(data->content_type, "application/xop+xml"))
{
trace_dump_text(t, data, strstr(data->content_type, "xml") != NULL);
} else {
trace_dump_data(t, data);
}
putc('\n', t->log);
}
/* Dump binary data (as hex dump)
* Each line is prefixed with the `prefix` character
*/
void
trace_hexdump (trace *t, char prefix, const void *data, size_t size)
{
const uint8_t *dp = data;
unsigned int off = 0;
char *buf;
if (t == NULL || !conf.dbg_hexdump) {
return;
}
buf = str_new();
while (size != 0) {
size_t av = size > 16 ? 16 : size;
unsigned int i;
str_trunc(buf);
buf = str_append_printf(buf, "%c %4.4x: ", prefix, off);
for(i = 0; i < 16; i ++) {
buf = str_append_printf(buf, i < av ? "%2.2x" : " ", dp[ i ]);
switch(i) {
case 3: case 11:
buf = str_append_c(buf, i < av ? ':' : ' ');
break;
case 7:
buf = str_append_c(buf, i < av ? '-' : ' ');
break;
default:
buf = str_append_c(buf, ' ');
}
}
buf = str_append(buf, " ");
for( i = 0; i < av; i ++ )
{
unsigned char c = dp[ i ];
buf = str_append_c(buf, safe_isprint( c ) ? c : '.' );
}
buf = str_append_c(buf, '\n');
fwrite(buf, str_len(buf), 1, t->log);
off += av;
dp += av;
size -= av;
}
mem_free(buf);
}
/* This hook is called on every http_query completion
*/
void
trace_http_query_hook (trace *t, http_query *q)
{
error err;
if (t != NULL) {
fprintf(t->log, "==============================\n");
/* Dump request */
fprintf(t->log, "%s %s\n", http_query_method(q),
http_uri_str(http_query_uri(q)));
http_query_foreach_request_header(q,
trace_message_headers_foreach_callback, t);
fprintf(t->log, "\n");
trace_dump_body(t, http_query_get_request_data(q));
/* Dump response */
err = http_query_transport_error(q);
if (err != NULL) {
fprintf(t->log, "Error: %s\n", ESTRING(err));
} else {
int mp_count;
fprintf(t->log, "Status: %d %s\n", http_query_status(q),
http_query_status_string(q));
http_query_foreach_response_header(q,
trace_message_headers_foreach_callback, t);
fprintf(t->log, "\n");
trace_dump_body(t, http_query_get_response_data(q));
mp_count = http_query_get_mp_response_count(q);
if (mp_count != 0) {
int i;
for (i = 0; i < mp_count; i ++) {
http_data *part = http_query_get_mp_response_data(q, i);
fprintf(t->log, "===== Part %d =====\n", i);
fprintf(t->log, "Content-Type: %s\n", part->content_type);
trace_dump_body(t, part);
}
}
}
fflush(t->log);
fflush(t->data);
}
}
/* Printf to the trace log
*/
void
trace_printf (trace *t, const char *fmt, ...)
{
if (t != NULL) {
va_list ap;
va_start(ap, fmt);
vfprintf(t->log, fmt, ap);
putc('\n', t->log);
fflush(t->log);
va_end(ap);
}
}
/* Note an error in trace log
*/
void
trace_error (trace *t, error err)
{
trace_printf(t, "---");
trace_printf(t, "%s", ESTRING(err));
trace_printf(t, "");
}
/* vim:ts=8:sw=4:et
*/