4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
28 /* All Rights Reserved */
31 * University Copyright- Copyright (c) 1982, 1986, 1988
32 * The Regents of the University of California
35 * University Acknowledgment- Portions of this document are derived from
36 * software developed by the University of California, Berkeley, and its
40 #pragma ident "%Z%%M% %I% %E% SMI"
50 #include <rpc/rpcb_clnt.h>
51 #include <sys/socket.h>
54 #include <sys/errno.h>
56 #include <rpcsvc/mount.h>
61 static void pr_mounts(char *);
62 static void freemntlist(struct mountbody
*);
63 static int sortpath(const void *, const void *);
64 static void usage(void);
65 static void pr_err(char *, ...);
68 main(int argc
, char *argv
[])
75 (void) setlocale(LC_ALL
, "");
77 #if !defined(TEXT_DOMAIN)
78 #define TEXT_DOMAIN "SYS_TEST"
80 (void) textdomain(TEXT_DOMAIN
);
82 while ((c
= getopt(argc
, argv
, "h")) != EOF
) {
94 for (i
= optind
; i
< argc
; i
++)
97 if (gethostname(hostbuf
, sizeof (hostbuf
)) < 0) {
98 perror("nfs dfmounts: gethostname");
107 #define NTABLEENTRIES 2048
108 static struct mountbody
*table
[NTABLEENTRIES
];
109 static struct timeval rpc_totout_new
= {15, 0};
112 * Print the filesystems on "host" that are currently mounted by a client.
120 struct mountbody
*ml
= NULL
;
121 struct mountbody
**tb
, **endtb
;
126 struct timeval tout
, rpc_totout_old
;
128 (void) __rpc_control(CLCR_GET_RPCB_TIMEOUT
, &rpc_totout_old
);
129 (void) __rpc_control(CLCR_SET_RPCB_TIMEOUT
, &rpc_totout_new
);
132 * First try circuit, then drop back to datagram if
133 * circuit is unavailable (an old version of mountd perhaps)
134 * Using circuit is preferred because it can handle
135 * arbitrarily long export lists.
137 cl
= clnt_create(host
, MOUNTPROG
, MOUNTVERS
, "circuit_n");
139 if (rpc_createerr
.cf_stat
== RPC_PROGNOTREGISTERED
)
140 cl
= clnt_create(host
, MOUNTPROG
, MOUNTVERS
,
143 pr_err(gettext("can't contact server: %s\n"),
144 clnt_spcreateerror(host
));
145 (void) __rpc_control(CLCR_SET_RPCB_TIMEOUT
,
151 (void) __rpc_control(CLCR_SET_RPCB_TIMEOUT
, &rpc_totout_old
);
155 if (err
= clnt_call(cl
, MOUNTPROC_DUMP
, xdr_void
,
156 0, xdr_mountlist
, (caddr_t
)&ml
, tout
)) {
157 pr_err("%s\n", clnt_sperrno(err
));
163 return; /* no mounts */
166 printf("%-8s %10s %-24s %s",
167 gettext("RESOURCE"), gettext("SERVER"),
168 gettext("PATHNAME"), gettext("CLIENTS"));
173 * Create an array describing the mounts, so that we can sort them.
176 for (; ml
!= NULL
&& tb
< &table
[NTABLEENTRIES
]; ml
= ml
->ml_next
)
178 if (ml
!= NULL
&& tb
== &table
[NTABLEENTRIES
])
179 pr_err(gettext("table overflow: only %d entries shown\n"),
182 qsort(table
, endtb
- table
, sizeof (struct mountbody
*), sortpath
);
185 * Print out the sorted array. Group entries for the same
186 * filesystem together, and ignore duplicate entries.
190 for (tb
= table
; tb
< endtb
; tb
++) {
191 if (*((*tb
)->ml_directory
) == '\0' ||
192 *((*tb
)->ml_hostname
) == '\0')
194 if (strcmp(lastpath
, (*tb
)->ml_directory
) == 0) {
195 if (strcmp(lastclient
, (*tb
)->ml_hostname
) == 0) {
196 continue; /* ignore duplicate */
199 printf("\n%-8s %10s %-24s ",
200 " -", host
, (*tb
)->ml_directory
);
201 lastpath
= (*tb
)->ml_directory
;
206 printf("%s", (*tb
)->ml_hostname
);
207 lastclient
= (*tb
)->ml_hostname
;
217 struct mountbody
*ml
;
219 register struct mountbody
*old
;
223 free(ml
->ml_hostname
);
224 if (ml
->ml_directory
)
225 free(ml
->ml_directory
);
233 * Compare two structs for mounted filesystems. The primary sort key is
234 * the name of the exported filesystem. There is also a secondary sort on
235 * the name of the client, so that duplicate entries (same path and
236 * hostname) will sort together.
238 * Returns < 0 if the first entry sorts before the second entry, 0 if they
239 * sort the same, and > 0 if the first entry sorts after the second entry.
246 const struct mountbody
**m1
, **m2
;
249 m1
= (const struct mountbody
**)a
;
250 m2
= (const struct mountbody
**)b
;
252 result
= strcmp((*m1
)->ml_directory
, (*m2
)->ml_directory
);
254 result
= strcmp((*m1
)->ml_hostname
, (*m2
)->ml_hostname
);
263 (void) fprintf(stderr
, gettext("Usage: dfmounts [-h] [host ...]\n"));
268 pr_err(char *fmt
, ...)
273 (void) fprintf(stderr
, "nfs dfmounts: ");
274 (void) vfprintf(stderr
, fmt
, ap
);