mm, memory_hotplug: try to migrate full pfn range
[linux/fpc-iii.git] / net / tipc / msg.h
bloba0924956bb61b1aecb100771890c9b9e7bbf9cbe
1 /*
2 * net/tipc/msg.h: Include file for TIPC message header routines
4 * Copyright (c) 2000-2007, 2014-2017 Ericsson AB
5 * Copyright (c) 2005-2008, 2010-2011, Wind River Systems
6 * All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
11 * 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.
20 * 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.
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
34 * POSSIBILITY OF SUCH DAMAGE.
37 #ifndef _TIPC_MSG_H
38 #define _TIPC_MSG_H
40 #include <linux/tipc.h>
41 #include "core.h"
44 * Constants and routines used to read and write TIPC payload message headers
46 * Note: Some items are also used with TIPC internal message headers
48 #define TIPC_VERSION 2
49 struct plist;
52 * 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
58 #define TIPC_SYSTEM_IMPORTANCE 4
62 * Payload message types
64 #define TIPC_CONN_MSG 0
65 #define TIPC_MCAST_MSG 1
66 #define TIPC_NAMED_MSG 2
67 #define TIPC_DIRECT_MSG 3
68 #define TIPC_GRP_MEMBER_EVT 4
69 #define TIPC_GRP_BCAST_MSG 5
70 #define TIPC_GRP_MCAST_MSG 6
71 #define TIPC_GRP_UCAST_MSG 7
74 * Internal message users
76 #define BCAST_PROTOCOL 5
77 #define MSG_BUNDLER 6
78 #define LINK_PROTOCOL 7
79 #define CONN_MANAGER 8
80 #define GROUP_PROTOCOL 9
81 #define TUNNEL_PROTOCOL 10
82 #define NAME_DISTRIBUTOR 11
83 #define MSG_FRAGMENTER 12
84 #define LINK_CONFIG 13
85 #define SOCK_WAKEUP 14 /* pseudo user */
86 #define TOP_SRV 15 /* pseudo user */
89 * Message header sizes
91 #define SHORT_H_SIZE 24 /* In-cluster basic payload message */
92 #define BASIC_H_SIZE 32 /* Basic payload message */
93 #define NAMED_H_SIZE 40 /* Named payload message */
94 #define MCAST_H_SIZE 44 /* Multicast payload message */
95 #define GROUP_H_SIZE 44 /* Group payload message */
96 #define INT_H_SIZE 40 /* Internal messages */
97 #define MIN_H_SIZE 24 /* Smallest legal TIPC header size */
98 #define MAX_H_SIZE 60 /* Largest possible TIPC header size */
100 #define MAX_MSG_SIZE (MAX_H_SIZE + TIPC_MAX_USER_MSG_SIZE)
101 #define FB_MTU 3744
102 #define TIPC_MEDIA_INFO_OFFSET 5
104 struct tipc_skb_cb {
105 u32 bytes_read;
106 u32 orig_member;
107 struct sk_buff *tail;
108 unsigned long nxt_retr;
109 bool validated;
110 u16 chain_imp;
111 u16 ackers;
114 #define TIPC_SKB_CB(__skb) ((struct tipc_skb_cb *)&((__skb)->cb[0]))
116 struct tipc_msg {
117 __be32 hdr[15];
120 static inline struct tipc_msg *buf_msg(struct sk_buff *skb)
122 return (struct tipc_msg *)skb->data;
125 static inline u32 msg_word(struct tipc_msg *m, u32 pos)
127 return ntohl(m->hdr[pos]);
130 static inline void msg_set_word(struct tipc_msg *m, u32 w, u32 val)
132 m->hdr[w] = htonl(val);
135 static inline u32 msg_bits(struct tipc_msg *m, u32 w, u32 pos, u32 mask)
137 return (msg_word(m, w) >> pos) & mask;
140 static inline void msg_set_bits(struct tipc_msg *m, u32 w,
141 u32 pos, u32 mask, u32 val)
143 val = (val & mask) << pos;
144 mask = mask << pos;
145 m->hdr[w] &= ~htonl(mask);
146 m->hdr[w] |= htonl(val);
149 static inline void msg_swap_words(struct tipc_msg *msg, u32 a, u32 b)
151 u32 temp = msg->hdr[a];
153 msg->hdr[a] = msg->hdr[b];
154 msg->hdr[b] = temp;
158 * Word 0
160 static inline u32 msg_version(struct tipc_msg *m)
162 return msg_bits(m, 0, 29, 7);
165 static inline void msg_set_version(struct tipc_msg *m)
167 msg_set_bits(m, 0, 29, 7, TIPC_VERSION);
170 static inline u32 msg_user(struct tipc_msg *m)
172 return msg_bits(m, 0, 25, 0xf);
175 static inline u32 msg_isdata(struct tipc_msg *m)
177 return msg_user(m) <= TIPC_CRITICAL_IMPORTANCE;
180 static inline void msg_set_user(struct tipc_msg *m, u32 n)
182 msg_set_bits(m, 0, 25, 0xf, n);
185 static inline u32 msg_hdr_sz(struct tipc_msg *m)
187 return msg_bits(m, 0, 21, 0xf) << 2;
190 static inline void msg_set_hdr_sz(struct tipc_msg *m, u32 n)
192 msg_set_bits(m, 0, 21, 0xf, n>>2);
195 static inline u32 msg_size(struct tipc_msg *m)
197 return msg_bits(m, 0, 0, 0x1ffff);
200 static inline u32 msg_blocks(struct tipc_msg *m)
202 return (msg_size(m) / 1024) + 1;
205 static inline u32 msg_data_sz(struct tipc_msg *m)
207 return msg_size(m) - msg_hdr_sz(m);
210 static inline int msg_non_seq(struct tipc_msg *m)
212 return msg_bits(m, 0, 20, 1);
215 static inline void msg_set_non_seq(struct tipc_msg *m, u32 n)
217 msg_set_bits(m, 0, 20, 1, n);
220 static inline int msg_is_syn(struct tipc_msg *m)
222 return msg_bits(m, 0, 17, 1);
225 static inline void msg_set_syn(struct tipc_msg *m, u32 d)
227 msg_set_bits(m, 0, 17, 1, d);
230 static inline int msg_dest_droppable(struct tipc_msg *m)
232 return msg_bits(m, 0, 19, 1);
235 static inline void msg_set_dest_droppable(struct tipc_msg *m, u32 d)
237 msg_set_bits(m, 0, 19, 1, d);
240 static inline int msg_is_keepalive(struct tipc_msg *m)
242 return msg_bits(m, 0, 19, 1);
245 static inline void msg_set_is_keepalive(struct tipc_msg *m, u32 d)
247 msg_set_bits(m, 0, 19, 1, d);
250 static inline int msg_src_droppable(struct tipc_msg *m)
252 return msg_bits(m, 0, 18, 1);
255 static inline void msg_set_src_droppable(struct tipc_msg *m, u32 d)
257 msg_set_bits(m, 0, 18, 1, d);
260 static inline void msg_set_size(struct tipc_msg *m, u32 sz)
262 m->hdr[0] = htonl((msg_word(m, 0) & ~0x1ffff) | sz);
265 static inline unchar *msg_data(struct tipc_msg *m)
267 return ((unchar *)m) + msg_hdr_sz(m);
270 static inline struct tipc_msg *msg_get_wrapped(struct tipc_msg *m)
272 return (struct tipc_msg *)msg_data(m);
276 * Word 1
278 static inline u32 msg_type(struct tipc_msg *m)
280 return msg_bits(m, 1, 29, 0x7);
283 static inline void msg_set_type(struct tipc_msg *m, u32 n)
285 msg_set_bits(m, 1, 29, 0x7, n);
288 static inline int msg_in_group(struct tipc_msg *m)
290 int mtyp = msg_type(m);
292 return mtyp >= TIPC_GRP_MEMBER_EVT && mtyp <= TIPC_GRP_UCAST_MSG;
295 static inline bool msg_is_grp_evt(struct tipc_msg *m)
297 return msg_type(m) == TIPC_GRP_MEMBER_EVT;
300 static inline u32 msg_named(struct tipc_msg *m)
302 return msg_type(m) == TIPC_NAMED_MSG;
305 static inline u32 msg_mcast(struct tipc_msg *m)
307 int mtyp = msg_type(m);
309 return ((mtyp == TIPC_MCAST_MSG) || (mtyp == TIPC_GRP_BCAST_MSG) ||
310 (mtyp == TIPC_GRP_MCAST_MSG));
313 static inline u32 msg_connected(struct tipc_msg *m)
315 return msg_type(m) == TIPC_CONN_MSG;
318 static inline u32 msg_errcode(struct tipc_msg *m)
320 return msg_bits(m, 1, 25, 0xf);
323 static inline void msg_set_errcode(struct tipc_msg *m, u32 err)
325 msg_set_bits(m, 1, 25, 0xf, err);
328 static inline u32 msg_reroute_cnt(struct tipc_msg *m)
330 return msg_bits(m, 1, 21, 0xf);
333 static inline void msg_incr_reroute_cnt(struct tipc_msg *m)
335 msg_set_bits(m, 1, 21, 0xf, msg_reroute_cnt(m) + 1);
338 static inline void msg_reset_reroute_cnt(struct tipc_msg *m)
340 msg_set_bits(m, 1, 21, 0xf, 0);
343 static inline u32 msg_lookup_scope(struct tipc_msg *m)
345 return msg_bits(m, 1, 19, 0x3);
348 static inline void msg_set_lookup_scope(struct tipc_msg *m, u32 n)
350 msg_set_bits(m, 1, 19, 0x3, n);
353 static inline u16 msg_bcast_ack(struct tipc_msg *m)
355 return msg_bits(m, 1, 0, 0xffff);
358 static inline void msg_set_bcast_ack(struct tipc_msg *m, u16 n)
360 msg_set_bits(m, 1, 0, 0xffff, n);
365 * Word 2
367 static inline u16 msg_ack(struct tipc_msg *m)
369 return msg_bits(m, 2, 16, 0xffff);
372 static inline void msg_set_ack(struct tipc_msg *m, u16 n)
374 msg_set_bits(m, 2, 16, 0xffff, n);
377 static inline u16 msg_seqno(struct tipc_msg *m)
379 return msg_bits(m, 2, 0, 0xffff);
382 static inline void msg_set_seqno(struct tipc_msg *m, u16 n)
384 msg_set_bits(m, 2, 0, 0xffff, n);
388 * Words 3-10
390 static inline u32 msg_importance(struct tipc_msg *m)
392 int usr = msg_user(m);
394 if (likely((usr <= TIPC_CRITICAL_IMPORTANCE) && !msg_errcode(m)))
395 return usr;
396 if ((usr == MSG_FRAGMENTER) || (usr == MSG_BUNDLER))
397 return msg_bits(m, 9, 0, 0x7);
398 return TIPC_SYSTEM_IMPORTANCE;
401 static inline void msg_set_importance(struct tipc_msg *m, u32 i)
403 int usr = msg_user(m);
405 if (likely((usr == MSG_FRAGMENTER) || (usr == MSG_BUNDLER)))
406 msg_set_bits(m, 9, 0, 0x7, i);
407 else if (i < TIPC_SYSTEM_IMPORTANCE)
408 msg_set_user(m, i);
409 else
410 pr_warn("Trying to set illegal importance in message\n");
413 static inline u32 msg_prevnode(struct tipc_msg *m)
415 return msg_word(m, 3);
418 static inline void msg_set_prevnode(struct tipc_msg *m, u32 a)
420 msg_set_word(m, 3, a);
423 static inline u32 msg_origport(struct tipc_msg *m)
425 if (msg_user(m) == MSG_FRAGMENTER)
426 m = msg_get_wrapped(m);
427 return msg_word(m, 4);
430 static inline void msg_set_origport(struct tipc_msg *m, u32 p)
432 msg_set_word(m, 4, p);
435 static inline u32 msg_destport(struct tipc_msg *m)
437 return msg_word(m, 5);
440 static inline void msg_set_destport(struct tipc_msg *m, u32 p)
442 msg_set_word(m, 5, p);
445 static inline u32 msg_mc_netid(struct tipc_msg *m)
447 return msg_word(m, 5);
450 static inline void msg_set_mc_netid(struct tipc_msg *m, u32 p)
452 msg_set_word(m, 5, p);
455 static inline int msg_short(struct tipc_msg *m)
457 return msg_hdr_sz(m) == SHORT_H_SIZE;
460 static inline u32 msg_orignode(struct tipc_msg *m)
462 if (likely(msg_short(m)))
463 return msg_prevnode(m);
464 return msg_word(m, 6);
467 static inline void msg_set_orignode(struct tipc_msg *m, u32 a)
469 msg_set_word(m, 6, a);
472 static inline u32 msg_destnode(struct tipc_msg *m)
474 return msg_word(m, 7);
477 static inline void msg_set_destnode(struct tipc_msg *m, u32 a)
479 msg_set_word(m, 7, a);
482 static inline u32 msg_nametype(struct tipc_msg *m)
484 return msg_word(m, 8);
487 static inline void msg_set_nametype(struct tipc_msg *m, u32 n)
489 msg_set_word(m, 8, n);
492 static inline u32 msg_nameinst(struct tipc_msg *m)
494 return msg_word(m, 9);
497 static inline u32 msg_namelower(struct tipc_msg *m)
499 return msg_nameinst(m);
502 static inline void msg_set_namelower(struct tipc_msg *m, u32 n)
504 msg_set_word(m, 9, n);
507 static inline void msg_set_nameinst(struct tipc_msg *m, u32 n)
509 msg_set_namelower(m, n);
512 static inline u32 msg_nameupper(struct tipc_msg *m)
514 return msg_word(m, 10);
517 static inline void msg_set_nameupper(struct tipc_msg *m, u32 n)
519 msg_set_word(m, 10, n);
523 * Constants and routines used to read and write TIPC internal message headers
527 * Connection management protocol message types
529 #define CONN_PROBE 0
530 #define CONN_PROBE_REPLY 1
531 #define CONN_ACK 2
534 * Name distributor message types
536 #define PUBLICATION 0
537 #define WITHDRAWAL 1
540 * Segmentation message types
542 #define FIRST_FRAGMENT 0
543 #define FRAGMENT 1
544 #define LAST_FRAGMENT 2
547 * Link management protocol message types
549 #define STATE_MSG 0
550 #define RESET_MSG 1
551 #define ACTIVATE_MSG 2
554 * Changeover tunnel message types
556 #define SYNCH_MSG 0
557 #define FAILOVER_MSG 1
560 * Config protocol message types
562 #define DSC_REQ_MSG 0
563 #define DSC_RESP_MSG 1
564 #define DSC_TRIAL_MSG 2
565 #define DSC_TRIAL_FAIL_MSG 3
568 * Group protocol message types
570 #define GRP_JOIN_MSG 0
571 #define GRP_LEAVE_MSG 1
572 #define GRP_ADV_MSG 2
573 #define GRP_ACK_MSG 3
574 #define GRP_RECLAIM_MSG 4
575 #define GRP_REMIT_MSG 5
578 * Word 1
580 static inline u32 msg_seq_gap(struct tipc_msg *m)
582 return msg_bits(m, 1, 16, 0x1fff);
585 static inline void msg_set_seq_gap(struct tipc_msg *m, u32 n)
587 msg_set_bits(m, 1, 16, 0x1fff, n);
590 static inline u32 msg_node_sig(struct tipc_msg *m)
592 return msg_bits(m, 1, 0, 0xffff);
595 static inline void msg_set_node_sig(struct tipc_msg *m, u32 n)
597 msg_set_bits(m, 1, 0, 0xffff, n);
600 static inline u32 msg_node_capabilities(struct tipc_msg *m)
602 return msg_bits(m, 1, 15, 0x1fff);
605 static inline void msg_set_node_capabilities(struct tipc_msg *m, u32 n)
607 msg_set_bits(m, 1, 15, 0x1fff, n);
611 * Word 2
613 static inline u32 msg_dest_domain(struct tipc_msg *m)
615 return msg_word(m, 2);
618 static inline void msg_set_dest_domain(struct tipc_msg *m, u32 n)
620 msg_set_word(m, 2, n);
623 static inline u32 msg_bcgap_after(struct tipc_msg *m)
625 return msg_bits(m, 2, 16, 0xffff);
628 static inline void msg_set_bcgap_after(struct tipc_msg *m, u32 n)
630 msg_set_bits(m, 2, 16, 0xffff, n);
633 static inline u32 msg_bcgap_to(struct tipc_msg *m)
635 return msg_bits(m, 2, 0, 0xffff);
638 static inline void msg_set_bcgap_to(struct tipc_msg *m, u32 n)
640 msg_set_bits(m, 2, 0, 0xffff, n);
644 * Word 4
646 static inline u32 msg_last_bcast(struct tipc_msg *m)
648 return msg_bits(m, 4, 16, 0xffff);
651 static inline u32 msg_bc_snd_nxt(struct tipc_msg *m)
653 return msg_last_bcast(m) + 1;
656 static inline void msg_set_last_bcast(struct tipc_msg *m, u32 n)
658 msg_set_bits(m, 4, 16, 0xffff, n);
661 static inline void msg_set_fragm_no(struct tipc_msg *m, u32 n)
663 msg_set_bits(m, 4, 16, 0xffff, n);
667 static inline u16 msg_next_sent(struct tipc_msg *m)
669 return msg_bits(m, 4, 0, 0xffff);
672 static inline void msg_set_next_sent(struct tipc_msg *m, u16 n)
674 msg_set_bits(m, 4, 0, 0xffff, n);
677 static inline void msg_set_long_msgno(struct tipc_msg *m, u32 n)
679 msg_set_bits(m, 4, 0, 0xffff, n);
682 static inline u32 msg_bc_netid(struct tipc_msg *m)
684 return msg_word(m, 4);
687 static inline void msg_set_bc_netid(struct tipc_msg *m, u32 id)
689 msg_set_word(m, 4, id);
692 static inline u32 msg_link_selector(struct tipc_msg *m)
694 if (msg_user(m) == MSG_FRAGMENTER)
695 m = (void *)msg_data(m);
696 return msg_bits(m, 4, 0, 1);
700 * Word 5
702 static inline u16 msg_session(struct tipc_msg *m)
704 return msg_bits(m, 5, 16, 0xffff);
707 static inline void msg_set_session(struct tipc_msg *m, u16 n)
709 msg_set_bits(m, 5, 16, 0xffff, n);
712 static inline u32 msg_probe(struct tipc_msg *m)
714 return msg_bits(m, 5, 0, 1);
717 static inline void msg_set_probe(struct tipc_msg *m, u32 val)
719 msg_set_bits(m, 5, 0, 1, val);
722 static inline char msg_net_plane(struct tipc_msg *m)
724 return msg_bits(m, 5, 1, 7) + 'A';
727 static inline void msg_set_net_plane(struct tipc_msg *m, char n)
729 msg_set_bits(m, 5, 1, 7, (n - 'A'));
732 static inline u32 msg_linkprio(struct tipc_msg *m)
734 return msg_bits(m, 5, 4, 0x1f);
737 static inline void msg_set_linkprio(struct tipc_msg *m, u32 n)
739 msg_set_bits(m, 5, 4, 0x1f, n);
742 static inline u32 msg_bearer_id(struct tipc_msg *m)
744 return msg_bits(m, 5, 9, 0x7);
747 static inline void msg_set_bearer_id(struct tipc_msg *m, u32 n)
749 msg_set_bits(m, 5, 9, 0x7, n);
752 static inline u32 msg_redundant_link(struct tipc_msg *m)
754 return msg_bits(m, 5, 12, 0x1);
757 static inline void msg_set_redundant_link(struct tipc_msg *m, u32 r)
759 msg_set_bits(m, 5, 12, 0x1, r);
762 static inline u32 msg_peer_stopping(struct tipc_msg *m)
764 return msg_bits(m, 5, 13, 0x1);
767 static inline void msg_set_peer_stopping(struct tipc_msg *m, u32 s)
769 msg_set_bits(m, 5, 13, 0x1, s);
772 static inline bool msg_bc_ack_invalid(struct tipc_msg *m)
774 switch (msg_user(m)) {
775 case BCAST_PROTOCOL:
776 case NAME_DISTRIBUTOR:
777 case LINK_PROTOCOL:
778 return msg_bits(m, 5, 14, 0x1);
779 default:
780 return false;
784 static inline void msg_set_bc_ack_invalid(struct tipc_msg *m, bool invalid)
786 msg_set_bits(m, 5, 14, 0x1, invalid);
789 static inline char *msg_media_addr(struct tipc_msg *m)
791 return (char *)&m->hdr[TIPC_MEDIA_INFO_OFFSET];
794 static inline u32 msg_bc_gap(struct tipc_msg *m)
796 return msg_bits(m, 8, 0, 0x3ff);
799 static inline void msg_set_bc_gap(struct tipc_msg *m, u32 n)
801 msg_set_bits(m, 8, 0, 0x3ff, n);
805 * Word 9
807 static inline u16 msg_msgcnt(struct tipc_msg *m)
809 return msg_bits(m, 9, 16, 0xffff);
812 static inline void msg_set_msgcnt(struct tipc_msg *m, u16 n)
814 msg_set_bits(m, 9, 16, 0xffff, n);
817 static inline u32 msg_conn_ack(struct tipc_msg *m)
819 return msg_bits(m, 9, 16, 0xffff);
822 static inline void msg_set_conn_ack(struct tipc_msg *m, u32 n)
824 msg_set_bits(m, 9, 16, 0xffff, n);
827 static inline u16 msg_adv_win(struct tipc_msg *m)
829 return msg_bits(m, 9, 0, 0xffff);
832 static inline void msg_set_adv_win(struct tipc_msg *m, u16 n)
834 msg_set_bits(m, 9, 0, 0xffff, n);
837 static inline u32 msg_max_pkt(struct tipc_msg *m)
839 return msg_bits(m, 9, 16, 0xffff) * 4;
842 static inline void msg_set_max_pkt(struct tipc_msg *m, u32 n)
844 msg_set_bits(m, 9, 16, 0xffff, (n / 4));
847 static inline u32 msg_link_tolerance(struct tipc_msg *m)
849 return msg_bits(m, 9, 0, 0xffff);
852 static inline void msg_set_link_tolerance(struct tipc_msg *m, u32 n)
854 msg_set_bits(m, 9, 0, 0xffff, n);
857 static inline u16 msg_grp_bc_syncpt(struct tipc_msg *m)
859 return msg_bits(m, 9, 16, 0xffff);
862 static inline void msg_set_grp_bc_syncpt(struct tipc_msg *m, u16 n)
864 msg_set_bits(m, 9, 16, 0xffff, n);
867 static inline u16 msg_grp_bc_acked(struct tipc_msg *m)
869 return msg_bits(m, 9, 16, 0xffff);
872 static inline void msg_set_grp_bc_acked(struct tipc_msg *m, u16 n)
874 msg_set_bits(m, 9, 16, 0xffff, n);
877 static inline u16 msg_grp_remitted(struct tipc_msg *m)
879 return msg_bits(m, 9, 16, 0xffff);
882 static inline void msg_set_grp_remitted(struct tipc_msg *m, u16 n)
884 msg_set_bits(m, 9, 16, 0xffff, n);
887 /* Word 10
889 static inline u16 msg_grp_evt(struct tipc_msg *m)
891 return msg_bits(m, 10, 0, 0x3);
894 static inline void msg_set_grp_evt(struct tipc_msg *m, int n)
896 msg_set_bits(m, 10, 0, 0x3, n);
899 static inline u16 msg_grp_bc_ack_req(struct tipc_msg *m)
901 return msg_bits(m, 10, 0, 0x1);
904 static inline void msg_set_grp_bc_ack_req(struct tipc_msg *m, bool n)
906 msg_set_bits(m, 10, 0, 0x1, n);
909 static inline u16 msg_grp_bc_seqno(struct tipc_msg *m)
911 return msg_bits(m, 10, 16, 0xffff);
914 static inline void msg_set_grp_bc_seqno(struct tipc_msg *m, u32 n)
916 msg_set_bits(m, 10, 16, 0xffff, n);
919 static inline bool msg_peer_link_is_up(struct tipc_msg *m)
921 if (likely(msg_user(m) != LINK_PROTOCOL))
922 return true;
923 if (msg_type(m) == STATE_MSG)
924 return true;
925 return false;
928 static inline bool msg_peer_node_is_up(struct tipc_msg *m)
930 if (msg_peer_link_is_up(m))
931 return true;
932 return msg_redundant_link(m);
935 static inline bool msg_is_reset(struct tipc_msg *hdr)
937 return (msg_user(hdr) == LINK_PROTOCOL) && (msg_type(hdr) == RESET_MSG);
940 static inline u32 msg_sugg_node_addr(struct tipc_msg *m)
942 return msg_word(m, 14);
945 static inline void msg_set_sugg_node_addr(struct tipc_msg *m, u32 n)
947 msg_set_word(m, 14, n);
950 static inline void msg_set_node_id(struct tipc_msg *hdr, u8 *id)
952 memcpy(msg_data(hdr), id, 16);
955 static inline u8 *msg_node_id(struct tipc_msg *hdr)
957 return (u8 *)msg_data(hdr);
960 struct sk_buff *tipc_buf_acquire(u32 size, gfp_t gfp);
961 bool tipc_msg_validate(struct sk_buff **_skb);
962 bool tipc_msg_reverse(u32 own_addr, struct sk_buff **skb, int err);
963 void tipc_skb_reject(struct net *net, int err, struct sk_buff *skb,
964 struct sk_buff_head *xmitq);
965 void tipc_msg_init(u32 own_addr, struct tipc_msg *m, u32 user, u32 type,
966 u32 hsize, u32 destnode);
967 struct sk_buff *tipc_msg_create(uint user, uint type, uint hdr_sz,
968 uint data_sz, u32 dnode, u32 onode,
969 u32 dport, u32 oport, int errcode);
970 int tipc_buf_append(struct sk_buff **headbuf, struct sk_buff **buf);
971 bool tipc_msg_bundle(struct sk_buff *skb, struct tipc_msg *msg, u32 mtu);
972 bool tipc_msg_make_bundle(struct sk_buff **skb, struct tipc_msg *msg,
973 u32 mtu, u32 dnode);
974 bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos);
975 int tipc_msg_build(struct tipc_msg *mhdr, struct msghdr *m,
976 int offset, int dsz, int mtu, struct sk_buff_head *list);
977 bool tipc_msg_lookup_dest(struct net *net, struct sk_buff *skb, int *err);
978 bool tipc_msg_assemble(struct sk_buff_head *list);
979 bool tipc_msg_reassemble(struct sk_buff_head *list, struct sk_buff_head *rcvq);
980 bool tipc_msg_pskb_copy(u32 dst, struct sk_buff_head *msg,
981 struct sk_buff_head *cpy);
982 void __tipc_skb_queue_sorted(struct sk_buff_head *list, u16 seqno,
983 struct sk_buff *skb);
984 bool tipc_msg_skb_clone(struct sk_buff_head *msg, struct sk_buff_head *cpy);
986 static inline u16 buf_seqno(struct sk_buff *skb)
988 return msg_seqno(buf_msg(skb));
991 static inline int buf_roundup_len(struct sk_buff *skb)
993 return (skb->len / 1024 + 1) * 1024;
996 /* tipc_skb_peek(): peek and reserve first buffer in list
997 * @list: list to be peeked in
998 * Returns pointer to first buffer in list, if any
1000 static inline struct sk_buff *tipc_skb_peek(struct sk_buff_head *list,
1001 spinlock_t *lock)
1003 struct sk_buff *skb;
1005 spin_lock_bh(lock);
1006 skb = skb_peek(list);
1007 if (skb)
1008 skb_get(skb);
1009 spin_unlock_bh(lock);
1010 return skb;
1013 /* tipc_skb_peek_port(): find a destination port, ignoring all destinations
1014 * up to and including 'filter'.
1015 * Note: ignoring previously tried destinations minimizes the risk of
1016 * contention on the socket lock
1017 * @list: list to be peeked in
1018 * @filter: last destination to be ignored from search
1019 * Returns a destination port number, of applicable.
1021 static inline u32 tipc_skb_peek_port(struct sk_buff_head *list, u32 filter)
1023 struct sk_buff *skb;
1024 u32 dport = 0;
1025 bool ignore = true;
1027 spin_lock_bh(&list->lock);
1028 skb_queue_walk(list, skb) {
1029 dport = msg_destport(buf_msg(skb));
1030 if (!filter || skb_queue_is_last(list, skb))
1031 break;
1032 if (dport == filter)
1033 ignore = false;
1034 else if (!ignore)
1035 break;
1037 spin_unlock_bh(&list->lock);
1038 return dport;
1041 /* tipc_skb_dequeue(): unlink first buffer with dest 'dport' from list
1042 * @list: list to be unlinked from
1043 * @dport: selection criteria for buffer to unlink
1045 static inline struct sk_buff *tipc_skb_dequeue(struct sk_buff_head *list,
1046 u32 dport)
1048 struct sk_buff *_skb, *tmp, *skb = NULL;
1050 spin_lock_bh(&list->lock);
1051 skb_queue_walk_safe(list, _skb, tmp) {
1052 if (msg_destport(buf_msg(_skb)) == dport) {
1053 __skb_unlink(_skb, list);
1054 skb = _skb;
1055 break;
1058 spin_unlock_bh(&list->lock);
1059 return skb;
1062 /* tipc_skb_queue_splice_tail - append an skb list to lock protected list
1063 * @list: the new list to append. Not lock protected
1064 * @head: target list. Lock protected.
1066 static inline void tipc_skb_queue_splice_tail(struct sk_buff_head *list,
1067 struct sk_buff_head *head)
1069 spin_lock_bh(&head->lock);
1070 skb_queue_splice_tail(list, head);
1071 spin_unlock_bh(&head->lock);
1074 /* tipc_skb_queue_splice_tail_init - merge two lock protected skb lists
1075 * @list: the new list to add. Lock protected. Will be reinitialized
1076 * @head: target list. Lock protected.
1078 static inline void tipc_skb_queue_splice_tail_init(struct sk_buff_head *list,
1079 struct sk_buff_head *head)
1081 struct sk_buff_head tmp;
1083 __skb_queue_head_init(&tmp);
1085 spin_lock_bh(&list->lock);
1086 skb_queue_splice_tail_init(list, &tmp);
1087 spin_unlock_bh(&list->lock);
1088 tipc_skb_queue_splice_tail(&tmp, head);
1091 #endif