1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
|
/*
* showmount.c -- show mount information for an NFS server
* Copyright (C) 1993 Rick Sladkey <jrs@world.std.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <rpc/rpc.h>
#include <rpc/pmap_prot.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/time.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include <memory.h>
#include <stdlib.h>
#include <fcntl.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <errno.h>
#include <getopt.h>
#include <mount.h>
#include <unistd.h>
#include "nfsrpc.h"
#define TIMEOUT_UDP 3
#define TOTAL_TIMEOUT 20
static char * version = "showmount for " VERSION;
static char * program_name;
static int headers = 1;
static int hflag = 0;
static int aflag = 0;
static int dflag = 0;
static int eflag = 0;
static struct option longopts[] =
{
{ "all", 0, 0, 'a' },
{ "directories", 0, 0, 'd' },
{ "exports", 0, 0, 'e' },
{ "no-headers", 0, &headers, 0 },
{ "version", 0, 0, 'v' },
{ "help", 0, 0, 'h' },
{ NULL, 0, 0, 0 }
};
#define MAXHOSTLEN 256
static int dump_cmp(const void *pv, const void *qv)
{
const char **p = (const char **)pv;
const char **q = (const char **)qv;
return strcmp(*p, *q);
}
static void usage(FILE *fp, int n)
{
fprintf(fp, "Usage: %s [-adehv]\n", program_name);
fprintf(fp, " [--all] [--directories] [--exports]\n");
fprintf(fp, " [--no-headers] [--help] [--version] [host]\n");
exit(n);
}
#ifdef HAVE_CLNT_CREATE
static const char *nfs_sm_pgmtbl[] = {
"showmount",
"mount",
"mountd",
NULL,
};
/*
* Generate an RPC client handle connected to the mountd service
* at @hostname, or die trying.
*
* Supports both AF_INET and AF_INET6 server addresses.
*/
static CLIENT *nfs_get_mount_client(const char *hostname)
{
rpcprog_t program = nfs_getrpcbyname(MOUNTPROG, nfs_sm_pgmtbl);
CLIENT *client;
client = clnt_create(hostname, program, MOUNTVERS, "tcp");
if (client)
return client;
client = clnt_create(hostname, program, MOUNTVERS, "udp");
if (client)
return client;
clnt_pcreateerror("clnt_create");
exit(1);
}
#else /* HAVE_CLNT_CREATE */
/*
* Perform a non-blocking connect on the socket fd.
*
* tout contains the timeout. It will be modified to contain the time
* remaining (i.e. time provided - time elasped).
*
* Returns zero on success; otherwise, -1 is returned and errno is set
* to reflect the nature of the error.
*/
static int connect_nb(int fd, struct sockaddr_in *addr, struct timeval *tout)
{
int flags, ret;
socklen_t len;
fd_set rset;
flags = fcntl(fd, F_GETFL, 0);
if (flags < 0)
return -1;
ret = fcntl(fd, F_SETFL, flags | O_NONBLOCK);
if (ret < 0)
return -1;
/*
* From here on subsequent sys calls could change errno so
* we set ret = -errno to capture it in case we decide to
* use it later.
*/
len = sizeof(struct sockaddr);
ret = connect(fd, (struct sockaddr *)addr, len);
if (ret < 0 && errno != EINPROGRESS) {
ret = -1;
goto done;
}
if (ret == 0)
goto done;
/* now wait */
FD_ZERO(&rset);
FD_SET(fd, &rset);
ret = select(fd + 1, NULL, &rset, NULL, tout);
if (ret <= 0) {
if (ret == 0)
errno = ETIMEDOUT;
ret = -1;
goto done;
}
if (FD_ISSET(fd, &rset)) {
int status;
len = sizeof(ret);
status = getsockopt(fd, SOL_SOCKET, SO_ERROR, &ret, &len);
if (status < 0) {
ret = -1;
goto done;
}
/* Oops - something wrong with connect */
if (ret != 0) {
errno = ret;
ret = -1;
}
}
done:
fcntl(fd, F_SETFL, flags);
return ret;
}
/*
* Generate an RPC client handle connected to the mountd service
* at @hostname, or die trying.
*
* Supports only AF_INET server addresses.
*/
static CLIENT *nfs_get_mount_client(const char *hostname)
{
struct hostent *hp;
struct sockaddr_in server_addr;
struct timeval pertry_timeout;
CLIENT *mclient = NULL;
int ret, msock;
if (inet_aton(hostname, &server_addr.sin_addr)) {
server_addr.sin_family = AF_INET;
}
else {
if ((hp = gethostbyname(hostname)) == NULL) {
fprintf(stderr, "%s: can't get address for %s\n",
program_name, hostname);
exit(1);
}
server_addr.sin_family = AF_INET;
memcpy(&server_addr.sin_addr, hp->h_addr, hp->h_length);
}
msock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
if (msock != -1) {
if (nfs_getport_ping((struct sockaddr *)&server_addr,
sizeof(server_addr), MOUNTPROG,
MOUNTVERS, IPPROTO_TCP)) {
ret = connect_nb(msock, &server_addr, 0);
if (ret == 0)
mclient = clnttcp_create(&server_addr,
MOUNTPROG, MOUNTVERS, &msock,
0, 0);
else
close(msock);
} else
close(msock);
}
if (!mclient) {
if (nfs_getport_ping((struct sockaddr *)&server_addr,
sizeof(server_addr), MOUNTPROG,
MOUNTVERS, IPPROTO_UDP)) {
clnt_pcreateerror("showmount");
exit(1);
}
msock = RPC_ANYSOCK;
pertry_timeout.tv_sec = TIMEOUT_UDP;
pertry_timeout.tv_usec = 0;
if ((mclient = clntudp_create(&server_addr,
MOUNTPROG, MOUNTVERS, pertry_timeout, &msock)) == NULL) {
clnt_pcreateerror("mount clntudp_create");
exit(1);
}
}
return mclient;
}
#endif /* HAVE_CLNT_CREATE */
int main(int argc, char **argv)
{
char hostname_buf[MAXHOSTLEN];
char *hostname;
enum clnt_stat clnt_stat;
struct timeval total_timeout;
int c;
CLIENT *mclient;
groups grouplist;
exports exportlist, exl;
mountlist dumplist;
mountlist list;
int i;
int n;
int maxlen;
char **dumpv;
program_name = argv[0];
while ((c = getopt_long(argc, argv, "adehv", longopts, NULL)) != EOF) {
switch (c) {
case 'a':
aflag = 1;
break;
case 'd':
dflag = 1;
break;
case 'e':
eflag = 1;
break;
case 'h':
usage(stdout, 0);
break;
case 'v':
printf("%s\n", version);
exit(0);
case 0:
break;
case '?':
default:
usage(stderr, 1);
break;
}
}
argc -= optind;
argv += optind;
switch (aflag + dflag + eflag) {
case 0:
hflag = 1;
break;
case 1:
break;
default:
fprintf(stderr, "%s: only one of -a, -d or -e is allowed\n",
program_name);
exit(1);
break;
}
switch (argc) {
case 0:
if (gethostname(hostname_buf, MAXHOSTLEN) < 0) {
perror("getting hostname");
exit(1);
}
hostname = hostname_buf;
break;
case 1:
hostname = argv[0];
break;
default:
fprintf(stderr, "%s: only one hostname is allowed\n",
program_name);
exit(1);
break;
}
mclient = nfs_get_mount_client(hostname);
mclient->cl_auth = authunix_create_default();
total_timeout.tv_sec = TOTAL_TIMEOUT;
total_timeout.tv_usec = 0;
if (eflag) {
memset(&exportlist, '\0', sizeof(exportlist));
clnt_stat = clnt_call(mclient, MOUNTPROC_EXPORT,
(xdrproc_t) xdr_void, NULL,
(xdrproc_t) xdr_exports, (caddr_t) &exportlist,
total_timeout);
if (clnt_stat != RPC_SUCCESS) {
clnt_perror(mclient, "rpc mount export");
clnt_destroy(mclient);
exit(1);
}
if (headers)
printf("Export list for %s:\n", hostname);
maxlen = 0;
for (exl = exportlist; exl; exl = exl->ex_next) {
if ((n = strlen(exl->ex_dir)) > maxlen)
maxlen = n;
}
while (exportlist) {
printf("%-*s ", maxlen, exportlist->ex_dir);
grouplist = exportlist->ex_groups;
if (grouplist)
while (grouplist) {
printf("%s%s", grouplist->gr_name,
grouplist->gr_next ? "," : "");
grouplist = grouplist->gr_next;
}
else
printf("(everyone)");
printf("\n");
exportlist = exportlist->ex_next;
}
clnt_destroy(mclient);
exit(0);
}
memset(&dumplist, '\0', sizeof(dumplist));
clnt_stat = clnt_call(mclient, MOUNTPROC_DUMP,
(xdrproc_t) xdr_void, NULL,
(xdrproc_t) xdr_mountlist, (caddr_t) &dumplist,
total_timeout);
if (clnt_stat != RPC_SUCCESS) {
clnt_perror(mclient, "rpc mount dump");
clnt_destroy(mclient);
exit(1);
}
clnt_destroy(mclient);
n = 0;
for (list = dumplist; list; list = list->ml_next)
n++;
dumpv = (char **) calloc(n, sizeof (char *));
if (n && !dumpv) {
fprintf(stderr, "%s: out of memory\n", program_name);
exit(1);
}
i = 0;
if (hflag) {
if (headers)
printf("Hosts on %s:\n", hostname);
while (dumplist) {
dumpv[i++] = dumplist->ml_hostname;
dumplist = dumplist->ml_next;
}
}
else if (aflag) {
if (headers)
printf("All mount points on %s:\n", hostname);
while (dumplist) {
char *t;
t=malloc(strlen(dumplist->ml_hostname)+strlen(dumplist->ml_directory)+2);
if (!t)
{
fprintf(stderr, "%s: out of memory\n", program_name);
exit(1);
}
sprintf(t, "%s:%s", dumplist->ml_hostname, dumplist->ml_directory);
dumpv[i++] = t;
dumplist = dumplist->ml_next;
}
}
else if (dflag) {
if (headers)
printf("Directories on %s:\n", hostname);
while (dumplist) {
dumpv[i++] = dumplist->ml_directory;
dumplist = dumplist->ml_next;
}
}
qsort(dumpv, n, sizeof (char *), dump_cmp);
for (i = 0; i < n; i++) {
if (i == 0 || strcmp(dumpv[i], dumpv[i - 1]) != 0)
printf("%s\n", dumpv[i]);
}
exit(0);
}
|