blob: 7ff548a30cfb63b7a85147faed3292c574ae18ef [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):
31 * lksctp developers <lksctp-developers@lists.sourceforge.net>
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090032 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * Or submit a bug report through the following website:
34 * http://www.sf.net/projects/lksctp
35 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090036 * Written or modified by:
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * La Monte H.P. Yarroll <piggy@acm.org>
38 * Karl Knutson <karl@athena.chicago.il.us>
39 * Xingang Guo <xingang.guo@intel.com>
40 * Jon Grimm <jgrimm@us.ibm.com>
41 * Daisy Chang <daisyc@us.ibm.com>
42 * Sridhar Samudrala <sri@us.ibm.com>
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090043 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * Any bugs reported given to us we will try to fix... any fixes shared will
45 * be incorporated into the next SCTP release.
46 */
47
48#include <net/sctp/sctp.h>
49
50#if SCTP_DEBUG
51int sctp_debug_flag = 1; /* Initially enable DEBUG */
52#endif /* SCTP_DEBUG */
53
54/* These are printable forms of Chunk ID's from section 3.1. */
55static const char *sctp_cid_tbl[SCTP_NUM_BASE_CHUNK_TYPES] = {
56 "DATA",
57 "INIT",
58 "INIT_ACK",
59 "SACK",
60 "HEARTBEAT",
61 "HEARTBEAT_ACK",
62 "ABORT",
63 "SHUTDOWN",
64 "SHUTDOWN_ACK",
65 "ERROR",
66 "COOKIE_ECHO",
67 "COOKIE_ACK",
68 "ECN_ECNE",
69 "ECN_CWR",
70 "SHUTDOWN_COMPLETE",
71};
72
73/* Lookup "chunk type" debug name. */
74const char *sctp_cname(const sctp_subtype_t cid)
75{
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if (cid.chunk <= SCTP_CID_BASE_MAX)
77 return sctp_cid_tbl[cid.chunk];
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +090078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 switch (cid.chunk) {
80 case SCTP_CID_ASCONF:
81 return "ASCONF";
82
83 case SCTP_CID_ASCONF_ACK:
84 return "ASCONF_ACK";
85
86 case SCTP_CID_FWD_TSN:
87 return "FWD_TSN";
88
Wei Yongjun906f8252009-03-02 09:46:10 +000089 case SCTP_CID_AUTH:
90 return "AUTH";
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 default:
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070093 break;
94 }
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return "unknown chunk";
97}
98
99/* These are printable forms of the states. */
100const char *sctp_state_tbl[SCTP_STATE_NUM_STATES] = {
101 "STATE_EMPTY",
102 "STATE_CLOSED",
103 "STATE_COOKIE_WAIT",
104 "STATE_COOKIE_ECHOED",
105 "STATE_ESTABLISHED",
106 "STATE_SHUTDOWN_PENDING",
107 "STATE_SHUTDOWN_SENT",
108 "STATE_SHUTDOWN_RECEIVED",
109 "STATE_SHUTDOWN_ACK_SENT",
110};
111
112/* Events that could change the state of an association. */
113const char *sctp_evttype_tbl[] = {
114 "EVENT_T_unknown",
115 "EVENT_T_CHUNK",
116 "EVENT_T_TIMEOUT",
117 "EVENT_T_OTHER",
118 "EVENT_T_PRIMITIVE"
119};
120
121/* Return value of a state function */
122const char *sctp_status_tbl[] = {
123 "DISPOSITION_DISCARD",
124 "DISPOSITION_CONSUME",
125 "DISPOSITION_NOMEM",
126 "DISPOSITION_DELETE_TCB",
127 "DISPOSITION_ABORT",
128 "DISPOSITION_VIOLATION",
129 "DISPOSITION_NOT_IMPL",
130 "DISPOSITION_ERROR",
131 "DISPOSITION_BUG"
132};
133
134/* Printable forms of primitives */
135static const char *sctp_primitive_tbl[SCTP_NUM_PRIMITIVE_TYPES] = {
136 "PRIMITIVE_ASSOCIATE",
137 "PRIMITIVE_SHUTDOWN",
138 "PRIMITIVE_ABORT",
139 "PRIMITIVE_SEND",
140 "PRIMITIVE_REQUESTHEARTBEAT",
Wei Yongjun906f8252009-03-02 09:46:10 +0000141 "PRIMITIVE_ASCONF",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142};
143
144/* Lookup primitive debug name. */
145const char *sctp_pname(const sctp_subtype_t id)
146{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (id.primitive <= SCTP_EVENT_PRIMITIVE_MAX)
148 return sctp_primitive_tbl[id.primitive];
149 return "unknown_primitive";
150}
151
152static const char *sctp_other_tbl[] = {
153 "NO_PENDING_TSN",
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900154 "ICMP_PROTO_UNREACH",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155};
156
157/* Lookup "other" debug name. */
158const char *sctp_oname(const sctp_subtype_t id)
159{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (id.other <= SCTP_EVENT_OTHER_MAX)
161 return sctp_other_tbl[id.other];
162 return "unknown 'other' event";
163}
164
165static const char *sctp_timer_tbl[] = {
166 "TIMEOUT_NONE",
167 "TIMEOUT_T1_COOKIE",
168 "TIMEOUT_T1_INIT",
169 "TIMEOUT_T2_SHUTDOWN",
170 "TIMEOUT_T3_RTX",
171 "TIMEOUT_T4_RTO",
172 "TIMEOUT_T5_SHUTDOWN_GUARD",
173 "TIMEOUT_HEARTBEAT",
174 "TIMEOUT_SACK",
175 "TIMEOUT_AUTOCLOSE",
176};
177
178/* Lookup timer debug name. */
179const char *sctp_tname(const sctp_subtype_t id)
180{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (id.timeout <= SCTP_EVENT_TIMEOUT_MAX)
182 return sctp_timer_tbl[id.timeout];
183 return "unknown_timer";
184}