2N/A#
2N/A# CDDL HEADER START
2N/A#
2N/A# The contents of this file are subject to the terms of the
2N/A# Common Development and Distribution License (the "License").
2N/A# You may not use this file except in compliance with the License.
2N/A#
2N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2N/A# or http://www.opensolaris.org/os/licensing.
2N/A# See the License for the specific language governing permissions
2N/A# and limitations under the License.
2N/A#
2N/A# When distributing Covered Code, include this CDDL HEADER in each
2N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2N/A# If applicable, add the following below this CDDL HEADER, with the
2N/A# fields enclosed by brackets "[]" replaced with your own identifying
2N/A# information: Portions Copyright [yyyy] [name of copyright owner]
2N/A#
2N/A# CDDL HEADER END
2N/A#
2N/A
2N/A#
2N/A# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
2N/A#
2N/A
2N/A#
2N/A# Generate the table mapping NT status codes to strings.
2N/A# The table is sorted in numerical order by putting the
2N/A# numeric constants as a comment first on each line, and
2N/A# then running the table body through sort(1).
2N/A#
2N/A
2N/ABEGIN {
2N/A printf("/* Table generated by smb_status_gen.awk */\n");
2N/A printf("#include <smb/ntstatus.h>\n\n");
2N/A printf("typedef struct smb_status_table {\n");
2N/A printf("\tunsigned int value;\n");
2N/A printf("\tconst char *name;\n");
2N/A printf("} smb_status_table_t;\n\n");
2N/A printf("static const smb_status_table_t ntx_table[] = {\n");
2N/A}
2N/A/^#define.NT_STATUS_/ {
2N/A # Skip the _SEVERITY defines.
2N/A if ( $2 ~ /^NT_STATUS_SEVERITY_/ )
2N/A next
2N/A
2N/A
2N/A # Make sure the constant looks as expected.
2N/A if ( $3 !~ /^0x[0-9A-F]+$/ ) {
2N/A print "Warning: Unexpected format: "$0 > "/dev/stderr"
2N/A exit 1;
2N/A }
2N/A
2N/A # print: comment { macro, string },
2N/A printf("\t/* %s */\t{ %s,\t\"%s\" },\n",
2N/A $3, $2, substr($2,11)) | "sort" ;
2N/A}
2N/AEND {
2N/A close("sort");
2N/A printf("};\n");
2N/A}