[PATCH 0/2 v2 RESEND] nfs-utils: Improving NFS re-export wrt. crossmnt

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



[Resending this series because I got to git add two header files.]

After a longer hiatus I'm sending the next iteration of my re-export
improvement patch series. While the kernel side is upstream since v6.2,
the nfs-utils parts are still missing.
This patch series aims to solve this.

The core idea is adding new export option, reeport=
Using reexport= it is possible to mark an export entry in the exports
file explicitly as NFS re-export and select a strategy on how unique
identifiers should be provided. This makes the crossmnt feature work
in the re-export case.
Currently two strategies are supported, "auto-fsidnum" and
"predefined-fsidnum".

In my earlier series a sqlite database was mandatory to keep track of
generated fsids.
This series follows a different approach, instead of directly using
sqlite in all nfs-utils components (linking libsqlite), a new deamon
manages the database, fsidd.
fsidd offers a simple (but stupid?) text based interface over a unix domain
socket which can be queried by mountd, exportfs, etc. for fsidnums.
The main idea behind fsidd is allowing users to implement their own
fsidd which keeps global state across load balancers.
I'm still not happy with fsidd, there is room for improvement but first
I'd like to know whether you like or hate this approach.

A typical export entry on a re-exporting server looks like:
    	/nfs *(rw,no_root_squash,no_subtree_check,crossmnt,reexport=auto-fsidnum)
reexport=auto-fsidnum will automatically assign an fsid= to /nfs and all
uncovered subvolumes.

Changes since v1, https://lore.kernel.org/linux-nfs/20220502085045.13038-1-richard@xxxxxx/
	- Factor out Sqlite and put it into a daemon
	- Add fsidd
	- Basically re-implemented the patch series
	- Lot's of fixes (e.g. nfs v4 root export)


Richard Weinberger (2):
  export: Add reexport= option
  Implement fsidd

 configure.ac                        |   1 +
 support/Makefile.am                 |   2 +-
 support/export/Makefile.am          |   2 +
 support/export/cache.c              |  74 ++++++-
 support/export/export.c             |  27 ++-
 support/include/nfslib.h            |   1 +
 support/nfs/Makefile.am             |   1 +
 support/nfs/exports.c               |  62 ++++++
 support/reexport/Makefile.am        |  18 ++
 support/reexport/backend_sqlite.c   | 267 +++++++++++++++++++++++
 support/reexport/fsidd.c            | 198 +++++++++++++++++
 support/reexport/reexport.c         | 327 ++++++++++++++++++++++++++++
 support/reexport/reexport.h         |  18 ++
 support/reexport/reexport_backend.h |  47 ++++
 systemd/Makefile.am                 |   2 +
 systemd/fsidd.service               |   9 +
 utils/exportd/Makefile.am           |   6 +-
 utils/exportd/exportd.c             |   5 +
 utils/exportfs/Makefile.am          |   3 +
 utils/exportfs/exportfs.c           |  11 +
 utils/exportfs/exports.man          |  31 +++
 utils/mount/Makefile.am             |   3 +-
 utils/mountd/Makefile.am            |   2 +
 23 files changed, 1106 insertions(+), 11 deletions(-)
 create mode 100644 support/reexport/Makefile.am
 create mode 100644 support/reexport/backend_sqlite.c
 create mode 100644 support/reexport/fsidd.c
 create mode 100644 support/reexport/reexport.c
 create mode 100644 support/reexport/reexport.h
 create mode 100644 support/reexport/reexport_backend.h
 create mode 100644 systemd/fsidd.service

-- 
2.31.1




[Index of Archives]     [Linux Filesystem Development]     [Linux USB Development]     [Linux Media Development]     [Video for Linux]     [Linux NILFS]     [Linux Audio Users]     [Yosemite Info]     [Linux SCSI]

  Powered by Linux