1SM-NOTIFY(8) System Manager's Manual SM-NOTIFY(8)
2
3
4
6 sm-notify - send reboot notifications to NFS peers
7
9 /usr/sbin/sm-notify [-dfn] [-m minutes] [-v name] [-p notify-port] [-P
10 path]
11
13 File locks are not part of persistent file system state. Lock state is
14 thus lost when a host reboots.
15
16 Network file systems must also detect when lock state is lost because a
17 remote host has rebooted. After an NFS client reboots, an NFS server
18 must release all file locks held by applications that were running on
19 that client. After a server reboots, a client must remind the server
20 of file locks held by applications running on that client.
21
22 For NFS version 2 and version 3, the Network Status Monitor protocol
23 (or NSM for short) is used to notify NFS peers of reboots. On Linux,
24 two separate user-space components constitute the NSM service:
25
26 sm-notify
27 A helper program that notifies NFS peers after the local system
28 reboots
29
30 rpc.statd
31 A daemon that listens for reboot notifications from other hosts,
32 and manages the list of hosts to be notified when the local sys‐
33 tem reboots
34
35 The local NFS lock manager alerts its local rpc.statd of each remote
36 peer that should be monitored. When the local system reboots, the sm-
37 notify command notifies the NSM service on monitored peers of the
38 reboot. When a remote reboots, that peer notifies the local rpc.statd,
39 which in turn passes the reboot notification back to the local NFS lock
40 manager.
41
43 The first file locking interaction between an NFS client and server
44 causes the NFS lock managers on both peers to contact their local NSM
45 service to store information about the opposite peer. On Linux, the
46 local lock manager contacts rpc.statd.
47
48 rpc.statd records information about each monitored NFS peer on persis‐
49 tent storage. This information describes how to contact a remote peer
50 in case the local system reboots, how to recognize which monitored peer
51 is reporting a reboot, and how to notify the local lock manager when a
52 monitored peer indicates it has rebooted.
53
54 An NFS client sends a hostname, known as the client's caller_name, in
55 each file lock request. An NFS server can use this hostname to send
56 asynchronous GRANT calls to a client, or to notify the client it has
57 rebooted.
58
59 The Linux NFS server can provide the client's caller_name or the
60 client's network address to rpc.statd. For the purposes of the NSM
61 protocol, this name or address is known as the monitored peer's
62 mon_name. In addition, the local lock manager tells rpc.statd what it
63 thinks its own hostname is. For the purposes of the NSM protocol, this
64 hostname is known as my_name.
65
66 There is no equivalent interaction between an NFS server and a client
67 to inform the client of the server's caller_name. Therefore NFS
68 clients do not actually know what mon_name an NFS server might use in
69 an SM_NOTIFY request. The Linux NFS client records the server's host‐
70 name used on the mount command to identify rebooting NFS servers.
71
72 Reboot notification
73 When the local system reboots, the sm-notify command reads the list of
74 monitored peers from persistent storage and sends an SM_NOTIFY request
75 to the NSM service on each listed remote peer. It uses the mon_name
76 string as the destination. To identify which host has rebooted, the
77 sm-notify command normally sends my_name string recorded when that
78 remote was monitored. The remote rpc.statd matches incoming SM_NOTIFY
79 requests using this string, or the caller's network address, to one or
80 more peers on its own monitor list.
81
82 If rpc.statd does not find a peer on its monitor list that matches an
83 incoming SM_NOTIFY request, the notification is not forwarded to the
84 local lock manager. In addition, each peer has its own NSM state num‐
85 ber, a 32-bit integer that is bumped after each reboot by the sm-notify
86 command. rpc.statd uses this number to distinguish between actual
87 reboots and replayed notifications.
88
89 Part of NFS lock recovery is rediscovering which peers need to be moni‐
90 tored again. The sm-notify command clears the monitor list on persis‐
91 tent storage after each reboot.
92
94 -d Keeps sm-notify attached to its controlling terminal and running
95 in the foreground so that notification progress may be monitored
96 directly.
97
98 -f Send notifications even if sm-notify has already run since the
99 last system reboot.
100
101 -m retry-time
102 Specifies the length of time, in minutes, to continue retrying
103 notifications to unresponsive hosts. If this option is not
104 specified, sm-notify attempts to send notifications for 15 min‐
105 utes. Specifying a value of 0 causes sm-notify to continue
106 sending notifications to unresponsive peers until it is manually
107 killed.
108
109 Notifications are retried if sending fails, the remote does not
110 respond, the remote's NSM service is not registered, or if there
111 is a DNS failure which prevents the remote's mon_name from being
112 resolved to an address.
113
114 Hosts are not removed from the notification list until a valid
115 reply has been received. However, the SM_NOTIFY procedure has a
116 void result. There is no way for sm-notify to tell if the
117 remote recognized the sender and has started appropriate lock
118 recovery.
119
120 -n Prevents sm-notify from updating the local system's NSM state
121 number.
122
123 -p port
124 Specifies the source port number sm-notify should use when send‐
125 ing reboot notifications. If this option is not specified, a
126 randomly chosen ephemeral port is used.
127
128 This option can be used to traverse a firewall between client
129 and server.
130
131 -P, --state-directory-path pathname
132 Specifies the pathname of the parent directory where NSM state
133 information resides. If this option is not specified, sm-notify
134 uses /var/lib/nfs/statd by default.
135
136 After starting, sm-notify attempts to set its effective UID and
137 GID to the owner and group of this directory.
138
139 -v ipaddr | hostname
140 Specifies the network address from which to send reboot notifi‐
141 cations, and the mon_name argument to use when sending SM_NOTIFY
142 requests. If this option is not specified, sm-notify uses a
143 wildcard address as the transport bind address, and uses the
144 my_name recorded when the remote was monitored as the mon_name
145 argument when sending SM_NOTIFY requests.
146
147 The ipaddr form can be expressed as either an IPv4 or an IPv6
148 presentation address. If the ipaddr form is used, the sm-notify
149 command converts this address to a hostname for use as the
150 mon_name argument when sending SM_NOTIFY requests.
151
152 This option can be useful in multi-homed configurations where
153 the remote requires notification from a specific network
154 address.
155
157 The sm-notify command must be started as root to acquire privileges
158 needed to access the state information database. It drops root privi‐
159 leges as soon as it starts up to reduce the risk of a privilege escala‐
160 tion attack.
161
162 During normal operation, the effective user ID it chooses is the owner
163 of the state directory. This allows it to continue to access files in
164 that directory after it has dropped its root privileges. To control
165 which user ID rpc.statd chooses, simply use chown(1) to set the owner
166 of the state directory.
167
169 Lock recovery after a reboot is critical to maintaining data integrity
170 and preventing unnecessary application hangs.
171
172 To help rpc.statd match SM_NOTIFY requests to NLM requests, a number of
173 best practices should be observed, including:
174
175 The UTS nodename of your systems should match the DNS names that
176 NFS peers use to contact them
177
178 The UTS nodenames of your systems should always be fully quali‐
179 fied domain names
180
181 The forward and reverse DNS mapping of the UTS nodenames should
182 be consistent
183
184 The hostname the client uses to mount the server should match
185 the server's mon_name in SM_NOTIFY requests it sends
186
187 Unmounting an NFS file system does not necessarily stop either the NFS
188 client or server from monitoring each other. Both may continue moni‐
189 toring each other for a time in case subsequent NFS traffic between the
190 two results in fresh mounts and additional file locking.
191
192 On Linux, if the lockd kernel module is unloaded during normal opera‐
193 tion, all remote NFS peers are unmonitored. This can happen on an NFS
194 client, for example, if an automounter removes all NFS mount points due
195 to inactivity.
196
197 IPv6 and TI-RPC support
198 TI-RPC is a pre-requisite for supporting NFS on IPv6. If TI-RPC sup‐
199 port is built into the sm-notify command ,it will choose an appropriate
200 IPv4 or IPv6 transport based on the network address returned by DNS for
201 each remote peer. It should be fully compatible with remote systems
202 that do not support TI-RPC or IPv6.
203
204 Currently, the sm-notify command supports sending notification only via
205 datagram transport protocols.
206
208 /var/lib/nfs/statd/sm directory containing monitor list
209
210 /var/lib/nfs/statd/sm.bak
211 directory containing notify list
212
213 /var/lib/nfs/statd/state NSM state number for this host
214
215 /proc/sys/fs/nfs/nsm_local_state
216 kernel's copy of the NSM state number
217
219 rpc.statd(8), nfs(5), uname(2), hostname(7)
220
221 RFC 1094 - "NFS: Network File System Protocol Specification"
222 RFC 1813 - "NFS Version 3 Protocol Specification"
223 OpenGroup Protocols for Interworking: XNFS, Version 3W - Chapter 11
224
226 Olaf Kirch <okir@suse.de>
227 Chuck Lever <chuck.lever@oracle.com>
228
229
230
231 1 November 2009 SM-NOTIFY(8)