1 User-Visible OpenAFS Changes
7 * Substantial code quality improvements, largely spotted by Coverity and
8 clang's static analysis.
9 - Add new library for platform independent functions (opr).
10 - Remove arbitrary path name length limits.
11 - Convert to Heimdal's roken library for reliability.
12 - Avoid garbage in allocated buffers (calloc).
13 - Modernize signal handling in pthreaded server processes (softsig).
14 - Improve code comments and additional Doxygen style comments.
15 - Reduce compiler warnings, dead code, unused variables, and
17 - Fix bugs found by static code analyzer (clang-analyzer).
18 - Improved unit test coverage.
19 - Make VLDB flag definitions consistent.
20 - Improve use of run-time assertions and add static assertions.
21 - Add compiler attributes to assist static analyzers.
22 - Clean up include headers in the entire tree.
23 - Improve command-line handling library (libcmd).
24 - Replace hash functions with Jenkin's hash function for faster
25 and more evenly distributed lookups.
26 - Provide a red-black tree data structure to enable algorithmic speedups.
27 - Convert backup and salvage servers to the common logging API (libutil).
28 - Improve volume id data type consistency (VolumeId).
29 - Import APIs for kerberos-style profile configuration support.
30 - Add new APIs to support UserList identities.
31 - Add new APIs to support tabular output from command-line utilities.
32 - Convert vnode macros to inline-functions.
34 * Improved support for non-DES encryption types:
35 - Convert to Heimdal's hcrypto library to support RFC 3961.
36 - Add extended key file format replacing rxkad.keytab, and
37 new key management APIs.
38 - Add support for extended key types to asetkey.
39 - Add akeyconvert to assist in upgrading to OpenAFS 1.8.x by converting an
40 existing rxkad.keytab file to an extended key file.
41 - Do not install the kaserver and related utilities by default to
42 discourage the use of these DES-dependent components.
43 - Remove obsolete klogin and klogin.krb programs.
44 - Add new token APIs to support new rx security classes.
46 * Migrate from LWP to POSIX threads (pthreads):
47 - Convert the ptserver and vlserver from LWP to pthreads.
48 - Remove LWP version of the file server binary.
49 - Convert afsd, aklog, asetkey, klog.krb5, pts, udebug, and vos, from LWP
53 - Restructure the Rx API to privatize the implementation.
54 - Convert rx events to a red-black tree data structure to improve
56 - Convert from mutexes to atomic operations for counters to reduce lock
58 - Provide per-opcode Rx statistics.
59 - Add an rx_opaque data type to support non-DES encryption types
60 and general code cleanup.
61 - Wake up the application thread after 'twind' is updated to avoid 100ms
62 transmit delays when the receive window transitions from closed to
65 * Libraries (both internal and installed) are built using libtool, including
66 libuafs. The resulting shared libraries for libafsrpc and libafsauthent
67 should be more usable than previously.
69 * Improvements to the build system:
70 - Convert to libtool to build shared libraries.
71 - Clean up and improve the build system.
72 - Support out of tree builds.
73 - Add a makefile target to generate Doxygen source code documentation.
74 - Link the Java API for OpenAFS with libuafs.a and remove the
76 - Always build the rxperf tool.
77 - Fix man-page generation by make after ./regen.sh -q
78 - Support the SOURCE_DATE_EPOCH environment variable to improve build
80 - Modernize language specific SWIG typemaps for libuafs Perl bindings.
82 * Improvements to documentation:
83 - Document the new KeyFileExt file.
84 - Reorganized the README files.
85 - Improvements and fixes to documentation generation.
86 - Add experimental epub and mobi support
87 - Remove obsolete LWP information from the file server documentation.
88 - Update and reorganize the Quick Start Guide.
89 - Update the Admin Guide.
90 - Remove AIX, HP-UX, and IRIX information from the Quick Start Guide.
91 - Document the vldb and prdb (ubik) file formats.
93 - Corrections and clarifications to man pages.
94 - Add ubik threading analysis doc.
96 * Improvements for troublshooting, debugging, and testing:
97 - Log more details on volume-server-to-fileserver communication errors
99 - Set thread names in pthreaded servers on platforms which support
101 - Add dynroot lock tracking to cmdebug
102 - Fix tracking of an fstrace call site in the cache manager background
104 - Add the afsload tool to simulate multiple cache managers for file server
106 - Add run-time checks for refcount imbalances in the cache manager.
107 - Fix missing newlines in afsd -debug output.
109 * Developer tool improvements:
110 - Improvements and fixes for rxgen (used to generate Rx RPC bindings).
111 - Add tool for man page verification of command options.
112 - Add tool to find Unix cache manager lock identification numbers.
113 - Add an option for pretty build output.
115 * RPM packaging updated:
116 - Update the spec file to keep up with accumulated changes.
117 - Move the klog.krb5 man page to the openafs-krb5 sub-package.
118 - Prevent double-starting client on RHEL7
119 - Convert rpm spec file from deprecated 'make dest' to 'make install'.
120 - Fix rpmbuild command line option default handling.
122 * Add a new protection error code (PRNAMETOOLONG) instead of silently
123 truncating names which exceed the maximum name length (PR_MAXNAMELEN).
125 * Add an implementation limit (50000) on the number of names/ids which can
126 be transmitted by unauthenticated clients to the ptserver, avoiding
127 excessive resource consumption from unauthenticated requests.
129 * Add the -config option to vos, pts, and aklog to specify the path to the
130 cell configuration files.
132 * Add more details in vos release -verbose output.
134 * Add the cacheout -encrypt option to encrypt communication between the
135 cacheout client and the fileserver.
137 * Add the command line options to the afsio program to enable encryption of
138 traffic between afsio and the fileserver (-clear, -crypt).
140 * Add the vos release -force-reclone option to force recloning the volume to
141 be released without forcing a full volume dump being transmitted to all
144 * Fix vos to avoid writing loopback addresses into the VLDB in
147 * Print bos and pts error messages to standard error instead of
150 * Improve formatting of the -help output of all commands.
152 * Change -n to -dryrun in all backup subcommands.
154 * Change the backup deletedump -port command line option to -portoffset.
156 * Add user and build host in the version string returned by
161 * Ubik servers using pthreads are now available and are used by default
163 * As part of improving Ubik reliability in certain edge cases, an extra
164 election cycle (about 60 seconds) may be needed before writes are
165 permitted. This is a conservative change that may be removed in
168 * Remove periodic background fsync by the fileserver (ihandle fsync thread).
170 * Fix potential file handle leak in the file server ihandle caching layer.
172 * Disable the so-called "hot threads" feature in the file server. The hot
173 threads feature was intended as an optimization for dispatching incoming
174 calls to the current listener thread, but has been reported to incur a
175 performance penalty on modern multi-core systems.
177 * Do not permit creation of users with id of ANONYMOUSID.
179 * Do not save/restore host states in the fsstate.dat file for hosts which
180 are in the process of retrieving CPS information from the ptserver when
181 the fileserver is being shutdown. This fixes a bug in which the fileserver
182 will incorrectly block all threads following a restart.
184 * Add the ptserver -restrict_anonymous option to inhibit exposure of user
185 names from the ptserver.
187 * Do not truncate server log files by default when server processes
188 are started. The -transarc-logs option provides backward compatibility
189 with IBM AFS log handling on server startup. Log messages may be lost
190 in back-to- back restarts when a server is running in this mode.
192 * Reopen server logs on SIGUSR1. This may be used by third-party log
193 rotation tools, such as logrotate, to reopen the log file handles after
194 log files have been renamed.
196 * Fix various bugs when logging with -mrafslogs enabled.
198 * Dynamically reload the kerberos realm to AFS cell mapping (krb.conf) and
199 exclusions for mapping kerberos principals to AFS identities (krb.excl)
200 configuration when the CellServDB cell configuration file is touched.
201 Previously, a restart of the file server was required after updating the
202 kerberos mapping configuration files.
204 * Add a command line option (-restricted_query) to the vlserver and
205 volserver to restrict information queries about volumes to a specific
208 * Add a command line option to the server programs to specify an alternate
209 fully qualified log file name (-logfile).
211 * Add a command line option (-config) to the server programs to specify
212 an alternate path to the server configuration.
214 * Add a command line option to the ptserver and vlserver to specify an
215 alternate path to the database data files.
217 * Add a command line option to the volume server to enable encryption of
218 volume-server-to-volume-server-traffic (-s2scrypt).
220 * Increase the maximum number of LWP threads allowed for the ptserver and
221 vlserver from 16 to 64 (-lwp).
223 * Remove an unused file server command line option (-k).
225 * Fix an incorrect assertion in Demand Attach File Server which could cause
226 the file server process to abort in certain rare conditions.
228 * Deprecate the -bitmap-later configure option for non-Demand-Attach File
231 * Add -vhashsize support to non-Demand-Attach File Servers (DAFS).
233 * Add support for subnet ranges in the NetInfo and NetRestrict
236 * Add the GetXStats RPC to the audit log.
238 * Fix directory creation by bosserver when built for non-Transarc paths.
240 * Fix incomplete list of server addresses retreived by vos listaddr when the
241 vldb contains unreferenced multi-homed server entries.
243 * Remove obsolete bos blockscanner and unblockscanner commands that
244 were only needed for the removed MR-AFS functionality.
246 * Remove obsolete bos salvage options that were only used by the
247 removed MR-AFS functionality..
249 * Remove calls to the deprecated sbrk() function.
251 * Add an experimental feature to database servers to support ubik reads
252 while write transactions are in progress, enabled at build time with the
253 --enable-ubik-read-while-write configure option. This feature is not
254 considered ready for production usage at this time.
256 * Avoid filling the FileLog with "Volume x offline: not in service" when
257 a volume is administratively taken offline with vos offline.
259 * Print an error message when bosserver is started with an unknown
262 * Modify the volume updateDate when the volume is changed by a salvage.
264 * Volume usage statistics are now preserved during reclone and restore
265 operations by default, the behavior previously enabled by
266 the -preserve-vol-stats flag to the volserver. The historical behavior
267 can be retained via the -clear-vol-stats argument.
271 * Use rxkad_crypt by default for connections to fileservers. This matches
272 the existing behavior of the Windows client and has been applied by
273 the distribution packaging on many platforms already.
275 * Add support for relative ACL changes with fs setacl. If a single plus (+)
276 or minus (-) character is appended to the rights' letters argument, the
277 new rights are computed relatively to the existing ones.
279 * Remove afsd -settime and afsd -nosettime support.
281 * Add the afsd -inumcalc option to specify the method used to calculate
282 inode numbers presented by AFS.
284 * Add the afsd -volume-ttl option to specify set the maximum amount of time
285 information retrieved from the vlserver will be cached, regardless of
286 callback expiry times.
288 * Return EIO on internal errors instead of the misleading ENOENT.
290 * Log ICMP errors received, if any, for unreachable servers.
292 * Improve performance of clients with multiple PAGs for different cells.
294 * Fix race condition between changing and using user tokens among cache
297 * Fix fs sysname for users with UID 2748 and 2750 when not running
300 * Add Perl bindings for the user-space cache manager library (libuafs).
302 * Fixes to the bypasscache feature.
304 * Fix fs getcacheparms miscounts.
306 * Remove the obsolete Netscape plugin.
310 * Remove Linux 2.2 and 2.4 support.
312 * Changes to avoid EIO errors with multiple processes doing intensive mmap
313 writing. (Drop PageReclaim AOP_WRITEPAGE_ACTIVATE.)
315 * Prevent fakestat data inconsistencies in certain cases (131855).
317 * Fix dentry leak which can cause a crash on shutdown.
319 * Fix improper use of ENOENT and avoid incorrect use of linux negative
322 * Improve error reporting when encountering corrupt directories.
324 * Improve rx error handling in the Linux cache manager.
326 * Rename kpasswd to kapasswd when packaging RPMs to avoid colliding with
329 * Do not use the obsolete --enable-largefile-fileservers configure option
332 * Use the RemainAfterExit systemd feature to avoid premature exit
333 when -afsdb is not given, for RPM packages.
335 * Remove Debian packaging files from the OpenAFS source tree. Debian
336 packaging files are currently maintained in the downstream Debian
339 * Add the sparc_linux26 sysname.
341 * Desupport 32-bit Linux kernels on s390/s390x.
343 * Fix Debian/Ubuntu build regression on kernel 3.16.39.
345 * Fix --enable-kernel-debug for linux 4.8+.
347 * Support linux 4.10, 4.11, 4.12
351 * Remove support for all Solaris and SunOS platforms prior to Solaris 8.
353 * Build 64-bit binaries for Solaris x86 by default.
355 * Use one-group PAGs on Solaris 11, which is required for PAG support
356 on Solaris 11 since supplemental groups must be sorted starting with
359 * Update search paths for solaris cc for recent versions Solaris Studio.
361 * Modernize declaration of module dependences by converting from the
362 deprecated _depends_on symbol to ELF dependencies.
364 * Avoid BAD TRAP panic due to invalid opcodes on x86 with Studio 12.5.
368 * Stop processing upcalls once rx shutdown starts.
370 * Enable atomics for the darwin kernel.
372 * Add a syscall to enable/disable bulkstat at run-time, which is
375 * Fix path to binaries in the prefpane.
377 * Fix builds on MacOS 10.12 by building only the active architecture
382 * Use the native kernel module build system instead of an ad hoc
383 replacement build system.
385 * Remove FreeBSD packaging files from the OpenAFS source tree. FreeBSD
386 packaging files are currently maintained in the downstream FreeBSD Ports
389 * Stay up to date with new FreeBSD releases (through 10.3).
391 * Do not claim AFS_VM_RDWR_ENV
395 * Stay up to date with new NetBSD releases (through 7.x)
397 * Update to use cprng(9) as the randomness source on NetBSD 6.99/7.x.
399 * Build system updates for NetBDS 6.99.x
401 * Do not claim AFS_VM_RDWR_ENV
405 * Stay up to date with new OpenBSD releases (through 4.7)
407 * Do not claim AFS_VM_RDWR_ENV
411 * Updates for AIX support.
413 * Fix build system for AIX exports.
415 * Add the uidpag and localuid runtime options to the aklog LAM plugin.
416 (These runtime options override the use of UID-based PAGs, which were
417 introduced to appease the CDE screensaver.)
423 * Fix OPENAFS-SA-2017-001: insufficient validation of transport parameters
424 in Rx ack trailer caused integer overflow and assertion failure
430 * Support for mainline kernel 4.13 and distribution kernels with backports
433 * Fix kernel module build for kernels since 4.12 on S390 (12717)
440 * Avoid a possible 100ms transmit delay in the RX protocol when a peer's
441 receive window transitions from closed to open (12627)
443 * Documentation improvements (12476 12477 12559[RT #133339])
447 * When bosserver is started with an unknown option, print an error message
448 and exit with a non-zero value rather than failing silently (12631)
450 All DB server platforms
452 * Hold the DB lock while checking for an aborted write transaction (12516)
454 All file server platforms
456 * On demand attach fileservers, don't save or restore a client's host
457 state if CPS ("Current Protection Subdomain") recalculation for it is
458 in progress, to avoid fileserver thread exhaustion (12568)
460 * On demand attach fileservers, avoid flooding the log with error messages,
461 which could happen when the fileserver was restarted while a volume was
464 * Update a volume's "Last Update" time when its content is modified by
465 the salvager, to make the change visible in the output of "vos examine"
466 and to backup services (12633)
470 * Corrected the DCentries bucket counts for very large and zero length
471 files in the output of "fs getcacheparms -excessive" (12604 12605)
473 * Fixed a bug that prevented users with GID 2748 and 2750 from executing
474 the "fs sysname" command on clients running afsd with -rmtsys (12607)
476 * Provide a new -inumcalc switch for afsd to allow enabling the alternative
477 MD5 method of inode number calculation, which was previously only
478 possible on Linux and through the sysctl interface (12608 12632)
482 * Support for mainline kernel 4.12 and distribution kernels with backports
483 from it (12624 12626)
485 * Re-added the improved algorithm for freeing unused vcaches to reduce
486 memory consumption first introduced with the 1.6.18 release, together
487 with a fix for the issue leading to its removal in 1.6.18.2 (12448..12451)
491 * Fixed a crash while stopping the client on macOS 10.12 "Sierra" (12602)
498 * Build fixes required by recent compilers or platforms (12514 12521 12534
501 * Allow the bos server to start successfully in the presence of those, by
502 accepting a now checked return value indicating that the client ThisCell
503 and CellServDB already exist (12522)
507 * Support for mainline kernels 4.10 and - most likely - 4.11 and
508 distribution kernels with backports from them (12530 12588..12590 12598)
510 * Support for distribution kernels with partial backports from 4.9 (12535)
513 * In Red Hat packaging, moved the klog.krb5 manual page into the krb5
516 * In Red Hat packaging, prevent systemd from double-starting the client
519 * Allow aklog to function on current S390/S390x (12499)
523 * Make process authentication groups work on Solaris 11, now using a single
524 group ID (12524..12527)
526 * Fix a BAD TRAP panic on Solaris 11 clients built with Studio 12.5 (12567)
530 * Fixed the preference pane for OS X 10.11 and later (12512)
536 * Build fixes required by recent compilers (12482..12484)
540 * Support for mainline kernel 4.9 and distribution kernels with
541 backports from it (12478..12480)
543 * In Red Hat packaging, make systemd deal correctly with the client
544 when no userland processes remain after starting it (12481)
549 * Support for release 10.12 "Sierra" (12431 12432)
551 * Avoid a crash in the Mounts tab of the OpenAFS preference pane (12447)
553 OpenAFS 1.6.20 (Security Release)
557 * Fix for OPENAFS-SA-2016-003: file and directory names leak due to
558 reuse of directory objects without zeroing the contents
559 (12461 12462 12463 12464 12465)
565 * Documentation improvements (12304)
566 * Fixes for test failures (12396 12415)
568 All DB server platforms
570 * Avoid potentially writing to an out of date volume location or protection
571 database, or losing a database write, which could happen in rare cases
572 under special conditions during database leader election
577 * Allow the fsinfo::: DTrace provider to work with AFS files (12371)
581 * Don't commit more data to a file than was actually copied during writes,
582 which could happen on architectures with a page size > 4 KiB (12413)
583 * Fixed build on PPC64 with GCC 6.1 (12388) (RT #133407)
584 * Fixed build on x86_64 with recent GCC (12365 12366)
591 * Support for mainline kernel 4.7 and distribution kernels with
592 backports from it (12348)
596 * Fixed memory mapped I/O on files >= 4 GiB (12349 12350)
598 Note that there is a suspicion that this might break the client
599 on very old Solaris releases (2.6). If it does, the breakage should
604 * Added tooling to build a package for OS X 10.10 "Yosemite" and
605 10.11 "El Capitan" (12335 12351)
612 * Support for mainline kernel 4.6 and distribution kernels with
613 backports from it (12332)
615 * Switch back to the pre-1.6.18 algorithm for freeing unused vcaches.
616 While the new algorithm is still believed to be correct, it turned
617 out that at least on some kernels, including 4.5 and 4.6, the dentry
618 for the current working directory may be erroneously invalidated.
619 This could lead to errors like "Unable to read current working directory"
620 when a directory wasn't accessed for a few minutes. (12323)
622 * Use a secure URL to retrieve the CellServDB in the script to create
623 the Red Hat source package (12330)
627 * Added sysname IDs for 10.2 and 10.3 to fix the build on those platforms
635 * Support for mainline kernel 4.5 and distribution kernels with
636 backports from it (12300..12302)
643 * Documentation improvements (12224 11675 11613 12197)
645 * Improved diagnostics and error messages (12129 12207 12185 12211 12113
648 * Check that CellServDB entries are valid IPv4 addresses, to avoid
649 occasional hangs or potentially other erratic behaviour due to invalid
650 entries (12210) (RT #131794)
654 * Gracefully handle cases where a client shutdown sequence is initiated
655 while the client is already shutting down, rather than cause a panic
658 * Fixed several bugs that could cause erratic behaviour when the write
659 offset into a file was more than 2 GiB beyond the file's current end
660 on the server (12213 12214)
664 * Avoid a possible volserver crash during volume dump or restore due
665 to invalid ACL entries (12127)
667 * Allow recovering from a DAFS fileserver operation which allocates a
668 new vnode but fails to update the vnode index, rather than crashing the
671 * Fixed a longstanding bug which could damage the volume location database
672 when "vos changeaddr" was run with "-oldaddr" and "-newaddr" and the
673 old address was present in a multi-homed entry (12089)
677 * Added support for releases 10.2 and 10.3 (12232)
681 * Support for mainline kernel 4.4 and distribution kernels with
682 backports from it, alas at a performance penalty (12226 12227 12228)
685 * Avoid using excessive amounts of kernel memory for dynamically
686 allocated vcaches, by improving the algorithm to free unused ones
689 * In Red Hat packaging, make the init script use "ip" if available, with
690 "ifconfig" as a fallback (12193)
694 * Basic support for release 10.11 "El Capitan" (12212)
698 * Fixed kernel module builds with optimization (12198) (RT #131261)
701 OpenAFS 1.6.17 (Security Release)
705 * Fix for OPENAFS-SA-2016-001: foreign users can create groups as
706 if they were an administrator (RT #132822) (CVE-2016-2860)
710 * Fix for OPENAFS-SA-2016-002: information leakage from sending
711 uninitialized memory over the network. Multiple call sites
712 were vulnerable, with potential for leaking both kernel and
713 userland stack data (RT #132847)
715 * Update to the GCO CellServDB update from 01 January 2016 (12188)
719 * Fix a crash when the root volume is not found and dynroot is not
720 in use, a regression introduced in 1.6.14.1 (12166)
722 * Avoid introducing a dependency on the kernel-devel package corresponding
723 to the currently running system while building the srpm (12195)
725 * Create systemd unit files with mode 0644 instead of 0755
732 * Documentation improvements (11932 12096 12100 12112 12120)
734 * Improved diagnostics and error messages (11586 11587)
736 * Distribute the contributor code of conduct with the stable release (12056)
740 * Create PID files in the right location when bosserver is started with
741 the "-pidfiles" argument and transarc paths are not being used (12086)
743 * Several fixes regarding volume dump creation and restore (11433 11553
746 * Avoid a reported bosserver crash, and potentially others, by replacing
747 fixed size buffers with dynamically allocated ones in some user handling
748 functions (11436) (RT #130719)
750 * Obey the "-toname" parameter in "vos clone" operations (11434)
752 * Avoid writing a loopback address into the server CellServDB - search
753 for a non-loopback one, and fail if none is found (12083 12105)
755 * Rebuild the vldb free list with "vldb_check -fix" (12084)
757 * Fixed and improved the "check_sysid" utility (12090)
759 * Fixed and improved the "prdb_check" utility (12101..04)
763 * Avoid a potential denial of service issue, by fixing a bug in pioctl
764 logic that allowed a local user to overrun a kernel buffer with a single
765 NUL byte (commit 2ef86372) (RT #132256) (CVE-2015-8312)
767 * Refuse to change multi-homed server entries with "vos changeaddr",
768 unless "-force" is given, to avoid corruption of those entries (12087)
770 * Provide a new vos subcommand "remaddrs" for removing server entries, to
771 replace the slightly confusing "vos changeaddr -remove" (12092 12094)
773 * Make "fs flushall" actually invalidate all cached data (11894)
775 * Prevent spurious call aborts due to erroneous idle timeouts (11594)
777 * Provide a "--disable-gtx" configure switch to avoid building and
778 installing libgtx and its header files as well as the depending
779 "scout" and "afsmonitor" applications (12095)
781 * Fixed building the gtx applications against newer ncurses (12125)
783 * Allow pioctls to work in environments where the syscall emulation
784 pseudo file is created in a read-only pseudo filesystem, like in
785 containers under recent versions of docker (12124)
789 * In Red Hat packaging, avoid following a symbolic link when writing
790 the client CellServDB, which could overwrite the server CellServDB,
791 by removing an existing symlink before writing the file (12081)
793 * In Red Hat packaging, avoid a conflict of openafs-debuginfo with
794 krb5-debuginfo by excluding our kpasswd executable from debuginfo
795 processing (12128) (RT #131771)
797 OpenAFS 1.6.15 (Security Release)
799 All client and server platforms
801 * Fix for OPENAFS-SA-2015-007 "Tattletale"
803 When constructing an Rx acknowledgment (ACK) packet, Andrew-derived
804 Rx implementations do not initialize three octets of data that are
805 padding in the C language structure and were inadvertently included
806 in the wire protocol (CVE-2015-7762). Additionally, OpenAFS Rx in
807 versions 1.5.75 through 1.5.78, 1.6.0 through 1.6.14, and 1.7.0
808 through 1.7.32 include a variable-length padding at the end of the
809 ACK packet, in an attempt to detect the path MTU, but only four octets
810 of the additional padding are initialized (CVE-2015-7763).
816 * Support kernels up to 4.2
818 Due to changes to internal data structures with this kernel release,
819 the OpenAFS client can no longer reset the link count during path
820 lookups. Since volume root directories must behave like symlinks
821 instead of normal directories in order to satisfy Linux kernel
822 invariants, looking up paths containing more than 40 mount points
823 will fail with ELOOP on such kernels.
829 * Prior to the OpenAFS security release 1.6.13, the Volume Location
830 Server (vlserver) RPC VL_ListAttributesN2() supported wildcard volume
831 name lookups via regular expression (regex) pattern matching. This
832 support was completely disabled in 1.6.13 because it was judged to be
833 a security risk due to buffer overruns in the implementation, as well
834 as the possibility of denial of service attacks where certain regular
835 expressions could cause excessive CPU usage in some regex
838 Unfortunately, after 1.6.13 was released, it was discovered that
839 the native OpenAFS 'backup' system uses the VL_ListAttributesN2()
840 regex support to evaluate configured volume sets. If you use the
841 OpenAFS 'backup' system (or another backup system which relies on it,
842 such as Tivoli Storage Manager (TSM, aka Tivoli ADSM)), and are using
843 volume sets which require regular expressions for the volume name,
844 then those volume sets cannot be resolved by OpenAFS 1.6.13. The next
845 paragraph provides details on how to identify any affected volume sets.
847 OpenAFS backup volume sets may be described by fileserver, partition
848 name, and volume name. The fileserver and partition specifications
849 never require regular expression support. The volume name specification
850 always requires regular expression support except for when specifying
851 _all_ volumes via two special cases: the universal wildcard ".*", or "".
852 For example, volume name "proj" or "*.backup" or "homevol.*" all
853 require regex support - even if the specification contains no wildcard
854 characters and/or exactly matches an existing volume name.
856 As a result of this issue, OpenAFS 1.6.14 replaces the 1.6.13 changes
857 to VL_ListAttributesN2. 1.6.14 prevents the buffer overruns and
858 reenables the regex support, but restricts it to OpenAFS super-users
859 and -localauth only. This is sufficient to restore the OpenAFS 'backup'
860 system's ability to work correctly with any previously supported volume
861 set. The OpenAFS 'backup' commands are already documented to require
862 super-user authorization, so this restriction is moot for the backup
865 There are no other direct consumers of the VL_ListAttributesN2() regex
866 support in the OpenAFS tree. However, the VL_ListAttributesN2 RPC is
867 publicly accessible and might be used by third party tools directly or
868 indirectly via OpenAFS's libadmin. Any such tools that issue
869 VL_ListAttributesN2 RPCs must now be executed using super-user or
872 None of the other security fixes in OpenAFS 1.6.13 are known to have
873 any issues, and are still included unchanged in OpenAFS 1.6.14.
875 If there are any questions concerning the possible impact of OpenAFS
876 1.6.13 or 1.6.14 at your site, please contact your OpenAFS support
877 provider or the openafs-info@openafs.org mailing list for further
884 * Fix for CVE-2015-3282: vos leaks stack data onto the wire in the
885 clear when creating vldb entries
887 * Workaround for CVE-2015-3283: bos commands can be spoofed, including
888 some which alter server state
890 * Disabled searching the VLDB by volume name regular expression to avoid
891 possible buffer overruns in the volume location server
895 * Fix for CVE-2015-3284: pioctls leak kernel memory
897 * Fix for CVE-2015-3285: kernel pioctl support for OSD command passing
902 * Fix for CVE-2015-3286: Solaris grouplist modifications for PAGs can
903 panic or overwrite memory
909 * Avoid database corruption if a database server is shut down and then
910 brought up again quickly with an altered database (11773 11774)
915 * Fixed a potential buffer overflow in aklog (11808)
917 * Avoid a bogus warning regarding the checkserver daemon, which could be
918 logged during startup when the cache initialization was very fast (11680)
920 * Added documentation of the inaccuracy of the 'partition' field in
921 'fs listquota' output for partitions larger than 2 TiB (11626)
925 * Support kernels up to 4.1 (11872 11873)
927 * Avoid spurious EIO errors when writing large chunks of data to
928 mmapped files (11877)
932 * Build fixes required at least on OS X 10.10 Yosemite with the latest
933 XCode (11859 11876 11842..11845 11863 11878 11879)
939 * Support kernels up to 4.0 (11760 11761)
943 * Fixed kernel module build on systems with an updated clang which no
944 longer accepts the -mno-align-long-strings as a no-op (11809)
950 * Allow aklog to succeed creating native K5 tokens even when mapping
951 the K5 principal to a K4 one fails (11538)
953 * Build fixes (11435 11636)
957 * Avoid a potential kernel panic due to connection reference overcounts
960 * Avoid potential corruption of files written using memory mapped I/O
961 when the file is larger than the cache (11656) (RT #131976)
965 * Support kernels at least up to 3.19 (11549 11550 11569 11570 11595
966 11658..11662 11694 11752)
968 Note: By default this excludes kernels 3.17 to 3.17.2, which will leak
969 an inode reference when an error occurs in d_splice_alias(). The
970 module will build and work, but leak kernel memory, leading to
971 performance degradation and eventually system failure due to
972 memory exhaustion. Since it's impossible to detect this condition
973 automatically, the switch --enable-linux-d_splice_alias-extra-iput
974 must be passed to configure when building the module for those
975 kernels. The same would be necessary for any kernel with backports
976 of commit 908790fa3b779d37365e6b28e3aa0f6e833020c3 or commit
977 95ad5c291313b66a98a44dc92b57e0b37c1dd589 but not the fix in commit
978 51486b900ee92856b977eacfc5bfbe6565028070 in the linux-stable repo
979 (git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git) or
980 the corresponding changes on other branches.
982 * Fixed a regression introduced in OpenAFS release 1.6.10 which could
983 make the spurious "getcwd: cannot access parent directories" problem
984 return (11558 11568) (RT #131780)
986 * Avoid leaking memory when scanning a corrupt directory (11707)
990 * Support OS X 10.10 "Yosemite" (11571 11572 11611) (RT #131946)
994 * Avoid reading random data rather than correct cache content when using
995 ZFS as the cache file system on Solaris >= 11, and fix potential similar
996 problems on other platforms (11713 11714)
1000 * Build fix for releases >= 11.0 (11610)
1004 * Support release 5.4 (11700)
1011 * Don't hide the "version" subcommand in help output (11214)
1013 * Documentation improvements (11126 11216 11222 11223 11225 11226)
1015 * Improved diagnostics and error messages (11154 11246 11247 11249 11181
1018 * Build system improvements (11158 11221 11224 11225 11227..11241 11282
1019 11342 11350 11353 11242 11367 11392)
1021 * Avoid potentially erratic behaviour under certain error conditions by
1022 either avoiding or at least not ignoring them, in various places (11008
1023 11010..11065 11112 11148 11196 11530)
1027 * Support releases 9.3 and 10.1 (11368 11369 11402 11403 11404)
1029 * Makes a disk cache more likely to work on FreeBSD, though such
1030 configurations remain not very tested (11448)
1032 All server platforms
1034 * Added volscan(8) (11252..11280 11387 11388)
1036 * Fixed a bug causing subgroups not to function correctly if their
1037 ptdb entry had more than one continuation entry (11352)
1039 * Logging improvements (10946 11153)
1041 * Allow log rotation via copy and truncate (11193)
1043 * Avoid a server crash during startup only observed on a single platform
1044 and when using a 3rd party library under certain circumstances, which is
1045 a collateral effect of the security improvements introduced in OpenAFS
1046 release 1.6.5 (11075) (RT #131852)
1048 All client platforms
1050 * Raised the free space reported for /afs to the maximum possible value of
1051 just under 2 TiB - the old value was 9 GiB on most platforms (10984)
1053 * Reduced the amount of stack space used (11162 11163 11203 11164..11167
1054 11338 11339 11364..11366 11381)
1056 * Sped up a periodic client task which could be problematically slow
1057 on systems with a large number of PAGs and files in use (11307)
1059 * Fixed failure of the up command with large ACLs (11111)
1061 * Avoid a potential crash of aklog (11218)
1063 * Avoid potential crashes of scout and xstat_fs_test (11155)
1067 * Support kernels up to 3.16 (11308 11309)
1069 * Fixed a regression introduced in OpenAFS release 1.6.6 that made
1070 checking for existing write locks incorrectly fail on readonly volumes
1073 * Fixed a regression introduced in OpenAFS release 1.6.8 that could
1074 cause VFS cache inconsistencies when a previously-accessed directory
1075 entry was removed and recreated with the same name but pointing to a
1076 different file on another client (11358)
1078 * Use the right path to depmod in Red Hat packaging to avoid dependency
1079 calculation incorrectly failing unless a link /sbin -> /usr/sbin is
1080 present on the system performing it (11171) (RT #131860)
1082 * Do not ignore kernel module build errors (11205)
1086 All server platforms
1088 * Fix for OPENAFS-SA-2014-002
1094 * Documentation improvements (10751 10875 10931 10897 10883 10954 10955)
1096 * Improved diagnostics and error messages (10756 10814 10949)
1098 * Fixed a bug in RX that could make errors during packet reception go
1101 * Fixed a bug that made "vos size -dump" display the wrong size for
1102 large volumes. (10933) (RT #131819)
1104 All server platforms
1106 * Change the default fileserver sync behavior from "delayed" to "onclose".
1107 This means that explicit syncing only happens when a volume is detached.
1110 * Added the -offline-timeout and -offline-shutdown-timeout options to the
1111 fileserver, to implement interrupting clients accessing volumes we are
1112 trying to take offline. (6266 10799)
1114 All client platforms
1116 * When a client is shut down, it will give up its callbacks. The Windows
1117 client has been doing this since 2007. Note that older fileservers
1118 (1.3.50 to 1.4.5 and 1.5.0 to 1.5.27) had a bug in the implementation of
1119 the relevant RPC that could cause crashes or other undefined behavior
1120 when this happens. (6272 8840 10855)
1122 * Restored the pre-1.6 behavior of "vos e" being an alias for "vos examine".
1125 * Avoid flooding logs with warnings about byte-range locks, by throttling
1126 them per file. Also, make the messages more useful by including the
1129 * Avoid a possible panic during shutdown while tracing. (10932)
1133 * Fixed a bug that could cause the "getcwd: cannot access parent
1134 directories" problem (10804 10984)
1136 * Avoid a delay when accessing uncached data in AFS in a confined
1137 context under SELinux. (10598)
1139 * Red Hat packaging improvements (10600 10767 10807)
1143 All server platforms
1145 * Fix for OPENAFS-SA-2014-001
1147 * Fix for a potential DOS attack against RX servers
1153 * As of this release, OpenAFS no longer ships uncompressed source tarballs.
1154 Tarballs are still shipped with both compression formats, gzip and bzip2.
1157 * Documentation improvements (10136 10314 10601)
1159 * Improved diagnostics and error messages (9412 10085 10274)
1161 * Avoid redefining "assert" in our public header files, which could
1162 cause failures when building some applications using them. (10096)
1164 * Fixes for parallel builds (10005 10309 10337)
1166 * Added a -s switch to afscp (not installed by default) to help simulate
1167 a slow client. (9416 9417)
1169 * Added a -probe switch to vlclient test program (not installed by default)
1170 to ping all vlservers in a cell in parallel. (9570)
1172 All server platforms
1173 * The fileserver now ignores any vice partitions with a NeverAttach flag
1174 file present in the root directory. (RT #130561) (9470 9471)
1176 * Restrict forcing CPS ("Current Protection Subdomain") recalculation in
1177 the fileserver to administrators. Also fixed a bug that could cause this
1178 operation to be incomplete. (9485 9487)
1180 * Allow non-DAFS fileservers to attach unusable volumes, restoring pre-1.6
1181 behaviour. (RT #131505) (9499)
1183 * Restored the pre-1.6 behaviour when running vos examine for a volume
1184 currently in a transaction, showing the volume as busy again rather than
1185 offline. (9685 9915 9916)
1187 * Reduced the minimum time a bos salvage takes from 5 seconds to 1. (9476)
1189 * Fixed buserver to not segfault when started with the -servers option.
1190 (RT #131706) (10166)
1192 * Salvager fixes, addressing a wide variety of possible problems from
1193 unnecessary salvaging to aborts (9282 9283 9457 9458 9459 9461 9462 9480
1196 * Fixed a bug that could cause saved state information to be discarded
1197 when restarting a large or busy fileserver, which negatively impacted
1200 * Fixed a bug that could have caused undefined behaviour in the vlserver
1201 in rare cases when a fileserver registered its addresses in the VLDB.
1204 * Added the -preserve-vol-stats switch to volserver, allowing it to keep
1205 the access statistics across volume restore and reclone operations
1206 instead of resetting them. (9477)
1208 * Inserted an exponential delay between retries when bosserver attempts to
1209 restart a server process. (9571 10199)
1211 * Improved vldb_check (not installed by default) to cope with broken
1212 vlentry names and volids, and provide more output to aid debugging.
1215 * Releasing a volume after adding a new RO site no longer touches any of
1216 the existing RO sites, if the RW data hasn't changed since the last
1219 * Make the copyDate field for RO clones have the same meaning as for
1220 remote RO volumes. Previously, the copyDate field for clones was updated
1221 every time we released. (9451)
1223 * Fixed potentially undefined behaviour in ptserver when too many pts
1224 ids are allocated. (10124)
1226 * Note that the server side NAT pings feature present in the prereleases
1227 was removed before the final release, since no positive feedback
1228 was provided during prerelease testing. (9420 10135)
1232 * Start bosserver with -nofork in the systemd unit file, to allow systemd
1233 to track its state (10093)
1235 All client platforms
1237 * No longer track file locks on read-only volumes. Write locks can't
1238 succeed, read locks always will. Avoids log messages about this kind
1241 * Added the "fs flushall" subcommand, which makes the client discard all
1242 cached data. This was previously available on Windows only. (9065 9388
1245 * Fixed a bug that could make the client incorrectly believe its cache
1246 is up to date. This change could negatively impact AFS <-> DFS
1247 translators, should those still be running anywhere. (8898)
1249 * Several changes to avoid panicing in certain error conditions.
1250 (9131 9287 10354 10355 10356 10357) (partially addressing RT #131747)
1252 * Added the -rxmaxfrags switch to afsd, allowing to limit the number
1253 of UDP fragments sent or received per RX packet. (9430)
1255 * Build fixes for aklog on several platforms (RT #131716) (9917 10107 10275)
1257 * Require that the AFS mountpoint specified in the cacheinfo file is
1258 an absolute path. Relative paths result in a client that basically
1259 works but is not fully functional. (10253)
1261 * Fixed a bug that could cause one of the afsd threads to enter an infinite
1262 loop (10431 .. 10436)
1266 * Support Linux kernels up to 3.13 (10241)
1268 * Fixed a bug that made readv/writev calls in AFS space fail with Linux
1269 kernels where generic_file_aio_read exists but those operations have
1270 not been switched to using aio_read/aio_write. This was a regression
1271 introduced with release 1.6.3 and affected at least RHEL 5.9 kernels.
1274 * Fixed a similar bug making core dumps fail in AFS space, affecting
1275 a much wider range of kernels including the most recent ones.
1276 (RT #131729) (10254)
1278 * Enhanced the keyring code to make PAGs work correctly on kernels with a
1279 distribution specific change to the Linux keyring code. This affected at
1280 least SLES 11 SP3 kernels. (10252)
1282 * Fixed a bug that could make failures during PAG instantiation go
1285 * Fixed a bug that made compilation fail for Linux kernels without
1286 keyring support. This affected at least the SLE 10 SDK and an
1287 OEM version of SLES 11 SP1. (10325)
1289 * Fixed build for kernels with user namespace support enabled. Likely
1290 to be required for Ubuntu 14.04 and eventually other distributions.
1291 (10456 10457 10458 10518 10472)
1293 * Support RHEL 6.5 kernels, and possibly others with changes backported
1294 from recent mainline kernels that touch getname/putname, by no longer
1295 using those functions. Previously, the client could cause a kernel
1296 panic when syscall auditing was enabled. (10578)
1298 * Make tmpfs usable as the cache filesystem again. This had been broken
1299 since kernel 3.1 (9950 10193)
1301 * When starting the client fails, clean up the backing device information
1302 created in sysfs, to avoid error messages during a subsequent start
1303 and possible system instability later on (10454)
1305 * Update Red Hat packaging to support Fedora >= 20, RHEL >= 7 and
1306 ELrepo kernels (10597 10619 10622 10703 10704)
1310 * Support OS X 10.9 "Mavericks" (10519 10541 10542 10543 10548 10549)
1314 * Fixed a bug that caused the 1.6 AIX client to never receive any RX
1315 packets in the kernel. (RT #131725)
1319 * Support Solaris 11 (9454 9455)
1321 * Allow other users to access filesystems mounted by root. (9452)
1325 * Build tvolser and dvolser on this platform (10122)
1326 * Several fixes to catch up with newer releases (10374 .. 10381)
1330 * Build tsalvaged, tvolser and dvolser on this platform (10121)
1331 * Fixed build on NetBSD 5 and newer. (10138)
1337 * Fixes for OpenAFS-SA-2013-0003 and OpenAFS-SA-2013-0004
1343 * Obey the jumbo/nojumbo settings for ubik servers (the DB servers)
1344 too. In previous releases, those servers may have used jumbograms
1345 even if they were not configured to do so. This change corrects
1346 the actual behaviour, and will improve performance and reliability
1347 for sites where jumbograms are problematic. It could cause a decrease
1348 in performance for sites where jumbograms work, but those can turn
1349 them back on manually.
1351 * Dozens of fixes for common coding problems like use after free,
1352 use of possibly uninitialised memory, reading or writing past the
1353 end of arrays and potential NULL pointer derefences. Spotted by
1354 code analysis tools or human inspection.
1356 * Documentation improvements.
1358 * Fixes and improvements to the diagnostic or log messages printed by
1359 vos, the fileserver and others.
1361 * Build fixes, making parallel builds more reliable with certain
1362 configuration options and helping various platforms including
1363 recent releases of IRIX, Solaris and several flavours of Linux.
1365 * Avoid sending a small amount of data over the wire unencrypted
1366 under certain conditions, and emit the correct error message in
1369 All server platforms
1371 * Avoid generating duplicate IDs for readonly and backup volumes,
1372 which could happen under certain conditions.
1374 * Allow the fileserver to return volume data like quota or free space,
1375 which is available publicly elsewhere, without the additional access
1376 check for read permissions on a volume's root directory the fileserver
1379 * The fileserver now emits a log message when it ran out of memory for
1382 * Avoid several potential fileserver problems, including memory
1383 corruption and segmentation faults, due to client bookkeeping.
1385 * Avoid known cases of silent data corruption due to background syncs
1386 on the fileserver, especially during Copy on Write.
1388 * Make the fileserver sync behaviour runtime configurable. Up to 1.4.5,
1389 we had synchronous syncs which were safe but really slow. Since 1.4.5,
1390 we've had asynchronous syncs which are much faster but believed to
1391 be the cause of rare data corruption issues, and while all known cases
1392 of these happening are believed to be fixed in the 1.6.3 release, doubts
1393 remain. This change allows choosing between those, and in addition allows
1394 to turn syncs by the fileserver off altogether, thus relying on the vice
1395 partition's backend filesystem and the operating system, or to just
1396 execute them when a volume is detached. The default behaviour is
1397 unchanged from releases since 1.4.5, but it's highly recommended to
1398 consider the additional options this change provides. Future OpenAFS
1399 releases will default to "-sync=none".
1401 * For dbservers, avoid a situation where misinterpreting transient
1402 network errors causes long-term issues with achieving ubik quorum.
1404 All UNIX client platforms
1406 * Improvements to the detection of an aklog-specific krb5 configuration
1407 file, for the purposes of turning on "weak crypto" for aklog.
1409 * Fixed a regression introduced in release 1.6.2 which caused the
1410 supposedly persistent disk cache to be discarded upon client start.
1415 * Support Linux kernels up to 3.10
1417 * Fixed two bugs making it impossible to unmount a disk cache filesystem
1418 after it has been used by the client. (RT #131613)
1420 * Fixed a bug that could cause an oops with kernels 3.6 and later
1424 * Improved support for OpenBSD 4.9 to 5.3
1428 This release number had to be skipped for technical reasons.
1434 * Support Linux kernels up to 3.8.
1436 * Make the init script cope with the output of ifconfig on recent Fedora.
1442 * Fix buffer overflows in fileserver and ptserver.
1444 * Abort an rx connection when given an unknown service (Gerrit 7593).
1446 * "idle dead" behavior improvements.
1448 * Documentation updates.
1450 All server platforms
1452 * Fix rare file corruption during background sync (Gerrit 8796).
1454 * Fix corrupting clients' metadata cache during certain errors (Gerrit
1457 * Avoid saying a volume doesn't exist when accessed as the volume is
1458 going offline (Gerrit 7488).
1460 * Fix fileservers to properly report >2 TiB partitions.
1462 * Fix stale volume info from vos examine on non-DAFS filservers.
1464 * Fix possible volume corruption with vos convertROtoRW.
1466 * Fix bosserver to preserve all command-line options over restart.
1468 * Fix bosserver to properly kill hung processes during shutdown.
1470 All UNIX client platforms
1472 * Fixes for memcache, especially on Solaris.
1474 * Increase the size of the DNS resolver answer buffer to allow sites
1475 with a long response list to use SRV and AFSDB records.
1477 * Fix a crash when a server appears to run out of addresses (Gerrit
1480 * Fix cache corruption when reading from a file another client is
1481 simultaneously writing to (Gerrit 7994).
1483 * Improve handling of disk cache disk errors.
1487 * fix DKMS configuration for DKMS 2.2.
1489 * Avoid generating inode number 0 with md5 inodes (Gerrit 7276).
1491 * Fix a crash when reading /proc/fs/openafs/unixusers (Gerrit 7914).
1493 * Make PAG-less access use the real UID of the calling process
1494 instead of the effective UID, when determining what credentials to
1497 * Fix possible abuse of fs mkmount.
1498 Prior to 1.6.2, users could crash a client by nesting volume mounts.
1500 * Fix fileserver memory corruption on RHEL 6
1501 Prior to 1.6.2, fileservers on RHEL 6 may crash under heavy load.
1503 * Fix client page cache corruption on Linux
1504 When multiple clients read and write to a file, the reading client
1505 may see first page (4096 bytes) of a file as nulls.
1507 * Support Linux kernels up to 3.7.
1509 * Support newer glibc versions.
1511 * Improve client systemd unit file.
1513 * Update Red Hat packaging.
1517 * Fix crashes on shutdown.
1519 * Prevent unloading the module before shutdown completes.
1521 * Security improvement for the OpenAFS preference pane.
1525 * Support newer versions of the Sun Studio compiler software.
1527 * Support compiling on newer versions of Solaris 11 and Solaris 10.
1530 OpenAFS 1.6.0 (2011-08-15)
1534 * Substantial Rx updates to correct erroneous behavior.
1536 * vos now properly deals with matching sites when servers are
1539 * Don't stop Rx keepalives after an ackall is received, avoiding
1540 spurious connection timeouts. (128848)
1542 * Don't retry Rx calls on channels returning busy errors and improve
1543 Rx busy call channel error handling. (128671)
1545 * Properly enable Rx connection hard timeouts.
1547 * Rx NAT pings are not enabled until peer has answered.
1549 * Initialize rx_multi lock before use.
1551 * Avoid spurious crashes when initializing in "backup" client.
1553 * Revert UUID support in vos.
1555 * pt_util fixed to properly create new databases.
1557 * MTU discovery now properly shut down on call reset.
1559 * Avoid leaking references to hosts during callback break multi-Rx
1560 operations. (129376)
1562 * xstat tools now cope with differing timeval structures between
1565 * Numerous fixes to command argument parsing.
1567 * Documentation updates.
1569 All server platforms
1571 * A file descriptor leak which could result in corrupted files in the
1572 fileserver was fixed. An IMMEDIATE upgrade from previous 1.5 release
1573 fileservers is recommended.
1575 * Fix ptserver supergroups support on 64 bit platforms.
1577 * Demand attach salvaging doesn't use freed volume pointers.
1579 * Properly hold host lock during host enumeration in fileserver.
1581 * Attempt to recovery more quickly from timed out volume release
1584 * Auditing now properly byte order swaps IP addresses when printing.
1586 * vos split now has improved error handling.
1588 * Many changes to again support Windows fileservers.
1590 * During volume removal, data removal speed improved.
1592 * Improve CPU utilization during volume attaching by DAFS.
1594 * In salvager check-only mode, avoid potentially fixing a vnode.
1596 * Fix support for large (greater than 2gb) volume special files.
1598 * Salvager will not crash if multiple or bad volume link tables are
1601 * Avoid erroneous full dump by remembering which sites were out of
1602 date at the start of the release.
1604 * A deleted volume can now be recreated properly.
1606 * Callbacks are again not broken during whole partition salvages.
1608 * Positional vectored IO fixed for largefile (>2GB) capable systems.
1610 * Fileserver per-client thread usage again properly enforced.
1612 * Anonymous dropbox support improved and drawbacks documented.
1614 * Demand attach: ensure vnodes are not reallocated while in use due to
1615 volume bitmap errors.
1617 * Properly support large volume numbers (larger than 2147483647).
1619 * Allow salvager to be run manually again when DAFS is being
1622 * Avoid leaking references to hosts during callback break multi-Rx
1623 operations. (129376)
1625 * Demand attach: unlink fileserver state file on standalone salvage.
1627 * Salvager tries harder to detect linktable issues.
1629 * Demand attach: don't attach volumes with special status set.
1631 * Avoid crashing on host table exhaustion. Instead, defer clients.
1635 * afs_config will not longer set the Tray Icon State in the registry
1636 if the checkbox is not present in the dialog. (128591)
1638 * AFS Explorer Shell Extension now works from folder backgrounds.
1639 Overlays for mount points and symlinks are present in the dll, but
1640 are not registered at present by the installers.
1642 * Do not use RankServerInterval registry value as the value for
1643 PerformanceTuningInterval.
1645 * When the data version of a mountpoint or symlink changes, the target
1646 string in the cm_scache_t object must be cleared.
1648 * "fs checkservers" now includes vldb servers in the output and only
1649 lists multi-homed servers once. A multi-homed server that has at
1650 least one up interface is no longer considered to be down.
1652 * When asynchronously storing dirty data buffers to the file server
1653 ensure that (a) the cm_scache_t object and the cm_buf_t object are
1654 for the same File ID so that locking and signalling work properly;
1655 and (b) if the FID no longer exists on the file server, do not
1656 panic, just discard the buffer.
1658 * When processing VNOVOL, VMOVED and VOFFLINE errors perform server
1659 comparisons by UUID or address and not simply by cm_server_t
1660 pointer. Otherwise, server failover may not succeed.
1662 * Do not preserve status information for cm_scache_t objects when the
1663 issuing server is multi-homed.
1665 * Giving up all callbacks when shutting down or suspending the machine
1666 is now significantly faster due to the use of an rx_multi
1667 implementation. (This functionality is still off by default and
1668 must be activated by a registry value.)
1670 * Race conditions were possible when updating the state of the
1671 cm_volume_t flags and when moving the volumes within the least
1674 * Ensure that the lanahelper library does not perform a NCBRESET of
1675 each lan adapter when enumerating the current network bindings.
1676 Correcting this permits OpenAFS to work on Windows 7 when the
1677 network adapter settings change.
1679 * Fix creation of mount points and symlinks as \\AFS\xxxx
1681 * Icon tray state now conditionally set. (128591)
1683 * Properly create new cell mount points in freelance mode.
1685 * Avoid recursive offline volume checks.
1687 * Fix caching of non-existent volumes. The test to trigger an
1688 immediate CM_ERROR_NOSUCHVOLUME in cm_UpdateVolumeLocation() was
1691 * Prevent the background daemon from checking the status of
1692 non-existent volumes. cm_CheckOfflineVolumes() should skip volume
1693 groups with the CM_VOLUMEFLAG_NOEXIST flag set.
1695 * The afskfw library should return an error immediately if the
1696 krb5_32.dll library cannot be loaded. Affects afslogon.dll and
1699 * No longer depend on leashw32.dll in afskfw library.
1701 * NPLogonNotify must provide the user password in all calls to
1702 KFW_AFS_get_cred(). It cannot count on a credential cache being
1703 preserved between calls. Permits tokens to be acquired for all
1704 cells listed in the TheseCells registry value for a domain.
1706 * Improve the trace logging from NPLogonNotify().
1708 * Avoid a race when writing the cm_scache_t mountPointString
1709 when acquiring mount point or symlink target data via
1710 cm_GetData(). The race could result in bogus target
1713 * Permit the use of des-cbc-md5 and des-cbc-md4 enctypes
1714 as DES keys in asetkey.exe.
1716 * aklog supports dotted Kerberos v5 principal names.
1718 * afskfw library always attempts afs/cell@USER-REALM
1720 * afskfw library must test return code from krb5_cc_start_seq_get() or
1721 will trigger a null pointer exception when using Heimdal.
1723 * Lock protected fields must be 32-bit in order to avoid memory
1726 * Add support for NTFS symlinks.
1728 * Handle file search requests for virtual syscall ioctl file.
1730 * Process SyncOps properly to enforce ordered operations.
1732 * Avoid recursing during NewServer operations.
1734 * Correct lock acquisition order during SMB locking.
1736 * Add shutdown message to event log.
1738 * Check offline volume status by policy rather than on each daemon
1741 * Return error on directory object not found instead of crashing.
1743 * Improve error message output.
1745 * afslogin.dll can start afsd_service if it's not starting or started.
1747 * Optimize away release lock RPCs for deleted files.
1749 * Background Daemon will not perform operations on deleted files.
1751 * Resort recently used directories to the top of the LRU if the
1752 directory is larger than the stat cache.
1754 * Resort deleted objects to the bottom of the LRU.
1756 * Use interlocked operations for state and queue fields to allow safe
1757 bit set and clear on multiprocessor systems.
1759 All UNIX client platforms
1761 * Servers now marked down when GetCapabilities returns error.
1763 * In-use vcache count is now properly tracked.
1765 * Check for /afs existance before starting, unless -nomount is
1768 * Avoid a potential panic when using /afs/.:mount syntax.
1770 * Avoid a panic in memcache mode due to missing CellItems file.
1772 * FUSE client support fixed for non-/afs mounts.
1774 * Avoid a potential deadlock (which times out) when we need to
1775 allocate more callback returns and must flush some already in use.
1777 * Deal with libcom_err conflicts with other packages using it
1778 (e.g. krb5) (128640)
1780 * Fall back to afs3-vlserver SRV record values when afs3-ptserver SRV
1781 record is not available.
1783 * Avoid holding unneeded locks when probing server capabilties.
1785 * Do not attempt page flushes for directories.
1787 * Rx connection reference counting is enabled.
1789 * An Rx connection reference count leak is fixed in bulkstat.
1791 * Handle unparsable directory objects.
1793 * Handle Kerberos cred cache errors in aklog.
1797 * Fix PAG usage to track by PAG identifier, not group list.
1801 * Fix socket termination on shutdown.
1803 * Support for 7.2, 7.3, 7.4 and 8.2 included.
1805 * References to vcaches are no longer leaked during root or reclaim.
1807 * Remove support for "Giant" lock as we no longer need to use it.
1809 * Don't sleep with AFS GLOCK.
1811 * Properly enable 64 bit long long support.
1813 * Restore support for FreeBSD 7 (128612)
1815 * Fix locking issues at shutdown and avoid panic at shutdown due to
1818 * Support for virtual network stacks.
1820 * New RC script, updated packaging.
1824 * Properly create new vnodes to avoid crashing in the client.
1828 * Support through kernel 2.6.39. Treat Linux 3.0 as Linux 2.6 for
1831 * Use rx_Readv in cache bypass to improve performance.
1833 * Properly handle 0-length replies during cache bypass operations.
1835 * Properly handle non-contiguous readpage cache bypass operations.
1837 * Do proper locking when transitioning to or from cache bypass.
1839 * Avoid extra runs of vcache freeing routine. (128756)
1841 * Perform vcache eviction via a fast path before visiting vcaches
1842 where sleep is needed.
1844 * setpag() errors are now properly reported.
1846 * Avoid attempting to free stat cache entries when we are below
1847 user-specified number of entries in use.
1849 * Properly track user-specified number of stat cache entries to use as
1850 a desired usage target.
1852 * Don't read pages beyond EOF in the cache. (128452)
1854 * Various corrections and improvements to Red Hat packaging, including
1855 modifying the init script to allow deferring for a new binary
1856 restart and properly supporting RHEL6.
1858 * Fix lockup in 2.6.38 due to erroneous kernel feature configure test.
1860 * Improve RPM building tools.
1862 * Attempt to properly handle SELinux in packaging.
1864 * Init script properly returns status as exit code.
1866 * RPM packaging fixes (executable libraries, no postinstall message)
1868 * Kill i386 from RPM packaging.
1872 * MacOS 10.7 support.
1874 * Properly handle setpag errors. PAGs are not supported.
1876 * Check for unloaded kernel extensions when decoding AFS panics.
1878 * Disable "get tokens at login" in prefs pane if AD authentication
1879 plugin is configured.
1881 * aklog AuthorizationPlugin now provided.
1883 * Preferences Pane behavior fixed for 1.6 series (version detection is
1884 used to select default behavior).
1886 * A potential kernel panic during bulkstat operations is
1889 * 64-bit MacOS kernel performance is greatly improved. (128934)
1891 * Properly shut down AFS, closing the Rx socket in the upcall handler
1892 to avoid attempting to process data after we can no longer do so.
1894 * Rework logic for bulk status operations to avoid a potential hang.
1896 * Avoid panic when doing FSEvent synthesis.
1898 * Fix bug when using non-dynroot.
1900 * Update Kerberos support in PreferencesPane.
1904 * Updates for platform support.
1908 * Bug fixes for issues introduced previously in 1.5 series.
1910 * Support through OpenBSD 4.8.
1914 * Switch to ioctl() syscall replacement for Solaris 11 since syscall
1917 * Fix support for Solaris pre-10.
1919 * Corrected Solaris 11 startup script.
1921 * vcache mappings freed on shutdown to avoid panic.
1923 * Properly report errors for AFS system call callers.
1925 * Don't leave dangling function references if kernel extension fails
1928 * Try harder to avoid deadlocks on file-larger-than-cache operations.
1930 * Avoid panic on shutdown when mount failed.
1935 All systems: Minor bugfixes.
1937 ADDITIONAL CHANGES IN 1.6.0PRE2
1941 - Documentation updates.
1943 - Don't stop Rx keepalives after an ackall is received, avoiding
1944 spurious connection timeouts. (128848)
1946 - Don't retry Rx calls on channels returning busy errors. (128671)
1948 - vos will not die with a double free error at command completion.
1950 - Properly enable Rx connection hard timeouts.
1952 - Initialize rx_multi lock before use.
1954 - Avoid spurious crashes when initializing in "backup" client.
1958 - Check for /afs existance before starting, unless -nomount is specified.
1960 - Avoid a potential panic when using /afs/.:mount syntax.
1962 - Avoid a panic in memcache mode due to missing CellItems file.
1964 All server platforms:
1966 - Attempt to recovery more quickly from timed out volume release
1969 - Auditing now properly byte order swaps IP addresses when printing.
1971 - vos split now has improved error handling.
1973 - Many changes to again support Windows fileservers.
1975 - During volume removal, data removal speed improved.
1977 - Improve CPU utilization during volume attaching by DAFS.
1979 - In salvager check-only mode, avoid potentially fixing a vnode.
1981 - Fix support for large (greater than 2gb) volume special files.
1983 - Salvager will not crash if multiple or bad volume link tables
1986 - Avoid erroneous full dump by remembering which sites were out of date
1987 at the start of the release.
1991 - Remove support for "Giant" lock as we no longer need to use it.
1993 - Don't sleep with AFS GLOCK.
1995 - Properly enable 64 bit long long support.
1997 - Restore support for FreeBSD 7 (128612)
1999 - Fix locking issues at shutdown.
2003 - support through kernel 2.6.38.
2005 - RedHat packaging now properly supports RHEL6.
2007 - Use rx_Readv in cache bypass to improve performance.
2009 - Properly handle 0-length replies during cache bypass operations.
2011 - Properly handle non-contiguous readpage cache bypass operations.
2013 - Do proper locking when transitioning to or from cache bypass.
2015 - Avoid extra runs of vcache freeing routine. (128756)
2019 - Check for unloaded kernel extensions when decoding AFS panics.
2021 - Properly handle setpag errors. PAGs are not supported.
2023 - Disable "get tokens at login" in prefs pane if AD authentication
2024 plugin is configured.
2028 - support through OpenBSD 4.8.
2032 - Fix support for Solaris pre-10.
2036 - afs_config will not longer set the Tray Icon State
2037 in the registry if the checkbox is not present in
2038 the dialog. (128591)
2040 - AFS Explorer Shell Extension now works from folder
2041 backgrounds. Overlays for mount points and symlinks
2042 are present in the dll, but are not registered at present
2045 - Do not use RankServerInterval registry value as the value for
2046 PerformanceTuningInterval.
2048 - When the data version of a mountpoint or symlink changes,
2049 the target string in the cm_scache_t object must be cleared.
2051 - "fs checkservers" now includes vldb servers in the output
2052 and only lists multi-homed servers once. A multi-homed
2053 server that has at least one up interface is no longer
2054 considered to be down.
2056 - When asynchronously storing dirty data buffers to the
2057 file server ensure that (a) the cm_scache_t object and
2058 the cm_buf_t object are for the same File ID so that
2059 locking and signalling work properly; and (b) if the
2060 FID no longer exists on the file server, do not panic,
2061 just discard the buffer.
2063 - When processing VNOVOL, VMOVED and VOFFLINE errors perform
2064 server comparisons by UUID or address and not simply by
2065 cm_server_t pointer. Otherwise, server failover may not
2068 - Do not preserve status information for cm_scache_t objects
2069 when the issuing server is multi-homed.
2071 - Giving up all callbacks when shutting down or suspending
2072 the machine is now significantly faster due to the use
2073 of an rx_multi implementation. (This functionality is
2074 still off by default and must be activated by a registry
2077 - Race conditions were possible when updating the state
2078 of the cm_volume_t flags and when moving the volumes
2079 within the least recently used list.
2081 - Ensure that the lanahelper library does not perform a
2082 NCBRESET of each lan adapter when enumerating the
2083 current network bindings. Correcting this permits OpenAFS
2084 to work on Windows 7 when the network adapter settings
2087 - Fix creation of mount points and symlinks as \\AFS\xxxx
2093 - vos now properly deals with matching sites when servers are multihomed.
2097 - Servers now marked down when GetCapabilities returns error.
2099 - In-use vcache count is now properly tracked.
2101 All server platforms:
2103 - Fix ptserver supergroups support on 64 bit platforms.
2105 - Demand attach salvaging doesn't use freed volume pointers.
2107 - Properly hold host lock during host enumeration in fileserver.
2111 - Fix socket termination on shutdown.
2113 - Support for 7.2, 7.3, 7.4 and 8.2 included.
2115 - References to vcaches are no longer leaked during root or reclaim.
2119 - Define llseek handler to avoid ESPIPE error in 2.6.37.
2121 - Mount interface replaces get_sb (new for 2.6.37, not yet required).
2123 - RedHat init script allows deferring for a new binary restart.
2125 - DEFINE_MUTEX replaces DECLARE_MUTEX for 2.6.37.
2129 - Correct return value from setpag syscall.
2133 - Bug fixes for issues introduced previously in 1.5 series.
2137 - Switch to ioctl() syscall replacement for Solaris 11 since syscall 65
2141 OpenAFS 1.5.78 (2010-11-04)
2145 * Revisions to Rx to fix performance issues.
2147 * Make fs getfid behave consistently across all platforms. (128372)
2149 * Properly check IDs handed to pts when creating users or groups so
2150 useful error messages can be provided. (128343)
2152 * Correct byte order handling of port in afsconf_LookupServer for SRV
2155 * Force a full dump when releasing to a site which was previously
2156 marked "don't use", in case the previous clone was out of date.
2158 All server platforms
2160 * Demand salvage of attached volumes now correctly track attachment
2163 * Avoid a potential crash due to failure to hold a lock when attaching
2168 * Track SMB connections by SID rather than username.
2170 * Error write attempts to known-readonly volumes earlier.
2172 * Validate directory buffers to avoid potential crashes.
2174 * Handle VIO errors from bulkstatus.
2176 * Make PMTU discovery configurable and register error handlers for it.
2178 All UNIX client platforms
2180 * Use larger I/O sizes in memcache to improve performance.
2182 * Avoid potential alignment issues doing I/O for pioctl calls.
2186 * Avoid panicing if the listener process is not findable.
2188 * Avoid deadlock issues while performing lookups.
2192 * Handle stale file handle errors for some cache partition types.
2194 * Avoid blocking with xvcache lock when attempting to free in-use
2197 * Build fixes for older kernels.
2199 * Properly configure LWP to use ucontext() on platforms where it
2202 * Eliminate spurious errors from AFS system call returns. (126230)
2206 * Attempt to honor configured Kerberos defaults in Preferences Pane.
2209 OpenAFS 1.5.77 (2010-09-08)
2213 * Rx path MTU detection will terminate detection in cases where the
2214 minimum required packet size cannot be transferred.
2216 * vos dryrun mode now shows effects for syncvldb single volume case.
2218 * vos dryrun mode now shows "status after" for syncvldb and syncserv.
2220 All server platforms
2222 * RXAFS_GetStatistics64 now returns statistics properly.
2226 * Attempt to properly identify the local system SMB connection for
2229 * Remap timeout and offline errors to proper NT RPC errors.
2231 * Properly fail over to other replicas on bulkstat IO errors.
2233 * Properly error delete-mode createfile if a file is set readonly.
2235 * Validate directory entry buffers to avoid crashing the service.
2237 * Log file modes properly.
2239 * Log cell name when logging server information.
2241 All UNIX client platforms
2243 * cacheout program for discarding callbacks is now built.
2245 * bulkstatus kernel locking is corrected to avoid a potential panic.
2249 * userspace support update
2253 * Updated vnode locking for children returned via lookup().
2255 * Avoid file open undercount with needed calls to
2256 FakeOpen/FakeClose().
2258 * Use vnode_pager_setsize to properly track file size during kernel
2261 * Update system call installation.
2263 * Fix shutdown of Rx kernel listener to avoid potential dereference
2266 * Avoid closing vnodes during vnode recycle.
2268 * Fix bogus call to FlushVS for vnode reclaims.
2272 * Packaging updated for current configure options and built files.
2274 * Cache bypass now holds reference on pages during readpage.
2276 * s390x setgroups32 patching update.
2280 * DNS resolver is reinitialized on IP address change. (126440)
2283 OpenAFS 1.5.76 (2010-08-16)
2287 * Updates to build-time configuration.
2289 * Fix XDR support in Rx to match header definition.
2291 * vos status now shows transaction creation, not action creation.
2293 * Rx avoids reporting loopback adapters when listing interfaces.
2295 All server platforms
2297 * Demand-Attach Fileserver always built and installed (dafileserver,
2298 davolserver, dasalvager).
2300 * Return VNOVOL from fileserver when a volume is deleted.
2302 * Ignore duplicate tags during volume restore operation.
2304 * Update inode array after salvage repairs volume.
2306 * Zero a corrupted header in memory during salvage to avoid further
2309 * Fix NAMEI backend to allow low-numbered volumes to work properly.
2311 * ptserver does not include cell name as part of length check for
2314 * Updated error messages for unblessed volumes.
2316 * vlserver avoids buffer overflow with regex pattern
2318 * Attach-time failures now note failures as the rest of the fileserver
2321 * Server argument logging will no longer overflow stack.
2323 * Provide fast-restart-like unsafe-nosalvage option for DAFS.
2325 * Deal with host hash collisions in the fileserver.
2329 * Avoid crashing when interpreting a drive letter as potentially
2330 matching a cell name.
2332 * Properly handle volume package errors.
2334 * Allow page recycling from known-readonly content without ensuring
2337 * 32 bit tools installer should not override client configuration.
2339 * Ensure root scache item has a valid callback when use is attempted.
2341 * Freelance directory changes now properly invalidate and replace the
2344 All UNIX client platforms
2346 * Support disconnected reconnecting with specified UID for PAGless
2349 * Proper disconnected vnode reference tracking.
2351 * Update server site blacklisting to not return success if nothing was
2354 * Avoid a panic during vcache contention due to CVInit vcache
2359 * Update for network stack in 8.1/9.0.
2369 * Disable PMTU error packet handling.
2373 * Debian packaging updated.
2375 * freezer interface updates.
2379 * Hold references to disconnected mode written vnodes properly.
2383 * Handle NFS translator module references for amd64.
2385 * INODE fileserver backend support now exists for amd64.
2388 OpenAFS 1.5.75 (2010-07-07)
2392 * Prevent rx_rpc_stats global lock from being a bottleneck.
2394 * Path MTU discovery is now provided to allow traffic to pass networks
2395 with sub-1500 byte MTUs and poor fragment handling.
2397 * Further reduce Rx NAT ping transmission when enabled.
2399 * Update Kerberos 5-based token handling in rxkad from upstream
2402 * Update version numbers emitted during build to reflect what is
2403 actually being built.
2405 * Add "-human" switch for human-readable units in fs diskfree and
2408 * vos provides reasons for locked volumes when known.
2410 * Do not count retransmission and ping acks as non-idle for Rx
2413 * Rx: provide service-specific data getter and setter routines.
2415 * Update build-time Kerberos detection.
2417 * Updated userspace AFS client.
2419 * Beginning of a modernized test suite.
2421 * Additional documentation.
2423 * Updated documentation, notably the Administrators Guide.
2425 * Substantial code cleanup.
2427 All server platforms
2429 * Update handling of vnode allocation failures.
2431 * DAFS: allow salvaging volumes not known to the fileserver, to allow
2432 cleanup of data not attached to a current volume.
2434 * Properly handle volumes slated for destruction.
2436 * Handle volumes with many files properly.
2438 * Force core file generation in bosserver by overriding default
2439 resource limits when possible.
2441 * Update vlclient and vldb_check.
2443 * Avoid potentially corrupting a volume on creation if files are left
2444 from previous failed cleanup.
2446 * Note volume changed during salvage as needed.
2448 * DAFS: do not assume invalid addresses are in fileserver address hash
2451 * Avoid tying up fileserver threads with volumes that are being taken
2454 * Do not set inUse on volumes for non-DAFS other than in fileserver.
2456 * Break origin's callback on target of rename operation.
2458 * Avoid unneeded parent directory link updates during some rename
2461 * Do not open /dev/console for writing in the fileserver.
2463 * DAFS: avoid spurious restarts when binary restarts are configured.
2465 * Avoid spurious and unneeded calls to sync(), which can slow down the
2470 * Revised SMB QuerySecurityInfo to address issues caused by MS10-020
2471 (http://support.microsoft.com/kb/980232)
2473 * Prevent use of the AFSCache file contents if mapped to a new
2476 * Make fs newcell include behavior compatible with the non-Windows
2479 * Provide a registry option (FreelanceImportCellServDB) to pre-create
2480 mount points in the AFS root for all cells in CellServDB.
2482 * Fix a memory leak in the cm_FreeServerList() routine.
2484 * Reduce privilege when reading registry CellServDB.
2486 * Add support for RPC Pipe Service NetWkstaGetInfo levels needed for
2489 * Prevent overflow when computing quota percentage in Explorer Shell.
2492 * Generate meaningful errors for ACL operations on freelance AFS root.
2494 * Fix error handling on InlineBulkStatus RPCs.
2496 * Show configuration pages for all types of MSI installations.
2498 * Improve freemount AFS root directory handling and operations.
2500 * Properly validate GetVolumeStatus pioctl responses.
2502 * Commit file length changes and dirty buffers when flushing a file.
2504 All UNIX client platforms
2506 * Update version of files for disk cache.
2508 * Do not call afs_FlushVCBs with xvcache lock held, to improve
2511 * Add mariner log messages for creating and removing files.
2513 * Don't hold xvcache lock while creating symlinks, to improve
2516 * Provide -dynroot-sparse mode to not show all cells in CellServDB in
2519 * Avoid a potential crash in aklog in linked cell handling.
2521 * Log MTU-caused packet retransmission.
2523 * Prevent crashes caused be fs checkservers while cache is being set
2526 * fs getserverprefs now has a buffer large enough for the default
2529 * Report server address when logging warnings.
2531 * Avoid panic in GetCapabilities when cell is not known.
2533 * Lock process name and id for advisory lock warnings when possible.
2535 * Handle need for allocating additional Rx packets.
2537 * Properly handle errors from InlineBulkStatus operations.
2539 * Fix errors returned from fcntl() on readonly files locked for write.
2541 * Flush pending changes to the server on LOCK_EX unlock.
2543 * Reflect length changes as a result of callbacks even when file is
2546 * Avoid hanging due to error exit when attempting to store a large
2547 file to a non-largefile fileserver.
2549 * Recover from afs_GetVolSlot errors.
2553 * Bugfixes for kernel VFS and network routines.
2557 * Provide makesname().
2561 * Avoid syscall probes when keyrings are present, by default. (125215)
2563 * Remove "Big Kernel Lock" from VFS operations.
2565 * Use filehandles for all Linux 2.6 versions to avoid need for matched
2568 * Updated RPM packaging.
2570 * Fix dkms configuration provided with RPMs.
2572 * Hold reference on pages during background I/O for cache bypass.
2574 * Fix cache bypass handling of non-largefile fileservers.
2576 * Protect truncate_inode_pages mappings with mutex or semaphore as
2579 * Fix pagevec use in cache bypass. (127505)
2581 * Updates for 2.6.35
2585 * Improve launchd configuration.
2587 * Avoid hanging on recursive cache file lock acquisition when user
2588 notification is enabled.
2590 * Fix and re-enable bulkstat mode.
2598 * Precluding unmount while AFS is busy.
2600 * Avoid deadlocking when releasing the VFS object.
2602 * Stop network interface poller in kernel on AFS shutdown.
2604 * Avoid issues with lookups on empty directory names. (127356)
2607 OpenAFS 1.5.74 (2010-04-22)
2611 * Add "vos setaddrs" command.
2613 * Rx library lock contention avoidance between rx_NewCall and
2616 * Rx library races due to inconsistent use of rx_connection
2617 conn_data_lock to protect the flags field.
2619 * Rx library inconsistent use of RX_CALL_TQ_WAIT which could result in
2622 * Rx library must signal transmit queue waiters when flushing.
2624 * afsmonitor shows busy counts now.
2626 * afsmonitor displays xstat callback statistics.
2628 * Provide expandgroups for pts mem on a supergroups server.
2630 * Provide supergroup option to liste nested groups during pts mem.
2632 All server platforms
2634 * Avoid volume lock contention during DAFS startup.
2638 * Avoid a race when updating cell vldb server lists that can result in
2641 * Avoid a deadlock when managing CM_SCACHESYNC_STOREDATA state
2642 operations for directory objects.
2644 * Add new Windows Application Event log messages for VBUSY,
2645 VRESTARTING, ALL_BUSY, ALL_OFFLINE, and ALL_DOWN.
2647 * Reduce lock contention by waiting for cm_buf_t I/O operations.
2649 * Split the cm_buf_t flags field to separate the flags that are
2650 protected by the cm_buf_t mutex from those protected by the
2653 * In cm_UpdateVolumeLocation, avoid searching for a ".readonly" volume
2654 on a numeric volume name.
2656 * File buffer allocations whose offsets are beyond server EOF should
2657 be locally allocated and zero filled. The file server should not be
2658 issued a FetchData rpc which is guaranteed to fail.
2660 * Enable integrated logon to work with Windows 7/2008 when user logons
2661 are performed with a non-Domain Kerberos principal.
2663 * Add Protection Error messages to aklog output.
2665 All UNIX client platforms
2667 * Provide a FUSE-interfacing userspace afs client.
2669 * Updates to libuafs userspace cache manager.
2671 * Probe servers using GetCapabilities instead of GetTime, thus
2672 requiring fewer RPCs.
2674 * Fix DNS SRV record handling for cell lookup.
2678 * Fix sleep/wakeup routines.
2680 * Update for 8.0 release.
2684 * Handle high memory addresses correctly.
2688 * Make 32 bit AFS syscalls work again.
2690 * Work around finder "Duplicate" failure (caused by setting modes on
2693 * Disable bulkstat again (will be re-enabled at or before .75).
2695 * Provide symlink type hints during readdir.
2698 OpenAFS 1.5.73 (2010-03-24)
2700 All systems: Minor bugfixes. New features.
2702 * New functionality:
2706 - NAT keepalive support at Rx level.
2712 - Corrected server IP address output in vos syncvldb verbose mode.
2714 - Corrected server IP address output for last "yes" host in udebug.
2716 - Corrected SRV record support for canonicalizing cell names.
2720 - Fixed a potential race in Disconnected AFS "remove" support.
2722 - Fix a potential blocking condition in fakestat mode.
2724 - Avoid some errors and stack overflow reports when vos is interrupted.
2727 - Clean up several minor memory leaks.
2729 - If a large file is stored to a non-largefile fileserver, avoid
2730 a potential deadlock.
2732 - Increase maximum number of sysnames to 32.
2734 - Readd fs mariner "storing" message, missing since AFS 3.3.
2736 - Attempt timeouts on AFSDB lookups in userspace.
2738 - Avoid interrupting writes due to an idle deadtime timeout.
2740 All server platforms:
2742 - Properly notify only affected hosts for volume callbacks. (126497)
2744 - Allow volumes with trashed root directory to be recovered. (94658)
2746 - Hold lock in file and volservers when traversing partition list.
2748 - Use finer-grained locking in DAFS: volume, instead of partition locks.
2750 - Schedule all DAFS salvages via FSSYNC.
2752 - Avoid stale ptserver credential caching issue on keyfile update.
2754 - Improve callback table overflow handling. (126451)
2756 - Preclude deadlocks on when attempting to save DAFS state.
2758 - Avoid races deleting hosts. (126454)
2760 - Improve salvage speed for DAFS (124488)
2762 - The bosserver now handles SIGTERM.
2766 - Prevent the Explorer Shell extension from crashing if symlink
2767 creation failed. (126406)
2769 - A Rx level NAT ping has been implemented. A registry value enables.
2771 - Adds krb5 error message translation to aklog, afscreds,
2772 afslogon.dll, the network identity manager afs provider and
2775 - Default mode bit settings for file and directory creation are now
2776 provided, and can be configured.
2778 - An SMB request trace facility is provided and can be enabled for
2783 - Clean up properly on mount failure.
2785 - Add entry to /etc/vfs to allow umount to work.
2789 - Additional work to support FreeBSD 8-current.
2793 - Fix build issues with library order.
2797 - Fix s390 support conflict with executable stack patches.
2799 - Don't count root's AFS session keyrings against quota.
2801 - Correct dkms support in RPM config file.
2803 - Keyring destructor now properly cleans up all tokens.
2805 - Build again on old 2.6 kernels.
2807 - Avoid GLOCK leak when updating CellServDB in-core.
2809 - Fix byte-range lock handling.
2811 - Attempt to deal with bdi issues. (126514)
2815 - Some FSEvents hinting for authentication events now done. (23781)
2817 - Update uninstaller. (125634)
2819 - Rewrite afssettings and fstab code to avoid licensing issue with APSL.
2821 - Growl client for user monitoring of AFS events included.
2823 - Properly support insert-only dropboxes.
2825 - Add bulkstat support.
2827 - Include support for moving in Finder across mount points.
2829 - Preferences Pane includes support for Kerberos 5 ticket renewal.
2833 - Some support for OpenBSD 4.7.
2836 OpenAFS 1.5.72 (2010-02-15)
2840 * Provide internationalization support in com_err.
2842 * Fix array length checking to avoid crashes when checking for a
2843 volume type based on name in vos.
2845 All server platforms
2847 * Provide backward compatible "-f" flag to salvager for force mode.
2851 * Restore use of DNS AFSDB and SRV records by kaserver clients.
2853 All UNIX client platforms
2855 * Fix client cache file truncation to not lose chunks when truncating
2858 * Ensure a cache writeback hook is installed in the client (bug from
2861 * Avoid spurious free memory warnings during clean shutdown.
2863 * Fakestat mode avoids AFSDB lookups.
2865 * "fs storebehind" now correctly reports errors on readonly volumes.
2867 * Additional documentation for "fs getcacheparms"
2869 * Forced new uuid generation with "fs uuid -generate" now works
2870 enforced permission correctly.
2874 * Add optimized Rx event handler in kernel.
2876 * Installer now allows installing an older version.
2878 * Panic decoder can now deal with MacOS 10.5 again.
2880 * MacOS ._ files are now correctly not looked up as cellnames.
2884 * To deal with SELinux file labeling, try cache accesses with current
2885 credentials in event of failure.
2887 * Rx XDR encoding bug on i386 Linux is fixed (bug introduced in
2892 * Code compilation fixes.
2896 * Update for OpenBSD 4.6.
2899 OpenAFS 1.5.69 (2010-01-19)
2903 * Configuration of BOSserver no longer defaults to weekly restarts
2906 * Provide BOS restricted mode by default.
2908 * Add support for "vos endtrans" command.
2910 * Default to providing full output from vos listvol.
2912 * Correct additional-address tracking in the fileserver.
2914 * Improve Rx performance by not unnecessarily dropping and reacquiring
2915 call locks in read and write processes.
2917 * Avoid crashes when monitoring volserver transactions across
2918 potential transaction garbage collection.
2920 * Numerous warning fixes.
2922 All server platforms
2924 * Avoid saving fileserver state in demand attach fileserver when
2927 * Demand attach fileserver allows other callers to schedule salvages.
2929 * Demand attach "bos salvage" now works correctly with restricted
2934 * Numerous changes to the client-internal btree directory handling to
2937 * fs examine reports owner and group ids as signed values (PTS groups
2940 * Preclude corruption due to races writing to smb buffers.
2942 * Allow MTU settings in registry to be used.
2944 * Apply MTU to both send and receive sizes.
2946 All UNIX client platforms
2948 * Avoid double-freeing Rx call structure if reading a response from
2949 the file server results in a short read.
2951 * Handle negative lengths in FetchStatus results correctly.
2953 * Properly clean up allocated memory at shutdown.
2955 * Default to AFSDB compiled into the cache manager.
2957 * Avoid inadvertant disclosure of stat() information to clients not so
2960 * Correct a bug with AFSDB lookups introduced with SRV record support.
2964 * Install kernel panic processing tool in /Library/OpenAFS/Tools.
2966 * Include debugging symbols for kernel extension in additional package.
2968 * Support "Application Firewall" users.
2970 * Avoid ._cellname AFSDB lookups.
2972 * Compile preferences pane as a universal binary.
2976 * Use splice to speed up storing files.
2978 * When using memcache, avoid duplicating work in readpages.
2980 * Use dget_parent to safely find an inode's parent.
2982 * Disable access time updates in our superblock.
2984 * Avoid crashing doing writeback if no credentials were stashed at
2987 * Simplify keyring support.
2989 * Properly clean up vcache in event of failed mount.
2993 * Update for current FreeBSD 8.
2997 * Abstractly manipulate groups as now required.
2999 * Abstractly access time instead of using lbolt directly.
3002 OpenAFS 1.5.68 (2009-12-08)
3006 * aklog now attempts to convert non-AFS errors to human-readable
3009 * Make stack not executable when compiling assembler source with GCC.
3011 * Numerous source warning cleanups and code reorganization.
3013 All server platforms
3015 * Compute midnight for volume statistics calculation from local time.
3017 * Salvager now orphans duplicate special inodes when running to allow
3018 recovery in event of a problem, instead of simply ignoring the
3021 * Support to ensure a server panic attempt leaves a core and thus
3022 restarts in a timely manner, rather than potentially hanging. Use
3023 panic to attempt cleanup before leaving a core when possible.
3025 * Volume sync data reported during bulkstatus is now set correctly.
3027 * Provide better tuning for fileserver file descriptor caching.
3029 * Allow more than 128 threads in fileserver by modifying host
3030 structure in-use tracking.
3032 * Avoid crashes getting volume server status during transaction
3035 * Improved logging of offline volume conditions.
3037 * Correct volume statistics when cloning a volume.
3039 * Avoid referencing host structures in the fileserver which are marked
3042 * Demand attach fileserver corrections to avoid coring during an
3045 * host array bounds checking corrections to avoid buffer overflow.
3047 * Handle special inodes correctly when promoting an inode fileserver
3048 readonly volume to read-write.
3052 * Set the DOS Readonly attribute on a file/directory whenever the unix
3053 mode combined with the mask 0200 is true. Previously there was a
3054 discrepency between the mask used for testing for readonly behavior
3055 and that used for setting the attribute.
3057 * Disable AFSVolSync based .readonly "whole-volume callback" support
3058 because the all file servers prior to 1.5.67 (and perhaps 1.4.12) do
3059 not properly assign a value to the AFSVolSync structure in bulk
3060 status RPC responses.
3062 * Improve the error output from aklog to output the value from krb5
3063 error_message() if the afs_com_err output indicates an unknown
3066 * Convert VBUSY and VRESTARTING to CM_ERROR_ALLBUSY and do not permit
3067 them to be exposed to the smb redirector.
3069 * Convert STATUS_TIMEOUT responses to STATUS_IO_TIMEOUT to avoid
3070 confusion within the smb redirector.
3072 * Fix the byte order assigned to port numbers associated with AFSDB
3073 record lookups. They must be network byte order not host byte
3076 * Add dynamic server ranking based on RPC round trip time
3079 All UNIX client platforms
3081 * Additional shutdown-time memory leaks removed.
3083 * Improved logging of resource contention.
3085 * Provide dumping for Rx debug packet tracking support in source.
3087 * Update afscp test client to build, and provide an unlock client.
3089 * Client buffers for directory parsing can now be allocated beyond the
3090 fixed set formerly provided.
3092 * Work around race condition when manipulating read-only volume
3095 * Bugfixes to get PAG value pioctl.
3097 * Bugfixes to SRV record support.
3101 * Path MTU tracking code cleanup.
3103 * Avoid an oops due to racing with vcache recycling thread.
3105 * Changes to keyring PAG handling: for sufficiently new kernels, use
3106 only keyring-based PAGs, and disable group PAGs entirely.
3108 * Updates to the kernel page cache interface: writing pages will now
3109 not spuriously leak page locks, and will avoid requiring duplicate
3112 * Credential references are now tracked using native atomic counters.
3114 * Kernel mutex/semaphore lock ordering fix to avoid deadlocks.
3116 * Manipulate disk cache with credentials used to initialize it, to
3117 avoid security issues.
3121 * Fix fstrace message catalog location.
3123 * Fix kernel fstrace logging.
3126 OpenAFS 1.5.66 (2009-10-25)
3130 * Avoid calling exit() in library code.
3132 * Add rx window size and peer timeout tuning APIs.
3134 * Correct rx peer timeout handling to disallow 0ms timeouts.
3136 * Correct calculation of rx RTT by disregarding retransmitted packets.
3138 * vos manpages updated to reflect changes in recent versions.
3140 * GNU-style long options (e.g. --cell) are now supported in all
3143 * fs listacl can now print a command to recreate the current ACL.
3145 All server platforms
3147 * Fix a race on transaction objects in the volserver which can cause a
3150 * Avoid destroying and setting to NULL the callback connection when it
3151 could still be being used.
3153 * Correct unlink handling in salvager.
3155 * Improve error messages due to I/O errors in the volserver.
3157 * Correct an issue which caused converted RO to RW volumes on namei
3158 fileservers to not come online immediately.
3162 * Official support for Windows 7 and Server 2008 R2.
3164 * Prevent a file server bug (FetchData returning an invalid length
3165 instead of zero) from causing an "unexpected network error" when
3168 * Promote DNS SRV records as superior to DNS AFSDB records. Support
3169 arbitrary port numbers for vldb servers.
3171 * Add AFSVolSync based .readonly "whole-volume callback" support.
3172 With this functionality, multiple objects from a .readonly volume
3173 can have their status validated by issuing a single
3174 RXAFS_FetchStatus RPC.
3176 * Remove drive mapping functionality and service start/stop from
3179 * Remove drive mapping functionality from afs_config.exe.
3181 * Use {HKLM,HKCU}\SOFTWARE\OpenAFS\Client DWORD "ShowMountTab" to
3182 restore access to drive mapping functionality in afscreds.exe and
3185 * Adjust SMB error return codes to avoid returning STATUS_TIMEOUT
3186 which results in the SMB redirector disconnecting.
3188 * Network Identity Manager OpenAFS Provider now provides its own "AFS
3189 lock" notification icon to report the status of "have tokens, have
3190 no tokens, service not started, service started but inaccessible".
3191 Hovering over the icon lists the cells for which tokens exist (if
3192 any) and the OpenAFS version number. Double-clicking executes the
3193 Network Identity Manager default action.
3195 * Prevent pioctl calls from retrying indefinitely when a sharing
3196 violation error occurs.
3198 All UNIX client platforms
3200 * Correct a condition which could discard the error from initializing
3203 * Avoid using invalid references to afs_Conn connection structures,
3204 and thus potentially producing invalid data when a retry is needed.
3206 * SRV records are now supported for discovering AFS servers.
3210 * Correct writepage behavior.
3212 * Fix error code handling in the writepage code.
3214 * Avoid leaking page locks, which could potentially hang a machine.
3218 * Preferences Pane improvements.
3222 * Avoiding attempting to handle critical signals in servers, so that
3223 core file handling works correctly.
3226 OpenAFS 1.5.65 (2009-10-06)
3230 * Code compilation warning fixes, to enable better finding and
3233 * Provide configure-time switch to enable code warning compilation.
3235 All server platforms
3237 * Demand-attach fileserver now makes volume LRU list operations
3238 exclusive operations to avoid races during adding to the list.
3240 * Fileservers now avoid potential "negative length" fetches.
3242 * A leak in host tracking objects in the fileserver has been fixed.
3244 * Salvager now unlinks all files by full path, to deal with the change
3245 to not chdir for core file tracking.
3247 * Salvager avoids asserting if the volume header is unreadable.
3249 * Demand-attach fileserver puts back volume references from fssync
3254 * Improved service response to suspend and shutdown event
3257 * Avoid a bug in the file server that can result in an invalid length
3258 being returned as part of a fetch data response if the client
3259 attempts to read beyond the length of the file.
3261 * Do not publish a default stream object for directories and mount
3262 point objects. This was impacting the ability of some Windows XP
3263 systems to save roaming profiles.
3265 All UNIX client platforms
3267 * A bug which could cause erroneous handling of lengths on data reads
3270 * A bug where erroneous length returns from the fileserver could
3271 result in a false error has been fixed.
3275 * Background page copies are now supported for enhanced disk cache
3278 * Blocking readahead is supported in readpages() to reduce overhead.
3280 * Use readpage() instead of read() to access cache data to avail disk
3281 cache users of the kernel backing cache for improved performance.
3283 * Minimize credential handling for improved performance.
3287 * Preferences Pane cleanup.
3291 * Provide a fs_pathconf method with sensible defaults.
3293 * Provide a _PC_FILESIZEBITS method to fix some NFS translator
3297 OpenAFS 1.5.64 (2009-09-22)
3299 All server platforms
3301 * The demand attach fileserver now puts back volume references gotten
3302 via the fssync interface.
3304 * The demand attach fileserver had a structure reference error, which
3305 has been correected.
3309 * Restores Windows 2000 compatibility.
3311 * Fixes a data consistency error between the output of NetWkstaGetInfo
3312 and NetServerGetInfo RPCs, specify the Lan workstation group name
3313 "AFS", and report server name as "AFS" instead of "\\AFS" when the
3314 caller asks for "\\AFS".
3316 * Enables executables to be run from \\AFS on Windows 7. Returns
3317 "Name not found" instead of "File not found" when a directory or
3318 file name cannot be found. This avoids loader errors when system
3319 dlls cannot be located in the executable directory.
3321 * Prevents cache manager from marking the file server "down" when the
3322 data returned in response to either RXAFS_FetchData64 or
3323 RXAFS_StoreData64 is invalid.
3325 * Adds pioctl data validation to the AFS Explorer Shell extension.
3327 All UNIX client platforms
3329 * A bug which could cause a kernel panic in 1.5.63 has been corrected.
3330 This would manifest as a GetDCache panic or oops.
3334 * aklog -setpag works again with recent kernels when keyring is in
3339 * When Fast User Switch is in use, AFS login is now handled correctly
3340 by the integration tool included with the preferences pane.
3342 * Several packaging bugs have been corrected.
3345 OpenAFS 1.5.63 (2009-09-11)
3349 * The restorevol command is now documented and installed as a user
3352 * The uss command now properly translates vldb entries to its expected
3353 format when handling them in all cases.
3355 * Documentation now refers to Kerberos instead of kaserver.
3357 All server platforms
3359 * bosserver now handles BosConfig.new when restarting, allowing
3360 configuration to be replaced at restart time rather than with bos
3361 delete and bos create. Documentation is updated to reflect this.
3363 * The demand attach fileservice not longer potentially hangs trying to
3364 terminate demand-salvages which have already exited.
3366 * The demand attach fileservice has been modified to avoid spurious
3367 'SYNC_putRes: write failed' warnings when some protocol messages
3368 cannot be acknowledged due to the sender terminating the connection.
3370 * In the event of failure to contact the vlserver or ptserver, the
3371 fileserver will not exit and trigger a forced salvage. It will
3372 continue to try in the background to contact the needed services.
3374 * The salvager can now repair certain cases of a damamged vnode index.
3376 * The accessDate metadata for a volume is now updated correctly.
3380 * CRITICAL: Some applications for example those based on Cygwin were
3381 unable to access data stored in the AFS name space. Explorer Shell
3382 also experienced inconsistent behavior. This is fixed.
3384 * CRITICAL: Multiple AFS pioctl requests issued nearly simultaneously
3385 by applications could result in pioctl responses being received by
3386 the wrong requester. This in turn could result in application
3387 crashes. symlink.exe, fs.exe, afslogon.dll, afscreds.exe, and the
3388 netidmgr afscred.dll plugin were all affected.
3390 * Some XP machines running 1.5.62 had trouble saving roaming profile
3391 data. This is fixed.
3393 * Integrated Logon (afslogon.dll) did not function with domain
3394 specific configurations.
3396 * Ensure that access denied and over quota errors experienced while
3397 storing data to the file server do not result in on-going retry
3400 All UNIX client platforms
3402 * Except on Solaris and AIX, the compiler may now be overriden at
3403 configure time by setting the CC environment variable.
3405 * afsd now properly deals with large cache partitions.
3409 * Build shared libafsauthent and libafsrpc.
3413 * Kernel module DKMS support now installs an unstripped module to
3414 allow debugging information to be collected.
3418 * Preferences pane properly updates token information.
3422 * klog will now properly handle passwords of 8 or fewer characters
3423 with an AFS string to key on hosts able to run 64 bit binaries.
3425 * A panic at AFS shutdown due to "NO PCB" on a udp_lock has been
3428 * The panic decoder script included in the source now properly handles
3429 32 and 64 bit panics.
3433 * Avoid defining AFS_KERBEROS_ENV globally as it creates a circular
3436 * Build shared libafsauthent and libafsrpc.
3440 * Build shared libafsauthent and libafsrpc.
3443 OpenAFS 1.5.62 (2009-08-28)
3447 * Numerous invisible changes to improve code maintainability,
3448 portability and enhanceability.
3452 * CRITICAL: Fixes two errors that can result in data loss when storing
3453 data to the file server.
3454 1. Failure to Store Portions of Unaligned Writes
3455 2. Failure to Store Data to File Servers Lacking Large File Support
3456 Read the announcement for more details:
3457 http://www.openafs.org/pipermail/openafs-announce/2009/000305.html
3459 * CRITICAL: The cache manager daemon thread could terminate when the
3460 machine enters suspend mode. This daemon thread performs the
3461 background check of down servers, offline volumes, callback
3464 * CRITICAL: Integrated Logon (afslogon.dll) was terminating
3465 unexpectedly. Error checking has been improved and NULL pointer
3466 dereferences after Lsa API calls fail have been eliminated.
3468 * For the first time, the OpenAFS SMB Server supports the DCE RPC
3469 services SRVSVC and WKSSVC. Browsing \\AFS with the Explorer Shell
3470 or NET VIEW will now be faster and provide additional functionality.
3471 No longer will cell names longer than 12 characters be truncated.
3473 * Improvements to DFS Referral request processing have been
3476 * Unnecessary DNS lookups of share names are avoided improving
3479 All UNIX client platforms
3481 * Non-Kerberos PAM modules work correctly again.
3485 * MacOS 10.6 (Snowleopard) is now supported, both 32 and 64 bit mode.
3487 * Updates to the AFSCommander preferences pane.
3489 * Installer now permits cell names with dashes.
3492 OpenAFS 1.5.61 (2009-08-06)
3496 * Correct another race condition in the Rx library that could result
3497 in an unexpected panic while freeing the Rx call iovq.
3499 * rx packet resend and data packets sent counts were incorrect.
3501 * fs setquota, fs setcachesize, vos setfields, and vos create now
3502 accept human readable orders of magnitude. (K, M, G)
3504 * fs listquota fixed to permit large quota sizes to be displayed.
3506 * Correct documentation of bosserver permissions requirements.
3508 * Modify vlserver to avoid potentially corrupting the database through
3511 * Generalized support for fast Rx timeout due to network
3514 All server platforms
3516 * Allow audit logs to be sent via sys5 IPC message queues instead of
3521 * If a file server becomes inaccessible while the cache manager has
3522 dirty buffers to write, the afsd_service buf_IncrSync thread can
3523 attempt to use 100% of the cpu.
3525 * Fix "fs newcell" which was broken in 1.5.60.
3527 * Do not attempt to synchronize dirty buffers if the associated volume
3528 is known to be unavailable.
3530 * Modify behavior of a Freelance mountpoint target that does not
3531 specify a cell. Instead of assuming the target volume is in the
3532 Freelance.Local cell, use the workstation "Cell" specified in the
3533 registry. A mountpoint target of "#root.cell." will now mean the
3534 root.cell volume in the workstation cell for the current session.
3535 If the workstation cell changes from "athena.mit.edu" to
3536 "andrew.cmu.edu", the referenced volume will also change without
3537 requiring that the mount point targets be altered.
3539 * Add cm_FindServerByUuid(). Re-implement RXAFS_InitCallBackState3()
3540 to permit the server Uuid to be used to lookup the server object and
3541 from that determine the cell. This permits callbacks that are
3542 received from alternate addresses to be processed with a known
3543 server object. Previously a request from an unknown server would
3544 clear all callbacks from all cells.
3546 * Fix a bug that prevented optimal performance when using a non-zero
3547 value for 'daemonCheckVolCBInterval'. As a reminder, when
3548 "daemonCheckVolCBInterval" is set to a non-zero value, all .readonly
3549 volume callbacks are automatically renewed 90 minutes before their
3552 * Fix automatic ranking of vldb servers whose values are obtained from
3553 the CellServDB file.
3555 * Add failover for RX CALL TIMEOUT errors when the volume is readonly
3556 or the call is to a vldb server.
3558 * Add registry based cell search functionality to NetIdMgr,
3559 afs_config.exe, and klog.exe.
3561 * afsconf_GetCellInfo() has been modified to perform gethostbyname()
3562 lookups on the host names in the CellServDB instead of using the
3563 specified IP addresses. This provides aklog, pts, vos, etc. the
3564 same CellServDB behavior that the Windows Cache Manager uses.
3566 * When updating the stat cache entry callback of a .readonly object
3567 from the volume group object, update the file server reference to
3568 ensure it matches the most update to date callback.
3570 * Add proper support for processing callbacks from multi-homed file
3571 servers. Instead of comparing servers by cm_server_t pointer,
3572 compare them by UUID when the UUID is known.
3574 * During a shutdown short circuit the offline volume check daemon
3577 * Return the error code of RXAFS_FetchData / RXAFS_StoreData in
3578 preference to an error code reported by rx_EndCall.
3580 * Add "PerFileAccessCheck" registry value to permit testing against
3581 experimental file servers that include per-file acl support. This
3582 value is intentionally undocumented. It is not to be used by
3583 production environment deployments.
3585 * Fix a bug introduced in 1.5.60 that prevents the afs netidmgr
3586 provider from obtaining tokens when referrals are in play.
3588 * Add "fs chown" and "fs chgrp" commands to permit the owner and group
3589 of objects stored in AFS to be set from Windows.
3591 * Avoid performing background daemon operations when the machine is
3592 going into suspend mode.
3594 * Perform offline volume checks in most recently used order.
3596 * Prevent crash when a data version for a cache object goes backwards.
3598 * Multi-thread safe library versions are now being generated and used.
3599 mtafsubik.lib, mtafsutil.lib, mtafsvldb.lib, mtafsvol.lib.
3601 * Microsoft SMB Redirector (mrxsmb.sys) support for
3602 ExtendedSessTimeout values are now available on XP through Windows
3603 7. Add functionality to autodetect if such support is present on
3604 the machine. If so, configure it if necessary and dynamically
3605 adjust the AFS Rx timeout values accordingly.
3607 All UNIX client platforms
3609 * Fix out-of-tree source builds.
3613 * GUI installer now asks for local cell information.
3615 * AFS Commander preferences pane is now installed by default.
3619 * Avoid kernel panics due to null pointer dereferences in the network
3620 interface poller kernel thread.
3623 OpenAFS 1.5.60 (2009-05-31)
3627 * Retry volserver transaction creation on failure.
3629 * Allow building HTML and PDF documentation from included XML copies
3630 of User Guide, Admin Guide and Quick Start Guide for Unix.
3632 * Documentation updates and additional documentation.
3634 * Add -encrypt support to pts client.
3636 * Convert MR-AFS fs commands to OSD commands.
3638 All server platforms
3640 * Updated background sync process in fileserver to avoid a race which
3641 could result in a volume being taken offline.
3645 * On April 9th Microsoft released a Hot Fix for Windows Server 2003
3646 SP2 that corrects a deadlock in the smb redirector and also adds new
3647 functionality that permits the AFS SMB server to be given a longer
3648 timeout than is normally the case. New functionality has been added
3649 to configure these additional LanmanWorkstation\Parameter values.
3650 (This functionality has been backported to XP SP3 and is scheduled
3651 to be released on June 5th.)
3653 * Fix RT#124787, a race condition between "fs flush <dir>", "fs
3654 flushvolume", or "fs flushall" and on-going directory operations
3655 that can result in afsd_service.exe crashing.
3657 * Release Notes, User and Administrator guides are now shipped as
3658 indexed Windows HtmlHelp Files. (.chm). Shortcuts are provided from
3661 * A method of specifying Client CellServDB information within the
3662 registry has been added that can be used to either override the
3663 CellServDB file or force the use of DNS lookups for a given cell.
3664 See the release notes for details.
3666 * The pioctl interface now properly handles drive letter substitution
3667 to UNC paths. (SUBST <d:> <\\afs\cell\path>)
3669 * The BackConnectionHostNames registry value configuration was broken
3670 when dynamic re-establishment of Netbios Name registrations was
3671 added. This release restores the functionality.
3673 * All hidden vos.exe commands are now revealed.
3675 * Attempts to store the same dirty file chunk from multiple threads
3678 * The IsPathInAfs test in Explorer Shell Extension and fs.exe now
3679 permits broken symlinks to be treated as being in AFS.
3681 * vos.exe commands that output 64-bit integer values once again do so.
3682 This was broken in 1.5.59.
3684 * Cygwin Import Libraries are provided in the SDK for all OpenAFS
3685 DLLs. This permits building cygwin applications against OpenAFS
3688 * NSIS installer does a much better job of cleaning up files left over
3689 from previous installs.
3691 * libafsconf.dll moved from Client\Program to Common directory as is
3692 is now used by all modules for CellServDB processing.
3694 All UNIX client platforms
3696 * Write back changes on last store for memcache to avoid discarding
3699 * Abstract disk cache support to allow for path, fh, inode based
3700 caches with no need for messy ifdef structures each time a new type
3705 * Support as a userland port.
3709 * Corrected structure definition for userspace cache manager to allow
3714 * Corrected client locking support.
3716 * Updated patch to stop deadlocking in the kernel during mmap.
3718 * Avoid oops when setting up groups for PAGs to match keyrings.
3720 * Use Linux fh-based cache in cases where possible by default.
3724 * Corrected structure definition for userspace cache manager to allow
3729 * Support for OpenBSD 4.5.
3733 * Corrected support for server-side vos split interface.
3736 OpenAFS 1.5.59 (2009-04-06)
3740 * Increased service priority class to "High" to match the priority of
3741 system components that are dependent upon the a timely response.
3743 * SMB error responses avoid returning errors that could confuse the
3744 Microsoft SMB redirector into disconnecting the connection to \\AFS.
3746 All UNIX client platforms (except MacOS X 10.4 and 10.5)
3748 * OpenAFS 1.5.59 contains fixes for the client issues addressed by the
3749 security advisories OPENAFS-SA-2009-001 and OPENAFS-SA-2009-002.
3753 * Support for prerelease Linux 2.6.30 kernels.
3756 OpenAFS 1.5.58 (2009-03-30)
3760 * Code cleanup and prototyping.
3762 * Avoid unnecessary blocking in Rx periodic cleanup code.
3764 All server platforms
3766 * Fileserver CopyOnWrite routine optimized for performance.
3768 * Make fileserver callback dumps 64 bit safe.
3770 * Fix byte order issues with fileserver host hashing.
3772 * Fix buffer size issues with butc.
3774 * Fix several Ubik recovery issues.
3776 * Avoid leaking file references in the fileserver.
3778 * Fix a race in DAFS while closing vnodes, and another offlining
3781 * volserver interfaces for volume splitting client.
3785 * [RT 124293] A race condition exists which can result in a crash.
3787 * [RT 124276] If the vldb is out of sync with the contents of the file
3788 servers, afsd_service will retry too many times when a file server
3789 reports a volume as not being present. Now if the list reported by
3790 the vldb is the same as the previously seen list, then the retry is
3793 * [RT 124276] Read-only volume failover was broken in 1.5.53 whenever
3794 accessing a volume results in VNOVOL or VMOVED.
3796 * [RT 124276] Prior to 1.3.70 the volume server reference list was not
3797 reference counted and would be prematurely freed while in use. When
3798 reference counting was added in 1.3.70 a bug was introduced that
3799 could result in service reference list corruption.
3801 * Add Windows Application Event Log warning messages for "Client SMB
3802 MPX value too large" and "Client SMB Buffer Size too small".
3804 * Renaming of files across directory boundaries would result in an
3805 invalid handle error when attempting to access the files after the
3808 * Fix the handling of Tran2 Set Path Info RPCs. Do not fail when a
3809 smb file descriptor cannot be found. The whole point of using a
3810 Path Info function is because an smb file descriptor wasn't
3813 * More edge cases in which dynamic addition of Freelance root.afs
3814 entries would get the wrong FID or where the root.afs directory
3815 would not be refreshed.
3817 * Buffer overflow could occur if the workstation cell name was longer
3818 than 64 characters. Crashes could occur in afscreds.exe,
3819 afslogon.dll, and afsd_service.exe.
3821 * VNOSERVICE and VOFFLINE errors were leaking and were exposed to the
3824 * Log file server uuid values as part of the cm_server object when
3825 available. Dump the cm_server object list in response to "fs
3828 * Optimize the performance of resetting access control lists when
3829 tokens are set or removed.
3831 * Remove symlink recursion tests and increase max symlink count to 64
3834 * Windows specific Rx performance improvements.
3836 * Support for Network Identity Manager 2.0
3838 All UNIX client platforms
3840 * Avoid issues with freeing resources at shutdown.
3842 * Numerous fixes to disconnected AFS.
3844 * Disconnected AFS fixes for replaying changes without double-freeing.
3846 * Attempt to use krb524 principal conversion in aklog if available.
3850 * Kerberos configuration at build time corrected.
3854 * Default to dynamic allocation of AFS kernel cache entries to allow
3855 growth for inotify()-pinned entries. (beagle, famd, etc)
3857 * Change client truncation routines to avoid locking issues.
3859 * IA64 port clients fixed on Linux 2.6.
3861 * RPMs now install fstrace message catalog.
3863 * Support through kernel 2.6.29 tested.
3865 * Fix locking issues on CellServDB file in /proc.
3869 * Support OpenBSD 4.4
3872 OpenAFS 1.5.57 (2009-01-23)
3876 * Conditional compilation of rxdebug support is now possible.
3878 * Documentation updates.
3880 * Further race connditions in Rx have been corrected.
3882 All server platforms
3884 * Salvager no longer attempts to recreate headers in the wrong
3887 * Volumes are properly marked in use on creation and subsequently on
3888 examination with vos.
3892 * Undo the "UAC manifest fix" applied to afs_config.exe.
3894 * Ensure that Freelance allocation of vnodes follow the AFS convention
3895 of odd vnodes are directories and everything else is an even vnode.
3897 * Add Freelance logic to mount point and symlink evaluation functions.
3899 * Enhance smb_ParseASCIIBlock() so that it can handle all of the
3900 STRING formats defined by the CIFS Technical Report 1.0.
3902 * Validate the output of smb_ParseASCIIBlock() in all callers. Return
3903 CM_ERROR_BADSMB if the STRING field cannot be parsed.
3904 CM_ERROR_BADSMB will cause the contents of the packet to be logged.
3906 * If multiple SMB Raw Write operations were taking place at the same
3907 time, there could be data corruption because unique event objects
3908 were not generated for each Netbios receive operation.
3910 All UNIX client platforms
3912 * Userspace AFS library can now deal with large files when supported
3915 * Numerous updates to disconnected AFS support, including changes to
3916 allow reconnection to work in more circumstances.
3920 * FreeBSD unstrategy code has been updated.
3924 * A race during file truncation has been corrected.
3926 * System call probing routines have been updated.
3928 * 2.6.29 is now supported.
3932 * 10.3 support has been corrected.
3936 * Initial OpenBSD 4.4 support.
3940 * Updates to allow compiling on newer OpenSolaris are now included.
3943 OpenAFS 1.5.56 (2008-12-30)
3947 * libuafs (userspace cache manager) updated to correct several errors.
3949 * Additional rx debugging support is available as a conditional
3952 * A race condition in Rx leading to a panic has been corrected.
3954 * Rx idle time tracking has been corrected.
3956 * ubik clone server support has been corrected.
3958 All server platforms
3960 * Salvager no longer leaves cores in vice partitions.
3962 * The vol-dump tool now supports dumps larger than 2gb where possible.
3964 * Operations on multiple files now report all FIDs in the audit log.
3966 * butc XBSA support now works correctly on amd64.
3970 * The NetIDMgr AFS Provider automated configuration logic was broken
3971 by the introduction of Kerberos referrals. If the realm of the
3972 identity cannot be determined, the workstation cell is now assumed
3973 to belong to the newly created identity.
3975 * Avoid a reference count under flow during rename operations.
3977 * Avoid a crash caused by treating an arbitrary length directory
3978 search mask as an 8.3 mask.
3980 * Prevent rename operations if a case insensitive match for the target
3981 name already exists and does not refer to the object being renamed.
3983 * Increase the maximum number of background daemons to 64.
3985 * Fix the UAC manifest applied to afs_config.exe
3987 All UNIX client platforms
3989 * Updates to disconnected AFS support.
3993 * FreeBSD 7.1 is now supported.
3995 * amd64 FreeBSD is now supported.
3999 * Generic fh (exportfs API) cache type is now available.
4001 * Avoid some oopses due to backing_dev_info inode fields not being
4004 * 2.6.28 is now supported.
4008 * 10.3 support has been corrected.
4012 * Large partition support has been corrected.
4014 * Filesystem-agnostic cache is now available on Solaris 10 and 11.
4017 OpenAFS 1.5.55 (2009-11-10)
4021 * Salvager avoids leaving core files in vice partitions.
4023 * NFS translator fixes.
4025 * Unresponsive server handling fixes.
4027 * A volserver race which could result in duplicate transactions is
4032 * Fixes a panic caused by corruption of the SMB virtual circuit list.
4035 * Fixes a panic caused by receipt of a UTF-16 string that cannot be
4038 * Implements a more aggressive recovery algorithm for Netbios errors
4039 that result in loss of communication to the AFS SMB server.
4041 * Improve pioctl response time when testing whether or not a PATH is
4044 * Adds support for linked cells.
4046 * Increases the length of the cell and realm names that can be input
4047 into the Network Identity Manage AFS provider configuration dialog.
4049 All UNIX client platforms
4051 * Disconnected AFS avoids infinite recursion during rmdir.
4055 * Support for 2.6.28 (not complete for NFS translator modules).
4057 * Support for using exportfs API for filesystem-agnostic cache.
4059 * Disable backing store readahead.
4061 * Avoid deadlocks when writing back mmapped files larger than the
4064 * Avoid Oops when doing PAG garbage collection.
4067 OpenAFS 1.5.54 (2008-10-08)
4071 * Updates for new Tivoli X/Open API finding.
4073 * A double-free is corrected in Rx.
4075 All server platforms
4077 * Ubik cleans up file descriptor cache correctly when doing recovery.
4079 * Enhanced vldb error checker included.
4083 * Prevent a crash that could occur when multiple file / directory
4084 change notifications are processed simultaneously.
4088 * AFS claims more free space so Finder will attempt file copies.
4092 * Avoid spurious ENOENT when calling gwtcwd() on a volume root.
4094 * Avoid spurious ENOTDIR during fakestat.
4097 OpenAFS 1.5.53 (2008-09-26)
4101 * rx avoids many packet leaks.
4103 * rx jumbogram disabling now works (and is the default).
4105 All server platforms
4107 * Demand Attach fileserver tries to avoid issues tracking offline
4112 * Many potential deadlock conditions due to out of order lock
4113 acquisitions have been corrected.
4115 * A race condition resulting in an undercount on the cm_scache_t
4116 reference counts has been corrected.
4118 * An empty string when sent as an ioctl path is now properly
4119 interpreted as meaning the current directory. This affects "fs
4120 lsm", "symlink list", etc.
4122 * Fix smb string parsing differences where the smb protocol
4123 documentation does not match the actual Windows implementation.
4125 * Random access denied errors fixed.
4127 * A file server lock synchronization issue was corrected in SMB
4128 NTCreateX and NTTranCreate operations. This bug prevented properly
4129 operation when loading roaming profiles.
4131 * Fix a heap overwrite error during server probe operations if a new
4132 server is added while a probe operation is in progress.
4134 * Fix an LSA memory leak that was the result of an LSA error.
4136 * Do not leak cm_cell_t objects if the VLDB server lookup fails.
4138 * Only initialize rx mutex/lock objects once.
4140 * Do not nul terminate the AFS volume name when reported to Windows.
4142 * Improve VNOVOL error handling. Prevent updated vl information from
4143 being destroyed immediately after it was acquired. This bug
4144 prevented proper fail over when volumes are moved or removed from a
4147 * Remove volume id from the server volume list in response to VMOVED
4150 * "fs flushXXX" commands now destroy locally built B+ directory trees.
4152 * Prevent mixture of locally modified directory pages and file server
4155 * Fail over to alternate vl servers if a ubik error is returned.
4157 All UNIX client platforms
4159 * Disconnected AFS now supports read-write mode.
4161 * volserver now builds correctly.
4165 * AIX 6 is now supported.
4169 * FreeBSD 7 is now supported.
4173 * cache bypass is now supported.
4175 * 2.6.x kmod compilation now uses kernel compile options always.
4177 * Support through 2.6.27.
4181 * Show more space free so Finder doesn't get confused.
4185 * Default to namei rather than inode.
4188 OpenAFS 1.5.52 (2008-08-18)
4192 * Initialize volume updateDate at volume creation.
4194 * Avoid potential corruption of directories during salvage.
4196 * Check for out of memory condition during allocation of additional Rx
4201 * Restore support for Windows 2000 (broken in 1.5.50).
4203 * Perform additional validation on volume names in mount points during
4204 creation and evaluation.
4206 * Fix several deadlocks, races, and reference count issues.
4208 * Further optimize SMB Directory Search processing and minimize the
4209 number of InlineBulkStatus RPCs sent to the file server.
4211 * Enable "bos restricted" operations.
4213 * Fix the create of submounts used by the AFSCreds and afs_config
4216 * Fix a short name truncation bug. (1.5.50)
4218 * Fix the error code reported when attempting to delete a file on a
4219 readonly volume or one that is marked with the readonly DOS
4222 * Fix a heap corruption error when reading the CellServDB file
4225 * Add the "RxUdpBufSize" registry value. The new default is 256KB.
4227 * Do not include trailing NULs in the directory search output.
4230 * Pre-allocate 64 Rx Packet buffers per thread in order to improve
4233 * For debugging: add smb lock requests and stat cache lock allocations
4234 to the output from "fs memdump".
4238 * Workaround broken sigwait() to allow fileserver to shut down
4239 correctly pre NetBSD 5.0.
4243 * Default to namei fileserver; Allow inode fileserver at configure
4248 * Try harder to avoid kernel panics for malformed requests.
4251 OpenAFS 1.5.51 (2008-07-29)
4255 * salvager tries harder to arrange for clients to get VBUSY while
4256 salvaging single volumes.
4258 * salvager avoids certain corruption when salvaging directories.
4260 * Rx connection clones disabled.
4264 * The 32-bit EXE 1.5.50 installer failed to properly install the C
4265 Runtime library. When used as an upgrade OpenAFS would continue to
4266 work but when used as a new installation, OpenAFS binaries would
4269 * Fixes the "fs" and "symlink" commands to properly parse Unicode path
4270 prefixes during the pioctl remote procedure call. This bug would
4271 result in file not found errors for files and directories that
4272 clearly exist. (Bug introduced in 1.5.50)
4274 * Large File support is disabled. (Bug introduced in 1.5.50)
4276 * Removes the possibility of a deadlock during volume location update
4277 operation if all of the reported file servers are unreachable at the
4280 * Ensures that reference counts are properly incremented/decremented
4281 on Rx connection objects used for volume location RPCs.
4283 * Over Quota errors during cm_FSync() calls would lead to an infinite
4284 loop as the error was never propagated to the caller.
4286 All UNIX client platforms
4288 * Bugfixes to disconnected AFS support in the cache manager.
4291 OpenAFS 1.5.50 (2008-07-16)
4295 * volserver puts recloned volumes back online before returning the
4296 volume to the fileserver, avoiding spurious VNOVOL errors.
4298 * Updated TSM X/Open API support available.
4300 * Demand Attach fileserver will not crash due to accesses during
4303 * Substantial documentation updates.
4305 * Demand Attach fileserver state tracking and analyzer tool
4308 * UAFS userspace cachemanager updates.
4310 * Corrected support for anti-meltdown protection in the client.
4314 * UNICODE Character Set Support.
4316 * Pioctl interfaces to the cache manager have been refactored to
4317 provide layering between the SMB specific code and the general
4318 purpose ioctl operation.
4320 * Garbage collect dead SMB virtual circuits as soon as they are no
4321 longer being referenced. This avoids problems with outstanding
4322 locks not being dropped when the virtual circuit becomes invalid.
4324 * Remove the IBM Administration Reference documentation and replace it
4325 with the OpenAFS Command Reference Manual.
4327 * Avoid calling rx_SetDeadTime and rx_SetHardDeadTime functions each
4328 time a connection is about to be used. Do not hold a lock on the rx
4329 connection object while it is being selected. This avoids a race
4330 between threads attempting to set the timeout values and removes a
4331 bottleneck that was hampering performance.
4333 * Ensure that the smb directory attribute is set for all directory
4336 * Replace the VC Runtime EXE installer with the MSI installer in the
4337 NSIS installer scripts.
4341 * Support for updates to OpenSolaris.
4345 * Correct dentry revalidation for cross-directory renames.
4347 * Updated rpm packaging materials for 1.5 release series and 2.4
4350 * Corrected syscall table probing.
4352 * NFS translator updates for current kernels.
4355 OpenAFS 1.5.39 (2008-06-24)
4359 * Updates for Demand Attach fileserver.
4363 * Fix two memory leaks.
4365 * Fix one missing lock.
4367 * Handle access denied errors when writing dirty buffers.
4369 * Fix two errors that would cause the *experimental* AFS Servers
4373 OpenAFS 1.5.38 (2008-05-24)
4377 * Add read-only disconnected support.
4380 OpenAFS 1.5.37 (2008-05-21)
4384 * Includes a number of optimizations for testing.
4387 OpenAFS 1.5.36 (2008-05-09)
4391 * Rx optimizations now attempt to deal with high latency WANs.
4393 * Client will not wait infinitely for a server which is not providing
4394 data. Additional servers will be polled without marking the server
4395 which is not providing data down.
4397 * vos move will not erroneously unlock locked vldb entries on failure.
4399 All server platforms
4401 * Fileserver avoids a potential infinite loop when a client
4402 relinquishes an address.
4404 * Fileserver large setting now configures more threads.
4406 * Fileserver properly registers uuids of new clients.
4408 * Ubik servers do not improperly hide updates from clients.
4410 * Fileservers reserve enough file descriptors such that each thread
4411 can cache one to avoid spurious errors.
4415 * Fix a cm_buf_t reference count leak when attempts to write dirty
4416 buffers to the file server from within cm_IncrSyncer() fail.
4418 * Prevent udebug from crashing.
4420 * Another VNOVNODE issue fixed. When writing a dirty buffer to the
4421 file server, if VNOVNODE is received, mark all buffers as invalid
4422 without further attempts to contact the file server.
4427 All client systems: Major bugfixes.
4428 File servers: Major bugfixes.
4430 * New functionality:
4434 - Provide portable (pioctl) method for discovering what PAG a user is
4435 in. Required to support userspace PAG information collection on AIX
4436 5.1, and knowing whether Linux uses one group, two group, or only
4437 keyring based PAGs. (124709)
4443 - Fixes to avoid issues cleaning up deleted hosts in the fileserver (126454)
4445 - Fixes to avoid dropping writes due to server idle timeouts.
4447 - Don't miss cache chunks of large files while truncating.
4449 - Avoid null pointer dereference for unexpected volume names in volume
4452 - Don't mark connections waiting for additional packet window availability
4455 - Kerberos 5 utilities (klog.krb5, aklog) enable weak encryption support.
4457 - Avoid a double-free of an Rx call structure during a client fetch error.
4459 - Avoid losing hosts during address changes. (125215)
4461 - Clients shouldn't trust Fetchdata replies for the size of returned data.
4463 - fileserver will not hang when attempting to cleanup and dump core.
4465 - salvager will not leave core files in random directories.
4467 - avoid letting retransmit timer get to 0 seconds.
4469 - in event of dbserver contact failure, shut fileserver down cleanly.
4471 - handle large partitions during check for needed disk space at
4474 - time out Rx connections if network unreachable error received.
4476 - avoid dereferencing NULL pointer freeing Rx packets in receive. (125110)
4478 - mark stack not executable in LWP. (125491)
4480 - return a correct VolumeSync structure from Bulkstat RPCs in fileserver.
4482 - client attempts to better free memory at shutdown.
4484 - clear rx call queue safely. (125110)
4486 - retry VLserver registration on failure in fileserver.
4488 - update accessdate for volumes on access in fileserver.
4490 - additional safety checks on vlserver operations to avoid
4491 database corruption.
4493 - make ktc_curpag available on all builds. (125155)
4501 - Handle kernel changes through 2.6.33.
4503 - Fix oops in clear_inode due to missed locking. (125589)
4505 - Better handle /afs mount failures.
4507 - Clean up after failures creating our kernel kmem cache.
4509 - Work around memory management issues with some kernels when configuring
4510 the buffer cache/bdi (126514)
4512 - Rename compile_et to afs_compile_et to avoid RPM conflicts.
4514 - Handle whole-file locks properly. (126561)
4516 - Deal with kernel autoconf header renaming.
4518 - Handle SELinux cache backing file labels better to avoid potential oops.
4523 - klog now works correctly on 64 bit machines.
4525 - launchd now used to launch AFS at boot.
4527 - Preferences pane included for 10.4 and later.
4529 - Older versions can now be installed from packages.
4531 - Finder does not trigger bogus AFSDB lookups in /afs in dynroot mode.
4533 - Include package with debug kernel module symbols.
4539 - Support for x86_64.
4543 - Handle ZFS caches usefully. (125365)
4545 - Implement additional pathconf support.
4549 Linux client systems: Major bugfixes.
4550 All client systems: Minor bugfixes.
4551 File servers: Major bugfixes.
4553 * New functionality:
4557 - Provide portable (pioctl) method for discovering what PAG a user is
4558 in. Required to support userspace PAG information collection on AIX
4559 5.1, and knowing whether Linux uses one group, two group, or only
4560 keyring based PAGs. (124709)
4566 - Fix bosserver to invoke salvager with "-force" instead of ambiguous
4569 - Cleanup for ptserver argument parsing to allow debug mode to work. (124893)
4571 - Sanity checking for ptserver log levels. (124894)
4573 - Fix for uninitialized memory dereference in klog.krb5.
4575 - Fix an overflow in the cellconfig code used by client and server. (124891)
4577 - Fix an erroneous vos verbose mode format string.
4579 - Avoid losing writes on mmap()ed files when cache is memcache. (124671)
4581 - Provide an afsd switch to allow override of the maximum MTU. (124880)
4583 - Provide support for encrypt mode in pts.
4585 - Fix race in background sync code which could cause volumes to go offline.
4588 - Fix fileserver to avoid a null pointer dereference in client identity
4589 lookup routines. (125020)
4591 - Improve handling of moves of volumes from 1.5 series fileservers. (18349)
4595 - UKERNEL build fix. (124681)
4599 - Allow syscall probing to be disabled by switch to configure at build time.
4601 - Fix bug in anti-recursion protection for mmap clients. (124627)
4603 - Avoid a panic caused by changing credentials during VFS operations. (124737)
4605 - Avoid need for rcu subsystem when unavailable. (124986)
4607 - Improve keyring PAG setup code. (125001)
4609 - Avoid possible ext3 cache truncation issues. (124942)
4613 - MacOS 10.3 UKERNEL build fix. (124681)
4617 - Update support for 4.5 (124719)
4621 - Updates for newer OpenSolaris kernels. (124116, 124924)
4625 All client systems: Security fixes.
4626 File servers: Major bugfixes.
4627 All systems: Minor bugfixes.
4633 - Avoid a potential kernel memory overrun if more items than requested are
4634 returned from an InlineBulk or BulkStatus message. (124579)
4636 Linux client systems:
4638 - Avoid converting negative errors into invalid kernel memory pointers. (124580)
4644 - Don't build aklog NAS module when krb5 is not available. (124522)
4648 - Additional fixes and support. (124107, 123917)
4652 - Support 2.6.28. (123580)
4654 - Support 2.6.29. (124115)
4656 - Attempt to support 2.6.30 (124560)
4658 - Avoid race during truncation. (124094)
4660 - Dynamic vcache allocation support, to deal with inotify vcache pinning. (124334)
4662 - Correct use of truncate_inode_pages to vmtruncate for locking issues. (124128)
4664 - Update RPM configuration. (123650, 102673, 124272)
4666 - Update kernel feature detection. (124507, 123604)
4668 - Do appropriate locking for CellServDB in /proc. (124407)
4672 - Fix MacOS 10.3 support.
4674 - Add candidate Darwin 10 support.
4678 - Corrected NetBSD version tests. (123647)
4682 - Update support for 4.4 (124541)
4686 - Support cache filesystems which do not allow open by inode number, enabled by
4687 default on Solaris 9 and later. (123677)
4689 - Improve error code return quality. (124426)
4691 - Allow large partitions on Solaris servers.
4695 - Avoid improper error messages about key version when krb5 is in use. (124220)
4697 - Avoid attempting to free kernel memory which was already freed. (124531)
4699 - Properly count offline volumes in vos client. (124333)
4703 - Avoid 64 bit time issues in callback dump files. (124451)
4705 - Support more than one local Kerberos realm; Usernames are assumed to be the
4708 - Ubik recovery is corrected to avoid spurious errors. (123723)
4710 - Do proper host address hashing for little endian machines in fileserver. (124447)
4712 - Update backup utility to properly compute header needs in the backup buffer.
4715 - Avoid blocking during Rx unused connection reaping.
4717 - Avoid leaking file handles in the fileserver when closing a volume. (124359)
4719 - Fix bosserver corefile naming to be y2k-safe. (124340)
4721 - Avoid potential infinite loop in deleted host handling in the fileserver.
4723 - Support large volume dumps in vol-dump. (123984)
4725 - Build butc XBSA support on 64 bit systems.
4729 - Properly track Rx connection idleness for timeouts.
4731 - Additional documentation. (124472)
4733 - Avoid a race which may result in an in-use Rx packet being freed. (123799)
4737 All client systems: Security fixes.
4743 - Avoid a potential kernel memory overrun if more items than requested are
4744 returned from an InlineBulk or BulkStatus message. (124579)
4746 Linux client systems:
4748 - Avoid converting negative errors into invalid kernel memory pointers. (124580)
4752 File servers: Major bugfixes.
4753 All systems: Minor bugfixes.
4759 - AIX 6.1 is now supported.
4761 - Unpin kernel memory references after free. (99456)
4765 - FreeBSD 7 is now supported.
4769 - Avoid deadlock when writing back pages in an mmap()ed file larger than
4772 - Update process tree walking for PAG garbage collection to avoid oopses.
4775 - fakestat mode now correctly avoids spurious ENOTDIR errors.
4777 - Use kernel build system for all platforms.
4779 - Remove openafs directory from proc in correct order. (112910)
4781 - Handle renames across directories correctly in the linux dcache. (74672)
4783 - Probe syscall table when possible. (105457)
4785 - Mount point parsing is now updated to handle only well-formed mount
4786 points rather than similarly-formed symlinks. (113558, 100836)
4788 - ucontext-style LWP is now anbled for glibc versions newer than 2.3.
4792 - Update available space shown. (112910)
4796 - Work around broken SIGWAIT. (111404)
4800 - Solaris 10 now defaults to namei fileservers.
4802 - NFS translator issues fixed.
4804 - Changes to address Solaris updates. (105495)
4808 - udebug correctly displays the last "yes" host.
4810 - Allow more vldb lookups to be cached in the client.
4812 - Fix aklog to not be excessively verbose when not requested.
4814 - Add support for timing out accesses which are not completing in a timely
4817 - Properly flag backup volumes being added to the vldb by vos syncvldb.
4821 - fileserver "large" setting now implies 128 threads instead of 12.
4823 - fileserver check for duplicate uuids is now applied correctly.
4825 - Newer xbsa APIs are supported for TSM integration in butc.
4827 - salvager avoids corrupting length of directory objects. (111585, 107767)
4829 - volserver avoids a race during volume release so a volume will not
4830 appear to be offline. (107258)
4832 - Add support for returning errors when accesses are not completing
4835 - Avoid potential race in the volserver when creating transactions. (121263)
4837 - Return sensible error when a release or restore exhausts server
4840 - volserver now returns EXDEV if a new replica would duplicate one which
4841 already existed elsewhere on the server.
4843 - Disable jumbograms by default.
4845 - volserver updates a volume's updateDate on volume creation. (110943)
4847 - Partitions over 2tb are now supported. (88811)
4851 - Re-enable Rx client keepalives. (20727)
4853 - Support autoconf 2.62. (118058)
4855 - Update Rx to avoid leaking packets.
4857 - vos supports the -noresolve options to avoid issues with 127.0.0.1 being
4858 named in /etc/hosts.
4860 - Additional documentation. (104110)
4864 File servers: Major bugfixes.
4865 All systems: Minor bugfixes.
4871 - Kerberos as included in AIX has missing symbols. AFS krb5 tools now
4874 - AIX LAM aklog plugin can now be used CDE screenlocker.
4876 - Add support for getting the current PAG in pagsh and PAM.
4878 - Avoid sending a terminal hangup to STREAMS in aklog.
4880 - Fix afsdb support in the client.
4884 - Kernels through 2.6.25 are now supported. (77370,88000,83716,83890,80463)
4886 - Client now only hashes dirty inodes. (78544)
4888 - Fix to avoid returning invalid mount point data when -fakestat-all is in use.
4891 - RPM build system updates. (93616)
4893 - Restored write-on-close-or-fsync semantics when possible. (17509)
4895 - Enabled support for flock() on files in AFS. (53457)
4897 - ARM Linux now supported.
4899 - Kernel keyring support updated.
4901 - Fix client-displayed timestamp ordering by zeroing nanosecond field.
4905 - Boot time init script now uses afs.conf to store config options. (81825)
4907 - Avoid kernel panic due to excessive lock tracking when removing files.
4909 - Avoid leaking kernel memory when trying to read() a directory.
4913 - Avoid potential kernel panic if the root vnode of AFS changes.
4915 - Avoid potential kernel panic when shutting down if contracts are in use.
4917 - Avoid potential delays when creating new PAGs if the system clock
4922 - At client shutdown, try harder to clean up in-use resources. (74479)
4924 - When fakestat is in use, enable optimization for Gnome Nautilus lookups.
4926 - Properly hold lock when updating disk cache metadata to avoid
4927 kernel panic. (59136)
4929 - Avoid wrapping to the start of a file when attempting to write a large file
4930 to a pre-largefile fileserver. (73720)
4934 - Fixed to avoid truncating ubik databases during recovery. (77183)
4936 - fileserver issue with internal file cache filling has been fixed. (87977)
4938 - fileserver thread quota enforcement now done in all cases. (87416)
4940 - fileserver avoids potential network-related deadlock when breaking
4943 - fileserver avoids crash due to race of resource creation and user requests
4946 - fileserver avoids crash when reinitializing Ubik connections.
4948 - volserver fixed to avoid leaving orphaned files during restore. (46937)
4950 - volserver now supports convertROtoRW for inode fileservers.
4952 - Support disabling kerberos 4 style username protection in servers. (75101)
4956 - Fix to butc to avoid crash due to threaded library variant.
4958 - Fix to avoid network retransmission issues if the system clock goes
4961 - vos syncvldb and syncserver now support a dryrun (do nothing) mode.
4963 - vos addsite now supports adding a site where a replica is already
4966 - vos clone now supports creating properly-named readonly and backup clones.
4968 - vos restore now allows an older copy of a volume at an alternate site to
4971 - cmdebug now supports dumping a client's CellServDB.
4973 - cmdebug now supports showing human-readable expiration times.
4975 - aklog now handles Kerberos referrals.
4977 - Additional documentation now included. (89288,89289,86677)
4981 All systems: Major bugfixes.
4987 - fileserver host tracking code had a missing lock on a host structure;
4988 that lock has been added.
4990 - fileserver handling for clients which are giving up callbacks did not
4991 hold a lock, making it unsafe and allowing clients to potentially
4992 crash the server by racing.
4994 - fileserver will now leave a corefile when it is doing a shutdown due
4995 to error conditions.
4997 - fileserver again allows ufs as a valid filesystem type (regression in 1.4.5).
4999 - cbd handler for fileserver status data has an interpretation error which
5000 could cause crashes corrected.
5002 - fileserver accurately tracks number of callbacks on a given file.
5006 All systems: Minor bugfixes.
5007 New systems: MacOS 10.5.
5011 - fileserver address tracking is improved to avoid potentially merging
5014 - Documentation updates.
5016 - namei fileserver now does fsync()s in background batches for performance
5019 - Kerberos ticket support corrected in bundled Kerberos 4 utilities on 64
5022 - fileserver includes limited per-host thread quota support to avoid
5023 resource starvation.
5025 - fileserver deals with more damaged volumes without asserting.
5027 - vos validates dumpfiles before attempting restores.
5029 - vos clone will no longer potentially delete the parent volume.
5031 - Client no longer permits empty UUID to be created.
5033 - fs uuid command for checking, regenerating UUID added.
5035 - Updates for gcc 4.2.
5037 - fileserver treats w (write) permission as granting read lock permission
5038 in addition to write.
5042 - Bundled NAS Kerberos is now supported. (5.x)
5044 - LAM aklog module is provided. (5.x)
5046 - Associate cache files with correct filesystem to avoid snapshots when
5047 performing maintenance on local filesystems.
5055 - Kernels throigh 2.6.23 are known to work.
5057 - Updates to syscall table probing.
5059 - Bug fix in keyring PAG support to avoid oops.
5061 - updated sample RPM configuration.
5063 - sparc32 lwp support updated.
5065 - Avoid potential oops in symlink support in certain older kernels.
5067 - Avoid potential deadlock during vmalloc.
5069 - Corrected locking while interacting with kernel task list.
5073 - Several panics fixed, including remove_fsref. (10.4 and later)
5075 - IP address changes now tracked.
5077 - Corrected support for dropboxes (li access without r) with cp and Finder.
5079 - fstrace and ancillary files now included.
5081 - man pages are now installed in the default MANPATH.
5083 - Servers will be timed out quickly if there is no route available.
5085 - Temporary files from remove-while-busy now cleaned up correctly.
5089 - Updates to accomodate kernel interface changes. (10u4 and later)
5091 - knfs and NFS translator support updated.
5093 - Changes to accomodate version 5.4 xbsa library.
5095 - Updates for new SunStudio defaults.
5099 All systems: Major bugfixes.
5105 * A bug in the namei volserver which could erroneously make a replicated or
5106 moved volume go offline has been fixed.
5108 * Volume package users (fileserver, volserver, salvager) avoid using lockf to
5109 avoid leaking byte range locks on volume internal files.
5113 * A bug where the client kernel module could free stack memory (which caused
5114 issues with 64 bit Intel most commonly) has been fixed.
5118 * A missing kernel feature test has been fixed.
5120 * group based PAG support is still enabled when possible.
5122 * ia32 syscall table support for amd64 has build fixes for modern kernels.
5126 * fopen() is not safe for use with more than 255 file descriptors open;
5127 Emulate it in the afsconf package so afsconf can be used in the fileserver.
5131 * DNS registration is disabled for the loopback adapter, and we make sure
5132 Netbios is turned on.
5137 * Remove use of ubik_Call in the source code so prototypes are used.
5139 * Avoid synchrony in call from the fileserver to the ptserver.
5141 * Fix a bug in the backup suite when restoring.
5143 * fileserver and volserver now log for error conditions which may cause
5146 * rx avoids a stack overrun when more packets are needed.
5148 * volserver avoids holding a lock too long when purging volumes.
5150 * volserver lock initialization fixes
5152 * volserver volume nuke fixes to avoid leaving files behind
5154 * fileserver avoids error when authenticating ptserver requests
5156 * fileserver no longer crashes when GetCPS fails
5158 * salvager enhancements to deal better with corrupt volumes for namei
5162 * aklog deals with KDCs which give "generic" replies to principals not
5165 * Fix bug in cache parameter autotuning
5173 * amd64 pthread library family updates.
5175 * autoconf fixes for kernel feature testing
5177 * keyring PAG support now only enabled if needed features are present
5180 * inline a version of BUG() so we get better oopses
5184 * tsm is updated to work with the new AIX 5 interface.
5188 * Cross compile fixes
5190 * Packaging improvements
5192 * Large file support fixed (Thanks to Chaskiel Grundman)
5194 * Fixes for Leopard seed.
5196 * Installer image updates
5200 * Removes race conditions and a deadlock introduced in 1.4.1
5202 * Fixes ANSI filename option.
5204 * Establishes new connections to file servers when
5205 IP address configuration changes are detected.
5207 * Improved CIFS compatibility
5209 * Cache Manager optimizations
5211 * Fixes vlserver failover when mounting 'root.afs'
5212 (Freelance mode disabled)
5214 * Installs help files in the correct location for use by afscreds.exe
5215 and afs control panel.
5217 * Improve reporting of "over quota" and "disk full" errors.
5219 * Prevent crash when evaluating mount points to volumes that do
5222 * Removes auto-registration of AFS ID in foreign ptservers from
5223 Integrated Logon DLL. This prevents crashes if the DLL is loaded
5224 and unloaded prior to termination of the process.
5226 * SDK moved to \Program Files\OpenAFS\SDK
5228 * NSIS and WiX Installer Frameworks update to the latest versions
5230 * Improvements to the Kerberos Logon Integration
5232 * Prevents exception in Integrated Logon DLL during SysPrep
5234 * Prevents displays of MessageBox dialogs in response to Network Adapter
5237 * Hard Dead and Connection Timeout values restricted to the CIFS Session
5240 * Correct writing of BackConnectionsHostNames registry value.
5242 * Properly recycles Volume entries
5244 * The AFS Explorer Shell Extension always finds its resource library.
5246 * The export list for AFSAUTHENT.DLL has been corrected. (The AFS
5247 plugin for NetIDMgr will no longer use 100% of CPU.)
5249 * Renaming files on Microsoft Vista Build 5536 works.
5251 * Better handling of "." directory in fs commands
5253 * Add OpenAFS License text to installers
5255 * fs setquota and fs mkmount commands behave the same as the UNIX
5260 All systems: Major bugfixes.
5266 - Volume dump parsing code in the volserver has better error checking.
5268 - salvager has improved damaged volume handling on namei fileservers.
5270 - fileserver has size validity checks for when large file support is disabled.
5272 - fileserver avoids potentially multiply adding a host to its hash table.
5274 - rxkad client private data storage is allocated dynamically on ticket size.
5276 - Handle universal error code translation for file locking.
5278 - fileserver needs to swap callback connections on a client IP change.
5280 - fileserver host package revised to reduce lock contention.
5282 - Rx has been fixed to count hard acks, thus opening the congestion window.
5284 - All servers support bound Rx sockets (on one interface).
5286 - namei fileserver no longer use lockf() to avoid range locking issues.
5288 - most binaries now support the -version switch.
5290 - backup suite fixes for 64 bit platforms.
5292 - volserver avoids holding holds during volume purges.
5294 - volserver avoids losing files on namei during vos zap.
5298 - fileserver now properly supports large files.
5300 - TSM updates for AIX 5
5302 - Kernel module avoids leaking Rx packets.
5304 - Avoid use of global ubik client structure in fileserver.
5306 - Update ubik call client interface to allow for prototyping.
5308 - audit logging fixes when stdarg does not provide integral va_list type.
5312 - A bug where the client kernel module could free stack memory (which
5313 caused issues with 64 bit Intel most commonly) has been fixed.
5315 - Packaging fixes and updates.
5317 - Uninstaller added.
5319 - Fix large file support.
5323 - autoconf kernel feature testing has been restructured.
5325 - PAG garbage collection is enabled by default.
5327 - Kerberos updates for RHEL3.
5329 - Fix POSIX lock enrollment for older Linux kernels.
5331 - Updates for new 2.6 kernels.
5333 - Avoid deadlocks in put_inode handler.
5335 - Keyring-based PAG support.
5337 - Fixes to avoid getting better oops info in the kernel.
5341 - Remove some kernel symbol bindings for symbols we don't use.
5343 - Cleanup for loopback mount of AFS on Solaris 10.
5345 - Avoid issues with stdio not supporting file descriptors above 255 on
5346 Solaris 8 and lower in the fileserver.
5350 All systems: Major bugfixes.
5351 New systems: MacOS 10.4 (PowerPC and Intel)
5357 - Several race conditions in the host tracking and handling in the fileserver
5358 which could cause inconsistent behavior and crashes have been fixed.
5360 - A fileserver bug where a reference to a volume could be leaked and later
5361 cause a deadlock as a result of a bulk status call
5363 - Reference counting of fileserver objects in unsigned 32 bit integers
5364 instead of signed 16 bit integers.
5366 - Avoid type mismatches when handling time values (betweemn 32 bit and 64 bit
5369 - Fix a memory leak during multilevel packet queue handling.
5371 - Audit log output had been updated to include FIDs for newly created files.
5375 - 64 bit (large file) inodes are supported.
5377 - Salvager will now handle large (>4gb) partitions.
5383 - asetkey is now included to ease Kerberos 5 integration for server
5386 - A new fileserver statistics collection including callback statistics was
5389 - man pages are now generated.
5393 - Fixes error message problems experienced by fs.exe and the AFS Explorer
5394 Shell Extensions related to the use of Universal Error Codes by the
5397 - Adds full SMB/CIFS support for byte range locking. In this implementation
5398 all locks are allocated locally and the AFS lock privilege is ignored.
5399 While this will not prevent two processes on different machines from
5400 simultaneously writing to the same file, it will prevent two processes
5401 on the same machine from doing so.
5403 - The UP server check period has been reduced to once every ten minutes to
5404 match the period used by the UNIX clients. The shorter period will
5405 assist clients maintain RX connections through NATs.
5407 - Fixes the DOWN server check logic to ensure that any server that responds
5408 to a check is marked UP unless it is in the process of restarting.
5410 - Add logic to better handle objects that no longer exist on the file server.
5413 - Prevent the removal of existing drive mappings by "afscreds.exe -M"
5415 - Fixes the procmgmt library so that it doesn't cause applications that
5418 - Improves the warnings written to the afsd_init.log file when the
5419 Windows RPC Protocol drivers are improperly configured.
5421 - Fixes "fs setserverprefs -vlserver". Multiple calls with the same
5422 server parameter could result in a crash of afsd_service.exe.
5424 - The SMB/CIFS layer was audited for reference miscounts and memory leaks.
5425 All SMB objects are now properly counted, locked, and released when
5428 - Prevent file truncation of the user does not have the appropriate access.
5430 - Token management was re-written to allow user tokens to be preserved
5431 during integrated login and freed after logoff is complete.
5433 - Added a mechanism by which abandoned SMB virtual circuits can be
5434 detected and the associated resources cleaned up.
5436 - Prevent the allocation of SMB file handles with a value of 0 or 0xFFFF
5437 which would be considered invalid by Windows applications.
5439 - Fixed the processing of cell names to ensure that they are always
5440 treated as case insensitive strings.
5442 - Fixed the network provider code to avoid querying the profile location
5443 if integrated login is disabled.
5445 - If a mount point string is empty, return Path Not Found to the application.
5447 - Windows returns WSAECONNRESET when an ICMP packet is received in response
5448 to a transmitted UDP packet that cannot be delivered. Do not mark the
5449 connection as bad but instead retry the request.
5451 - Fix the data written to the registry as part of the BackConnectionHostnames
5454 - Fixed the rx-lwp implementation to always generate unique rx call
5457 - The default "fs minidump" type now includes data segments.
5462 * -nosettime is now the default for afsd. Use "-settime" to get the
5465 * OpenBSD is now supported.
5467 * Mountpoint directory information is now only faked for cross-cell
5468 mountpoints when using the -fakestat flag (e.g. for the directories
5469 under /afs, but not for most other volumes mounted inside the cell).
5470 The -fakestat-all switch can be used to fake information for all
5473 * When fakestat is enabled on MacOSX, the Finder can be used to browse
5474 a fully-populated /afs directory. However, this precludes reliable
5475 use of entire volumes as MacOS bundles (i.e. containing a Contents
5476 directory in the root of the volume).
5478 * Mountpoint directory information can be faked by the cache manager,
5479 making operations such as stat'ing all cells under /afs much faster.
5480 This is enabled by passing -fakestat to afsd, but might not be stable
5486 * The kaserver now defaults to not allowing interrealm authentication,
5487 due to security vulnerabilities in the krb4 protocol. The new
5488 "-crossrealm" flag to the kaserver is provided to reenable interrealm
5489 authentication if desired.
5491 * RedHat Linux 9.0 is now supported.
5493 * Solaris 9 12/02 is now supported. Solaris 7 and 8 x86 should now
5496 * On Linux machines using 2.2 series kernels, 2.2.19 or higher is now
5499 * An OpenAFS 1.2.9 afsd will not work with kernel modules built from
5500 an earlier OpenAFS release. In general, using a mismatched afsd and
5501 kernel modules set is unsupported; it is not recommended that you use
5502 such a configuration on a regular basis.
5507 * Mountpoint directory information is now only faked for cross-cell
5508 mountpoits when using the -fakestat flag (e.g. for the directories
5509 under /afs, but not for most other volumes mounted inside the cell).
5510 The -fakestat-all switch can be used to fake information for all
5513 * HPUX 11.0 is now supported.
5515 * It is now possible for AFS to use Kerberos 5 directly, via rxkad 2b.
5516 See the OpenAFS 1.2.8 Release Notes for more information on using this
5519 * An NFS translator kernel module is now included and compiled by
5520 default for Solaris only.
5525 * MacOS X 10.2 is now supported. FreeBSD 4.3 and later support is
5526 included in this release, but is still under active development and
5527 should only be used by those doing active development on the OpenAFS
5530 * When fakestat is enabled on MacOSX, the Finder can be used to browse a
5531 fully-populated /afs directory. However, this precludes reliable use
5532 of entire volumes as MacOS bundles (i.e. containing a Contents
5533 directory in the root of the volume).
5535 * The fileserver will now use Rx pings to determine if clients are
5536 reachable prior to allocating resources to them, to prevent asymmetric
5537 clients from consuming all fileserver resources.
5542 * Mountpoint directory information can be faked by the cache manager,
5543 making operations such as stat'ing all cells under /afs much faster.
5544 This is enabled by passing -fakestat to afsd.
5546 * Solaris 9 FCS and Solaris 7 and 8 x86 are now supported.
5551 * A remote denial of service attack in the AIX and IRIX clients has been
5552 fixed. Users of those platforms are strongly encouraged to upgrade.
5554 * Fixed race conditions in fileserver that could result in crash.
5559 * Server logfiles now more consistant about format in which hosts are
5562 * vfsck on Solaris will now allow force runs (using -y flag) even if old
5568 * Cell aliases for dynroot can be specified in the CellAlias file in
5569 /usr/vice/etc or /usr/local/etc/openafs, in format "realname alias",
5570 one per line. They can also be managed at runtime with "fs newalias"
5571 and "fs listaliases".
5576 * Solaris 9 and Linux PA-RISC are now supported.
5578 * fileserver will not erroneously delay legitimate errors for 3 seconds
5579 after 10 errors are returned (e.g. stat() on a directory you can't
5582 * Rx MTU calculation now works for Irix, Solaris and Linux
5584 * If afsd is started with the -dynroot flag, /afs will be locally
5585 generated from the CellServDB. AFSDB cells will be mounted
5586 automatically upon access.
5588 * The namei fileserver allows vice "partitions" to be directories
5589 instead of partitions and will attach and display accordingly.
5590 Creating the file "AlwaysAttach" in the /vicepX directory is used as
5591 the trigger to attach it.
5593 * TSM support for butc no longer requires editing a Makefile, simply
5594 specify the --enable-tivoli-tsm configure option.
5596 * Linux builds no longer require source changes every time the kernel
5597 inode structure changes; the OpenAFS sources will now configure itself
5598 to the actual inode structure as defined in the kernel sources.
5603 * vfsck on Digital UNIX and Solaris will now refuse to fsck mounted
5609 * AFS now supports --prefix and the other directory options of
5610 configure. By default AFS builds assuming it will be installed in
5611 /usr/local. In order to get traditional AFS directory paths (/usr/afs
5612 and /usr/vice/etc) use the --enable-transarc-paths option to
5613 configure. More details on the new directory layout are found in
5619 * Windows 95/98/ME/NT/2000 - Consistent versioning: Installation, AFS
5620 Control Center, Client dialog boxes and properties pages for
5621 executables display a consistent OpenAFS version number. Installation
5622 detects previous installation and prompts the user for upgrade
5625 * Windows 95/98/ME/NT/2000 - Installation features: During installation
5626 the user can select the source of the CellservDB file, AFS home cell,
5627 and drive mappings. During installation a drive path mapping can
5628 include a variable that will be substituted with the current UserName
5631 * Windows 2000/NT - Integrated logon: The Integrated Logon feature
5634 * Windows 95/98/ME - Logon script features: The Windows 95/98/ME client
5635 now offers a command-line option for starting up the AFS client
5636 without authenication. It is now possilbe to start the AFS client
5637 first and obtain tokens, and map drives all through Windows scripts.
5638 This helps using Windows 95/98/ME client in Kerberos 5 environment.
5640 * Windows 2000/NT - LANA numbers: AFS client now scans the LANA numbers
5641 to establish the correct NETBIOS connection. NetBEUI is no longer
5642 needed. The user no longer needs to find the correct LANA number.
5644 * Windows 2000/NT - OpenAFS naming consistancy: Further progress has
5645 been made to remove references to "Transarc AFS" and replace with
5651 * AFS now builds with configure. The README for building has been
5652 updated and includes full details.
5654 * A client system can now have multiple sysname values for @sys. They
5655 will be searched in order when looking up files in AFS. The
5656 -newsysname argument to fs sysname can be repeated to set multiple
5659 * A new system group is created for new cells (system:ptsviewers with id
5660 -203). If this group exists, members of this group can examine and
5661 read the entire protection database. They can examine all users and
5662 groups and can get the membership of any group.
5664 * A new program, pt_util has been added to the distribution. This
5665 program allows users to print the contents of the protection database
5666 or to edit the protection database without running a ptserver. It can
5667 be used to set up a new cell without ever running in noauth mode. Run
5668 pt_util -h for help.
5670 * The fs setcrypt and fs getcrypt commands have been added. These
5671 commands allow the system administrator to require that the client
5672 encrypt all authenticated traffic between the client workstation and
5673 AFS. The encryption used is weak, but is likely better than sending
5674 unencrypted traffic in most environments. Some functions, such as
5675 looking for a volume may not be encrypted, but data transfer certainly
5676 is. By default data is not encrypted. At this time no significant
5677 experimentation with server performance has been conducted.
5679 * By default AFS is compiled with AFS_AFSDB_ENV, enabling the -afsdb
5680 option to be given to afsd on startup. If this option is used, then
5681 new cells will be looked up using AFSDB records stored in DNS if they
5682 are not found in CellServDB. This means that users can create
5683 cross-cell mountpoints in directories they control to access cells not
5684 in root.afs, and that cells in root.afs need not be in the client's
5687 * AFS database servers can be marked as read-only clones. Surround the
5688 hostname in square brackets on the bos addhost command and the
5689 database server will never be elected sync site. This is useful for
5690 cells distributed over a wide region.
5692 * The AFS servers now support the -syslog flag. This flag causes them
5693 to log to syslog rather than to files. This flag is not supported on
5694 NT. For all servers besides the salvager, the flag can also be
5695 specified as -syslog=facility, where facility is an integer facility
5696 code from syslog.h. A -syslogfacility option is provided for the
5697 salvager to accomplish the same goal.
5699 * If the --enable-fast-restart flag is given when configuring AFS, then
5700 the salvager supports the -dontsalvage flag which causes it to exit
5701 without salvaging any volumes. If this is configured into the third
5702 command of a fs process, then the fileserver will start without
5703 salvaging. It will fail to attach volumes that need salvaging and
5704 they can be salvaged manually. This provides significantly better
5705 server startup performance at the cost of administrative complexity.
5707 * If the --enable-bitmap-later flag is given when configuring AFS, then
5708 the fileserver creates bitmaps for free vnodes on demand, allowing
5711 * If bosserver finds a BosConfig.new file at startup, it reads this file
5712 and renames it to BosConfig. This allows bosserver to be reconfigured
5715 * The bosserver can be placed in a restricted mode in which AFS
5716 superusers are only granted limited access to the server host. The
5717 following functionality is disabled when restricted mode is in use:
5720 bos getlog (except for files with no '/'s in their name)*
5726 specific exceptions are made for functionality that "bos salvage"
5729 A cron bnode who's name is "salvage-tmp", time is now, and command
5730 begins with "/usr/afs/bin/salvager" may be created. This bnode deletes
5731 itself when complete, so no special "delete" support is needed. This
5732 functionality may be removed in the future if a "Salvage" RPC is
5735 The file with the exact path /usr/afs/logs/SalvageLog may be fetched,
5736 since that is how bos salvage [...] -showlog is implimented.
5738 Restricted mode is enabled using a new bos command (bos setrestricted)
5739 or bossever command line switch (bosserver -restricted). Restricted
5740 mode can be disabled by a) sending the bosserver process a SIGFPE
5741 (which will then allow restricted operations until the next restart or
5742 setrestricted command) or b) editing /usr/afs/local/BosConfig (or
5743 BosConfig.new), and restarting the bosserver.
5745 * The bos UserList of trusted administrators can now contain cross-realm
5746 Kerberos principals.
5748 * udebug now takes --server not --servers.
5750 * Several error messages have been improved to include volume numbers.
5752 * Several new ports have been included for UNIX platforms: Darwin
5753 (ppc_darwin_12 and ppc_darwin_13), Linux 2.4 (i386_linux24), Linux on
5754 the Powerpc (ppc_linux22 and ppc_linux24), Linux on the Sparc
5755 (sparc_linux22, sparc64_linux22 and sparc64_linux24).
5757 * Incomplete FreeBSD and Alpha Linux ports are included. The FreeBSD
5758 port has a working server and the Alpha Linux port has a partially
5761 * A native client for Windows 95/98/ME has been added to the
5762 distribution. With this program, a gateway machine is no longer
5763 required for Windows 9x to access AFS files. One drive letter will be
5764 created on your machine by default - Z:. The Z: drive will be the
5765 root of the AFS tree, allowing you to browse all sites that have AFS
5766 servers available. Additional drive letters can be defined for other
5767 AFS directories. A Windows Explorer shell extension is included that
5768 allows you to right click on items within an AFS tree to bring up an
5769 "AFS" menu item and perform various operations on a file or directory.
5770 The most useful item is "Access Control Lists", which allows you to
5771 view and edit the permissions of a particular directory. Command line
5772 tools are also available in the install directory. These commands
5773 include klog, unlog, tokens, kpasswd, symlink, fs and pts. The
5774 installable includes a readme file that contains more information on
5775 how to use the client program and known issues.
5777 * Support for large caches in afsd. Cachefiles are stored in
5778 subdirectories. The default is 2048 files per subdirectory, which
5779 should work fine in most situations. You can use the new afsd option
5780 -files_per_subdir to change this number. Note that the first time you
5781 run afsd with this patch, your cachefiles will get moved into
5782 subdirectories. If you subsequently run an older version of afsd, you
5783 will lose all your cached files.