NAME
aquarela – CIFS server |
SYNOPSIS
aquarela [ –np ] [ –d debug ] [ –u N ] [ –w workgroup ] |
DESCRIPTION
Aquarela provides CIFS (once known as SMB) access to Plan 9 file
servers. It announces and subsequently listens on tcp!*!445 for
connections to the file hierarchies called `shares' by CIFS. Users
are authenticated with their APOP secret (see auth(8)). Each session
is managed by a process running as the authenticated
user. Two persistent processes handle listening, session setup,
and housekeeping. An aquarela CIFS share corresponds to a directory under /n. A client request for a specific share, say, share, causes aquarela to attempt a 9fs (in srv(4)) connection to the file server share. If connection succeeds, a file hierarchy rooted at /n/share is presented to the client. The client request fails otherwise. Requests for the protocol equivalent of / are satisfied with a directory containing only the default share, local.
The options are:
–w workgroup
|
EXAMPLE
To start CIFS service on system plan9:
|
FILES
/n/local Default CIFS share /sys/log/aquarela Log file |
SOURCE
/sys/src/cmd/aquarela |
SEE ALSO
auth(8), srv(4), utf(6) |
DIAGNOSTICS
Log messages are appended to /sys/log/aquarela if it exists. The
–p option prints them on standard output as well. The –d option
adds verbose output about debug to the log messages, where debug
is one of: allcmds All CIFS requests and responses. tids Connections and disconnections per–share. sids Creation and deletion of search ids. fids Creation and deletion of file ids. rap2 RAP calls. find Transaction2 find commands. query Transaction2 query commands. sharedfiles All files opened. poolparanoia Draconian error checking in memory allocator. sessions Connections and disconnections on server. rep Regular expression conversions. locks Locking activity. any–smb–name Debug only SMB_ requests or transaction2 sub–requests (e.g., SMB_COM_SESSION_SETUP_ANDX or SMB_TRANS2_FIND_FIRST2) matching symbolic name any–smb–name. 0xnn Debug only messages with hexadecimal id 0xnn. |
BUGS
The first connection attempt to a share sometimes fails erroneously
– try again. The share disk space reported by some clients is inaccurate.
Some clients can't rename directories. Write attempts without
sufficient permissions fail (correctly), but appear on client
to temporarily succeed.
This program should probably be named cifsserver. |