blob: 03e57bf92c732b8d278fbf1bcfb0491b23f6ac34 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/msg.c: TIPC message header routines
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Per Liden593a5f22006-01-11 19:14:19 +01004 * Copyright (c) 2000-2006, Ericsson AB
Allan Stephens741de3e2011-01-25 13:33:31 -05005 * Copyright (c) 2005, 2010-2011, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "msg.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039
Allan Stephens23461e82010-05-11 14:30:18 +000040u32 tipc_msg_tot_importance(struct tipc_msg *m)
41{
42 if (likely(msg_isdata(m))) {
43 if (likely(msg_orignode(m) == tipc_own_addr))
44 return msg_importance(m);
45 return msg_importance(m) + 4;
46 }
47 if ((msg_user(m) == MSG_FRAGMENTER) &&
48 (msg_type(m) == FIRST_FRAGMENT))
49 return msg_importance(msg_get_wrapped(m));
50 return msg_importance(m);
51}
52
53
54void tipc_msg_init(struct tipc_msg *m, u32 user, u32 type,
55 u32 hsize, u32 destnode)
56{
57 memset(m, 0, hsize);
58 msg_set_version(m);
59 msg_set_user(m, user);
60 msg_set_hdr_sz(m, hsize);
61 msg_set_size(m, hsize);
62 msg_set_prevnode(m, tipc_own_addr);
63 msg_set_type(m, type);
64 if (!msg_short(m)) {
65 msg_set_orignode(m, tipc_own_addr);
66 msg_set_destnode(m, destnode);
67 }
68}
69
70/**
Allan Stephens23461e82010-05-11 14:30:18 +000071 * tipc_msg_build - create message using specified header and data
72 *
73 * Note: Caller must not hold any locks in case copy_from_user() is interrupted!
74 *
75 * Returns message data size or errno
76 */
77
Allan Stephens26896902011-04-21 10:42:07 -050078int tipc_msg_build(struct tipc_msg *hdr, struct iovec const *msg_sect,
79 u32 num_sect, unsigned int total_len,
Allan Stephens0e659672010-12-31 18:59:32 +000080 int max_size, int usrmem, struct sk_buff **buf)
Allan Stephens23461e82010-05-11 14:30:18 +000081{
82 int dsz, sz, hsz, pos, res, cnt;
83
Allan Stephens26896902011-04-21 10:42:07 -050084 dsz = total_len;
Allan Stephens23461e82010-05-11 14:30:18 +000085 pos = hsz = msg_hdr_sz(hdr);
86 sz = hsz + dsz;
87 msg_set_size(hdr, sz);
88 if (unlikely(sz > max_size)) {
89 *buf = NULL;
90 return dsz;
91 }
92
stephen hemminger31e3c3f2010-10-13 13:20:35 +000093 *buf = tipc_buf_acquire(sz);
Allan Stephens23461e82010-05-11 14:30:18 +000094 if (!(*buf))
95 return -ENOMEM;
96 skb_copy_to_linear_data(*buf, hdr, hsz);
97 for (res = 1, cnt = 0; res && (cnt < num_sect); cnt++) {
98 if (likely(usrmem))
99 res = !copy_from_user((*buf)->data + pos,
100 msg_sect[cnt].iov_base,
101 msg_sect[cnt].iov_len);
102 else
103 skb_copy_to_linear_data_offset(*buf, pos,
104 msg_sect[cnt].iov_base,
105 msg_sect[cnt].iov_len);
106 pos += msg_sect[cnt].iov_len;
107 }
108 if (likely(res))
109 return dsz;
110
111 buf_discard(*buf);
112 *buf = NULL;
113 return -EFAULT;
114}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100115
Allan Stephens48c97132008-05-05 01:24:06 -0700116#ifdef CONFIG_TIPC_DEBUG
117
118void tipc_msg_dbg(struct print_buf *buf, struct tipc_msg *msg, const char *str)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100119{
120 u32 usr = msg_user(msg);
Allan Stephens6e7e3092010-12-31 18:59:28 +0000121 tipc_printf(buf, KERN_DEBUG);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122 tipc_printf(buf, str);
123
124 switch (usr) {
125 case MSG_BUNDLER:
126 tipc_printf(buf, "BNDL::");
127 tipc_printf(buf, "MSGS(%u):", msg_msgcnt(msg));
128 break;
129 case BCAST_PROTOCOL:
130 tipc_printf(buf, "BCASTP::");
131 break;
132 case MSG_FRAGMENTER:
133 tipc_printf(buf, "FRAGM::");
134 switch (msg_type(msg)) {
135 case FIRST_FRAGMENT:
136 tipc_printf(buf, "FIRST:");
137 break;
138 case FRAGMENT:
139 tipc_printf(buf, "BODY:");
140 break;
141 case LAST_FRAGMENT:
142 tipc_printf(buf, "LAST:");
143 break;
144 default:
Allan Stephens0e659672010-12-31 18:59:32 +0000145 tipc_printf(buf, "UNKNOWN:%x", msg_type(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100146
147 }
Allan Stephens0e659672010-12-31 18:59:32 +0000148 tipc_printf(buf, "NO(%u/%u):", msg_long_msgno(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100149 msg_fragm_no(msg));
150 break;
Allan Stephens06d82c92008-03-06 15:06:55 -0800151 case TIPC_LOW_IMPORTANCE:
152 case TIPC_MEDIUM_IMPORTANCE:
153 case TIPC_HIGH_IMPORTANCE:
154 case TIPC_CRITICAL_IMPORTANCE:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155 tipc_printf(buf, "DAT%u:", msg_user(msg));
156 if (msg_short(msg)) {
157 tipc_printf(buf, "CON:");
158 break;
159 }
160 switch (msg_type(msg)) {
161 case TIPC_CONN_MSG:
162 tipc_printf(buf, "CON:");
163 break;
164 case TIPC_MCAST_MSG:
165 tipc_printf(buf, "MCST:");
166 break;
167 case TIPC_NAMED_MSG:
168 tipc_printf(buf, "NAM:");
169 break;
170 case TIPC_DIRECT_MSG:
171 tipc_printf(buf, "DIR:");
172 break;
173 default:
Allan Stephens0e659672010-12-31 18:59:32 +0000174 tipc_printf(buf, "UNKNOWN TYPE %u", msg_type(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100175 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100176 if (msg_reroute_cnt(msg))
177 tipc_printf(buf, "REROUTED(%u):",
178 msg_reroute_cnt(msg));
179 break;
180 case NAME_DISTRIBUTOR:
181 tipc_printf(buf, "NMD::");
182 switch (msg_type(msg)) {
183 case PUBLICATION:
184 tipc_printf(buf, "PUBL(%u):", (msg_size(msg) - msg_hdr_sz(msg)) / 20); /* Items */
185 break;
186 case WITHDRAWAL:
187 tipc_printf(buf, "WDRW:");
188 break;
189 default:
Allan Stephens0e659672010-12-31 18:59:32 +0000190 tipc_printf(buf, "UNKNOWN:%x", msg_type(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100191 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100192 if (msg_reroute_cnt(msg))
193 tipc_printf(buf, "REROUTED(%u):",
194 msg_reroute_cnt(msg));
195 break;
196 case CONN_MANAGER:
197 tipc_printf(buf, "CONN_MNG:");
198 switch (msg_type(msg)) {
199 case CONN_PROBE:
200 tipc_printf(buf, "PROBE:");
201 break;
202 case CONN_PROBE_REPLY:
203 tipc_printf(buf, "PROBE_REPLY:");
204 break;
205 case CONN_ACK:
206 tipc_printf(buf, "CONN_ACK:");
Allan Stephens0e659672010-12-31 18:59:32 +0000207 tipc_printf(buf, "ACK(%u):", msg_msgcnt(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100208 break;
209 default:
Allan Stephens0e659672010-12-31 18:59:32 +0000210 tipc_printf(buf, "UNKNOWN TYPE:%x", msg_type(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100211 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100212 if (msg_reroute_cnt(msg))
Allan Stephens0e659672010-12-31 18:59:32 +0000213 tipc_printf(buf, "REROUTED(%u):", msg_reroute_cnt(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100214 break;
215 case LINK_PROTOCOL:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100216 switch (msg_type(msg)) {
217 case STATE_MSG:
218 tipc_printf(buf, "STATE:");
Allan Stephens0e659672010-12-31 18:59:32 +0000219 tipc_printf(buf, "%s:", msg_probe(msg) ? "PRB" : "");
220 tipc_printf(buf, "NXS(%u):", msg_next_sent(msg));
221 tipc_printf(buf, "GAP(%u):", msg_seq_gap(msg));
222 tipc_printf(buf, "LSTBC(%u):", msg_last_bcast(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100223 break;
224 case RESET_MSG:
225 tipc_printf(buf, "RESET:");
226 if (msg_size(msg) != msg_hdr_sz(msg))
Allan Stephens0e659672010-12-31 18:59:32 +0000227 tipc_printf(buf, "BEAR:%s:", msg_data(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100228 break;
229 case ACTIVATE_MSG:
230 tipc_printf(buf, "ACTIVATE:");
231 break;
232 default:
Allan Stephens0e659672010-12-31 18:59:32 +0000233 tipc_printf(buf, "UNKNOWN TYPE:%x", msg_type(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100234 }
Allan Stephens0e659672010-12-31 18:59:32 +0000235 tipc_printf(buf, "PLANE(%c):", msg_net_plane(msg));
236 tipc_printf(buf, "SESS(%u):", msg_session(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237 break;
238 case CHANGEOVER_PROTOCOL:
239 tipc_printf(buf, "TUNL:");
240 switch (msg_type(msg)) {
241 case DUPLICATE_MSG:
242 tipc_printf(buf, "DUPL:");
243 break;
244 case ORIGINAL_MSG:
245 tipc_printf(buf, "ORIG:");
Allan Stephens0e659672010-12-31 18:59:32 +0000246 tipc_printf(buf, "EXP(%u)", msg_msgcnt(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100247 break;
248 default:
Allan Stephens0e659672010-12-31 18:59:32 +0000249 tipc_printf(buf, "UNKNOWN TYPE:%x", msg_type(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100250 }
251 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100252 case LINK_CONFIG:
253 tipc_printf(buf, "CFG:");
254 switch (msg_type(msg)) {
255 case DSC_REQ_MSG:
256 tipc_printf(buf, "DSC_REQ:");
257 break;
258 case DSC_RESP_MSG:
259 tipc_printf(buf, "DSC_RESP:");
260 break;
261 default:
Allan Stephens0e659672010-12-31 18:59:32 +0000262 tipc_printf(buf, "UNKNOWN TYPE:%x:", msg_type(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100263 break;
264 }
265 break;
266 default:
267 tipc_printf(buf, "UNKNOWN USER:");
268 }
269
270 switch (usr) {
271 case CONN_MANAGER:
Allan Stephens06d82c92008-03-06 15:06:55 -0800272 case TIPC_LOW_IMPORTANCE:
273 case TIPC_MEDIUM_IMPORTANCE:
274 case TIPC_HIGH_IMPORTANCE:
275 case TIPC_CRITICAL_IMPORTANCE:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100276 switch (msg_errcode(msg)) {
277 case TIPC_OK:
278 break;
279 case TIPC_ERR_NO_NAME:
280 tipc_printf(buf, "NO_NAME:");
281 break;
282 case TIPC_ERR_NO_PORT:
283 tipc_printf(buf, "NO_PORT:");
284 break;
285 case TIPC_ERR_NO_NODE:
286 tipc_printf(buf, "NO_PROC:");
287 break;
288 case TIPC_ERR_OVERLOAD:
289 tipc_printf(buf, "OVERLOAD:");
290 break;
291 case TIPC_CONN_SHUTDOWN:
292 tipc_printf(buf, "SHUTDOWN:");
293 break;
294 default:
295 tipc_printf(buf, "UNKNOWN ERROR(%x):",
296 msg_errcode(msg));
297 }
Allan Stephensa0168922010-12-31 18:59:35 +0000298 default:
299 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100300 }
301
302 tipc_printf(buf, "HZ(%u):", msg_hdr_sz(msg));
303 tipc_printf(buf, "SZ(%u):", msg_size(msg));
304 tipc_printf(buf, "SQNO(%u):", msg_seqno(msg));
305
306 if (msg_non_seq(msg))
307 tipc_printf(buf, "NOSEQ:");
Allan Stephensa0168922010-12-31 18:59:35 +0000308 else
Per Lidenb97bf3f2006-01-02 19:04:38 +0100309 tipc_printf(buf, "ACK(%u):", msg_ack(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 tipc_printf(buf, "BACK(%u):", msg_bcast_ack(msg));
311 tipc_printf(buf, "PRND(%x)", msg_prevnode(msg));
312
313 if (msg_isdata(msg)) {
314 if (msg_named(msg)) {
315 tipc_printf(buf, "NTYP(%u):", msg_nametype(msg));
316 tipc_printf(buf, "NINST(%u)", msg_nameinst(msg));
317 }
318 }
319
320 if ((usr != LINK_PROTOCOL) && (usr != LINK_CONFIG) &&
321 (usr != MSG_BUNDLER)) {
322 if (!msg_short(msg)) {
323 tipc_printf(buf, ":ORIG(%x:%u):",
324 msg_orignode(msg), msg_origport(msg));
325 tipc_printf(buf, ":DEST(%x:%u):",
326 msg_destnode(msg), msg_destport(msg));
327 } else {
328 tipc_printf(buf, ":OPRT(%u):", msg_origport(msg));
329 tipc_printf(buf, ":DPRT(%u):", msg_destport(msg));
330 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100331 }
332 if (msg_user(msg) == NAME_DISTRIBUTOR) {
333 tipc_printf(buf, ":ONOD(%x):", msg_orignode(msg));
334 tipc_printf(buf, ":DNOD(%x):", msg_destnode(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100335 }
336
337 if (msg_user(msg) == LINK_CONFIG) {
Allan Stephens0e659672010-12-31 18:59:32 +0000338 u32 *raw = (u32 *)msg;
339 struct tipc_media_addr *orig = (struct tipc_media_addr *)&raw[5];
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340 tipc_printf(buf, ":DDOM(%x):", msg_dest_domain(msg));
341 tipc_printf(buf, ":NETID(%u):", msg_bc_netid(msg));
Per Liden4323add2006-01-18 00:38:21 +0100342 tipc_media_addr_printf(buf, orig);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343 }
344 if (msg_user(msg) == BCAST_PROTOCOL) {
345 tipc_printf(buf, "BCNACK:AFTER(%u):", msg_bcgap_after(msg));
346 tipc_printf(buf, "TO(%u):", msg_bcgap_to(msg));
347 }
348 tipc_printf(buf, "\n");
Allan Stephensa0168922010-12-31 18:59:35 +0000349 if ((usr == CHANGEOVER_PROTOCOL) && (msg_msgcnt(msg)))
Allan Stephens48c97132008-05-05 01:24:06 -0700350 tipc_msg_dbg(buf, msg_get_wrapped(msg), " /");
Allan Stephensa0168922010-12-31 18:59:35 +0000351 if ((usr == MSG_FRAGMENTER) && (msg_type(msg) == FIRST_FRAGMENT))
Allan Stephens48c97132008-05-05 01:24:06 -0700352 tipc_msg_dbg(buf, msg_get_wrapped(msg), " /");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100353}
Allan Stephens48c97132008-05-05 01:24:06 -0700354
355#endif