xref: /freebsd/usr.sbin/rwhod/rwhod.8 (revision 5203edcdc553fda6caa1da8826a89b1a02dad1bf)
1.\" Copyright (c) 1983, 1991, 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\"    must display the following acknowledgement:
14.\"	This product includes software developed by the University of
15.\"	California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\"    may be used to endorse or promote products derived from this software
18.\"    without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\"     @(#)rwhod.8	8.2 (Berkeley) 12/11/93
33.\" $FreeBSD$
34.\"
35.Dd December 11, 1993
36.Dt RWHOD 8
37.Os
38.Sh NAME
39.Nm rwhod
40.Nd system status server
41.Sh SYNOPSIS
42.Nm
43.Op Fl i
44.Op Fl p
45.Op Fl l
46.Op Fl m Op Ar ttl
47.Sh DESCRIPTION
48The
49.Nm
50utility is the server which maintains the database used by the
51.Xr rwho 1
52and
53.Xr ruptime 1
54programs.
55Its operation is predicated on the ability to
56.Em broadcast
57or
58.Em multicast
59messages on a network.
60.Pp
61The
62.Nm
63utility operates as both a producer and consumer of status information,
64unless the
65.Fl l
66(listen mode) option is specified, in which case
67it acts as a consumer only.
68As a producer of information it periodically
69queries the state of the system and constructs
70status messages which are broadcasted or multicasted on a network.
71As a consumer of information, it listens for other
72.Nm
73servers' status messages, validating them, then recording
74them in a collection of files located in the directory
75.Pa /var/rwho .
76.Pp
77The following options are available:
78.Bl -tag -width indent
79.It Fl i
80Enable insecure mode, which causes
81.Nm
82to ignore the source port on incoming packets.
83.It Fl p
84Ignore all
85.Dv POINTOPOINT
86interfaces.
87This is useful if you do not wish to keep dial on demand
88interfaces permanently active.
89.It Fl l
90Enable listen mode, which causes
91.Nm
92to not broadcast any information.
93This allows you to monitor other machines'
94.Nm
95information, without broadcasting your own.
96.It Fl m Op Ar ttl
97Cause
98.Nm
99to use IP multicast (instead of
100broadcast) on all interfaces that have
101the IFF_MULTICAST flag set in their "ifnet" structs
102(excluding the loopback interface).
103The multicast
104reports are sent with a time-to-live of 1, to prevent
105forwarding beyond the directly-connected subnet(s).
106.Pp
107If the optional
108.Ar ttl
109argument is supplied with the
110.Fl m
111flag,
112.Nm
113will send IP multicast datagrams with a
114time-to-live of
115.Ar ttl ,
116via a SINGLE interface rather
117than all interfaces.
118.Ar ttl
119must be between 0 and
12032 (or MAX_MULTICAST_SCOPE).
121Note that
122.Fl m Ar 1
123is different from
124.Fl m ,
125in that
126.Fl m Ar 1
127specifies transmission on one interface only.
128.Pp
129When
130.Fl m
131is used without a
132.Ar ttl
133argument, the program accepts multicast
134.Nm
135reports from all multicast-capable interfaces.
136If a
137.Ar ttl
138argument is given, it accepts multicast reports from only one interface, the
139one on which reports are sent (which may be controlled via the host's routing
140table).
141Regardless of the
142.Fl m
143option, the program accepts broadcast or
144unicast reports from all interfaces.
145Thus, this program will hear the
146reports of old, non-multicasting
147.Nm Ns s ,
148but, if multicasting is used,
149those old
150.Nm Ns s
151won't hear the reports generated by this program.
152.El
153.Pp
154The server transmits and receives messages at the port indicated
155in the ``who'' service specification; see
156.Xr services 5 .
157The messages sent and received, are of the form:
158.Bd -literal -offset indent
159struct	outmp {
160	char	out_line[8];		/* tty name */
161	char	out_name[8];		/* user id */
162	long	out_time;		/* time on */
163};
164
165struct	whod {
166	char	wd_vers;
167	char	wd_type;
168	char	wd_fill[2];
169	int	wd_sendtime;
170	int	wd_recvtime;
171	char	wd_hostname[32];
172	int	wd_loadav[3];
173	int	wd_boottime;
174	struct	whoent {
175		struct	outmp we_utmp;
176		int	we_idle;
177	} wd_we[1024 / sizeof (struct whoent)];
178};
179.Ed
180.Pp
181All fields are converted to network byte order prior to
182transmission.
183The load averages are as calculated by the
184.Xr w 1
185program, and represent load averages over the 5, 10, and 15 minute
186intervals prior to a server's transmission; they are multiplied by 100
187for representation in an integer.
188The host name
189included is that returned by the
190.Xr gethostname 3
191system call, with any trailing domain name omitted.
192The array at the end of the message contains information about
193the users logged in to the sending machine.
194This information
195includes the contents of the
196.Xr utmp 5
197entry for each non-idle terminal line and a value indicating the
198time in seconds since a character was last received on the terminal line.
199.Pp
200Messages received by the
201.Nm rwho
202server are discarded unless they originated at an
203.Nm rwho
204server's port or the
205.Fl i
206option was specified.
207In addition, if the host's name, as specified
208in the message, contains any unprintable
209.Tn ASCII
210characters, the
211message is discarded.
212Valid messages received by
213.Nm
214are placed in files named
215.Pa whod.hostname
216in the directory
217.Pa /var/rwho .
218These files contain only the most recent message, in the
219format described above.
220.Pp
221Status messages are generated approximately once every
2223 minutes.
223The
224.Nm
225utility performs an
226.Xr nlist 3
227on
228.Pa /boot/kernel/kernel
229every 30 minutes to guard against
230the possibility that this file is not the system
231image currently operating.
232.Sh SEE ALSO
233.Xr ruptime 1 ,
234.Xr rwho 1
235.Sh BUGS
236Status information should be sent only upon request rather than continuously.
237People often interpret the server dying
238or network communication failures
239as a machine going down.
240.Sh HISTORY
241The
242.Nm
243utility appeared in
244.Bx 4.2 .
245