2 * net/tipc/port.c: TIPC port code
4 * Copyright (c) 1992-2007, Ericsson AB
5 * Copyright (c) 2004-2008, Wind River Systems
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.
44 #include "name_table.h"
49 /* Connection management: */
50 #define PROBING_INTERVAL 3600000 /* [ms] => 1 h */
54 #define MAX_REJECT_SIZE 1024
56 static struct sk_buff
*msg_queue_head
= NULL
;
57 static struct sk_buff
*msg_queue_tail
= NULL
;
59 DEFINE_SPINLOCK(tipc_port_list_lock
);
60 static DEFINE_SPINLOCK(queue_lock
);
62 static LIST_HEAD(ports
);
63 static void port_handle_node_down(unsigned long ref
);
64 static struct sk_buff
* port_build_self_abort_msg(struct port
*,u32 err
);
65 static struct sk_buff
* port_build_peer_abort_msg(struct port
*,u32 err
);
66 static void port_timeout(unsigned long ref
);
69 static u32
port_peernode(struct port
*p_ptr
)
71 return msg_destnode(&p_ptr
->publ
.phdr
);
74 static u32
port_peerport(struct port
*p_ptr
)
76 return msg_destport(&p_ptr
->publ
.phdr
);
79 static u32
port_out_seqno(struct port
*p_ptr
)
81 return msg_transp_seqno(&p_ptr
->publ
.phdr
);
84 static void port_incr_out_seqno(struct port
*p_ptr
)
86 struct tipc_msg
*m
= &p_ptr
->publ
.phdr
;
88 if (likely(!msg_routed(m
)))
90 msg_set_transp_seqno(m
, (msg_transp_seqno(m
) + 1));
94 * tipc_multicast - send a multicast message to local and remote destinations
97 int tipc_multicast(u32 ref
, struct tipc_name_seq
const *seq
, u32 domain
,
98 u32 num_sect
, struct iovec
const *msg_sect
)
100 struct tipc_msg
*hdr
;
102 struct sk_buff
*ibuf
= NULL
;
103 struct port_list dports
= {0, NULL
, };
104 struct port
*oport
= tipc_port_deref(ref
);
108 if (unlikely(!oport
))
111 /* Create multicast message */
113 hdr
= &oport
->publ
.phdr
;
114 msg_set_type(hdr
, TIPC_MCAST_MSG
);
115 msg_set_nametype(hdr
, seq
->type
);
116 msg_set_namelower(hdr
, seq
->lower
);
117 msg_set_nameupper(hdr
, seq
->upper
);
118 msg_set_hdr_sz(hdr
, MCAST_H_SIZE
);
119 res
= tipc_msg_build(hdr
, msg_sect
, num_sect
, MAX_MSG_SIZE
,
120 !oport
->user_port
, &buf
);
124 /* Figure out where to send multicast message */
126 ext_targets
= tipc_nametbl_mc_translate(seq
->type
, seq
->lower
, seq
->upper
,
127 TIPC_NODE_SCOPE
, &dports
);
129 /* Send message to destinations (duplicate it only if necessary) */
132 if (dports
.count
!= 0) {
133 ibuf
= skb_copy(buf
, GFP_ATOMIC
);
135 tipc_port_list_free(&dports
);
140 res
= tipc_bclink_send_msg(buf
);
141 if ((res
< 0) && (dports
.count
!= 0)) {
150 tipc_port_recv_mcast(ibuf
, &dports
);
152 tipc_port_list_free(&dports
);
158 * tipc_port_recv_mcast - deliver multicast message to all destination ports
160 * If there is no port list, perform a lookup to create one
163 void tipc_port_recv_mcast(struct sk_buff
*buf
, struct port_list
*dp
)
165 struct tipc_msg
* msg
;
166 struct port_list dports
= {0, NULL
, };
167 struct port_list
*item
= dp
;
172 /* Create destination port list, if one wasn't supplied */
175 tipc_nametbl_mc_translate(msg_nametype(msg
),
183 /* Deliver a copy of message to each destination port */
185 if (dp
->count
!= 0) {
186 if (dp
->count
== 1) {
187 msg_set_destport(msg
, dp
->ports
[0]);
188 tipc_port_recv_msg(buf
);
189 tipc_port_list_free(dp
);
192 for (; cnt
< dp
->count
; cnt
++) {
193 int index
= cnt
% PLSIZE
;
194 struct sk_buff
*b
= skb_clone(buf
, GFP_ATOMIC
);
197 warn("Unable to deliver multicast message(s)\n");
198 msg_dbg(msg
, "LOST:");
201 if ((index
== 0) && (cnt
!= 0)) {
204 msg_set_destport(buf_msg(b
),item
->ports
[index
]);
205 tipc_port_recv_msg(b
);
210 tipc_port_list_free(dp
);
214 * tipc_createport_raw - create a generic TIPC port
216 * Returns pointer to (locked) TIPC port, or NULL if unable to create it
219 struct tipc_port
*tipc_createport_raw(void *usr_handle
,
220 u32 (*dispatcher
)(struct tipc_port
*, struct sk_buff
*),
221 void (*wakeup
)(struct tipc_port
*),
222 const u32 importance
)
225 struct tipc_msg
*msg
;
228 p_ptr
= kzalloc(sizeof(*p_ptr
), GFP_ATOMIC
);
230 warn("Port creation failed, no memory\n");
233 ref
= tipc_ref_acquire(p_ptr
, &p_ptr
->publ
.lock
);
235 warn("Port creation failed, reference table exhausted\n");
240 p_ptr
->publ
.usr_handle
= usr_handle
;
241 p_ptr
->publ
.max_pkt
= MAX_PKT_DEFAULT
;
242 p_ptr
->publ
.ref
= ref
;
243 msg
= &p_ptr
->publ
.phdr
;
244 tipc_msg_init(msg
, importance
, TIPC_NAMED_MSG
, LONG_H_SIZE
, 0);
245 msg_set_origport(msg
, ref
);
246 p_ptr
->last_in_seqno
= 41;
248 INIT_LIST_HEAD(&p_ptr
->wait_list
);
249 INIT_LIST_HEAD(&p_ptr
->subscription
.nodesub_list
);
250 p_ptr
->dispatcher
= dispatcher
;
251 p_ptr
->wakeup
= wakeup
;
252 p_ptr
->user_port
= NULL
;
253 k_init_timer(&p_ptr
->timer
, (Handler
)port_timeout
, ref
);
254 spin_lock_bh(&tipc_port_list_lock
);
255 INIT_LIST_HEAD(&p_ptr
->publications
);
256 INIT_LIST_HEAD(&p_ptr
->port_list
);
257 list_add_tail(&p_ptr
->port_list
, &ports
);
258 spin_unlock_bh(&tipc_port_list_lock
);
259 return &(p_ptr
->publ
);
262 int tipc_deleteport(u32 ref
)
265 struct sk_buff
*buf
= NULL
;
267 tipc_withdraw(ref
, 0, NULL
);
268 p_ptr
= tipc_port_lock(ref
);
272 tipc_ref_discard(ref
);
273 tipc_port_unlock(p_ptr
);
275 k_cancel_timer(&p_ptr
->timer
);
276 if (p_ptr
->publ
.connected
) {
277 buf
= port_build_peer_abort_msg(p_ptr
, TIPC_ERR_NO_PORT
);
278 tipc_nodesub_unsubscribe(&p_ptr
->subscription
);
280 if (p_ptr
->user_port
) {
281 tipc_reg_remove_port(p_ptr
->user_port
);
282 kfree(p_ptr
->user_port
);
285 spin_lock_bh(&tipc_port_list_lock
);
286 list_del(&p_ptr
->port_list
);
287 list_del(&p_ptr
->wait_list
);
288 spin_unlock_bh(&tipc_port_list_lock
);
289 k_term_timer(&p_ptr
->timer
);
291 dbg("Deleted port %u\n", ref
);
292 tipc_net_route_msg(buf
);
297 * tipc_get_port() - return port associated with 'ref'
299 * Note: Port is not locked.
302 struct tipc_port
*tipc_get_port(const u32 ref
)
304 return (struct tipc_port
*)tipc_ref_deref(ref
);
308 * tipc_get_handle - return user handle associated to port 'ref'
311 void *tipc_get_handle(const u32 ref
)
316 p_ptr
= tipc_port_lock(ref
);
319 handle
= p_ptr
->publ
.usr_handle
;
320 tipc_port_unlock(p_ptr
);
324 static int port_unreliable(struct port
*p_ptr
)
326 return msg_src_droppable(&p_ptr
->publ
.phdr
);
329 int tipc_portunreliable(u32 ref
, unsigned int *isunreliable
)
333 p_ptr
= tipc_port_lock(ref
);
336 *isunreliable
= port_unreliable(p_ptr
);
337 tipc_port_unlock(p_ptr
);
341 int tipc_set_portunreliable(u32 ref
, unsigned int isunreliable
)
345 p_ptr
= tipc_port_lock(ref
);
348 msg_set_src_droppable(&p_ptr
->publ
.phdr
, (isunreliable
!= 0));
349 tipc_port_unlock(p_ptr
);
353 static int port_unreturnable(struct port
*p_ptr
)
355 return msg_dest_droppable(&p_ptr
->publ
.phdr
);
358 int tipc_portunreturnable(u32 ref
, unsigned int *isunrejectable
)
362 p_ptr
= tipc_port_lock(ref
);
365 *isunrejectable
= port_unreturnable(p_ptr
);
366 tipc_port_unlock(p_ptr
);
370 int tipc_set_portunreturnable(u32 ref
, unsigned int isunrejectable
)
374 p_ptr
= tipc_port_lock(ref
);
377 msg_set_dest_droppable(&p_ptr
->publ
.phdr
, (isunrejectable
!= 0));
378 tipc_port_unlock(p_ptr
);
383 * port_build_proto_msg(): build a port level protocol
384 * or a connection abortion message. Called with
387 static struct sk_buff
*port_build_proto_msg(u32 destport
, u32 destnode
,
388 u32 origport
, u32 orignode
,
389 u32 usr
, u32 type
, u32 err
,
393 struct tipc_msg
*msg
;
395 buf
= buf_acquire(LONG_H_SIZE
);
398 tipc_msg_init(msg
, usr
, type
, LONG_H_SIZE
, destnode
);
399 msg_set_errcode(msg
, err
);
400 msg_set_destport(msg
, destport
);
401 msg_set_origport(msg
, origport
);
402 msg_set_orignode(msg
, orignode
);
403 msg_set_transp_seqno(msg
, seqno
);
404 msg_set_msgcnt(msg
, ack
);
405 msg_dbg(msg
, "PORT>SEND>:");
410 int tipc_reject_msg(struct sk_buff
*buf
, u32 err
)
412 struct tipc_msg
*msg
= buf_msg(buf
);
413 struct sk_buff
*rbuf
;
414 struct tipc_msg
*rmsg
;
416 u32 imp
= msg_importance(msg
);
417 u32 data_sz
= msg_data_sz(msg
);
419 if (data_sz
> MAX_REJECT_SIZE
)
420 data_sz
= MAX_REJECT_SIZE
;
421 if (msg_connected(msg
) && (imp
< TIPC_CRITICAL_IMPORTANCE
))
423 msg_dbg(msg
, "port->rej: ");
425 /* discard rejected message if it shouldn't be returned to sender */
426 if (msg_errcode(msg
) || msg_dest_droppable(msg
)) {
431 /* construct rejected message */
433 hdr_sz
= MCAST_H_SIZE
;
435 hdr_sz
= LONG_H_SIZE
;
436 rbuf
= buf_acquire(data_sz
+ hdr_sz
);
441 rmsg
= buf_msg(rbuf
);
442 tipc_msg_init(rmsg
, imp
, msg_type(msg
), hdr_sz
, msg_orignode(msg
));
443 msg_set_errcode(rmsg
, err
);
444 msg_set_destport(rmsg
, msg_origport(msg
));
445 msg_set_origport(rmsg
, msg_destport(msg
));
446 if (msg_short(msg
)) {
447 msg_set_orignode(rmsg
, tipc_own_addr
);
448 /* leave name type & instance as zeroes */
450 msg_set_orignode(rmsg
, msg_destnode(msg
));
451 msg_set_nametype(rmsg
, msg_nametype(msg
));
452 msg_set_nameinst(rmsg
, msg_nameinst(msg
));
454 msg_set_size(rmsg
, data_sz
+ hdr_sz
);
455 skb_copy_to_linear_data_offset(rbuf
, hdr_sz
, msg_data(msg
), data_sz
);
457 /* send self-abort message when rejecting on a connected port */
458 if (msg_connected(msg
)) {
459 struct sk_buff
*abuf
= NULL
;
460 struct port
*p_ptr
= tipc_port_lock(msg_destport(msg
));
463 if (p_ptr
->publ
.connected
)
464 abuf
= port_build_self_abort_msg(p_ptr
, err
);
465 tipc_port_unlock(p_ptr
);
467 tipc_net_route_msg(abuf
);
470 /* send rejected message */
472 tipc_net_route_msg(rbuf
);
476 int tipc_port_reject_sections(struct port
*p_ptr
, struct tipc_msg
*hdr
,
477 struct iovec
const *msg_sect
, u32 num_sect
,
483 res
= tipc_msg_build(hdr
, msg_sect
, num_sect
, MAX_MSG_SIZE
,
484 !p_ptr
->user_port
, &buf
);
488 return tipc_reject_msg(buf
, err
);
491 static void port_timeout(unsigned long ref
)
493 struct port
*p_ptr
= tipc_port_lock(ref
);
494 struct sk_buff
*buf
= NULL
;
499 if (!p_ptr
->publ
.connected
) {
500 tipc_port_unlock(p_ptr
);
504 /* Last probe answered ? */
505 if (p_ptr
->probing_state
== PROBING
) {
506 buf
= port_build_self_abort_msg(p_ptr
, TIPC_ERR_NO_PORT
);
508 buf
= port_build_proto_msg(port_peerport(p_ptr
),
509 port_peernode(p_ptr
),
515 port_out_seqno(p_ptr
),
517 port_incr_out_seqno(p_ptr
);
518 p_ptr
->probing_state
= PROBING
;
519 k_start_timer(&p_ptr
->timer
, p_ptr
->probing_interval
);
521 tipc_port_unlock(p_ptr
);
522 tipc_net_route_msg(buf
);
526 static void port_handle_node_down(unsigned long ref
)
528 struct port
*p_ptr
= tipc_port_lock(ref
);
529 struct sk_buff
* buf
= NULL
;
533 buf
= port_build_self_abort_msg(p_ptr
, TIPC_ERR_NO_NODE
);
534 tipc_port_unlock(p_ptr
);
535 tipc_net_route_msg(buf
);
539 static struct sk_buff
*port_build_self_abort_msg(struct port
*p_ptr
, u32 err
)
541 u32 imp
= msg_importance(&p_ptr
->publ
.phdr
);
543 if (!p_ptr
->publ
.connected
)
545 if (imp
< TIPC_CRITICAL_IMPORTANCE
)
547 return port_build_proto_msg(p_ptr
->publ
.ref
,
549 port_peerport(p_ptr
),
550 port_peernode(p_ptr
),
554 p_ptr
->last_in_seqno
+ 1,
559 static struct sk_buff
*port_build_peer_abort_msg(struct port
*p_ptr
, u32 err
)
561 u32 imp
= msg_importance(&p_ptr
->publ
.phdr
);
563 if (!p_ptr
->publ
.connected
)
565 if (imp
< TIPC_CRITICAL_IMPORTANCE
)
567 return port_build_proto_msg(port_peerport(p_ptr
),
568 port_peernode(p_ptr
),
574 port_out_seqno(p_ptr
),
578 void tipc_port_recv_proto_msg(struct sk_buff
*buf
)
580 struct tipc_msg
*msg
= buf_msg(buf
);
581 struct port
*p_ptr
= tipc_port_lock(msg_destport(msg
));
583 struct sk_buff
*r_buf
= NULL
;
584 struct sk_buff
*abort_buf
= NULL
;
586 msg_dbg(msg
, "PORT<RECV<:");
589 err
= TIPC_ERR_NO_PORT
;
590 } else if (p_ptr
->publ
.connected
) {
591 if (port_peernode(p_ptr
) != msg_orignode(msg
))
592 err
= TIPC_ERR_NO_PORT
;
593 if (port_peerport(p_ptr
) != msg_origport(msg
))
594 err
= TIPC_ERR_NO_PORT
;
595 if (!err
&& msg_routed(msg
)) {
596 u32 seqno
= msg_transp_seqno(msg
);
597 u32 myno
= ++p_ptr
->last_in_seqno
;
599 err
= TIPC_ERR_NO_PORT
;
600 abort_buf
= port_build_self_abort_msg(p_ptr
, err
);
603 if (msg_type(msg
) == CONN_ACK
) {
604 int wakeup
= tipc_port_congested(p_ptr
) &&
605 p_ptr
->publ
.congested
&&
607 p_ptr
->acked
+= msg_msgcnt(msg
);
608 if (tipc_port_congested(p_ptr
))
610 p_ptr
->publ
.congested
= 0;
613 p_ptr
->wakeup(&p_ptr
->publ
);
616 } else if (p_ptr
->publ
.published
) {
617 err
= TIPC_ERR_NO_PORT
;
620 r_buf
= port_build_proto_msg(msg_origport(msg
),
624 TIPC_HIGH_IMPORTANCE
,
633 if (msg_type(msg
) == CONN_PROBE
) {
634 r_buf
= port_build_proto_msg(msg_origport(msg
),
641 port_out_seqno(p_ptr
),
644 p_ptr
->probing_state
= CONFIRMED
;
645 port_incr_out_seqno(p_ptr
);
648 tipc_port_unlock(p_ptr
);
649 tipc_net_route_msg(r_buf
);
650 tipc_net_route_msg(abort_buf
);
654 static void port_print(struct port
*p_ptr
, struct print_buf
*buf
, int full_id
)
656 struct publication
*publ
;
659 tipc_printf(buf
, "<%u.%u.%u:%u>:",
660 tipc_zone(tipc_own_addr
), tipc_cluster(tipc_own_addr
),
661 tipc_node(tipc_own_addr
), p_ptr
->publ
.ref
);
663 tipc_printf(buf
, "%-10u:", p_ptr
->publ
.ref
);
665 if (p_ptr
->publ
.connected
) {
666 u32 dport
= port_peerport(p_ptr
);
667 u32 destnode
= port_peernode(p_ptr
);
669 tipc_printf(buf
, " connected to <%u.%u.%u:%u>",
670 tipc_zone(destnode
), tipc_cluster(destnode
),
671 tipc_node(destnode
), dport
);
672 if (p_ptr
->publ
.conn_type
!= 0)
673 tipc_printf(buf
, " via {%u,%u}",
674 p_ptr
->publ
.conn_type
,
675 p_ptr
->publ
.conn_instance
);
677 else if (p_ptr
->publ
.published
) {
678 tipc_printf(buf
, " bound to");
679 list_for_each_entry(publ
, &p_ptr
->publications
, pport_list
) {
680 if (publ
->lower
== publ
->upper
)
681 tipc_printf(buf
, " {%u,%u}", publ
->type
,
684 tipc_printf(buf
, " {%u,%u,%u}", publ
->type
,
685 publ
->lower
, publ
->upper
);
688 tipc_printf(buf
, "\n");
691 #define MAX_PORT_QUERY 32768
693 struct sk_buff
*tipc_port_get_ports(void)
696 struct tlv_desc
*rep_tlv
;
701 buf
= tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_QUERY
));
704 rep_tlv
= (struct tlv_desc
*)buf
->data
;
706 tipc_printbuf_init(&pb
, TLV_DATA(rep_tlv
), MAX_PORT_QUERY
);
707 spin_lock_bh(&tipc_port_list_lock
);
708 list_for_each_entry(p_ptr
, &ports
, port_list
) {
709 spin_lock_bh(p_ptr
->publ
.lock
);
710 port_print(p_ptr
, &pb
, 0);
711 spin_unlock_bh(p_ptr
->publ
.lock
);
713 spin_unlock_bh(&tipc_port_list_lock
);
714 str_len
= tipc_printbuf_validate(&pb
);
716 skb_put(buf
, TLV_SPACE(str_len
));
717 TLV_SET(rep_tlv
, TIPC_TLV_ULTRA_STRING
, NULL
, str_len
);
724 #define MAX_PORT_STATS 2000
726 struct sk_buff
*port_show_stats(const void *req_tlv_area
, int req_tlv_space
)
731 struct tlv_desc
*rep_tlv
;
735 if (!TLV_CHECK(req_tlv_area
, req_tlv_space
, TIPC_TLV_PORT_REF
))
736 return cfg_reply_error_string(TIPC_CFG_TLV_ERROR
);
738 ref
= *(u32
*)TLV_DATA(req_tlv_area
);
741 p_ptr
= tipc_port_lock(ref
);
743 return cfg_reply_error_string("port not found");
745 buf
= tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_STATS
));
747 tipc_port_unlock(p_ptr
);
750 rep_tlv
= (struct tlv_desc
*)buf
->data
;
752 tipc_printbuf_init(&pb
, TLV_DATA(rep_tlv
), MAX_PORT_STATS
);
753 port_print(p_ptr
, &pb
, 1);
754 /* NEED TO FILL IN ADDITIONAL PORT STATISTICS HERE */
755 tipc_port_unlock(p_ptr
);
756 str_len
= tipc_printbuf_validate(&pb
);
758 skb_put(buf
, TLV_SPACE(str_len
));
759 TLV_SET(rep_tlv
, TIPC_TLV_ULTRA_STRING
, NULL
, str_len
);
766 void tipc_port_reinit(void)
769 struct tipc_msg
*msg
;
771 spin_lock_bh(&tipc_port_list_lock
);
772 list_for_each_entry(p_ptr
, &ports
, port_list
) {
773 msg
= &p_ptr
->publ
.phdr
;
774 if (msg_orignode(msg
) == tipc_own_addr
)
776 msg_set_prevnode(msg
, tipc_own_addr
);
777 msg_set_orignode(msg
, tipc_own_addr
);
779 spin_unlock_bh(&tipc_port_list_lock
);
784 * port_dispatcher_sigh(): Signal handler for messages destinated
785 * to the tipc_port interface.
788 static void port_dispatcher_sigh(void *dummy
)
792 spin_lock_bh(&queue_lock
);
793 buf
= msg_queue_head
;
794 msg_queue_head
= NULL
;
795 spin_unlock_bh(&queue_lock
);
799 struct user_port
*up_ptr
;
800 struct tipc_portid orig
;
801 struct tipc_name_seq dseq
;
807 struct sk_buff
*next
= buf
->next
;
808 struct tipc_msg
*msg
= buf_msg(buf
);
809 u32 dref
= msg_destport(msg
);
811 message_type
= msg_type(msg
);
812 if (message_type
> TIPC_DIRECT_MSG
)
813 goto reject
; /* Unsupported message type */
815 p_ptr
= tipc_port_lock(dref
);
817 goto reject
; /* Port deleted while msg in queue */
819 orig
.ref
= msg_origport(msg
);
820 orig
.node
= msg_orignode(msg
);
821 up_ptr
= p_ptr
->user_port
;
822 usr_handle
= up_ptr
->usr_handle
;
823 connected
= p_ptr
->publ
.connected
;
824 published
= p_ptr
->publ
.published
;
826 if (unlikely(msg_errcode(msg
)))
829 switch (message_type
) {
832 tipc_conn_msg_event cb
= up_ptr
->conn_msg_cb
;
833 u32 peer_port
= port_peerport(p_ptr
);
834 u32 peer_node
= port_peernode(p_ptr
);
836 tipc_port_unlock(p_ptr
);
839 if (unlikely(!connected
)) {
840 if (tipc_connect2port(dref
, &orig
))
842 } else if ((msg_origport(msg
) != peer_port
) ||
843 (msg_orignode(msg
) != peer_node
))
845 if (unlikely(++p_ptr
->publ
.conn_unacked
>=
846 TIPC_FLOW_CONTROL_WIN
))
847 tipc_acknowledge(dref
,
848 p_ptr
->publ
.conn_unacked
);
849 skb_pull(buf
, msg_hdr_sz(msg
));
850 cb(usr_handle
, dref
, &buf
, msg_data(msg
),
854 case TIPC_DIRECT_MSG
:{
855 tipc_msg_event cb
= up_ptr
->msg_cb
;
857 tipc_port_unlock(p_ptr
);
858 if (unlikely(!cb
|| connected
))
860 skb_pull(buf
, msg_hdr_sz(msg
));
861 cb(usr_handle
, dref
, &buf
, msg_data(msg
),
862 msg_data_sz(msg
), msg_importance(msg
),
867 case TIPC_NAMED_MSG
:{
868 tipc_named_msg_event cb
= up_ptr
->named_msg_cb
;
870 tipc_port_unlock(p_ptr
);
871 if (unlikely(!cb
|| connected
|| !published
))
873 dseq
.type
= msg_nametype(msg
);
874 dseq
.lower
= msg_nameinst(msg
);
875 dseq
.upper
= (message_type
== TIPC_NAMED_MSG
)
876 ? dseq
.lower
: msg_nameupper(msg
);
877 skb_pull(buf
, msg_hdr_sz(msg
));
878 cb(usr_handle
, dref
, &buf
, msg_data(msg
),
879 msg_data_sz(msg
), msg_importance(msg
),
889 switch (message_type
) {
892 tipc_conn_shutdown_event cb
=
894 u32 peer_port
= port_peerport(p_ptr
);
895 u32 peer_node
= port_peernode(p_ptr
);
897 tipc_port_unlock(p_ptr
);
898 if (!cb
|| !connected
)
900 if ((msg_origport(msg
) != peer_port
) ||
901 (msg_orignode(msg
) != peer_node
))
903 tipc_disconnect(dref
);
904 skb_pull(buf
, msg_hdr_sz(msg
));
905 cb(usr_handle
, dref
, &buf
, msg_data(msg
),
906 msg_data_sz(msg
), msg_errcode(msg
));
909 case TIPC_DIRECT_MSG
:{
910 tipc_msg_err_event cb
= up_ptr
->err_cb
;
912 tipc_port_unlock(p_ptr
);
913 if (!cb
|| connected
)
915 skb_pull(buf
, msg_hdr_sz(msg
));
916 cb(usr_handle
, dref
, &buf
, msg_data(msg
),
917 msg_data_sz(msg
), msg_errcode(msg
), &orig
);
921 case TIPC_NAMED_MSG
:{
922 tipc_named_msg_err_event cb
=
923 up_ptr
->named_err_cb
;
925 tipc_port_unlock(p_ptr
);
926 if (!cb
|| connected
)
928 dseq
.type
= msg_nametype(msg
);
929 dseq
.lower
= msg_nameinst(msg
);
930 dseq
.upper
= (message_type
== TIPC_NAMED_MSG
)
931 ? dseq
.lower
: msg_nameupper(msg
);
932 skb_pull(buf
, msg_hdr_sz(msg
));
933 cb(usr_handle
, dref
, &buf
, msg_data(msg
),
934 msg_data_sz(msg
), msg_errcode(msg
), &dseq
);
943 tipc_reject_msg(buf
, TIPC_ERR_NO_PORT
);
949 * port_dispatcher(): Dispatcher for messages destinated
950 * to the tipc_port interface. Called with port locked.
953 static u32
port_dispatcher(struct tipc_port
*dummy
, struct sk_buff
*buf
)
956 spin_lock_bh(&queue_lock
);
957 if (msg_queue_head
) {
958 msg_queue_tail
->next
= buf
;
959 msg_queue_tail
= buf
;
961 msg_queue_tail
= msg_queue_head
= buf
;
962 tipc_k_signal((Handler
)port_dispatcher_sigh
, 0);
964 spin_unlock_bh(&queue_lock
);
969 * Wake up port after congestion: Called with port locked,
973 static void port_wakeup_sh(unsigned long ref
)
976 struct user_port
*up_ptr
;
977 tipc_continue_event cb
= NULL
;
980 p_ptr
= tipc_port_lock(ref
);
982 up_ptr
= p_ptr
->user_port
;
984 cb
= up_ptr
->continue_event_cb
;
985 uh
= up_ptr
->usr_handle
;
987 tipc_port_unlock(p_ptr
);
994 static void port_wakeup(struct tipc_port
*p_ptr
)
996 tipc_k_signal((Handler
)port_wakeup_sh
, p_ptr
->ref
);
999 void tipc_acknowledge(u32 ref
, u32 ack
)
1002 struct sk_buff
*buf
= NULL
;
1004 p_ptr
= tipc_port_lock(ref
);
1007 if (p_ptr
->publ
.connected
) {
1008 p_ptr
->publ
.conn_unacked
-= ack
;
1009 buf
= port_build_proto_msg(port_peerport(p_ptr
),
1010 port_peernode(p_ptr
),
1016 port_out_seqno(p_ptr
),
1019 tipc_port_unlock(p_ptr
);
1020 tipc_net_route_msg(buf
);
1024 * tipc_createport(): user level call. Will add port to
1025 * registry if non-zero user_ref.
1028 int tipc_createport(u32 user_ref
,
1030 unsigned int importance
,
1031 tipc_msg_err_event error_cb
,
1032 tipc_named_msg_err_event named_error_cb
,
1033 tipc_conn_shutdown_event conn_error_cb
,
1034 tipc_msg_event msg_cb
,
1035 tipc_named_msg_event named_msg_cb
,
1036 tipc_conn_msg_event conn_msg_cb
,
1037 tipc_continue_event continue_event_cb
,/* May be zero */
1040 struct user_port
*up_ptr
;
1043 up_ptr
= kmalloc(sizeof(*up_ptr
), GFP_ATOMIC
);
1045 warn("Port creation failed, no memory\n");
1048 p_ptr
= (struct port
*)tipc_createport_raw(NULL
, port_dispatcher
,
1049 port_wakeup
, importance
);
1055 p_ptr
->user_port
= up_ptr
;
1056 up_ptr
->user_ref
= user_ref
;
1057 up_ptr
->usr_handle
= usr_handle
;
1058 up_ptr
->ref
= p_ptr
->publ
.ref
;
1059 up_ptr
->err_cb
= error_cb
;
1060 up_ptr
->named_err_cb
= named_error_cb
;
1061 up_ptr
->conn_err_cb
= conn_error_cb
;
1062 up_ptr
->msg_cb
= msg_cb
;
1063 up_ptr
->named_msg_cb
= named_msg_cb
;
1064 up_ptr
->conn_msg_cb
= conn_msg_cb
;
1065 up_ptr
->continue_event_cb
= continue_event_cb
;
1066 INIT_LIST_HEAD(&up_ptr
->uport_list
);
1067 tipc_reg_add_port(up_ptr
);
1068 *portref
= p_ptr
->publ
.ref
;
1069 tipc_port_unlock(p_ptr
);
1073 int tipc_ownidentity(u32 ref
, struct tipc_portid
*id
)
1076 id
->node
= tipc_own_addr
;
1080 int tipc_portimportance(u32 ref
, unsigned int *importance
)
1084 p_ptr
= tipc_port_lock(ref
);
1087 *importance
= (unsigned int)msg_importance(&p_ptr
->publ
.phdr
);
1088 tipc_port_unlock(p_ptr
);
1092 int tipc_set_portimportance(u32 ref
, unsigned int imp
)
1096 if (imp
> TIPC_CRITICAL_IMPORTANCE
)
1099 p_ptr
= tipc_port_lock(ref
);
1102 msg_set_importance(&p_ptr
->publ
.phdr
, (u32
)imp
);
1103 tipc_port_unlock(p_ptr
);
1108 int tipc_publish(u32 ref
, unsigned int scope
, struct tipc_name_seq
const *seq
)
1111 struct publication
*publ
;
1115 p_ptr
= tipc_port_lock(ref
);
1119 dbg("tipc_publ %u, p_ptr = %x, conn = %x, scope = %x, "
1120 "lower = %u, upper = %u\n",
1121 ref
, p_ptr
, p_ptr
->publ
.connected
, scope
, seq
->lower
, seq
->upper
);
1122 if (p_ptr
->publ
.connected
)
1124 if (seq
->lower
> seq
->upper
)
1126 if ((scope
< TIPC_ZONE_SCOPE
) || (scope
> TIPC_NODE_SCOPE
))
1128 key
= ref
+ p_ptr
->pub_count
+ 1;
1133 publ
= tipc_nametbl_publish(seq
->type
, seq
->lower
, seq
->upper
,
1134 scope
, p_ptr
->publ
.ref
, key
);
1136 list_add(&publ
->pport_list
, &p_ptr
->publications
);
1138 p_ptr
->publ
.published
= 1;
1142 tipc_port_unlock(p_ptr
);
1146 int tipc_withdraw(u32 ref
, unsigned int scope
, struct tipc_name_seq
const *seq
)
1149 struct publication
*publ
;
1150 struct publication
*tpubl
;
1153 p_ptr
= tipc_port_lock(ref
);
1157 list_for_each_entry_safe(publ
, tpubl
,
1158 &p_ptr
->publications
, pport_list
) {
1159 tipc_nametbl_withdraw(publ
->type
, publ
->lower
,
1160 publ
->ref
, publ
->key
);
1164 list_for_each_entry_safe(publ
, tpubl
,
1165 &p_ptr
->publications
, pport_list
) {
1166 if (publ
->scope
!= scope
)
1168 if (publ
->type
!= seq
->type
)
1170 if (publ
->lower
!= seq
->lower
)
1172 if (publ
->upper
!= seq
->upper
)
1174 tipc_nametbl_withdraw(publ
->type
, publ
->lower
,
1175 publ
->ref
, publ
->key
);
1180 if (list_empty(&p_ptr
->publications
))
1181 p_ptr
->publ
.published
= 0;
1182 tipc_port_unlock(p_ptr
);
1186 int tipc_connect2port(u32 ref
, struct tipc_portid
const *peer
)
1189 struct tipc_msg
*msg
;
1192 p_ptr
= tipc_port_lock(ref
);
1195 if (p_ptr
->publ
.published
|| p_ptr
->publ
.connected
)
1200 msg
= &p_ptr
->publ
.phdr
;
1201 msg_set_destnode(msg
, peer
->node
);
1202 msg_set_destport(msg
, peer
->ref
);
1203 msg_set_orignode(msg
, tipc_own_addr
);
1204 msg_set_origport(msg
, p_ptr
->publ
.ref
);
1205 msg_set_transp_seqno(msg
, 42);
1206 msg_set_type(msg
, TIPC_CONN_MSG
);
1207 if (!may_route(peer
->node
))
1208 msg_set_hdr_sz(msg
, SHORT_H_SIZE
);
1210 msg_set_hdr_sz(msg
, LONG_H_SIZE
);
1212 p_ptr
->probing_interval
= PROBING_INTERVAL
;
1213 p_ptr
->probing_state
= CONFIRMED
;
1214 p_ptr
->publ
.connected
= 1;
1215 k_start_timer(&p_ptr
->timer
, p_ptr
->probing_interval
);
1217 tipc_nodesub_subscribe(&p_ptr
->subscription
,peer
->node
,
1218 (void *)(unsigned long)ref
,
1219 (net_ev_handler
)port_handle_node_down
);
1222 tipc_port_unlock(p_ptr
);
1223 p_ptr
->publ
.max_pkt
= tipc_link_get_max_pkt(peer
->node
, ref
);
1228 * tipc_disconnect_port - disconnect port from peer
1230 * Port must be locked.
1233 int tipc_disconnect_port(struct tipc_port
*tp_ptr
)
1237 if (tp_ptr
->connected
) {
1238 tp_ptr
->connected
= 0;
1239 /* let timer expire on it's own to avoid deadlock! */
1240 tipc_nodesub_unsubscribe(
1241 &((struct port
*)tp_ptr
)->subscription
);
1250 * tipc_disconnect(): Disconnect port form peer.
1251 * This is a node local operation.
1254 int tipc_disconnect(u32 ref
)
1259 p_ptr
= tipc_port_lock(ref
);
1262 res
= tipc_disconnect_port((struct tipc_port
*)p_ptr
);
1263 tipc_port_unlock(p_ptr
);
1268 * tipc_shutdown(): Send a SHUTDOWN msg to peer and disconnect
1270 int tipc_shutdown(u32 ref
)
1273 struct sk_buff
*buf
= NULL
;
1275 p_ptr
= tipc_port_lock(ref
);
1279 if (p_ptr
->publ
.connected
) {
1280 u32 imp
= msg_importance(&p_ptr
->publ
.phdr
);
1281 if (imp
< TIPC_CRITICAL_IMPORTANCE
)
1283 buf
= port_build_proto_msg(port_peerport(p_ptr
),
1284 port_peernode(p_ptr
),
1290 port_out_seqno(p_ptr
),
1293 tipc_port_unlock(p_ptr
);
1294 tipc_net_route_msg(buf
);
1295 return tipc_disconnect(ref
);
1298 int tipc_isconnected(u32 ref
, int *isconnected
)
1302 p_ptr
= tipc_port_lock(ref
);
1305 *isconnected
= p_ptr
->publ
.connected
;
1306 tipc_port_unlock(p_ptr
);
1310 int tipc_peer(u32 ref
, struct tipc_portid
*peer
)
1315 p_ptr
= tipc_port_lock(ref
);
1318 if (p_ptr
->publ
.connected
) {
1319 peer
->ref
= port_peerport(p_ptr
);
1320 peer
->node
= port_peernode(p_ptr
);
1324 tipc_port_unlock(p_ptr
);
1328 int tipc_ref_valid(u32 ref
)
1330 /* Works irrespective of type */
1331 return !!tipc_ref_deref(ref
);
1336 * tipc_port_recv_sections(): Concatenate and deliver sectioned
1337 * message for this node.
1340 int tipc_port_recv_sections(struct port
*sender
, unsigned int num_sect
,
1341 struct iovec
const *msg_sect
)
1343 struct sk_buff
*buf
;
1346 res
= tipc_msg_build(&sender
->publ
.phdr
, msg_sect
, num_sect
,
1347 MAX_MSG_SIZE
, !sender
->user_port
, &buf
);
1349 tipc_port_recv_msg(buf
);
1354 * tipc_send - send message sections on connection
1357 int tipc_send(u32 ref
, unsigned int num_sect
, struct iovec
const *msg_sect
)
1363 p_ptr
= tipc_port_deref(ref
);
1364 if (!p_ptr
|| !p_ptr
->publ
.connected
)
1367 p_ptr
->publ
.congested
= 1;
1368 if (!tipc_port_congested(p_ptr
)) {
1369 destnode
= port_peernode(p_ptr
);
1370 if (likely(destnode
!= tipc_own_addr
))
1371 res
= tipc_link_send_sections_fast(p_ptr
, msg_sect
, num_sect
,
1374 res
= tipc_port_recv_sections(p_ptr
, num_sect
, msg_sect
);
1376 if (likely(res
!= -ELINKCONG
)) {
1377 port_incr_out_seqno(p_ptr
);
1378 p_ptr
->publ
.congested
= 0;
1383 if (port_unreliable(p_ptr
)) {
1384 p_ptr
->publ
.congested
= 0;
1385 /* Just calculate msg length and return */
1386 return tipc_msg_calc_data_size(msg_sect
, num_sect
);
1392 * tipc_send_buf - send message buffer on connection
1395 int tipc_send_buf(u32 ref
, struct sk_buff
*buf
, unsigned int dsz
)
1398 struct tipc_msg
*msg
;
1404 p_ptr
= tipc_port_deref(ref
);
1405 if (!p_ptr
|| !p_ptr
->publ
.connected
)
1408 msg
= &p_ptr
->publ
.phdr
;
1409 hsz
= msg_hdr_sz(msg
);
1411 msg_set_size(msg
, sz
);
1412 if (skb_cow(buf
, hsz
))
1416 skb_copy_to_linear_data(buf
, msg
, hsz
);
1417 destnode
= msg_destnode(msg
);
1418 p_ptr
->publ
.congested
= 1;
1419 if (!tipc_port_congested(p_ptr
)) {
1420 if (likely(destnode
!= tipc_own_addr
))
1421 res
= tipc_send_buf_fast(buf
, destnode
);
1423 tipc_port_recv_msg(buf
);
1426 if (likely(res
!= -ELINKCONG
)) {
1427 port_incr_out_seqno(p_ptr
);
1429 p_ptr
->publ
.congested
= 0;
1433 if (port_unreliable(p_ptr
)) {
1434 p_ptr
->publ
.congested
= 0;
1441 * tipc_forward2name - forward message sections to port name
1444 int tipc_forward2name(u32 ref
,
1445 struct tipc_name
const *name
,
1448 struct iovec
const *msg_sect
,
1449 struct tipc_portid
const *orig
,
1450 unsigned int importance
)
1453 struct tipc_msg
*msg
;
1454 u32 destnode
= domain
;
1458 p_ptr
= tipc_port_deref(ref
);
1459 if (!p_ptr
|| p_ptr
->publ
.connected
)
1462 msg
= &p_ptr
->publ
.phdr
;
1463 msg_set_type(msg
, TIPC_NAMED_MSG
);
1464 msg_set_orignode(msg
, orig
->node
);
1465 msg_set_origport(msg
, orig
->ref
);
1466 msg_set_hdr_sz(msg
, LONG_H_SIZE
);
1467 msg_set_nametype(msg
, name
->type
);
1468 msg_set_nameinst(msg
, name
->instance
);
1469 msg_set_lookup_scope(msg
, tipc_addr_scope(domain
));
1470 if (importance
<= TIPC_CRITICAL_IMPORTANCE
)
1471 msg_set_importance(msg
,importance
);
1472 destport
= tipc_nametbl_translate(name
->type
, name
->instance
, &destnode
);
1473 msg_set_destnode(msg
, destnode
);
1474 msg_set_destport(msg
, destport
);
1476 if (likely(destport
|| destnode
)) {
1478 if (likely(destnode
== tipc_own_addr
))
1479 return tipc_port_recv_sections(p_ptr
, num_sect
, msg_sect
);
1480 res
= tipc_link_send_sections_fast(p_ptr
, msg_sect
, num_sect
,
1482 if (likely(res
!= -ELINKCONG
))
1484 if (port_unreliable(p_ptr
)) {
1485 /* Just calculate msg length and return */
1486 return tipc_msg_calc_data_size(msg_sect
, num_sect
);
1490 return tipc_port_reject_sections(p_ptr
, msg
, msg_sect
, num_sect
,
1495 * tipc_send2name - send message sections to port name
1498 int tipc_send2name(u32 ref
,
1499 struct tipc_name
const *name
,
1500 unsigned int domain
,
1501 unsigned int num_sect
,
1502 struct iovec
const *msg_sect
)
1504 struct tipc_portid orig
;
1507 orig
.node
= tipc_own_addr
;
1508 return tipc_forward2name(ref
, name
, domain
, num_sect
, msg_sect
, &orig
,
1509 TIPC_PORT_IMPORTANCE
);
1513 * tipc_forward_buf2name - forward message buffer to port name
1516 int tipc_forward_buf2name(u32 ref
,
1517 struct tipc_name
const *name
,
1519 struct sk_buff
*buf
,
1521 struct tipc_portid
const *orig
,
1522 unsigned int importance
)
1525 struct tipc_msg
*msg
;
1526 u32 destnode
= domain
;
1530 p_ptr
= (struct port
*)tipc_ref_deref(ref
);
1531 if (!p_ptr
|| p_ptr
->publ
.connected
)
1534 msg
= &p_ptr
->publ
.phdr
;
1535 if (importance
<= TIPC_CRITICAL_IMPORTANCE
)
1536 msg_set_importance(msg
, importance
);
1537 msg_set_type(msg
, TIPC_NAMED_MSG
);
1538 msg_set_orignode(msg
, orig
->node
);
1539 msg_set_origport(msg
, orig
->ref
);
1540 msg_set_nametype(msg
, name
->type
);
1541 msg_set_nameinst(msg
, name
->instance
);
1542 msg_set_lookup_scope(msg
, tipc_addr_scope(domain
));
1543 msg_set_hdr_sz(msg
, LONG_H_SIZE
);
1544 msg_set_size(msg
, LONG_H_SIZE
+ dsz
);
1545 destport
= tipc_nametbl_translate(name
->type
, name
->instance
, &destnode
);
1546 msg_set_destnode(msg
, destnode
);
1547 msg_set_destport(msg
, destport
);
1548 msg_dbg(msg
, "forw2name ==> ");
1549 if (skb_cow(buf
, LONG_H_SIZE
))
1551 skb_push(buf
, LONG_H_SIZE
);
1552 skb_copy_to_linear_data(buf
, msg
, LONG_H_SIZE
);
1553 msg_dbg(buf_msg(buf
),"PREP:");
1554 if (likely(destport
|| destnode
)) {
1556 if (destnode
== tipc_own_addr
)
1557 return tipc_port_recv_msg(buf
);
1558 res
= tipc_send_buf_fast(buf
, destnode
);
1559 if (likely(res
!= -ELINKCONG
))
1561 if (port_unreliable(p_ptr
))
1565 return tipc_reject_msg(buf
, TIPC_ERR_NO_NAME
);
1569 * tipc_send_buf2name - send message buffer to port name
1572 int tipc_send_buf2name(u32 ref
,
1573 struct tipc_name
const *dest
,
1575 struct sk_buff
*buf
,
1578 struct tipc_portid orig
;
1581 orig
.node
= tipc_own_addr
;
1582 return tipc_forward_buf2name(ref
, dest
, domain
, buf
, dsz
, &orig
,
1583 TIPC_PORT_IMPORTANCE
);
1587 * tipc_forward2port - forward message sections to port identity
1590 int tipc_forward2port(u32 ref
,
1591 struct tipc_portid
const *dest
,
1592 unsigned int num_sect
,
1593 struct iovec
const *msg_sect
,
1594 struct tipc_portid
const *orig
,
1595 unsigned int importance
)
1598 struct tipc_msg
*msg
;
1601 p_ptr
= tipc_port_deref(ref
);
1602 if (!p_ptr
|| p_ptr
->publ
.connected
)
1605 msg
= &p_ptr
->publ
.phdr
;
1606 msg_set_type(msg
, TIPC_DIRECT_MSG
);
1607 msg_set_orignode(msg
, orig
->node
);
1608 msg_set_origport(msg
, orig
->ref
);
1609 msg_set_destnode(msg
, dest
->node
);
1610 msg_set_destport(msg
, dest
->ref
);
1611 msg_set_hdr_sz(msg
, DIR_MSG_H_SIZE
);
1612 if (importance
<= TIPC_CRITICAL_IMPORTANCE
)
1613 msg_set_importance(msg
, importance
);
1615 if (dest
->node
== tipc_own_addr
)
1616 return tipc_port_recv_sections(p_ptr
, num_sect
, msg_sect
);
1617 res
= tipc_link_send_sections_fast(p_ptr
, msg_sect
, num_sect
, dest
->node
);
1618 if (likely(res
!= -ELINKCONG
))
1620 if (port_unreliable(p_ptr
)) {
1621 /* Just calculate msg length and return */
1622 return tipc_msg_calc_data_size(msg_sect
, num_sect
);
1628 * tipc_send2port - send message sections to port identity
1631 int tipc_send2port(u32 ref
,
1632 struct tipc_portid
const *dest
,
1633 unsigned int num_sect
,
1634 struct iovec
const *msg_sect
)
1636 struct tipc_portid orig
;
1639 orig
.node
= tipc_own_addr
;
1640 return tipc_forward2port(ref
, dest
, num_sect
, msg_sect
, &orig
,
1641 TIPC_PORT_IMPORTANCE
);
1645 * tipc_forward_buf2port - forward message buffer to port identity
1647 int tipc_forward_buf2port(u32 ref
,
1648 struct tipc_portid
const *dest
,
1649 struct sk_buff
*buf
,
1651 struct tipc_portid
const *orig
,
1652 unsigned int importance
)
1655 struct tipc_msg
*msg
;
1658 p_ptr
= (struct port
*)tipc_ref_deref(ref
);
1659 if (!p_ptr
|| p_ptr
->publ
.connected
)
1662 msg
= &p_ptr
->publ
.phdr
;
1663 msg_set_type(msg
, TIPC_DIRECT_MSG
);
1664 msg_set_orignode(msg
, orig
->node
);
1665 msg_set_origport(msg
, orig
->ref
);
1666 msg_set_destnode(msg
, dest
->node
);
1667 msg_set_destport(msg
, dest
->ref
);
1668 msg_set_hdr_sz(msg
, DIR_MSG_H_SIZE
);
1669 if (importance
<= TIPC_CRITICAL_IMPORTANCE
)
1670 msg_set_importance(msg
, importance
);
1671 msg_set_size(msg
, DIR_MSG_H_SIZE
+ dsz
);
1672 if (skb_cow(buf
, DIR_MSG_H_SIZE
))
1675 skb_push(buf
, DIR_MSG_H_SIZE
);
1676 skb_copy_to_linear_data(buf
, msg
, DIR_MSG_H_SIZE
);
1677 msg_dbg(msg
, "buf2port: ");
1679 if (dest
->node
== tipc_own_addr
)
1680 return tipc_port_recv_msg(buf
);
1681 res
= tipc_send_buf_fast(buf
, dest
->node
);
1682 if (likely(res
!= -ELINKCONG
))
1684 if (port_unreliable(p_ptr
))
1690 * tipc_send_buf2port - send message buffer to port identity
1693 int tipc_send_buf2port(u32 ref
,
1694 struct tipc_portid
const *dest
,
1695 struct sk_buff
*buf
,
1698 struct tipc_portid orig
;
1701 orig
.node
= tipc_own_addr
;
1702 return tipc_forward_buf2port(ref
, dest
, buf
, dsz
, &orig
,
1703 TIPC_PORT_IMPORTANCE
);