blob: 291c97b07058218635fcfcd06214aa79d74ec80d [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001 Intel Corp.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09006 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05007 * This file is part of the SCTP kernel implementation
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This file converts numerical ID value to alphabetical names for SCTP
10 * terms such as chunk type, parameter time, event type, etc.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090011 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050012 * This SCTP implementation is free software;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090013 * you can redistribute it and/or modify it under the terms of
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * the GNU General Public License as published by
15 * the Free Software Foundation; either version 2, or (at your option)
16 * any later version.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090017 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050018 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
20 * ************************
21 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
22 * See the GNU General Public License for more details.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090023 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * You should have received a copy of the GNU General Public License
Jeff Kirsher4b2f13a2013-12-06 06:28:48 -080025 * along with GNU CC; see the file COPYING. If not, see
26 * <http://www.gnu.org/licenses/>.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090027 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * Please send any bug reports or fixes you make to the
29 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020030 * lksctp developers <linux-sctp@vger.kernel.org>
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090031 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090032 * Written or modified by:
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * La Monte H.P. Yarroll <piggy@acm.org>
34 * Karl Knutson <karl@athena.chicago.il.us>
35 * Xingang Guo <xingang.guo@intel.com>
36 * Jon Grimm <jgrimm@us.ibm.com>
37 * Daisy Chang <daisyc@us.ibm.com>
38 * Sridhar Samudrala <sri@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
40
41#include <net/sctp/sctp.h>
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* These are printable forms of Chunk ID's from section 3.1. */
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -070044static const char *const sctp_cid_tbl[SCTP_NUM_BASE_CHUNK_TYPES] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 "DATA",
46 "INIT",
47 "INIT_ACK",
48 "SACK",
49 "HEARTBEAT",
50 "HEARTBEAT_ACK",
51 "ABORT",
52 "SHUTDOWN",
53 "SHUTDOWN_ACK",
54 "ERROR",
55 "COOKIE_ECHO",
56 "COOKIE_ACK",
57 "ECN_ECNE",
58 "ECN_CWR",
59 "SHUTDOWN_COMPLETE",
60};
61
62/* Lookup "chunk type" debug name. */
Xin Longbfc6f822017-08-05 20:00:04 +080063const char *sctp_cname(const union sctp_subtype cid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 if (cid.chunk <= SCTP_CID_BASE_MAX)
66 return sctp_cid_tbl[cid.chunk];
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 switch (cid.chunk) {
69 case SCTP_CID_ASCONF:
70 return "ASCONF";
71
72 case SCTP_CID_ASCONF_ACK:
73 return "ASCONF_ACK";
74
75 case SCTP_CID_FWD_TSN:
76 return "FWD_TSN";
77
Wei Yongjun906f8252009-03-02 09:46:10 +000078 case SCTP_CID_AUTH:
79 return "AUTH";
80
Xin Longd1969752017-12-18 14:13:17 +080081 case SCTP_CID_RECONF:
82 return "RECONF";
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 default:
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070085 break;
86 }
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return "unknown chunk";
89}
90
91/* These are printable forms of the states. */
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -070092const char *const sctp_state_tbl[SCTP_STATE_NUM_STATES] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 "STATE_CLOSED",
94 "STATE_COOKIE_WAIT",
95 "STATE_COOKIE_ECHOED",
96 "STATE_ESTABLISHED",
97 "STATE_SHUTDOWN_PENDING",
98 "STATE_SHUTDOWN_SENT",
99 "STATE_SHUTDOWN_RECEIVED",
100 "STATE_SHUTDOWN_ACK_SENT",
101};
102
103/* Events that could change the state of an association. */
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700104const char *const sctp_evttype_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 "EVENT_T_unknown",
106 "EVENT_T_CHUNK",
107 "EVENT_T_TIMEOUT",
108 "EVENT_T_OTHER",
109 "EVENT_T_PRIMITIVE"
110};
111
112/* Return value of a state function */
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700113const char *const sctp_status_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 "DISPOSITION_DISCARD",
115 "DISPOSITION_CONSUME",
116 "DISPOSITION_NOMEM",
117 "DISPOSITION_DELETE_TCB",
118 "DISPOSITION_ABORT",
119 "DISPOSITION_VIOLATION",
120 "DISPOSITION_NOT_IMPL",
121 "DISPOSITION_ERROR",
122 "DISPOSITION_BUG"
123};
124
125/* Printable forms of primitives */
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700126static const char *const sctp_primitive_tbl[SCTP_NUM_PRIMITIVE_TYPES] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 "PRIMITIVE_ASSOCIATE",
128 "PRIMITIVE_SHUTDOWN",
129 "PRIMITIVE_ABORT",
130 "PRIMITIVE_SEND",
131 "PRIMITIVE_REQUESTHEARTBEAT",
Wei Yongjun906f8252009-03-02 09:46:10 +0000132 "PRIMITIVE_ASCONF",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133};
134
135/* Lookup primitive debug name. */
Xin Longbfc6f822017-08-05 20:00:04 +0800136const char *sctp_pname(const union sctp_subtype id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (id.primitive <= SCTP_EVENT_PRIMITIVE_MAX)
139 return sctp_primitive_tbl[id.primitive];
140 return "unknown_primitive";
141}
142
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700143static const char *const sctp_other_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 "NO_PENDING_TSN",
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900145 "ICMP_PROTO_UNREACH",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
148/* Lookup "other" debug name. */
Xin Longbfc6f822017-08-05 20:00:04 +0800149const char *sctp_oname(const union sctp_subtype id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (id.other <= SCTP_EVENT_OTHER_MAX)
152 return sctp_other_tbl[id.other];
153 return "unknown 'other' event";
154}
155
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700156static const char *const sctp_timer_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 "TIMEOUT_NONE",
158 "TIMEOUT_T1_COOKIE",
159 "TIMEOUT_T1_INIT",
160 "TIMEOUT_T2_SHUTDOWN",
161 "TIMEOUT_T3_RTX",
162 "TIMEOUT_T4_RTO",
163 "TIMEOUT_T5_SHUTDOWN_GUARD",
164 "TIMEOUT_HEARTBEAT",
Colin Ian King14640862017-01-24 09:25:54 +0000165 "TIMEOUT_RECONF",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 "TIMEOUT_SACK",
167 "TIMEOUT_AUTOCLOSE",
168};
169
170/* Lookup timer debug name. */
Xin Longbfc6f822017-08-05 20:00:04 +0800171const char *sctp_tname(const union sctp_subtype id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Colin Ian King14640862017-01-24 09:25:54 +0000173 BUILD_BUG_ON(SCTP_EVENT_TIMEOUT_MAX + 1 != ARRAY_SIZE(sctp_timer_tbl));
174
175 if (id.timeout < ARRAY_SIZE(sctp_timer_tbl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return sctp_timer_tbl[id.timeout];
177 return "unknown_timer";
178}