]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
Merge branch 'master' into experimental
authorBenjamin Kaduk <kaduk@mit.edu>
Tue, 5 Dec 2017 17:30:56 +0000 (11:30 -0600)
committerBenjamin Kaduk <kaduk@mit.edu>
Tue, 5 Dec 2017 17:32:06 +0000 (11:32 -0600)
Pick up the latest lintian fixes, and provide a good merge base
for subsequent merges.

Change-Id: Ia4d58df780b8da7715062d384d3653161503e6f1

1  2 
NEWS
debian/changelog
debian/control
src/rx/rx.c

diff --cc NEWS
index 55cd568eb6f9c6111a027b17ee237ded5dea3cda,e489472e9396f5177104f2f74d7f05f31b09ce3a..1288e30126fc833cc029c007292a96a270664761
--- 1/NEWS
--- 2/NEWS
+++ b/NEWS
                         User-Visible OpenAFS Changes
  
 +OpenAFS 1.8.0pre2
 +
 +  All Platforms
 +
 +    * Substantial code quality improvements, largely spotted by Coverity and
 +      clang's static analysis.
 +      - Add new library for platform independent functions (opr).
 +      - Remove arbitrary path name length limits.
 +      - Convert to Heimdal's roken library for reliability.
 +      - Avoid garbage in allocated buffers (calloc).
 +      - Modernize signal handling in pthreaded server processes (softsig).
 +      - Improve code comments and additional Doxygen style comments.
 +      - Reduce compiler warnings, dead code, unused variables, and
 +        undefined behavior.
 +      - Fix bugs found by static code analyzer (clang-analyzer).
 +      - Improved unit test coverage.
 +      - Make VLDB flag definitions consistent.
 +      - Improve use of run-time assertions and add static assertions.
 +      - Add compiler attributes to assist static analyzers.
 +      - Clean up include headers in the entire tree.
 +      - Improve command-line handling library (libcmd).
 +      - Replace hash functions with Jenkin's hash function for faster
 +        and more evenly distributed lookups.
 +      - Provide a red-black tree data structure to enable algorithmic speedups.
 +      - Convert backup and salvage servers to the common logging API (libutil).
 +      - Improve volume id data type consistency (VolumeId).
 +      - Import APIs for kerberos-style profile configuration support.
 +      - Add new APIs to support UserList identities.
 +      - Add new APIs to support tabular output from command-line utilities.
 +      - Convert vnode macros to inline-functions.
 +
 +    * Improved support for non-DES encryption types:
 +      - Convert to Heimdal's hcrypto library to support RFC 3961.
 +      - Add extended key file format replacing rxkad.keytab, and
 +        new key management APIs.
 +      - Add support for extended key types to asetkey.
 +      - Add akeyconvert to assist in upgrading to OpenAFS 1.8.x by converting an
 +        existing rxkad.keytab file to an extended key file.
 +      - Do not install the kaserver and related utilities by default to
 +        discourage the use of these DES-dependent components.
 +      - Remove obsolete klogin and klogin.krb programs.
 +      - Add new token APIs to support new rx security classes.
 +
 +    * Migrate from LWP to POSIX threads (pthreads):
 +      - Convert the ptserver and vlserver from LWP to pthreads.
 +      - Remove LWP version of the file server binary.
 +      - Convert afsd, aklog, asetkey, klog.krb5, pts, udebug, and vos, from LWP
 +        to pthreads.
 +
 +    * Improvements to Rx:
 +      - Restructure the Rx API to privatize the implementation.
 +      - Convert rx events to a red-black tree data structure to improve
 +        performance.
 +      - Convert from mutexes to atomic operations for counters to reduce lock
 +        contention.
 +      - Provide per-opcode Rx statistics.
 +      - Add an rx_opaque data type to support non-DES encryption types
 +        and general code cleanup.
 +      - Wake up the application thread after 'twind' is updated to avoid 100ms
 +        transmit delays when the receive window transitions from closed to
 +        open.
 +
 +    * Libraries (both internal and installed) are built using libtool, including
 +      libuafs. The resulting shared libraries for libafsrpc and libafsauthent
 +      should be more usable than previously.
 +
 +    * Improvements to the build system:
 +      - Convert to libtool to build shared libraries.
 +      - Clean up and improve the build system.
 +      - Support out of tree builds.
 +      - Add a makefile target to generate Doxygen source code documentation.
 +      - Link the Java API for OpenAFS with libuafs.a and remove the
 +        libjuafs.a library.
 +      - Always build the rxperf tool.
 +      - Fix man-page generation by make after ./regen.sh -q
 +      - Support the SOURCE_DATE_EPOCH environment variable to improve build
 +        reproducibility.
 +      - Modernize language specific SWIG typemaps for libuafs Perl bindings.
 +
 +    * Improvements to documentation:
 +      - Document the new KeyFileExt file.
 +      - Reorganized the README files.
 +      - Improvements and fixes to documentation generation.
 +      - Add experimental epub and mobi support
 +      - Remove obsolete LWP information from the file server documentation.
 +      - Update and reorganize the Quick Start Guide.
 +      - Update the Admin Guide.
 +      - Remove AIX, HP-UX, and IRIX information from the Quick Start Guide.
 +      - Document the vldb and prdb (ubik) file formats.
 +      - Add PtLog man page.
 +      - Corrections and clarifications to man pages.
 +      - Add ubik threading analysis doc.
 +
 +    * Improvements for troublshooting, debugging, and testing:
 +      - Log more details on volume-server-to-fileserver communication errors
 +        when possible.
 +      - Set thread names in pthreaded servers on platforms which support
 +        thread names.
 +      - Add dynroot lock tracking to cmdebug
 +      - Fix tracking of an fstrace call site in the cache manager background
 +        process.
 +      - Add the afsload tool to simulate multiple cache managers for file server
 +        load testing.
 +      - Add run-time checks for refcount imbalances in the cache manager.
 +      - Fix missing newlines in afsd -debug output.
 +
 +    * Developer tool improvements:
 +      - Improvements and fixes for rxgen (used to generate Rx RPC bindings).
 +      - Add tool for man page verification of command options.
 +      - Add tool to find Unix cache manager lock identification numbers.
 +      - Add an option for pretty build output.
 +
 +    * RPM packaging updated:
 +      - Update the spec file to keep up with accumulated changes.
 +      - Move the klog.krb5 man page to the openafs-krb5 sub-package.
 +      - Prevent double-starting client on RHEL7
 +      - Convert rpm spec file from deprecated 'make dest' to 'make install'.
 +      - Fix rpmbuild command line option default handling.
 +
 +    * Add a new protection error code (PRNAMETOOLONG) instead of silently
 +      truncating names which exceed the maximum name length (PR_MAXNAMELEN).
 +
 +    * Add an implementation limit (50000) on the number of names/ids which can
 +      be transmitted by unauthenticated clients to the ptserver, avoiding
 +      excessive resource consumption from unauthenticated requests.
 +
 +    * Add the -config option to vos, pts, and aklog to specify the path to the
 +      cell configuration files.
 +
 +    * Add more details in vos release -verbose output.
 +
 +    * Add the cacheout -encrypt option to encrypt communication between the
 +      cacheout client and the fileserver.
 +
 +    * Add the command line options to the afsio program to enable encryption of
 +      traffic between afsio and the fileserver (-clear, -crypt).
 +
 +    * Add the vos release -force-reclone option to force recloning the volume to
 +      be released without forcing a full volume dump being transmitted to all
 +      remote sites.
 +
 +    * Fix vos to avoid writing loopback addresses into the VLDB in
 +      certain cases.
 +
 +    * Print bos and pts error messages to standard error instead of
 +      standard out.
 +
 +    * Improve formatting of the -help output of all commands.
 +
 +    * Change -n to -dryrun in all backup subcommands.
 +
 +    * Change the backup deletedump -port command line option to -portoffset.
 +
 +    * Add user and build host in the version string returned by
 +      rxdebug -version.
 +
 +  All Server Platforms
 +
 +    * Ubik servers using pthreads are now available and are used by default
 +
 +    * As part of improving Ubik reliability in certain edge cases, an extra
 +      election cycle (about 60 seconds) may be needed before writes are
 +      permitted.  This is a conservative change that may be removed in
 +      the future.
 +
 +    * Remove periodic background fsync by the fileserver (ihandle fsync thread).
 +
 +    * Fix potential file handle leak in the file server ihandle caching layer.
 +
 +    * Disable the so-called "hot threads" feature in the file server. The hot
 +      threads feature was intended as an optimization for dispatching incoming
 +      calls to the current listener thread, but has been reported to incur a
 +      performance penalty on modern multi-core systems.
 +
 +    * Do not permit creation of users with id of ANONYMOUSID.
 +
 +    * Do not save/restore host states in the fsstate.dat file for hosts which
 +      are in the process of retrieving CPS information from the ptserver when
 +      the fileserver is being shutdown. This fixes a bug in which the fileserver
 +      will incorrectly block all threads following a restart.
 +
 +    * Add the ptserver -restrict_anonymous option to inhibit exposure of user
 +      names from the ptserver.
 +
 +    * Do not truncate server log files by default when server processes
 +      are started.  The -transarc-logs option provides backward compatibility
 +      with IBM AFS log handling on server startup. Log messages may be lost
 +      in back-to- back restarts when a server is running in this mode.
 +
 +    * Reopen server logs on SIGUSR1. This may be used by third-party log
 +      rotation tools, such as logrotate, to reopen the log file handles after
 +      log files have been renamed.
 +
 +    * Fix various bugs when logging with -mrafslogs enabled.
 +
 +    * Dynamically reload the kerberos realm to AFS cell mapping (krb.conf) and
 +      exclusions for mapping kerberos principals to AFS identities (krb.excl)
 +      configuration when the CellServDB cell configuration file is touched.
 +      Previously, a restart of the file server was required after updating the
 +      kerberos mapping configuration files.
 +
 +    * Add a command line option (-restricted_query) to the vlserver and
 +      volserver to restrict information queries about volumes to a specific
 +      group of users.
 +
 +    * Add a command line option to the server programs to specify an alternate
 +      fully qualified log file name (-logfile).
 +
 +    * Add a command line option (-config) to the server programs to specify
 +      an alternate path to the server configuration.
 +
 +    * Add a command line option to the ptserver and vlserver to specify an
 +      alternate path to the database data files.
 +
 +    * Add a command line option to the volume server to enable encryption of
 +      volume-server-to-volume-server-traffic (-s2scrypt).
 +
 +    * Increase the maximum number of LWP threads allowed for the ptserver and
 +      vlserver from 16 to 64 (-lwp).
 +
 +    * Remove an unused file server command line option (-k).
 +
 +    * Fix an incorrect assertion in Demand Attach File Server which could cause
 +      the file server process to abort in certain rare conditions.
 +
 +    * Deprecate the -bitmap-later configure option for non-Demand-Attach File
 +      Servers (DAFS).
 +
 +    * Add -vhashsize support to non-Demand-Attach File Servers (DAFS).
 +
 +    * Add support for subnet ranges in the NetInfo and NetRestrict
 +      configuration files.
 +
 +    * Add the GetXStats RPC to the audit log.
 +
 +    * Fix directory creation by bosserver when built for non-Transarc paths.
 +
 +    * Fix incomplete list of server addresses retreived by vos listaddr when the
 +      vldb contains unreferenced multi-homed server entries.
 +
 +    * Remove obsolete bos blockscanner and unblockscanner commands that
 +      were only needed for the removed MR-AFS functionality.
 +
 +    * Remove obsolete bos salvage options that were only used by the
 +      removed MR-AFS functionality..
 +
 +    * Remove calls to the deprecated sbrk() function.
 +
 +    * Add an experimental feature to database servers to support ubik reads
 +      while write transactions are in progress, enabled at build time with the
 +      --enable-ubik-read-while-write configure option. This feature is not
 +      considered ready for production usage at this time.
 +
 +    * Avoid filling the FileLog with "Volume x offline: not in service" when
 +      a volume is administratively taken offline with vos offline.
 +
 +    * Print an error message when bosserver is started with an unknown
 +      command line option.
 +
 +    * Modify the volume updateDate when the volume is changed by a salvage.
 +
 +    * Volume usage statistics are now preserved during reclone and restore
 +      operations by default, the behavior previously enabled by
 +      the -preserve-vol-stats flag to the volserver.  The historical behavior
 +      can be retained via the -clear-vol-stats argument.
 +
 +  All Client Platforms
 +
 +    * Use rxkad_crypt by default for connections to fileservers.  This matches
 +      the existing behavior of the Windows client and has been applied by
 +      the distribution packaging on many platforms already.
 +
 +    * Add support for relative ACL changes with fs setacl. If a single plus (+)
 +      or minus (-) character is appended to the rights' letters argument, the
 +      new rights are computed relatively to the existing ones.
 +
 +    * Remove afsd -settime and afsd -nosettime support.
 +
 +    * Add the afsd -inumcalc option to specify the method used to calculate
 +      inode numbers presented by AFS.
 +
 +    * Add the afsd -volume-ttl option to specify set the maximum amount of time
 +      information retrieved from the vlserver will be cached, regardless of
 +      callback expiry times.
 +
 +    * Return EIO on internal errors instead of the misleading ENOENT.
 +
 +    * Log ICMP errors received, if any, for unreachable servers.
 +
 +    * Improve performance of clients with multiple PAGs for different cells.
 +
 +    * Fix race condition between changing and using user tokens among cache
 +      manager threads.
 +
 +    * Fix fs sysname for users with UID 2748 and 2750 when not running
 +      in -rmtsys mode.
 +
 +    * Add Perl bindings for the user-space cache manager library (libuafs).
 +
 +    * Fixes to the bypasscache feature.
 +
 +    * Fix fs getcacheparms miscounts.
 +
 +    * Remove the obsolete Netscape plugin.
 +
 +  Linux
 +
 +    * Remove Linux 2.2 and 2.4 support.
 +
 +    * Changes to avoid EIO errors with multiple processes doing intensive mmap
 +      writing. (Drop PageReclaim AOP_WRITEPAGE_ACTIVATE.)
 +
 +    * Prevent fakestat data inconsistencies in certain cases (131855).
 +
 +    * Fix dentry leak which can cause a crash on shutdown.
 +
 +    * Fix improper use of ENOENT and avoid incorrect use of linux negative
 +      dentry cache.
 +
 +    * Improve error reporting when encountering corrupt directories.
 +
 +    * Improve rx error handling in the Linux cache manager.
 +
 +    * Rename kpasswd to kapasswd when packaging RPMs to avoid colliding with
 +      Kerberos kpasswd.
 +
 +    * Do not use the obsolete --enable-largefile-fileservers configure option
 +      when packaging RPMs.
 +
 +    * Use the RemainAfterExit systemd feature to avoid premature exit
 +      when -afsdb is not given, for RPM packages.
 +
 +    * Remove Debian packaging files from the OpenAFS source tree. Debian
 +      packaging files are currently maintained in the downstream Debian
 +      infrastructure.
 +
 +    * Add the sparc_linux26 sysname.
 +
 +    * Desupport 32-bit Linux kernels on s390/s390x.
 +
 +    * Fix Debian/Ubuntu build regression on kernel 3.16.39.
 +
 +    * Fix --enable-kernel-debug for linux 4.8+.
 +
 +    * Support linux 4.10, 4.11, 4.12
 +
 +  Solaris
 +
 +    * Remove support for all Solaris and SunOS platforms prior to Solaris 8.
 +
 +    * Build 64-bit binaries for Solaris x86 by default.
 +
 +    * Use one-group PAGs on Solaris 11, which is required for PAG support
 +      on Solaris 11 since supplemental groups must be sorted starting with
 +      Solaris 11.1.
 +
 +    * Update search paths for solaris cc for recent versions Solaris Studio.
 +
 +    * Modernize declaration of module dependences by converting from the
 +      deprecated _depends_on symbol to ELF dependencies.
 +
 +    * Avoid BAD TRAP panic due to invalid opcodes on x86 with Studio 12.5.
 +
 +  MacOS
 +
 +    * Stop processing upcalls once rx shutdown starts.
 +
 +    * Enable atomics for the darwin kernel.
 +
 +    * Add a syscall to enable/disable bulkstat at run-time, which is
 +      disabled by default.
 +
 +    * Fix path to binaries in the prefpane.
 +
 +    * Fix builds on MacOS 10.12 by building only the active architecture
 +      by default.
 +
 +  FreeBSD
 +
 +    * Use the native kernel module build system instead of an ad hoc
 +      replacement build system.
 +
 +    * Remove FreeBSD packaging files from the OpenAFS source tree. FreeBSD
 +      packaging files are currently maintained in the downstream FreeBSD Ports
 +      Collection.
 +
 +    * Stay up to date with new FreeBSD releases (through 10.3).
 +
 +    * Do not claim AFS_VM_RDWR_ENV
 +
 +  NetBSD
 +
 +    * Stay up to date with new NetBSD releases (through 7.x)
 +
 +    * Update to use cprng(9) as the randomness source on NetBSD 6.99/7.x.
 +
 +    * Build system updates for NetBDS 6.99.x
 +
 +    * Do not claim AFS_VM_RDWR_ENV
 +
 +  OpenBSD
 +
 +    * Stay up to date with new OpenBSD releases (through 4.7)
 +
 +    * Do not claim AFS_VM_RDWR_ENV
 +
 +  AIX
 +
 +    * Updates for AIX support.
 +
 +    * Fix build system for AIX exports.
 +
 +    * Add the uidpag and localuid runtime options to the aklog LAM plugin.
 +      (These runtime options override the use of UID-based PAGs, which were
 +      introduced to appease the CDE screensaver.)
 +
+ OpenAFS 1.6.22
+   All Platforms
+     * Fix OPENAFS-SA-2017-001: insufficient validation of transport parameters
+       in Rx ack trailer caused integer overflow and assertion failure
+ OpenAFS 1.6.21.1
+   Linux clients
+     * Support for mainline kernel 4.13 and distribution kernels with backports
+       from it (12664)
+     * Fix kernel module build for kernels since 4.12 on S390 (12717)
  OpenAFS 1.6.21
  
    All platforms
index 5b552d8a4de060f9deee277adafa9ffb4675dccb,496e55eb4ea0b808f9c720f8df11a9de2bec28ed..53501a68bbd5096da9a56b036fe9104e5fc42f77
@@@ -1,81 -1,11 +1,89 @@@
 +openafs (1.8.0~pre2-1) experimental; urgency=low
 +
 +  * Add versioned build-depends for renamed symbols in heimdal-multidev.
 +    (Closes: #848664)
 +  * New upstream prerelease:
 +    - Desupport 32-bit s390/s390x
 +    - Adopt jenkins hash for endianness independence
 +    - With afsd -debug, print syscalls on separate lines
 +    - Restore debug symbols for the kernel module
 +    - Support Linux up to 4.13
 +    - Provide vldb cache timeout option for clients
 +    - Eliminate potential 100ms delay after rx receive window changes
 +    - Modify volume update date after salvager makes changes
 +    - Restore client behavior of trying all servers instead of looping on an
 +      unresponsive preferred server
 +    - Improve ubik safety for relabels and writes shortly after an election
 +    - Preserve volume stats during reclone and restore operations
 +  * Add automatic akeyconvert invocation to openafs-fileserver.postinst
 +
 + -- Benjamin Kaduk <kaduk@mit.edu>  Fri, 01 Sep 2017 16:29:04 -0500
 +
 +openafs (1.8.0~pre1-5) experimental; urgency=medium
 +
 +  * debian/patches/opr-Make-opr_jhash_opaque-endian-independent.patch,
 +    debian/patches/opr-Make-opr_jhash_opaque-consistent-with-opr_jhash.patch,
 +    debian/patches/opr-Make-opr_uuid_hash-endian-independent.patch: Fix
 +    test failures on big-endian architectures.
 +
 + -- Anders Kaseorg <andersk@mit.edu>  Wed, 21 Dec 2016 20:01:40 -0500
 +
 +openafs (1.8.0~pre1-4) experimental; urgency=medium
 +
 +  * debian/patches/0006-softsig-helper-fix-signame-loop.patch
 +    Fix test failures on 32-bit architectures.
 +  * debian/patches/0007-Run-jhash-t-verbosely.patch
 +    Provide more output from failing tests.
 +
 + -- Benjamin Kaduk <kaduk@mit.edu>  Fri, 16 Dec 2016 00:26:39 -0500
 +
 +openafs (1.8.0~pre1-3) experimental; urgency=medium
 +
 +  * Replace hard-coded x86_64-linux-gnu with DEB_HOST_MULTIARCH.
 +  * Use dh_auto_configure.
 +
 + -- Anders Kaseorg <andersk@mit.edu>  Thu, 15 Dec 2016 01:27:21 -0500
 +
 +openafs (1.8.0~pre1-2) experimental; urgency=medium
 +
 +  * Move libtool, heimdal-multidev from Build-Depends-Indep to
 +    Build-Depends.
 +  * debian/patches/tests-opr-softsig-t-Avoid-hanging-due-to-intermediat.patch,
 +    debian/patches/opr-ExitHandler-re-raise-the-signal-instead-of-exiti.patch
 +    Fix test failures.
 +
 + -- Anders Kaseorg <andersk@mit.edu>  Wed, 14 Dec 2016 18:40:15 -0500
 +
 +openafs (1.8.0~pre1-1) experimental; urgency=low
 +
 +  * New upstream major release:
 +    - Servers no longer use rxkad.keytab for long-term keys, which are
 +      now stored in KeyFileExt.  Administrators must use akeyconvert
 +      or similar tooling to populate the KeyFileExt.  In most cases,
 +      `akeyconvert` with no arguments will suffice.
 +    - kaserver, klog.afs, pam-openafs-kaserver, and other kauth-related
 +      tools are removed.
 +    - Server log handling has changed.  Logs are not truncated at
 +      startup by default, and are re-opened on SIGUSR1, to be compatible
 +      with external log rotation tools.
 +    - Client time management support (afsd -settime and afsd -nosettime)
 +      has been removed.
 +    - Linux versions prior to 2.6 are no longer supported by the client.
 +    - Most binaries now use pthreads instead of LWP green threads.
 +    - The fileserver ihandle fsync thread is removed.
 +    - Many other generic improvements throughout the tree; consult the
 +      upstream changelog for details.
 +
 + -- Benjamin Kaduk <kaduk@mit.edu>  Tue, 13 Dec 2016 01:49:46 -0500
 +
+ openafs (1.6.22-1) unstable; urgency=high
+   * New upstream security release:
+     - Fix for OPENAFS-SA-2017-001. (Closes: #883602)
+     - Improved support for recent Linux versions
+  -- Benjamin Kaduk <kaduk@mit.edu>  Tue, 05 Dec 2017 10:28:15 -0600
  openafs (1.6.21-3) unstable; urgency=medium
  
    * Build documentation with FORCE_SOURCE_DATE=1, without which pdfTeX
diff --cc debian/control
index 602f82433a7d7eddb5327cf2e2161ac29ee2c0f2,0f4d1617564ac5851e02ae65a54e27ea90c9c3e7..19949ecd7cbbfb8516bc7787c3aa8117678c6a66
@@@ -4,13 -4,12 +4,13 @@@ Priority: optiona
  Maintainer: Benjamin Kaduk <kaduk@mit.edu>
  Uploaders: Russ Allbery <rra@debian.org>, Sam Hartman <hartmans@debian.org>,
   Anders Kaseorg <andersk@mit.edu>
- Build-Depends: debhelper (>= 9.20160114~), autoconf, automake, bison, comerr-dev,
+ Build-Depends: debhelper (>= 9.20160709~), autoconf, automake, bison, comerr-dev,
   cpio, flex, libfuse-dev, libkrb5-dev, libncurses5-dev,
-  libpam0g-dev, libxml2-utils, perl, pkg-config, dh-systemd,
 - libpam0g-dev, libxml2-utils, perl, pkg-config
++ libpam0g-dev, libxml2-utils, perl, pkg-config,
 + libtool, heimdal-multidev (>= 1.7~git20150920)
  Build-Depends-Indep: dblatex, dkms (>= 2.1.1.1), docbook-xsl, doxygen (>= 1.8.4-1~),
   xsltproc
- Standards-Version: 4.0.0
+ Standards-Version: 4.1.2
  Homepage: http://www.openafs.org/
  Vcs-Git: git://anonscm.debian.org/pkg-k5-afs/openafs.git
  Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-k5-afs/openafs.git
@@@ -143,11 -158,11 +143,11 @@@ Description: AFS distributed file syste
  
  Package: libopenafs-dev
  Section: libdevel
- Priority: extra
+ Priority: optional
  Architecture: alpha amd64 arm armel armhf i386 ia64 powerpc powerpcspe ppc64 s390 s390x sparc
  Depends: ${shlibs:Depends}, ${misc:Depends},
 - libafsauthent1 (= ${binary:Version}), libafsrpc1 (= ${binary:Version}),
 - libkopenafs1 (= ${binary:Version}),
 + libafsauthent2 (= ${binary:Version}), libafsrpc2 (= ${binary:Version}),
 + libkopenafs2 (= ${binary:Version}),
  Suggests: openafs-doc
  Conflicts: arla-dev, liblwp-dev
  Description: AFS distributed filesystem development libraries
diff --cc src/rx/rx.c
Simple merge