-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
439 lines (333 loc) · 13.9 KB
/
ChangeLog
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
428
429
430
431
432
433
434
435
436
437
438
439
-------------------------------------------------------------------------------
latrace 0.5.11
2011-07-28 Jiri Olsa <[email protected]>
* doc - update configuration file stuff
* config - add missing help for -N option
* 0.5.11 release changes
2011-07-07 Jiri Olsa <[email protected]>
* args - fix size_t printf compile warning
2011-06-21 Jiri Olsa <[email protected]>
* config - fixed memory leak
2011-06-15 Jiri Olsa <[email protected]>
* global_symbol fix - proper tree management
* make tracer return actual tracee status
* move all tests to scripts
* added following options
LIBS, LIBS_TO, LIBS_FROM, SYM, SYM_OMIT, SYM_BELOW, SYM_NOEXIT
* automated tests for LIBS*/SYM*
* args - adding support to display string pointer and length,
ARGS_STRING_POINTER_LENGTH option
(contributed by Dr. David Alan Gilbert <[email protected]>)
2011-06-02 Jiri Olsa <[email protected]>
* adding large file support
2011-05-30 Jiri Olsa <[email protected]>
* fixed bug in tracer waiting code
(do not exit the loop prematurely)
* reading the -N config file immediatelly within
args processing
2011-05-25 Jiri Olsa <[email protected]>
* adding SIGTERM/SIGINT handlers,
refactoring lt_run to check the latrace got killed
* adding tests for latrace termination
* args - replacing destination strings with void pointers
* tty output - move fd to the config struct
2011-05-24 Jiri Olsa <[email protected]>
* args - use isprint to decide whether to print the character,
force test.sh to use bash,
enable tests for ARM architecture
(contributed by Dr. David Alan Gilbert <[email protected]>)
* fix test_[char|short|int|long] tests
* test_long - separate 32/64 versions
2011-05-13 Jiri Olsa <[email protected]>
* build fix for ARM
(contributed by Dr. David Alan Gilbert <[email protected]>)
* fixed errors discovered by cppcheck
2011-05-05 Jiri Olsa <[email protected]>
* adding OUTPUT_TTY config file option
* disabling connection between -R and -q options
2011-04-20 Jiri Olsa <[email protected]>
* prevent gcc warning with single printf like arg passing
* adding automated test support, so far for x86 and x86_64,
others are disabled. From this time on, I'll try to force
addition of automated test for each fix/feature.. ;)
2011-04-16 Jiri Olsa <[email protected]>
* fix display of char arguments
* add threads fifo management to special directory
so the notification is not affected by other files
2011-04-06 Jiri Olsa <[email protected]>
* fix memory leak in the argument display code
2011-04-05 Jiri Olsa <[email protected]>
* fix controled config bug - missing shared config assignment
* moving conf header files to new location + rename s/conf/h/
* adding support for configuration file
2011-02-15 Jiri Olsa <[email protected]>
* moving debian directory to the packaging
* Sebastian Pipping <[email protected]>
- fix LDFLAGS/CFLAGS usage
2011-01-31 Jiri Olsa <[email protected]>
* adding support for global symbol config
one global symbol tree to rule them all
- only one tree is searched during the plt entry/exit
- symbols are added during the bind audit callback
2010-10-17 Jiri Olsa <[email protected]>
* Artur Skawina <[email protected]>
- enhancing names check with *-logic for
"-l -t -f -s -n -b" options
-------------------------------------------------------------------------------
latrace 0.5.10
2010-10-13 Jiri Olsa <[email protected]>
* Artur Skawina <[email protected]>
- add '-n' option, allowing to omit tracing certain symbols
* 0.5.10 release changes
2010-10-02 Jiri Olsa <[email protected]>
* Akos Pasztory <[email protected]>
- more sophisticated parsing of /proc/self/maps
2010-09-15 Jiri Olsa <[email protected]>
* dynamic rlimit stack check
* recognize [stack] map arrea and handle it properly
* synchronize --no-* option names
2010-09-07 Jiri Olsa <[email protected]>
* adding stack limits dynamic check
- based on proposal from Akos Pasztory
- enabled by default, disable by new '-Y' option
2010-08-05 Jiri Olsa <[email protected]>
* changed config file magic defines
* separate arguments display code, so it could be
disabled for not supported architectures
* updating license info
2010-07-02 Jiri Olsa <[email protected]>
* fixing output for thread applications
- proper tid displayed for pipe mode
- proper indentation for pipe mode
2010-06-03 Jiri Olsa <[email protected]>
* changing permissions of libltaudit.so to 755
-------------------------------------------------------------------------------
latrace 0.5.9
2010-05-11 Jiri Olsa <[email protected]>
* 0.5.9 release changes
2010-05-07 Jiri Olsa <[email protected]>
* fix autoconf search for iberty lib
* Akos Pasztory <[email protected]>
- debian/rules made executable
- check for libiberty_pic and libiberty in this order
2010-04-29 Jiri Olsa <[email protected]>
* refactoring sysdep configuration
-------------------------------------------------------------------------------
latrace 0.5.8
2010-04-19 Jiri Olsa <[email protected]>
* 0.5.8 release changes
2009-04-08 Jiri Olsa <[email protected]>
* fixed enum handling (strtol failure)
* added support for enum string refference definition
2009-03-01 Jiri Olsa <[email protected]>
* Akos Pasztory <[email protected]>
* added checks for asciidoc and xmlto
* added check for liberty-pic
* updated .gitignore
* shlib doesn't need to be executable
* added Debian packaging
* relaxed binutils-dev dependency
* generate conffiles automatically
* debian pkg docbook-xsl and docbook-xml
2010-02-28 Jiri Olsa <[email protected]>
* controled config bug fix
* liberty controled by autoconf now
2010-02-13 Jiri Olsa <[email protected]>
* controled config feature
* disable auditing feature
2010-02-12 Jiri Olsa <[email protected]>
* refactoring shared config
2009-10-20 Jiri Olsa <[email protected]>
* added clone function
2009-09-16 Jiri Olsa <[email protected]>
* added support for pipe mode timestamp display
* added snapshot/release targets
2009-09-15 Jiri Olsa <[email protected]>
* added initial support for timestamp display
-------------------------------------------------------------------------------
latrace 0.5.7
2009-09-08 Jiri Olsa <[email protected]>
* 0.5.7 latrace.spec changes
2009-09-04 Jiri Olsa <[email protected]>
* 0.5.7 release changes
2009-08-21 Jiri Olsa <[email protected]>
* added '-B' option to always display the { } around the symbol body
* minor code sttyle changes
2009-08-20 Jiri Olsa <[email protected]>
* added C++ demangling support - "-d" option
-------------------------------------------------------------------------------
latrace 0.5.6
2009-07-06 Jiri Olsa <[email protected]>
* changes for the rpm review
* 0.5.6 release changes
2009-07-04 Jiri Olsa <[email protected]>
* minor changes for the rpm review
2009-07-02 Jiri Olsa <[email protected]>
* adding --unsafe for asciidoc to workaround
build on the Fedora Rawhide
2009-07-01 Jiri Olsa <[email protected]>
* adding %postun %post to latrace.spec & several minor
changes based on the Fedora rpm review
2009-06-13 Jiri Olsa <[email protected]>
* added latrace.spec for rpm pkg. building
* minor Makefile mrproper change
2009-06-06 Jiri Olsa <[email protected]>
* added support pointers in typedef
* fixed minor bug for pointer output
* added more checks to configure.ac
* make mrproper real propper
2009-05-13 Jiri Olsa <[email protected]>
* added DESTDIR makefile support
-------------------------------------------------------------------------------
latrace 0.5.5
2009-04-25 Jiri Olsa <[email protected]>
* fixed arch dependent enum handling
* fixed config file line number tracking
2009-04-25 Jiri Olsa <[email protected]>
* release notes for 0.5.5
2009-04-22 Jiri Olsa <[email protected]>
* main Makefile changes - adding the package target
2009-04-17 Jiri Olsa <[email protected]>
* install function - skip the install if the file does not exist
2009-04-15 Jiri Olsa <[email protected]>
* adding syscall.conf for x86_64
2009-04-10 Jiri Olsa <[email protected]>
* getstr_pod/enum redesign
* added etc/latrace.d/mman.conf
2009-04-08 Jiri Olsa <[email protected]>
* enum minor changes
* added etc/latrace.d/resource.conf
2009-04-07 Jiri Olsa <[email protected]>
* added 'pcC' options for x86_64, since it looks
glibc bug 7055 got fixed somehow
glibc bug 7055 - LD_AUDIT - gettimeofday function
segfaults if called from interface
2009-04-03 Jiri Olsa <[email protected]>
* added doc enum part
2009-04-01 Jiri Olsa <[email protected]>
* added enum support
2009-03-30 Jiri Olsa <[email protected]>
* stats - syntax changes
* stats - added -C sym, fixed -C lib
2009-03-24 Jiri Olsa <[email protected]>
* removing stack.h include from generic parts
* fix PRINT_VERBOSE[12] for x86_64
* doc changes
2009-03-17 Jiri Olsa <[email protected]>
* doc changes
2009-03-14 Jiri Olsa <[email protected]>
* unify the PRINT_VERBOSE[12] to one method only PRINT_VERBOSE
* unify the ERROR[12] to one method only ERROR
2009-03-09 Jiri Olsa <[email protected]>
* minor attribute changes
2009-03-08 Jiri Olsa <[email protected]>
* adding cscope support
2009-03-08 Jiri Olsa <[email protected]>
* adding Makefile support for checking prefix and CFLAGS changes
(stolen from git sources)
2009-03-07 Jiri Olsa <[email protected]>
* introducing asciidoc man page, needs more formatting changes...
2009-03-06 Jiri Olsa <[email protected]>
* added -F option to disable fork following
* added -E option to disable exec following
2009-03-05 Jiri Olsa <[email protected]>
* added -T option to hide thread id
2009-03-05 Jiri Olsa <[email protected]>
* x86_64 - fixed argument display (fixed glibc bug 9893,
not sure when the glibc fix will be available,
need to consider the option availibility before next
release
-------------------------------------------------------------------------------
latrace 0.5.4
2009-02-28 Jiri Olsa <[email protected]>
* release notes for 0.5.4
* man page update
2009-02-28 Jiri Olsa <[email protected]>
* x86_64 code refactoring
* introduced glibc bug 9893, and disabled 'AaD' options because of that
updated man page with this info
* added more functions to the test1.c
* removed i386 link as it was useless
2009-02-16 Jiri Olsa <[email protected]>
* Akos Pasztory <[email protected]>
* License changes applied and better description in debian/control.
Made debian/rules executable.
2009-02-16 Jiri Olsa <[email protected]>
* licensed under GPLv3 - more changes
2009-02-14 Jiri Olsa <[email protected]>
* licensed under GPLv3
2009-02-05 Jiri Olsa <[email protected]>
* Akos Pasztory <[email protected]>
* initial Debian packaging
2009-02-05 Jiri Olsa <[email protected]>
* Akos Pasztory <[email protected]>
* ARM EABI argument extraction support
2009-02-05 Jiri Olsa <[email protected]>
* Akos Pasztory <[email protected]>
* added a test program
* Jiri Olsa - fixed x86 structure walkthrough
2009-02-05 Jiri Olsa <[email protected]>
* Akos Pasztory <[email protected]>
* support for additional POD types
* Added support for `short', `float', `double', `llong' and `u_llong'
(the last two are `long long's).
* Jiri Olsa - added ARGS_SPRINTF macro, to have code only on one place
and small Makefile bugfix
2009-02-02 Jiri Olsa <[email protected]>
* Akos Pasztory <[email protected]>
* Ignore `const' and `extern' in config files
Make it easier to reuse ordinary .h files (though
it's still far away).
2009-02-02 Jiri Olsa <[email protected]>
* Akos Pasztory <[email protected]>
* Made it compile in Scratchbox
- works with an older `install' program that doesn't recognize `-t'
- treat i.86 as i686
* configuration files are installed into $(sysconfdir); the program
now honors this setting at runtime
2008-12-28 Jiri Olsa <[email protected]>
* code style changes
-------------------------------------------------------------------------------
latrace 0.5.3
2008-12-12 Jiri Olsa <[email protected]>
* minor code style changes
2008-12-10 Jiri Olsa <[email protected]>
* minor code style changes
* adding release notes for 0.5.3
2008-12-10 Jiri Olsa <[email protected]>
* x86_64 - finished the case of returning structure by value,
x86_64 argument display support is now complete.. bugs expected :)
2008-12-10 Jiri Olsa <[email protected]>
* x86_64 - support for structure passed by value in function arguments
still missing support for the same in the function return value
2008-12-10 Jiri Olsa <[email protected]>
* x86_64 now working except for the structure detailed output
2008-12-07 Jiri Olsa <[email protected]>
* complete redesign of the args <-> stack modules communication
to be able to manage other ABI platforms properly
2008-12-03 Jiri Olsa <[email protected]>
* added support for objsearch LD_AUDIT interface (-L option)
2008-12-01 Jiri Olsa <[email protected]>
* added -b option to display flow only below requested symbols
* man page updated
2008-11-28 Jiri Olsa <[email protected]>
* minors to make autoreconf work, suggested by Nix
2008-11-26 Jiri Olsa <[email protected]>
* x86_64 - removed 'cCp' options support because of the glibc bug #7055
2008-11-25 Jiri Olsa <[email protected]>
* x86_64, args, output - minor fixes
2008-11-24 Jiri Olsa <[email protected]>
* x86_64 - initial changes for argument values display (works
for integer and pointers) need updates for arguments
passed/returned by value
2008-11-22 Jiri Olsa <[email protected]>
* arch specific code redesign (x84, x86_64)
x86 working, x86_64 compiles
* doc/latrace.1.in - minor change
2008-11-16 Jiri Olsa <[email protected]>
* added generated date to the man page
* minor code style changes
2008-11-14 Jiri Olsa <[email protected]>
* ./ChangeLog - added change log
-------------------------------------------------------------------------------
latrace 0.5.2