1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* SCTP kernel implementation
3 * (C) Copyright IBM Corp. 2001, 2004
4 * Copyright (c) 1999-2000 Cisco, Inc.
5 * Copyright (c) 1999-2001 Motorola, Inc.
6 * Copyright (c) 2001 Intel Corp.
8 * This file is part of the SCTP kernel implementation
10 * This file converts numerical ID value to alphabetical names for SCTP
11 * terms such as chunk type, parameter time, event type, etc.
13 * Please send any bug reports or fixes you make to the
15 * lksctp developers <linux-sctp@vger.kernel.org>
17 * Written or modified by:
18 * La Monte H.P. Yarroll <piggy@acm.org>
19 * Karl Knutson <karl@athena.chicago.il.us>
20 * Xingang Guo <xingang.guo@intel.com>
21 * Jon Grimm <jgrimm@us.ibm.com>
22 * Daisy Chang <daisyc@us.ibm.com>
23 * Sridhar Samudrala <sri@us.ibm.com>
26 #include <net/sctp/sctp.h>
28 /* These are printable forms of Chunk ID's from section 3.1. */
29 static const char *const sctp_cid_tbl
[SCTP_NUM_BASE_CHUNK_TYPES
] = {
47 /* Lookup "chunk type" debug name. */
48 const char *sctp_cname(const union sctp_subtype cid
)
50 if (cid
.chunk
<= SCTP_CID_BASE_MAX
)
51 return sctp_cid_tbl
[cid
.chunk
];
57 case SCTP_CID_ASCONF_ACK
:
60 case SCTP_CID_FWD_TSN
:
72 case SCTP_CID_I_FWD_TSN
:
79 return "unknown chunk";
82 /* These are printable forms of the states. */
83 const char *const sctp_state_tbl
[SCTP_STATE_NUM_STATES
] = {
86 "STATE_COOKIE_ECHOED",
88 "STATE_SHUTDOWN_PENDING",
89 "STATE_SHUTDOWN_SENT",
90 "STATE_SHUTDOWN_RECEIVED",
91 "STATE_SHUTDOWN_ACK_SENT",
94 /* Events that could change the state of an association. */
95 const char *const sctp_evttype_tbl
[] = {
103 /* Return value of a state function */
104 const char *const sctp_status_tbl
[] = {
105 "DISPOSITION_DISCARD",
106 "DISPOSITION_CONSUME",
108 "DISPOSITION_DELETE_TCB",
110 "DISPOSITION_VIOLATION",
111 "DISPOSITION_NOT_IMPL",
116 /* Printable forms of primitives */
117 static const char *const sctp_primitive_tbl
[SCTP_NUM_PRIMITIVE_TYPES
] = {
118 "PRIMITIVE_ASSOCIATE",
119 "PRIMITIVE_SHUTDOWN",
122 "PRIMITIVE_REQUESTHEARTBEAT",
126 /* Lookup primitive debug name. */
127 const char *sctp_pname(const union sctp_subtype id
)
129 if (id
.primitive
<= SCTP_EVENT_PRIMITIVE_MAX
)
130 return sctp_primitive_tbl
[id
.primitive
];
131 return "unknown_primitive";
134 static const char *const sctp_other_tbl
[] = {
136 "ICMP_PROTO_UNREACH",
139 /* Lookup "other" debug name. */
140 const char *sctp_oname(const union sctp_subtype id
)
142 if (id
.other
<= SCTP_EVENT_OTHER_MAX
)
143 return sctp_other_tbl
[id
.other
];
144 return "unknown 'other' event";
147 static const char *const sctp_timer_tbl
[] = {
151 "TIMEOUT_T2_SHUTDOWN",
154 "TIMEOUT_T5_SHUTDOWN_GUARD",
162 /* Lookup timer debug name. */
163 const char *sctp_tname(const union sctp_subtype id
)
165 BUILD_BUG_ON(SCTP_EVENT_TIMEOUT_MAX
+ 1 != ARRAY_SIZE(sctp_timer_tbl
));
167 if (id
.timeout
< ARRAY_SIZE(sctp_timer_tbl
))
168 return sctp_timer_tbl
[id
.timeout
];
169 return "unknown_timer";