123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482 |
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include <netdissect-stdinc.h>
- #include <stdio.h>
- #include <string.h>
- #include "netdissect.h"
- #include "nfsfh.h"
- #define FHT_UNKNOWN 0
- #define FHT_AUSPEX 1
- #define FHT_DECOSF 2
- #define FHT_IRIX4 3
- #define FHT_IRIX5 4
- #define FHT_SUNOS3 5
- #define FHT_SUNOS4 6
- #define FHT_ULTRIX 7
- #define FHT_VMSUCX 8
- #define FHT_SUNOS5 9
- #define FHT_AIX32 10
- #define FHT_HPUX9 11
- #define FHT_BSD44 12
- #ifdef ultrix
- #define XFF(x) ((uint32_t)(x))
- #else
- #define XFF(x) (x)
- #endif
- #define make_uint32(msb,b,c,lsb)\
- (XFF(lsb) + (XFF(c)<<8) + (XFF(b)<<16) + (XFF(msb)<<24))
- #define make_uint24(msb,b, lsb)\
- (XFF(lsb) + (XFF(b)<<8) + (XFF(msb)<<16))
- #define make_uint16(msb,lsb)\
- (XFF(lsb) + (XFF(msb)<<8))
- #ifdef __alpha
-
- #define make_uint48(msb,b,c,d,e,lsb)\
- ((lsb) + ((e)<<8) + ((d)<<16) + ((c)<<24) + ((b)<<32) + ((msb)<<40))
- #else
-
- #define make_uint48(msb,b,c,d,e,lsb)\
- ((lsb) + ((e)<<8) + ((d)<<16) + ((c)<<24))
- #endif
- static int is_UCX(const unsigned char *, u_int);
- void
- Parse_fh(register const unsigned char *fh, u_int len, my_fsid *fsidp,
- uint32_t *inop,
- const char **osnamep,
- const char **fsnamep,
- int ourself)
- {
- register const unsigned char *fhp = fh;
- uint32_t temp;
- int fhtype = FHT_UNKNOWN;
- u_int i;
-
- if (len < 16/4)
- fhtype = FHT_UNKNOWN;
- else {
- if (ourself) {
-
- #if defined(IRIX40)
- fhtype = FHT_IRIX4;
- #endif
- #if defined(IRIX50)
- fhtype = FHT_IRIX5;
- #endif
- #if defined(IRIX51)
- fhtype = FHT_IRIX5;
- #endif
- #if defined(SUNOS4)
- fhtype = FHT_SUNOS4;
- #endif
- #if defined(SUNOS5)
- fhtype = FHT_SUNOS5;
- #endif
- #if defined(ultrix)
- fhtype = FHT_ULTRIX;
- #endif
- #if defined(__osf__)
- fhtype = FHT_DECOSF;
- #endif
- #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__) \
- || defined(__OpenBSD__)
- fhtype = FHT_BSD44;
- #endif
- }
-
- else if ((fhp[0] == 0) && (fhp[1] == 0)) {
-
-
- if ((fhp[2] == 0) && (fhp[3] == 0)) {
-
-
- fhtype = FHT_AUSPEX;
- }
- else {
-
- if ((fhp[4] != 0) && (fhp[5] == 0) &&
- (fhp[8] == 12) && (fhp[9] == 0)) {
-
- fhtype = FHT_DECOSF;
- }
- else {
-
-
- if ((fhp[4] == 0) && (fhp[5] == 8) && (fhp[6] == 0) &&
- (fhp[7] == 0)) {
-
- fhtype = FHT_IRIX4;
- }
- else {
-
- fhtype = FHT_SUNOS4;
- }
- }
- }
- }
- else {
-
- if ((fhp[2] == 0) && (fhp[3] == 0)) {
-
- if ((fhp[6] == 0) && (fhp[7] == 0)) {
- fhtype = FHT_BSD44;
- }
-
- else if ((len >= 24/4) && (fhp[21] == 0) && (fhp[23] == 0)) {
- fhtype = FHT_ULTRIX;
- }
- else {
-
-
- if (fhp[9] == 10)
- fhtype = FHT_SUNOS5;
-
- }
- }
- else {
-
- if ((fhp[8] == 12) && (fhp[9] == 0)) {
- fhtype = FHT_DECOSF;
- }
- else if ((fhp[8] == 0) && (fhp[9] == 10)) {
-
- if ((fhp[7] == 0) && (fhp[6] == 0) &&
- (fhp[5] == 0) && (fhp[4] == 0)) {
-
- fhtype = FHT_HPUX9;
- }
- else if (fhp[7] == 2) {
-
- fhtype = FHT_SUNOS5;
- }
- else {
-
- fhtype = FHT_SUNOS5;
- }
- }
- else {
- if (is_UCX(fhp, len)) {
- fhtype = FHT_VMSUCX;
- }
- else {
- fhtype = FHT_UNKNOWN;
- }
- }
- }
- }
- }
-
- switch (fhtype) {
- case FHT_AUSPEX:
- fsidp->Fsid_dev.Minor = fhp[7];
- fsidp->Fsid_dev.Major = fhp[6];
- fsidp->fsid_code = 0;
- *inop = make_uint32(fhp[12], fhp[13], fhp[14], fhp[15]);
- if (osnamep)
- *osnamep = "Auspex";
- break;
- case FHT_BSD44:
- fsidp->Fsid_dev.Minor = fhp[0];
- fsidp->Fsid_dev.Major = fhp[1];
- fsidp->fsid_code = 0;
- *inop = make_uint32(fhp[15], fhp[14], fhp[13], fhp[12]);
- if (osnamep)
- *osnamep = "BSD 4.4";
- break;
- case FHT_DECOSF:
- fsidp->fsid_code = make_uint32(fhp[7], fhp[6], fhp[5], fhp[4]);
-
- temp = make_uint32(fhp[3], fhp[2], fhp[1], fhp[0]);
- fsidp->Fsid_dev.Minor = temp & 0xFFFFF;
- fsidp->Fsid_dev.Major = (temp>>20) & 0xFFF;
- *inop = make_uint32(fhp[15], fhp[14], fhp[13], fhp[12]);
- if (osnamep)
- *osnamep = "OSF";
- break;
- case FHT_IRIX4:
- fsidp->Fsid_dev.Minor = fhp[3];
- fsidp->Fsid_dev.Major = fhp[2];
- fsidp->fsid_code = 0;
- *inop = make_uint32(fhp[8], fhp[9], fhp[10], fhp[11]);
- if (osnamep)
- *osnamep = "IRIX4";
- break;
- case FHT_IRIX5:
- fsidp->Fsid_dev.Minor = make_uint16(fhp[2], fhp[3]);
- fsidp->Fsid_dev.Major = make_uint16(fhp[0], fhp[1]);
- fsidp->fsid_code = make_uint32(fhp[4], fhp[5], fhp[6], fhp[7]);
- *inop = make_uint32(fhp[12], fhp[13], fhp[14], fhp[15]);
- if (osnamep)
- *osnamep = "IRIX5";
- break;
- #ifdef notdef
- case FHT_SUNOS3:
-
- if (osnamep)
- *osnamep = "SUNOS3";
- break;
- #endif
- case FHT_SUNOS4:
- fsidp->Fsid_dev.Minor = fhp[3];
- fsidp->Fsid_dev.Major = fhp[2];
- fsidp->fsid_code = make_uint32(fhp[4], fhp[5], fhp[6], fhp[7]);
- *inop = make_uint32(fhp[12], fhp[13], fhp[14], fhp[15]);
- if (osnamep)
- *osnamep = "SUNOS4";
- break;
- case FHT_SUNOS5:
- temp = make_uint16(fhp[0], fhp[1]);
- fsidp->Fsid_dev.Major = (temp>>2) & 0x3FFF;
- temp = make_uint24(fhp[1], fhp[2], fhp[3]);
- fsidp->Fsid_dev.Minor = temp & 0x3FFFF;
- fsidp->fsid_code = make_uint32(fhp[4], fhp[5], fhp[6], fhp[7]);
- *inop = make_uint32(fhp[12], fhp[13], fhp[14], fhp[15]);
- if (osnamep)
- *osnamep = "SUNOS5";
- break;
- case FHT_ULTRIX:
- fsidp->fsid_code = 0;
- fsidp->Fsid_dev.Minor = fhp[0];
- fsidp->Fsid_dev.Major = fhp[1];
- temp = make_uint32(fhp[7], fhp[6], fhp[5], fhp[4]);
- *inop = temp;
- if (osnamep)
- *osnamep = "Ultrix";
- break;
- case FHT_VMSUCX:
-
- if (sizeof(*fsidp) >= 14) {
- if (sizeof(*fsidp) > 14)
- memset((char *)fsidp, 0, sizeof(*fsidp));
-
- memcpy((char *)fsidp, (const char *)fh, 14);
- }
- else {
- uint32_t tempa[4];
- memset((char *)tempa, 0, sizeof(tempa));
- memcpy((char *)tempa, (const char *)fh, 14);
- fsidp->Fsid_dev.Minor = tempa[0] + (tempa[1]<<1);
- fsidp->Fsid_dev.Major = tempa[2] + (tempa[3]<<1);
- fsidp->fsid_code = 0;
- }
-
- *inop = make_uint32(fhp[26], fhp[27], fhp[23], fhp[22]);
-
- if (fsnamep)
- *fsnamep = (const char *)&(fhp[1]);
- if (osnamep)
- *osnamep = "VMS";
- break;
- case FHT_AIX32:
- fsidp->Fsid_dev.Minor = make_uint16(fhp[2], fhp[3]);
- fsidp->Fsid_dev.Major = make_uint16(fhp[0], fhp[1]);
- fsidp->fsid_code = make_uint32(fhp[4], fhp[5], fhp[6], fhp[7]);
- *inop = make_uint32(fhp[12], fhp[13], fhp[14], fhp[15]);
- if (osnamep)
- *osnamep = "AIX32";
- break;
- case FHT_HPUX9:
- fsidp->Fsid_dev.Major = fhp[0];
- temp = make_uint24(fhp[1], fhp[2], fhp[3]);
- fsidp->Fsid_dev.Minor = temp;
- fsidp->fsid_code = make_uint32(fhp[4], fhp[5], fhp[6], fhp[7]);
- *inop = make_uint32(fhp[12], fhp[13], fhp[14], fhp[15]);
- if (osnamep)
- *osnamep = "HPUX9";
- break;
- case FHT_UNKNOWN:
- #ifdef DEBUG
-
- for (i = 0; i < len*4; i++)
- (void)fprintf(stderr, "%x.", fhp[i]);
- (void)fprintf(stderr, "\n");
- #endif
-
- for (i = 0; i < len*4 && i*2 < sizeof(fsidp->Opaque_Handle) - 1; i++)
- (void)snprintf(&(fsidp->Opaque_Handle[i*2]), 3, "%.2X", fhp[i]);
- fsidp->Opaque_Handle[i*2] = '\0';
-
- fsidp->fsid_code = 0;
- fsidp->Fsid_dev.Minor = 257;
- fsidp->Fsid_dev.Major = 257;
- *inop = 1;
-
- if (fsnamep)
- *fsnamep = "Unknown";
- if (osnamep)
- *osnamep = "Unknown";
- break;
- }
- }
- static int
- is_UCX(const unsigned char *fhp, u_int len)
- {
- register u_int i;
- int seen_null = 0;
-
- if (len < 28/4)
- return(0);
- for (i = 1; i < 14; i++) {
- if (ND_ISPRINT(fhp[i])) {
- if (seen_null)
- return(0);
- else
- continue;
- }
- else if (fhp[i] == 0) {
- seen_null = 1;
- continue;
- }
- else
- return(0);
- }
- return(1);
- }
|