Ethereal-dev: [Ethereal-dev] [patch] Implementation of NFS_ACL v3 dissector
Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.
From: Mike Frisch <mfrisch@xxxxxxxxxx>
Date: Mon, 31 Mar 2003 12:54:14 -0500
Enclosed is my implmentation of a dissector for Solaris NFS_ACL (RPC program 100227).
Index: packet-nfs.c =================================================================== RCS file: /cvsroot/ethereal/packet-nfs.c,v retrieving revision 1.85 diff -u -u -r1.85 packet-nfs.c --- packet-nfs.c 14 Feb 2003 19:51:54 -0000 1.85 +++ packet-nfs.c 31 Mar 2003 17:48:48 -0000 @@ -2831,8 +2831,8 @@ /* RFC 1813, Page 22 */ -static int -dissect_fattr3(tvbuff_t *tvb, int offset, proto_tree *tree, char* name) +int +dissect_nfs_fattr3(tvbuff_t *tvb, int offset, proto_tree *tree, char* name) { proto_item* fattr3_item = NULL; proto_tree* fattr3_tree = NULL; @@ -2884,8 +2884,9 @@ /* RFC 1813, Page 23 */ -static int -dissect_post_op_attr(tvbuff_t *tvb, int offset, proto_tree *tree, char* name) +int +dissect_nfs_post_op_attr(tvbuff_t *tvb, int offset, proto_tree *tree, + char* name) { proto_item* post_op_attr_item = NULL; proto_tree* post_op_attr_tree = NULL; @@ -2906,7 +2907,7 @@ offset += 4; switch (attributes_follow) { case TRUE: - offset = dissect_fattr3(tvb, offset, post_op_attr_tree, + offset = dissect_nfs_fattr3(tvb, offset, post_op_attr_tree, "attributes"); break; case FALSE: @@ -3007,7 +3008,7 @@ } offset = dissect_pre_op_attr (tvb, offset, wcc_data_tree, "before"); - offset = dissect_post_op_attr(tvb, offset, wcc_data_tree, "after" ); + offset = dissect_nfs_post_op_attr(tvb, offset, wcc_data_tree, "after" ); /* now we know, that wcc_data is shorter */ if (wcc_data_item) { @@ -3508,7 +3509,7 @@ offset = dissect_nfsstat3(tvb, offset, tree, &status); switch (status) { case 0: - offset = dissect_fattr3(tvb, offset, tree, "obj_attributes"); + offset = dissect_nfs_fattr3(tvb, offset, tree, "obj_attributes"); break; default: /* void */ @@ -3618,13 +3619,13 @@ switch (status) { case 0: offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "object"); - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "obj_attributes"); - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "dir_attributes"); break; default: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "dir_attributes"); break; } @@ -3655,12 +3656,12 @@ offset = dissect_nfsstat3(tvb, offset, tree, &status); switch (status) { case 0: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "obj_attributes"); offset = dissect_access(tvb, offset, tree, "access"); break; default: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "obj_attributes"); break; } @@ -3679,13 +3680,13 @@ offset = dissect_nfsstat3(tvb, offset, tree, &status); switch (status) { case 0: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "symlink_attributes"); offset = dissect_nfspath3(tvb, offset, tree, hf_nfs_readlink_data); break; default: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "symlink_attributes"); break; } @@ -3717,7 +3718,7 @@ offset = dissect_nfsstat3(tvb, offset, tree, &status); switch (status) { case 0: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "file_attributes"); offset = dissect_rpc_uint32(tvb, tree, hf_nfs_count3, offset); @@ -3726,7 +3727,7 @@ offset = dissect_nfsdata(tvb, offset, tree, hf_nfs_data); break; default: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "file_attributes"); break; } @@ -3863,7 +3864,7 @@ switch (status) { case 0: offset = dissect_post_op_fh3 (tvb, offset, pinfo, tree, "obj"); - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "obj_attributes"); offset = dissect_wcc_data(tvb, offset, tree, "dir_wcc"); break; @@ -4007,12 +4008,12 @@ offset = dissect_nfsstat3(tvb, offset, tree, &status); switch (status) { case 0: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "file_attributes"); offset = dissect_wcc_data(tvb, offset, tree, "linkdir_wcc"); break; default: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "file_attributes"); offset = dissect_wcc_data(tvb, offset, tree, "linkdir_wcc"); break; @@ -4084,7 +4085,7 @@ offset = dissect_stat(tvb, offset, tree, &status); switch (status) { case 0: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "dir_attributes"); offset = dissect_cookieverf3(tvb, offset, tree); offset = dissect_rpc_list(tvb, pinfo, tree, offset, @@ -4096,7 +4097,7 @@ offset += 4; break; default: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "dir_attributes"); break; } @@ -4150,7 +4151,7 @@ offset = dissect_rpc_uint64(tvb, entry_tree, hf_nfs_readdirplus_entry_cookie, offset); - offset = dissect_post_op_attr(tvb, offset, entry_tree, + offset = dissect_nfs_post_op_attr(tvb, offset, entry_tree, "name_attributes"); offset = dissect_post_op_fh3(tvb, offset, pinfo, entry_tree, "name_handle"); @@ -4174,7 +4175,7 @@ offset = dissect_stat(tvb, offset, tree, &status); switch (status) { case 0: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "dir_attributes"); offset = dissect_cookieverf3(tvb, offset, tree); offset = dissect_rpc_list(tvb, pinfo, tree, offset, @@ -4186,7 +4187,7 @@ offset += 4; break; default: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "dir_attributes"); break; } @@ -4206,7 +4207,7 @@ offset = dissect_nfsstat3(tvb, offset, tree, &status); switch (status) { case 0: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "obj_attributes"); offset = dissect_rpc_uint64(tvb, tree, hf_nfs_fsstat3_resok_tbytes, offset); @@ -4227,7 +4228,7 @@ offset += 4; break; default: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "obj_attributes"); break; } @@ -4262,7 +4263,7 @@ offset = dissect_nfsstat3(tvb, offset, tree, &status); switch (status) { case 0: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "obj_attributes"); rtmax = tvb_get_ntohl(tvb, offset+0); if (tree) @@ -4344,7 +4345,7 @@ offset += 4; break; default: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "obj_attributes"); break; } @@ -4365,7 +4366,7 @@ offset = dissect_nfsstat3(tvb, offset, tree, &status); switch (status) { case 0: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "obj_attributes"); linkmax = tvb_get_ntohl(tvb, offset + 0); if (tree) @@ -4387,7 +4388,7 @@ hf_nfs_pathconf_case_preserving, offset); break; default: - offset = dissect_post_op_attr(tvb, offset, tree, + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "obj_attributes"); break; }
Index: packet-nfs.h =================================================================== RCS file: /cvsroot/ethereal/packet-nfs.h,v retrieving revision 1.12 diff -u -u -r1.12 packet-nfs.h --- packet-nfs.h 2 Dec 2002 23:43:28 -0000 1.12 +++ packet-nfs.h 31 Mar 2003 17:48:54 -0000 @@ -103,6 +103,9 @@ int dissect_nfs_fh3(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, char *name); +int dissect_nfs_post_op_attr(tvbuff_t *tvb, int offset, proto_tree *tree, + char* name); + void nfs_name_snoop_add_name(int xid, tvbuff_t *tvb, int name_offset, int name_len, int parent_offset, int parent_len, unsigned char *name);
Index: packet-nfsacl.c =================================================================== RCS file: /cvsroot/ethereal/packet-nfsacl.c,v retrieving revision 1.5 diff -u -u -r1.5 packet-nfsacl.c --- packet-nfsacl.c 1 Nov 2002 00:48:38 -0000 1.5 +++ packet-nfsacl.c 31 Mar 2003 17:48:17 -0000 @@ -29,16 +29,29 @@ #include "config.h" #endif - - #include "packet-rpc.h" +#include "packet-nfs.h" static int proto_nfsacl = -1; static int hf_nfsacl_procedure_v1 = -1; static int hf_nfsacl_procedure_v2 = -1; static int hf_nfsacl_procedure_v3 = -1; +static int hf_nfsacl_entry = -1; +static int hf_nfsacl_aclcnt = -1; +static int hf_nfsacl_dfaclcnt = -1; +static int hf_nfsacl2_status = -1; +static int hf_nfsacl3_status = -1; +static int hf_nfsacl_aclent = -1; +static int hf_nfsacl_aclent_type = -1; +static int hf_nfsacl_aclent_uid = 1; +static int hf_nfsacl_aclent_perm = -1; static gint ett_nfsacl = -1; +static gint ett_nfsacl_mask = -1; +static gint ett_nfsacl_entry = -1; +static gint ett_nfsacl_aclent = -1; +static gint ett_nfsacl_aclent_perm = -1; +static gint ett_nfsacl_aclent_entries = -1; #define NFSACL_PROGRAM 100227 @@ -52,6 +65,9 @@ #define NFSACLPROC3_GETACL 1 #define NFSACLPROC3_SETACL 2 +#define ACL2_OK 0 +#define ACL3_OK 0 + /* proc number, "proc name", dissect_request, dissect_reply */ /* NULL as function pointer means: type of arguments is "void". */ static const vsff nfsacl1_proc[] = { @@ -64,7 +80,6 @@ { 0, NULL } }; - static const vsff nfsacl2_proc[] = { { NFSACLPROC_NULL, "NULL", NULL, NULL }, @@ -87,14 +102,268 @@ { 0, NULL } }; +static int +dissect_nfsacl_mask(tvbuff_t *tvb, int offset, proto_tree *tree, + char *name) +{ + guint32 mask; + proto_item *mask_item = NULL; + proto_tree *mask_tree = NULL; + + mask = tvb_get_ntohl(tvb, offset + 0); + + if (tree) + { + mask_item = proto_tree_add_text(tree, tvb, offset, 4, "%s: 0x%02x", + name, mask); + + if (mask_item) + mask_tree = proto_item_add_subtree(mask_item, ett_nfsacl_mask); + } + + if (mask_tree) + { + proto_tree_add_text(mask_tree, tvb, offset, 4, "%s", + decode_boolean_bitfield(mask, 0x01, 8, "ACL entry", + "(no ACL entry)")); + proto_tree_add_text(mask_tree, tvb, offset, 4, "%s", + decode_boolean_bitfield(mask, 0x02, 8, "ACL count", + "(no ACL count)")); + proto_tree_add_text(mask_tree, tvb, offset, 4, "%s", + decode_boolean_bitfield(mask, 0x04, 8, "default ACL entry", + "(no default ACL entry)")); + proto_tree_add_text(mask_tree, tvb, offset, 4, "%s", + decode_boolean_bitfield(mask, 0x08, 8, "default ACL count", + "(no default ACL count)")); + } + + offset += 4; + return offset; +} + +static int +dissect_nfsacl3_getacl_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, + proto_tree *tree) +{ + offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "fhandle"); + offset = dissect_nfsacl_mask(tvb, offset, tree, "mask"); + + return offset; +} + +#define NA_READ 0x4 +#define NA_WRITE 0x2 +#define NA_EXEC 0x1 + +static const value_string names_nfsacl_aclent_type[] = { +#define NA_USER_OBJ 0x1 + { NA_USER_OBJ, "NA_USER_OBJ" }, +#define NA_USER 0x2 + { NA_USER, "NA_USER" }, +#define NA_GROUP_OBJ 0x4 + { NA_GROUP_OBJ, "NA_GROUP_OBJ" }, +#define NA_GROUP 0x8 + { NA_GROUP, "NA_GROUP" }, +#define NA_CLASS_OBJ 0x10 + { NA_CLASS_OBJ, "NA_CLASS_OBJ" }, +#define NA_OTHER_OBJ 0x20 + { NA_OTHER_OBJ, "NA_OTHER_OBJ" }, +#define NA_ACL_DEFAULT 0x1000 + { NA_ACL_DEFAULT, "NA_ACL_DEFAULT" }, + { NA_ACL_DEFAULT | NA_USER_OBJ, "Default NA_USER_OBJ" }, + { NA_ACL_DEFAULT | NA_USER, "Default NA_USER" }, + { NA_ACL_DEFAULT | NA_GROUP_OBJ, "Default NA_GROUP_OBJ" }, + { NA_ACL_DEFAULT | NA_GROUP, "Default NA_GROUP" }, + { NA_ACL_DEFAULT | NA_CLASS_OBJ, "Default NA_CLASS_OBJ" }, + { NA_ACL_DEFAULT | NA_OTHER_OBJ, "Default NA_OTHER_OBJ" }, + { 0, NULL }, +}; + +static int +dissect_nfsacl_aclent(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, + proto_tree* tree) +{ + proto_item *entry_item = NULL; + proto_tree *entry_tree = NULL; + guint32 perm; + proto_item *perm_item = NULL; + proto_tree *perm_tree = NULL; + + if (tree) + { + entry_item = proto_tree_add_item(tree, hf_nfsacl_aclent, tvb, + offset + 0, -1, FALSE); + entry_tree = proto_item_add_subtree(entry_item, ett_nfsacl_aclent); + } + + offset = dissect_rpc_uint32(tvb, entry_tree, hf_nfsacl_aclent_type, offset); + offset = dissect_rpc_uint32(tvb, entry_tree, hf_nfsacl_aclent_uid, offset); + + perm = tvb_get_ntohl(tvb, offset); + + perm_item = proto_tree_add_uint(entry_tree, hf_nfsacl_aclent_perm, + tvb, offset, 4, perm); + + if (perm_item) + perm_tree = proto_item_add_subtree(perm_item, ett_nfsacl_aclent_perm); + + if (perm_tree) + { + proto_tree_add_text(perm_tree, tvb, offset, 4, "%s", + decode_boolean_bitfield(perm, NA_READ, 4, "READ", "no READ")); + + proto_tree_add_text(perm_tree, tvb, offset, 4, "%s", + decode_boolean_bitfield(perm, NA_WRITE, 4, "WRITE", "no WRITE")); + + proto_tree_add_text(perm_tree, tvb, offset, 4, "%s", + decode_boolean_bitfield(perm, NA_EXEC, 4, "EXEC", "no EXEC")); + } + + offset += 4; + + return offset; +} + +static int +dissect_nfsacl_secattr(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, + proto_tree *tree) +{ + guint32 aclcnt, dfaclcnt; + guint32 i; + proto_item *entry_item = NULL; + proto_tree *entry_tree = NULL; + + offset = dissect_nfsacl_mask(tvb, offset, tree, "mask"); + offset = dissect_rpc_uint32(tvb, tree, hf_nfsacl_aclcnt, offset); + + aclcnt = tvb_get_ntohl(tvb, offset); + + entry_item = proto_tree_add_text(tree, tvb, offset, 4, + "Total ACL entries: %d", aclcnt); + + if (entry_item) + entry_tree = proto_item_add_subtree(entry_item, + ett_nfsacl_aclent_entries); + + offset += 4; + + if (aclcnt > 0) + { + for (i = 0; i < aclcnt; i++) + offset = dissect_nfsacl_aclent(tvb, offset, pinfo, entry_tree); + } + + /* */ + + offset = dissect_rpc_uint32(tvb, tree, hf_nfsacl_dfaclcnt, offset); + + dfaclcnt = tvb_get_ntohl(tvb, offset); + + entry_item = proto_tree_add_text(tree, tvb, offset, 4, + "Total default ACL entries: %d", dfaclcnt); + + if (entry_item) + entry_tree = proto_item_add_subtree(entry_item, + ett_nfsacl_aclent_entries); + + offset += 4; + + if (dfaclcnt > 0) + { + for (i = 0; i < dfaclcnt; i++) + offset = dissect_nfsacl_aclent(tvb, offset, pinfo, entry_tree); + } + + return offset; +} + +static int +dissect_nfsacl3_getacl_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, + proto_tree *tree) +{ + guint32 status; + proto_item *entry_item = NULL; + proto_tree *entry_tree = NULL; + + status = tvb_get_ntohl(tvb, offset + 0); + + if (tree) + proto_tree_add_uint(tree, hf_nfsacl3_status, tvb, offset + 0, 4, + status); + + offset += 4; + + if (tree) + { + entry_item = proto_tree_add_item(tree, hf_nfsacl_entry, tvb, + offset + 0, -1, FALSE); + if (entry_item) + entry_tree = proto_item_add_subtree(entry_item, ett_nfsacl_entry); + } + + if (entry_tree) + offset = dissect_nfs_post_op_attr(tvb, offset, entry_tree, "fattr"); + + if (status != ACL3_OK) + return offset; + + if (entry_tree) + offset = dissect_nfsacl_secattr(tvb, offset, pinfo, entry_tree); + + return offset; +} + +static int +dissect_nfsacl3_setacl_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, + proto_tree *tree) + +{ + proto_item *acl_item = NULL; + proto_tree *acl_tree = NULL; + + offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "fhandle"); + + if (tree) + { + acl_item = proto_tree_add_item(tree, hf_nfsacl_entry, tvb, offset + 0, + -1, FALSE); + + if (acl_item) + acl_tree = proto_item_add_subtree(acl_item, ett_nfsacl_entry); + } + + if (acl_tree) + offset = dissect_nfsacl_secattr(tvb, offset, pinfo, acl_tree); + + return offset; +} + +static int +dissect_nfsacl3_setacl_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, + proto_tree *tree) +{ + guint32 status = tvb_get_ntohl(tvb, offset + 0); + + if (tree) + proto_tree_add_uint(tree, hf_nfsacl3_status, tvb, offset + 0, 4, + status); + + offset += 4; + + // if (entry_tree) + offset = dissect_nfs_post_op_attr(tvb, offset, tree, "fattr"); + + + return offset; +} static const vsff nfsacl3_proc[] = { { NFSACLPROC_NULL, "NULL", NULL, NULL }, { NFSACLPROC3_GETACL, "GETACL", - NULL, NULL }, + dissect_nfsacl3_getacl_call, dissect_nfsacl3_getacl_reply }, { NFSACLPROC3_SETACL, "SETACL", - NULL, NULL }, + dissect_nfsacl3_setacl_call, dissect_nfsacl3_setacl_reply }, { 0, NULL, NULL, NULL } }; static const value_string nfsacl3_proc_vals[] = { @@ -104,6 +373,16 @@ { 0, NULL } }; +static const value_string names_nfsacl2_status[] = { + { ACL2_OK, "ACL2_OK" }, + { 0, NULL } +}; + +static const value_string names_nfsacl3_status[] = { + { ACL3_OK, "ACL3_OK" }, + { 0, NULL } +}; + void proto_register_nfsacl(void) { @@ -116,11 +395,46 @@ VALS(nfsacl2_proc_vals), 0, "V2 Procedure", HFILL }}, { &hf_nfsacl_procedure_v3, { "V3 Procedure", "nfsacl.procedure_v3", FT_UINT32, BASE_DEC, - VALS(nfsacl3_proc_vals), 0, "V3 Procedure", HFILL }} + VALS(nfsacl3_proc_vals), 0, "V3 Procedure", HFILL }}, + /* generic */ + { &hf_nfsacl_entry, { + "ACL", "nfsacl.acl", FT_NONE, 0, + NULL, 0, "ACL", HFILL }}, + { &hf_nfsacl_aclcnt, { + "ACL count", "nfsacl.aclcnt", FT_UINT32, BASE_DEC, + NULL, 0, "ACL count", HFILL }}, + { &hf_nfsacl_dfaclcnt, { + "Default ACL count", "nfsacl.dfaclcnt", FT_UINT32, BASE_DEC, + NULL, 0, "Default ACL count", HFILL }}, + { &hf_nfsacl_aclent, { + "ACL Entry", "nfsacl.aclent", FT_NONE, 0, + NULL, 0, "ACL", HFILL }}, + { &hf_nfsacl_aclent_type, { + "Type", "nfsacl.aclent.type", FT_UINT32, BASE_DEC, + VALS(names_nfsacl_aclent_type), 0, "Type", HFILL }}, + { &hf_nfsacl_aclent_uid, { + "UID", "nfsacl.aclent.uid", FT_UINT32, BASE_DEC, + NULL, 0, "UID", HFILL }}, + { &hf_nfsacl_aclent_perm, { + "Permissions", "nfsacl.aclent.perm", FT_UINT32, BASE_DEC, + NULL, 0, "Permissions", HFILL }}, + /* V2 */ + { &hf_nfsacl2_status, { + "Status", "nfsacl.status2", FT_UINT32, BASE_DEC, + VALS(names_nfsacl2_status), 0, "Status", HFILL }}, + /* V3 */ + { &hf_nfsacl3_status, { + "Status", "nfsacl.status3", FT_UINT32, BASE_DEC, + VALS(names_nfsacl3_status), 0, "Status", HFILL }}, }; static gint *ett[] = { &ett_nfsacl, + &ett_nfsacl_mask, + &ett_nfsacl_entry, + &ett_nfsacl_aclent, + &ett_nfsacl_aclent_perm, + &ett_nfsacl_aclent_entries }; proto_nfsacl = proto_register_protocol("NFSACL", "NFSACL", "nfsacl");
- Follow-Ups:
- Re: [Ethereal-dev] [patch] Implementation of NFS_ACL v3 dissector
- From: Guy Harris
- Re: [Ethereal-dev] [patch] Implementation of NFS_ACL v3 dissector
- Prev by Date: [Ethereal-dev] More on desegmentation
- Next by Date: Re: [Ethereal-dev] [patch] Implementation of NFS_ACL v3 dissector
- Previous by thread: [Ethereal-dev] More on desegmentation
- Next by thread: Re: [Ethereal-dev] [patch] Implementation of NFS_ACL v3 dissector
- Index(es):