Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1361894
  • 博文数量: 343
  • 博客积分: 13098
  • 博客等级: 上将
  • 技术积分: 2862
  • 用 户 组: 普通用户
  • 注册时间: 2005-07-06 00:35
文章存档

2012年(131)

2011年(31)

2010年(53)

2009年(23)

2008年(62)

2007年(2)

2006年(36)

2005年(5)

分类: LINUX

2012-06-03 01:50:25

Network Lock Manager Protocol (NLM)

 

 

The purpose of the NLM protocol is to provide something similar to POSIX advisory file locking semantics to version 2 and 3. This protocol is closely tied with the protocol itself since it shares the file handle data structure with , with the protocol which the lock manager uses to recover from peer restarts, and, on some platforms the protocol which is used to communicate between the NFS client code in the kernel and the user space lock manager.

The lock manager is typically implemented completely inside user space in a lock manager daemon; that daemon will receive messages from the NFS client when a lock is requested, and will send NLM requests to the NLM server on the NFS server machine, and will receive NLM requests from NFS clients of the machine on which it's running and will make local locking calls on behalf of those clients.. You need to run this lock manager daemon on BOTH the client and the server for lock management to work. The NFS client code in the kernel will use a different protocol to talk to the lock manager daemon; for example, it might use Sun's protocol across the loopback interface, or it might use a different protocol across a local named pipe as is the case on some BSDs.

 

History

 

The NLM protocol came after the original release of when byte-range locking support was added in SunOS, as locking more obviously requires a stateful protocol. The purpose of the protocol is to implement POSIX-style file locking for services.

There has been 4 different versions of the protocol, versions 1 to 3 are all virtually identical with the exception of extra functions being added to version 2 and 3 to accomodate non-UNIX (read PC-NFS for DOS and Windows) clients. These versions are all for version 2 of .

When version 3 of was released, the file handle structure for the protocol changed its wire format. Since the NLM protocol shares this structure with the protocol this required a new version of NLM to be specified. Version 4 of NLM is used together with version 3.

With version 4 of the NLM protocol has been eliminated and the locking functions are there implemented in the protocol itself.

Due to poor documentation of the protocol and inherent race problems in the protocol there has historically been very very problematic to implement this protocol in a robust and reliably way. Problems with this protocol often result in

  • files becoming locked forever (client forgot to unlock a file)
  • client hangs
  • file corruption (two processes simultaneously holding an exclusive lock to a file)

These situations above often result from such normal and simple simple things such as retransmissions or packet reordering on the network.
Many applications therefore implement their own application style file locking instead of relying on the file locking fcntl calls using simple files, often refered to .LOCK files.

 

Protocol dependencies

 

  • : The NLM protocols is implemented on top of as program number 100021. NLM is usually implemented on top of but clients using do exist.
  • : A client usually needs the service in order to discover which port the NSM service is available on.
  • : Lock manager peers rely on the protocol to notify each other of service restarts/reboots so that locks can be resynchronized after a reboot.
  • : On some platforms, the interface over the loopback interface where the NFS client code in the kernel talks to the user space lock manager.

Functions

 

Forgetting about the special functions added for PC-NFS and other non-UNIX clients, this protocol only implements 6 functions : Null, Test, Lock, Unlock, Cancel and Granted.

  • Null : this functions is the standard "ping" function that all services use, it is merely used to "ping" the service to see that it is alive and well.
  • Test : This function was intended to be used to "test" if a lock request would succeed or not. This is not useful in reality since the lock state on the server can and often will change between when the test call completed and before the response will reach the client. No client implementations ever use this function.
  • Lock : this function is used to request a lock to be taken out on the server. In case of a request for an exclusive lock request lock contention can occur (someone else already has a lock for the file) and the lock can not be granted to the client. Instead of just reporting a failure to aquire the lock and having the clients to continously poll for the lock, the server will here respond with a BLOCKED response, telling the client that the lock can not be granted right now but that the server will perform a Granted callback back to the client when the lock is available and has been assigned to the client. Note that the Granted messages can become lost on the network which is why the clients will still retransmit the original request if it hasnt been granted a blocked lock once every 10 or 20 seconds or so. Since locks are usually very short lived, many servers will when it encounters a request that would block, postpone execution of the locking request for some miliseconds on the opportunistic assumption that the lock might have become available sometime later and thus the entire blocked and granted handshake will be short-circuited.
  • Unlock : This function will release a lock that is held (or blocked) back to the server.
  • Cancel : this function is identical to Unlock and many implementations have Cancel just be a simple stub function that just calls the Unlock function anyway. For people analyzing network traces these functions do actually differ and provide additional information : Unlock are usually used when the application is explicitly releasing a lock by the fcntl() call. Cancel is usually issued by the lock manager after the application has terminated without cleaning up the locks after itself. I.e. Cancel means the application holding the lock has terminated and it is the VFS layer in the kernel that is cleaning up the allocated resources.
  • Granted : This function is used by the server when a blocked lock has become available and is used to make a call back to the client to tell it that it has required the lock.

Idempotence

 

In order to be idempotent, an implementation MUST respond with the same response to all duplicated requests, i.e. implement execute-at-most-once semantics. In presence of retransmissions this does affect this protocol slightly and not all implementations have got this right. This does mean that the response codes for the functions change their meaning slightly, the easiest way to see this is as having the response codes describing the resulting state on the server after the call has completed and not whether a state transition actually occured. This can be seen if one sends Unlock requests for locks that does not exist : the server will still respond with Unlock successful since the lock does not exist after the call completed, that the lock didnt exist even before the call was initiated is irrelevant.

Some client implementations are not idempotent which causes problems for servers. In particular some non-Solaris legacy unix implementations are not idempotent in the Granted call and return different response codes depending on whether the state transition occured or not. Servers work around this by always ignoring completely the response code to Granted calls and treating any and all responses as success.

 

Synchronous vs Asynchronous NLM

 

There are two styles of NLM which both provide the same functions; Synchronous and Asynchronous. While almost all implementations use the synchronous version, some older legacy unixen such as HP-UX do use the Asynchronous version. The main difference is that Synchronous NLM is a normal request/response protocol while the asynchronous version is a message/message protocol.

In the asynchronous version of NLM there will not be any layer responses, instead the NLM responses are sent back as request messages. This means that the transaction id (XID) can not be used to match "request" with "responses", nor can the XID be used to detect potential retransmissions. Instead, the cookie field in the beginning of every NLM PDU is used to match requests and responses. This cookie field is also present in the synchronous version of NLM but has no semantic meaning there. Wireshark has a preference setting which can allow Wireshark to match requests with responses based on the cookie, this preference is off by default.

 

 

Tools

  • rpcinfo can be used to "ping" the NLM service on a server.

 

阅读(1550) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~