Struct cbfsconnect::NFS
Properties Methods Events Config Settings Errors
This struct is used to create a Network File System (NFS) server based on NFS version 4.1.
Syntax
cbfsconnect::NFS
Remarks
This component provides a simple way to create a Network File System (NFS) server, enabling NFS clients the ability to access and share files seamlessly across a network.
Getting Started
To begin, call start_listening to start listening for incoming connections. The struct will listen on the interface defined by local_host and local_port. For example:
Component.LocalHost = "localhost";
Component.LocalPort = 2049; // default
Component.StartListening();
while (Component.Listening) {
Component.DoEvents();
}
stop_listening may be called to stop listening for incoming connections. shutdown may be called to stop listening for incoming connections and disconnect all existing connections.
Handling Connections
Once listening, the struct can accept (or reject) incoming connections. Incoming connection details are first available through the on_connection_request event. Here, the connection's originating address and port can be queried. By default, the struct will only accept connections originating from the local host, but this behavior can be overridden within this event (see note below for clarification).
Once a connection is complete, the on_connected event will fire. Note that this event will fire if a connection succeeds or fails. If successful, the event will fire with a StatusCode of 0. A non-zero value indicates the connection was unsuccessful, and the Description parameter will contain relevant details.
After a successful connection, relevant connection-specific details will be available within the connections collection. Each connection will be assigned a unique ConnectionId which may be used to access these details.
To manually disconnect a connected client call the disconnect method and pass the ConnectionId. After a connection has disconnected, the on_disconnected event will fire. In the case a connection ends and an error is encountered, the StatusCode and Description parameters will contain relevant details regarding the error. Once disconnected, the connection will be removed from the connections collection.
Note: The struct is designed for use on single-user machines only. For use in other contexts, additional security should be handled by the user. As a result, the struct will only accept incoming connections originating from the the local host by default, as indicated by the AllowedClients config (127.0.0.1). This behavior may be overridden by modifying the AllowedClients config, or manually accepting a connection in on_connection_request.
Handling Events
File and folder operations are serviced through the events listed below. In addition to the connection-related events discussed in the previous section, the following events may fire while the struct is listening:
Event | Usage |
on_access | Fires when a client verifies its access permissions for an object. |
on_chmod | Fires when a client attempts to modify the permission bits of an object. |
on_chown | Fires when a client attempts to modify an object's owner attribute, group attribute, or both. |
on_close | Fires when a client requests the closure of a previously opened file. |
on_commit | Fires upon when a client attempts to flush any uncommitted file data from a previous on_write operation to stable storage. |
on_create_link | Fires when a client attempts to create a symbolic link or hard link |
on_get_attr | Fires when a client requests attributes for an object (such as the owner, group, or mode attributes). |
on_lock | Fires when a client attempts to create or test a byte-range lock for a file. |
on_lookup | Fires when the struct needs to determine the existence of an object in the current directory. |
on_mk_dir | Fires when a client attempts to create a new directory. |
on_open | Fires when a client attempts to create or open a file. |
on_read | Fires when a client attempts to read any part of a file. |
on_read_dir | Fires when a client attempts to list the contents of a directory. |
on_read_link | Fires when a client attempts to read data associated with a symbolic link |
on_rename | Fires when a client attempts to rename or move an object. |
on_rm_dir | Fires when a client attempts to remove a directory. |
on_truncate | Fires when a client attempts to modify a file's size attribute. |
on_unlink | Fires when a client attempts to unlink (or delete) a file. |
on_unlock | Fires when a client attempts to release a lock. |
on_u_time | Fires when a client attempts to change a file's last access time, last modification time, or both. |
on_write | Fires when a client attempts to write data to a file. |
Many of the listed events expose a Result parameter, which communicates the operation's success (or failure) to the struct and connection. This parameter is always 0 (NFS4_OK) when relevant events fire. If the event, or operation, cannot be handled successfully, this parameter should be set to a non-zero value. Possible Result codes and their descriptions are defined in RFC 7530 section 13.
For more information on how to handle each of these events, please refer to the event's documentation.
Object Lifetime
The new() method returns a mutable reference to a struct instance. The object itself is kept in the global list maintainted by CBFSConnect. Due to this, the NFS struct cannot be disposed of automatically. Please, call the dispose(&mut self) method of NFS when you have finished using the instance.
Property List
The following is the full list of the properties of the struct with short descriptions. Click on the links for further details.
nfs_connection_count | The number of records in the NFSConnection arrays. |
nfs_connection_aux_gi_ds | This property contains a comma-separated list of Auxiliary GIDs (or groups the client is a part of) associated with the connection making a request. |
nfs_connection_connected | This property shows the status of a particular connection (connected/disconnected). |
nfs_connection_current_file | This property represents the current file opened by the connection. |
nfs_connection_gid | This property represents the current group identifier (GID) of the connection making a request. |
nfs_connection_remote_host | This property indicates the IP address of the remote host through which the connection is coming. |
nfs_connection_remote_port | This property indicates the TCP port on the remote host through which the connection is coming. |
nfs_connection_uid | This property represents the current user identifier (UID) of the connection making a request. |
listening | This property indicates whether the struct is listening for incoming connections. |
local_host | This property includes the name of the local host or user-assigned IP interface through which connections are initiated or accepted. |
local_port | The TCP port in the local host where the struct listens. |
Method List
The following is the full list of the methods of the struct with short descriptions. Click on the links for further details.
config | Sets or retrieves a configuration setting. |
disconnect | This method disconnects the specified client. |
do_events | This method processes events from the internal message queue. |
fill_dir | This method fills the buffer with information about a directory entry. |
shutdown | This method shuts down the server. |
start_listening | This method starts listening for incoming connections. |
stop_listening | This method stops listening for new connections. |
Event List
The following is the full list of the events fired by the struct with short descriptions. Click on the links for further details.
on_access | This event fires when a client verifies their access permissions for an object. |
on_chmod | This event fires when a client attempts to modify the permission bits of an object. |
on_chown | This event fires when a client attempts to modify an object's owner attribute, group attribute, or both. |
on_close | This event fires when a client requests the closure of a previously opened file. |
on_commit | This event fires when a client attempts to flush any uncommitted file data from a previous Write operation to stable storage. |
on_connected | This event fires immediately after a connection completes (or fails). |
on_connection_request | This event fires when a connection request comes from a remote host. |
on_create_link | This event fires when a client attempts to create a symbolic link or hard link. |
on_disconnected | This event fires when a connection is closed. |
on_error | This event fires information about errors during data delivery. |
on_get_attr | This event fires when a client requests attributes for an object (such as the owner, group, or mode attributes). |
on_lock | This event fires when a client attempts to create or test a byte-range lock for a file. |
on_log | This event fires once for each log message. |
on_lookup | This event fires when the struct needs to determine the existence of an object in the current directory. |
on_mk_dir | This event fires when a client attempts to create a new directory. |
on_open | This event fires when a client attempts to create or open a file. |
on_read | This event fires when a client attempts to read any part of a file. |
on_read_dir | This event fires when a client attempts to list the contents of a directory. |
on_read_link | This event fires when a client attempts to read data associated with a symbolic link. |
on_rename | This event fires when a client attempts to rename or move an object. |
on_rm_dir | This event fires when a client attempts to remove a directory. |
on_truncate | This event fires when a client attempts to modify a file's size attribute. |
on_unlink | This event fires when a client attempts to unlink (or delete) a file. |
on_unlock | This event fires when a client attempts to release a lock. |
on_u_time | This event fires when a client attempts to change a file's last access time, last modification time, or both. |
on_write | This event fires when a client attempts to write data to a file. |
Config Settings
The following is a list of config settings for the struct with short descriptions. Click on the links for further details.
AllowedClients | A comma-separated list of host names or IP addresses that can access the struct. |
BindExclusively | Whether or not the struct considers a local port reserved for exclusive use. |
BlockedClients | A comma-separated list of host names or IP addresses that cannot access the struct. |
ConnectionUID | The unique connectionId for a connection. |
DefaultConnectionTimeout | The inactivity timeout applied to the SSL handshake. |
InBufferSize | The size in bytes of the incoming queue of the socket. |
KeepAliveInterval | The retry interval, in milliseconds, to be used when a TCP keep-alive packet is sent and no response is received. |
KeepAliveRetryCount | The number of keep-alive packets to be sent before the remotehost is considered disconnected. |
KeepAliveTime | The inactivity time in milliseconds before a TCP keep-alive packet is sent. |
LogLevel | Specifies the level of detail that is logged. |
MaxConnections | The maximum number of connections available. |
MaxReadTime | The maximum time spent reading data from each connection. |
MountingPoint | A path to an empty directory to mount the NFS server to. |
OutBufferSize | The size in bytes of the outgoing queue of the socket. |
SelectWaitMillis | The length of time in milliseconds the struct will wait when DoEvents is called if there are no events to process. |
SpaceAvail | Specifies the amount of space available on the server, in bytes. |
SpaceUsed | Specifies the amount of space used by the current filesystem object, in bytes. |
UseIOCP | Whether to use the completion port I/O model. |
UseIPv6 | Whether to use IPv6. |
UseWindowsMessages | Whether to use the WSAAsyncSelect I/O model. |
BuildInfo | Information about the product's build. |
LicenseInfo | Information about the current license. |
nfs_connection_count Property (NFS Struct)
The number of records in the NFSConnection arrays.
Syntax
fn nfs_connection_count(&self ) -> Result<i32, CBFSConnectError>
Default Value
0
Remarks
This property controls the size of the following arrays:
- nfs_connection_aux_gi_ds
- nfs_connection_connected
- nfs_connection_current_file
- nfs_connection_gid
- nfs_connection_remote_host
- nfs_connection_remote_port
- nfs_connection_uid
This property is read-only.
Data Type
i32
nfs_connection_aux_gi_ds Property (NFS Struct)
This property contains a comma-separated list of Auxiliary GIDs (or groups the client is a part of) associated with the connection making a request.
Syntax
fn nfs_connection_aux_gi_ds(&self , ConnectionId : i32) -> Result<String, CBFSConnectError>
Default Value
String::default()
Remarks
This property contains a comma-separated list of Auxiliary GIDs (or groups the client is a part of) associated with the connection making a request. This property is only meaningful within the structs events.
For example, if a user with a nfs_connection_gid of 1000 makes a request, this property may be: 4,24,27,30,46,110,1000
Note that this value may change for a given connection assuming multiple users have access to the mounted folder on the client machine. This property will reflect the Auxiliary GIDs associated with the current user making the request.
The ConnectionId parameter specifies the index of the item in the array. The size of the array is controlled by the NFSConnectionCount property.
This property is read-only.
Data Type
String
nfs_connection_connected Property (NFS Struct)
This property shows the status of a particular connection (connected/disconnected).
Syntax
fn nfs_connection_connected(&self , ConnectionId : i32) -> Result<bool, CBFSConnectError>
Default Value
false
Remarks
This property shows the status of a particular connection (connected/disconnected).
The ConnectionId parameter specifies the index of the item in the array. The size of the array is controlled by the NFSConnectionCount property.
This property is read-only.
Data Type
bool
nfs_connection_current_file Property (NFS Struct)
This property represents the current file opened by the connection.
Syntax
fn nfs_connection_current_file(&self , ConnectionId : i32) -> Result<String, CBFSConnectError>
Default Value
String::default()
Remarks
This property represents the current file opened by the connection. An empty string indicates the connection has no file opened.
The ConnectionId parameter specifies the index of the item in the array. The size of the array is controlled by the NFSConnectionCount property.
This property is read-only.
Data Type
String
nfs_connection_gid Property (NFS Struct)
This property represents the current group identifier (GID) of the connection making a request.
Syntax
fn nfs_connection_gid(&self , ConnectionId : i32) -> Result<i32, CBFSConnectError>
Default Value
0
Remarks
This property represents the current group identifier (GID) of the connection making a request. This property is only meaningful within the structs events.
Note that this value may change for a given connection. Assuming multiple users have access to the mounted folder on the client machine, this property will reflect the GID of the current user making the request.
The ConnectionId parameter specifies the index of the item in the array. The size of the array is controlled by the NFSConnectionCount property.
This property is read-only.
Data Type
i32
nfs_connection_remote_host Property (NFS Struct)
This property indicates the IP address of the remote host through which the connection is coming.
Syntax
fn nfs_connection_remote_host(&self , ConnectionId : i32) -> Result<String, CBFSConnectError>
Default Value
String::default()
Remarks
This property indicates the IP address of the remote host through which the connection is coming.
The connection must be valid or an error will be fired.
If the struct is configured to use a SOCKS firewall, the value assigned to this property may be preceded with an "*". If this is the case, the host name is passed to the firewall unresolved and the firewall performs the DNS resolution.
The ConnectionId parameter specifies the index of the item in the array. The size of the array is controlled by the NFSConnectionCount property.
This property is read-only.
Data Type
String
nfs_connection_remote_port Property (NFS Struct)
This property indicates the TCP port on the remote host through which the connection is coming.
Syntax
fn nfs_connection_remote_port(&self , ConnectionId : i32) -> Result<i32, CBFSConnectError>
Default Value
0
Remarks
This property indicates the TCP port on the remote host through which the connection is coming.
The connection must be valid or an error will be fired.
The ConnectionId parameter specifies the index of the item in the array. The size of the array is controlled by the NFSConnectionCount property.
This property is read-only.
Data Type
i32
nfs_connection_uid Property (NFS Struct)
This property represents the current user identifier (UID) of the connection making a request.
Syntax
fn nfs_connection_uid(&self , ConnectionId : i32) -> Result<i32, CBFSConnectError>
Default Value
0
Remarks
This property represents the current user identifier (UID) of the connection making a request. This property is only meaningful within the structs events.
Note that this value may change for a given connection. Assuming multiple users have access to the mounted folder on the client machine, this property will reflect the UID of the current user making the request.
The ConnectionId parameter specifies the index of the item in the array. The size of the array is controlled by the NFSConnectionCount property.
This property is read-only.
Data Type
i32
listening Property (NFS Struct)
This property indicates whether the struct is listening for incoming connections.
Syntax
fn listening(&self ) -> Result<bool, CBFSConnectError>
Default Value
false
Remarks
This property indicates whether the struct is listening for incoming connections on the interface identified by local_host and local_port.
Upon the successful return of start_listening or stop_listening, this property will be adjusted accordingly.
This property is read-only.
Data Type
bool
local_host Property (NFS Struct)
This property includes the name of the local host or user-assigned IP interface through which connections are initiated or accepted.
Syntax
fn local_host(&self ) -> Result<String, CBFSConnectError>
fn set_local_host(&self, value : String) -> Option<CBFSConnectError> fn set_local_host_ref(&self, value : &String) -> Option<CBFSConnectError>
Default Value
String::default()
Remarks
The local_host property contains the name of the local host as obtained by the gethostname() system call, or if the user has assigned an IP address, the value of that address.
In multihomed hosts (machines with more than one IP interface) setting LocalHost to the IP address of an interface will make the struct initiate connections (or accept in the case of server structs) only through that interface. It is recommended to provide an IP address rather than a hostname when setting this property to ensure the desired interface is used.
If the struct is connected, the local_host property shows the IP address of the interface through which the connection is made in internet dotted format (aaa.bbb.ccc.ddd). In most cases, this is the address of the local host, except for multihomed hosts (machines with more than one IP interface).
Note: local_host is not persistent. You must always set it in code, and never in the property window.
Data Type
String
local_port Property (NFS Struct)
The TCP port in the local host where the struct listens.
Syntax
fn local_port(&self ) -> Result<i32, CBFSConnectError>
fn set_local_port(&self, value : i32) -> Option<CBFSConnectError>
Default Value
0
Remarks
The local_port property must be set before the server starts listening. By default, this value is 2049. If its value is 0, then the TCP/IP subsystem picks a port number at random. The port number can be found by checking the value of the local_port property after successfully calling start_listening.
The service port is not shared among servers (i.e. there can be only one server 'listening' on a particular port at one time).
Data Type
i32
config Method (NFS Struct)
Sets or retrieves a configuration setting.
Syntax
fn config(&self, configuration_string : &String) -> Result<String, CBFSConnectError>
Remarks
config is a generic method available in every struct. It is used to set and retrieve configuration settings for the struct.
These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the struct, access to these internal properties is provided through the config method.
To set a configuration setting named PROPERTY, you must call Config("PROPERTY=VALUE"), where VALUE is the value of the setting expressed as a string. For boolean values, use the strings "True", "False", "0", "1", "Yes", or "No" (case does not matter).
To read (query) the value of a configuration setting, you must call Config("PROPERTY"). The value will be returned as a string.
disconnect Method (NFS Struct)
This method disconnects the specified client.
Syntax
fn disconnect(&self, connection_id : i32) -> Option<CBFSConnectError>
Remarks
Calling this method will disconnect the client specified by the ConnectionId parameter.
do_events Method (NFS Struct)
This method processes events from the internal message queue.
Syntax
fn do_events(&self) -> Option<CBFSConnectError>
Remarks
The method checks for events to process, such as incoming data, and fires corresponding events as necessary. If there are no events to process, the method waits for a time specified by the SelectWaitMillis configuration setting before returning.
Windows: By default, the server socket uses Windows messages, and do_events dispatches Windows messages internally. It is not necessary to call do_events from Windows GUI applications as these applications have an internal message dispatch loop. When called, this method must be called in the same thread or task in which the start_listening and stop_listening methods are called.
To avoid using Windows messages and a dispatch loop, set UseWindowsMessages to false. The application still needs to call this do_events method to let the struct handle socket updates, but when Windows messages are not used, do_events and stop_listening may be called from a separate thread or task.
Linux: The method may be called from any worker thread, and events will fire in this thread.
macOS: In GUI applications, it is not necessary to call this method as the struct registers itself in the main message loop. In other applications, the method may be called from any worker thread, and events will fire in this thread.
fill_dir Method (NFS Struct)
This method fills the buffer with information about a directory entry.
Syntax
fn fill_dir(&self, connection_id : i32, name : &String, file_id : i64, cookie : i64, mode : i32, user : &String, group : &String, link_count : i32, size : i64, a_time : &chrono::DateTime<Utc>, m_time : &chrono::DateTime<Utc>, c_time : &chrono::DateTime<Utc>) -> Result<i32, CBFSConnectError>
Remarks
This method fills the buffer with information about a directory entry. The Path parameter identifies the location and name of this object. The Name parameter identifies only the name of this object.
This method must be called when the struct needs to send information regarding a directory entry to a client, specified by ConnectionId.
Information regarding a directory entry is required when the on_read_dir event fires. Please see the event description for additional information and sample implementation.
The FileId parameter assigns a unique identifier to the file within the filesystem. If set to 0, the struct generates an Id based on the checksum value of the Path. Therefore, if set to 0, the generated Id is guaranteed to be unique for a specific Path, and persist across server restarts assuming equivalent paths.
The Cookie parameter should be set to a value unique to the specific directory entry that can later be used to identify the last returned entry within the listing. As some background, when on_read_dir fires, the client is attempting to read all entries within a directory. To start reading from the beginning of a directory, the client will specify a cookie value of 0.
The application is then responsible for calling fill_dir for each existing directory entry. In some cases, the directory may contain a large number of entries. This can become problematic as a client will specify a maximum byte limit on the amount of returned data, meaning the application may not be able to return all directory entries in one response.
To ensure the limit is respected, fill_dir will return a non-zero value if this limit is reached. After on_read_dir returns, the client will follow up with a subsequent request specifying the last cookie value received (the cookie provided in the last successful call to fill_dir). This value should be used as a "bookmark", representing a point the application can continue listing directory entries from in subsequent requests.
Note: Cookie values of 0, 1, and 2 should never be specified within this method. These values are considered to be reserved in certain environments.
The Mode parameter is used to specify the mode of the object, indicating its associated file type and permission bits. This parameter should be set to a combination of the following bit flags, as defined in the UNIX standard sys/stat.h header:
File Type
S_IFLNK | 0xA000 | Identifies a symbolic link. |
S_IFREG | 0x8000 | Identifies a regular file. |
S_IFDIR | 0x4000 | Identifies a directory. |
File Mode Bits
S_ISUID | 0x0800 | Set user ID on execution. |
S_ISGID | 0x0400 | Set group ID on execution. |
S_ISVTX | 0x0200 | Save text even after use. |
S_IRUSR | 0x0100 | Read permission, owner. |
S_IWUSR | 0x0080 | Write permission, owner. |
S_IXUSR | 0x0040 | Execute permission, owner. |
S_IRGRP | 0x0020 | Read permission, group. |
S_IWGRP | 0x0010 | Write permission, group. |
S_IXGRP | 0x0008 | Execute permission, group. |
S_IROTH | 0x0004 | Read permission, others. |
S_IWOTH | 0x0002 | Write permission, others. |
S_IXOTH | 0x0001 | Execute permission, others. |
The User parameter is used to provide the NFSv4.0 owner attribute, which is a string name of the owner of this filesystem object. Mode flags S_IRUSR, S_IWUSR, and S_IXUSR apply to the principal identified via the User parameter.
The Group parameter is used to provide the NFSv4.0 owner_group attribute, which is a string name of the group ownership of this filesystem object. Mode flags S_IRGRP, S_IWGRP, and S_IXGRP apply to the principals identified via the Group parameter.
Mode flags S_IROTH, S_IWOTH, and S_IXOTH apply to any principal that does that match the User and does not have a group matching the Group.
The LinkCount parameter is used to provide the NFSv4.0 numlinks attribute, which represents the number of hard links associated with this filesystem object.
The Size parameter is used to provide the NFSv4.0 size attribute, which represents the size of the filesystem object in bytes.
The ATime parameter is used to provide the NFSv4.0 time_access attribute, which represents the time of last access to the object by a on_read operation sent to the server.
The MTime parameter is used to provide the NFSv4.0 time_modify attribute, which represents the time of the last modification to the object.
The CTime parameter is used to provide the NFSv4.0 time_create attribute, which represents the time the object was created (unrelated to the UNIX file attribute "ctime").
shutdown Method (NFS Struct)
This method shuts down the server.
Syntax
fn shutdown(&self) -> Option<CBFSConnectError>
Remarks
This method shuts down the server. Calling this method is equivalent to calling stop_listening and then breaking every client connection by calling disconnect.
start_listening Method (NFS Struct)
This method starts listening for incoming connections.
Syntax
fn start_listening(&self) -> Option<CBFSConnectError>
Remarks
This method starts listening for incoming connections on the port specified by local_port. Once listening, events will fire as new clients connect and data are transferred.
To stop listening for new connections, call stop_listening. To stop listening for new connections and to disconnect all existing clients, call shutdown.
To process incoming client data, call the do_events method. It may need to be called from the same thread or task, in which start_listening is called. Please refer to the do_events topic for details.
stop_listening Method (NFS Struct)
This method stops listening for new connections.
Syntax
fn stop_listening(&self) -> Option<CBFSConnectError>
Remarks
This method stops listening for new connections. After being called, any new connection attempts will be rejected. Calling this method does not disconnect existing connections.
To stop listening and disconnect all existing clients, call shutdown instead.
on_access Event (NFS Struct)
This event fires when a client verifies their access permissions for an object.
Syntax
// NFSAccessEventArgs carries the NFS Access event's parameters. pub struct NFSAccessEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn access(&self) -> i32 fn set_access(&self, value : i32) fn supported(&self) -> i32 fn set_supported(&self, value : i32) fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSAccessEvent defines the signature of the NFS Access event's handler function. pub trait NFSAccessEvent { fn on_access(&self, sender : NFS, e : &mut NFSAccessEventArgs); } impl <'a> NFS<'a> { pub fn on_access(&self) -> &'a dyn NFSAccessEvent; pub fn set_on_access(&mut self, value : &'a dyn NFSAccessEvent); ... }
Remarks
This event fires when a client verifies their access permissions for an object, identified by the Path parameter.
The ConnectionId parameter indicates the client requesting the file access permissions.
The Access parameter contains an encoded bitmask of access rights that the application should check. This parameter can be a combination of the following flags (or access permissions):
ACCESS4_READ | 0x00000001 | Read data from a file or read a directory. |
ACCESS4_LOOKUP | 0x00000002 | Look up a name in a directory (no meaning for non-directory objects). |
ACCESS4_MODIFY | 0x00000004 | Rewrite existing file data or modify existing directory entries. |
ACCESS4_EXTEND | 0x00000008 | Write new data or add directory entries. |
ACCESS4_DELETE | 0x00000010 | Delete an existing directory entry. |
ACCESS4_EXECUTE | 0x00000020 | Execute a file (no meaning for a directory). |
To handle this event appropriately, the application should set the Supported parameter to the access rights which the server can verify reliably. The application should then set the Access parameter to the access rights available to this client for the specified object.
Note that the Supported parameter should only contain as many values as were originally present in the provided Access parameter. For example, if the client is only checking the ACCESS4_READ permission, the application should only set the ACCESS4_READ permission in Supported, assuming it can reliably verify this permission.
Assuming Result is set to NFS4_OK, this operation only serves as an advisement to the client. The return of a certain access permission does not imply such access for this object will be permitted in the future, as the application can revoke or change access rights at any time.
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_chmod Event (NFS Struct)
This event fires when a client attempts to modify the permission bits of an object.
Syntax
// NFSChmodEventArgs carries the NFS Chmod event's parameters. pub struct NFSChmodEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn file_context(&self) -> usize fn mode(&self) -> i32 fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSChmodEvent defines the signature of the NFS Chmod event's handler function. pub trait NFSChmodEvent { fn on_chmod(&self, sender : NFS, e : &mut NFSChmodEventArgs); } impl <'a> NFS<'a> { pub fn on_chmod(&self) -> &'a dyn NFSChmodEvent; pub fn set_on_chmod(&mut self, value : &'a dyn NFSChmodEvent); ... }
Remarks
This event fires when a client attempts to modify the permission bits of an object, identified by the FileContext and/or Path parameters.
The ConnectionId parameter indicates the client attempting to set this attribute.
The Mode parameter specifies the new permission bits the client wishes to set for this object. The client may specify a combination of the following permission bits, as defined in the UNIX standard sys/stat.h header:
S_ISUID | 0x800 | Set user ID on execution. |
S_ISGID | 0x400 | Set group ID on execution. |
S_ISVTX | 0x200 | Save text even after use. |
S_IRUSR | 0x100 | Read permission, owner. |
S_IWUSR | 0x080 | Write permission, owner. |
S_IXUSR | 0x040 | Execute permission, owner. |
S_IRGRP | 0x020 | Read permission, group. |
S_IWGRP | 0x010 | Write permission, group. |
S_IXGRP | 0x008 | Execute permission, group. |
S_IROTH | 0x004 | Read permission, others. |
S_IWOTH | 0x002 | Write permission, others. |
S_IXOTH | 0x001 | Execute permission, others. |
Example: Modifying the permission bits and preserving stored file type
nfs.OnChmod += (o, e) => {
string path = "C:\\NFSRootDir" + e.Path;
int currentFileMode = GetFileMode(path); // Arbitrary function to retrieve stored mode
int currentType = currentFileMode & 0xF000; // 0xF000 == S_IFMT
// Client cannot change type bits, only permission bits
SetFileMode(e.Path, currentType | e.Mode);
};
The Result parameter will always be 0 (NFS4_OK) when this event fires.
If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error.
Possible Result codes and their descriptions are listed in the NFS Result Codes section.
Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_chown Event (NFS Struct)
This event fires when a client attempts to modify an object's owner attribute, group attribute, or both.
Syntax
// NFSChownEventArgs carries the NFS Chown event's parameters. pub struct NFSChownEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn file_context(&self) -> usize fn user(&self) -> &String fn group(&self) -> &String fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSChownEvent defines the signature of the NFS Chown event's handler function. pub trait NFSChownEvent { fn on_chown(&self, sender : NFS, e : &mut NFSChownEventArgs); } impl <'a> NFS<'a> { pub fn on_chown(&self) -> &'a dyn NFSChownEvent; pub fn set_on_chown(&mut self, value : &'a dyn NFSChownEvent); ... }
Remarks
This event fires when a client attempts to modify an object's owner attribute, group attribute, or both. The object is identified by the FileContext and/or Path parameters.
The ConnectionId parameter indicates the client attempting to set these attributes.
The User parameter indicates the desired value the client wishes to set the NFSv4.0 owner attribute to. The owner attribute specifies the owner of a file.
The Group parameter indicates the desired value the client wishes to set the NFSv4.0 owner_group attribute to. The owner_group attribute specifies the group ownership of a file.
Note that if the User or Group parameter is equal to an empty string, the client does not wish to modify the associated attribute and the parameter should be ignored.
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_close Event (NFS Struct)
This event fires when a client requests the closure of a previously opened file.
Syntax
// NFSCloseEventArgs carries the NFS Close event's parameters. pub struct NFSCloseEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn file_context(&self) -> usize fn set_file_context(&self, value : usize) fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSCloseEvent defines the signature of the NFS Close event's handler function. pub trait NFSCloseEvent { fn on_close(&self, sender : NFS, e : &mut NFSCloseEventArgs); } impl <'a> NFS<'a> { pub fn on_close(&self) -> &'a dyn NFSCloseEvent; pub fn set_on_close(&mut self, value : &'a dyn NFSCloseEvent); ... }
Remarks
This event fires when a client requests the closure of a previously opened file, identified by the Path and/or FileContext parameters.
The ConnectionId parameter indicates the client performing this operation.
To handle this event properly, the application should release the share reservations for this specific file created during a previous on_open operation. This operation is only applicable to the on_open operation performed by a given client for the specified file and does not apply to any on_open operations performed by other clients for the same file.
Note that clients should release any byte-range locks currently held for this file before this operation. However, applications should not assume this. In the event any relevant locks exist, the application may release all locks and return NFS4_OK. Alternatively, if the application chooses not to release the locks, it must respond with NFS4ERR_LOCKS_HELD, offloading the task to the client.
Assuming the operation was successful, applications should free the associated FileContext and set this parameter to IntPtr.Zero, if applicable.
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_commit Event (NFS Struct)
This event fires when a client attempts to flush any uncommitted file data from a previous Write operation to stable storage.
Syntax
// NFSCommitEventArgs carries the NFS Commit event's parameters. pub struct NFSCommitEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn file_context(&self) -> usize fn offset(&self) -> i64 fn count(&self) -> i32 fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSCommitEvent defines the signature of the NFS Commit event's handler function. pub trait NFSCommitEvent { fn on_commit(&self, sender : NFS, e : &mut NFSCommitEventArgs); } impl <'a> NFS<'a> { pub fn on_commit(&self) -> &'a dyn NFSCommitEvent; pub fn set_on_commit(&mut self, value : &'a dyn NFSCommitEvent); ... }
Remarks
This event fires when a client attempts to flush any uncommitted file data from a previous on_write operation to stable storage. The file is identified by the FileContext and/or Path parameters.
The ConnectionId parameter indicates the client performing this operation.
The data to flush to stable storage is the data that was cached in a previous on_write operation. This operation will only occur when the previous on_write operation returns a commitment level of UNSTABLE4 or DATA_SYNC4 to the client. If FILE_SYNC4 was returned previously and all data was written to stable storage, this event will not fire.
Note that the application may cache multiple on_write operations. If the Offset and Count parameters are equal to zero, this indicates that the application should flush all cached data, buffered with each previous on_write operation, for this file to stable storage.
It is also possible that Offset and Count are non-zero. In this case, the application should flush only the specified cached data, buffered with a specific on_write operation.
If the data has already been written to stable storage, and no cached data exists for this value (depending on Offset and Count), the operation should succeed.
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_connected Event (NFS Struct)
This event fires immediately after a connection completes (or fails).
Syntax
// NFSConnectedEventArgs carries the NFS Connected event's parameters. pub struct NFSConnectedEventArgs { fn connection_id(&self) -> i32 fn status_code(&self) -> i32 fn description(&self) -> &String } // NFSConnectedEvent defines the signature of the NFS Connected event's handler function. pub trait NFSConnectedEvent { fn on_connected(&self, sender : NFS, e : &mut NFSConnectedEventArgs); } impl <'a> NFS<'a> { pub fn on_connected(&self) -> &'a dyn NFSConnectedEvent; pub fn set_on_connected(&mut self, value : &'a dyn NFSConnectedEvent); ... }
Remarks
If the connection is made normally, StatusCode is 0, and Description is "OK".
If the connection fails, StatusCode has the error code returned by the system. Description contains a description of this code. The value of StatusCode is equal to the value of the system error.
Please refer to the Error Codes section for more information.
on_connection_request Event (NFS Struct)
This event fires when a connection request comes from a remote host.
Syntax
// NFSConnectionRequestEventArgs carries the NFS ConnectionRequest event's parameters. pub struct NFSConnectionRequestEventArgs { fn address(&self) -> &String fn port(&self) -> i32 fn accept(&self) -> bool fn set_accept(&self, value : bool) } // NFSConnectionRequestEvent defines the signature of the NFS ConnectionRequest event's handler function. pub trait NFSConnectionRequestEvent { fn on_connection_request(&self, sender : NFS, e : &mut NFSConnectionRequestEventArgs); } impl <'a> NFS<'a> { pub fn on_connection_request(&self) -> &'a dyn NFSConnectionRequestEvent; pub fn set_on_connection_request(&mut self, value : &'a dyn NFSConnectionRequestEvent); ... }
Remarks
This event indicates an incoming connection. The connection is accepted by default. Address and Port will contain information about the remote host requesting the inbound connection. If you want to refuse it, you can set the Accept parameter to False.
on_create_link Event (NFS Struct)
This event fires when a client attempts to create a symbolic link or hard link.
Syntax
// NFSCreateLinkEventArgs carries the NFS CreateLink event's parameters. pub struct NFSCreateLinkEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn name(&self) -> &String fn link_target(&self) -> &[u8] fn link_type(&self) -> i32 fn file_context(&self) -> usize fn set_file_context(&self, value : usize) fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSCreateLinkEvent defines the signature of the NFS CreateLink event's handler function. pub trait NFSCreateLinkEvent { fn on_create_link(&self, sender : NFS, e : &mut NFSCreateLinkEventArgs); } impl <'a> NFS<'a> { pub fn on_create_link(&self) -> &'a dyn NFSCreateLinkEvent; pub fn set_on_create_link(&mut self, value : &'a dyn NFSCreateLinkEvent); ... }
Remarks
This event fires when a client attempts to create a symbolic link or hard link.
The Path parameter identifies the location and name of this link. The Name parameter identifies only the name of this link. If an object exists with the same path and name, the operation should fail and Result should be set to NFS4ERR_EXIST.
The ConnectionId parameter indicates the client attempting to create the link.
The LinkType parameter indicates the type of link the client is attempting to create. The following values are applicable:
0 | Indicates the client is attempting to create a symbolic link. |
1 | Indicates the client is attempting to create a hard link. |
Please see below for additional details on how the application should handle this event for each type of link.
Symbolic Links
If LinkType is equal to 0, the client is attempting to create a symbolic link. An object should be created at the specified Path that, in future operations, can be identified as a symbolic link and can be used to return the content of the symbolic link.
The LinkTarget parameter provides the content of the symbolic link, as sent by the client. Note that the content should be treated as opaque by the server, i.e., the server does not need to interpret the data. It is possible that a client will provide a pathname that is not meaningful to the application. Therefore, it is the client's responsibility to interpret the content of the symbolic link. Although UTF-8 encoding is often used, it is not a requirement. In that regard, the content of a symbolic link is like the content of a regular file.
In many cases, the LinkTarget will be a UTF-8 string, though as mentioned, this is not a requirement. Applications should ensure that the exact contents of the LinkTarget are returned to the client in on_read_link.
Hard Links
If LinkType is equal to 1, the client is attempting to create a hard link.
In the case of a hard link, the LinkTarget indicates an existing file that the new object, identified by Path, will point to. Unlike with symbolic links, the LinkTarget parameter is guaranteed to be a UTF-8 string, and will contain the exact file path the hard link should target.
To handle this appropriately, the application should create an object at the specified Path that points to the data associated with the LinkTarget. Changes to any property of the LinkTarget are reflected in all linked files.
Depending on the underlying filesystem, "." and ".." are illegal values for a new object name. In this case, Result should be set to NFS4ERR_BADNAME and the operation should fail.
Additionally, if the new object name has a length of 0, or does not obey the UTF-8 definition, Result should be set to NFS4ERR_INVAL.
Please see below for an example handling both symbolic and hard links.
nfs.OnCreateLink += (o, e) => {
string linkname = GetRealPath(root, e.Path);
if (File.Exists(linkname)) {
e.Result = NFS4ERR_EXIST;
return;
}
// Symbolic link
if (e.LinkType == 0) {
try {
// CreateSymbolicLink function from kernel32.dll
CreateSymbolicLink(linkname, e.LinkTarget, 0);
} catch (Exception ex) {
e.Result = NFS4ERR_IO;
}
return;
}
string target = GetRealPath(root, e.LinkTarget);
// Hard link
if (e.LinkType == 1) {
try {
// CreateHardLink function from kernel32.dll
CreateHardLink(linkname, target, IntPtr.Zero);
} catch (Exception ex) {
e.Result = NFS4ERR_IO;
}
}
};
on_disconnected Event (NFS Struct)
This event fires when a connection is closed.
Syntax
// NFSDisconnectedEventArgs carries the NFS Disconnected event's parameters. pub struct NFSDisconnectedEventArgs { fn connection_id(&self) -> i32 fn status_code(&self) -> i32 fn description(&self) -> &String } // NFSDisconnectedEvent defines the signature of the NFS Disconnected event's handler function. pub trait NFSDisconnectedEvent { fn on_disconnected(&self, sender : NFS, e : &mut NFSDisconnectedEventArgs); } impl <'a> NFS<'a> { pub fn on_disconnected(&self) -> &'a dyn NFSDisconnectedEvent; pub fn set_on_disconnected(&mut self, value : &'a dyn NFSDisconnectedEvent); ... }
Remarks
If the connection is broken normally, StatusCode is 0, and Description is "OK".
If the connection is broken for any other reason, StatusCode has the error code returned by the system. Description contains a description of this code. The value of StatusCode is equal to the value of the system error.
Please refer to the Error Codes section for more information.
on_error Event (NFS Struct)
This event fires information about errors during data delivery.
Syntax
// NFSErrorEventArgs carries the NFS Error event's parameters. pub struct NFSErrorEventArgs { fn connection_id(&self) -> i32 fn error_code(&self) -> i32 fn description(&self) -> &String } // NFSErrorEvent defines the signature of the NFS Error event's handler function. pub trait NFSErrorEvent { fn on_error(&self, sender : NFS, e : &mut NFSErrorEventArgs); } impl <'a> NFS<'a> { pub fn on_error(&self) -> &'a dyn NFSErrorEvent; pub fn set_on_error(&mut self, value : &'a dyn NFSErrorEvent); ... }
Remarks
The on_error event is fired in case of exceptional conditions during message processing. Normally, the struct .
ErrorCode contains an error code and Description contains a textual description of the error. For a list of valid error codes and their descriptions, please refer to the Error Codes section.
ConnectionId indicates the connection for which the error is applicable.
on_get_attr Event (NFS Struct)
This event fires when a client requests attributes for an object (such as the owner, group, or mode attributes).
Syntax
// NFSGetAttrEventArgs carries the NFS GetAttr event's parameters. pub struct NFSGetAttrEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn file_context(&self) -> usize fn file_id(&self) -> i64 fn set_file_id(&self, value : i64) fn mode(&self) -> i32 fn set_mode(&self, value : i32) fn user(&self) -> &String fn set_user(&self, value : String) fn set_user_ref(&self, value : &String) fn group(&self) -> &String fn set_group(&self, value : String) fn set_group_ref(&self, value : &String) fn link_count(&self) -> i32 fn set_link_count(&self, value : i32) fn size(&self) -> i64 fn set_size(&self, value : i64) fn a_time(&self) -> &chrono::DateTime<Utc> fn set_a_time(&self, value : chrono::DateTime<Utc>) fn set_a_time_ref(&self, value : &chrono::DateTime<Utc>) fn m_time(&self) -> &chrono::DateTime<Utc> fn set_m_time(&self, value : chrono::DateTime<Utc>) fn set_m_time_ref(&self, value : &chrono::DateTime<Utc>) fn c_time(&self) -> &chrono::DateTime<Utc> fn set_c_time(&self, value : chrono::DateTime<Utc>) fn set_c_time_ref(&self, value : &chrono::DateTime<Utc>) fn nfs_handle(&self) -> &String fn set_nfs_handle(&self, value : String) fn set_nfs_handle_ref(&self, value : &String) fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSGetAttrEvent defines the signature of the NFS GetAttr event's handler function. pub trait NFSGetAttrEvent { fn on_get_attr(&self, sender : NFS, e : &mut NFSGetAttrEventArgs); } impl <'a> NFS<'a> { pub fn on_get_attr(&self) -> &'a dyn NFSGetAttrEvent; pub fn set_on_get_attr(&mut self, value : &'a dyn NFSGetAttrEvent); ... }
Remarks
This event fires when a client requests attributes for an object (such as the owner, group, or mode attributes), identified by the FileContext, NFSHandle, and/or Path parameters.
The NFSHandle parameter is the hex-encoded value of the internal file handle representation. By default, this parameter is calculated as the PPMD-compressed value of the Path. Assuming this format is used, the struct will be able to decompress this handle and obtain the Path, if necessary for future operations.
This functionality is particularly useful in the event the server restarts. Assuming a client maintains their mount, the client may continue to utilize their cached file handles. Because the server was restarted, the struct would typically be unable to recognize the received handle, and report the handle as stale. However, assuming the defualt format is used, the struct will be able to decompress the file handle, retrieve the Path, and check the object's existence by firing on_lookup.
Note that at the protocol-level, file handles must be no more than 128 bytes (NFS4_FHSIZE). It is possible that the PPMD-compressed value of the Path is greater than 128 bytes, though this is unlikely, as the Path would need to be very large. In this case, the NFSHandle will instead be calculated as the SHA256 hash of the Path, which may result in stale file handles in the event of a server restart.
The ConnectionId parameter indicates the client requesting information about the filesystem object.
To handle this event properly, applications should set the below parameters to relevant attributes of the filesystem object.
The FileId parameter assigns a unique identifier to the file within the filesystem. If specified as 0 (default), the struct generates an Id based on the checksum value of the Path. Therefore, if this parameter is set to 0 or remains unmodified, the generated Id is guaranteed to be unique for a specific Path, and persist across server restarts assuming equivalent paths.
The Mode parameter is used to specify the mode of the object, indicating its associated file type and permission bits. This parameter should be set to a combination of the following flags, as defined in the UNIX standard sys/stat.h header:
File Type
S_IFLNK | 0xA000 | Identifies a symbolic link. |
S_IFREG | 0x8000 | Identifies a regular file. |
S_IFDIR | 0x4000 | Identifies a directory. |
File Mode Bits
S_ISUID | 0x0800 | Set user ID on execution. |
S_ISGID | 0x0400 | Set group ID on execution. |
S_ISVTX | 0x0200 | Save text even after use. |
S_IRUSR | 0x0100 | Read permission, owner. |
S_IWUSR | 0x0080 | Write permission, owner. |
S_IXUSR | 0x0040 | Execute permission, owner. |
S_IRGRP | 0x0020 | Read permission, group. |
S_IWGRP | 0x0010 | Write permission, group. |
S_IXGRP | 0x0008 | Execute permission, group. |
S_IROTH | 0x0004 | Read permission, others. |
S_IWOTH | 0x0002 | Write permission, others. |
S_IXOTH | 0x0001 | Execute permission, others. |
The User parameter is used to set the NFSv4.0 owner attribute, which is a string name of the owner of this filesystem object. Mode flags S_IRUSR, S_IWUSR, and S_IXUSR apply to the principal identified via the User parameter.
The Group parameter is used to set the NFSv4.0 owner_group attribute, which is a string name of the group ownership of this filesystem object. Mode flags S_IRGRP, S_IWGRP, and S_IXGRP apply to the principals identified via the Group parameter.
Mode flags S_IROTH, S_IWOTH, and S_IXOTH apply to any principal that does not match the User and does not have a group matching the Group.
The LinkCount parameter is used to set the NFSv4.0 numlinks attribute, which represents the number of hard links associated with this filesystem object.
The Size parameter is used to set the NFSv4.0 size attribute, which represents the size of the filesystem object in bytes.
The ATime parameter is used to set the NFSv4.0 time_access attribute, which represents the time of last access to the object by a on_read operation sent to the server.
The MTime parameter is used to set the NFSv4.0 time_modify attribute, which represents the time of the last modification to the object.
The CTime parameter is used to set the NFSv4.0 time_create attribute, which represents the time the object was created (unrelated to the UNIX file attribute "ctime").
Example: Retrieving file or directory attributes
nfs.OnGetAttr += (o, e) => {
string path = "C:\\NFSRootDir" + e.Path;
if (!File.Exists(path) && !Directory.Exists(path)) {
e.Result = NFS4ERR_NOENT;
return;
}
e.User = OWNER;
e.Group = OWNER_GROUP;
e.LinkCount = 1;
if (Directory.Exists(path)) {
int fileMode = S_IFDIR | S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; // Indicates file type (S_IFDIR) and permissions (755)
e.Mode = fileMode;
e.Size = 4096;
e.ATime = Directory.GetLastAccessTime(real);
e.CTime = Directory.GetCreationTime(real);
e.MTime = Directory.GetLastWriteTime(real);
} else {
int fileMode = S_IFREG | S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH; // Indicates file type (S_IFREG) and permissions (644)
e.Mode = fileMode;
e.Size = new FileInfo(path).Length;
e.ATime = File.GetLastAccessTime(path);
e.MTime = File.GetLastWriteTime(path);
e.CTime = File.GetCreationTime(path);
}
};
The Result parameter will always be 0 (NFS4_OK) when this event fires.
If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error.
Possible Result codes and their descriptions are listed in the NFS Result Codes section.
Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_lock Event (NFS Struct)
This event fires when a client attempts to create or test a byte-range lock for a file.
Syntax
// NFSLockEventArgs carries the NFS Lock event's parameters. pub struct NFSLockEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn file_context(&self) -> usize fn lock_type(&self) -> i32 fn lock_offset(&self) -> i64 fn set_lock_offset(&self, value : i64) fn lock_len(&self) -> i64 fn set_lock_len(&self, value : i64) fn test(&self) -> bool fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSLockEvent defines the signature of the NFS Lock event's handler function. pub trait NFSLockEvent { fn on_lock(&self, sender : NFS, e : &mut NFSLockEventArgs); } impl <'a> NFS<'a> { pub fn on_lock(&self) -> &'a dyn NFSLockEvent; pub fn set_on_lock(&mut self, value : &'a dyn NFSLockEvent); ... }
Remarks
This event fires when a client attempts to create or test a byte-range lock for a file, indicated by the FileContext or Path parameters.
The ConnectionId parameter indicates the client requesting the lock.
The LockOffset parameter specifies the position (or byte) within the file where the lock should begin. The LockLen parameter specifies the number of bytes that should be locked after the specified offset, indicating a range of bytes to lock. If the LockLen parameter is 0, the application should return NFS4ERR_INVAL. If the LockLen parameter is -1, this indicates the client wishes to lock all bytes from the specified LockOffset to the end of the file.
The LockType parameter specifies the type of lock to be created or tested on the file (read or write, blocking or non-blocking). This parameter may be equal to one of the following values:
READ_LT | 1 | Indicates a non-blocking read lock. |
WRITE_LT | 2 | Indicates a non-blocking write lock. |
READW_LT | 3 | Indicates a blocking read lock. |
WRITEW_LT | 4 | Indicates a blocking write lock. |
Note a blocking lock type indicates the client wishes to 'wait' for the mentioned lock if a conflicting lock exists. Please see below for more information regarding blocking locks.
To handle this event properly, applications should determine whether the client wishes to create or test the lock by examining the Test parameter.
Testing a Lock
If the Test parameter is True, the client only intends to test the lock. In this case, no lock should be created. First, the application should determine whether a conflicting lock exists for this file based on the semantics of the server-exported file system. The test for a conflicting lock should exclude any locks held by the client making this request, identified by ConnectionId. If a conflicting lock exists, the application should set the LockOffset and LockLen parameters to that of the conflicting lock and return NFS4ERR_DENIED.
If the application chooses not to exclude these locks, and the client making this request owns the conflicting lock, NFS4ERR_LOCK_RANGE may be returned if any overlap exists between the conflicting lock and the range specified by LockOffset and LockLen.
Additionally, when Test is True, the lock types READ_LT and READW_LT should be interpreted in the same way, without regard to blocking or non-blocking behavior. This is also true for READW_LT and WRITEW_LT.
If no conflicting lock exists, no lock should be created and the operation should succeed.
Creating a Lock
If the Test parameter is False, the client wishes to create the lock. First, the application should determine whether a conflicting lock exists for this file based on the semantics of the server-exported file system. If the client making this request is the owner of the conflicting lock, NFS4ERR_LOCK_RANGE may be returned under the same conditions as described when testing a lock. Otherwise, the application should set the LockOffset and LockLen parameters to that of the conflicting lock and return NFS4ERR_DENIED. If the conflicting lock's offset and length cannot be determined by the application, the corresponding parameters should remain unchanged and NFS4ERR_DENIED should be returned.
If no conflicting lock exists, the application should create the lock and the operation should succeed.
Upgrading and Downgrading Locks
If a client has an existing write lock, they may request an atomic downgrade of the lock to a read lock. This is done by sending a LOCK request with the same LockOffset and LockLen, but specifying the LockType as READ_LT.
If a client has an existing read lock, they may request an atomic upgrade of the lock to a write lock. This is done by sending a LOCK request with the same LockOffset and LockLen, but specifying the LockType as WRITE_LT or WRITEW_LT. If a conflicting lock exists, the application should set the LockOffset and LockLen parameters to that of the conflicting lock and return NFS4ERR_DENIED. Additionally, if the LockType is specified as WRITEW_LT, the application should return NFS4ERR_DEADLOCK if a deadlock condition is detected.
In either case, if the application does not support upgrading or downgrading a lock, NFS4ERR_LOCK_NOTSUPP should be returned.
Blocking Locks
To ensure fairness and to support blocking locks, applications may maintain an ordered list of clients waiting to obtain a conflicting lock. Note this is only applicable to blocking locks. If implemented, it's important to note that clients will poll for the lock, following up with the identical lock request until accepted. Once a conflicting lock is released, the application may wait a fixed time (lease period) to grant the lock to the first waiting client. Since clients will poll for previously denied locks, this period ensures the client still wants the lock. If the application does not receive the re-request within this period, the application should assume the client no longer wants the lock, and the client should be removed from the ordered list. This process repeats with the next waiting client, and so on.
If implementing an ordered list, it may be the case that a waiting client sends the same lock request with a non-blocking lock type specified. If this occurs and the non-blocking request is denied, it can be assumed the client will no longer poll for this lock. The client may then be removed from the ordered list.
If the application determines a file locking deadlock condition would exist after a specific lock request, Result should be set to NFS4ERR_DEADLOCK.
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_log Event (NFS Struct)
This event fires once for each log message.
Syntax
// NFSLogEventArgs carries the NFS Log event's parameters. pub struct NFSLogEventArgs { fn connection_id(&self) -> i32 fn log_level(&self) -> i32 fn message(&self) -> &String fn log_type(&self) -> &String } // NFSLogEvent defines the signature of the NFS Log event's handler function. pub trait NFSLogEvent { fn on_log(&self, sender : NFS, e : &mut NFSLogEventArgs); } impl <'a> NFS<'a> { pub fn on_log(&self) -> &'a dyn NFSLogEvent; pub fn set_on_log(&mut self, value : &'a dyn NFSLogEvent); ... }
Remarks
This event fires once for each log message generated by the struct. The verbosity is controlled by the LogLevel configuration.
LogLevel indicates the detail level of the message. Possible values are:
0 (None) | No messages are logged. |
1 (Info - Default) | Informational events are logged. |
2 (Verbose) | Detailed data is logged. |
3 (Debug) | Debug data including all sent and received NFS operations are logged. |
Message is the log message.
LogType identifies the type of log entry. Possible values are as follows:
- NFS
ConnectionId identifies the connection to which the log message applies.
on_lookup Event (NFS Struct)
This event fires when the struct needs to determine the existence of an object in the current directory.
Syntax
// NFSLookupEventArgs carries the NFS Lookup event's parameters. pub struct NFSLookupEventArgs { fn connection_id(&self) -> i32 fn name(&self) -> &String fn path(&self) -> &String fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSLookupEvent defines the signature of the NFS Lookup event's handler function. pub trait NFSLookupEvent { fn on_lookup(&self, sender : NFS, e : &mut NFSLookupEventArgs); } impl <'a> NFS<'a> { pub fn on_lookup(&self) -> &'a dyn NFSLookupEvent; pub fn set_on_lookup(&mut self, value : &'a dyn NFSLookupEvent); ... }
Remarks
This event fires when the struct needs to determine the existence of an object in the current directory. The Path parameter identifies the location and name of this object. The Name parameter identifies only the name of this object.
The ConnectionId parameter indicates the client this information is required for.
The existence of a filesystem object can be requested in either of the following cases:
- When a client is attempting to open and/or create a regular file. In this case, on_open will fire shortly after this event returns.
- When a client is performing a LOOKUP operation on a filesystem object.
- When a client sends an unknown file handle value. In this case, the struct will attempt to decompress the handle to obtain the relevant Path, and will check the existence of the object. See on_get_attr for additional details.
To handle this event properly, the application should check whether this object exists within the specified directory. If the object does not exist, the Result parameter should be set to NFS4ERR_NOENT. Otherwise, NFS4_OK indicates the object exists.
Example: Check if object exists
nfs.OnLookup += (o, e) => {
string path = e.Path; // Varies depending on underlying filesystem implementation
if (File.Exists(path)) {
return;
}
if (Directory.Exists(path)) {
return;
}
// Object does not exist
e.Result = NFS4ERR_NOENT;
};
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_mk_dir Event (NFS Struct)
This event fires when a client attempts to create a new directory.
Syntax
// NFSMkDirEventArgs carries the NFS MkDir event's parameters. pub struct NFSMkDirEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSMkDirEvent defines the signature of the NFS MkDir event's handler function. pub trait NFSMkDirEvent { fn on_mk_dir(&self, sender : NFS, e : &mut NFSMkDirEventArgs); } impl <'a> NFS<'a> { pub fn on_mk_dir(&self) -> &'a dyn NFSMkDirEvent; pub fn set_on_mk_dir(&mut self, value : &'a dyn NFSMkDirEvent); ... }
Remarks
This event fires when a client attempts to create a new directory, identified by the Path parameter.
The ConnectionId parameter indicates the client attempting to create a directory.
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_open Event (NFS Struct)
This event fires when a client attempts to create or open a file.
Syntax
// NFSOpenEventArgs carries the NFS Open event's parameters. pub struct NFSOpenEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn share_access(&self) -> i32 fn share_deny(&self) -> i32 fn create_mode(&self) -> i32 fn open_type(&self) -> i32 fn file_context(&self) -> usize fn set_file_context(&self, value : usize) fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSOpenEvent defines the signature of the NFS Open event's handler function. pub trait NFSOpenEvent { fn on_open(&self, sender : NFS, e : &mut NFSOpenEventArgs); } impl <'a> NFS<'a> { pub fn on_open(&self) -> &'a dyn NFSOpenEvent; pub fn set_on_open(&mut self, value : &'a dyn NFSOpenEvent); ... }
Remarks
This event fires when a client attempts to create or open a file. This event is not applicable to directories (please see on_mk_dir, on_read_dir, and on_rm_dir for further details).
The client where the request originates from is specified via ConnectionId.
The Path parameter contains the path to the file to open, along with the file name. Unless the file is already open, the FileContext parameter will initially be IntPtr.Zero. The application may use the FileContext parameter to store a file handle or other information related to the open file.
To appropriately handle this event, the application should perform any actions needed to create or open the requested file as indicated by the OpenType and CreateMode parameters, with the desired share reservations as specified by the ShareAccess and ShareDeny parameters. Please see the parameter descriptions below for additional information.
The OpenType parameter specifies how the client would like to open the file. This parameter may be equal to one of the following values:
OPEN4_NOCREATE | 0 | Indicates the file should be opened if it exists, but if the file does not exist, the file should not be created. In this case, the operation should fail with the error NFS4ERR_NOENT. |
OPEN4_CREATE | 1 | Indicates the file should be created using the method specified by the CreateMode parameter. |
The CreateMode parameter indicates the file creation method specified by the client. This parameter is only relevant when OpenType is equal to rsOPEN4CREATE;, and may be equal to one of the following values:
UNCHECKED4 | 0 | Indicates the file should be created without checking for the existence of a duplicate file in the associated directory. |
GUARDED4 | 1 | Indicates the file should be created, but the server should check for the presence of a duplicate file before doing so. If the file exists, the open operation should fail with the error NFS4ERR_EXIST. |
EXCLUSIVE4 | 2 | Indicates the file should be exclusively created, or created with the condition that no other client should be concurrently creating or opening a file with the same name. If a file with the same name does exist, the operation should fail with the error NFS4ERR_EXIST. |
Note GUARDED4 only indicates that if the file already exists, the OPEN operation will fail. It does not imply exclusive creation, which would ensure only one client can create or open a file with a specific name at once. If the mentioned exclusive creation semantics cannot be supported by the file system, the OPEN operation should fail and NFS4ERR_NOTSUPP should be returned.
The ShareAccess parameter specifies the client's desired share access utilized when opening a file. This value may be equal to one of the following access flags:
OPEN4_SHARE_ACCESS_READ | 0x00000001 | Indicates the client desires read-only access to the file. |
OPEN4_SHARE_ACCESS_WRITE | 0x00000002 | Indicates the client desires write-only access to the file. |
OPEN4_SHARE_ACCESS_BOTH | 0x00000003 | Indicates the client desires both read and write access to the file. |
In the case that there is an existing share reservation that conflicts with the request, NFS4ERR_SHARE_DENIED should be returned. If the underlying file system is only accessible in a read-only mode, and OPEN4_SHARE_ACCESS_WRITE or OPEN4_SHARE_ACCESS_BOTH are requested, NFS4ERR_ROFS should be returned to indicate a read-only file system.
The ShareDeny parameter defines the client's desired restrictions on share access for other clients when this file is open. This value may be equal to one of the following deny flags:
OPEN4_SHARE_DENY_NONE | 0x00000000 | Indicates no denial of share access to other clients while the file is open. |
OPEN4_SHARE_DENY_READ | 0x00000001 | Indicates denial of read access to other clients while the file is open. |
OPEN4_SHARE_DENY_WRITE | 0x00000002 | Indicates denial of write access to other clients while the file is open. |
OPEN4_SHARE_DENY_BOTH | 0x00000003 | Indicates denial of both read and write access to other clients while the file is open. |
Note that if OPEN4_SHARE_DENY_WRITE or OPEN4_SHARE_DENY_BOTH are specified and on_unlink is fired while the object is still open, the application should not delete the file. If OPEN4_SHARE_DENY_NONE or OPEN4_SHARE_DENY_READ are specified and on_unlink is fired while the object is still open, the application should delete the file.
Example: Opening or creating a file with share reservations
nfs.OnOpen += (o, e) => {
string path = "C:\\NFSRootDir" + e.Path;
FileStream fs = null;
FileAccess shareAccess = (FileAccess)e.ShareAccess; // ShareAccess correlates directly with FileAccess
FileShare shareDeny = 0; // ShareDeny does not correlate directly with FileShare, so let's translate ShareDeny to FileShare
switch (e.ShareDeny)
{
case OPEN4_SHARE_DENY_BOTH:
{
shareDeny = FileShare.None; // Allow no access by other clients
break;
}
case OPEN4_SHARE_DENY_WRITE:
{
shareDeny = FileShare.Read; // Allow read access by other clients
break;
}
case OPEN4_SHARE_DENY_READ:
{
shareDeny = FileShare.Write | FileShare.Delete; // Allow write access and deletion by other clients
break;
}
default:
{
// Default OPEN4_SHARE_DENY_NONE
shareDeny = FileShare.ReadWrite | FileShare.Delete; // Allow read and write access and deletion by other clients
break;
}
}
FileMode createMode = FileMode.Open;
if (e.OpenType == OPEN4_NOCREATE) {
// The client wishes to open the file without creating it. If it doesn't exist, return NFS4ERR_NOENT, otherwise open with FileMode.Open.
if (!File.Exists(e.Path)) {
e.Result = NFS4ERR_NOENT;
return;
}
} else {
// The client wishes to create a file, with the specified CreateMode
switch (e.CreateMode)
{
case UNCHECKED4:
{
createMode = FileMode.Create; // If a duplicate exists, no error is returned
break;
}
default:
{
// Implies e.CreateMode == GUARDED4 || EXCLUSIVE4. If a duplicate exists, NFS4ERR_EXIST is returned
if (File.Exists(path)) {
e.Result = NFS4ERR_EXIST;
return;
}
// Otherwise, proceed with creating the file.
createMode = FileMode.CreateNew;
break;
}
}
}
fs = File.Open(path, createMode, shareAccess, shareDeny);
e.FileContext = (IntPtr)GCHandle.Alloc(fs);
};
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_read Event (NFS Struct)
This event fires when a client attempts to read any part of a file.
Syntax
// NFSReadEventArgs carries the NFS Read event's parameters. pub struct NFSReadEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn file_context(&self) -> usize fn buffer(&self) -> *mut u8 fn count(&self) -> i32 fn set_count(&self, value : i32) fn offset(&self) -> i64 fn eof(&self) -> bool fn set_eof(&self, value : bool) fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSReadEvent defines the signature of the NFS Read event's handler function. pub trait NFSReadEvent { fn on_read(&self, sender : NFS, e : &mut NFSReadEventArgs); } impl <'a> NFS<'a> { pub fn on_read(&self) -> &'a dyn NFSReadEvent; pub fn set_on_read(&mut self, value : &'a dyn NFSReadEvent); ... }
Remarks
This event fires when a client attempts to read any part of a file, identified by the FileContext and/or Path parameters. Note this operation is subject to access permissions checking performed by the application.
The ConnectionId parameter indicates the client this information is required for.
To handle this event properly, applications should read up to Count bytes of data from the specified file into the byte array provided by Buffer. Reading must begin at the specified Offset in the file, and applications must not copy more than Count bytes into the buffer. Note the server may read less data than requested by the client, though this should only be done under particular circumstances, and will ultimately result in the client sending another read operation (unless EOF was reached) to finish reading the file data.
After the appropriate amount of data is read, the application must set the Count parameter to the number of bytes written to the buffer. The application should also update the last accessed time of the file upon a successful read.
If the EOF is reached (e.g., the offset and count are equal to or greater than the size of the file), the Eof parameter should be set to True.
If Count is specified by the client as 0, this value should remain unchanged and the operation should succeed subject to permissions checking. No data should be returned (Buffer should be empty), and the operation should return success.
If Offset is greater than or equal to the size of the file, Count should be set to 0, Eof should be set to True, and the operation should succeed.
If mandatory byte-range locking is in effect, and the current file has a write lock held by another client that conflicts with the data to be read, the operation should fail and Result should be set to NFS4ERR_LOCKED.
Example: Reading data from a file
nfs.OnRead += (o, e) => {
if (e.Count == 0) {
return;
}
try {
IntPtr p = e.FileContext;
GCHandle h = (GCHandle)p;
FileStream fs = h.Target as FileStream;
if (e.Offset >= fs.Length) {
e.Count = 0;
e.Eof = true;
return;
}
fs.Position = e.Offset;
int count = fs.Read(e.BufferB, 0, e.Count);
// If EOF was reached, notify the client
if (fs.Position == fs.Length) {
e.Eof = true;
} else {
e.Eof = false;
}
// Return number of bytes read
e.Count = c;
} catch (Exception ex) {
e.Result = NFS4ERR_IO;
}
};
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_read_dir Event (NFS Struct)
This event fires when a client attempts to list the contents of a directory.
Syntax
// NFSReadDirEventArgs carries the NFS ReadDir event's parameters. pub struct NFSReadDirEventArgs { fn connection_id(&self) -> i32 fn file_context(&self) -> usize fn set_file_context(&self, value : usize) fn path(&self) -> &String fn cookie(&self) -> i64 fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSReadDirEvent defines the signature of the NFS ReadDir event's handler function. pub trait NFSReadDirEvent { fn on_read_dir(&self, sender : NFS, e : &mut NFSReadDirEventArgs); } impl <'a> NFS<'a> { pub fn on_read_dir(&self) -> &'a dyn NFSReadDirEvent; pub fn set_on_read_dir(&mut self, value : &'a dyn NFSReadDirEvent); ... }
Remarks
This event fires when a client attempts to list the contents of a directory, identified by the Path parameter. Similar to on_open, the application may use the FileContext parameter to store a handle or other information related to the directory.
The FileContext parameter is initially IntPtr.Zero when a directory listing begins, as indicated by a Cookie value of 0. In this case, the application may assign this parameter for future reference, as the directory listing operation could span multiple on_read_dir events. See below for more information regarding this case. Note that if all directory entries have been listed, the FileContext should be freed and set to IntPtr.Zero before on_read_dir returns.
The ConnectionId parameter indicates the client requesting the directory information.
The Cookie parameter represents where the application should start reading entries from within the directory. A cookie value of 0 is used by the client to start reading at the beginning of the directory. Please see fill_dir and below for more details regarding non-zero cookie values.
To handle this event properly, the application must call the fill_dir method for each existing entry within the associated directory. Doing so will buffer the relevant directory entry information to be sent to the client upon the return of this event.
Note when listing a directory, the client will specify a limit on the amount of data (or number of entries) to return in a single response. To handle this, the application should analyze the returned value of each call to fill_dir within this event to ensure the limit is not exceeded. A non-zero return value indicates that the most recent call to fill_dir would have caused the application to send more data than the limit specified by the client. In this case, the event should return immediately with a Result of NFS4_OK.
Afterwards, the client will send subsequent requests to continue retrieving entries. In these requests, the Cookie parameter will be equal to the cookie value the application specified in the last successful entry provided by fill_dir. Note that the cookie value provided in fill_dir and the Cookie parameter specified by the client are only meaningful to the server. The cookie values should be interpreted and utilized as a "bookmark" of the directory entry, indicating a point for continuing the directory listing.
Note if a single directory entry is unable to be returned by the application within this operation, the event should return immediately with a Result of NFS4ERR_TOOSMALL. Please see fill_dir for further details. Additionally, please see below for a simple implementation of on_read_dir.
Example: Starting or continuing a directory listing
int baseCookie = 0x12345678;
nfs.OnReadDir += (o, e) => {
int dirOffset = 0; // Initial directory offset
// Arbitrary base cookie to start at for listing directory entries.
// On calls to FillDir, this value will be incremented, so subsequent READDIR operations can resume from a specified cookie.
long cookie = baseCookie;
// If e.Cookie == 0, we start listing from the beginning of the directory.
// Otherwise, we start listing from the offset indicated by this parameter.
if (e.Cookie != 0) {
offset = e.Cookie - baseCookie + 1;
cookie = e.Cookie + 1;
}
string path = "C:\\NFSRootDir" + e.Path;
var entries = Directory.GetFileSystemEntries(path, "*", SearchOption.TopDirectoryOnly);
// Iterate through all directory entries.
// dirOffset indicates the next entry to be listed given the client's provided Cookie.
for (int i = dirOffset; i < entries.Length; i++) {
string name = Path.GetFileName(entries[i]);
bool isDir = Directory.Exists(entries[i]);
int result = 0;
if (isDir) {
int fileMode = S_IFDIR | S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; // Indicates file type (S_IFDIR) and permissions (755)
result = nfs.FillDir(e.ConnectionId, name, cookie++, fileMode, "OWNER", "OWNER_GROUP", 1, 4096,
new DirectoryInfo(path).LastAccessTime, new DirectoryInfo(path).LastWriteTime, new DirectoryInfo(path).CreationTime);
} else {
int fileMode = S_IFREG | S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH; // Indicates file type (S_IFREG) and permissions (644).
result = nfs.FillDir(e.ConnectionId, name, cookie++, fileMode, "OWNER", "OWNER_GROUP", 1, FileInfo(path).Length,
new FileInfo(path).LastAccessTime, new FileInfo(path).LastWriteTime, new FileInfo(path).CreationTime);
}
// Return if FillDir returned non-zero value (client's entry limit has been reached)
if (result != 0) {
// No entries were returned, set Result in this case to alert client
if (i == dirOffset) {
e.Result = NFS4ERR_TOOSMALL;
}
return;
}
}
};
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_read_link Event (NFS Struct)
This event fires when a client attempts to read data associated with a symbolic link.
Syntax
// NFSReadLinkEventArgs carries the NFS ReadLink event's parameters. pub struct NFSReadLinkEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn file_context(&self) -> usize fn buffer(&self) -> *mut u8 fn count(&self) -> i32 fn set_count(&self, value : i32) fn offset(&self) -> i64 fn eof(&self) -> bool fn set_eof(&self, value : bool) fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSReadLinkEvent defines the signature of the NFS ReadLink event's handler function. pub trait NFSReadLinkEvent { fn on_read_link(&self, sender : NFS, e : &mut NFSReadLinkEventArgs); } impl <'a> NFS<'a> { pub fn on_read_link(&self) -> &'a dyn NFSReadLinkEvent; pub fn set_on_read_link(&mut self, value : &'a dyn NFSReadLinkEvent); ... }
Remarks
This event fires when a client attempts to read data associated with a symbolic link, identified by the Path or FileContext parameters.
The ConnectionId parameter indicates the client attempting to read the symbolic link.
To appropriately handle this event, the application should attempt to retrieve up to Count bytes of data associated with the symbolic link, i.e., the link's target. This data should be read into the byte array provided by the Buffer parameter starting at the specified Offset. Afterwards, Count should be set to the number of bytes read into the buffer. Additionally, if all bytes were read into the buffer, Eof should be set to True.
If Eof is set to False, this indicates to the struct that additional data associated with the symbolic link has not been read. In this case, this event will fire again, allowing the application to continue reading the data associated with the symbolic link from the indicated Offset.
Please see below for an example.
nfs.OnReadLink += (o, e) => {
try {
string real = GetRealPath(root, e.Path);
// NET 6 FileSystemInfo class contains a LinkTarget property
FileSystemInfo fileInfo = new FileInfo(real);
byte[] data = System.Text.Encoding.UTF8.GetBytes(fileInfo.LinkTarget);
int bytesToRead = data.Length - (int)e.Offset;
e.Eof = true;
if (bytesToRead > e.Count) {
bytesToRead = e.Count; // 1024 bytes, size of e.BufferB
e.Eof = false; // ReadLink will fire again to finish copying link content
}
System.Array.Copy(data, e.Offset, e.BufferB, 0, bytesToRead);
e.Count = bytesToRead;
} catch (Exception ex) {
e.Result = NFS4ERR_IO;
}
}
on_rename Event (NFS Struct)
This event fires when a client attempts to rename or move an object.
Syntax
// NFSRenameEventArgs carries the NFS Rename event's parameters. pub struct NFSRenameEventArgs { fn connection_id(&self) -> i32 fn old_path(&self) -> &String fn new_path(&self) -> &String fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSRenameEvent defines the signature of the NFS Rename event's handler function. pub trait NFSRenameEvent { fn on_rename(&self, sender : NFS, e : &mut NFSRenameEventArgs); } impl <'a> NFS<'a> { pub fn on_rename(&self) -> &'a dyn NFSRenameEvent; pub fn set_on_rename(&mut self, value : &'a dyn NFSRenameEvent); ... }
Remarks
This event fires when a client attempts to rename or move an object from OldPath to NewPath.
If OldPath and NewPath refer to the same object, the application should perform no action and return success immediately.
The ConnectionId parameter indicates the client attempting to rename the file or directory.
If an entry already exists with the name NewPath, the source object must be compatible with the target. To clarify, to be compatible, either both objects must be non-directories, or both objects must be directories. If both objects are directories, the target must be empty.
Assuming the objects are compatible, the existing target is removed before the rename (or move) occurs.
If the objects are incompatible, or if the target is a directory but not empty, the application must set Result to NFS4ERR_EXIST.
Example: Renaming a file or directory
nfs.OnRename += (o, e) => {
string oldPath = "C:\\NFSRootDir" + e.OldPath;
string newPath = "C:\\NFSRootDir" + e.NewPath;
// Check if oldPath and newPath refer to the exact same file. If so, return successfully.
if (oldPath.Equals(newPath)) {
return;
}
// Check whether oldPath is a file or directory
if (Directory.Exists(oldPath)) {
// oldPath is a directory. Check for incompatible rename operation.
if (File.Exists(newPath)) {
// Incompatible, Directory -> File
e.Result = NFS4ERR_EXIST;
return;
}
// Check if target directory exists. If so, check the number of files in this directory.
int fileCount = 0;
if (Directory.Exists(newPath)) {
fileCount = Directory.GetFiles(newPath, "*", SearchOption.TopDirectoryOnly).Length;
}
// If files exist in the target directory, return error.
if (fileCount == 0) {
Directory.Move(oldPath, newPath);
} else {
e.Result = NFS4ERR_EXIST;
}
} else {
// oldPath is a file. Check for incompatible rename operation.
if (Directory.Exists(newPath)) {
// Incompatible, File -> Directory
e.Result = NFS4ERR_EXIST;
return;
}
if (File.Exists(newPath)) {
File.Delete(newPath);
}
File.Move(oldPath, newPath);
}
};
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_rm_dir Event (NFS Struct)
This event fires when a client attempts to remove a directory.
Syntax
// NFSRmDirEventArgs carries the NFS RmDir event's parameters. pub struct NFSRmDirEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSRmDirEvent defines the signature of the NFS RmDir event's handler function. pub trait NFSRmDirEvent { fn on_rm_dir(&self, sender : NFS, e : &mut NFSRmDirEventArgs); } impl <'a> NFS<'a> { pub fn on_rm_dir(&self) -> &'a dyn NFSRmDirEvent; pub fn set_on_rm_dir(&mut self, value : &'a dyn NFSRmDirEvent); ... }
Remarks
This event fires when a client attempts to remove a directory, identified by the Path parameter.
The ConnectionId parameter indicates the client attempting to delete the directory.
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_truncate Event (NFS Struct)
This event fires when a client attempts to modify a file's size attribute.
Syntax
// NFSTruncateEventArgs carries the NFS Truncate event's parameters. pub struct NFSTruncateEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn file_context(&self) -> usize fn size(&self) -> i64 fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSTruncateEvent defines the signature of the NFS Truncate event's handler function. pub trait NFSTruncateEvent { fn on_truncate(&self, sender : NFS, e : &mut NFSTruncateEventArgs); } impl <'a> NFS<'a> { pub fn on_truncate(&self) -> &'a dyn NFSTruncateEvent; pub fn set_on_truncate(&mut self, value : &'a dyn NFSTruncateEvent); ... }
Remarks
This event fires when a client attempts to modify a file's size attribute, identified by the FileContext and/or Path parameters.
The ConnectionId parameter indicates the client attempting to truncate the file.
The Size parameter indicates the desired value the client wishes to set the NFSv4.0 size attribute to.
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_unlink Event (NFS Struct)
This event fires when a client attempts to unlink (or delete) a file.
Syntax
// NFSUnlinkEventArgs carries the NFS Unlink event's parameters. pub struct NFSUnlinkEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSUnlinkEvent defines the signature of the NFS Unlink event's handler function. pub trait NFSUnlinkEvent { fn on_unlink(&self, sender : NFS, e : &mut NFSUnlinkEventArgs); } impl <'a> NFS<'a> { pub fn on_unlink(&self) -> &'a dyn NFSUnlinkEvent; pub fn set_on_unlink(&mut self, value : &'a dyn NFSUnlinkEvent); ... }
Remarks
This event fires when a client attempts to unlink (or delete) a file, identified by the Path parameter.
The ConnectionId parameter indicates the client attempting to delete the file.
Note the file may still be open when this event fires. In this case, the application should not delete the file if the file was opened with OPEN4_SHARE_DENY_WRITE or OPEN4_SHARE_DENY_BOTH (see on_open for additional details). If the file was opened with OPEN4_SHARE_DENY_NONE or OPEN4_SHARE_DENY_READ, the application should delete the file.
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_unlock Event (NFS Struct)
This event fires when a client attempts to release a lock.
Syntax
// NFSUnlockEventArgs carries the NFS Unlock event's parameters. pub struct NFSUnlockEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn file_context(&self) -> usize fn lock_type(&self) -> i32 fn lock_offset(&self) -> i64 fn lock_len(&self) -> i64 fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSUnlockEvent defines the signature of the NFS Unlock event's handler function. pub trait NFSUnlockEvent { fn on_unlock(&self, sender : NFS, e : &mut NFSUnlockEventArgs); } impl <'a> NFS<'a> { pub fn on_unlock(&self) -> &'a dyn NFSUnlockEvent; pub fn set_on_unlock(&mut self, value : &'a dyn NFSUnlockEvent); ... }
Remarks
This event fires when a client attempts to release a lock, indicated by the FileContext and/or Path parameters.
The ConnectionId parameter indicates the client requesting to release the lock.
The LockOffset parameter specifies the position (or byte) within the file where the unlock should begin at. The LockLen parameter specifies the number of bytes that should be unlocked after the specified offset, effectively creating a range of bytes to unlock. If the LockLen parameter is 0, the application should return NFS4ERR_INVAL. If the LockLen parameter is -1, this indicates the client wishes to lock all bytes from the specified LockOffset to the end of the file.
The LockType parameter indicates the type of lock used on the file (read or write, blocking or non-blocking). Please see on_lock for possible values. This parameter should not affect the success or failure of this operation.
If the LockOffset and LockLen parameters do not correspond exactly to a lock held by the client, NFS4ERR_LOCK_RANGE may be returned.
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_u_time Event (NFS Struct)
This event fires when a client attempts to change a file's last access time, last modification time, or both.
Syntax
// NFSUTimeEventArgs carries the NFS UTime event's parameters. pub struct NFSUTimeEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn file_context(&self) -> usize fn a_time(&self) -> &chrono::DateTime<Utc> fn m_time(&self) -> &chrono::DateTime<Utc> fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSUTimeEvent defines the signature of the NFS UTime event's handler function. pub trait NFSUTimeEvent { fn on_u_time(&self, sender : NFS, e : &mut NFSUTimeEventArgs); } impl <'a> NFS<'a> { pub fn on_u_time(&self) -> &'a dyn NFSUTimeEvent; pub fn set_on_u_time(&mut self, value : &'a dyn NFSUTimeEvent); ... }
Remarks
This event fires when a client attempts to change a file's access time, modification time, or both.
The ConnectionId parameter indicates the client attempting to modify these values.
The ATime parameter indicates the desired value the client wishes to set the NFSv4.0 time_access attribute to.
The MTime parameter indicates the desired value the client wishes to set the NFSv4.0 time_modify attribute to.
Note that if the ATime or MTime parameter is equal to the smallest possible time allowed for the given parameter type, the client does not wish to modify the associated attribute and the parameter should be ignored.
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
on_write Event (NFS Struct)
This event fires when a client attempts to write data to a file.
Syntax
// NFSWriteEventArgs carries the NFS Write event's parameters. pub struct NFSWriteEventArgs { fn connection_id(&self) -> i32 fn path(&self) -> &String fn file_context(&self) -> usize fn offset(&self) -> i64 fn buffer(&self) -> &[u8] fn count(&self) -> i32 fn set_count(&self, value : i32) fn stable(&self) -> i32 fn set_stable(&self, value : i32) fn result(&self) -> i32 fn set_result(&self, value : i32) } // NFSWriteEvent defines the signature of the NFS Write event's handler function. pub trait NFSWriteEvent { fn on_write(&self, sender : NFS, e : &mut NFSWriteEventArgs); } impl <'a> NFS<'a> { pub fn on_write(&self) -> &'a dyn NFSWriteEvent; pub fn set_on_write(&mut self, value : &'a dyn NFSWriteEvent); ... }
Remarks
This event fires when a client attempts to write data to a file, identified by the FileContext and/or Path parameters. Note this operation is subject to access permissions checking performed by the application.
The ConnectionId parameter indicates the client writing to a file.
To handle this event properly, applications should write Count bytes of data from the byte array specified by Buffer to the relevant file. Writing must begin at the indicated Offset in the file. Note the server may write less data than requested by the client.
After the appropriate amount of data is written, the application must set the Count parameter to the number of bytes written to the relevant file.
If Count is specified by the client as 0, this value should remain unchanged and the operation should succeed (subject to permissions checking). In this case, the application should also ensure the modified time of the file is not changed.
The Stable parameter is specified by the client to indicate how the write operation should be performed, or how the data should be committed by the application. This parameter may be equal to one of the following values as specified by the connection:
UNSTABLE4 | 0 | Indicates the application is free to commit any part of the data written and filesystem metadata before returning any results. |
DATA_SYNC4 | 1 | Indicates the application must commit all of the data to stable storage and enough filesystem metadata to retrieve the data before returning any results. |
FILE_SYNC4 | 2 | Indicates the application must commit the data written plus all filesystem metadata to stable storage before returning any results. |
The application must also specify the level of commitment fulfilled and can do so by modifying the Stable parameter to one of the above values. Note that the level of commitment must at least be as strong as the value specified in Stable (with FILE_SYNC4 being the strongest and UNSTABLE4 being the weakest). A returned level of commitment less than the provided value of Stable constitutes a protocol violation.
Assuming UNSTABLE4 or DATA_SYNC4 are returned by the application, it can be expected that the client will follow up to ensure the data and metadata are written to stable storage. In this case, on_commit will fire.
If mandatory byte-range locking is in effect, and the current file has a read or write lock held by another client that conflicts with the data to be written, the operation should fail and Result should be set to NFS4ERR_LOCKED.
Example: Writing data to a file
nfs.OnWrite += (o, e) => {
if (e.Count == 0) {
return;
}
try {
IntPtr p = e.FileContext;
GCHandle h = (GCHandle)p;
FileStream fs = h.Target as FileStream;
fs.Position = e.Offset;
fs.Write(e.BufferB, 0, e.Count);
fs.Flush();
// All data was written to disk, indicate this via Stable.
e.Stable = FILE_SYNC4;
} catch (Exception ex) {
e.Result = NFS4ERR_IO;
}
};
The Result parameter will always be 0 (NFS4_OK) when this event fires. If the event cannot be handled successfully, set it to a nonzero value to report an appropriate error. Possible Result codes and their descriptions are listed in the NFS Result Codes section. Additional information regarding these result codes may be found in RFC 7530 Section 13.
Config Settings (NFS Struct)
The struct accepts one or more of the following configuration settings. Configuration settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the struct, access to these internal properties is provided through the config method.NFS Config Settings
When a client connects, the client's address is checked against the list defined here. If there is no match, the on_connection_request event fires with an Accept value set to false. If no action is taken within the on_connection_request event, the client will be disconnected.
When a client connects, the client's address is checked against the list defined here. If there is a match, the on_connection_request event fires with an Accept value set to false. If no action is taken within the on_connection_request event, the client will not be connected.
Connection5UID = obj.config("ConnectionUID[5]")
Note: This is applicable only to incoming SSL connections. This should be set only if there is a specific reason to do so.
Some TCP/IP implementations do not support variable buffer sizes. If that is the case, when the struct is activated, the InBufferSize reverts to its defined size. The same thing will happen if you attempt to make it too large or too small.
InBufferSize is shared among incoming connections. When the property is set, the corresponding value is set for incoming connections as they are accepted. Existing connections are not modified.
Note: This value is not applicable in macOS.
Note: This configuration setting is available only in the Unix platform, and it is not supported in macOS or FreeBSD.
0 (None) | No messages are logged. |
1 (Info - Default) | Informational events are logged. |
2 (Verbose) | Detailed data is logged. |
3 (Debug) | Debug data including all relevant sent and received NFS operations are logged. |
Note: Unix/Linux operating systems limit the number of simultaneous connections to 1024.
The default value is 50 (milliseconds).
This setting works on Linux and macOS and requires the NFS client to be installed in the system (the "mount" command should be able to mount an NFS server locally). On Windows, this setting is not used due to the lack of the NFS 4 client in Windows.
Some TCP/IP implementations do not support variable buffer sizes. If that is the case, when the struct is activated the OutBufferSize reverts to its defined size. The same thing will happen if you attempt to make it too large or too small.
OutBufferSize is shared among incoming connections. When the property is set, the corresponding value is set for incoming connections as they are accepted. Existing connections are not modified.
Nothing else is required to begin accepting IOCP connections. One major benefit to using this model is that there will be no thread blocked waiting for a request to complete. The system notifies the process through an Asynchronous Procedure Call (APC) once the device driver finishes servicing the I/O request. IOCP allows a single I/O worker thread handle multiple clients' input/output "fairly".
Note: When set to true, this setting will automatically set UseWindowsMessages to false.
0 | IPv4 Only |
1 | IPv6 Only |
2 | IPv6 and IPv4 |
Nothing else is required to begin accepting connections using the Windows message queue. In high-traffic environments, messages will be discarded if the queue is full. Additionally, because a single window procedure will service all events on thousands of sockets, the Windows message queue is not scalable from a performance perspective.
If this setting is set to false, the struct will instead use the Winsock select model instead.
Base Config Settings
- Product: The product the license is for.
- Product Key: The key the license was generated from.
- License Source: Where the license was found (e.g., RuntimeLicense, License File).
- License Type: The type of license installed (e.g., Royalty Free, Single Server).
Trappable Errors (NFS Struct)
NFS Errors
104 | The struct is already listening. |
106 | Cannot change local_port when NFSServer is listening. |
107 | Cannot change local_host when NFSServer is listening. |
126 | Invalid ConnectionId. |
500 | Invalid Cookie specified in fill_dir (0, 1, or 2). |