Short: Lightweight TCP/IP network file server and mounter
Author: Timm S. Mueller, Claude Sonnet
Uploader: tmueller@schulze-mueller.de
Type: comm/tcp
Version: 0.9r2
Architecture: m68k-amigaos, Unixoid (Linux, FreeBSD, etc.)


Overview
--------------------------------------------------------------------------

Fizz is a lightweight TCP/IP network file server and mounter.

No configuration files, no daemons, no encryption, no hassle - just a
single command line program for sharing and mounting directories
ad-hoc style.

WARNING: no authentication. Use on trusted LANs only! - a crossover
cable, a home switch, or a VPN, and use the READONLY option when
appropriate.

Currently supported: Amiga, Unixoid (FUSE3 for mounting e.g. on
Linux, FreeBSD)

Fizz goes both ways: You can share and mount - on all supported
platforms, both directions are supported. So of course you can share
an Amiga directory with other Amigas. You can run as many instances
as you like. There is no central server.

Fizz supports Amiga case-insensitive filenames, permission bits and
comments, not only when serving from an Amiga, but from Unix servers
as well. Support (through xattrs) is provided for Linux, FreeBSD and
others, and the required capabilities are detected and negotiated
with clients at runtime.


Requirements
--------------------------------------------------------------------------

Amiga:
OS >= v37, bsdsocket.library v3, 68000 CPU
~150k for mounting or sharing a directory

POSIX/FUSE, build requirements:
gcc or clang, FUSE3 library and headers (libfuse3-dev/fuse3-devel),
pkg-config, pthreads. If your OS does not support FUSE for mounting,
you may still try running the server (e.g. on MacOSX), as it is largely
POSIX compliant with just a few additional code paths for xattrs support.


Build and install
--------------------------------------------------------------------------

On Amiga, just:

  # copy fizz C:

On Unixoid fizz goes into /usr/local/bin:

  $ gmake all
  $ sudo make install
  
Building for Amiga requires the vbcc toolchain:

  $ make amiga

Use 'make help' to see a list of targets.


Getting started
--------------------------------------------------------------------------

1. Start by sharing an empty directory.

2. Make sure you don't expose a share on a host or network interface
that is reachable from untrusted networks, such as the internet.
Typically it is safe to use behind a home router which is also a NAT
gateway, but make sure that this is the case.

3. Copy the things to share into the shared directory. While clients
have no means to create links inside a share, if YOU place symlinks
in a share, these can be traversed by clients, even if they cannot
resolve them to their actual paths.

4. When there is no need for clients to write to a share, use the
read-only option, so data can't be devastated, not even by accident.


Usage
--------------------------------------------------------------------------

Share a directory:

  $ fizz serve [rootdir] [PORT num] [RO] [IFACE addr[:port]]
  Amiga:
  # fizz serve [rootdir] [PORT num] [RO] [IFACE addr[:port]] [TZOFFS sec]

  rootdir defaults to the current directory.
  PORT num defaults to 17711.
  Keyword RO (or --readonly) rejects all write operations.
  IFACE (or --interface) binds to a specific address (e.g. 127.0.0.1),
  and optionally a port number. If not specified, the server binds to all
  of the machine's interfaces.
  TZOFFS (Amiga only) specifies a time zone offset in seconds, see below.

  Examples:
  $ fizz serve                        share current directory, port 17711
  $ fizz serve /home/shared           share a specific directory
  # fizz serve RAM:                   share the RAM: disk (Amiga)
  $ fizz serve /srv/pub port 8888     share on a different port
  # fizz serve SYS:T RO TZOFFS 7200   read-only share, CEST (Amiga)
  $ fizz serve iface 127.0.0.1:6666   localhost only

Mount a share (client side):

  # fizz mount host[:port] [VOLNAME] [OH] [LOCKING] [TZOFFS sec]
  Unix:
  $ fizz mount host[:port] mountpoint [OH] [fuse-args]

  mountpoint must exist and should be an empty directory.
  OH (or --omithidden) hides dot-files from listings (still accessible).
  LOCKING enables client-side locking (Amiga only).
  fuse-args are additional arguments passed to FUSE.

  The client reconnects automatically if the server restarts; operations
  block during reconnect and resume transparently (open files excepted).

  Examples:
  # fizz mount hostname               mount hostname to FIZZ: (Amiga)
  # fizz mount klappstulle NETZ:      mount klappstulle to NETZ: (Amiga)
  $ fizz mount 192.168.1.5:8888 ~/net mount 192.168.1.5:8888 to ~/net
  $ fizz mount a1200 ~/net -f         mount a1200, running in foreground
  # fizz mount NEED=unix server       require the "unix" capability

  Unmount on Unixoid:
  $ umount ~/net
  $ fusermount3 -u ~/net              if needed (I don't)

  Unmount on Amiga:
  press CTRL-C or send a break signal.
  
Capability management:

  The protocols and defaults are adjusted in such way that things
  just work, hopefully. For more insight and control over your
  mounted filesystems, show a server's protocol and capabilities:

  # fizz query hostname
  
  With the arguments USE and NEED you can request server capabilities
  opportunistically or strictly. For example, USE=amiga-case would
  use a server's offer of Amiga-style case insensitive file names.
  The same with NEED=amiga-case, but mounting would fail if the
  server cannot provide the requested feature.
  
  Amiga servers offer (and Amiga clients by default use)
  "iso-8859-1,amiga-case,amiga-comment,amiga-flags".
  Unix servers offer "unix,case,amiga-case", and additionally
  "amiga-comment,amiga-flags" (given the required support).
  Unix clients by default use the capabilities "unix,case".
  
  So by default Amiga clients get case-insensitive names, Amiga
  comments and file flags even from Unix servers, provided that
  the server and filesystem can support them - and fall back to 
  'Unix-like' verbatim filenames, and no support for comments and
  special Amiga protection bits. If you strictly require them,
  you would specifiy NEED=amiga-case,amiga-comment,amiga-flags.
  
  Unix servers and clients talk to each other in a pretty standard
  way, except for that chown and chgrp are not supported by the
  protocol.
  

More Amiga-specific notes
--------------------------------------------------------------------------

- A good place for setting up shares on an Amiga is in
AmiTCP:db/user-startnet, e.g.:

run <>NIL: fizz mount hostname SHARE: tzoffs 7200

With this method shares can come up and go away by starting and
stopping the network.
 
- For correct timestamps on Amiga, use the TZOFFS argument to
normalise time towards UTC. The server always carries timestamps in
UTC. The offset is specified in seconds. If your Amiga is running in
CEST, you would specify TZOFFS 7200 for both clients and servers
running on this Amiga. (Ideally you get the system time per NTP sync,
and calculate TZOFFS with some help from TZUtil or similar.)

- On the Amiga client side, use the option LOCKING/S to enable full
file-lock semantics locally, per client mount. No locking goes over
the wire protocol and so isn't enforced between remote clients, only
between applications on the same Amiga.

- Remember that you will probably want to include xattrs for backups
and copies of Amiga directories on a Unix server with cp, rsync, tar.


Disclaimer
--------------------------------------------------------------------------

See also COPYRIGHT.

This software was created under the influence of drugs and alcohol.
The only thing that can be guaranteed is that it can corrupt your
data, silently, when you least expect it.

Short version: Consider everything here experimental, and don't
entrust it important data that you cannot recover.


Rationale
--------------------------------------------------------------------------

Created for lack of a better tool.

Samba: The smbfs mounter on Amiga is great. But the Samba server is a
pile of bloat and obsolescence, and a nuisance to configure. You are
building megabytes of cruft, and then try to make sense of weird
compatibility options to disable 95% of that. And you keep wondering
when your distribution will finally drop them for godawful security -
which you couldn't care less about in your home network.

NFS: ch_nfsmount on Amiga is great. NFSv2 is fast and easy to setup -
for the 1993 Unix aficionado. In the kernel you enable options nobody
has bothered to switch on in a decade or two. The NFSv2 userland
support, which any sane distribution has abandoned a long time ago,
you build yourself from sources you picked up in a back-alley
scrapyard on the internet. After that it's awesome.

I haven't tried many newer mounters (NFSv3, possibly some other for
Samba). What I've seen was that I had to write mount list entries, so
shares cannot be terminated by the break signal, and the network stack
cannot remove them automatically. And then it still doesn't work the
other way round - and setting up a Samba or NFS server on an Amiga
would be even more insane.

ch_nfsmount and smbfs show how it's done: They are not handlers that
go into L:, but are started as regular programs that provide the
volumes dynamically, and so go away on arrival of the break signal.
That way starting/stopping the network can bring up and remove shares
naturally and cleanly.

These were the reasons why I wanted to write such a thing for a long
time. Now with the arrival of some modern programming languages
(English) and methods (betreutes Coden) I found a good reason to give
these things a try and craft it in exactly the way I wanted.

The result is an Amiga binary about 50k in size which is both server
and client, and works swiftly and nicely even on an Amiga 500. With
it I can not only mount my Unix machines, but even the smallest
Amigas can exchange data between each other. Of course, you can also
use it for sharing a directory on your laptop in a guest LAN - for
you and your friends to collaborate on some project.


Known Limitations
--------------------------------------------------------------------------

No authentication
  Any host that can reach the port has full read/write access.
  Use readonly, interface, and firewall rules when in doubt.

Locking
  Lock() works correctly for normal use: shared locks, directory
  references, Examine, NameFromLock, etc. Full locking semantics
  can be enforced per Amiga mount using the LOCKING option, but it
  is not enforced on the server side and between remote clients.

No symlinks or hard links
  The protocol does not support creating symlinks or hard links.
  Existing symlinks on the server appear as NT_LINK entries in
  directory listings; there is no way for clients to resolve their
  targets. File operations (open, readdir) on the server do follow
  symlinks, so a path that crosses a symlink will work if the client
  already knows it - but symlinks pointing outside the share root
  are not blocked. Clients that do not support NT_LINK should skip
  such entries rather than treating them as errors. Directory
  symlinks in the share can cause infinite traversal loops in
  recursive client operations (e.g. recursive copy or backup).

File sizes > 2 GB (AmigaOS server)
  AmigaOS DOS file offsets are signed 32-bit. The server rejects
  operations beyond 2 GB.

Timestamps (AmigaOS server)
  AmigaOS time resolution is 1/50 second (20 ms). Sub-tick
  precision is lost on round-trips through the Amiga server.
