blob: e89015d8935a160f3e0f3e571a976d1cd4823993 [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
25 * along with GNU CC; see the file COPYING. If not, write to
26 * the Free Software Foundation, 59 Temple Place - Suite 330,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090027 * Boston, MA 02111-1307, USA.
28 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * Please send any bug reports or fixes you make to the
30 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020031 * lksctp developers <linux-sctp@vger.kernel.org>
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090032 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090033 * Written or modified by:
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 * La Monte H.P. Yarroll <piggy@acm.org>
35 * Karl Knutson <karl@athena.chicago.il.us>
36 * Xingang Guo <xingang.guo@intel.com>
37 * Jon Grimm <jgrimm@us.ibm.com>
38 * Daisy Chang <daisyc@us.ibm.com>
39 * Sridhar Samudrala <sri@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 */
41
42#include <net/sctp/sctp.h>
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/* These are printable forms of Chunk ID's from section 3.1. */
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -070045static const char *const sctp_cid_tbl[SCTP_NUM_BASE_CHUNK_TYPES] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 "DATA",
47 "INIT",
48 "INIT_ACK",
49 "SACK",
50 "HEARTBEAT",
51 "HEARTBEAT_ACK",
52 "ABORT",
53 "SHUTDOWN",
54 "SHUTDOWN_ACK",
55 "ERROR",
56 "COOKIE_ECHO",
57 "COOKIE_ACK",
58 "ECN_ECNE",
59 "ECN_CWR",
60 "SHUTDOWN_COMPLETE",
61};
62
63/* Lookup "chunk type" debug name. */
64const char *sctp_cname(const sctp_subtype_t cid)
65{
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if (cid.chunk <= SCTP_CID_BASE_MAX)
67 return sctp_cid_tbl[cid.chunk];
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 switch (cid.chunk) {
70 case SCTP_CID_ASCONF:
71 return "ASCONF";
72
73 case SCTP_CID_ASCONF_ACK:
74 return "ASCONF_ACK";
75
76 case SCTP_CID_FWD_TSN:
77 return "FWD_TSN";
78
Wei Yongjun906f8252009-03-02 09:46:10 +000079 case SCTP_CID_AUTH:
80 return "AUTH";
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 default:
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070083 break;
84 }
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 return "unknown chunk";
87}
88
89/* These are printable forms of the states. */
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -070090const char *const sctp_state_tbl[SCTP_STATE_NUM_STATES] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 "STATE_CLOSED",
92 "STATE_COOKIE_WAIT",
93 "STATE_COOKIE_ECHOED",
94 "STATE_ESTABLISHED",
95 "STATE_SHUTDOWN_PENDING",
96 "STATE_SHUTDOWN_SENT",
97 "STATE_SHUTDOWN_RECEIVED",
98 "STATE_SHUTDOWN_ACK_SENT",
99};
100
101/* Events that could change the state of an association. */
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700102const char *const sctp_evttype_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 "EVENT_T_unknown",
104 "EVENT_T_CHUNK",
105 "EVENT_T_TIMEOUT",
106 "EVENT_T_OTHER",
107 "EVENT_T_PRIMITIVE"
108};
109
110/* Return value of a state function */
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700111const char *const sctp_status_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 "DISPOSITION_DISCARD",
113 "DISPOSITION_CONSUME",
114 "DISPOSITION_NOMEM",
115 "DISPOSITION_DELETE_TCB",
116 "DISPOSITION_ABORT",
117 "DISPOSITION_VIOLATION",
118 "DISPOSITION_NOT_IMPL",
119 "DISPOSITION_ERROR",
120 "DISPOSITION_BUG"
121};
122
123/* Printable forms of primitives */
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700124static const char *const sctp_primitive_tbl[SCTP_NUM_PRIMITIVE_TYPES] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 "PRIMITIVE_ASSOCIATE",
126 "PRIMITIVE_SHUTDOWN",
127 "PRIMITIVE_ABORT",
128 "PRIMITIVE_SEND",
129 "PRIMITIVE_REQUESTHEARTBEAT",
Wei Yongjun906f8252009-03-02 09:46:10 +0000130 "PRIMITIVE_ASCONF",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
133/* Lookup primitive debug name. */
134const char *sctp_pname(const sctp_subtype_t id)
135{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (id.primitive <= SCTP_EVENT_PRIMITIVE_MAX)
137 return sctp_primitive_tbl[id.primitive];
138 return "unknown_primitive";
139}
140
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700141static const char *const sctp_other_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 "NO_PENDING_TSN",
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900143 "ICMP_PROTO_UNREACH",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
146/* Lookup "other" debug name. */
147const char *sctp_oname(const sctp_subtype_t id)
148{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (id.other <= SCTP_EVENT_OTHER_MAX)
150 return sctp_other_tbl[id.other];
151 return "unknown 'other' event";
152}
153
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700154static const char *const sctp_timer_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 "TIMEOUT_NONE",
156 "TIMEOUT_T1_COOKIE",
157 "TIMEOUT_T1_INIT",
158 "TIMEOUT_T2_SHUTDOWN",
159 "TIMEOUT_T3_RTX",
160 "TIMEOUT_T4_RTO",
161 "TIMEOUT_T5_SHUTDOWN_GUARD",
162 "TIMEOUT_HEARTBEAT",
163 "TIMEOUT_SACK",
164 "TIMEOUT_AUTOCLOSE",
165};
166
167/* Lookup timer debug name. */
168const char *sctp_tname(const sctp_subtype_t id)
169{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (id.timeout <= SCTP_EVENT_TIMEOUT_MAX)
171 return sctp_timer_tbl[id.timeout];
172 return "unknown_timer";
173}