2 * net/tipc/port.c: TIPC port code
4 * Copyright (c) 1992-2007, Ericsson AB
5 * Copyright (c) 2004-2007, 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 = 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 port reference, or 0 if unable to create it
218 * Note: The newly created port is returned in the locked state.
221 u32 tipc_createport_raw(void *usr_handle,
222 u32 (*dispatcher)(struct tipc_port *, struct sk_buff *),
223 void (*wakeup)(struct tipc_port *),
224 const u32 importance,
225 struct tipc_port **tp_ptr)
228 struct tipc_msg *msg;
231 p_ptr = kzalloc(sizeof(*p_ptr), GFP_ATOMIC);
233 warn("Port creation failed, no memory\n");
236 ref = tipc_ref_acquire(p_ptr, &p_ptr->publ.lock);
238 warn("Port creation failed, reference table exhausted\n");
243 p_ptr->publ.usr_handle = usr_handle;
244 p_ptr->publ.max_pkt = MAX_PKT_DEFAULT;
245 p_ptr->publ.ref = ref;
246 msg = &p_ptr->publ.phdr;
247 msg_init(msg, importance, TIPC_NAMED_MSG, LONG_H_SIZE, 0);
248 msg_set_origport(msg, ref);
249 p_ptr->last_in_seqno = 41;
251 INIT_LIST_HEAD(&p_ptr->wait_list);
252 INIT_LIST_HEAD(&p_ptr->subscription.nodesub_list);
253 p_ptr->congested_link = NULL;
254 p_ptr->dispatcher = dispatcher;
255 p_ptr->wakeup = wakeup;
256 p_ptr->user_port = NULL;
257 k_init_timer(&p_ptr->timer, (Handler)port_timeout, ref);
258 spin_lock_bh(&tipc_port_list_lock);
259 INIT_LIST_HEAD(&p_ptr->publications);
260 INIT_LIST_HEAD(&p_ptr->port_list);
261 list_add_tail(&p_ptr->port_list, &ports);
262 spin_unlock_bh(&tipc_port_list_lock);
263 *tp_ptr = &p_ptr->publ;
267 int tipc_deleteport(u32 ref)
270 struct sk_buff *buf = NULL;
272 tipc_withdraw(ref, 0, NULL);
273 p_ptr = tipc_port_lock(ref);
277 tipc_ref_discard(ref);
278 tipc_port_unlock(p_ptr);
280 k_cancel_timer(&p_ptr->timer);
281 if (p_ptr->publ.connected) {
282 buf = port_build_peer_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
283 tipc_nodesub_unsubscribe(&p_ptr->subscription);
285 if (p_ptr->user_port) {
286 tipc_reg_remove_port(p_ptr->user_port);
287 kfree(p_ptr->user_port);
290 spin_lock_bh(&tipc_port_list_lock);
291 list_del(&p_ptr->port_list);
292 list_del(&p_ptr->wait_list);
293 spin_unlock_bh(&tipc_port_list_lock);
294 k_term_timer(&p_ptr->timer);
296 dbg("Deleted port %u\n", ref);
297 tipc_net_route_msg(buf);
302 * tipc_get_port() - return port associated with 'ref'
304 * Note: Port is not locked.
307 struct tipc_port *tipc_get_port(const u32 ref)
309 return (struct tipc_port *)tipc_ref_deref(ref);
313 * tipc_get_handle - return user handle associated to port 'ref'
316 void *tipc_get_handle(const u32 ref)
321 p_ptr = tipc_port_lock(ref);
324 handle = p_ptr->publ.usr_handle;
325 tipc_port_unlock(p_ptr);
329 static int port_unreliable(struct port *p_ptr)
331 return msg_src_droppable(&p_ptr->publ.phdr);
334 int tipc_portunreliable(u32 ref, unsigned int *isunreliable)
338 p_ptr = tipc_port_lock(ref);
341 *isunreliable = port_unreliable(p_ptr);
342 tipc_port_unlock(p_ptr);
346 int tipc_set_portunreliable(u32 ref, unsigned int isunreliable)
350 p_ptr = tipc_port_lock(ref);
353 msg_set_src_droppable(&p_ptr->publ.phdr, (isunreliable != 0));
354 tipc_port_unlock(p_ptr);
358 static int port_unreturnable(struct port *p_ptr)
360 return msg_dest_droppable(&p_ptr->publ.phdr);
363 int tipc_portunreturnable(u32 ref, unsigned int *isunrejectable)
367 p_ptr = tipc_port_lock(ref);
370 *isunrejectable = port_unreturnable(p_ptr);
371 tipc_port_unlock(p_ptr);
375 int tipc_set_portunreturnable(u32 ref, unsigned int isunrejectable)
379 p_ptr = tipc_port_lock(ref);
382 msg_set_dest_droppable(&p_ptr->publ.phdr, (isunrejectable != 0));
383 tipc_port_unlock(p_ptr);
388 * port_build_proto_msg(): build a port level protocol
389 * or a connection abortion message. Called with
392 static struct sk_buff *port_build_proto_msg(u32 destport, u32 destnode,
393 u32 origport, u32 orignode,
394 u32 usr, u32 type, u32 err,
398 struct tipc_msg *msg;
400 buf = buf_acquire(LONG_H_SIZE);
403 msg_init(msg, usr, type, LONG_H_SIZE, destnode);
404 msg_set_errcode(msg, err);
405 msg_set_destport(msg, destport);
406 msg_set_origport(msg, origport);
407 msg_set_orignode(msg, orignode);
408 msg_set_transp_seqno(msg, seqno);
409 msg_set_msgcnt(msg, ack);
410 msg_dbg(msg, "PORT>SEND>:");
415 int tipc_reject_msg(struct sk_buff *buf, u32 err)
417 struct tipc_msg *msg = buf_msg(buf);
418 struct sk_buff *rbuf;
419 struct tipc_msg *rmsg;
421 u32 imp = msg_importance(msg);
422 u32 data_sz = msg_data_sz(msg);
424 if (data_sz > MAX_REJECT_SIZE)
425 data_sz = MAX_REJECT_SIZE;
426 if (msg_connected(msg) && (imp < TIPC_CRITICAL_IMPORTANCE))
428 msg_dbg(msg, "port->rej: ");
430 /* discard rejected message if it shouldn't be returned to sender */
431 if (msg_errcode(msg) || msg_dest_droppable(msg)) {
436 /* construct rejected message */
438 hdr_sz = MCAST_H_SIZE;
440 hdr_sz = LONG_H_SIZE;
441 rbuf = buf_acquire(data_sz + hdr_sz);
446 rmsg = buf_msg(rbuf);
447 msg_init(rmsg, imp, msg_type(msg), hdr_sz, msg_orignode(msg));
448 msg_set_errcode(rmsg, err);
449 msg_set_destport(rmsg, msg_origport(msg));
450 msg_set_origport(rmsg, msg_destport(msg));
451 if (msg_short(msg)) {
452 msg_set_orignode(rmsg, tipc_own_addr);
453 /* leave name type & instance as zeroes */
455 msg_set_orignode(rmsg, msg_destnode(msg));
456 msg_set_nametype(rmsg, msg_nametype(msg));
457 msg_set_nameinst(rmsg, msg_nameinst(msg));
459 msg_set_size(rmsg, data_sz + hdr_sz);
460 skb_copy_to_linear_data_offset(rbuf, hdr_sz, msg_data(msg), data_sz);
462 /* send self-abort message when rejecting on a connected port */
463 if (msg_connected(msg)) {
464 struct sk_buff *abuf = NULL;
465 struct port *p_ptr = tipc_port_lock(msg_destport(msg));
468 if (p_ptr->publ.connected)
469 abuf = port_build_self_abort_msg(p_ptr, err);
470 tipc_port_unlock(p_ptr);
472 tipc_net_route_msg(abuf);
475 /* send rejected message */
477 tipc_net_route_msg(rbuf);
481 int tipc_port_reject_sections(struct port *p_ptr, struct tipc_msg *hdr,
482 struct iovec const *msg_sect, u32 num_sect,
488 res = msg_build(hdr, msg_sect, num_sect, MAX_MSG_SIZE,
489 !p_ptr->user_port, &buf);
493 return tipc_reject_msg(buf, err);
496 static void port_timeout(unsigned long ref)
498 struct port *p_ptr = tipc_port_lock(ref);
499 struct sk_buff *buf = NULL;
504 if (!p_ptr->publ.connected) {
505 tipc_port_unlock(p_ptr);
509 /* Last probe answered ? */
510 if (p_ptr->probing_state == PROBING) {
511 buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
513 buf = port_build_proto_msg(port_peerport(p_ptr),
514 port_peernode(p_ptr),
520 port_out_seqno(p_ptr),
522 port_incr_out_seqno(p_ptr);
523 p_ptr->probing_state = PROBING;
524 k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
526 tipc_port_unlock(p_ptr);
527 tipc_net_route_msg(buf);
531 static void port_handle_node_down(unsigned long ref)
533 struct port *p_ptr = tipc_port_lock(ref);
534 struct sk_buff* buf = NULL;
538 buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_NODE);
539 tipc_port_unlock(p_ptr);
540 tipc_net_route_msg(buf);
544 static struct sk_buff *port_build_self_abort_msg(struct port *p_ptr, u32 err)
546 u32 imp = msg_importance(&p_ptr->publ.phdr);
548 if (!p_ptr->publ.connected)
550 if (imp < TIPC_CRITICAL_IMPORTANCE)
552 return port_build_proto_msg(p_ptr->publ.ref,
554 port_peerport(p_ptr),
555 port_peernode(p_ptr),
559 p_ptr->last_in_seqno + 1,
564 static struct sk_buff *port_build_peer_abort_msg(struct port *p_ptr, u32 err)
566 u32 imp = msg_importance(&p_ptr->publ.phdr);
568 if (!p_ptr->publ.connected)
570 if (imp < TIPC_CRITICAL_IMPORTANCE)
572 return port_build_proto_msg(port_peerport(p_ptr),
573 port_peernode(p_ptr),
579 port_out_seqno(p_ptr),
583 void tipc_port_recv_proto_msg(struct sk_buff *buf)
585 struct tipc_msg *msg = buf_msg(buf);
586 struct port *p_ptr = tipc_port_lock(msg_destport(msg));
588 struct sk_buff *r_buf = NULL;
589 struct sk_buff *abort_buf = NULL;
591 msg_dbg(msg, "PORT<RECV<:");
594 err = TIPC_ERR_NO_PORT;
595 } else if (p_ptr->publ.connected) {
596 if (port_peernode(p_ptr) != msg_orignode(msg))
597 err = TIPC_ERR_NO_PORT;
598 if (port_peerport(p_ptr) != msg_origport(msg))
599 err = TIPC_ERR_NO_PORT;
600 if (!err && msg_routed(msg)) {
601 u32 seqno = msg_transp_seqno(msg);
602 u32 myno = ++p_ptr->last_in_seqno;
604 err = TIPC_ERR_NO_PORT;
605 abort_buf = port_build_self_abort_msg(p_ptr, err);
608 if (msg_type(msg) == CONN_ACK) {
609 int wakeup = tipc_port_congested(p_ptr) &&
610 p_ptr->publ.congested &&
612 p_ptr->acked += msg_msgcnt(msg);
613 if (tipc_port_congested(p_ptr))
615 p_ptr->publ.congested = 0;
618 p_ptr->wakeup(&p_ptr->publ);
621 } else if (p_ptr->publ.published) {
622 err = TIPC_ERR_NO_PORT;
625 r_buf = port_build_proto_msg(msg_origport(msg),
629 TIPC_HIGH_IMPORTANCE,
638 if (msg_type(msg) == CONN_PROBE) {
639 r_buf = port_build_proto_msg(msg_origport(msg),
646 port_out_seqno(p_ptr),
649 p_ptr->probing_state = CONFIRMED;
650 port_incr_out_seqno(p_ptr);
653 tipc_port_unlock(p_ptr);
654 tipc_net_route_msg(r_buf);
655 tipc_net_route_msg(abort_buf);
659 static void port_print(struct port *p_ptr, struct print_buf *buf, int full_id)
661 struct publication *publ;
664 tipc_printf(buf, "<%u.%u.%u:%u>:",
665 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
666 tipc_node(tipc_own_addr), p_ptr->publ.ref);
668 tipc_printf(buf, "%-10u:", p_ptr->publ.ref);
670 if (p_ptr->publ.connected) {
671 u32 dport = port_peerport(p_ptr);
672 u32 destnode = port_peernode(p_ptr);
674 tipc_printf(buf, " connected to <%u.%u.%u:%u>",
675 tipc_zone(destnode), tipc_cluster(destnode),
676 tipc_node(destnode), dport);
677 if (p_ptr->publ.conn_type != 0)
678 tipc_printf(buf, " via {%u,%u}",
679 p_ptr->publ.conn_type,
680 p_ptr->publ.conn_instance);
682 else if (p_ptr->publ.published) {
683 tipc_printf(buf, " bound to");
684 list_for_each_entry(publ, &p_ptr->publications, pport_list) {
685 if (publ->lower == publ->upper)
686 tipc_printf(buf, " {%u,%u}", publ->type,
689 tipc_printf(buf, " {%u,%u,%u}", publ->type,
690 publ->lower, publ->upper);
693 tipc_printf(buf, "\n");
696 #define MAX_PORT_QUERY 32768
698 struct sk_buff *tipc_port_get_ports(void)
701 struct tlv_desc *rep_tlv;
706 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_QUERY));
709 rep_tlv = (struct tlv_desc *)buf->data;
711 tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), MAX_PORT_QUERY);
712 spin_lock_bh(&tipc_port_list_lock);
713 list_for_each_entry(p_ptr, &ports, port_list) {
714 spin_lock_bh(p_ptr->publ.lock);
715 port_print(p_ptr, &pb, 0);
716 spin_unlock_bh(p_ptr->publ.lock);
718 spin_unlock_bh(&tipc_port_list_lock);
719 str_len = tipc_printbuf_validate(&pb);
721 skb_put(buf, TLV_SPACE(str_len));
722 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
729 #define MAX_PORT_STATS 2000
731 struct sk_buff *port_show_stats(const void *req_tlv_area, int req_tlv_space)
736 struct tlv_desc *rep_tlv;
740 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_PORT_REF))
741 return cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
743 ref = *(u32 *)TLV_DATA(req_tlv_area);
746 p_ptr = tipc_port_lock(ref);
748 return cfg_reply_error_string("port not found");
750 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_STATS));
752 tipc_port_unlock(p_ptr);
755 rep_tlv = (struct tlv_desc *)buf->data;
757 tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), MAX_PORT_STATS);
758 port_print(p_ptr, &pb, 1);
759 /* NEED TO FILL IN ADDITIONAL PORT STATISTICS HERE */
760 tipc_port_unlock(p_ptr);
761 str_len = tipc_printbuf_validate(&pb);
763 skb_put(buf, TLV_SPACE(str_len));
764 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
771 void tipc_port_reinit(void)
774 struct tipc_msg *msg;
776 spin_lock_bh(&tipc_port_list_lock);
777 list_for_each_entry(p_ptr, &ports, port_list) {
778 msg = &p_ptr->publ.phdr;
779 if (msg_orignode(msg) == tipc_own_addr)
781 msg_set_prevnode(msg, tipc_own_addr);
782 msg_set_orignode(msg, tipc_own_addr);
784 spin_unlock_bh(&tipc_port_list_lock);
789 * port_dispatcher_sigh(): Signal handler for messages destinated
790 * to the tipc_port interface.
793 static void port_dispatcher_sigh(void *dummy)
797 spin_lock_bh(&queue_lock);
798 buf = msg_queue_head;
799 msg_queue_head = NULL;
800 spin_unlock_bh(&queue_lock);
804 struct user_port *up_ptr;
805 struct tipc_portid orig;
806 struct tipc_name_seq dseq;
812 struct sk_buff *next = buf->next;
813 struct tipc_msg *msg = buf_msg(buf);
814 u32 dref = msg_destport(msg);
816 message_type = msg_type(msg);
817 if (message_type > TIPC_DIRECT_MSG)
818 goto reject; /* Unsupported message type */
820 p_ptr = tipc_port_lock(dref);
822 goto reject; /* Port deleted while msg in queue */
824 orig.ref = msg_origport(msg);
825 orig.node = msg_orignode(msg);
826 up_ptr = p_ptr->user_port;
827 usr_handle = up_ptr->usr_handle;
828 connected = p_ptr->publ.connected;
829 published = p_ptr->publ.published;
831 if (unlikely(msg_errcode(msg)))
834 switch (message_type) {
837 tipc_conn_msg_event cb = up_ptr->conn_msg_cb;
838 u32 peer_port = port_peerport(p_ptr);
839 u32 peer_node = port_peernode(p_ptr);
841 tipc_port_unlock(p_ptr);
844 if (unlikely(!connected)) {
845 if (tipc_connect2port(dref, &orig))
847 } else if ((msg_origport(msg) != peer_port) ||
848 (msg_orignode(msg) != peer_node))
850 if (unlikely(++p_ptr->publ.conn_unacked >=
851 TIPC_FLOW_CONTROL_WIN))
852 tipc_acknowledge(dref,
853 p_ptr->publ.conn_unacked);
854 skb_pull(buf, msg_hdr_sz(msg));
855 cb(usr_handle, dref, &buf, msg_data(msg),
859 case TIPC_DIRECT_MSG:{
860 tipc_msg_event cb = up_ptr->msg_cb;
862 tipc_port_unlock(p_ptr);
863 if (unlikely(!cb || connected))
865 skb_pull(buf, msg_hdr_sz(msg));
866 cb(usr_handle, dref, &buf, msg_data(msg),
867 msg_data_sz(msg), msg_importance(msg),
872 case TIPC_NAMED_MSG:{
873 tipc_named_msg_event cb = up_ptr->named_msg_cb;
875 tipc_port_unlock(p_ptr);
876 if (unlikely(!cb || connected || !published))
878 dseq.type = msg_nametype(msg);
879 dseq.lower = msg_nameinst(msg);
880 dseq.upper = (message_type == TIPC_NAMED_MSG)
881 ? dseq.lower : msg_nameupper(msg);
882 skb_pull(buf, msg_hdr_sz(msg));
883 cb(usr_handle, dref, &buf, msg_data(msg),
884 msg_data_sz(msg), msg_importance(msg),
894 switch (message_type) {
897 tipc_conn_shutdown_event cb =
899 u32 peer_port = port_peerport(p_ptr);
900 u32 peer_node = port_peernode(p_ptr);
902 tipc_port_unlock(p_ptr);
903 if (!cb || !connected)
905 if ((msg_origport(msg) != peer_port) ||
906 (msg_orignode(msg) != peer_node))
908 tipc_disconnect(dref);
909 skb_pull(buf, msg_hdr_sz(msg));
910 cb(usr_handle, dref, &buf, msg_data(msg),
911 msg_data_sz(msg), msg_errcode(msg));
914 case TIPC_DIRECT_MSG:{
915 tipc_msg_err_event cb = up_ptr->err_cb;
917 tipc_port_unlock(p_ptr);
918 if (!cb || connected)
920 skb_pull(buf, msg_hdr_sz(msg));
921 cb(usr_handle, dref, &buf, msg_data(msg),
922 msg_data_sz(msg), msg_errcode(msg), &orig);
926 case TIPC_NAMED_MSG:{
927 tipc_named_msg_err_event cb =
928 up_ptr->named_err_cb;
930 tipc_port_unlock(p_ptr);
931 if (!cb || connected)
933 dseq.type = msg_nametype(msg);
934 dseq.lower = msg_nameinst(msg);
935 dseq.upper = (message_type == TIPC_NAMED_MSG)
936 ? dseq.lower : msg_nameupper(msg);
937 skb_pull(buf, msg_hdr_sz(msg));
938 cb(usr_handle, dref, &buf, msg_data(msg),
939 msg_data_sz(msg), msg_errcode(msg), &dseq);
948 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
954 * port_dispatcher(): Dispatcher for messages destinated
955 * to the tipc_port interface. Called with port locked.
958 static u32 port_dispatcher(struct tipc_port *dummy, struct sk_buff *buf)
961 spin_lock_bh(&queue_lock);
962 if (msg_queue_head) {
963 msg_queue_tail->next = buf;
964 msg_queue_tail = buf;
966 msg_queue_tail = msg_queue_head = buf;
967 tipc_k_signal((Handler)port_dispatcher_sigh, 0);
969 spin_unlock_bh(&queue_lock);
974 * Wake up port after congestion: Called with port locked,
978 static void port_wakeup_sh(unsigned long ref)
981 struct user_port *up_ptr;
982 tipc_continue_event cb = NULL;
985 p_ptr = tipc_port_lock(ref);
987 up_ptr = p_ptr->user_port;
989 cb = up_ptr->continue_event_cb;
990 uh = up_ptr->usr_handle;
992 tipc_port_unlock(p_ptr);
999 static void port_wakeup(struct tipc_port *p_ptr)
1001 tipc_k_signal((Handler)port_wakeup_sh, p_ptr->ref);
1004 void tipc_acknowledge(u32 ref, u32 ack)
1007 struct sk_buff *buf = NULL;
1009 p_ptr = tipc_port_lock(ref);
1012 if (p_ptr->publ.connected) {
1013 p_ptr->publ.conn_unacked -= ack;
1014 buf = port_build_proto_msg(port_peerport(p_ptr),
1015 port_peernode(p_ptr),
1021 port_out_seqno(p_ptr),
1024 tipc_port_unlock(p_ptr);
1025 tipc_net_route_msg(buf);
1029 * tipc_createport(): user level call. Will add port to
1030 * registry if non-zero user_ref.
1033 int tipc_createport(u32 user_ref,
1035 unsigned int importance,
1036 tipc_msg_err_event error_cb,
1037 tipc_named_msg_err_event named_error_cb,
1038 tipc_conn_shutdown_event conn_error_cb,
1039 tipc_msg_event msg_cb,
1040 tipc_named_msg_event named_msg_cb,
1041 tipc_conn_msg_event conn_msg_cb,
1042 tipc_continue_event continue_event_cb,/* May be zero */
1045 struct user_port *up_ptr;
1047 struct tipc_port *tp_ptr;
1050 up_ptr = kmalloc(sizeof(*up_ptr), GFP_ATOMIC);
1052 warn("Port creation failed, no memory\n");
1055 ref = tipc_createport_raw(NULL, port_dispatcher, port_wakeup,
1056 importance, &tp_ptr);
1061 p_ptr = (struct port *)tp_ptr;
1063 p_ptr->user_port = up_ptr;
1064 up_ptr->user_ref = user_ref;
1065 up_ptr->usr_handle = usr_handle;
1066 up_ptr->ref = p_ptr->publ.ref;
1067 up_ptr->err_cb = error_cb;
1068 up_ptr->named_err_cb = named_error_cb;
1069 up_ptr->conn_err_cb = conn_error_cb;
1070 up_ptr->msg_cb = msg_cb;
1071 up_ptr->named_msg_cb = named_msg_cb;
1072 up_ptr->conn_msg_cb = conn_msg_cb;
1073 up_ptr->continue_event_cb = continue_event_cb;
1074 INIT_LIST_HEAD(&up_ptr->uport_list);
1075 tipc_reg_add_port(up_ptr);
1076 *portref = p_ptr->publ.ref;
1077 dbg(" tipc_createport: %x with ref %u\n", p_ptr, p_ptr->publ.ref);
1078 tipc_port_unlock(p_ptr);
1082 int tipc_ownidentity(u32 ref, struct tipc_portid *id)
1085 id->node = tipc_own_addr;
1089 int tipc_portimportance(u32 ref, unsigned int *importance)
1093 p_ptr = tipc_port_lock(ref);
1096 *importance = (unsigned int)msg_importance(&p_ptr->publ.phdr);
1097 tipc_port_unlock(p_ptr);
1101 int tipc_set_portimportance(u32 ref, unsigned int imp)
1105 if (imp > TIPC_CRITICAL_IMPORTANCE)
1108 p_ptr = tipc_port_lock(ref);
1111 msg_set_importance(&p_ptr->publ.phdr, (u32)imp);
1112 tipc_port_unlock(p_ptr);
1117 int tipc_publish(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
1120 struct publication *publ;
1124 p_ptr = tipc_port_lock(ref);
1128 dbg("tipc_publ %u, p_ptr = %x, conn = %x, scope = %x, "
1129 "lower = %u, upper = %u\n",
1130 ref, p_ptr, p_ptr->publ.connected, scope, seq->lower, seq->upper);
1131 if (p_ptr->publ.connected)
1133 if (seq->lower > seq->upper)
1135 if ((scope < TIPC_ZONE_SCOPE) || (scope > TIPC_NODE_SCOPE))
1137 key = ref + p_ptr->pub_count + 1;
1142 publ = tipc_nametbl_publish(seq->type, seq->lower, seq->upper,
1143 scope, p_ptr->publ.ref, key);
1145 list_add(&publ->pport_list, &p_ptr->publications);
1147 p_ptr->publ.published = 1;
1151 tipc_port_unlock(p_ptr);
1155 int tipc_withdraw(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
1158 struct publication *publ;
1159 struct publication *tpubl;
1162 p_ptr = tipc_port_lock(ref);
1166 list_for_each_entry_safe(publ, tpubl,
1167 &p_ptr->publications, pport_list) {
1168 tipc_nametbl_withdraw(publ->type, publ->lower,
1169 publ->ref, publ->key);
1173 list_for_each_entry_safe(publ, tpubl,
1174 &p_ptr->publications, pport_list) {
1175 if (publ->scope != scope)
1177 if (publ->type != seq->type)
1179 if (publ->lower != seq->lower)
1181 if (publ->upper != seq->upper)
1183 tipc_nametbl_withdraw(publ->type, publ->lower,
1184 publ->ref, publ->key);
1189 if (list_empty(&p_ptr->publications))
1190 p_ptr->publ.published = 0;
1191 tipc_port_unlock(p_ptr);
1195 int tipc_connect2port(u32 ref, struct tipc_portid const *peer)
1198 struct tipc_msg *msg;
1201 p_ptr = tipc_port_lock(ref);
1204 if (p_ptr->publ.published || p_ptr->publ.connected)
1209 msg = &p_ptr->publ.phdr;
1210 msg_set_destnode(msg, peer->node);
1211 msg_set_destport(msg, peer->ref);
1212 msg_set_orignode(msg, tipc_own_addr);
1213 msg_set_origport(msg, p_ptr->publ.ref);
1214 msg_set_transp_seqno(msg, 42);
1215 msg_set_type(msg, TIPC_CONN_MSG);
1216 if (!may_route(peer->node))
1217 msg_set_hdr_sz(msg, SHORT_H_SIZE);
1219 msg_set_hdr_sz(msg, LONG_H_SIZE);
1221 p_ptr->probing_interval = PROBING_INTERVAL;
1222 p_ptr->probing_state = CONFIRMED;
1223 p_ptr->publ.connected = 1;
1224 k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
1226 tipc_nodesub_subscribe(&p_ptr->subscription,peer->node,
1227 (void *)(unsigned long)ref,
1228 (net_ev_handler)port_handle_node_down);
1231 tipc_port_unlock(p_ptr);
1232 p_ptr->publ.max_pkt = tipc_link_get_max_pkt(peer->node, ref);
1237 * tipc_disconnect_port - disconnect port from peer
1239 * Port must be locked.
1242 int tipc_disconnect_port(struct tipc_port *tp_ptr)
1246 if (tp_ptr->connected) {
1247 tp_ptr->connected = 0;
1248 /* let timer expire on it's own to avoid deadlock! */
1249 tipc_nodesub_unsubscribe(
1250 &((struct port *)tp_ptr)->subscription);
1259 * tipc_disconnect(): Disconnect port form peer.
1260 * This is a node local operation.
1263 int tipc_disconnect(u32 ref)
1268 p_ptr = tipc_port_lock(ref);
1271 res = tipc_disconnect_port((struct tipc_port *)p_ptr);
1272 tipc_port_unlock(p_ptr);
1277 * tipc_shutdown(): Send a SHUTDOWN msg to peer and disconnect
1279 int tipc_shutdown(u32 ref)
1282 struct sk_buff *buf = NULL;
1284 p_ptr = tipc_port_lock(ref);
1288 if (p_ptr->publ.connected) {
1289 u32 imp = msg_importance(&p_ptr->publ.phdr);
1290 if (imp < TIPC_CRITICAL_IMPORTANCE)
1292 buf = port_build_proto_msg(port_peerport(p_ptr),
1293 port_peernode(p_ptr),
1299 port_out_seqno(p_ptr),
1302 tipc_port_unlock(p_ptr);
1303 tipc_net_route_msg(buf);
1304 return tipc_disconnect(ref);
1307 int tipc_isconnected(u32 ref, int *isconnected)
1311 p_ptr = tipc_port_lock(ref);
1314 *isconnected = p_ptr->publ.connected;
1315 tipc_port_unlock(p_ptr);
1319 int tipc_peer(u32 ref, struct tipc_portid *peer)
1324 p_ptr = tipc_port_lock(ref);
1327 if (p_ptr->publ.connected) {
1328 peer->ref = port_peerport(p_ptr);
1329 peer->node = port_peernode(p_ptr);
1333 tipc_port_unlock(p_ptr);
1337 int tipc_ref_valid(u32 ref)
1339 /* Works irrespective of type */
1340 return !!tipc_ref_deref(ref);
1345 * tipc_port_recv_sections(): Concatenate and deliver sectioned
1346 * message for this node.
1349 int tipc_port_recv_sections(struct port *sender, unsigned int num_sect,
1350 struct iovec const *msg_sect)
1352 struct sk_buff *buf;
1355 res = msg_build(&sender->publ.phdr, msg_sect, num_sect,
1356 MAX_MSG_SIZE, !sender->user_port, &buf);
1358 tipc_port_recv_msg(buf);
1363 * tipc_send - send message sections on connection
1366 int tipc_send(u32 ref, unsigned int num_sect, struct iovec const *msg_sect)
1372 p_ptr = tipc_port_deref(ref);
1373 if (!p_ptr || !p_ptr->publ.connected)
1376 p_ptr->publ.congested = 1;
1377 if (!tipc_port_congested(p_ptr)) {
1378 destnode = port_peernode(p_ptr);
1379 if (likely(destnode != tipc_own_addr))
1380 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
1383 res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
1385 if (likely(res != -ELINKCONG)) {
1386 port_incr_out_seqno(p_ptr);
1387 p_ptr->publ.congested = 0;
1392 if (port_unreliable(p_ptr)) {
1393 p_ptr->publ.congested = 0;
1394 /* Just calculate msg length and return */
1395 return msg_calc_data_size(msg_sect, num_sect);
1401 * tipc_send_buf - send message buffer on connection
1404 int tipc_send_buf(u32 ref, struct sk_buff *buf, unsigned int dsz)
1407 struct tipc_msg *msg;
1413 p_ptr = tipc_port_deref(ref);
1414 if (!p_ptr || !p_ptr->publ.connected)
1417 msg = &p_ptr->publ.phdr;
1418 hsz = msg_hdr_sz(msg);
1420 msg_set_size(msg, sz);
1421 if (skb_cow(buf, hsz))
1425 skb_copy_to_linear_data(buf, msg, hsz);
1426 destnode = msg_destnode(msg);
1427 p_ptr->publ.congested = 1;
1428 if (!tipc_port_congested(p_ptr)) {
1429 if (likely(destnode != tipc_own_addr))
1430 res = tipc_send_buf_fast(buf, destnode);
1432 tipc_port_recv_msg(buf);
1435 if (likely(res != -ELINKCONG)) {
1436 port_incr_out_seqno(p_ptr);
1438 p_ptr->publ.congested = 0;
1442 if (port_unreliable(p_ptr)) {
1443 p_ptr->publ.congested = 0;
1450 * tipc_forward2name - forward message sections to port name
1453 int tipc_forward2name(u32 ref,
1454 struct tipc_name const *name,
1457 struct iovec const *msg_sect,
1458 struct tipc_portid const *orig,
1459 unsigned int importance)
1462 struct tipc_msg *msg;
1463 u32 destnode = domain;
1467 p_ptr = tipc_port_deref(ref);
1468 if (!p_ptr || p_ptr->publ.connected)
1471 msg = &p_ptr->publ.phdr;
1472 msg_set_type(msg, TIPC_NAMED_MSG);
1473 msg_set_orignode(msg, orig->node);
1474 msg_set_origport(msg, orig->ref);
1475 msg_set_hdr_sz(msg, LONG_H_SIZE);
1476 msg_set_nametype(msg, name->type);
1477 msg_set_nameinst(msg, name->instance);
1478 msg_set_lookup_scope(msg, addr_scope(domain));
1479 if (importance <= TIPC_CRITICAL_IMPORTANCE)
1480 msg_set_importance(msg,importance);
1481 destport = tipc_nametbl_translate(name->type, name->instance, &destnode);
1482 msg_set_destnode(msg, destnode);
1483 msg_set_destport(msg, destport);
1485 if (likely(destport || destnode)) {
1487 if (likely(destnode == tipc_own_addr))
1488 return tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
1489 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
1491 if (likely(res != -ELINKCONG))
1493 if (port_unreliable(p_ptr)) {
1494 /* Just calculate msg length and return */
1495 return msg_calc_data_size(msg_sect, num_sect);
1499 return tipc_port_reject_sections(p_ptr, msg, msg_sect, num_sect,
1504 * tipc_send2name - send message sections to port name
1507 int tipc_send2name(u32 ref,
1508 struct tipc_name const *name,
1509 unsigned int domain,
1510 unsigned int num_sect,
1511 struct iovec const *msg_sect)
1513 struct tipc_portid orig;
1516 orig.node = tipc_own_addr;
1517 return tipc_forward2name(ref, name, domain, num_sect, msg_sect, &orig,
1518 TIPC_PORT_IMPORTANCE);
1522 * tipc_forward_buf2name - forward message buffer to port name
1525 int tipc_forward_buf2name(u32 ref,
1526 struct tipc_name const *name,
1528 struct sk_buff *buf,
1530 struct tipc_portid const *orig,
1531 unsigned int importance)
1534 struct tipc_msg *msg;
1535 u32 destnode = domain;
1539 p_ptr = (struct port *)tipc_ref_deref(ref);
1540 if (!p_ptr || p_ptr->publ.connected)
1543 msg = &p_ptr->publ.phdr;
1544 if (importance <= TIPC_CRITICAL_IMPORTANCE)
1545 msg_set_importance(msg, importance);
1546 msg_set_type(msg, TIPC_NAMED_MSG);
1547 msg_set_orignode(msg, orig->node);
1548 msg_set_origport(msg, orig->ref);
1549 msg_set_nametype(msg, name->type);
1550 msg_set_nameinst(msg, name->instance);
1551 msg_set_lookup_scope(msg, addr_scope(domain));
1552 msg_set_hdr_sz(msg, LONG_H_SIZE);
1553 msg_set_size(msg, LONG_H_SIZE + dsz);
1554 destport = tipc_nametbl_translate(name->type, name->instance, &destnode);
1555 msg_set_destnode(msg, destnode);
1556 msg_set_destport(msg, destport);
1557 msg_dbg(msg, "forw2name ==> ");
1558 if (skb_cow(buf, LONG_H_SIZE))
1560 skb_push(buf, LONG_H_SIZE);
1561 skb_copy_to_linear_data(buf, msg, LONG_H_SIZE);
1562 msg_dbg(buf_msg(buf),"PREP:");
1563 if (likely(destport || destnode)) {
1565 if (destnode == tipc_own_addr)
1566 return tipc_port_recv_msg(buf);
1567 res = tipc_send_buf_fast(buf, destnode);
1568 if (likely(res != -ELINKCONG))
1570 if (port_unreliable(p_ptr))
1574 return tipc_reject_msg(buf, TIPC_ERR_NO_NAME);
1578 * tipc_send_buf2name - send message buffer to port name
1581 int tipc_send_buf2name(u32 ref,
1582 struct tipc_name const *dest,
1584 struct sk_buff *buf,
1587 struct tipc_portid orig;
1590 orig.node = tipc_own_addr;
1591 return tipc_forward_buf2name(ref, dest, domain, buf, dsz, &orig,
1592 TIPC_PORT_IMPORTANCE);
1596 * tipc_forward2port - forward message sections to port identity
1599 int tipc_forward2port(u32 ref,
1600 struct tipc_portid const *dest,
1601 unsigned int num_sect,
1602 struct iovec const *msg_sect,
1603 struct tipc_portid const *orig,
1604 unsigned int importance)
1607 struct tipc_msg *msg;
1610 p_ptr = tipc_port_deref(ref);
1611 if (!p_ptr || p_ptr->publ.connected)
1614 msg = &p_ptr->publ.phdr;
1615 msg_set_type(msg, TIPC_DIRECT_MSG);
1616 msg_set_orignode(msg, orig->node);
1617 msg_set_origport(msg, orig->ref);
1618 msg_set_destnode(msg, dest->node);
1619 msg_set_destport(msg, dest->ref);
1620 msg_set_hdr_sz(msg, DIR_MSG_H_SIZE);
1621 if (importance <= TIPC_CRITICAL_IMPORTANCE)
1622 msg_set_importance(msg, importance);
1624 if (dest->node == tipc_own_addr)
1625 return tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
1626 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect, dest->node);
1627 if (likely(res != -ELINKCONG))
1629 if (port_unreliable(p_ptr)) {
1630 /* Just calculate msg length and return */
1631 return msg_calc_data_size(msg_sect, num_sect);
1637 * tipc_send2port - send message sections to port identity
1640 int tipc_send2port(u32 ref,
1641 struct tipc_portid const *dest,
1642 unsigned int num_sect,
1643 struct iovec const *msg_sect)
1645 struct tipc_portid orig;
1648 orig.node = tipc_own_addr;
1649 return tipc_forward2port(ref, dest, num_sect, msg_sect, &orig,
1650 TIPC_PORT_IMPORTANCE);
1654 * tipc_forward_buf2port - forward message buffer to port identity
1656 int tipc_forward_buf2port(u32 ref,
1657 struct tipc_portid const *dest,
1658 struct sk_buff *buf,
1660 struct tipc_portid const *orig,
1661 unsigned int importance)
1664 struct tipc_msg *msg;
1667 p_ptr = (struct port *)tipc_ref_deref(ref);
1668 if (!p_ptr || p_ptr->publ.connected)
1671 msg = &p_ptr->publ.phdr;
1672 msg_set_type(msg, TIPC_DIRECT_MSG);
1673 msg_set_orignode(msg, orig->node);
1674 msg_set_origport(msg, orig->ref);
1675 msg_set_destnode(msg, dest->node);
1676 msg_set_destport(msg, dest->ref);
1677 msg_set_hdr_sz(msg, DIR_MSG_H_SIZE);
1678 if (importance <= TIPC_CRITICAL_IMPORTANCE)
1679 msg_set_importance(msg, importance);
1680 msg_set_size(msg, DIR_MSG_H_SIZE + dsz);
1681 if (skb_cow(buf, DIR_MSG_H_SIZE))
1684 skb_push(buf, DIR_MSG_H_SIZE);
1685 skb_copy_to_linear_data(buf, msg, DIR_MSG_H_SIZE);
1686 msg_dbg(msg, "buf2port: ");
1688 if (dest->node == tipc_own_addr)
1689 return tipc_port_recv_msg(buf);
1690 res = tipc_send_buf_fast(buf, dest->node);
1691 if (likely(res != -ELINKCONG))
1693 if (port_unreliable(p_ptr))
1699 * tipc_send_buf2port - send message buffer to port identity
1702 int tipc_send_buf2port(u32 ref,
1703 struct tipc_portid const *dest,
1704 struct sk_buff *buf,
1707 struct tipc_portid orig;
1710 orig.node = tipc_own_addr;
1711 return tipc_forward_buf2port(ref, dest, buf, dsz, &orig,
1712 TIPC_PORT_IMPORTANCE);