X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/242f6052c2423e21406289e4d091318a657a5222..2a6e35db31406c1231e45e39c603455b55d2e0c9:/NEWS diff --git a/NEWS b/NEWS index 32c03886..98c48c06 100644 --- a/NEWS +++ b/NEWS @@ -7,17 +7,6 @@ Changes since 2.6.8: - If rsync is interrupted via a handled signal (such as SIGINT), it will once again clean-up its temp file from the destination dir. - - An rsync daemon that is receiving files with "use chroot = no" no longer - sanitizes the symlink target strings (by default). This means that each - symlink's value will now be accepted (and thus returned) with its symlink - info intact. Also, in order to keep things safe, all arg paths and any - dereferenced symlinks (e.g. via --copy-links or --keep-dirlinks) are - manually verified to ensure that no symlinks try to escape past the top - of the module's path. These changes make a non-chroot daemon behave the - same way as a chroot daemon with regard to symlinks, and also avoids a - potential problem where a pre-existing symlink could have escaped the - module's hierarchy. See also the new "munge symlinks" daemon setting. - - Fixed an overzealous sanitizing bug in the handling of the --link-dest, --copy-dest, and --compare-dest options to a daemon without chroot: if the copy's destination dir is deeper than the top of the module's path, @@ -80,6 +69,9 @@ Changes since 2.6.8: - Fixed a bug in the daemon's "incoming chmod" rule: newly-created directories no longer get the 'F' (file) rules applied to them. + - Fixed an infinite loop bug when a filter rule was rejected due to being + overly long. + ENHANCEMENTS: - Added the --log-file=FILE and --log-file-format=FORMAT options. These @@ -95,10 +87,6 @@ Changes since 2.6.8: - Made "log file" and "syslog facility" settable on a per-module basis in the daemon's config file. - - Added the "munge symlinks" daemon setting to enable the old-style - tweaking of "unsafe" symlinks, but it can now be consistently applied - regardless of how "use chroot" is set. - - Added the --remove-source-files option as a replacement for the (now deprecated) --remove-sent-files option. This new option removes all non-dirs from the source directories, even if the file was already @@ -113,11 +101,33 @@ Changes since 2.6.8: both the pre- and post-xfer commands, so it can be used if the pre-xfer command wants to cache some arg/request info for the post-xfer command. + INTERNAL: + + - Did a code audit using IBM's code-checker program and made several + changes, including: replacing most of the strcpy() and sprintf() + calls with strlcpy(), snprintf(), and memcpy(), adding a 0-value to + an enum that had been intermingling a literal 0 with the defined enum + values, silencing some uninitialized memory checks, marking some + functions with a "noreturn" attribute, and changing an "if" that + could never succeed on some platforms into a pre-processor directive + that conditionally compiles the code. + + - Fixed a potential bug in f_name_cmp() when both the args are a + top-level "." dir (which doesn't happen in normal operations). + + - Changed exit_cleanup() so that it can never return instead of exit. + The old code might return if it found the exit_cleanup() function + was being called recursively. The new code is segmented so that + any recursive calls move on to the next step of the exit-processing. + DEVELOPER RELATED: - The acls.diff and xattrs.diff patches have received a bunch of work to make them much closer to being acceptable in the main distribution. + - The rsync.yo and rsyncd.conf.yo files have been updated to work + better with the latest yodl 2.x releases. + - Updated config.guess and config.sub to their 2006-02-23 version. - Updated various files to include the latest FSF address and to have