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
|
/*
* SCCS: @(#)trace.c 1.12 (98/08/28)
*
* UniSoft Ltd., London, England
*
* (C) Copyright 1992 X/Open Company Limited
*
* All rights reserved. No part of this source code may be reproduced,
* stored in a retrieval system, or transmitted, in any form or by any
* means, electronic, mechanical, photocopying, recording or otherwise,
* except as stated in the end-user licence agreement, without the prior
* permission of the copyright owners.
*
* X/Open and the 'X' symbol are trademarks of X/Open Company Limited in
* the UK and other countries.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/************************************************************************
SCCS: @(#)trace.c 1.12 98/08/28 TETware release 3.3
NAME: trace.c
PRODUCT: TETware
AUTHOR: Andrew Dingwall, UniSoft Ltd.
DATE CREATED: April 1992
DESCRIPTION:
trace subsystem functions
MODIFICATIONS:
Andrew Dingwall, UniSoft Ltd., January 1994
added timestamp to trace messages
Geoff Clare, UniSoft Ltd., August 1996
Changes for TETWare.
Andrew Dingwall, UniSoft Ltd., July 1997
Added tet_tfclear().
Added support the MT DLL version of the C runtime support library
on Win32 systems.
Andrew Dingwall, UniSoft Ltd., February 1998
Use TETware-specific macros to access threads functions and
data items.
Andrew Dingwall, UniSoft Ltd., July 1998
Added support for shared API libraries.
************************************************************************/
#ifndef NOTRACE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <time.h>
#include <sys/types.h>
# include <unistd.h>
#include "dtmac.h"
#include "trace.h"
#include "dtmsg.h"
#include "dtthr.h"
#include "error.h"
#include "globals.h"
#include "ltoa.h"
#include "dtetlib.h"
FILE *tet_tfp = NULL; /* trace file pointer */
/* the trace flags themselves */
TET_IMPORT int tet_Tbuf, tet_Ttcm;
int tet_Ttcc, tet_Ttrace, tet_Tscen, tet_Texec;
#ifndef TET_LITE /* -START-LITE-CUT- */
int tet_Tio, tet_Tloop, tet_Tserv, tet_Tsyncd, tet_Ttccd, tet_Txresd;
#endif /* !TET_LITE */ /* -END-LITE-CUT- */
/* trace flag cmd line identifiers and addresses */
struct tflags tet_tflags[] = {
{ 't', &tet_Ttrace, 0, 0 }, /* must be first */
{ 'b', &tet_Tbuf, 0, 0 },
{ 'c', &tet_Ttcm, 0, 0 },
{ 'g', &tet_Texec, 0, 0 },
{ 'm', &tet_Ttcc, 0, 0 },
{ 'p', &tet_Tscen, 0, 0 },
#ifndef TET_LITE /* -START-LITE-CUT- */
{ 'e', &tet_Tserv, 0, 0 },
{ 'i', &tet_Tio, 0, 0 },
{ 'l', &tet_Tloop, 0, 0 },
{ 's', &tet_Ttccd, 0, 0 },
{ 'x', &tet_Txresd, 0, 0 },
{ 'y', &tet_Tsyncd, 0, 0 }
#endif /* !TET_LITE */ /* -END-LITE-CUT- */
};
int tet_Ntflags = sizeof tet_tflags / sizeof tet_tflags[0];
/* map of trace flag cmd line system names to process types */
struct stype tet_stype[] = {
{ 'M', PT_MTCC },
{ 'S', PT_STCC },
{ 'C', PT_MTCM },
{ 'D', PT_STCM },
{ 'X', PT_XRESD },
{ 'Y', PT_SYNCD },
{ 'T', PT_STAND }
};
int tet_Nstype = sizeof tet_stype / sizeof tet_stype[0];
/* static function declarations */
static int tflagset PROTOLIST((char *, int));
/*
** tet_traceinit() - scan the argv for -T options and process them
**
** options can take one of the forms:
**
** -Txvalue
** -Tx value
** -TP,xvalue
** -TP,x value
**
** where x is a flag name and value is its value
** x can be "all" to set all flags to the given value
** more than one -T option may appear; the effect of -T options accumulate
** trace options are normally passed to exec'd processes as well
** if P is present, this restricts the passing of the flag value to
** processes of type P; more than one P may be present
**
** a sequence -Tx4 -TP,x2 will cause flag x to have value 4 in the
** current process and value 2 in process P
** the sequence -TP,x4 -TQ,x2 will cause flag x to have value 2 in
** processes P and Q, unless P is the current process in which case its
** flag x will have value 4
**
** it is currently not possible to pass different values of the same flag
** to different processes
**
** disclaimer: the whole scheme is not perfect (or bug-free), but will
** probably do what you want if you are persistent enough!
*/
TET_IMPORT void tet_traceinit(argc, argv)
register int argc;
register char **argv;
{
register struct tflags *tp;
register int value;
register long sys;
while (++argv, --argc > 0)
if (**argv == '-' && *(*argv + 1) == 'T') {
TRACE2(tet_Ttrace, 10, "tet_traceinit: arg = \"%s\"",
*argv);
value = argc > 1 ? atoi(*(argv + 1)) : 0;
if (tflagset(*argv + 2, value) > 0)
if (argc > 1) {
*(argv + 1) = *argv;
++argv;
--argc;
}
}
/* avoid exporting trace flag arguments to processes that don't
need them */
for (tp = tet_tflags; tp < &tet_tflags[tet_Ntflags]; tp++) {
if (tp->tf_value <= 0) {
tp->tf_sys = 0;
continue;
}
sys = 0;
if (
tp->tf_vp == &tet_Ttcc ||
tp->tf_vp == &tet_Tscen ||
tp->tf_vp == &tet_Texec
) {
TF_SET(sys, PT_MTCC);
}
else if (tp->tf_vp == &tet_Ttcm) {
TF_SET(sys, PT_MTCM);
TF_SET(sys, PT_STCM);
}
#ifndef TET_LITE /* -START-LITE-CUT- */
else if (tp->tf_vp == &tet_Tsyncd)
TF_SET(sys, PT_SYNCD);
else if (tp->tf_vp == &tet_Ttccd)
TF_SET(sys, PT_STCC);
else if (tp->tf_vp == &tet_Txresd)
TF_SET(sys, PT_XRESD);
#endif /* !TET_LITE */ /* -END-LITE-CUT- */
else
continue;
tp->tf_sys &= sys;
}
if (tet_Ttrace > 0)
tet_tftrace();
}
/*
** tet_tfclear() - clear all the trace flags (except tet_Ttrace)
*/
TET_IMPORT void tet_tfclear()
{
register struct tflags *tp;
TRACE1(tet_Ttrace, 10, "tet_tfclear(): clear trace flags");
for (tp = tet_tflags; tp < &tet_tflags[tet_Ntflags]; tp++) {
if (tp->tf_vp == &tet_Ttrace)
continue;
*tp->tf_vp = 0;
tp->tf_value = 0;
tp->tf_sys = 0L;
}
}
/*
** tflagset() - set value and inheretance for a flag
**
** return 0 if the flag value was part of arg
** or 1 if value (taken from *(argv + 1)) was used
*/
static int tflagset(arg, value)
char *arg;
int value;
{
register struct tflags *tp;
register struct stype *sp;
register char *p;
register int all, rc;
register long sys;
char buf[2];
buf[1] = '\0';
all = 1;
for (p = arg; *p; p++)
if (*p == ',') {
all = 0;
break;
}
if (all) {
p = arg;
sys = ~0;
}
else {
sys = 0;
for (p = arg; *p != ','; p++)
for (sp = tet_stype; sp < &tet_stype[tet_Nstype]; sp++)
if (*p == sp->st_name)
TF_SET(sys, sp->st_ptype);
p++;
}
all = strncmp(p, "all", 3) ? 0 : 1;
p += (all * 2);
if (*(p + 1)) {
value = atoi(p + 1);
rc = 0;
}
else
rc = 1;
for (tp = tet_tflags; tp < &tet_tflags[tet_Ntflags]; tp++) {
if (all || tp->tf_name == *p) {
buf[0] = tp->tf_name;
tp->tf_sys |= sys;
if (value > tp->tf_value) {
TRACE3(tet_Ttrace, 10,
"global trace flag %s = %s",
buf, tet_i2a(value));
tp->tf_value = value;
}
if (TF_ISSET(sys, tet_myptype) && value > *tp->tf_vp) {
TRACE3(tet_Ttrace, 10,
"local trace flag %s = %s",
buf, tet_i2a(value));
*tp->tf_vp = value;
}
}
if (!all && tp->tf_name == *p)
break;
}
if (!all && tp >= &tet_tflags[tet_Ntflags]) {
buf[0] = *p;
error(0, "unknown trace flag name", buf);
}
return(rc);
}
/*
** tet_tftrace() - print trace flag information
*/
void tet_tftrace()
{
register struct tflags *tp;
char name[2];
TRACE1(tet_Ttrace, 10, "trace flags:");
name[1] = '\0';
for (tp = tet_tflags; tp < &tet_tflags[tet_Ntflags]; tp++) {
name[0] = tp->tf_name;
TRACE5(tet_Ttrace, 10,
"name = '%s', lvalue = %s, gvalue = %s, sys = %s",
name, tet_i2a(*tp->tf_vp), tet_i2a(tp->tf_value),
tet_i2x(tp->tf_sys));
}
}
/*
** tet_trace() - print trace info to a file, opening it if necessary
*/
TET_IMPORT void tet_trace(const char *s1, const char *s2, const char *s3,
const char *s4, const char *s5, const char *s6)
{
register int save_errno;
time_t now;
register struct tm *tp;
save_errno = errno;
if (!tet_tfp)
tet_tfopen();
#ifndef TET_THREADS
(void) fprintf(tet_tfp, "%s (%ld)", tet_progname, (long) GETPID());
#else
(void) fprintf(tet_tfp, "%s (%ld.%ld)", tet_progname, (long) GETPID(),
(long) TET_THR_SELF());
#endif
if (tet_Ttrace > 0) {
now = time((time_t *) 0);
tp = localtime(&now);
if (tet_Ttrace > 1)
(void) fprintf(tet_tfp, " %d:%02d:%02d",
tp->tm_hour, tp->tm_min, tp->tm_sec);
else
(void) fprintf(tet_tfp, " %d:%02d",
tp->tm_min, tp->tm_sec);
}
(void) fprintf(tet_tfp, ": ");
(void) fprintf(tet_tfp, s1, s2, s3, s4, s5, s6);
(void) putc('\n', tet_tfp);
(void) fflush(tet_tfp);
errno = save_errno;
}
/*
** tet_tfopen() - open the trace file
*/
void tet_tfopen()
{
register char *p;
register int fd;
if (tet_tfp)
return;
if ((fd = FCNTL_F_DUPFD(FILENO(stderr), 2)) < 0)
fatal(errno, "can't dup", tet_i2a(FILENO(stderr)));
if (tet_fappend(fd) < 0 || tet_fioclex(fd) < 0)
fatal(0, "can't continue", (char *) 0);
if ((tet_tfp = FDOPEN(fd, "a")) == NULL)
fatal(errno, "fdopen failed on fd", tet_i2a(fd));
errno = 0;
if ((p = malloc(BUFSIZ)) == (char *) 0)
fatal(errno, "can't allocate buffer for trace file",
(char *) 0);
TRACE2(tet_Tbuf, 6, "allocate trace file stdio buffer = %s",
tet_i2x(p));
setbuf(tet_tfp, p);
}
#else
int tet_trace_c_not_used;
#endif /* !NOTRACE */
|