blob: 8740930f07872ff1ec8ff9d6b712b2772ba48336 [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 *
Jon Paul Maloycf2157f2015-03-13 16:08:06 -04004 * Copyright (c) 2000-2006, 2014-2015, 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
Ying Xuec93d3ba2015-01-09 15:27:04 +080037#include <net/sock.h>
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "core.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "msg.h"
Jon Paul Maloy5a379072014-06-25 20:41:36 -050040#include "addr.h"
41#include "name_table.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010042
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -050043#define MAX_FORWARD_SIZE 1024
44
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -050045static unsigned int align(unsigned int i)
Allan Stephens23461e82010-05-11 14:30:18 +000046{
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -050047 return (i + 3) & ~3u;
Allan Stephens23461e82010-05-11 14:30:18 +000048}
49
Ying Xue859fc7c2015-01-09 15:27:01 +080050/**
51 * tipc_buf_acquire - creates a TIPC message buffer
52 * @size: message size (including TIPC header)
53 *
54 * Returns a new buffer with data pointers set to the specified size.
55 *
56 * NOTE: Headroom is reserved to allow prepending of a data link header.
57 * There may also be unrequested tailroom present at the buffer's end.
58 */
59struct sk_buff *tipc_buf_acquire(u32 size)
60{
61 struct sk_buff *skb;
62 unsigned int buf_size = (BUF_HEADROOM + size + 3) & ~3u;
63
64 skb = alloc_skb_fclone(buf_size, GFP_ATOMIC);
65 if (skb) {
66 skb_reserve(skb, BUF_HEADROOM);
67 skb_put(skb, size);
68 skb->next = NULL;
69 }
70 return skb;
71}
72
Jon Paul Maloyc5898632015-02-05 08:36:36 -050073void tipc_msg_init(u32 own_node, struct tipc_msg *m, u32 user, u32 type,
74 u32 hsize, u32 dnode)
Allan Stephens23461e82010-05-11 14:30:18 +000075{
76 memset(m, 0, hsize);
77 msg_set_version(m);
78 msg_set_user(m, user);
79 msg_set_hdr_sz(m, hsize);
80 msg_set_size(m, hsize);
Jon Paul Maloyc5898632015-02-05 08:36:36 -050081 msg_set_prevnode(m, own_node);
Allan Stephens23461e82010-05-11 14:30:18 +000082 msg_set_type(m, type);
Jon Paul Maloy1dd0bd22014-08-22 18:09:06 -040083 if (hsize > SHORT_H_SIZE) {
Jon Paul Maloyc5898632015-02-05 08:36:36 -050084 msg_set_orignode(m, own_node);
85 msg_set_destnode(m, dnode);
Jon Paul Maloy1dd0bd22014-08-22 18:09:06 -040086 }
87}
88
Jon Paul Maloyc5898632015-02-05 08:36:36 -050089struct sk_buff *tipc_msg_create(uint user, uint type,
Ying Xue34747532015-01-09 15:27:10 +080090 uint hdr_sz, uint data_sz, u32 dnode,
91 u32 onode, u32 dport, u32 oport, int errcode)
Jon Paul Maloy1dd0bd22014-08-22 18:09:06 -040092{
93 struct tipc_msg *msg;
94 struct sk_buff *buf;
95
96 buf = tipc_buf_acquire(hdr_sz + data_sz);
97 if (unlikely(!buf))
98 return NULL;
99
100 msg = buf_msg(buf);
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500101 tipc_msg_init(onode, msg, user, type, hdr_sz, dnode);
Jon Paul Maloy1dd0bd22014-08-22 18:09:06 -0400102 msg_set_size(msg, hdr_sz + data_sz);
Jon Paul Maloy1dd0bd22014-08-22 18:09:06 -0400103 msg_set_origport(msg, oport);
104 msg_set_destport(msg, dport);
105 msg_set_errcode(msg, errcode);
106 if (hdr_sz > SHORT_H_SIZE) {
107 msg_set_orignode(msg, onode);
108 msg_set_destnode(msg, dnode);
109 }
110 return buf;
Allan Stephens23461e82010-05-11 14:30:18 +0000111}
112
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400113/* tipc_buf_append(): Append a buffer to the fragment list of another buffer
Jon Paul Maloy29322d0d2014-07-05 13:44:13 -0400114 * @*headbuf: in: NULL for first frag, otherwise value returned from prev call
115 * out: set when successful non-complete reassembly, otherwise NULL
116 * @*buf: in: the buffer to append. Always defined
stephen hemmingerb2ad5e52014-10-29 22:58:51 -0700117 * out: head buf after successful complete reassembly, otherwise NULL
Jon Paul Maloy29322d0d2014-07-05 13:44:13 -0400118 * Returns 1 when reassembly complete, otherwise 0
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400119 */
120int tipc_buf_append(struct sk_buff **headbuf, struct sk_buff **buf)
121{
122 struct sk_buff *head = *headbuf;
123 struct sk_buff *frag = *buf;
Jon Paul Maloy45c8b7b2015-10-19 11:33:00 -0400124 struct sk_buff *tail = NULL;
Jon Paul Maloy13e9b992014-07-25 14:48:09 -0400125 struct tipc_msg *msg;
126 u32 fragid;
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400127 int delta;
Jon Paul Maloy13e9b992014-07-25 14:48:09 -0400128 bool headstolen;
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400129
Jon Paul Maloy13e9b992014-07-25 14:48:09 -0400130 if (!frag)
131 goto err;
132
133 msg = buf_msg(frag);
134 fragid = msg_type(msg);
135 frag->next = NULL;
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400136 skb_pull(frag, msg_hdr_sz(msg));
137
138 if (fragid == FIRST_FRAGMENT) {
Jon Paul Maloy13e9b992014-07-25 14:48:09 -0400139 if (unlikely(head))
140 goto err;
141 if (unlikely(skb_unclone(frag, GFP_ATOMIC)))
142 goto err;
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400143 head = *headbuf = frag;
Jon Paul Maloy29322d0d2014-07-05 13:44:13 -0400144 *buf = NULL;
Jon Paul Maloy45c8b7b2015-10-19 11:33:00 -0400145 TIPC_SKB_CB(head)->tail = NULL;
146 if (skb_is_nonlinear(head)) {
147 skb_walk_frags(head, tail) {
148 TIPC_SKB_CB(head)->tail = tail;
149 }
150 } else {
151 skb_frag_list_init(head);
152 }
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400153 return 0;
154 }
Jon Paul Maloy13e9b992014-07-25 14:48:09 -0400155
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400156 if (!head)
Jon Paul Maloy13e9b992014-07-25 14:48:09 -0400157 goto err;
158
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400159 if (skb_try_coalesce(head, frag, &headstolen, &delta)) {
160 kfree_skb_partial(frag, headstolen);
161 } else {
Jon Paul Maloy13e9b992014-07-25 14:48:09 -0400162 tail = TIPC_SKB_CB(head)->tail;
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400163 if (!skb_has_frag_list(head))
164 skb_shinfo(head)->frag_list = frag;
165 else
166 tail->next = frag;
167 head->truesize += frag->truesize;
168 head->data_len += frag->len;
169 head->len += frag->len;
170 TIPC_SKB_CB(head)->tail = frag;
171 }
Jon Paul Maloy13e9b992014-07-25 14:48:09 -0400172
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400173 if (fragid == LAST_FRAGMENT) {
Jon Paul Maloy11495572015-03-13 16:08:07 -0400174 TIPC_SKB_CB(head)->validated = false;
175 if (unlikely(!tipc_msg_validate(head)))
176 goto err;
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400177 *buf = head;
178 TIPC_SKB_CB(head)->tail = NULL;
179 *headbuf = NULL;
180 return 1;
181 }
182 *buf = NULL;
183 return 0;
Jon Paul Maloy13e9b992014-07-25 14:48:09 -0400184err:
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400185 kfree_skb(*buf);
Jon Paul Maloy29322d0d2014-07-05 13:44:13 -0400186 kfree_skb(*headbuf);
187 *buf = *headbuf = NULL;
Jon Paul Maloy37e22162014-05-14 05:39:12 -0400188 return 0;
189}
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500190
Jon Paul Maloycf2157f2015-03-13 16:08:06 -0400191/* tipc_msg_validate - validate basic format of received message
192 *
193 * This routine ensures a TIPC message has an acceptable header, and at least
194 * as much data as the header indicates it should. The routine also ensures
195 * that the entire message header is stored in the main fragment of the message
196 * buffer, to simplify future access to message header fields.
197 *
198 * Note: Having extra info present in the message header or data areas is OK.
199 * TIPC will ignore the excess, under the assumption that it is optional info
200 * introduced by a later release of the protocol.
201 */
202bool tipc_msg_validate(struct sk_buff *skb)
203{
204 struct tipc_msg *msg;
205 int msz, hsz;
206
207 if (unlikely(TIPC_SKB_CB(skb)->validated))
208 return true;
209 if (unlikely(!pskb_may_pull(skb, MIN_H_SIZE)))
210 return false;
211
212 hsz = msg_hdr_sz(buf_msg(skb));
213 if (unlikely(hsz < MIN_H_SIZE) || (hsz > MAX_H_SIZE))
214 return false;
215 if (unlikely(!pskb_may_pull(skb, hsz)))
216 return false;
217
218 msg = buf_msg(skb);
219 if (unlikely(msg_version(msg) != TIPC_VERSION))
220 return false;
221
222 msz = msg_size(msg);
223 if (unlikely(msz < hsz))
224 return false;
225 if (unlikely((msz - hsz) > TIPC_MAX_USER_MSG_SIZE))
226 return false;
227 if (unlikely(skb->len < msz))
228 return false;
229
230 TIPC_SKB_CB(skb)->validated = true;
231 return true;
232}
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500233
234/**
Jon Paul Maloy9fbfb8b2014-07-16 20:41:03 -0400235 * tipc_msg_build - create buffer chain containing specified header and data
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500236 * @mhdr: Message header, to be prepended to data
Al Viro45dcc682014-11-15 01:16:27 -0500237 * @m: User message
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500238 * @dsz: Total length of user data
239 * @pktmax: Max packet size that can be used
Ying Xuea6ca1092014-11-26 11:41:55 +0800240 * @list: Buffer or chain of buffers to be returned to caller
241 *
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500242 * Returns message data size or errno: -ENOMEM, -EFAULT
243 */
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500244int tipc_msg_build(struct tipc_msg *mhdr, struct msghdr *m,
Ying Xue34747532015-01-09 15:27:10 +0800245 int offset, int dsz, int pktmax, struct sk_buff_head *list)
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500246{
247 int mhsz = msg_hdr_sz(mhdr);
248 int msz = mhsz + dsz;
249 int pktno = 1;
250 int pktsz;
251 int pktrem = pktmax;
252 int drem = dsz;
253 struct tipc_msg pkthdr;
Ying Xuea6ca1092014-11-26 11:41:55 +0800254 struct sk_buff *skb;
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500255 char *pktpos;
256 int rc;
Ying Xuea6ca1092014-11-26 11:41:55 +0800257
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500258 msg_set_size(mhdr, msz);
259
260 /* No fragmentation needed? */
261 if (likely(msz <= pktmax)) {
Ying Xuea6ca1092014-11-26 11:41:55 +0800262 skb = tipc_buf_acquire(msz);
263 if (unlikely(!skb))
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500264 return -ENOMEM;
Ying Xuec93d3ba2015-01-09 15:27:04 +0800265 skb_orphan(skb);
Ying Xuea6ca1092014-11-26 11:41:55 +0800266 __skb_queue_tail(list, skb);
267 skb_copy_to_linear_data(skb, mhdr, mhsz);
268 pktpos = skb->data + mhsz;
Al Virof25dcc72014-11-28 15:52:29 -0500269 if (copy_from_iter(pktpos, dsz, &m->msg_iter) == dsz)
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500270 return dsz;
271 rc = -EFAULT;
272 goto error;
273 }
274
275 /* Prepare reusable fragment header */
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500276 tipc_msg_init(msg_prevnode(mhdr), &pkthdr, MSG_FRAGMENTER,
277 FIRST_FRAGMENT, INT_H_SIZE, msg_destnode(mhdr));
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500278 msg_set_size(&pkthdr, pktmax);
279 msg_set_fragm_no(&pkthdr, pktno);
Jon Paul Maloye3eea1e2015-03-13 16:08:11 -0400280 msg_set_importance(&pkthdr, msg_importance(mhdr));
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500281
282 /* Prepare first fragment */
Ying Xuea6ca1092014-11-26 11:41:55 +0800283 skb = tipc_buf_acquire(pktmax);
284 if (!skb)
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500285 return -ENOMEM;
Ying Xuec93d3ba2015-01-09 15:27:04 +0800286 skb_orphan(skb);
Ying Xuea6ca1092014-11-26 11:41:55 +0800287 __skb_queue_tail(list, skb);
288 pktpos = skb->data;
289 skb_copy_to_linear_data(skb, &pkthdr, INT_H_SIZE);
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500290 pktpos += INT_H_SIZE;
291 pktrem -= INT_H_SIZE;
Ying Xuea6ca1092014-11-26 11:41:55 +0800292 skb_copy_to_linear_data_offset(skb, INT_H_SIZE, mhdr, mhsz);
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500293 pktpos += mhsz;
294 pktrem -= mhsz;
295
296 do {
297 if (drem < pktrem)
298 pktrem = drem;
299
Al Virof25dcc72014-11-28 15:52:29 -0500300 if (copy_from_iter(pktpos, pktrem, &m->msg_iter) != pktrem) {
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500301 rc = -EFAULT;
302 goto error;
303 }
304 drem -= pktrem;
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500305
306 if (!drem)
307 break;
308
309 /* Prepare new fragment: */
310 if (drem < (pktmax - INT_H_SIZE))
311 pktsz = drem + INT_H_SIZE;
312 else
313 pktsz = pktmax;
Ying Xuea6ca1092014-11-26 11:41:55 +0800314 skb = tipc_buf_acquire(pktsz);
315 if (!skb) {
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500316 rc = -ENOMEM;
317 goto error;
318 }
Ying Xuec93d3ba2015-01-09 15:27:04 +0800319 skb_orphan(skb);
Ying Xuea6ca1092014-11-26 11:41:55 +0800320 __skb_queue_tail(list, skb);
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500321 msg_set_type(&pkthdr, FRAGMENT);
322 msg_set_size(&pkthdr, pktsz);
323 msg_set_fragm_no(&pkthdr, ++pktno);
Ying Xuea6ca1092014-11-26 11:41:55 +0800324 skb_copy_to_linear_data(skb, &pkthdr, INT_H_SIZE);
325 pktpos = skb->data + INT_H_SIZE;
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500326 pktrem = pktsz - INT_H_SIZE;
327
328 } while (1);
Ying Xuea6ca1092014-11-26 11:41:55 +0800329 msg_set_type(buf_msg(skb), LAST_FRAGMENT);
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500330 return dsz;
331error:
Ying Xuea6ca1092014-11-26 11:41:55 +0800332 __skb_queue_purge(list);
333 __skb_queue_head_init(list);
Jon Paul Maloy067608e2014-06-25 20:41:34 -0500334 return rc;
335}
336
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500337/**
338 * tipc_msg_bundle(): Append contents of a buffer to tail of an existing one
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400339 * @skb: the buffer to append to ("bundle")
340 * @msg: message to be appended
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500341 * @mtu: max allowable size for the bundle buffer
342 * Consumes buffer if successful
343 * Returns true if bundling could be performed, otherwise false
344 */
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400345bool tipc_msg_bundle(struct sk_buff *skb, struct tipc_msg *msg, u32 mtu)
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500346{
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400347 struct tipc_msg *bmsg;
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400348 unsigned int bsz;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500349 unsigned int msz = msg_size(msg);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400350 u32 start, pad;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500351 u32 max = mtu - INT_H_SIZE;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500352
353 if (likely(msg_user(msg) == MSG_FRAGMENTER))
354 return false;
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400355 if (!skb)
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400356 return false;
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400357 bmsg = buf_msg(skb);
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400358 bsz = msg_size(bmsg);
359 start = align(bsz);
360 pad = start - bsz;
361
Jon Paul Maloydff29b12015-04-02 09:33:01 -0400362 if (unlikely(msg_user(msg) == TUNNEL_PROTOCOL))
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500363 return false;
364 if (unlikely(msg_user(msg) == BCAST_PROTOCOL))
365 return false;
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400366 if (unlikely(msg_user(bmsg) != MSG_BUNDLER))
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500367 return false;
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400368 if (unlikely(skb_tailroom(skb) < (pad + msz)))
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500369 return false;
370 if (unlikely(max < (start + msz)))
371 return false;
Jon Paul Maloyf21e8972015-05-14 10:46:17 -0400372 if ((msg_importance(msg) < TIPC_SYSTEM_IMPORTANCE) &&
373 (msg_importance(bmsg) == TIPC_SYSTEM_IMPORTANCE))
374 return false;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500375
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400376 skb_put(skb, pad + msz);
377 skb_copy_to_linear_data_offset(skb, start, msg, msz);
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500378 msg_set_size(bmsg, start + msz);
379 msg_set_msgcnt(bmsg, msg_msgcnt(bmsg) + 1);
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500380 return true;
381}
382
383/**
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500384 * tipc_msg_extract(): extract bundled inner packet from buffer
Jon Paul Maloyc1336ee2015-03-13 16:08:08 -0400385 * @skb: buffer to be extracted from.
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500386 * @iskb: extracted inner buffer, to be returned
Jon Paul Maloyc1336ee2015-03-13 16:08:08 -0400387 * @pos: position in outer message of msg to be extracted.
388 * Returns position of next msg
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500389 * Consumes outer buffer when last packet extracted
390 * Returns true when when there is an extracted buffer, otherwise false
391 */
392bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos)
393{
Jon Paul Maloy11495572015-03-13 16:08:07 -0400394 struct tipc_msg *msg;
Jon Paul Maloyc1336ee2015-03-13 16:08:08 -0400395 int imsz, offset;
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500396
Jon Paul Maloyc1336ee2015-03-13 16:08:08 -0400397 *iskb = NULL;
Jon Paul Maloy11495572015-03-13 16:08:07 -0400398 if (unlikely(skb_linearize(skb)))
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500399 goto none;
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500400
Jon Paul Maloyc1336ee2015-03-13 16:08:08 -0400401 msg = buf_msg(skb);
402 offset = msg_hdr_sz(msg) + *pos;
403 if (unlikely(offset > (msg_size(msg) - MIN_H_SIZE)))
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500404 goto none;
Jon Paul Maloyc1336ee2015-03-13 16:08:08 -0400405
406 *iskb = skb_clone(skb, GFP_ATOMIC);
407 if (unlikely(!*iskb))
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500408 goto none;
Jon Paul Maloyc1336ee2015-03-13 16:08:08 -0400409 skb_pull(*iskb, offset);
410 imsz = msg_size(buf_msg(*iskb));
411 skb_trim(*iskb, imsz);
412 if (unlikely(!tipc_msg_validate(*iskb)))
413 goto none;
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500414 *pos += align(imsz);
415 return true;
416none:
417 kfree_skb(skb);
Jon Paul Maloyc1336ee2015-03-13 16:08:08 -0400418 kfree_skb(*iskb);
Jon Paul Maloyc637c102015-02-05 08:36:41 -0500419 *iskb = NULL;
420 return false;
421}
422
423/**
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500424 * tipc_msg_make_bundle(): Create bundle buf and append message to its tail
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400425 * @list: the buffer chain, where head is the buffer to replace/append
426 * @skb: buffer to be created, appended to and returned in case of success
427 * @msg: message to be appended
Ying Xue58dc55f2014-11-26 11:41:52 +0800428 * @mtu: max allowable size for the bundle buffer, inclusive header
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500429 * @dnode: destination node for message. (Not always present in header)
stephen hemmingerb2ad5e52014-10-29 22:58:51 -0700430 * Returns true if success, otherwise false
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500431 */
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400432bool tipc_msg_make_bundle(struct sk_buff **skb, struct tipc_msg *msg,
433 u32 mtu, u32 dnode)
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500434{
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400435 struct sk_buff *_skb;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500436 struct tipc_msg *bmsg;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500437 u32 msz = msg_size(msg);
438 u32 max = mtu - INT_H_SIZE;
439
440 if (msg_user(msg) == MSG_FRAGMENTER)
441 return false;
Jon Paul Maloydff29b12015-04-02 09:33:01 -0400442 if (msg_user(msg) == TUNNEL_PROTOCOL)
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500443 return false;
444 if (msg_user(msg) == BCAST_PROTOCOL)
445 return false;
446 if (msz > (max / 2))
447 return false;
448
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400449 _skb = tipc_buf_acquire(max);
450 if (!_skb)
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500451 return false;
452
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400453 skb_trim(_skb, INT_H_SIZE);
454 bmsg = buf_msg(_skb);
Jon Paul Maloyc5898632015-02-05 08:36:36 -0500455 tipc_msg_init(msg_prevnode(msg), bmsg, MSG_BUNDLER, 0,
456 INT_H_SIZE, dnode);
Jon Paul Maloyf21e8972015-05-14 10:46:17 -0400457 if (msg_isdata(msg))
458 msg_set_importance(bmsg, TIPC_CRITICAL_IMPORTANCE);
459 else
460 msg_set_importance(bmsg, TIPC_SYSTEM_IMPORTANCE);
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500461 msg_set_seqno(bmsg, msg_seqno(msg));
462 msg_set_ack(bmsg, msg_ack(msg));
463 msg_set_bcast_ack(bmsg, msg_bcast_ack(msg));
Jon Paul Maloydd3f9e72015-05-14 10:46:18 -0400464 tipc_msg_bundle(_skb, msg, mtu);
465 *skb = _skb;
Jon Paul Maloy05dcc5a2015-03-13 16:08:10 -0400466 return true;
Jon Paul Maloy4f1688b2014-06-25 20:41:32 -0500467}
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500468
469/**
470 * tipc_msg_reverse(): swap source and destination addresses and add error code
Jon Paul Maloy29042e12015-07-22 10:11:18 -0400471 * @own_node: originating node id for reversed message
472 * @skb: buffer containing message to be reversed; may be replaced.
473 * @err: error code to be set in message, if any
474 * Consumes buffer at failure
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500475 * Returns true if success, otherwise false
476 */
Jon Paul Maloybcd3ffd2015-07-22 10:11:19 -0400477bool tipc_msg_reverse(u32 own_node, struct sk_buff **skb, int err)
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500478{
Jon Paul Maloy29042e12015-07-22 10:11:18 -0400479 struct sk_buff *_skb = *skb;
480 struct tipc_msg *hdr = buf_msg(_skb);
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500481 struct tipc_msg ohdr;
Jon Paul Maloy29042e12015-07-22 10:11:18 -0400482 int dlen = min_t(uint, msg_data_sz(hdr), MAX_FORWARD_SIZE);
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500483
Jon Paul Maloy29042e12015-07-22 10:11:18 -0400484 if (skb_linearize(_skb))
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500485 goto exit;
Jon Paul Maloy29042e12015-07-22 10:11:18 -0400486 hdr = buf_msg(_skb);
487 if (msg_dest_droppable(hdr))
Jon Paul Maloyac0074e2014-06-25 20:41:41 -0500488 goto exit;
Jon Paul Maloy29042e12015-07-22 10:11:18 -0400489 if (msg_errcode(hdr))
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500490 goto exit;
Jon Paul Maloy29042e12015-07-22 10:11:18 -0400491
492 /* Take a copy of original header before altering message */
493 memcpy(&ohdr, hdr, msg_hdr_sz(hdr));
494
495 /* Never return SHORT header; expand by replacing buffer if necessary */
496 if (msg_short(hdr)) {
497 *skb = tipc_buf_acquire(BASIC_H_SIZE + dlen);
498 if (!*skb)
499 goto exit;
500 memcpy((*skb)->data + BASIC_H_SIZE, msg_data(hdr), dlen);
501 kfree_skb(_skb);
502 _skb = *skb;
503 hdr = buf_msg(_skb);
504 memcpy(hdr, &ohdr, BASIC_H_SIZE);
505 msg_set_hdr_sz(hdr, BASIC_H_SIZE);
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500506 }
Jon Paul Maloy29042e12015-07-22 10:11:18 -0400507
508 /* Now reverse the concerned fields */
509 msg_set_errcode(hdr, err);
510 msg_set_origport(hdr, msg_destport(&ohdr));
511 msg_set_destport(hdr, msg_origport(&ohdr));
512 msg_set_destnode(hdr, msg_prevnode(&ohdr));
513 msg_set_prevnode(hdr, own_node);
514 msg_set_orignode(hdr, own_node);
515 msg_set_size(hdr, msg_hdr_sz(hdr) + dlen);
Jon Paul Maloy29042e12015-07-22 10:11:18 -0400516 skb_trim(_skb, msg_size(hdr));
517 skb_orphan(_skb);
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500518 return true;
519exit:
Jon Paul Maloy29042e12015-07-22 10:11:18 -0400520 kfree_skb(_skb);
521 *skb = NULL;
Jon Paul Maloy8db1bae2014-06-25 20:41:35 -0500522 return false;
523}
Jon Paul Maloy5a379072014-06-25 20:41:36 -0500524
525/**
Jon Paul Maloye3a77562015-02-05 08:36:39 -0500526 * tipc_msg_lookup_dest(): try to find new destination for named message
527 * @skb: the buffer containing the message.
Jon Paul Maloycda36962015-07-22 10:11:20 -0400528 * @err: error code to be used by caller if lookup fails
Jon Paul Maloy5a379072014-06-25 20:41:36 -0500529 * Does not consume buffer
Jon Paul Maloye3a77562015-02-05 08:36:39 -0500530 * Returns true if a destination is found, false otherwise
Jon Paul Maloy5a379072014-06-25 20:41:36 -0500531 */
Jon Paul Maloycda36962015-07-22 10:11:20 -0400532bool tipc_msg_lookup_dest(struct net *net, struct sk_buff *skb, int *err)
Jon Paul Maloy5a379072014-06-25 20:41:36 -0500533{
Jon Paul Maloye3a77562015-02-05 08:36:39 -0500534 struct tipc_msg *msg = buf_msg(skb);
Jon Paul Maloycda36962015-07-22 10:11:20 -0400535 u32 dport, dnode;
536 u32 onode = tipc_own_addr(net);
Jon Paul Maloy5a379072014-06-25 20:41:36 -0500537
Jon Paul Maloye3a77562015-02-05 08:36:39 -0500538 if (!msg_isdata(msg))
539 return false;
540 if (!msg_named(msg))
541 return false;
Jon Paul Maloyd4829942015-03-27 10:19:19 -0400542 if (msg_errcode(msg))
543 return false;
Jon Paul Maloye3a77562015-02-05 08:36:39 -0500544 *err = -TIPC_ERR_NO_NAME;
545 if (skb_linearize(skb))
546 return false;
Erik Hugne4e3ae002015-09-18 10:46:31 +0200547 msg = buf_msg(skb);
Jon Paul Maloyd4829942015-03-27 10:19:19 -0400548 if (msg_reroute_cnt(msg))
Jon Paul Maloye3a77562015-02-05 08:36:39 -0500549 return false;
Jon Paul Maloycda36962015-07-22 10:11:20 -0400550 dnode = addr_domain(net, msg_lookup_scope(msg));
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800551 dport = tipc_nametbl_translate(net, msg_nametype(msg),
Jon Paul Maloycda36962015-07-22 10:11:20 -0400552 msg_nameinst(msg), &dnode);
Jon Paul Maloy5a379072014-06-25 20:41:36 -0500553 if (!dport)
Jon Paul Maloye3a77562015-02-05 08:36:39 -0500554 return false;
Jon Paul Maloy5a379072014-06-25 20:41:36 -0500555 msg_incr_reroute_cnt(msg);
Jon Paul Maloycda36962015-07-22 10:11:20 -0400556 if (dnode != onode)
557 msg_set_prevnode(msg, onode);
558 msg_set_destnode(msg, dnode);
Jon Paul Maloy5a379072014-06-25 20:41:36 -0500559 msg_set_destport(msg, dport);
Jon Paul Maloye3a77562015-02-05 08:36:39 -0500560 *err = TIPC_OK;
561 return true;
Jon Paul Maloy5a379072014-06-25 20:41:36 -0500562}
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400563
564/* tipc_msg_reassemble() - clone a buffer chain of fragments and
565 * reassemble the clones into one message
566 */
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400567bool tipc_msg_reassemble(struct sk_buff_head *list, struct sk_buff_head *rcvq)
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400568{
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400569 struct sk_buff *skb, *_skb;
Ying Xuea6ca1092014-11-26 11:41:55 +0800570 struct sk_buff *frag = NULL;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400571 struct sk_buff *head = NULL;
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400572 int hdr_len;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400573
574 /* Copy header if single buffer */
Ying Xuea6ca1092014-11-26 11:41:55 +0800575 if (skb_queue_len(list) == 1) {
576 skb = skb_peek(list);
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400577 hdr_len = skb_headroom(skb) + msg_hdr_sz(buf_msg(skb));
578 _skb = __pskb_copy(skb, hdr_len, GFP_ATOMIC);
579 if (!_skb)
580 return false;
581 __skb_queue_tail(rcvq, _skb);
582 return true;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400583 }
584
585 /* Clone all fragments and reassemble */
Ying Xuea6ca1092014-11-26 11:41:55 +0800586 skb_queue_walk(list, skb) {
587 frag = skb_clone(skb, GFP_ATOMIC);
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400588 if (!frag)
589 goto error;
590 frag->next = NULL;
591 if (tipc_buf_append(&head, &frag))
592 break;
593 if (!head)
594 goto error;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400595 }
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400596 __skb_queue_tail(rcvq, frag);
597 return true;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400598error:
599 pr_warn("Failed do clone local mcast rcv buffer\n");
600 kfree_skb(head);
Jon Paul Maloy2f566122015-10-22 08:51:39 -0400601 return false;
Jon Paul Maloy078bec82014-07-16 20:41:00 -0400602}
Jon Paul Maloy8306f992015-10-15 14:52:43 -0400603
604/* tipc_skb_queue_sorted(); sort pkt into list according to sequence number
605 * @list: list to be appended to
606 * @seqno: sequence number of buffer to add
607 * @skb: buffer to add
608 */
609void __tipc_skb_queue_sorted(struct sk_buff_head *list, u16 seqno,
610 struct sk_buff *skb)
611{
612 struct sk_buff *_skb, *tmp;
613
614 if (skb_queue_empty(list) || less(seqno, buf_seqno(skb_peek(list)))) {
615 __skb_queue_head(list, skb);
616 return;
617 }
618
619 if (more(seqno, buf_seqno(skb_peek_tail(list)))) {
620 __skb_queue_tail(list, skb);
621 return;
622 }
623
624 skb_queue_walk_safe(list, _skb, tmp) {
625 if (more(seqno, buf_seqno(_skb)))
626 continue;
627 if (seqno == buf_seqno(_skb))
628 break;
629 __skb_queue_before(list, _skb, skb);
630 return;
631 }
632 kfree_skb(skb);
633}