source: trunk/docs/Changelog@ 205

Last change on this file since 205 was 205, checked in by katerina, 16 years ago

New option LooseDirCheck (ticket #132). Also, replace _exit() with raise(SIGKILL).

File size: 82.8 KB
RevLine 
[204]12.5.2:
[205]2 * replace _exit() by raise(SIGKILL) b/o pthread problem
3 * new option LooseDirCheck ([false]/true), request by
4 Alexander
5 * improved help output of samhain_stealth (as suggested
6 by Michael Athanasiou)
[204]7 * new option ProcessCheckIsOpenvz ([false]/true)
[205]8
[190]92.5.1:
[203]10 * workaround for freebsd7 amd64 lossage (compiler toolchain,
11 no mmap to 32bit address space)
12 * samhain-install.sh: check for presence of stealth_template.ps
13 before trying to create it
[202]14 * use -Wno-empty-body if supported to suppress warnings about
15 glibc pthread_cleanup_pop implementation
16 * fix text relocations for i386 in src/sh_tiger1.s
[200]17 * implement server->client SCAN command to initiate file check
18 * implement @if / @else conditionals with more tests in config file
[196]19 * new option SetDropCache to drop checksummed files from cache
[195]20 * report process/user for open ports on FreeBSD (code
21 lifted from FreeBSD sockstat.c)
[194]22 * fix for config reload issue with stealth mode (reported by
23 siim)
[192]24 * add -fstack-protector flags to LDFLAGS
25 * cygwin fix: don't use dnmalloc, doesn't work with pthreads
26 * cygwin fix: make trust check in samhain-install.sh return zero
27 * improved diagnostics for file read errors
28 * fixed script permissions (754 -> 755), reported by Christoph
[190]29 * constness patch by Joe MacDonald
[191]30 * GnuPG key ID patch by Jim Dutton
[192]31 * sh_kern.c: more error checking for reads from kernel
[190]32
332.5.0 (01-11-2008):
[188]34 * dnmalloc.c: fix inconsistent chunksize on 64bit systems
[185]35 * fix improved error reporting for failed fstat in checksumming
36 * report process/user for open ports (Linux only currently)
37 * fix deadlock on exit in sh_hash_init()
[184]38 * fix --enable-mounts-check for FreeBSD 7.0 (no MNT_NODEV anymore)
39 * log monitoring support
[183]40 * fixed constness in trustfile interface
[181]41 * remove libprelude 0.8 support (obsolete)
[180]42 * sh_forward.c: increase TIME_OUT_DEF to 900 secs
43 * dnmalloc.c: initialize rc in dnmalloc_fork_child(),
44 reported by B. Podlipnik
45
462.4.6a (09-10-2008):
[177]47 * fix compile problem on Fedora 9 (reported by pierpaolo),
48 'struct ucred' in sh_socket.c requires _GNU_SOURCE
49
502.4.6 (27-08-2008):
[176]51 * fix compile failure on win2k/cygwin (sh_unix_mlock prototype),
52 reported by jhamilton
[174]53 * fix potential deadlock with dnmalloc upon fork()
54 * fix non-portable use of 'hostname -f' in regression test suite
55 (reported by Borut Podlipnik)
56
572.4.5a (18-08-2008):
[173]58 * fix compile problem in dnmalloc.c (remove prototypes for
59 memset/memcpy), problem reported by Juergen Daubert
60
612.4.5 (07-08-2008):
[172]62 * testscripts: 'chmod -R' -> 'chmod -f -R', since Solaris 10
63 bails out on a chmod on a dangling link
64 * fix bug in check_samhain.pl nagios script (J.-S. Eon)
65 * use the UNO static checker
66 * compile as position independent executable (PIE)
[171]67 * handle EINPROGRESS error (Windows/cygwin issue)
68 * make sure every function uses less than one page of stack
69 (proactive security against gap jumping, Gael Delalleau)
70 * use dnmalloc instead of system malloc
[172]71 (proactive security against heap buffer overflows)
[171]72 * fix dnmalloc bugs and portability problems
73 * check for compressBound, since older zlibs don't have it
74
752.4.4 (30-04-2008):
[170]76 * sh_database.c: fix maximum size of sql query string, maximum
77 size of strings in struct dbins_
78 * sh_hash.c: fix maximum size of message string
79 * fix typo in the base64 decoder
80 * fix 'make cutest' for parallel compiling
81 * fix compile warnings with -Wstrict-prototypes
82 * sh_static.c: override getgrgid, getpwuid for libacl
83 * fix more warnings about variables clobbered by 'longjmp'
84 or 'vfork' (due to library internal handling of mutexes)
85 * fix configure warning about unused datarootdir
[169]86 * configure.ac: warn, but accept nonexistent tmp dir
87 (Problem reported by Brian)
88 * sh_unix.c: undef P_ALL, P_PID, P_PGID before including
89 sys/wait.h (compile problem reported by Reputation)
90 * syslog function tested ok with Syslog Fuzzer v0.1
91 by Jaime Blasco (c) 2008
92 * slib.c: call fflush when writing trace to file
93 * sh_readconf.c: don't set OnlyStderr to false if gpg (problem
94 reported by Irene Reed)
95 * fix unconditional removal of pid file in atexit handler (bug
96 reported by Brian)
97 * fix invalid free() in sh_unix_checksum_size()
98 * sh_processcheck.c: workaround for stupid OpenBSD bug (returns
99 ENODEV instead of EAGAIN, because fgetc does
100 fcntl(0,F_SETFL,O_NONBLOCK) [ENODEV] internally), problem
101 reported by Roman R.
102 * fix buf that cause incomplete reporting of modified symlink if
103 symlink has changed and both old and new paths are >48 bytes
104 * fix bug that prevented mount check from running in one-shot mode
105 * enable mount check for openbsd
106 * fix processcheck default options and test script for openbsd
107 * option --list-file to list content of file (if saved)
108 * sh_tools.c: use strcasecmp in reverse lookup since DNS is case
109 insensitive (bug reported by Phil)
110 * fill content if MODI_TXT, zlib compress, base64 encode and add
111 as link_path in sh_unix.c; add to report in sh_hash.c
[164]112 * testsuite: add test for gpg fingerprint option
113 * sh_extern.c: add 'CloseCommand' for syntactic sugar,
114 add in testsuite
115
[169]1162.4.3a (12-02-2008):
117 * fix compile error caused by open() with O_CREAT and no third argument
[167]118 (reported by J.-S. Eon)
119
[169]1202.4.3 (31-01-2008):
[162]121 * sh_kern.c: don't require asm/segment.h for kernel check module
122 * use global var with pid of initial thread instead of getpid(),
123 since LinuxThreads returns different value in each thread (problem
124 reported by Steffen Mueller)
125 * sh_kern.c: no inode check for pci rom (creates spurious messages)
126 * slib.c: eliminate prototype for vsnprintf (compile problem reported
127 by eddy_cs)
[161]128 * Makefile.in: fix missing dependency on 'encode' for $(OBJECTS)
129 (reported by Matthias Ehrmann)
130
[162]1312.4.2 (17-01-2008):
[160]132 * fix broken option --with-checksum (reported by halosfan),
133 regression test added
134 * change HP-UX default optimization to +O2 since +O3 breaks
135 cutest unit testing framework
[156]136 * put result vector of rng in skey struct
[154]137 * fix more compiler warnings, and a potential (compiler-dependent)
138 NULL dereference in the unix entropy collector
[153]139 * fix some compiler warnings
140 * use -D_FORTIFY_SOURCE=1 -fstack-protector-all instead
141 of -fstack-protector
142 * always add PTHREAD_CFLAGS to LDFLAGS
[151]143 * sh_tiger0.c: checksum functions return length of file hashed,
144 needed to fix GrowingLogfile bug (researched by
145 siim at p6drad dash teel dot net)
[150]146 * sh_static.c: fix more 'label at end of compound statement'
147 (SH_MUTEX_UNLOCK closing brace; reported anonymously)
[149]148 * make sh_hash.c thread-safe
149 * remove plenty of tiny allocations
150 * improve sh_mem_dump
151 * modify port check to run as thread
[152]152 * new option PortCheckSkip to skip ports
[149]153 * fix unsetting of sh_thread_pause_flag (was too early)
154
[160]1552.4.1a (28-11-2007):
[149]156 * fix overwrite of ErrFlags (functionality bug)
157
[160]1582.4.1 (26-11-2007):
[147]159 * security fix: regression in the seeding routine for the PRNG
160 (detected by C. Mueller)
161 * regression test added for PRNG seeding routine
[146]162 * fix problem with PCI ROM check (spurious messages about modified
163 timestamps, reported by S. Clormann)
164
[160]1652.4.0a (08-11-2007):
[145]166 * fix compile failure with --enable-static (reported by S. Clormann)
167 * fix potential deadlock if SIGHUP is received while suspended
168
[160]1692.4.0 (01-11-2007):
[131]170 * eliminate alarm() for I/O timeout (replaced by select)
171 * use getgrgid_r, getpwnam_r, getpwuid_r, gmtime_r, localtime_r,
172 rand_r, strtok_r if available
[134]173 * protect readdir(), getpwent(), gethostname() with mutexes
174 (readdir_r considered harmful)
[138]175 * make checksum/hash, entropy, rng functions reentrant
[134]176 * use thread-specific conversion buffer for globber()
[138]177 * fixed compile problems and problems with test suite
[144]178 * modify login watch to run as thread
179 * modify process check to run as thread
[131]180
[144]1812.3.8 (03-10-2007):
[127]182 * new option PortCheckIgnore = interface:portlist
183
[128]1842.3.7 (13-09-2007):
[125]185 * Makefile.in: fix 'make deb' target, wrong name of config file
186 written to debian/conffiles (reported by marc)
[124]187 * configure.ac: fix incorrect order of with-prelude, enable-static
188 (libprelude test was always without -static)
189
1902.3.6 (06-09-2007):
[123]191 * added yuleadmin.pl script contributed by Riccardo Murri
192 * fix compile error with -f-stack-protector on some systems (reported
193 by marc); we now check for libssp
[118]194 * fix local DoS attack on BSD systems lacking getpeereid() (reported
195 by Rob Holland).
[117]196 * fix yulectl password reading from $HOME/.yulectl_cred, erroneously
197 rejected passwords with exactly 14 chars (reported by Jerry Brown)
198 * introduce 'fflags' flag for suid files to detect new files already
199 found in regular file check (problem reported by J. Crutchfield);
200 also add regression test to ascertain that files in baseline
201 database are not quarantined erroneously
[114]202 * sh_hash.c: replace check for prefix 'K' with check for not prefix'/'
203 to allow for arbitrary module-specific store/lookup in db
204 * replace 'visited', 'reported', 'allignore' with generic 'fflags' field
[113]205 * sh_cat.c: reduce priority of MSG_TCP_RESET to avoid spamming if
206 port checking is used on same host as server (reported by kadafax)
207 * Install.sh: don't use --separate-output with non-checklist
208 widgets (problem discovered by D. Denton)
[111]209 * sh_gpg.c, sh_userfiles.c: use sh_getpwnam et al. wrappers
210
[124]2112.3.5 (20-06-2007):
[110]212 * sh_portcheck.c: try to tear down connections more gracefully
213 (request by S. Petersen)
[107]214 * fix incorrect handling of files with zero size in GrowingLogFiles
215 (problem reported by S. Petersen)
[105]216 * fix incorrect encoding of null checksums in stealth mode
217 * sh_hash.c: fix repeated printing of acl/attributes in database dump
218 * sh_unix.c: fix option useaclcheck ignored if both useaclcheck and
219 useselinuxcheck are supported
220
[110]2212.3.4 (01-05-2007):
[103]222 * sh_processcheck.c: fix missing init of sh_prochk_res array before
223 check (leads to degrading functionality over time and 'fake pid'
224 warnings; reported by D. Ossenbrueggen and
225 soren dot petersen at musiker dot nu)
226 * sh_processcheck.c: fix memory leak
[102]227 * sh_kern.c: for 2.6.21+ don't check proc_root_lookup (not possible
228 anymore? proc_root_inode.lookup != proc_root_lookup)
229 * sh_extern.c: flush streams before forking (problem if [Prelink]
230 used together with prelude logging, reported by M. deJong)
231 * fixed compilation of kern_head (regression cause by cross-compiling
232 fix; problem reported by S. Clormann)
[101]233 * more typos fixed (reported by John Horne)
234
2352.3.3 (27-03-2007):
[100]236 * fixed typos in configure.ac and manual (reported by John Horne)
237 * don't use mysql_options on x86_64, since libmysql is broken
[99]238 * fixed cross-compiling (patch by Joe MacDonald)
[94]239 * refactor sh_kern.c, sh_suidchk.c
240 * fix bug with leading slashes in linked path of symlinks within
[93]241 the root directory
242 * sh_kern.c: check PCI ROM (Linux), refactor code
[92]243 * move file descriptor closing more towards program startup
[93]244 * kernel check: support OpenBSD 4.0 (wishlist)
[92]245 * fix samhain_hide module (in-)compatibility with recent kernels
[93]246 (reported by Jonny Halfmoon)
247
[100]2482.3.2 (29-01-2007):
[89]249 * fix regression in full stealth mode (incorrect comparison of
250 bytes read vs. maximum capacity), reported by B. Fleming
251
2522.3.1a (21-01-2007):
[87]253 * fix incorrect use of sh_gpg_fill_startup if option --with-fp is used
254 (reported by zeroXten)
255
2562.3.1 (21-01-2007):
[100]257 * fix bug that may cause accidental closure of yule TCP socket
[85]258 (problem reported by B. Masuda)
[83]259 * fix sh_kern.c for kernel 2.6.19 (reported by S. Clormann)
[79]260 * don't use sstrip in 'make deb', since dh_shlibdeps uses objdump
261 (reported by B. Masuda)
262 * rm report.pl from rules.deb.in (reported by B. Masuda)
263 * samhainctl(): longer timeout (bad status reporting at startup,
264 reported by Phil and by Dan Track)
[78]265 * sh_portcheck.c: make connect errors more descriptive
266 * sh_portcheck.c: fix ignored setting of PortCheckActive
267 * sh_processcheck.c: add statvfs, and wrap for EINTR
268 * sh_portcheck.c: add wrappers for EINTR
269 * report user and executable for hidden processes
270 * fix update failure if reportonlyonce = false (reported
271 by D. Strine)
[76]272 * fix compile error in sh_portcheck.c (problem on cygwin
273 reported by J. D. Fiori)
274 * check filenames ending in space (also for utf8 spaces)
275 * check and escape csv formatted db listing
276 * cache results of sl_trustfile_euid()
277 * trustfile: use 4096 for MAXFILENAME, switch to strncpy
278 * CL option -v|--version for info on version and compiled-in options
279
[78]2802.3.0a (01-11-2006):
[75]281 * fix compile failure with portcheck + stealth (reported by lucas)
282
2832.3.0 (01-11-2006):
[68]284 * fix concurrency for inserts in oracle db
285 * add acl_(new|old) to database schema
286 * check for selix attributes and/or posix acl
287 * new option UseSelinuxCheck (bool)
288 * new option UseAclCheck (bool)
289 * regression tests for above
290 * add module to check for open ports
291 * add module to check processes (hidden/fake/missing)
292 * use const char* for argument of module configuration callbacks
293
[73]2942.2.6 (31-10-2006):
295 * fix missing support for MacOX X init script (reported
296 by Daniel Kowalewski)
[65]297 * fix error about non-readable file with no checksum required
298 * fix server warning about 'no server name known'
299 * fix 'make deb' makefile target
300 * fix default export severity for server
[68]301
[65]3022.2.5 (05-10-2006):
[63]303 * fix broken Install.sh, reported by Alexander Kraemer
[61]304 * workaround for glob(3) sillyness on MacOS X (reported by David)
305 * fix for broken resorce fork check (reported by David)
306 * fix for broken compilation on cygwin (reported by Elias)
307
3082.2.4 (03-09-2006):
[60]309 * add regression test for the GrowingLogFiles issue to test suite
[59]310 * fixed sh_unix.c: bug in database init if GrowingLogFiles used
311 with signed database (reported by Timothy Stotts)
312 * bug in manual fixed (incorrect documentation of --enable-user,
313 noticed by M. Brown)
314 * rc.subr compatible init script for FreeBSD/NetBSD
[58]315 * improve routine to find rpm after build
[57]316 * add netbsd rc file from Brian Seklecki (taken from pkgsrc-wip)
317 * fix error in manual (location of lock file)
[55]318 * fix bug with SuidExclude (files in directory were still checked)
319
[59]3202.2.3 (31-07-2006):
[53]321 * fix samhainadmin.pl: check for gpg-agent running if use-agent is set
322 (ticket #28 by anonymous)
[52]323 * fix stealth mode (regression in parser), problem reported by
324 Joschi Kuphal
[54]325 * fix minor typo in sh_database.c (compile problem reported by
326 Joschi Kuphal)
[52]327
[51]3282.2.2 (17-07-2006)
329 * minor fixes for regression test scripts
330 * minor updates to the manual (suggested by Brian A. Seklecki)
331 * fix sh_kern.c, kern_head.c: kernel rootkit detection for 2.6.17+
332 (problem reported by Leonhard Maylein)
333 * fix samhain_hide.c for 2.6.17+: use module_param() if MODULE_PARM
334 is not defined
335
3362.2.1c (11-07-2006)
[49]337 * fix sh_extern.c: sh_ext_add_default() cast to (void) was too early
338 (Solaris 8 build failure reported by Jesse)
339 * fix sh_unix.c: wrong prototype for sh_unix_mlock()
340 if HAVE_BROKEN_MLOCK (AIX 5.2 build failure reported by
341 Jonathan Kaufman)
342
[48]3432.2.1b (20-06-2006):
344 * fix compile error on SuSE 10.1 (reported by Leonhard Maylein)
345
3462.2.1a (15-06-2006):
[47]347 * fix compile error on i686/MacOS X (reported by Andreas Neth)
348
[48]3492.2.1 (13-06-2006):
[46]350 * fix gcc 4 warnings and build failure on x86_64 (debian bug #370808)
351 * fix compiling with Oracle (noticed by Colapinto Giovanni)
352 * fix configure.ac for most recent autoconf version
353 (debian bug #369503)
[42]354 * fix a regression that would make impossible local updates w/clients
355 * fix a few missing '\n' in sh_getopt.c
[41]356 * sh_kern.c: fall back on mmap() if read() fails on /dev/kmem
[40]357 * fix Solaris package creation
358 * recognize Solaris doors and event ports
359 * fix the idmef_inode_t patch: provide required info to avoid stat()
360 * fix bug on database update: fill in dev and rdev fields
361 * fix get_file_infos() in sh_prelude.c: avoid premature return
362 * GCC_STACK_PROTECT_CC: AC_TRY_COMPILE -> AC_TRY_LINK
[38]363 * deploy.sh: allow to set a group for hosts upon installation
[36]364 * patch by Yoann: fix an issue when setting the idmef_inode_t object
365 * fix memory leaks in error paths in sh_prelude.c
366 * fix concurrent inserts with postgres in sh_database.c
367 * code cleanup
[47]368 * fix manual version in spec file, first noticed by Imre Gergely
[34]369
[48]3702.2.0 (01-05-2006):
[30]371 * patch by Jim Simmons for samhainadmin.pl.in
372 * fix testsuite portability problems
373 * fix md5 endianess problem detected on HP-UX 11i / PA-RISC 8700
374 * fix potential NULL dereference in sh_utmp_endutent()
[29]375 * patch by Neil Gorsuch for suidchk.c (do not scan lustre, afs, mmfs)
376 * fix sh_ext_popen (OpenBSD needs non-null argv[0] in execve)
377 * fix make_tests.sh portability (echo '"\n"' does not work on OpenBSD)
378 * fix bug in sh_utils_obscurename (check isascii)
379 * scan h_aliases for FQDN if h_name is not
[27]380 * add copyright/license info to test scripts
381 * add copyright/license info to deployment system scripts
382 * support server-to-server relay
[29]383 * new CL option --server-port
[27]384 * minor improvements in manual
[25]385 * patch by Yoann Vandoorselaere for sh_prelude.c
[22]386 * allow --longopt arg as well as --longopt=arg
[29]387 * verify checksum of growing log files (up to previous size)
[22]388 * rewrite of the test suite
[18]389 * added a bit of unit testing
390 * minor optimizations in various places
391 * optimized implementation of tiger checksum algorithm
392 * read in 64k blocks (faster than 4k)
393 * sh_unix.c, sh_hash.c: support file flags on *BSD, update Linux
394 file attribute code
395 * kern_head: fix compilation of kernel check module on OpenBSD
396 * updated samhainrc.linux, samhainrc.freebsd
397 * sh_unix.c: fix setrlimit (RLIMIT_NOFILE, ..)
398 * sh_files.c: fix missing use of flag_err_info
399 * sh_tiger0.c: remove repetitive use of mlock
400 * slib.c: remove fcntl's from sl_read_timeout (caller sets O_NONBLOCK),
401 add function sl_read_timeout_prep
[3]402
[25]4032.1.3 (13-03-2006):
404 * fix compile problem in slib.c (reported by Lawrence Bowie)
405 * fix bug with combination of one-shot update mode and file check
406 schedule (reportedby Dan Track)
407 * improved the windows howto according to suggestions by
408 Jorge Morgado
409 * fix samhain_hide kernel module for new linux kernel versions
410 * fix minor problem with dead client detection (problem reported
411 by Michal Kustosik)
412
[18]4132.1.2 (10-01-2006):
414 * fix startup error with combination of gpg+prelude
415
[5]4162.1.1a (22-12-2005):
417 * fixed a stupid bug in sh_files.c (break if file = dir)
418
4192.1.1 (21-12-2005):
[3]420 * sh_calls.c: protect sh_calls_set_bind_addr against overriding
421 * comINSTALL, updateDB: use locking
422 * samhainadmin.pl: use locking
[1]423 * fix typos in samhainrc.solaris (noticed by Robby Cauwerts)
424 * improve zAVLSearch (remove redundant strcmp)
[3]425 * use AVL tree in sh_files.c instead of linked list (better scaling)
[1]426 * fix bug with suidcheck (no update/check in one-shot mode with
427 schedule instead of check interval; noticed by R. Rati)
428 * fix for problem with '-t update -i' if daemon mode (problem report
429 by Peter van der Does)
430 * fix for bug in sh_util_ask_update (two returns were required ...)
431
4322.1.0 (31-10-2005):
433 * minor fix for cross-compiling with --with-kcheck
434 * sh_forward.c: handle bad fds in the select() fd sets
435 (reported by hmy)
436 * sh_extern.c: fix debugging code
437 * slib.c, sh_calls.c, sh_calls.h: improve handling of O_NOATIME
438 (reported by Gabor Kiss)
439 * makefile.in: fix for solaris package creation
440 * sh_mail.c, sh_readconf.c: mail filtering options
441 * sh_database.c: Oracle reconnect on connection failure
442 (bug report by Alexander A. Sobyanin)
443 * sh_unix.c: don't purge MYSQL_UNIX_PORT environment variable
444 (problem reported by Peter)
445 * sh_calls.c: fix for a HP-UX accept() problem caused by the gcc4 fix
446 * fixes for gcc 4.0.2 compiler warnings
447 * ability to use daemon mode together with update
448 (wishlist Yoan Vandoorselaere)
449 * fixes for debugging
450
4512.0.10a (22-08-2005):
452 * fix for overlapping directory check specification (reported by Bub)
453
4542.0.10 (21-08-2005):
455 * fix for segfault (free() on a constant string) with libprelude
456 (problem reported by Grae Noble)
457 * upgrade FreeBSD kernel check to 5.4, minor fixes
458 * useful script for users of Linux kernel check
459 (contributed by marc heisterkamp)
460 * documentation improvements (suggested by Brian Seklecki and Robby)
461
4622.0.9 (25-08-2005):
463 * samhain_erase.c: add #define for NULL
464 * sh_suidchk.c: fix incorrect use of escaped filename
465 * sh_prelude.[ch], sh_readconf.c: configurable mapping from
466 samhain severity to prelude severity
467 * sh_unix.h: second arg of gettimeofday should be NULL
468 * sh_files.c: fix checking of directory special file (use specified
469 policy, not that of parent dir, problem found by Brian A. Seklecki)
470 * sh_entropy.c: longer timeout for entropy collector
471 * sh_socket.c, sh_forward.c: allow probing of clients for
472 necessity of configuration reload
473 * yulectl: minor fixes, option -v (verbose), new command PROBE
474 * fix 'File not found' messages for files flagged with IgnoreMissing
475 * sh_database.c: strip newline from oracle error messages
476 * sh_files.c: fix rsrc fork issue with MacOS X Tiger
477 (reported by A. Koren)
478 * never compute checksum if not checked (problem report by D.Hughes)
479 * sh_prelude.c: cleanup and bugfix by Yoann
480 * sh_hash.c: for prelude, make sure mode is supplied with user/group
481 and vice versa
482 * sh_prelude.c: provide proper FileAccess objects (bug
483 report by Mihai Ilinca)
484
4852.0.8 (03-07-2005):
486 * configure.ac: use $LIBPRELUDE_PTHREAD_CFLAGS rather than
487 $LIBPRELUDE_CFLAGS (bugfix by Yoann)
488 * samhain.spec.in: remove support for chkconfig (it's too buggy).
489 Strangely, if invoked as install_initd it behaves sanely ...
490 * src/sh_err_log.c: fix key input (this time for real)
491 * fix --with-altlogserver (bug from 2.0.7b)
492 * remove server socket in start/stop script
493
4942.0.7e (not released):
495 * Makefile.in: introduce a total of 6 sec delay for 'make' utilities
496 that use 1 sec resolution, and consider target out-of-date if
497 timestamp(target) = timestamp(dependency) ...
498 * src/sh_err_log.c: fix key input
499 * another fix for yulectl (use pwent->pw_dir)
500 * dsys/comINSTALL, dsys/comUNINSTALL, dsys/comBUILD: fix PATH
501
5022.0.7d (not released):
503 * one more fix for the spec file (stupid rpm finds tags in comments!!!)
504
5052.0.7c (not released):
506 * test/testrun_1b.sh, test/testrun_2b.sh: use $GPG_PATH
507 * dsys/comINSTALL, dsys/funcDB, dsys/funcINSTALL: some bugfixes
508 * samhain-install.sh.in: fix test -z $verbose
509 * sh_hash.c: speedup database reading
510 * Makefile.in: fix the problem that BSD make would make too much
511 * deploy: yulerc.clients -> yulerc.install.db, provide
512 $defdatabase for backward compatibility
513 * deploy: allow for comma in client_install_date
514
5152.0.7b (not released):
516 * hp_ux.psf.in: fix psf file
517 * dsys/comINSTALL: fix $yule_date -> $yule_data
518 * Makefile.in: fix 'make depot'
519 * sh_tools.c, sh_unix.c: fix detection of open file limit
520 * sh_readconf.c: reset read_mode after reading conf file
521 * yulectl.c: better error messages, use homedir from getpwuid(geteuid)
522 * init/samhain.startLSB.in: fix misleading message in lsb init script
523 * sh_forward.c: better display for nonce u in debug mode
524 * sh_tiger*.c: fix checksum for HP-UX 64bit
525 * samhain.c: don't fetch database twice
526 * configure.ac: accept nodename for --with-logserver=...
527 * samhain_setpwd.c: return proper exit status for samhain_setpwd
528 * respond to SIGTERM on initializing
529 * fix problems with samhainadmin.pl
530 * sh_utils.c: fix bug with AddOKChars (found by Karol)
531
5322.0.7a (not released):
533 * remove 'df' from entropy gatherer (NFS may hang)
534 * modify va_copy check (doesn't work with HP-UX PA64 compiler)
535 * fix compile warnings in sh_database.c
536 * samhain-install.sh.in: check for /usr/bin/false in /etc/shells
537 * fix install-boot on HP-UX
538 * aclocal.m4: fix configure CL parsing to recognize VAR=VALUE
539
5402.0.7 (11-06-2005):
541 * yet another fix for the spec file (use internal dependency generator)
542 * sh_error.c, sh_prelude.c: init libprelude after open fds are closed
543 * error message if queue is full
544 * fix two compiler warnings on HP-UX
545 * fix sh_mail.c for Interix (no resolver routines)
546 * fix sh_unix_initgroups2() if no initgroups() function (bug reported
547 by Geries Handal)
548 * remove references to 'struct timezone' (Interix; problem
549 reported by Geries Handal)
550 * init/stop for prelude on SIGHUP
551 * sh_cat.h: fix a stupid bug with messages classes
552 * manual: new section on nagios (with help from kiarna),
553 more on prelude
554 * sh_prelude.c: cleanup and improvements (Yoann Vandorselaere)
555 * default prelude profile name now is 'samhain' (lowercase)
556 * sh_readconf.c: new option PreludeProfile (by Yoann Vandorselaere)
557 * remove obsolete check for linux/module.h, linux/unistd.h
558 * remove dependency on virtual/glibc in gentoo ebuild
559 (problem reported by Willis Sarka)
560
5612.0.6 (01-03-2005):
562 * sh_prelude.c, configure.ac, aclocal.m4: support for
563 libprelude 0.9 (Yoann Vandoorselaere)
564 * sh_html.c: fix bug with entry.html template (reported by
565 Stephane Sanchez)
566 * Install.sh: fix mandir option (reported by Rodney Smith)
567 * Fixed Linux/64bit bug in definition of EUIDSLOT
568 * New targets 'make depot', 'make depot-light' (HP-UX, untested)
569 * Use sstrip for RPMs and DEBs (automatic stripping disabled)
570 * Fix aclocal.m4 for autoconf 2.59 (missing $ac_cr_alnum et al.,
571 problem noticed by Yoann Vandoorselaere)
572 * Modify samhain.spec.in to disable automatic stripping upon install
573 * Fix deploy.sh + '--enable-gpg', and fix 'make rpm' and 'make deb'
574 for '--with-khide' (problems reported by Mark)
575 * Fix compile error in sh_tools.c on HP-UX 10.20
576 (problem reported by Dennis Boylan)
577 * Runtime configuration of server listening port (wishlist)
578 * Runtime configuration of server listening interface (wishlist)
579 * Ignore SIGTTIN (consistency)
580 * Use SIGTTOU to force file check (wishlist)
581
5822.0.5b (01-04-2005):
583 * Fix build problem b/o timestamp on stamp file
584
5852.0.5a (16-03-2005):
586 * Fix problem with 'make rpm' (reported by Dirk Brümmer)
587
5882.0.5 (02-03-2005):
589 * Fix bug with partial reads from clients in server
590 (bug report by Brian)
591 * Support gpg checksum bootstrap with yule
592 * Support mount option check on HP-UX
593 * For MAIL FROM, use 'example.com' as domain part if
594 hostname is numeric (problem reported by Eric Raymond)
595 * The HOWTO-write-modules has been updated.
596 * Convenience functions to insert data in database have been
597 added.
598 * Use int0x03 only on i386 in sh_derr() (portability problem
599 reported by John Mandeville)
600
6012.0.4 (09-02-2005):
602 * Fixed broken 'make deb' (problem report by olfi)
603 * Fixed minor bug in test scripts (detection of gmake vs. make)
604 * Fixed Tru64/OSF compile warnings (reported by B. Terp)
605 * Normalize list parsing to allow comma, space, and tab as separators
606 * Some more descriptive error messages in kern_head.c
607 * Absolute path to utilities in init/samhain.startLinux.in
608 * Fixed is_root variable in deploy.sh
609 * Fixed 'deploy.sh info'
610 * Fixed 'deploy.sh install' client startup
611 * Fixed 'make tbz': don't remove ebuild scripts in 'make dist'
612 (issue reported by W. Sarky)
613
6142.0.3 (14-12-2004):
615 * Fix CPPFLAGS with mysql/postgresql (repoted by P. Smith)
616 * Fix missing sys/time.h include in slib.c (reported by Jonas)
617 * Workaround for file closing problem with Prelude+GPG
618 * Fixed memory leak with Prelude.
619 * Fixed bug in samhain_stealth (PGP signature not correctly
620 retrieved from hidden configuration; report and patch by V. Tuska)
621 * Added Perl script to concatenate file signature database files
622 * Fix compile error with combination of --enable-nocl and
623 --enable-stealth (reported by Zdenek Polach)
624 * Fix bug in dsys/initscript with --enable-nocl
625 * Fix declaration of sh_kern_timer()
626 * Fix missing Mounts+Userfiles options in appendix of manual
627 * Updated the README (bug report by H. Franzke)
628 * Fix some compiler warnings
629
6302.0.2a (09-11-2004):
631 * Fixed OoM condition when client rc file not found (reported by Eilko)
632
6332.0.2 (08-11-2004):
634 * Fixed buffer overflow in sh_hash_compdata() (only in 'update' code)
635 * Fixed uninitialized variable in sh_mail_msg() (problem reported
636 by Michael Milvich)
637 * Fixed potential NULL pointer dereference in sh_hash_compdata()
638
6392.0.1 (01-11-2004):
640 * Fixed compilation bug reported by jue (--with-kcheck broken).
641 * Fixed start option (bug reported by sanek). Behaviour wrt.
642 environment variables depended on the way the daemon was started.
643
6442.0.0 (31-10-2004):
645 * The deployment system has been rewritten from scratch in
646 a cleaner and more modular and extensible way. Deployment
647 of native packages is supported now.
648 * The build system has been revised. Building outside the source
649 directory is supported now.
650 * Support for checksumming of prelinked executables / libraries
651 has been added.
652 * The configure script now checks for the SSP/ProPolice patch in GCC,
653 and enables it if present.
654 * The install-boot option in samhain-install.sh has been fixed
655 (use absolute paths for sbin utilities).
656 * A nagios plugin (scripts/check_samhain.pl) has been added.
657 * The LSB (Linux Standard Base) init script has been fixed (the output
658 was incorrect).
659 * Fetching of built binary packages has been
660 fixed ($(PACKAGE)->@install_name@).
661 * For files in proc, the timeout has been reduced, and no error
662 messages are issued upon timeout.
663 * A function has been added to print out full details for missing
664 files if encountered while in sh_files().
665 * The reporting for SuidCheck has been fixed (incorrect policy
666 noticed by JiM).
667 * On Linux, SuidCheck does not report on files marked as candidates
668 for mandatory locking (group-id bit set, group-execute bit cleared).
669 * Fix for oracle init script (by Matt Warner)
670
6711.8.12b (11-10-2004):
672 * fix bug in MSG_MSTAMP (%ld -> %lu)
673 * fix bugs in sh_suidchk.c (%ld -> %lu), check fopen for NULL,
674 mkdir mode for quarantine directory
675 * fix the fix for modlist_lock search in System.map
676
6771.8.12a (01-10-2004):
678 * fix bug in samhain-install.sh.in (only occurs on Solaris), reported
679 by J. Roland
680
6811.8.12 (27-09-2004):
682 * fix compile bug with --enable-static + --with-database=postgresql
683 * fix search for modlist_lock in System.map
684 * password auth for yule command socket (request by D. Kocic)
685 * more info about pending/sent commands to clients
686
6871.8.11 (30-08-2004):
688 * fix static linking on Linux by use of replacement routines from
689 uClib - however, this means, there is no NIS support anymore
690 * new option AddOKChars=... to modify the set of characters for
691 filenames considered 'obscure'
692 * new option HardlinkOffset=... to specify an offset from the canonical
693 hardlink count for a directory
694 * fix some warning with HP 11.23 native compiler
695 * fix minor OpenBSD portability problems (EIDRM, compiler warning)
696 * samhainrc.5, samhain.8: updated the man pages
697 * sh_unix.c, sh_files.c: ignore 'no user/group' and 'obscure name'
698 for AllIgnore
699 * sh_kern.c: fix 'update' to display modifications
700 * sh_kern.c: fix bug with IDT check (spurious alerts b/o uninitialized
701 fields)
702 * stealth kernel modules: fix for linux 2.6, fix
703 redefine of KERNEL_VERSION
704 * warn about stealth kernel module problem with 2.6 in manual
705 * sh_unix.c: remove some cruft
706 * fix a typo in the manual (noticed by J. Rubin)
707 * configure.ac: re-order output from libprelude-config (required
708 for static linking - problem reported by E. Neber)
709 * kern_head.h, kern_head.c: fixes for Linux 2.6 kernel
710
7111.8.10b (13-07-2004):
712 * fix incorrect usage of 'retry_msleep()' in sh_kern.c (reported
713 by Pat Smith)
714
7151.8.10a (13-07-2004):
716 * depend-gen.c: fix for FreeBSD 'make' which does not understand
717 the dependencies ... (problem reported by David Thiel)
718
7191.8.10 (13-07-2004):
720 * sh_unix.c/sh_unix.h: fix defaults for 'GrowingLogFiles' policy
721 (bug report by VZoubkov)
722 * fix some warnings (unreachable statement) with HP-UX native compiler
723 * kern_check.c: silence warning about 'sendfile' for 4.10
724 (noticed by Ryan Beasley)
725 * modify depend-gen.c to ignore sh_gpg_chksum.h
726 * add a non-plaintext version of GPG_HASH (sh_gpg_chksum.h)
727 * .. and for fingerprint
728 * sh_suidchk.c: fix some compiler warnings on solaris
729 * allow commas to separate multiple entries in a RedefXXX= directive
730 * replace sleep/usleep with nanosleep wrapper function
731 * replace alarm() for read timeout with select() in sl_read_timeout
732 (should fix bug reported by Scott Kelley)
733 * increase lstat/open timeout to 6 sec
734
7351.8.9 (16-06-2004):
736 * made 'no action specified' error message more informative
737 (suggested by Stephen Gill)
738 * fix memory leak in mysql sh_database_query() (bug report by Dejan)
739 * remove some cruft from the code
740 * sh_files.c: check MacOS X resource forks (idea from Osiris)
741 * sh_files.c: no hardlink check for MacOS X
742 * sh_util_ask_update: fix bug with no terminal in non-interactive mode
743 (report and debug data by Kris Dom)
744 * manual refactored
745 * fix redundant messages when updating with suidcheck
746 * allow interactive update for suid files
747 * don't remove the TZ environment variable to guard against
748 misconfigured hosts
749 * also use gethostname if uname returns possibly truncated name
750 * fix improper file descriptor handling in sh_mail.c (bug report
751 by Alex Weiss)
752 * cleanup MBLK cruft
753 * use SH_ALLOC/SH_FREE in sh_prelude.c
754 * update sstrip to Version 2.0
755
7561.8.8 (25-05-2004):
757 * fix compilation problem on AIX 5.2 (nameser_compat.h; report by
758 Tim Evans and Ian McCulloch)
759 * don't check for trusted paths on Cygwin
760 * add Windows HOWTO written by Kris Dom
761 * kern_check.h: extend FreeBSD syscall table for 5.x
762
7631.8.7a (03-05-2004):
764 * sh_mail.c: fix subject length
765 * sh_mail.c: fix the sh.mailNum.alarm_last fix (report by Kris Dom)
766 * sh_utils.c: sh_util_ask_update(): fix ISO C conformance bug
767 (compile problem reported by Kris Dom)
768
7691.8.7 (01-05-2004):
770 * sh_mail.c: fix incorrect count of sh.mailNum.alarm_last, causing
771 empty mails (introduced with segfault fix in 1.8.6, report
772 by Kris Dom)
773 * sh_utils.c: sh_util_ask_update(): check whether stdin is a terminal,
774 try to reopen on controlling terminal if not
775 * sh_utmp.c: fix order of options (problem report by Uri)
776 * sh_files.c: sh_files_chk(): set tmp = NULL at end of loop
777 (may cause segfault on null dereference for missing files)
778 * sh_unix.c: patch by Marc Schütz (order of sh_unix_getinfo_type,
779 sh_unix_getinfo_attr)
780 * don't use dh_installmanpages in 'make deb' (samhain/yule conflict
781 reported by xavier)
782 * on HP-UX, define _XOPEN_SOURCE_EXTENDED in sh_mail.c and sh_tools.c
783 (suggested by Kris)
784 * include nameser_compat.h in sh_mail.c (for MacOS X,
785 suggestion by jna)
786 * sh_utmp.c: fix time for logout events (reported by Erich
787 van der Velde)
788
7891.8.6 (15-04-2004):
790 * add CL option to set threshold for prelude and RDBMS
791 * sh_mail.c: fix bug with MailSubject option (segfault on NULL pointer
792 dereference; reported by Micha Silver)
793 * fix compiling with --disable-encrypt (reported by Pat Smith)
794 * fix minor problem in scheduler (don't return before all schedules
795 are tested, to set last_exec correctly)
796
7971.8.5 (05-04-2004):
798 * fix bugs in sh_utmp.c (unlinking of list head); may fix an OpenBSD
799 problem (endless loop; report and debugging aid by Joe MacDonald)
800 * fix hardlink check (null dereference in error message, segfaults
801 on solaris - noticed by Bob Bloom)
802 * sh_suidcheck: don't truncate quarantined file if nlink > 1
803 * fix Install.sh (no --seperate-output with --radiolist); patch by
804 Greg Kimberly
805
8061.8.4 (17-03-2004):
807 * add Prelude patch by Patrice Bourgin
808 * add license statement to sh_mounts.c, sh_userfiles.c after
809 receiving a clarifying e-mail from Cian Synnott
810 * support UsePersistent = no for Oracle (problem spotted and fix
811 tested by Michael Somers)
812 * fix bug in samhainadmin.pl
813 * sh_gpg.c: describe type of gpg error (if any)
814 * fix persistent connections with postgresql (reported by
815 Erwin Van de Velde)
816 * prelude: local 'meaning' shadows global in sh_prelude_alert
817 (spotted by David Maciejak)
818 * uname: workaround for cases where nodename would be a possibly
819 truncated FQDN (problem reported by Cian Synnott)
820 * re-write parts of sh_kern.c, store kernel info in baseline database
821 -> no need to recompile after kernel upgrade
822 * modify timeouts in sh_unix_getinfo, add timeout warning
823 * change handling of dangling symlinks (store in db)
824 * fix typo with MSG_FI_OBSC2 (double slash)
825 * remove redundant operation in sh_utils_safe_name
826 * fix occasional random start bytes of long messages in
827 sh_error_string (sl_strlcat -> sl_strlcpy)
828 * provide details for missing files (as for added files)
829 * remove duplicate message for no such group/user
830 * add fixes for samhain.oracle.init (supplied by Michael Somers)
831 * fix date insertion for Oracle (fix by Michael Somers)
832 * manual: fix incorrect statement about RPM (noticed by
833 Lars Kellogg-Stedman)
834
8351.8.3 (02-02-2004):
836 * add a HOWTO-client+server-troubleshooting document
837 * fix another bug with SIGUSR2 (suspend mode)
838 * new option SetBindAddress (--bind-address=...) to force
839 interface for outgoing connections on multi-interface box
840 * don't link against libgmp if not required (i.e. standalone)
841 * test for ext2fs/ext2_fs.h or linux/ext2_fs.h
842 * new make targets 'emerge' and 'tbz2' for gentoo
843 * update rules.deb.in based on the Debian package
844 by Javier Fernandez-Sanguino
845 * updated config.guess, config.sub to version 2002-09-05
846 * external command: report failure only once
847 * console: reset failure status after success
848 * README.UPGRADE: explain 1.7.x <-> 1.8.x client/server compatibility
849 * use persistent connection to database by default
850 * option UsePersistent=no to switch off persistent connection
851
8521.8.2 (19-01-2004):
853 * sh_userfiles.c: new option UserfilesCheckUids (requested)
854 * sh_error.c: server: don't log to logfile before dropping root
855 * new script scripts/samhainadmin.pl (administrative tasks for
856 signed config/database files)
857 * add changes code to log_msg for reports on modified files
858 * change default log threshold to 'mark', as 'none' tends
859 to confuse new users
860 * faster response time for SIGUSR2
861 * revised (mostly backward-compatible) message classes
862 * fix missing check of mailTime in server select loop
863 * add support for libprelude (version 0.8.10)
864 * fix format for MSG_E_GRNULL (reported by Stefan Hudson)
865 * fix Bourne shell incompatibility (export) in samhain-install.sh
866 (first reported by David Thiel)
867 * fix typo in spec file (first reported by Christian Vanguers)
868 * remove some cruft (signal handler, memory handling)
869 * return from sigterm handler, rather than exit directly
870 (re-entrancy problem causes more problems than it's worth)
871
8721.8.1 (03-12-2003):
873 * fix gmp detection (problem pointed out by Nix)
874 * fix/improve the error message if test compiling with mysql fails
875 * new CL option --interactive for interactive db update
876 * fix some compiler warnings from IRIX MIPS compiler
877 * kern_head.h, kern_head.c: option to disable IDT check
878 * kern_head.h, kern_head.c: update kernel syscall table (2.4.20,2.6)
879 * sh_utmp.c: count number of logins (request by Erwin Van De Velde)
880 * change username -> userid, remove (long) userid (bug noticed
881 by Erwin Van De Velde)
882 * emit ADDED message for new SUID/SGID files
883 * add trailing slash to excluded directory if there is none
884
8851.8.0a (04-11-2003):
886 * sh_error.c: remove two debug printf's
887
8881.8.0 (31-10-2003):
889 * manual: make ps file fit on both a4 and letter paper
890 * sh_socket.c, sh_socket.h, sh_forward.c: socket interface
891 to send (quit/reload) commands to clients
892 * sh_forward.c, configure.ac: enable build with libwrap
893 (Wietse Venema's TCP Wrappers library)
894 * sh_ignore.c, sh_ignore.h, sh_files.c, sh_hash.c, sh_readconf.c:
895 new option to suppress messages for new and/or deleted files
896 * samhainrc.aix5.2.0: contributed by Christoph Kiefer
897 * samhain.c: fix compile warning on solaris (noticed by Ian Hunt)
898 * sh_database.c: undef debug code for oracle
899 * samhain.oracle.init: contributed by Joern Michael Krueger
900 * configure.ac, sh_utils.ac, Makefile.in, sh_modules.c,
901 sh_cat.c, sh_cat.h, sh_mounts.c/h, sh_userfiles.c/h:
902 check-mounts and userfiles modules contributed by eircom.net
903 * sh_utils.c: fix off-by-one bug in sh_util_compress()
904 * sh_forward.c, sh_tools.c, configure.ac:
905 version 2 client/server protocol
906 * sh_mail.c: add %S to include severity in subject (user request)
907 * sh_suidchk.c, 1093: fix warning about unused var 'flags' on FreeBSD
908 * samhain.h, sh_unix.h, sh_unix.c: extern inline -> static inline
909 for --enable-ptrace
910 * samhain.c: lower priority for 'uninitialized module' message
911 * sh_entropy.c: lower priority for message if /dev/random blocks and
912 /dev/urandom is available
913 * improved error messages in sh_readconf.c
914 * print system error message for getpwuid, getgrgid
915 * fix missing module init after SIGHUP (noticed by Cian Synnott)
916
9171.7.12 (13-10-2003):
918 * sh_mail.c: fix buffer overflow in mail handler (introduced in 1.7.10)
919 thanks to bug reports by Jason Martin and Matthew P. Cox
920
9211.7.11 (01-09-2003):
922 * samhain.c, samhain.h, sh_unix.c, sh_forward.c, sh_html.h:
923 - change SIG_USR1 to switch between dbg on/off
924 - change SIG_USR2 to switch between suspend on/off
925 - fix CLT_ILLEGAL to actually work
926 - introduce new state CLT_SUSPEND
927 - force reauthentication after suspend
928 * slib.c: change MAXFD from FOPEN_MAX (16) -> 1024
929 * sh_suidchk.c: better AIX fs detection (Christoph)
930 * sh_entropy.c: increase buffer size for unix entropy gatherer
931 (problem reported by D. Danielson)
932 * default config files: add lots of comments, list more options
933 * sh_error.c: set default severities to 'crit'
934 * sh_readconf.c, sh_cat.c, sh_cat.h: stricter check on config
935 file syntax, issue warnings (triggered by C. Kiefer)
936 * Makefile.in: handle depend-gen errors more gracefully
937 * sh_err_console.c: fix bug in enable_msgq (reported by F. Behrens)
938 * configure.ac: workaround for mysql_config weird output
939 (reported by G. Faron)
940 * sh_unix.c, sh_tiger0.c: check IO limit during read of large files
941 * depend-gen.c: close streams before attempting to rename (Cygwin)
942 * Makefile.in: fail gracefully if depend-gen fails
943 * sh_database.c: sh_database_query(postgresql): fixed missing SL_ENTER
944
9451.7.10 (27-07-2003):
946 * FreeBSD init script: define $pidfile (reported by D. Thiel)
947 * sh_unix.c, sh_unix.h: fix compile error on AIX 4.2
948 * sh_schedule.c: fix bad array size
949 * samhain.c: fix pid_t <> int casts
950 * sh_kern.c: fix repetitive messages
951 * configure.ac: try to bootstrap if TIGER192 not supported by gpg,
952 provide a detailed error message
953 * configure.ac: try harder to locate mysql
954 * docs/Changelog: retroactively add release dates, if known
955 * sh_mail.c: fix potential message truncation in mailer
956 * sh_unix.c, samhain.c, samhain.h: make --enable-ptrace more portable
957 * sh_readconf.c: fix segfault (dereference of uninitialized pointer)
958 if --with-gpg and --enable-stealth are used together (reported
959 by Anthony Caetano)
960 * sh_unix.c, samhain.c, sh_calls.c: fix problems with descriptive
961 error messages (larger GLOB_LEN, stat fills aud_err_message)
962
9631.7.9 (30-06-2003):
964 * sh_err_log.c: fix segfault on SIGABRT (dereference of freed memory),
965 problems with SIGABRT noticed by Brian and Alf B Lervåg
966 * deploy.sh.in: fix some bugs (found by Alf B Lervåg)
967 * scripts/chroot.sh: fix typo (found by Alf B Lervåg)
968 * configure.ac (khide): search also for 'd sys_call_table' (noted by
969 cuek_saja)
970 * strip whitespace before checking gpg checksum (noted by D. Thiel)
971 * manual (faq section): explain how to stop console output
972 * Makefile.in: fix re-naming of yule with --enable-install-name
973 * HOWTO-client+server.html: fix typo (noted by xavier renaut)
974 * configure.ac: escape '-' in awk regex (required by GNU awk 3.1.1)
975
9761.7.8 (28-05-2003):
977 * sh_unix.c: new mlock implementation with reference count
978 and page alignment (fix for solaris problem)
979 * kern_head.c: search also for 'xxxxxxxx d sys_call_table'
980 * sh_html.c: write status comment (for Beltane 2)
981 * add CL option --delimited for comma-delimited signature database dump
982 * sh_mail.c: check exit status of push_list to fix counting bug
983 (bug reported by Alan Moore)
984 * configure.ac: add error message to --with-libs
985 * fix spelling of $DAEMON in init script (noted by C. Grigoriu)
986 * fix missing initgroups()
987
9881.7.7 (06-05-2003):
989 * sh_forward.c: fix bug if compiled with --enable-udp, but disabled
990 in config file (found by Andy OBrien)
991 * sh_database.c: sh_database_entry(): size -> c_size (two places)
992 to fix writing of '\0' to arbitrary places :(
993 (problem pointed out by Stefan Giesen)
994 * profiles/*/configopts: fix --with-base -> --enable-base
995
9961.7.6 (24-04-2003):
997 * sh_forward.c, entry.html, head.html: fix/additions by Stefan Giesen
998 * fix samhain_hide for the O(1) scheduler used by RedHat:
999 configure.ac, acconfig.h: check for next_task in struct task_struct
1000 samhain_hide.c: use find_task_by_pid if no next_task in task_struct
1001 * samhain_erase.c: add MODULE_LICENSE("GPL") to fix warning
1002
10031.7.5 (15-04-2003):
1004 * sh_cat.c, sh_forward.c, sh_hash.c: fix double 'msg' tag
1005 * manual: point out the bmaxdata problem on AIX in faq section
1006 * trustfile.c: don't check symlinks (permissions of directory count)
1007 * sh_schedule.c: fix problem with daylight saving switchover
1008 * sh_samhain.c: close all open fd's >2 before reading the conf file
1009 * sh_unix.c: fix dereferenced NULL pointer when exiting on non-existing
1010 user
1011 * sh_forward.c: fix dereferenced NULL pointer when exiting on udp error
1012 * sh_forward.c: place timestamp code before select() timeout handler
1013 * fix incorrect class of timestamp messages (conflict with manual)
1014 * sh_readconf.c, sh_forward.c: new config option SetStripDomain
1015 * configure.ac: add warning if /lib/modules/`uname -r`/build/include
1016 not found
1017 * samhain_hide.c: adapt for RedHat 2.4 kernel (fetch sys_call_table
1018 address from System.map)
1019 * sh_err_syslog.c: fix for Solaris
1020 * samhain.spec.in: strip REQ_FROM_SERVER from config file install path
1021
10221.7.4 (21-03-2003):
1023 * configure.ac: fix bug in defargs (--with-base > --enable-base)
1024 * aclocal.ac: detect unsupported options
1025 * kern_check: add syscalls, skip unused syscalls
1026 * fix Manual (--enable.../--with... inconsistency)
1027 * add two HOWTOs (signed files, server/client)
1028 * moved manual into new subdirectory docs/
1029 * add admin scripts by S.Bailey/M.Redinger
1030 * option to have a version string in db file
1031
10321.7.3 (23-02-2003):
1033 * samhain-install.sh: use yule user key for signing on install
1034 * fix a bug in sh_err_console.c (attempted write to const char)
1035 * sh_gpg.c: if server, always use ~unprivileged_user/.gnupg
1036 * Makefile.in: make target 'trustfile' depend on config.h
1037 * configure.ac: don't use install_name before it is defined ...
1038 * sh_tiger0.c: fix bug in checksum computation introduced in 1.7.2
1039 * samhain.c: make sure daemon cannot be forced into 'update' mode
1040 * sh_hash.c: remove AIX workaround (AIX has been fixed meanwhile)
1041
10421.7.2 (04-02-2003):
1043 * sh_kern.c: use sys_call_table address from System.map
1044 * fix for reserved SQL keyword 'group'
1045 * add AC_SYS_LARGEFILE to configure.ac
1046 * allow separate client-specific log files for server
1047 * sstrip.c: compile sstrip code only for i386
1048 * sh_unix.c: closeall: don't close trace file
1049 * slib.c: don't trace sl_is_suid (leads to recursion in trace handler)
1050 * samhain-install.sh.in: fix detection of LSB compliant systems
1051 * sh_tools.c: get_client_*_file: lstat -> stat to allow symlinks
1052 * sh_forward.c: sh_forward_do_write: set O_NONBLOCK for fd
1053 (may block otherwise, for no good reason apparently ...)
1054 * samhain.spec.in: replace %configure with ./configure
1055 * sh_unix.c: re-write signal handling (use __malloc_hook et al. to
1056 check whether we are in the middle of a free/malloc/realloc/memalign)
1057 * sh_unix.c: use new safe_logger() function to log from signal handler
1058 * sh_err_log.c: fix xml
1059 *
1060 * fix Makefile.in to exit non-zero on compile failure
1061 * database init: create index on log_host, entry_status
1062 * sh_suidchk.c: fix path building
1063 * sh_tiger0.c: read larger blocks
1064 * sh_hash.c: cast inode to UINT32
1065 * sh_tools.c: check that config/database files size fits in uint
1066 * sh_error.c: export flag_err_debug to avoid unnecessary calls
1067 * sh_unix.c: save the open() call in sh_unix_getinfo_attr()
1068 * profiles/redhat_i386/bootscript: add # description field
1069 * deploy.sh.in: set owner + permissions for files in yule_filedir
1070 * profiles/debianlinux_i386: fix bootscript
1071 * Makefile.in: fix deploy file lists and targets (include init+scripts)
1072 * MLOCK GOOD/BAD -> SL_FALSE/SL_TRUE
1073 * sh_mail.c: GOOD/BAD -> SL_FALSE/SL_TRUE (AIX sys/param.h)
1074 * sh_err_syslog.c: split long messages rather than truncating
1075 * sh_error.c: allocate msg to fix truncation limit
1076 * sh_unix.c: closeall fd's >= 3 in non-daemon mode (inherited
1077 filedescriptors may exceed FOPEN_MAX, causing problems in
1078 sl_open_file)
1079 * sh_err_console.c: avoid stdio
1080 * trustfile: dirz: make swp[] static
1081 * slib.c: speed up sl_strlcat
1082 * clean up some bad heap allocation (PATH_MAX+(1|2) -> PATH_MAX)
1083 * remove some unused code
1084 * slib.c: support long long int in the snprintf replacement
1085 * configure.ac: new configure macro to check whether sa_sigaction works
1086 * Makefile.in: make sstrip, encode dependent on config.h
1087
10881.7.1a (08-01-2003):
1089 * fix a syntax error in samhain-install.sh.in
1090
10911.7.1 (07-01-2003):
1092 * search runlevel scripts in ./init or ./
1093 * handle all distro-specific Linux runlevel script issues
1094 within a single script
1095 * support install-boot on Yellow Dog Linux and Slackware
1096 * samhain-install.sh: fix a bug for unknown Linux
1097 ('"' not closed, DVER not set)
1098 * samhain-install.sh: check for /etc/yellowdog-release
1099 * sh_database.c: fix missing entry for 'userid' in attr_tab[]
1100 * fix debian.rules.in (disable sstrip)
1101 * update make targets: 'srpm', 'srpm-dist', 'rpm'
1102 * check for zlib if mysql is used
1103 * workaround for NetBSD bug with libresolve
1104 * fixed problems with spec files
1105
11061.7.0 (22-12-2002):
1107 * improved spec files (Andre Oliveira da Costa <brblueser@uol.com.br>)
1108 * sh_unix.c: fix a dereferenced static pointer in tf_trust_check
1109 * runlevel scripts: remove pid file after stop
1110 * make the data directory read-only for the daemon
1111 * treat 'localhost' specially in MX resolver
1112 * sh_err_log.c: set sh.flag.log_start == TRUE after writing </trail>
1113 * deploy.sh.in: fix quoting (fix by Simon Bailey)
1114 * slib.c: make sl_get_euid et al. behave well if uids not stored
1115 * trustfile.c: use euid = uid(SH_IDENT) if server
1116 * sh_mail.c: include an MX resolver
1117 * Makefile.in: install-user routine for user installation
1118 * have yule drop root
1119 * sh_tools.c: open_temp use logdir if server
1120 * unified options for runlevel script
1121 * HP-UX, IRIX runlevel scripts
1122 * AIX inittab entry
1123
11241.6.6 (13-12-2002):
1125 * configure.ac: solaris cc -O2 -> -xO2
1126 * sstrip.c: avoid alpha architecture
1127 * profiles/solaris/configopts: no --enable-static
1128 * sh_forward.c: sh_forward_req_file: copy argument to local array
1129
11301.6.5 (04-12-2002):
1131 * sh_utmp.c: set userlist = NULL in sh_utmp_end ()
1132 * sh_unix.c: do not assume that environ is sane
1133 * exit handler: write </trail>
1134 * sh_log_file(NULL): test sh.flag.log_start != S_TRUE
1135 * FreeBSD rc script does not blindly accept content of pid file
1136 * configure.ac: allow 'localhost' for log server
1137 * sh_calls.c: retry_connect: ntohs (port)
1138 * testrun_2[abc].sh: --with-logserver=localhost for client
1139
11401.6.4 (12-11-2002):
1141 * sh_tools.c: fix error when escaping '=<'
1142 * fix the 'make srpm' target
1143 * deploy.sh.in: avoid that client is named 'yule'
1144 * define memset to sl_memset
1145 * fix type cast of uid_t, gid_t
1146
11471.6.3 (31-10-2002):
1148 * fix options for Sun/Solaris native compiler
1149 * sh_unix.c: MSG_FI_LIST (line 2333): cast theFile->size to fix error
1150 * test sstrip on freebsd
1151 * default config file for freebsd
1152 * make target to build .deb packages
1153 * sh_readconf.c: fix bug in error message
1154 * samhain.c, sh_suidchk.c: fix initialization of suidchk
1155 * samhain-install.sh.in: don't remove config file by default
1156 * samhain-install.sh.in: support complete de-installation
1157 * samhain-install.sh.in: add support for Gentoo, FreeBSD, and Solaris
1158 * samhain-install.sh.in: check more paths
1159 * sh_unix.c: fix sys_siglist declaration [NetBSD portability issue]
1160 * sh_calls.c: save error message in retry_lstat()
1161
11621.6.2 (04-10-2002):
1163 * make target to build rpms
1164 * update samhain.spec.in, samhain.startRedHat
1165 * support DESTDIR, as in 'make DESTDIR=/what/ever install'
1166 * explicitely set -fno-omit-frame-pointer b/o gcc bug
1167 * mv configure.in to configure.ac to benefit from autoconf wrapper
1168 * sh_modules.c, sh_modules.h: add mod_reconf() to run at SIGHUP
1169 * slib.c: fix debug messages (no msgs for dlogActive <= 1)
1170 * sh_schedule.c, samhain.c, sh_suidchk.c:
1171 scheduler may accept multiple schedules
1172
11731.6.1 (04-09-2002):
1174 * sh_schedule.c: bugfix (executes only after first day)
1175 * rm obsolete WITH_TRACE stuff
1176 * new dlog() function for debug logging
1177 * some more descriptive error messages
1178
11791.6.0 (27-08-2002):
1180 * omit the -fomit-frame-pointer option (bugs in some gcc versions ?)
1181 * sh_error.c: fix escape mode when logging to database
1182 * sh_forward.c: fix error (twice escape) in recv_syslog_socket
1183 * sh_tools.c: change escape mode for server-received data
1184 * sh_mem.c: change ulong -> size_t in sh_mem_malloc()
1185 * configure.in: fix localstatedir if --prefix=USR
1186 * sh_hash.c: snprintf() -> sl_snprintf()
1187
11881.5.5 (07-08-2002):
1189 * sh_err_log.c: fix incorrect xml syntax for client messages
1190 logged by server
1191 * sh_err_log.c: fix incorrect '</trail>' entries on client EXIT
1192 * sh_files.c: introduce file_class_next
1193 this fixes the problem that a policy for the directory
1194 inode erroneously becomes a policy for the directory itself.
1195
11961.5.4 (17-07-2002):
1197 * sh_hash.c: fix buffer overflow with (micro-)stealth
1198 * sh_database.c: set path[] 1024 -> 12288
1199 * sh_database.c: set query[] 2048 -> 16383
1200 * sh_database.c: set values[] 1024 -> 16383
1201 * sh_forward.c: larger limit for message size (16 kB)
1202 * trustfile.c: set MAXFILENAME 2048 -> 4096
1203 * fixed a bug in the handling of filenames with embedded newlines
1204 * sh_files.c: fix missing sh_util_safe_name() in debug output
1205 * --with-sender can specify a full address
1206 * fix xml log in a backwards compatible way
1207
12081.5.3 (03-07-2002):
1209 * fix combination of stealth and sql logging
1210 * fix some more places where invalid UIDs/GIDs trigger errors
1211
12121.5.2 (01-07-2002):
1213 * include solaris config file from (sean [at] boran d.o.t com)
1214 * test for files/dirz defined twice in the configuration file
1215 * option to disable reverse lookup on outbound connections
1216 * option to use socket peer as client name (with name resolving)
1217 * sh_html.c: fix an HTML bug (twice </head><body>)
1218 * sh_suidchk.c: fix warning on AIX b/o dirname()
1219 * allow logging server -> syslog if yule is NOT configured to
1220 receive syslog messages
1221 * define PRIi64 to "lld" if undefined
1222 * invalid UIDs: use gid/uid as name, error level SeverityNames
1223 * minor fixes for connect_port
1224 * sh_hash.c: flush output of db listing before _exit()
1225 * configure.in: fix incorrect default ${install_name} for server
1226 * configure.in: try harder to find mysql.h / libpq-fe.h
1227 * sh_files.c: sh_files_checkdir:
1228 closedir() early to not exhaust OPEN_MAX
1229
12301.5.1a (30-05-2002):
1231 * fix missing LSB init script
1232
12331.5.1 (27-05-2002):
1234 * fix '-t update' option
1235
12361.5.0a (23-05-2002):
1237 * fix configure.in
1238
12391.5.0 (22-05-2002):
1240 * include solaris nosuid patch from (nathoo [at] co d.o.t ru)
1241 * similar fix for bsd nosuid
1242 * speed up -t update
1243 * convert manual to DocBook, distribute html and ps
1244 * fix some more problems with configure.in, Makefile.in
1245 * fix testsuite, add tests for udp, mysql
1246 * MSG_TCP_MSG: host -> remote_host
1247 * convert to autoconf 2.53
1248 * make c_bits.sh exit with status 0
1249 * sh_database.c #include "mysql.h" --> <mysql.h>, ditto libpq-fe.h
1250 to avoid dependency tracking problems
1251 * samhain.c remove *YULE* #ifdefs
1252 * acconfig.h remove *YULE* #undefs
1253 * samhain.c: procdirSamhain: lstat --> stat (allow symlink)
1254 * configure.in: add checks for correct user input
1255 * Makefile.in: add automatic dependency tracking
1256 * depend-gen: tool to figure out dependencies
1257 * chkconfig comments in redhat start scripts
1258
12591.4.8:
1260 * sh_database.c: fix missing attr_old, attr_new, (from)host columns
1261 * configure.in, Makefile.in: fix an error in the configfile
1262 definition with REQ_FROM_SERVER
1263 * sh_err_console, sh_err_log: avoid recurrent failure messages
1264 * timeout on read from files (/proc)
1265 * fix errrors with setjmp/longjmp/alarm
1266 * fix memory leak in server (~20 byte/file download in sh_tools, 930)
1267 * check gpg signature for files downloaded from server, add a
1268 regression test
1269 * fix chown in solaris bootscript
1270 * provide second scheduler for file check
1271 * provide scheduler for file check
1272 * provide scheduler for SUID check
1273
12741.4.7 (08-04-2002):
1275 * make daemon control LSB-compliant (arguments, exit status)
1276 * set log_ref = 0 for server messages
1277 * boolean option SetDBServerTstamp to disable entering server
1278 timestamps for received client messages into database
1279 * sh_suidcheck: check for "nosuid" mount option if getmntent is used
1280 * fix logrotate script in manual (reported by Scott Worthington)
1281 * don't strip numerical IP addresses
1282 * check item->status_now != CLT_TOOLONG in client_time_check()
1283 * set log_host to client in db client message
1284
12851.4.6a (20-03-2002):
1286 * define prefix in deploy.sh
1287
12881.4.6 (19-03-2002):
1289 * modify samhain_hide.c to hide processes on new Linux kernels
1290 * better error diagnostics in kern_head.c
1291 * fix compile error in all_items ()
1292 * check length of install-name in enable-khide (max is 15)
1293 * define exec_prefix in deploy.sh.in
1294 * make configure a bit more cross-compiler friendly
1295
12961.4.5 (07-03-2002):
1297 * Make sure missing file is reported even if ptr->reported == S_TRUE
1298 because the file has been added.
1299 * propagate 'reported' flag from sh_files_checkdir() into file list
1300 * close checkfd in sh_gpg_check_file_sign()
1301 * sh_derr(): kill(parent, SIGCONT) after ptrace(PT_DETACH,...)
1302 * use sh.srvcons.name in dbg() to get debugging info from daemon
1303 * option to log file timestamps with localtime instead of GMT
1304 * comment out MSG_FI_ADD in sh_dirs_chk () - obsoleted by mandatory
1305 sh_files_filecheck(directory) that triggers MSG_FI_ADD in sh_hash.c
1306 * set ptr->reported = S_FALSE; for reappeared files in sh_files_chk()
1307 to make sure re-disappearing will get reported
1308 * new function sh_hash_set_missing() to remove file record
1309 without (duplicate) 'missing' message
1310 * make sure all items are reported for added files
1311 * fix stealth mode with sh_kern (encode sh_ks.h -> sh_ks_xor.h)
1312 * clarify in the documentation which gpg options to use for signing
1313
13141.4.4 (11-02-2002):
1315 * check that parent process has exited before writing PID file
1316 * promote MGG_W_CHDIR to SH_ERR_ERR
1317 * add error message to sh_unix_testlock
1318 * fix missing _() macro in sh_aud_set_functions
1319
13201.4.3 (05-02-2002):
1321 * don't check attributes for symlinks (may cause device access)
1322 * add USE mysql; USE samhain; to samhain.mysql.init
1323 * point out the MessageHeader/mysql problem in manual
1324 * add -lz to LIBS for mysql
1325 * strip after install, avoid double strip
1326
13271.4.2 (27-01-2002):
1328 * support for EGD
1329 * fix some more problems with install-deploy / deploy.sh
1330 * fix a bug in profiles/suselinux_i386/bootscript (INSTALL_NAME_)
1331 * fixed the 'external logging' test (init rather than none in rc file)
1332
13331.4.1:
1334 * SuSE: include run level 4+5
1335 * install location of hiding kernel modules changed - some insmod
1336 variants do not test for /lib/modules/$(uname -r)/module_name.o
1337 * new make targets 'install-deploy', 'uninstall-deploy'
1338 * fixed make targets 'deploydir', 'deploydirfast'
1339 * bail on unsupported CL option in deploy.sh
1340 * fix various bugs in deploy.sh
1341
13421.4.0 (16-01-2002):
1343 * fixed missing 'dirname' on Mac OS X
1344 * fixed && tested for/with postgres
1345 * 'user=' -> 'userid=' (reserved word in sql)
1346 * fix the endianess + size of file database; this changes db format
1347 for any non-Linux OS
1348 * --enable-old-format for old (V1.3) database format
1349 * getopt, samhain.c, samhain.h: option -f to loop if not daemon
1350 * sh_hash: list numeric + char data to allow file db update on
1351 server side
1352 * sh_database: modify handling of integer (long) data
1353 * sh_database: datetime in database
1354 * sh_database: hash field in database
1355 * sh_database: rewrite database insert string construction
1356 [use INSERT INTO log (fields) VALUES (values);]
1357 * makefile suse 7.x runlevel entries
1358
13591.3.7 (06-01-2002):
1360 * fix incorrect escape in sh_tools_safe_name
1361 * fix sh_error_handle (4. argument) in sh_extern.c
1362
13631.3.6c:
1364 * fix segfault in sh_database (mysql logging) on solaris
1365
13661.3.6b (03-01-2002):
1367 * fix syntax error ('==') in Makefile.in
1368 * fix configure.in (path for /lib/modules/$(uname -r)/build/include)
1369 * fix sh_kern.c (redeclaration of 'j')
1370
13711.3.6 (03-01-2002):
1372 * sh_kern.c: check integrity of int 80h vector
1373 (SucKIT rootkit - Phrack 58)
1374 * make sure childs in sh_kern are wait()'ed for
1375 * provide start/stop/restart/reload/status interface
1376 * fix a potential segfault (dereferenced NULL pointer) in the server
1377 * use sh_util_flagval for sh_unix_setdaemon
1378 * documentation for logging to SQL database
1379 * configure.in: check for -I/lib/modules/$(uname -r)/build/include
1380 * fix trustfile.c to ignore invalid users
1381 * separate 'make install-samhain' and 'make install-yule'
1382 * separate default log/pid/config files for server/client
1383 - less problems running server and client on same host
1384 * rewrite deploy.sh(.in):
1385 - don't use (make|install) if deploying
1386 - use command line options
1387 - better integrate into server environment
1388 - write install db
1389 * always write a pidfile if daemon
1390 * don't use server's config file as fallback for downloading client
1391 * don't overwrite config file when doing 'make install'
1392
13931.3.5 (28-12-2001):
1394 * fix --enable-message-queue for newer glibc versions
1395 * log to SQL database: implemented, but undocumented yet,
1396 needs to be tested further
1397 * xml: escape received syslog messages
1398 * xml: rename 'time' to 'tstamp'
1399 * make targets: make [un]install-[boot-]yule
1400 (for server-only installation)
1401 * fix samhain_hide.c for 2.4 kernel
1402 * fix sh_kern for updated samhain_hide.c
1403 * new option -j to just list the logfile
1404 * sh_getopt.c: recognize -Dt check for -D -t check
1405 * sh_tiger0.c: fix compiler warning (memmove) on Solaris
1406
14071.3.4 (12-12-2001):
1408 * sh_suidchk.c: option to limit files per second
1409 * sh_unix.c: option to limit (kilo)bytes per second
1410 * sh_hash.c: fix potential problem with '\n' in filename
1411 (not backward compatible if there are filenames with '=')
1412
14131.3.3 (03-12-2001):
1414 * sh_readconf.c, samhain.h, samhain.c, sh_suidchk.c:
1415 option SetNiceLevel to set scheduling priority
1416 * sh_hash.c: bugfix for database listing on Solaris
1417 * taus_seed: bugfix for emergency backup rng seed
1418 * sh_util_safe_name: fix for XML
1419 * sh_utmp_set_login_activate: use sh_util_flagval
1420 * sh_utils.c: sh_util_obscurename: rm 'space' from list
1421 * more backtrace macros
1422 * sh_util_flagval: fix bug to recognize 1/0
1423 * fix test scripts testtimesrv.sh, testext.sh (test.sh 6/5)
1424 * rm stray debug fprintf in sh_srp.c
1425
14261.3.2 (27-11-2001):
1427 * sh_hash.c: fix an error introduced in 1.3.1
1428 * set RLIMIT_CORE to RLIM_INFINITY if --enable-debug
1429
14301.3.1 (25-11-2001):
1431 * slib.c: get backtrace with --enable-debug
1432 * sh_unix.c: allow core dumps when --enable-debug
1433 * configure.in: fix default message queue permissions
1434 * sh_suidchk.c: automatically include suid/sgid files in database
1435 * sh_suidchk.c: check all suid/sgid files
1436 * sh_hash.c: don't insert duplicates when reading the database
1437 * sh_utmp, sh_kern, samhain: fix 1sec offset in timer
1438 * sh_unix.c: don't require /dev/random to be non-world-writeable
1439 * server: fix segfault in zAVLTree.c if avltree == NULL (no clients)
1440 * client: fix segfault on Solaris if path_conf == NULL
1441 * testrun_1b.sh: \(^/.*\) -> \(/.*\) for Solaris sed
1442
14431.3.0 (31-10-2001):
1444 * support compiling with GNU gmp library
1445 * set 3 sec timer on client_time_check to avoid excessive (and
1446 unnecessary) calls under heavy load
1447 * replace sl_strlen with a macro
1448 * store client_t structure in AVL tree
1449 * database format incompatible with previous format, up the magic#
1450 * sh_html.c: cache entry template for speedup
1451 * slib.c: reset islong(double) in sl_printf_count
1452 * sh_hash.c: report on rdev change
1453 * sh_hash.c: print size in 64 bit
1454 * sh_hash.c: save in absolute size types
1455 * sh_unix.c: get values as appropriate type (time_t, dev_t, ...)
1456
14571.2.10:
1458 * update MANUAL
1459 * sh_unix.c: tiger_hash -> tiger_generic_hash
1460 * sh_readcon.c: DigestAlgo option
1461 * sh_tiger0.c: add MD5 and SHA1
1462 * sh_unix.c: fix minor problem with win2k/cygwin
1463
14641.2.9 (17-10-2001):
1465 * fix problem with entry template/empty hostname
1466 * fix MASK_USER_ (MTM -> ATM)
1467 * typo fixed in configure.in (${install_name} -> {install_name})
1468 * bugfix group_old -> size_old in XML code
1469 * skip armor header in signed files
1470
14711.2.8 (29-09-2001):
1472 * Mac OS X: in sh_getopt.c, rename table[] to op_table[] to avoid
1473 obscure compiler warning
1474 * Mac OS X: fix test scripts
1475 * Mac OS X: import newest config.guess, config.sub from ftp.gnu.org
1476 * implement deadtime in syslog recv code to protect against flooding
1477 * sh_err_log: sl_close(fd) if lock|forward fails
1478 * compliance with Filesystem Hierarchy Standard -- Version 2.2 final
1479 * add policies User0, User1
1480 * fix compile problem (FreeBSD) in sh_suidchk.c
1481 * macro to check for debugger breakpoints (linux/i386)
1482 * check for solaris (does not work) in sh_derr (--enable-ptrace)
1483 * option to listen on 514/udp for syslog, drop root
1484 irrevocably if compiled thus
1485 * use (check_mask & MODI_ATM) to decide whether to reset utime
1486 * reset the policy masks on sighup
1487 * option to write XML log messages
1488 * cleanup of message catalog
1489 * modified error messages for BADCONN
1490 * error messages for Rijndael
1491 * block recursive error messages within sh_error_handler()
1492 - would hang the machine ... -
1493
14941.2.7:
1495 * sh_files, sh_utils: check top level directory
1496 * sh_kern, sh_cat, kern_head: check syscall code, fork subprocess
1497 for reading from /dev/kmem
1498 * include /boot in default samhainrc
1499 * change source distribution signing/packaging system
1500 * Makefile, README, MANUAL: adhere to file system standard,
1501 document new locations
1502 * fix a bug in samhain_hide.c
1503
15041.2.6:
1505 * reset list of trusted users before config file re-read
1506 * TrustedUser=... can be a list
1507 * fix severity for files missing from IgnoreAll
1508
15091.2.5:
1510 * include example_pager.pl, example_sms.pl scripts
1511 * explain paging/sms setup in docs
1512 * allow manual exclusion of a directory in suidcheck
1513 * automatically track all file changes
1514 * remove missing files from in-memory database
1515 * add $(KERN) to DEPLOYFILES
1516
15171.2.4:
1518 * log IP address for login/logout events, if supported by the OS
1519 * release block in globerr (callback)
1520
1521-------------
1522
15231.2.3:
1524 * fix problem with reading stealth configuration
1525 * fix a few formats in sh_cat.c
1526 * always use strncmp for file system type check in sh_suidchk.c
1527 (trailing 'fs' may be system specific for some types)
1528 * no bare LF in messages (RFC 2822)
1529 * no lines longer than 998 chars (RFC 2822)
1530 * fix error in testrc_1
1531
15321.2.2:
1533 * make tmp file directory a compile time option
1534 * fix minor bugs in tmp file allocator (potential memory leak,
1535 double slash if root directory)
1536 * obsolete testpipe script removed
1537
15381.2.1:
1539 * fix memory alignment in rijndael-api-fst.c: blockEncrypt()
1540 * fix byte order in HMAC code (compatibility fix for Linux/HP-UX)
1541 * removed a debug fprintf()
1542
15431.2.0:
1544 * fix a bug in the HMAC implementation (thanks to Cesar Tascon
1545 for help in tracking down this one)
1546 * module to check the file system for SUID/SGID files
1547
15481.1.16 (never released):
1549 * fix the recursion depth -1 option as described in the manual
1550 * optional database reload on SIGHUP
1551 * fix a race condition when checking that /dev/random is a charakter
1552 device
1553 * redirect stderr to /dev/null for c_random
1554 (AIX may segfault in netstat...)
1555 * check whether /dev/random is a charakter device in c_random.sh
1556 (we know at least one sysadmin who has set up a fake /dev/random ...)
1557 * don't give NULL as 2. and 3. arg to execve if not Linux - some
1558 Unices (notably Solaris) don't like it
1559 * init ptr = NULL in my_malloc (compiler warning)
1560 * make the bitmask for tests configureable (suggestion by A. Dunkel)
1561 * make the bitmask for tests a static variable
1562 * make (database/logfile/lockfile) path configurable
1563 (to run multiple instances of samhain from an NFS share - on the
1564 wishlist of J. Patton)
1565
15661.1.15 (never released):
1567 * fix minor error in testcompile.sh (rm test_log only at start)
1568 * return from subroutines on sig_terminate == 1
1569 (faster exit on SIGTERM)
1570 * fix re-configuration of addresses
1571 * use sh_util_flagval() in sh_mail_setFlag and sh_kern_set_activate
1572 * SysV message queue as compile option
1573 * config file option to set console device
1574 * removed the pre 1.1.9 code bloat
1575 * don't print the LOGKEY to the console
1576
15771.1.14:
1578 * fix an error in the setup consistency check
1579 * make target to uninstall runtime files
1580 * trustfile.c: check return code of readlink(), fix off-by-one error
1581 * sh_files.c: fix placement of terminator after readlink() call
1582 * sh_files.c: fix a missing set_suid()/unset_suid()
1583 - suid should work, but is not recommended -
1584 * more debug statements in c/s code
1585 * avoid re-entry in sh_unix_sigexit
1586 * put a block around free() and malloc() in wrapper functions
1587 * ditto for glob()/globfree(), regcomp()/regfree(), fdopen()/fclose()
1588 - i.e. avoid corrupting the heap from a signal handler -
1589
15901.1.13:
1591 * optimized the size of the configure script somewhat
1592 * modify the compile and hash test scripts
1593 * read '\0's in sh_unix_getline
1594 * exponential schedule for connection attempts
1595 * make stealth working properly with signed files
1596 - config file should be signed now before embedding in picture -
1597 * fix a race in using signed files
1598 * updated err messages for PWNULL, GRNULL
1599 * add missing shell script for test 11
1600 * add mandatory source file/line info with -p debug
1601 * add mandatory source line info with BADCONN
1602 * fix a latex error in the manual
1603
16041.1.12:
1605 * debug output to console if compiled with --enable-debug and
1606 running as daemon
1607 * make reportonlyonce=true the default
1608 * make sure state changes of a file are always reported, even
1609 with reportonlyonce=true
1610 * Linux kernel modules (samhain_hide, samhain_erase)
1611 * fixed incorrect return value of sh_util_flagval
1612 * fixed an error in sh_files.c: happens with -t init and first
1613 file that is checked does not exist
1614 * revised install/uninstall targets in the Makefile
1615 * module to check for clobbered kernel syscalls (tested on Linux 2.2)
1616 * more diagnostic error messages in sh_gpg.c
1617 * more diagnostic error messages in sh_mail.c
1618 * error in mail.c fixed
1619 (address -> address_list[i] for multiple recipients)
1620 * docs updated, better(?) explanation of signed files
1621 * skip over path in gpg checksum output
1622 * check client name against IP address and FQDN
1623 * fix for --disable-* in config file
1624 * fixed a server crash (MSG_TCP_OKMSG without arg)
1625 if the server is run with debug level output threshold
1626 * catch EAGAIN in sh_gpg.c pipe reader
1627 * fix the 'external logging' test to make it work on BSD
1628 * error message if no local path to init DB
1629 * check for i86/Solaris in configure (vsnprintf prototype)
1630 * make SRP the default
1631
16321.1.11:
1633 * make log file verification more convenient
1634 * fix problem with message classes in stealth mode
1635 * linux: do not try to read file attributes for devices
1636 * handle the root directory correctly (avoid "//" in listing)
1637 * fix problems with blockin on FIFOs/char dev
1638 pointed out by I. Rogalsky (rog@iis.fhg.de)
1639 - open in nonblocking mode for read, then set to blocking
1640 - open file only if regular
1641 * fix alignment in memory profiler
1642
16431.1.10:
1644 * minor code cleanup
1645 * fix an error in trustfile.c (handling of empty/incomplete
1646 group entries in /etc/group, bug report by A. Capriotti )
1647
16481.1.9:
1649 * compatibility option for old behaviour (plain hash instead
1650 of HMAC, ECB instead of CBC mode)
1651 * use CBC rather than ECB mode for encryption
1652 * use HMAC-TIGER for message authentication codes
1653 * handle NULL data in sh_tiger_hash
1654 * option to set syslog facility (default is LOG_AUTHPRIV)
1655 * longer timeout (300 sec) on /dev/random if no /dev/urandom
1656 * fix minor output error with stealth option
1657 * option not to log names of config/database files on startup
1658
16591.1.8:
1660 * fix error in syslog routine
1661 * fix missing 'test' in configure.in
1662 * fix error in replace_tab() in sh_html.c
1663 * fix minor memory leak in sh_util_regcmp()
1664
16651.1.7:
1666 * timeout on read_mbytes (from /dev/random; fallback to /dev/urandom)
1667 * fix for FreeBSD: ut_user -> ut_name in sh_utmp.c
1668 * fix for Alpha: consider $ac_cv_sizeof_unsigned_int_ in configure.in
1669 * fix for Alpha: format string in sh_tiger0.sh
1670 * on Linux, now compiles cleanly with
1671 -Wall -W -Wstrict-prototypes -Wcast-align
1672 * fix problem with recursion depth
1673 (pointed out by Vic <hvicha@mail.ru>)
1674 * #include "sh_tools.h" in sh_unix.c and fix the
1675 --with-timeserver option (reported by Vic <hvicha@mail.ru>)
1676 * place read_port(), MSG_TCP_NETRP outside ifdefs
1677 * close fd/zero skey before execve
1678 * verify client name against socket peer
1679 * ... with configureable error priority
1680 * use strcmp() rather than strncmp() in search_register()
1681 * fix race between lstat() and open() for checksum
1682 (reported by dynamo <dynamo@ime.net>,
1683 JJohnson <JJohnson@penguincomputing.com>)
1684 * enable globbing for filenames
1685 * fix Solaris problem: siginfo_t may be NULL
1686 * fix missing SL_EBADGID in tf_trust_check
1687 * test case for external scripts, fix flushing pipe
1688 * fix a typo in sh_ext_type
1689 * do an fdexec w/checksum on Linux if calling external program
1690 * even safer tmp file creation
1691 * allow db update
1692 * fix compile options for --enable-debug
1693 * fixed a spelling error in the output
1694 * test program for full CS support (config/database download)
1695 * tell which file is searched for cs download
1696
16971.1.6:
1698 * fix bug in sh_readconf_line (segfault on erroneous config lines)
1699
17001.1.5:
1701 * sh_unix.c: sh_unix_getinfo_attr: f -> flags
1702 * use gettimeofday as last resort
17031.1.4:
1704 * fix AIX compiler warning in sh_forward (cast arg1 of sh_tiger_hash
1705 to (char *)
1706 * configure: add static link flags for some more os (from tar)
1707 * don't strip twice (some stupid systems abort)
1708 * fix for reading from /dev/random on non-Linux systems (untested)
1709 * sh_mail.c: end all message lines with \r\n
1710 * stealth: ignore \r, \"
1711 * take out tracing from --enable-debug (presently useless anyway)
1712 * fix some remaining cleartext with debug && stealth combined
1713 * fixed a small memory leak in sh_err_log.c
1714
17151.1.3:
1716 * fixed circular logic in taus_seed() (fallback method only)
1717 * fix for missing _SC_OPEN_MAX (runaway close())
1718
17191.1.2:
1720 * implement message classes
1721 * let server recognize client message severity and class
1722 * secondary log server
1723 * keep database in memory (allows to close file
1724 if retrieved from server)
1725 * encrypt client/server communication
1726
17271.1.1:
1728 * Compilation problems with native Solaris compiler fixed
1729 * fill in euid/ruid variable
1730 * manual.pdf --> MANUAL.pdf
1731 * debug sh_util_formatted()
1732 * http refresh 120sec for server stat page
1733 * trace/debug options
1734 * fixed problem with utmp.c options
1735 * fixed problem with sh_mail_setaddress
1736 * option for custom message header
1737 * fixed problem in compdata
1738 * fixed problem in mail verification
1739 * remove eventual trailing '/' in file names
1740 * fixed problem with report string for modified files
1741 * option to report in full detail
1742
17431.1.0:
1744 * Move error messages to catalog
1745 * Make error message format more uniform
1746 * Wrap sytem calls that could be interrupted by signals
1747 * Warn on append to database
1748 * Option for full details on mod. files
1749 * Option to report only once on mod. files
1750 * Generally speaking, major modifications with potential new bugs
1751
17520.9.5:
1753 * sh_hash.c: fixed erroneous checksum for config file
1754 * sh_html.c: fixed erroneous timestamp (last)
1755 * sh_tools.c: fixed connect_port (set port for cached address)
1756 * sh_srp.c: fix for '00' (='\0') in pw
1757 (last two fixes by Andreas Piesk)
1758
17590.9.4:
1760 * samhain.c: fcntl(1, ..) -> fcntl(2, ..)
1761 * sh_hash.c: copy 12 instead of 10 byte for c_attributes
1762 * 'empty directory' WARN -> INFO
1763
17640.9.3:
1765 * FreeBSD fixes:
1766 - c_random.sh: make sure /dev/random provides something
1767 rather than nothing
1768 - check for <netinet/in.h> and include it
1769 - include <sys/types.h> early
1770 - sh_utmp.c: fixed an occurence of ut_user
1771 - sh_utmp.c: #ifdef HAVE_UTTYPE static char terminated_line #endif
1772 - sh_forward.c: EBADMSG -> ENOMSG
1773 * sh_unix.c: check return value of gethostbyname
1774 * sh_entropy.c: fallback on /dev/urandom if /dev/random blocks for
1775 more than 30 sec
1776 * ... and fix the timestamp format ...
1777
17780.9.2:
1779 * ISO 8601 timestamps
1780 * Bugfix in sh_utmp (timestring overwrite)
1781 * don't use siginfo_t on Linux (garbage as of 2.2.14)
1782 * check for Linux capabilities bug when dropping root
1783 * include README for gcc compiler bug (pointed out by A. Piesk)
1784 * explicitely set -fno-strength-reduce with gcc
1785 * fixed ignoring missing files with the IgnoreAll policy
1786
17870.9.1:
1788 * more ext2flags (breaks backward database compatibility on Linux)
1789 * IgnoreAll policy modified - missing/added files reported with
1790 SeverityIgnoreAll (to handle files that may or may not be present)
1791 * Check all files, not only regular ones
1792 (bug in sh_files, originally introduced because checksum of
1793 regular files only is computed)
1794
17950.9:
1796 * use O_NOATIME if supported
1797 * --with-nocl takes argument (PW to re-enable CL parsing)
1798 * no daemon mode if initializing database
1799 * fixed segfault in yule with 'unknown file type' request
1800 * enlarged MAX_GLOBS 24 -> 32 and made the array linear
1801 * server uses last registry entry for any given client now
1802 * deploy.sh script to deploy clients to remote hosts
1803 * enhanced signal handling: SIGUSR1/SIGUSR2/SIGABRT/SIGQUIT/SIGHUP
1804 * allow y/Y/n/N for login monitoring (in addition to 0/1)
1805 * external logging scripts/programs
1806 * trustfile.c: define STICKY on Linux
1807 * reset signal mask when initializing
1808 * EINTR_RETRY wrapper
1809 * slib: sl_read, sl_write EINTR update
1810 * use sstrip when installing
1811 * more compact database format (breaks backward database compatibility)
1812 * larger download packets
1813 * TcpFlags unsigned char
1814 * cast to (char *) head in write_port
1815 * m(un)lock cast to (char *)
1816 * (1 << 31) --> (1UL << 31)
1817 * support e2fs attributes on Linux
1818 * fixes for AIX and Solaris native compilers
1819 * fixed Makefile for non-GNU make (pattern rule --> suffix rule)
1820
18210.8.1:
1822 * fixed 'is_numeric()' return value
1823
18240.8:
1825 * added option for static compilation
1826 * added option for stealth with non-hidden config file
1827 * added option for disabling command line parsing
1828 * all options can be set in the configuration file now
1829 * stealth: xor strings in database file
1830 * fixed bug in mailer code ([] in HELO)
1831 * print timestamp when asking for key
1832 * 'micro' stealth mode (no hidden configuration file)
1833 * simplified slib
1834 * int->long for uids/gids in trustfile
1835 * moved mailkey from data to code
1836 * shell script for entropy (stronger default key)
1837 * general code cleanup
1838 * better error checking in client/server code
1839 * detect out-of-sync messages
1840 * check state across protocol passes in server
1841 * make sure authentication is mutual
1842 * file download to client
1843 * reserve six file descriptors in server
1844 * mlock queue buffer if LOG_KEY
1845 * improved robustness in bignum (don't fail on free())
1846 * per-directory recursion depths
1847 * RFC821 compliance: empty line at end of header, To field, Date field
1848 * RFC821 compliance: make e-mail transfer relieable
1849 * fix detection of hardlink changes
1850 * checksum verification for calling gpg/pgp
1851 * CL option '-S' not required for server-only binary
1852 * eliminate CL options that may leak privileged information
1853 if the program is SUID
1854 * skip leading white space in configuration file
1855 * allow nested conditionals in configuration file
1856 * allow whitespace before and after '=' in configuration file
1857 * don't leak file descriptors to child processes
1858 * make message transfer relieable
1859 * always report error on abnormal termination of connection
1860
18610.7:
1862 * support for alpha machines
1863 * stop TCP logging after exit message
1864 * limit connections in server (DoS attacks)
1865 * move string handling to slib
1866 * move file handling to slib
1867 * timestring without space
1868 * changed report format
1869 * SUID bugfix - use euid when checking logfile ownership
1870 * SUID bugfix - get root for lstat()
1871 * SUID bugfix - get root for opendir()
1872 * store number of hardlinks
1873 * send no message if polling empty queue
1874 * include tiger 64-bit implementation (portability)
1875 * codes for error conditions
1876 * mail check: handle multiple, overlapping audit trails
1877 * security fix: no append to database if SUID
1878 * fix sh_entropy.c (BUFSIZ -> BUF_ENT)
1879 * read command line before config file
1880 * PGP signing of config/database files
1881 * checksum of config file reported
1882 * checking for attributes only
1883
18840.6:
1885 * more syslogish priority specification
1886 * fixed segfault in sh_mem_check, apparently this was also
1887 the reason for the segfault in atexit()
1888 * allow for compilation with SRP authentication
1889 * fixed tiger checksum computation
1890 * fixed broken logfile verification for second and further audit trails
1891 * test program added
1892 * documentation improved
1893 * sh_forward_make_client: bug fixed in[8]->in[i]
1894 * sh_error.h: fixed missing #include <errno.h>
1895 * configure.in: fixed missing strerror() test
1896 * sh_utmp.c: check logins/logouts
1897 * check for missing files
1898 * only reset access time if necessary
1899 * O_EXCL in open()
1900 * limit environment to TZ in execve (sh_entropy.c, not used on Linux)
1901 * use trustfile() to determine whether logfile dir is trustworthy
1902 * strip head instead of tail for numerical address
1903 * store messages in fifo during log server outage
1904 * re-init session key after server outage
1905
19060.5 (21-12-1999):
1907 * added option for mail relay server
1908 * own popen() implementation in sh_entropy() (portability)
1909 * fixed error in sh_util_basename() (returned NULL for base == "/")
1910 * fixed segfault in strlcpy/strlcat (check for src == NULL)
1911 * FILENAME_MAX -> PATH_MAX (HP-UX 10.20)
1912 * use TIGER for 32-byte compilers (portability)
1913 * fixed hash function (do not include stdlib.h)
1914 * flush buffer before write in mailer code (IBM AIX 4.1)
1915 * make mailer code non-forking
1916 * cast argument of is...() to int (portability)
1917 * return() after _exit() for braindead compilers (portability)
1918 * optionally use inet_addr (portability)
1919 * check for broken mlock() (HP-UX 10.20)
1920 * minor code cleanups
1921 * fixed incorrect size of munlock()'ed memory in sh_error_string()
1922 * fixed a buffer overflow in the error printing routine
1923 * fixed a buffer overflow in sh_util_safe_name ()
1924 * implement SRP session key exchange
1925 * implement client/server facility
1926 * implement @host/@end construct in configuration file
1927 * preferably use uname(), and do gethostbyname() for FQDN
1928 * make vernam cipher base numeric
1929 * make OnlyStderr private in sh_error
1930 * test -e "/dev/random" --> test -r "/dev/random" (portability)
1931 * check for libsocket (portability)
1932 * add #defines for IPPORT_SMTP, IPPORT_TIMESERVER (portability)
1933 * eliminate superfluous /proc test
1934 * some unreachable code removed
1935 * cast to (byte*) replaced by cast to (word64*) in sh_tiger_hash()
1936 * check for setresuid() if no seteuid() (HP-UX 10.20)
1937
19380.4 (09-11-1999):
1939 * make sure output from /dev/random has no NULL's
1940 * one-time pad encryption for emailed keys
1941 (better than nothing ...)
1942
19430.3 (04-11-1999):
1944 * logfile readable for group
1945 * verify signatures for any file
1946 * signature block in tarball
1947 * use select() in time server routine
1948 * better protection for session keys (mlock)
1949
19500.2:
1951 * fixed incorrect man page
1952 * fixed incorrect example rc file
1953 * recursive error logging should work now
1954
19550.1:
1956 * initial release -- on Samhain 1999, of course
1957
1958development start:
1959 * probably 29-06-1999
1960
Note: See TracBrowser for help on using the repository browser.