]>
The Tcpdump Group git mirrors - tcpdump/blob - parsenfsfh.c
2 * Copyright (c) 1993, 1994 Jeffrey C. Mogul, Digital Equipment Corporation,
3 * Western Research Laboratory. All rights reserved.
4 * Copyright (c) 2001 Compaq Computer Corporation. All rights reserved.
6 * Permission to use, copy, and modify this software and its
7 * documentation is hereby granted only under the following terms and
8 * conditions. Both the above copyright notice and this permission
9 * notice must appear in all copies of the software, derivative works
10 * or modified versions, and any portions thereof, and both notices
11 * must appear in supporting documentation.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in
20 * the documentation and/or other materials provided with the
23 * THE SOFTWARE IS PROVIDED "AS IS" AND COMPAQ COMPUTER CORPORATION
24 * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
25 * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
26 * EVENT SHALL COMPAQ COMPUTER CORPORATION BE LIABLE FOR ANY
27 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
28 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
29 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
30 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
35 * parsenfsfh.c - portable parser for NFS file handles
36 * uses all sorts of heuristics
39 * Digital Equipment Corporation
40 * Western Research Laboratory
43 #define NETDISSECT_REWORKED
48 #include <tcpdump-stdinc.h>
53 #include "interface.h"
57 * This routine attempts to parse a file handle (in network byte order),
58 * using heuristics to guess what kind of format it is in. See the
59 * file "fhandle_layouts" for a detailed description of the various
60 * patterns we know about.
62 * The file handle is parsed into our internal representation of a
63 * file-system id, and an internal representation of an inode-number.
81 /* Nasty hack to keep the Ultrix C compiler from emitting bogus warnings */
82 #define XFF(x) ((uint32_t)(x))
87 #define make_uint32(msb,b,c,lsb)\
88 (XFF(lsb) + (XFF(c)<<8) + (XFF(b)<<16) + (XFF(msb)<<24))
90 #define make_uint24(msb,b, lsb)\
91 (XFF(lsb) + (XFF(b)<<8) + (XFF(msb)<<16))
93 #define make_uint16(msb,lsb)\
94 (XFF(lsb) + (XFF(msb)<<8))
97 /* or other 64-bit systems */
98 #define make_uint48(msb,b,c,d,e,lsb)\
99 ((lsb) + ((e)<<8) + ((d)<<16) + ((c)<<24) + ((b)<<32) + ((msb)<<40))
101 /* on 32-bit systems ignore high-order bits */
102 #define make_uint48(msb,b,c,d,e,lsb)\
103 ((lsb) + ((e)<<8) + ((d)<<16) + ((c)<<24))
106 static int is_UCX(const unsigned char *);
109 Parse_fh(register const unsigned char *fh
, int len _U_
, my_fsid
*fsidp
,
111 const char **osnamep
, /* if non-NULL, return OS name here */
112 const char **fsnamep
, /* if non-NULL, return server fs name here (for VMS) */
113 int ourself
) /* true if file handle was generated on this host */
115 register const unsigned char *fhp
= fh
;
117 int fhtype
= FHT_UNKNOWN
;
121 /* File handle generated on this host, no need for guessing */
143 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__) \
144 || defined(__OpenBSD__)
149 * This is basically a big decision tree
151 else if ((fhp
[0] == 0) && (fhp
[1] == 0)) {
152 /* bytes[0,1] == (0,0); rules out Ultrix, IRIX5, SUNOS5 */
153 /* probably rules out HP-UX, AIX unless they allow major=0 */
154 if ((fhp
[2] == 0) && (fhp
[3] == 0)) {
155 /* bytes[2,3] == (0,0); must be Auspex */
156 /* XXX or could be Ultrix+MASSBUS "hp" disk? */
161 * bytes[2,3] != (0,0); rules out Auspex, could be
162 * DECOSF, SUNOS4, or IRIX4
164 if ((fhp
[4] != 0) && (fhp
[5] == 0) &&
165 (fhp
[8] == 12) && (fhp
[9] == 0)) {
166 /* seems to be DECOSF, with minor == 0 */
170 /* could be SUNOS4 or IRIX4 */
171 /* XXX the test of fhp[5] == 8 could be wrong */
172 if ((fhp
[4] == 0) && (fhp
[5] == 8) && (fhp
[6] == 0) &&
174 /* looks like a length, not a file system typecode */
186 * bytes[0,1] != (0,0); rules out Auspex, IRIX4, SUNOS4
187 * could be IRIX5, DECOSF, UCX, Ultrix, SUNOS5
188 * could be AIX, HP-UX
190 if ((fhp
[2] == 0) && (fhp
[3] == 0)) {
192 * bytes[2,3] == (0,0); rules out OSF, probably not UCX
193 * (unless the exported device name is just one letter!),
194 * could be Ultrix, IRIX5, AIX, or SUNOS5
195 * might be HP-UX (depends on their values for minor devs)
197 if ((fhp
[6] == 0) && (fhp
[7] == 0)) {
200 /*XXX we probably only need to test of these two bytes */
201 else if ((fhp
[21] == 0) && (fhp
[23] == 0)) {
205 /* Could be SUNOS5/IRIX5, maybe AIX */
206 /* XXX no obvious difference between SUNOS5 and IRIX5 */
209 /* XXX what about AIX? */
214 * bytes[2,3] != (0,0); rules out Ultrix, could be
215 * DECOSF, SUNOS5, IRIX5, AIX, HP-UX, or UCX
217 if ((fhp
[8] == 12) && (fhp
[9] == 0)) {
220 else if ((fhp
[8] == 0) && (fhp
[9] == 10)) {
221 /* could be SUNOS5/IRIX5, AIX, HP-UX */
222 if ((fhp
[7] == 0) && (fhp
[6] == 0) &&
223 (fhp
[5] == 0) && (fhp
[4] == 0)) {
224 /* XXX is this always true of HP-UX? */
227 else if (fhp
[7] == 2) {
228 /* This would be MNT_NFS on AIX, which is impossible */
229 fhtype
= FHT_SUNOS5
; /* or maybe IRIX5 */
233 * XXX Could be SUNOS5/IRIX5 or AIX. I don't
234 * XXX see any way to disambiguate these, so
235 * XXX I'm going with the more likely guess.
236 * XXX Sorry, Big Blue.
238 fhtype
= FHT_SUNOS5
; /* or maybe IRIX5 */
246 fhtype
= FHT_UNKNOWN
;
252 /* XXX still needs to handle SUNOS3 */
256 fsidp
->Fsid_dev
.Minor
= fhp
[7];
257 fsidp
->Fsid_dev
.Major
= fhp
[6];
258 fsidp
->fsid_code
= 0;
260 *inop
= make_uint32(fhp
[12], fhp
[13], fhp
[14], fhp
[15]);
267 fsidp
->Fsid_dev
.Minor
= fhp
[0];
268 fsidp
->Fsid_dev
.Major
= fhp
[1];
269 fsidp
->fsid_code
= 0;
271 *inop
= make_uint32(fhp
[15], fhp
[14], fhp
[13], fhp
[12]);
274 *osnamep
= "BSD 4.4";
278 fsidp
->fsid_code
= make_uint32(fhp
[7], fhp
[6], fhp
[5], fhp
[4]);
279 /* XXX could ignore 3 high-order bytes */
281 temp
= make_uint32(fhp
[3], fhp
[2], fhp
[1], fhp
[0]);
282 fsidp
->Fsid_dev
.Minor
= temp
& 0xFFFFF;
283 fsidp
->Fsid_dev
.Major
= (temp
>>20) & 0xFFF;
285 *inop
= make_uint32(fhp
[15], fhp
[14], fhp
[13], fhp
[12]);
291 fsidp
->Fsid_dev
.Minor
= fhp
[3];
292 fsidp
->Fsid_dev
.Major
= fhp
[2];
293 fsidp
->fsid_code
= 0;
295 *inop
= make_uint32(fhp
[8], fhp
[9], fhp
[10], fhp
[11]);
302 fsidp
->Fsid_dev
.Minor
= make_uint16(fhp
[2], fhp
[3]);
303 fsidp
->Fsid_dev
.Major
= make_uint16(fhp
[0], fhp
[1]);
304 fsidp
->fsid_code
= make_uint32(fhp
[4], fhp
[5], fhp
[6], fhp
[7]);
306 *inop
= make_uint32(fhp
[12], fhp
[13], fhp
[14], fhp
[15]);
315 * XXX - none of the heuristics above return this.
316 * Are there any SunOS 3.x systems around to care about?
324 fsidp
->Fsid_dev
.Minor
= fhp
[3];
325 fsidp
->Fsid_dev
.Major
= fhp
[2];
326 fsidp
->fsid_code
= make_uint32(fhp
[4], fhp
[5], fhp
[6], fhp
[7]);
328 *inop
= make_uint32(fhp
[12], fhp
[13], fhp
[14], fhp
[15]);
335 temp
= make_uint16(fhp
[0], fhp
[1]);
336 fsidp
->Fsid_dev
.Major
= (temp
>>2) & 0x3FFF;
337 temp
= make_uint24(fhp
[1], fhp
[2], fhp
[3]);
338 fsidp
->Fsid_dev
.Minor
= temp
& 0x3FFFF;
339 fsidp
->fsid_code
= make_uint32(fhp
[4], fhp
[5], fhp
[6], fhp
[7]);
341 *inop
= make_uint32(fhp
[12], fhp
[13], fhp
[14], fhp
[15]);
348 fsidp
->fsid_code
= 0;
349 fsidp
->Fsid_dev
.Minor
= fhp
[0];
350 fsidp
->Fsid_dev
.Major
= fhp
[1];
352 temp
= make_uint32(fhp
[7], fhp
[6], fhp
[5], fhp
[4]);
359 /* No numeric file system ID, so hash on the device-name */
360 if (sizeof(*fsidp
) >= 14) {
361 if (sizeof(*fsidp
) > 14)
362 memset((char *)fsidp
, 0, sizeof(*fsidp
));
363 /* just use the whole thing */
364 memcpy((char *)fsidp
, (char *)fh
, 14);
367 uint32_t tempa
[4]; /* at least 16 bytes, maybe more */
369 memset((char *)tempa
, 0, sizeof(tempa
));
370 memcpy((char *)tempa
, (char *)fh
, 14); /* ensure alignment */
371 fsidp
->Fsid_dev
.Minor
= tempa
[0] + (tempa
[1]<<1);
372 fsidp
->Fsid_dev
.Major
= tempa
[2] + (tempa
[3]<<1);
373 fsidp
->fsid_code
= 0;
376 /* VMS file ID is: (RVN, FidHi, FidLo) */
377 *inop
= make_uint32(fhp
[26], fhp
[27], fhp
[23], fhp
[22]);
379 /* Caller must save (and null-terminate?) this value */
381 *fsnamep
= (char *)&(fhp
[1]);
388 fsidp
->Fsid_dev
.Minor
= make_uint16(fhp
[2], fhp
[3]);
389 fsidp
->Fsid_dev
.Major
= make_uint16(fhp
[0], fhp
[1]);
390 fsidp
->fsid_code
= make_uint32(fhp
[4], fhp
[5], fhp
[6], fhp
[7]);
392 *inop
= make_uint32(fhp
[12], fhp
[13], fhp
[14], fhp
[15]);
399 fsidp
->Fsid_dev
.Major
= fhp
[0];
400 temp
= make_uint24(fhp
[1], fhp
[2], fhp
[3]);
401 fsidp
->Fsid_dev
.Minor
= temp
;
402 fsidp
->fsid_code
= make_uint32(fhp
[4], fhp
[5], fhp
[6], fhp
[7]);
404 *inop
= make_uint32(fhp
[12], fhp
[13], fhp
[14], fhp
[15]);
413 for (i
= 0; i
< 32; i
++)
414 (void)fprintf(stderr
, "%x.", fhp
[i
]);
415 (void)fprintf(stderr
, "\n");
417 /* Save the actual handle, so it can be display with -u */
418 for (i
= 0; i
< 32; i
++)
419 (void)snprintf(&(fsidp
->Opaque_Handle
[i
*2]), 3, "%.2X", fhp
[i
]);
421 /* XXX for now, give "bogus" values to aid debugging */
422 fsidp
->fsid_code
= 0;
423 fsidp
->Fsid_dev
.Minor
= 257;
424 fsidp
->Fsid_dev
.Major
= 257;
427 /* display will show this string instead of (257,257) */
429 *fsnamep
= "Unknown";
432 *osnamep
= "Unknown";
439 * Is this a VMS UCX file handle?
441 * (1) leading code byte [XXX not yet]
442 * (2) followed by string of printing chars & spaces
443 * (3) followed by string of nulls
446 is_UCX(const unsigned char *fhp
)
451 for (i
= 1; i
< 14; i
++) {
452 if (ND_ISPRINT(fhp
[i
])) {
458 else if (fhp
[i
] == 0) {