blob: f5033f4a7951e202027424f5770fa94f7767aaf5 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/msg.h: Include file for TIPC message header routines
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Jon Maloy75da2162017-10-13 11:04:23 +02004 * Copyright (c) 2000-2007, 2014-2017 Ericsson AB
Allan Stephens741de3e2011-01-25 13:33:31 -05005 * Copyright (c) 2005-2008, 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#ifndef _TIPC_MSG_H
38#define _TIPC_MSG_H
39
Ying Xue1da46562015-01-09 15:27:07 +080040#include <linux/tipc.h>
Jon Paul Maloyd9992972015-07-16 16:54:31 -040041#include "core.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010042
Allan Stephenscc4c4352011-04-08 10:50:52 -040043/*
44 * Constants and routines used to read and write TIPC payload message headers
45 *
46 * Note: Some items are also used with TIPC internal message headers
47 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010048#define TIPC_VERSION 2
Jon Paul Maloyc637c102015-02-05 08:36:41 -050049struct plist;
Allan Stephens06d82c92008-03-06 15:06:55 -080050
Allan Stephensd265fef2010-11-30 12:00:53 +000051/*
Allan Stephenscc4c4352011-04-08 10:50:52 -040052 * Payload message users are defined in TIPC's public API:
53 * - TIPC_LOW_IMPORTANCE
54 * - TIPC_MEDIUM_IMPORTANCE
55 * - TIPC_HIGH_IMPORTANCE
56 * - TIPC_CRITICAL_IMPORTANCE
57 */
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -040058#define TIPC_SYSTEM_IMPORTANCE 4
59
Allan Stephenscc4c4352011-04-08 10:50:52 -040060
61/*
62 * Payload message types
Allan Stephensd265fef2010-11-30 12:00:53 +000063 */
Jon Maloy75da2162017-10-13 11:04:23 +020064#define TIPC_CONN_MSG 0
65#define TIPC_MCAST_MSG 1
66#define TIPC_NAMED_MSG 2
67#define TIPC_DIRECT_MSG 3
Jon Maloyae236fb2017-10-13 11:04:25 +020068#define TIPC_GRP_MEMBER_EVT 4
69#define TIPC_GRP_BCAST_MSG 5
Jon Maloy27bd9ec2017-10-13 11:04:27 +020070#define TIPC_GRP_UCAST_MSG 6
Allan Stephensd265fef2010-11-30 12:00:53 +000071
Allan Stephenscc4c4352011-04-08 10:50:52 -040072/*
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -040073 * Internal message users
74 */
75#define BCAST_PROTOCOL 5
76#define MSG_BUNDLER 6
77#define LINK_PROTOCOL 7
78#define CONN_MANAGER 8
Jon Maloy75da2162017-10-13 11:04:23 +020079#define GROUP_PROTOCOL 9
Jon Paul Maloydff29b12015-04-02 09:33:01 -040080#define TUNNEL_PROTOCOL 10
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -040081#define NAME_DISTRIBUTOR 11
82#define MSG_FRAGMENTER 12
83#define LINK_CONFIG 13
84#define SOCK_WAKEUP 14 /* pseudo user */
Jon Maloy14c04492017-10-13 11:04:17 +020085#define TOP_SRV 15 /* pseudo user */
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -040086
87/*
Allan Stephenscc4c4352011-04-08 10:50:52 -040088 * Message header sizes
89 */
Allan Stephens741d9eb2011-05-31 15:03:18 -040090#define SHORT_H_SIZE 24 /* In-cluster basic payload message */
91#define BASIC_H_SIZE 32 /* Basic payload message */
92#define NAMED_H_SIZE 40 /* Named payload message */
93#define MCAST_H_SIZE 44 /* Multicast payload message */
Jon Maloy75da2162017-10-13 11:04:23 +020094#define GROUP_H_SIZE 44 /* Group payload message */
Allan Stephens06d82c92008-03-06 15:06:55 -080095#define INT_H_SIZE 40 /* Internal messages */
96#define MIN_H_SIZE 24 /* Smallest legal TIPC header size */
97#define MAX_H_SIZE 60 /* Largest possible TIPC header size */
98
Per Lidenb97bf3f2006-01-02 19:04:38 +010099#define MAX_MSG_SIZE (MAX_H_SIZE + TIPC_MAX_USER_MSG_SIZE)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100100
Erik Hugne91e2eb52015-02-27 08:56:57 +0100101#define TIPC_MEDIA_INFO_OFFSET 5
Allan Stephens3d749a62011-10-07 15:19:11 -0400102
Ying Xue859fc7c2015-01-09 15:27:01 +0800103struct tipc_skb_cb {
Parthasarathy Bhuvaraganba8aebe2016-11-01 14:02:37 +0100104 u32 bytes_read;
Jon Maloy31c82a22017-10-13 11:04:24 +0200105 u32 orig_member;
Ying Xue859fc7c2015-01-09 15:27:01 +0800106 struct sk_buff *tail;
Jon Paul Maloycf2157f2015-03-13 16:08:06 -0400107 bool validated;
Ying Xue859fc7c2015-01-09 15:27:01 +0800108 u16 chain_imp;
Jon Paul Maloyc1ab3f1d2015-10-22 08:51:38 -0400109 u16 ackers;
Ying Xue859fc7c2015-01-09 15:27:01 +0800110};
111
112#define TIPC_SKB_CB(__skb) ((struct tipc_skb_cb *)&((__skb)->cb[0]))
113
Allan Stephensd265fef2010-11-30 12:00:53 +0000114struct tipc_msg {
115 __be32 hdr[15];
116};
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900117
Ying Xue859fc7c2015-01-09 15:27:01 +0800118static inline struct tipc_msg *buf_msg(struct sk_buff *skb)
119{
120 return (struct tipc_msg *)skb->data;
121}
122
Allan Stephensd265fef2010-11-30 12:00:53 +0000123static inline u32 msg_word(struct tipc_msg *m, u32 pos)
124{
125 return ntohl(m->hdr[pos]);
126}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127
128static inline void msg_set_word(struct tipc_msg *m, u32 w, u32 val)
129{
130 m->hdr[w] = htonl(val);
131}
132
Allan Stephensd265fef2010-11-30 12:00:53 +0000133static inline u32 msg_bits(struct tipc_msg *m, u32 w, u32 pos, u32 mask)
134{
135 return (msg_word(m, w) >> pos) & mask;
136}
137
Per Lidenb97bf3f2006-01-02 19:04:38 +0100138static inline void msg_set_bits(struct tipc_msg *m, u32 w,
139 u32 pos, u32 mask, u32 val)
140{
Allan Stephens1f9eda72007-04-24 14:51:55 -0700141 val = (val & mask) << pos;
Al Virobecf3da2008-04-26 22:42:14 -0700142 mask = mask << pos;
143 m->hdr[w] &= ~htonl(mask);
144 m->hdr[w] |= htonl(val);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100145}
146
Allan Stephens40aecb12008-06-04 17:54:48 -0700147static inline void msg_swap_words(struct tipc_msg *msg, u32 a, u32 b)
148{
149 u32 temp = msg->hdr[a];
150
151 msg->hdr[a] = msg->hdr[b];
152 msg->hdr[b] = temp;
153}
154
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900155/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100156 * Word 0
157 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100158static inline u32 msg_version(struct tipc_msg *m)
159{
160 return msg_bits(m, 0, 29, 7);
161}
162
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900163static inline void msg_set_version(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100164{
Allan Stephens37695422008-03-06 15:07:42 -0800165 msg_set_bits(m, 0, 29, 7, TIPC_VERSION);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100166}
167
168static inline u32 msg_user(struct tipc_msg *m)
169{
170 return msg_bits(m, 0, 25, 0xf);
171}
172
173static inline u32 msg_isdata(struct tipc_msg *m)
174{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000175 return msg_user(m) <= TIPC_CRITICAL_IMPORTANCE;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100176}
177
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900178static inline void msg_set_user(struct tipc_msg *m, u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100179{
180 msg_set_bits(m, 0, 25, 0xf, n);
181}
182
Allan Stephensd265fef2010-11-30 12:00:53 +0000183static inline u32 msg_hdr_sz(struct tipc_msg *m)
184{
185 return msg_bits(m, 0, 21, 0xf) << 2;
186}
187
Allan Stephens0e659672010-12-31 18:59:32 +0000188static inline void msg_set_hdr_sz(struct tipc_msg *m, u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100189{
190 msg_set_bits(m, 0, 21, 0xf, n>>2);
191}
192
Allan Stephensd265fef2010-11-30 12:00:53 +0000193static inline u32 msg_size(struct tipc_msg *m)
194{
195 return msg_bits(m, 0, 0, 0x1ffff);
196}
197
198static inline u32 msg_data_sz(struct tipc_msg *m)
199{
200 return msg_size(m) - msg_hdr_sz(m);
201}
202
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900203static inline int msg_non_seq(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204{
205 return msg_bits(m, 0, 20, 1);
206}
207
Allan Stephens40aecb12008-06-04 17:54:48 -0700208static inline void msg_set_non_seq(struct tipc_msg *m, u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100209{
Allan Stephens40aecb12008-06-04 17:54:48 -0700210 msg_set_bits(m, 0, 20, 1, n);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100211}
212
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900213static inline int msg_dest_droppable(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100214{
215 return msg_bits(m, 0, 19, 1);
216}
217
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900218static inline void msg_set_dest_droppable(struct tipc_msg *m, u32 d)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100219{
220 msg_set_bits(m, 0, 19, 1, d);
221}
222
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900223static inline int msg_src_droppable(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100224{
225 return msg_bits(m, 0, 18, 1);
226}
227
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900228static inline void msg_set_src_droppable(struct tipc_msg *m, u32 d)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100229{
230 msg_set_bits(m, 0, 18, 1, d);
231}
232
233static inline void msg_set_size(struct tipc_msg *m, u32 sz)
234{
235 m->hdr[0] = htonl((msg_word(m, 0) & ~0x1ffff) | sz);
236}
237
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400238static inline unchar *msg_data(struct tipc_msg *m)
239{
240 return ((unchar *)m) + msg_hdr_sz(m);
241}
242
243static inline struct tipc_msg *msg_get_wrapped(struct tipc_msg *m)
244{
245 return (struct tipc_msg *)msg_data(m);
246}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100247
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900248/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100249 * Word 1
250 */
Allan Stephensd265fef2010-11-30 12:00:53 +0000251static inline u32 msg_type(struct tipc_msg *m)
252{
253 return msg_bits(m, 1, 29, 0x7);
254}
255
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900256static inline void msg_set_type(struct tipc_msg *m, u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100257{
258 msg_set_bits(m, 1, 29, 0x7, n);
259}
260
Jon Maloy75da2162017-10-13 11:04:23 +0200261static inline int msg_in_group(struct tipc_msg *m)
262{
Jon Maloyae236fb2017-10-13 11:04:25 +0200263 int mtyp = msg_type(m);
264
Jon Maloy27bd9ec2017-10-13 11:04:27 +0200265 return mtyp >= TIPC_GRP_MEMBER_EVT && mtyp <= TIPC_GRP_UCAST_MSG;
Jon Maloyae236fb2017-10-13 11:04:25 +0200266}
267
268static inline bool msg_is_grp_evt(struct tipc_msg *m)
269{
270 return msg_type(m) == TIPC_GRP_MEMBER_EVT;
Jon Maloy75da2162017-10-13 11:04:23 +0200271}
272
Allan Stephensd265fef2010-11-30 12:00:53 +0000273static inline u32 msg_named(struct tipc_msg *m)
274{
275 return msg_type(m) == TIPC_NAMED_MSG;
276}
277
278static inline u32 msg_mcast(struct tipc_msg *m)
279{
Jon Maloy75da2162017-10-13 11:04:23 +0200280 int mtyp = msg_type(m);
281
282 return ((mtyp == TIPC_MCAST_MSG) || (mtyp == TIPC_GRP_BCAST_MSG));
Allan Stephensd265fef2010-11-30 12:00:53 +0000283}
284
285static inline u32 msg_connected(struct tipc_msg *m)
286{
287 return msg_type(m) == TIPC_CONN_MSG;
288}
289
290static inline u32 msg_errcode(struct tipc_msg *m)
291{
292 return msg_bits(m, 1, 25, 0xf);
293}
294
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900295static inline void msg_set_errcode(struct tipc_msg *m, u32 err)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100296{
297 msg_set_bits(m, 1, 25, 0xf, err);
298}
299
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900300static inline u32 msg_reroute_cnt(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301{
302 return msg_bits(m, 1, 21, 0xf);
303}
304
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900305static inline void msg_incr_reroute_cnt(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100306{
307 msg_set_bits(m, 1, 21, 0xf, msg_reroute_cnt(m) + 1);
308}
309
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900310static inline void msg_reset_reroute_cnt(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100311{
312 msg_set_bits(m, 1, 21, 0xf, 0);
313}
314
315static inline u32 msg_lookup_scope(struct tipc_msg *m)
316{
317 return msg_bits(m, 1, 19, 0x3);
318}
319
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900320static inline void msg_set_lookup_scope(struct tipc_msg *m, u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321{
322 msg_set_bits(m, 1, 19, 0x3, n);
323}
324
Jon Paul Maloye4bf4f72015-05-14 10:46:14 -0400325static inline u16 msg_bcast_ack(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100326{
327 return msg_bits(m, 1, 0, 0xffff);
328}
329
Jon Paul Maloye4bf4f72015-05-14 10:46:14 -0400330static inline void msg_set_bcast_ack(struct tipc_msg *m, u16 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100331{
332 msg_set_bits(m, 1, 0, 0xffff, n);
333}
334
335
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900336/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100337 * Word 2
338 */
Jon Paul Maloye4bf4f72015-05-14 10:46:14 -0400339static inline u16 msg_ack(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340{
341 return msg_bits(m, 2, 16, 0xffff);
342}
343
Jon Paul Maloye4bf4f72015-05-14 10:46:14 -0400344static inline void msg_set_ack(struct tipc_msg *m, u16 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345{
346 msg_set_bits(m, 2, 16, 0xffff, n);
347}
348
Jon Paul Maloye4bf4f72015-05-14 10:46:14 -0400349static inline u16 msg_seqno(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100350{
351 return msg_bits(m, 2, 0, 0xffff);
352}
353
Jon Paul Maloye4bf4f72015-05-14 10:46:14 -0400354static inline void msg_set_seqno(struct tipc_msg *m, u16 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100355{
356 msg_set_bits(m, 2, 0, 0xffff, n);
357}
358
Allan Stephens40aecb12008-06-04 17:54:48 -0700359/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100360 * Words 3-10
361 */
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -0400362static inline u32 msg_importance(struct tipc_msg *m)
363{
Jon Paul Maloyf21e8972015-05-14 10:46:17 -0400364 int usr = msg_user(m);
365
366 if (likely((usr <= TIPC_CRITICAL_IMPORTANCE) && !msg_errcode(m)))
367 return usr;
368 if ((usr == MSG_FRAGMENTER) || (usr == MSG_BUNDLER))
Jon Paul Maloydde4b5a2015-10-14 09:23:18 -0400369 return msg_bits(m, 9, 0, 0x7);
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -0400370 return TIPC_SYSTEM_IMPORTANCE;
371}
372
373static inline void msg_set_importance(struct tipc_msg *m, u32 i)
374{
Jon Paul Maloyf21e8972015-05-14 10:46:17 -0400375 int usr = msg_user(m);
376
377 if (likely((usr == MSG_FRAGMENTER) || (usr == MSG_BUNDLER)))
Jon Paul Maloydde4b5a2015-10-14 09:23:18 -0400378 msg_set_bits(m, 9, 0, 0x7, i);
Jon Paul Maloyf21e8972015-05-14 10:46:17 -0400379 else if (i < TIPC_SYSTEM_IMPORTANCE)
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -0400380 msg_set_user(m, i);
381 else
382 pr_warn("Trying to set illegal importance in message\n");
383}
384
Allan Stephensd265fef2010-11-30 12:00:53 +0000385static inline u32 msg_prevnode(struct tipc_msg *m)
386{
387 return msg_word(m, 3);
388}
389
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900390static inline void msg_set_prevnode(struct tipc_msg *m, u32 a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100391{
392 msg_set_word(m, 3, a);
393}
394
Allan Stephensd265fef2010-11-30 12:00:53 +0000395static inline u32 msg_origport(struct tipc_msg *m)
396{
Jon Paul Maloy3127a022015-03-25 12:07:25 -0400397 if (msg_user(m) == MSG_FRAGMENTER)
398 m = msg_get_wrapped(m);
Allan Stephensd265fef2010-11-30 12:00:53 +0000399 return msg_word(m, 4);
400}
401
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900402static inline void msg_set_origport(struct tipc_msg *m, u32 p)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100403{
404 msg_set_word(m, 4, p);
405}
406
Allan Stephensd265fef2010-11-30 12:00:53 +0000407static inline u32 msg_destport(struct tipc_msg *m)
408{
409 return msg_word(m, 5);
410}
411
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900412static inline void msg_set_destport(struct tipc_msg *m, u32 p)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413{
414 msg_set_word(m, 5, p);
415}
416
Allan Stephensd265fef2010-11-30 12:00:53 +0000417static inline u32 msg_mc_netid(struct tipc_msg *m)
418{
419 return msg_word(m, 5);
420}
421
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900422static inline void msg_set_mc_netid(struct tipc_msg *m, u32 p)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100423{
424 msg_set_word(m, 5, p);
425}
426
Allan Stephensd265fef2010-11-30 12:00:53 +0000427static inline int msg_short(struct tipc_msg *m)
428{
Allan Stephens741d9eb2011-05-31 15:03:18 -0400429 return msg_hdr_sz(m) == SHORT_H_SIZE;
Allan Stephensd265fef2010-11-30 12:00:53 +0000430}
431
432static inline u32 msg_orignode(struct tipc_msg *m)
433{
434 if (likely(msg_short(m)))
435 return msg_prevnode(m);
436 return msg_word(m, 6);
437}
438
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900439static inline void msg_set_orignode(struct tipc_msg *m, u32 a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100440{
441 msg_set_word(m, 6, a);
442}
443
Allan Stephensd265fef2010-11-30 12:00:53 +0000444static inline u32 msg_destnode(struct tipc_msg *m)
445{
446 return msg_word(m, 7);
447}
448
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900449static inline void msg_set_destnode(struct tipc_msg *m, u32 a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100450{
451 msg_set_word(m, 7, a);
452}
453
Allan Stephensd265fef2010-11-30 12:00:53 +0000454static inline u32 msg_nametype(struct tipc_msg *m)
455{
456 return msg_word(m, 8);
457}
458
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900459static inline void msg_set_nametype(struct tipc_msg *m, u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100460{
461 msg_set_word(m, 8, n);
462}
463
Allan Stephensd265fef2010-11-30 12:00:53 +0000464static inline u32 msg_nameinst(struct tipc_msg *m)
465{
466 return msg_word(m, 9);
467}
468
469static inline u32 msg_namelower(struct tipc_msg *m)
470{
471 return msg_nameinst(m);
472}
473
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900474static inline void msg_set_namelower(struct tipc_msg *m, u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100475{
476 msg_set_word(m, 9, n);
477}
478
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900479static inline void msg_set_nameinst(struct tipc_msg *m, u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100480{
481 msg_set_namelower(m, n);
482}
483
Allan Stephensd265fef2010-11-30 12:00:53 +0000484static inline u32 msg_nameupper(struct tipc_msg *m)
485{
486 return msg_word(m, 10);
487}
488
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900489static inline void msg_set_nameupper(struct tipc_msg *m, u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100490{
491 msg_set_word(m, 10, n);
492}
493
Per Lidenb97bf3f2006-01-02 19:04:38 +0100494/*
Allan Stephenscc4c4352011-04-08 10:50:52 -0400495 * Constants and routines used to read and write TIPC internal message headers
496 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100497
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900498/*
Allan Stephenscc4c4352011-04-08 10:50:52 -0400499 * Connection management protocol message types
Per Lidenb97bf3f2006-01-02 19:04:38 +0100500 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100501#define CONN_PROBE 0
502#define CONN_PROBE_REPLY 1
503#define CONN_ACK 2
504
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900505/*
Allan Stephenscc4c4352011-04-08 10:50:52 -0400506 * Name distributor message types
Per Lidenb97bf3f2006-01-02 19:04:38 +0100507 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100508#define PUBLICATION 0
509#define WITHDRAWAL 1
510
Allan Stephens92138d12011-04-08 11:04:15 -0400511/*
512 * Segmentation message types
513 */
Allan Stephens92138d12011-04-08 11:04:15 -0400514#define FIRST_FRAGMENT 0
515#define FRAGMENT 1
516#define LAST_FRAGMENT 2
517
518/*
519 * Link management protocol message types
520 */
Allan Stephens92138d12011-04-08 11:04:15 -0400521#define STATE_MSG 0
522#define RESET_MSG 1
523#define ACTIVATE_MSG 2
524
525/*
526 * Changeover tunnel message types
527 */
Jon Paul Maloydff29b12015-04-02 09:33:01 -0400528#define SYNCH_MSG 0
529#define FAILOVER_MSG 1
Allan Stephens92138d12011-04-08 11:04:15 -0400530
531/*
532 * Config protocol message types
533 */
Allan Stephens92138d12011-04-08 11:04:15 -0400534#define DSC_REQ_MSG 0
535#define DSC_RESP_MSG 1
536
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900537/*
Jon Maloy75da2162017-10-13 11:04:23 +0200538 * Group protocol message types
539 */
540#define GRP_JOIN_MSG 0
541#define GRP_LEAVE_MSG 1
Jon Maloyb7d42632017-10-13 11:04:26 +0200542#define GRP_ADV_MSG 2
Jon Maloy75da2162017-10-13 11:04:23 +0200543
544/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100545 * Word 1
546 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100547static inline u32 msg_seq_gap(struct tipc_msg *m)
548{
Allan Stephensbd784532008-06-04 17:47:30 -0700549 return msg_bits(m, 1, 16, 0x1fff);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550}
551
552static inline void msg_set_seq_gap(struct tipc_msg *m, u32 n)
553{
Allan Stephensbd784532008-06-04 17:47:30 -0700554 msg_set_bits(m, 1, 16, 0x1fff, n);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100555}
556
Allan Stephensfc0eea62011-10-28 16:26:41 -0400557static inline u32 msg_node_sig(struct tipc_msg *m)
558{
559 return msg_bits(m, 1, 0, 0xffff);
560}
561
562static inline void msg_set_node_sig(struct tipc_msg *m, u32 n)
563{
564 msg_set_bits(m, 1, 0, 0xffff, n);
565}
566
Jon Paul Maloy7764d6e2015-03-13 16:08:05 -0400567static inline u32 msg_node_capabilities(struct tipc_msg *m)
568{
569 return msg_bits(m, 1, 15, 0x1fff);
570}
571
572static inline void msg_set_node_capabilities(struct tipc_msg *m, u32 n)
573{
574 msg_set_bits(m, 1, 15, 0x1fff, n);
575}
576
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900577/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100578 * Word 2
579 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100580static inline u32 msg_dest_domain(struct tipc_msg *m)
581{
582 return msg_word(m, 2);
583}
584
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900585static inline void msg_set_dest_domain(struct tipc_msg *m, u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100586{
587 msg_set_word(m, 2, n);
588}
589
590static inline u32 msg_bcgap_after(struct tipc_msg *m)
591{
592 return msg_bits(m, 2, 16, 0xffff);
593}
594
595static inline void msg_set_bcgap_after(struct tipc_msg *m, u32 n)
596{
597 msg_set_bits(m, 2, 16, 0xffff, n);
598}
599
600static inline u32 msg_bcgap_to(struct tipc_msg *m)
601{
602 return msg_bits(m, 2, 0, 0xffff);
603}
604
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900605static inline void msg_set_bcgap_to(struct tipc_msg *m, u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100606{
607 msg_set_bits(m, 2, 0, 0xffff, n);
608}
609
610
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900611/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100612 * Word 4
613 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100614static inline u32 msg_last_bcast(struct tipc_msg *m)
615{
616 return msg_bits(m, 4, 16, 0xffff);
617}
618
Jon Paul Maloy52666982015-10-22 08:51:41 -0400619static inline u32 msg_bc_snd_nxt(struct tipc_msg *m)
620{
621 return msg_last_bcast(m) + 1;
622}
623
Per Lidenb97bf3f2006-01-02 19:04:38 +0100624static inline void msg_set_last_bcast(struct tipc_msg *m, u32 n)
625{
626 msg_set_bits(m, 4, 16, 0xffff, n);
627}
628
Per Lidenb97bf3f2006-01-02 19:04:38 +0100629static inline void msg_set_fragm_no(struct tipc_msg *m, u32 n)
630{
631 msg_set_bits(m, 4, 16, 0xffff, n);
632}
633
634
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400635static inline u16 msg_next_sent(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100636{
637 return msg_bits(m, 4, 0, 0xffff);
638}
639
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400640static inline void msg_set_next_sent(struct tipc_msg *m, u16 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100641{
642 msg_set_bits(m, 4, 0, 0xffff, n);
643}
644
Per Lidenb97bf3f2006-01-02 19:04:38 +0100645static inline void msg_set_long_msgno(struct tipc_msg *m, u32 n)
646{
647 msg_set_bits(m, 4, 0, 0xffff, n);
648}
649
650static inline u32 msg_bc_netid(struct tipc_msg *m)
651{
652 return msg_word(m, 4);
653}
654
655static inline void msg_set_bc_netid(struct tipc_msg *m, u32 id)
656{
657 msg_set_word(m, 4, id);
658}
659
660static inline u32 msg_link_selector(struct tipc_msg *m)
661{
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500662 if (msg_user(m) == MSG_FRAGMENTER)
663 m = (void *)msg_data(m);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100664 return msg_bits(m, 4, 0, 1);
665}
666
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900667/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100668 * Word 5
669 */
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400670static inline u16 msg_session(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100671{
672 return msg_bits(m, 5, 16, 0xffff);
673}
674
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400675static inline void msg_set_session(struct tipc_msg *m, u16 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100676{
677 msg_set_bits(m, 5, 16, 0xffff, n);
678}
679
680static inline u32 msg_probe(struct tipc_msg *m)
681{
682 return msg_bits(m, 5, 0, 1);
683}
684
685static inline void msg_set_probe(struct tipc_msg *m, u32 val)
686{
Allan Stephens7eb878e2011-05-25 13:28:27 -0400687 msg_set_bits(m, 5, 0, 1, val);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100688}
689
690static inline char msg_net_plane(struct tipc_msg *m)
691{
692 return msg_bits(m, 5, 1, 7) + 'A';
693}
694
695static inline void msg_set_net_plane(struct tipc_msg *m, char n)
696{
697 msg_set_bits(m, 5, 1, 7, (n - 'A'));
698}
699
700static inline u32 msg_linkprio(struct tipc_msg *m)
701{
702 return msg_bits(m, 5, 4, 0x1f);
703}
704
705static inline void msg_set_linkprio(struct tipc_msg *m, u32 n)
706{
707 msg_set_bits(m, 5, 4, 0x1f, n);
708}
709
710static inline u32 msg_bearer_id(struct tipc_msg *m)
711{
712 return msg_bits(m, 5, 9, 0x7);
713}
714
715static inline void msg_set_bearer_id(struct tipc_msg *m, u32 n)
716{
717 msg_set_bits(m, 5, 9, 0x7, n);
718}
719
720static inline u32 msg_redundant_link(struct tipc_msg *m)
721{
722 return msg_bits(m, 5, 12, 0x1);
723}
724
Allan Stephens77f167f2011-02-28 15:30:20 -0500725static inline void msg_set_redundant_link(struct tipc_msg *m, u32 r)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100726{
Allan Stephens77f167f2011-02-28 15:30:20 -0500727 msg_set_bits(m, 5, 12, 0x1, r);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100728}
729
Jon Paul Maloy634696b2016-04-15 13:33:03 -0400730static inline u32 msg_peer_stopping(struct tipc_msg *m)
731{
732 return msg_bits(m, 5, 13, 0x1);
733}
734
735static inline void msg_set_peer_stopping(struct tipc_msg *m, u32 s)
736{
737 msg_set_bits(m, 5, 13, 0x1, s);
738}
739
Jon Paul Maloy06bd2b12016-10-27 18:51:55 -0400740static inline bool msg_bc_ack_invalid(struct tipc_msg *m)
741{
742 switch (msg_user(m)) {
743 case BCAST_PROTOCOL:
744 case NAME_DISTRIBUTOR:
745 case LINK_PROTOCOL:
746 return msg_bits(m, 5, 14, 0x1);
747 default:
748 return false;
749 }
750}
751
752static inline void msg_set_bc_ack_invalid(struct tipc_msg *m, bool invalid)
753{
754 msg_set_bits(m, 5, 14, 0x1, invalid);
755}
756
Allan Stephens3d749a62011-10-07 15:19:11 -0400757static inline char *msg_media_addr(struct tipc_msg *m)
758{
Erik Hugne91e2eb52015-02-27 08:56:57 +0100759 return (char *)&m->hdr[TIPC_MEDIA_INFO_OFFSET];
Allan Stephens3d749a62011-10-07 15:19:11 -0400760}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100761
Jon Paul Maloy02d11ca2016-09-01 13:52:49 -0400762static inline u32 msg_bc_gap(struct tipc_msg *m)
763{
764 return msg_bits(m, 8, 0, 0x3ff);
765}
766
767static inline void msg_set_bc_gap(struct tipc_msg *m, u32 n)
768{
769 msg_set_bits(m, 8, 0, 0x3ff, n);
770}
771
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900772/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100773 * Word 9
774 */
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400775static inline u16 msg_msgcnt(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100776{
777 return msg_bits(m, 9, 16, 0xffff);
778}
779
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400780static inline void msg_set_msgcnt(struct tipc_msg *m, u16 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100781{
782 msg_set_bits(m, 9, 16, 0xffff, n);
783}
784
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400785static inline u32 msg_conn_ack(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100786{
787 return msg_bits(m, 9, 16, 0xffff);
788}
789
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400790static inline void msg_set_conn_ack(struct tipc_msg *m, u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100791{
792 msg_set_bits(m, 9, 16, 0xffff, n);
793}
794
Jon Maloyb7d42632017-10-13 11:04:26 +0200795static inline u16 msg_adv_win(struct tipc_msg *m)
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400796{
797 return msg_bits(m, 9, 0, 0xffff);
798}
799
Jon Maloyb7d42632017-10-13 11:04:26 +0200800static inline void msg_set_adv_win(struct tipc_msg *m, u16 n)
Jon Paul Maloy10724cc2016-05-02 11:58:47 -0400801{
802 msg_set_bits(m, 9, 0, 0xffff, n);
803}
804
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900805static inline u32 msg_max_pkt(struct tipc_msg *m)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100806{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000807 return msg_bits(m, 9, 16, 0xffff) * 4;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100808}
809
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900810static inline void msg_set_max_pkt(struct tipc_msg *m, u32 n)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100811{
812 msg_set_bits(m, 9, 16, 0xffff, (n / 4));
813}
814
815static inline u32 msg_link_tolerance(struct tipc_msg *m)
816{
817 return msg_bits(m, 9, 0, 0xffff);
818}
819
820static inline void msg_set_link_tolerance(struct tipc_msg *m, u32 n)
821{
822 msg_set_bits(m, 9, 0, 0xffff, n);
823}
824
Jon Maloy75da2162017-10-13 11:04:23 +0200825static inline u16 msg_grp_bc_syncpt(struct tipc_msg *m)
826{
827 return msg_bits(m, 9, 16, 0xffff);
828}
829
830static inline void msg_set_grp_bc_syncpt(struct tipc_msg *m, u16 n)
831{
832 msg_set_bits(m, 9, 16, 0xffff, n);
833}
834
835/* Word 10
836 */
Jon Maloyae236fb2017-10-13 11:04:25 +0200837static inline u16 msg_grp_evt(struct tipc_msg *m)
838{
839 return msg_bits(m, 10, 0, 0x3);
840}
841
842static inline void msg_set_grp_evt(struct tipc_msg *m, int n)
843{
844 msg_set_bits(m, 10, 0, 0x3, n);
845}
846
Jon Maloy75da2162017-10-13 11:04:23 +0200847static inline u16 msg_grp_bc_seqno(struct tipc_msg *m)
848{
849 return msg_bits(m, 10, 16, 0xffff);
850}
851
852static inline void msg_set_grp_bc_seqno(struct tipc_msg *m, u32 n)
853{
854 msg_set_bits(m, 10, 16, 0xffff, n);
855}
856
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400857static inline bool msg_peer_link_is_up(struct tipc_msg *m)
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400858{
859 if (likely(msg_user(m) != LINK_PROTOCOL))
860 return true;
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400861 if (msg_type(m) == STATE_MSG)
862 return true;
863 return false;
Jon Paul Maloyd9992972015-07-16 16:54:31 -0400864}
865
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400866static inline bool msg_peer_node_is_up(struct tipc_msg *m)
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400867{
Jon Paul Maloy6e498152015-07-30 18:24:19 -0400868 if (msg_peer_link_is_up(m))
869 return true;
Jon Paul Maloy1a20cc22015-07-16 16:54:30 -0400870 return msg_redundant_link(m);
871}
872
Jon Paul Maloy5b7066c2016-04-07 10:09:14 -0400873static inline bool msg_is_reset(struct tipc_msg *hdr)
874{
875 return (msg_user(hdr) == LINK_PROTOCOL) && (msg_type(hdr) == RESET_MSG);
876}
877
Parthasarathy Bhuvaragan57d5f642017-01-13 15:46:25 +0100878struct sk_buff *tipc_buf_acquire(u32 size, gfp_t gfp);
Jon Paul Maloycf2157f2015-03-13 16:08:06 -0400879bool tipc_msg_validate(struct sk_buff *skb);
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400880bool tipc_msg_reverse(u32 own_addr, struct sk_buff **skb, int err);
Jon Maloy64ac5f52017-10-13 11:04:20 +0200881void tipc_skb_reject(struct net *net, int err, struct sk_buff *skb,
882 struct sk_buff_head *xmitq);
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500883void tipc_msg_init(u32 own_addr, struct tipc_msg *m, u32 user, u32 type,
Ying Xue34747532015-01-09 15:27:10 +0800884 u32 hsize, u32 destnode);
Jon Paul Maloye3a77562015-02-05 08:36:39 -0500885struct sk_buff *tipc_msg_create(uint user, uint type, uint hdr_sz,
886 uint data_sz, u32 dnode, u32 onode,
887 u32 dport, u32 oport, int errcode);
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400888int tipc_buf_append(struct sk_buff **headbuf, struct sk_buff **buf);
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400889bool tipc_msg_bundle(struct sk_buff *skb, struct tipc_msg *msg, u32 mtu);
890bool tipc_msg_make_bundle(struct sk_buff **skb, struct tipc_msg *msg,
891 u32 mtu, u32 dnode);
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500892bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos);
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500893int tipc_msg_build(struct tipc_msg *mhdr, struct msghdr *m,
Ying Xue34747532015-01-09 15:27:10 +0800894 int offset, int dsz, int mtu, struct sk_buff_head *list);
Jon Paul Maloycda36962015-07-22 10:11:20 -0400895bool tipc_msg_lookup_dest(struct net *net, struct sk_buff *skb, int *err);
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400896bool tipc_msg_reassemble(struct sk_buff_head *list, struct sk_buff_head *rcvq);
Jon Paul Maloya853e4c2017-01-18 13:50:52 -0500897bool tipc_msg_pskb_copy(u32 dst, struct sk_buff_head *msg,
898 struct sk_buff_head *cpy);
Jon Paul Maloy8306f992015-10-15 14:52:43 -0400899void __tipc_skb_queue_sorted(struct sk_buff_head *list, u16 seqno,
900 struct sk_buff *skb);
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400901
Jon Paul Maloye4bf4f72015-05-14 10:46:14 -0400902static inline u16 buf_seqno(struct sk_buff *skb)
903{
904 return msg_seqno(buf_msg(skb));
905}
906
Jon Paul Maloycb1b7282015-02-05 08:36:44 -0500907/* tipc_skb_peek(): peek and reserve first buffer in list
908 * @list: list to be peeked in
909 * Returns pointer to first buffer in list, if any
910 */
911static inline struct sk_buff *tipc_skb_peek(struct sk_buff_head *list,
912 spinlock_t *lock)
913{
914 struct sk_buff *skb;
915
916 spin_lock_bh(lock);
917 skb = skb_peek(list);
918 if (skb)
919 skb_get(skb);
920 spin_unlock_bh(lock);
921 return skb;
922}
923
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500924/* tipc_skb_peek_port(): find a destination port, ignoring all destinations
925 * up to and including 'filter'.
926 * Note: ignoring previously tried destinations minimizes the risk of
927 * contention on the socket lock
928 * @list: list to be peeked in
929 * @filter: last destination to be ignored from search
930 * Returns a destination port number, of applicable.
931 */
932static inline u32 tipc_skb_peek_port(struct sk_buff_head *list, u32 filter)
933{
934 struct sk_buff *skb;
935 u32 dport = 0;
936 bool ignore = true;
937
938 spin_lock_bh(&list->lock);
939 skb_queue_walk(list, skb) {
940 dport = msg_destport(buf_msg(skb));
941 if (!filter || skb_queue_is_last(list, skb))
942 break;
943 if (dport == filter)
944 ignore = false;
945 else if (!ignore)
946 break;
947 }
948 spin_unlock_bh(&list->lock);
949 return dport;
950}
951
952/* tipc_skb_dequeue(): unlink first buffer with dest 'dport' from list
953 * @list: list to be unlinked from
954 * @dport: selection criteria for buffer to unlink
955 */
956static inline struct sk_buff *tipc_skb_dequeue(struct sk_buff_head *list,
957 u32 dport)
958{
959 struct sk_buff *_skb, *tmp, *skb = NULL;
960
961 spin_lock_bh(&list->lock);
962 skb_queue_walk_safe(list, _skb, tmp) {
963 if (msg_destport(buf_msg(_skb)) == dport) {
964 __skb_unlink(_skb, list);
965 skb = _skb;
966 break;
967 }
968 }
969 spin_unlock_bh(&list->lock);
970 return skb;
971}
972
Jon Paul Maloy598411d2015-07-30 18:24:23 -0400973/* tipc_skb_queue_splice_tail - append an skb list to lock protected list
974 * @list: the new list to append. Not lock protected
975 * @head: target list. Lock protected.
976 */
977static inline void tipc_skb_queue_splice_tail(struct sk_buff_head *list,
978 struct sk_buff_head *head)
979{
980 spin_lock_bh(&head->lock);
981 skb_queue_splice_tail(list, head);
982 spin_unlock_bh(&head->lock);
983}
984
985/* tipc_skb_queue_splice_tail_init - merge two lock protected skb lists
986 * @list: the new list to add. Lock protected. Will be reinitialized
987 * @head: target list. Lock protected.
988 */
989static inline void tipc_skb_queue_splice_tail_init(struct sk_buff_head *list,
990 struct sk_buff_head *head)
991{
992 struct sk_buff_head tmp;
993
994 __skb_queue_head_init(&tmp);
995
996 spin_lock_bh(&list->lock);
997 skb_queue_splice_tail_init(list, &tmp);
998 spin_unlock_bh(&list->lock);
999 tipc_skb_queue_splice_tail(&tmp, head);
1000}
1001
Per Lidenb97bf3f2006-01-02 19:04:38 +01001002#endif