1 // SPDX-License-Identifier: GPL-2.0-or-later << 2 /* SCTP kernel implementation 1 /* SCTP kernel implementation 3 * (C) Copyright IBM Corp. 2001, 2004 2 * (C) Copyright IBM Corp. 2001, 2004 4 * Copyright (c) 1999-2000 Cisco, Inc. 3 * Copyright (c) 1999-2000 Cisco, Inc. 5 * Copyright (c) 1999-2001 Motorola, Inc. 4 * Copyright (c) 1999-2001 Motorola, Inc. 6 * Copyright (c) 2001 Intel Corp. 5 * Copyright (c) 2001 Intel Corp. 7 * 6 * 8 * This file is part of the SCTP kernel implem 7 * This file is part of the SCTP kernel implementation 9 * 8 * 10 * This file converts numerical ID value to al 9 * This file converts numerical ID value to alphabetical names for SCTP 11 * terms such as chunk type, parameter time, e 10 * terms such as chunk type, parameter time, event type, etc. 12 * 11 * >> 12 * This SCTP implementation is free software; >> 13 * you can redistribute it and/or modify it under the terms of >> 14 * the GNU General Public License as published by >> 15 * the Free Software Foundation; either version 2, or (at your option) >> 16 * any later version. >> 17 * >> 18 * This SCTP implementation is distributed in the hope that it >> 19 * 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. >> 23 * >> 24 * You should have received a copy of the GNU General Public License >> 25 * along with GNU CC; see the file COPYING. If not, see >> 26 * <http://www.gnu.org/licenses/>. >> 27 * 13 * Please send any bug reports or fixes you ma 28 * Please send any bug reports or fixes you make to the 14 * email address(es): 29 * email address(es): 15 * lksctp developers <linux-sctp@vger.kerne 30 * lksctp developers <linux-sctp@vger.kernel.org> 16 * 31 * 17 * Written or modified by: 32 * Written or modified by: 18 * La Monte H.P. Yarroll <piggy@acm.org> 33 * La Monte H.P. Yarroll <piggy@acm.org> 19 * Karl Knutson <karl@athena.chica 34 * Karl Knutson <karl@athena.chicago.il.us> 20 * Xingang Guo <xingang.guo@intel 35 * Xingang Guo <xingang.guo@intel.com> 21 * Jon Grimm <jgrimm@us.ibm.com 36 * Jon Grimm <jgrimm@us.ibm.com> 22 * Daisy Chang <daisyc@us.ibm.com 37 * Daisy Chang <daisyc@us.ibm.com> 23 * Sridhar Samudrala <sri@us.ibm.com> 38 * Sridhar Samudrala <sri@us.ibm.com> 24 */ 39 */ 25 40 26 #include <net/sctp/sctp.h> 41 #include <net/sctp/sctp.h> 27 42 28 /* These are printable forms of Chunk ID's fro 43 /* These are printable forms of Chunk ID's from section 3.1. */ 29 static const char *const sctp_cid_tbl[SCTP_NUM 44 static const char *const sctp_cid_tbl[SCTP_NUM_BASE_CHUNK_TYPES] = { 30 "DATA", 45 "DATA", 31 "INIT", 46 "INIT", 32 "INIT_ACK", 47 "INIT_ACK", 33 "SACK", 48 "SACK", 34 "HEARTBEAT", 49 "HEARTBEAT", 35 "HEARTBEAT_ACK", 50 "HEARTBEAT_ACK", 36 "ABORT", 51 "ABORT", 37 "SHUTDOWN", 52 "SHUTDOWN", 38 "SHUTDOWN_ACK", 53 "SHUTDOWN_ACK", 39 "ERROR", 54 "ERROR", 40 "COOKIE_ECHO", 55 "COOKIE_ECHO", 41 "COOKIE_ACK", 56 "COOKIE_ACK", 42 "ECN_ECNE", 57 "ECN_ECNE", 43 "ECN_CWR", 58 "ECN_CWR", 44 "SHUTDOWN_COMPLETE", 59 "SHUTDOWN_COMPLETE", 45 }; 60 }; 46 61 47 /* Lookup "chunk type" debug name. */ 62 /* Lookup "chunk type" debug name. */ 48 const char *sctp_cname(const union sctp_subtyp !! 63 const char *sctp_cname(const sctp_subtype_t cid) 49 { 64 { 50 if (cid.chunk <= SCTP_CID_BASE_MAX) 65 if (cid.chunk <= SCTP_CID_BASE_MAX) 51 return sctp_cid_tbl[cid.chunk] 66 return sctp_cid_tbl[cid.chunk]; 52 67 53 switch (cid.chunk) { 68 switch (cid.chunk) { 54 case SCTP_CID_ASCONF: 69 case SCTP_CID_ASCONF: 55 return "ASCONF"; 70 return "ASCONF"; 56 71 57 case SCTP_CID_ASCONF_ACK: 72 case SCTP_CID_ASCONF_ACK: 58 return "ASCONF_ACK"; 73 return "ASCONF_ACK"; 59 74 60 case SCTP_CID_FWD_TSN: 75 case SCTP_CID_FWD_TSN: 61 return "FWD_TSN"; 76 return "FWD_TSN"; 62 77 63 case SCTP_CID_AUTH: 78 case SCTP_CID_AUTH: 64 return "AUTH"; 79 return "AUTH"; 65 80 66 case SCTP_CID_RECONF: << 67 return "RECONF"; << 68 << 69 case SCTP_CID_I_DATA: << 70 return "I_DATA"; << 71 << 72 case SCTP_CID_I_FWD_TSN: << 73 return "I_FWD_TSN"; << 74 << 75 default: 81 default: 76 break; 82 break; 77 } 83 } 78 84 79 return "unknown chunk"; 85 return "unknown chunk"; 80 } 86 } 81 87 82 /* These are printable forms of the states. * 88 /* These are printable forms of the states. */ 83 const char *const sctp_state_tbl[SCTP_STATE_NU 89 const char *const sctp_state_tbl[SCTP_STATE_NUM_STATES] = { 84 "STATE_CLOSED", 90 "STATE_CLOSED", 85 "STATE_COOKIE_WAIT", 91 "STATE_COOKIE_WAIT", 86 "STATE_COOKIE_ECHOED", 92 "STATE_COOKIE_ECHOED", 87 "STATE_ESTABLISHED", 93 "STATE_ESTABLISHED", 88 "STATE_SHUTDOWN_PENDING", 94 "STATE_SHUTDOWN_PENDING", 89 "STATE_SHUTDOWN_SENT", 95 "STATE_SHUTDOWN_SENT", 90 "STATE_SHUTDOWN_RECEIVED", 96 "STATE_SHUTDOWN_RECEIVED", 91 "STATE_SHUTDOWN_ACK_SENT", 97 "STATE_SHUTDOWN_ACK_SENT", 92 }; 98 }; 93 99 94 /* Events that could change the state of an as 100 /* Events that could change the state of an association. */ 95 const char *const sctp_evttype_tbl[] = { 101 const char *const sctp_evttype_tbl[] = { 96 "EVENT_T_unknown", 102 "EVENT_T_unknown", 97 "EVENT_T_CHUNK", 103 "EVENT_T_CHUNK", 98 "EVENT_T_TIMEOUT", 104 "EVENT_T_TIMEOUT", 99 "EVENT_T_OTHER", 105 "EVENT_T_OTHER", 100 "EVENT_T_PRIMITIVE" 106 "EVENT_T_PRIMITIVE" 101 }; 107 }; 102 108 103 /* Return value of a state function */ 109 /* Return value of a state function */ 104 const char *const sctp_status_tbl[] = { 110 const char *const sctp_status_tbl[] = { 105 "DISPOSITION_DISCARD", 111 "DISPOSITION_DISCARD", 106 "DISPOSITION_CONSUME", 112 "DISPOSITION_CONSUME", 107 "DISPOSITION_NOMEM", 113 "DISPOSITION_NOMEM", 108 "DISPOSITION_DELETE_TCB", 114 "DISPOSITION_DELETE_TCB", 109 "DISPOSITION_ABORT", 115 "DISPOSITION_ABORT", 110 "DISPOSITION_VIOLATION", 116 "DISPOSITION_VIOLATION", 111 "DISPOSITION_NOT_IMPL", 117 "DISPOSITION_NOT_IMPL", 112 "DISPOSITION_ERROR", 118 "DISPOSITION_ERROR", 113 "DISPOSITION_BUG" 119 "DISPOSITION_BUG" 114 }; 120 }; 115 121 116 /* Printable forms of primitives */ 122 /* Printable forms of primitives */ 117 static const char *const sctp_primitive_tbl[SC 123 static const char *const sctp_primitive_tbl[SCTP_NUM_PRIMITIVE_TYPES] = { 118 "PRIMITIVE_ASSOCIATE", 124 "PRIMITIVE_ASSOCIATE", 119 "PRIMITIVE_SHUTDOWN", 125 "PRIMITIVE_SHUTDOWN", 120 "PRIMITIVE_ABORT", 126 "PRIMITIVE_ABORT", 121 "PRIMITIVE_SEND", 127 "PRIMITIVE_SEND", 122 "PRIMITIVE_REQUESTHEARTBEAT", 128 "PRIMITIVE_REQUESTHEARTBEAT", 123 "PRIMITIVE_ASCONF", 129 "PRIMITIVE_ASCONF", 124 }; 130 }; 125 131 126 /* Lookup primitive debug name. */ 132 /* Lookup primitive debug name. */ 127 const char *sctp_pname(const union sctp_subtyp !! 133 const char *sctp_pname(const sctp_subtype_t id) 128 { 134 { 129 if (id.primitive <= SCTP_EVENT_PRIMITI 135 if (id.primitive <= SCTP_EVENT_PRIMITIVE_MAX) 130 return sctp_primitive_tbl[id.p 136 return sctp_primitive_tbl[id.primitive]; 131 return "unknown_primitive"; 137 return "unknown_primitive"; 132 } 138 } 133 139 134 static const char *const sctp_other_tbl[] = { 140 static const char *const sctp_other_tbl[] = { 135 "NO_PENDING_TSN", 141 "NO_PENDING_TSN", 136 "ICMP_PROTO_UNREACH", 142 "ICMP_PROTO_UNREACH", 137 }; 143 }; 138 144 139 /* Lookup "other" debug name. */ 145 /* Lookup "other" debug name. */ 140 const char *sctp_oname(const union sctp_subtyp !! 146 const char *sctp_oname(const sctp_subtype_t id) 141 { 147 { 142 if (id.other <= SCTP_EVENT_OTHER_MAX) 148 if (id.other <= SCTP_EVENT_OTHER_MAX) 143 return sctp_other_tbl[id.other 149 return sctp_other_tbl[id.other]; 144 return "unknown 'other' event"; 150 return "unknown 'other' event"; 145 } 151 } 146 152 147 static const char *const sctp_timer_tbl[] = { 153 static const char *const sctp_timer_tbl[] = { 148 "TIMEOUT_NONE", 154 "TIMEOUT_NONE", 149 "TIMEOUT_T1_COOKIE", 155 "TIMEOUT_T1_COOKIE", 150 "TIMEOUT_T1_INIT", 156 "TIMEOUT_T1_INIT", 151 "TIMEOUT_T2_SHUTDOWN", 157 "TIMEOUT_T2_SHUTDOWN", 152 "TIMEOUT_T3_RTX", 158 "TIMEOUT_T3_RTX", 153 "TIMEOUT_T4_RTO", 159 "TIMEOUT_T4_RTO", 154 "TIMEOUT_T5_SHUTDOWN_GUARD", 160 "TIMEOUT_T5_SHUTDOWN_GUARD", 155 "TIMEOUT_HEARTBEAT", 161 "TIMEOUT_HEARTBEAT", 156 "TIMEOUT_RECONF", 162 "TIMEOUT_RECONF", 157 "TIMEOUT_PROBE", << 158 "TIMEOUT_SACK", 163 "TIMEOUT_SACK", 159 "TIMEOUT_AUTOCLOSE", 164 "TIMEOUT_AUTOCLOSE", 160 }; 165 }; 161 166 162 /* Lookup timer debug name. */ 167 /* Lookup timer debug name. */ 163 const char *sctp_tname(const union sctp_subtyp !! 168 const char *sctp_tname(const sctp_subtype_t id) 164 { 169 { 165 BUILD_BUG_ON(SCTP_EVENT_TIMEOUT_MAX + 170 BUILD_BUG_ON(SCTP_EVENT_TIMEOUT_MAX + 1 != ARRAY_SIZE(sctp_timer_tbl)); 166 171 167 if (id.timeout < ARRAY_SIZE(sctp_timer 172 if (id.timeout < ARRAY_SIZE(sctp_timer_tbl)) 168 return sctp_timer_tbl[id.timeo 173 return sctp_timer_tbl[id.timeout]; 169 return "unknown_timer"; 174 return "unknown_timer"; 170 } 175 } 171 176
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.