Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 1 | /* |
Allan Stephens | 5b06c85c | 2008-05-19 13:30:13 -0700 | [diff] [blame] | 2 | * net/tipc/subscr.c: TIPC network topology service |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 3 | * |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 4 | * Copyright (c) 2000-2017, Ericsson AB |
Ying Xue | 13a2e89 | 2013-06-17 10:54:40 -0400 | [diff] [blame] | 5 | * Copyright (c) 2005-2007, 2010-2013, Wind River Systems |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 6 | * All rights reserved. |
| 7 | * |
Per Liden | 9ea1fd3 | 2006-01-11 13:30:43 +0100 | [diff] [blame] | 8 | * Redistribution and use in source and binary forms, with or without |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 9 | * modification, are permitted provided that the following conditions are met: |
| 10 | * |
Per Liden | 9ea1fd3 | 2006-01-11 13:30:43 +0100 | [diff] [blame] | 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. |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 19 | * |
Per Liden | 9ea1fd3 | 2006-01-11 13:30:43 +0100 | [diff] [blame] | 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. |
| 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 Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 34 | * POSSIBILITY OF SUCH DAMAGE. |
| 35 | */ |
| 36 | |
| 37 | #include "core.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 38 | #include "name_table.h" |
Allan Stephens | 5b06c85c | 2008-05-19 13:30:13 -0700 | [diff] [blame] | 39 | #include "subscr.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 40 | |
| 41 | /** |
Neil Horman | db5a753 | 2010-10-21 01:06:16 +0000 | [diff] [blame] | 42 | * htohl - convert value to endianness used by destination |
| 43 | * @in: value to convert |
| 44 | * @swap: non-zero if endianness must be reversed |
| 45 | * |
| 46 | * Returns converted value |
| 47 | */ |
Neil Horman | db5a753 | 2010-10-21 01:06:16 +0000 | [diff] [blame] | 48 | static u32 htohl(u32 in, int swap) |
| 49 | { |
| 50 | return swap ? swab32(in) : in; |
| 51 | } |
| 52 | |
Ying Xue | 57f1d18 | 2015-05-04 10:36:44 +0800 | [diff] [blame] | 53 | static void tipc_subscrp_send_event(struct tipc_subscription *sub, |
| 54 | u32 found_lower, u32 found_upper, |
| 55 | u32 event, u32 port_ref, u32 node) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 56 | { |
Ying Xue | a62fbcc | 2015-01-09 15:27:11 +0800 | [diff] [blame] | 57 | struct tipc_net *tn = net_generic(sub->net, tipc_net_id); |
Ying Xue | 13a2e89 | 2013-06-17 10:54:40 -0400 | [diff] [blame] | 58 | struct kvec msg_sect; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 59 | |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 60 | if (sub->inactive) |
| 61 | return; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 62 | msg_sect.iov_base = (void *)&sub->evt; |
| 63 | msg_sect.iov_len = sizeof(struct tipc_event); |
Neil Horman | db5a753 | 2010-10-21 01:06:16 +0000 | [diff] [blame] | 64 | sub->evt.event = htohl(event, sub->swap); |
| 65 | sub->evt.found_lower = htohl(found_lower, sub->swap); |
| 66 | sub->evt.found_upper = htohl(found_upper, sub->swap); |
| 67 | sub->evt.port.ref = htohl(port_ref, sub->swap); |
| 68 | sub->evt.port.node = htohl(node, sub->swap); |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 69 | tipc_conn_sendmsg(tn->topsrv, sub->conid, event, |
Ying Xue | a62fbcc | 2015-01-09 15:27:11 +0800 | [diff] [blame] | 70 | msg_sect.iov_base, msg_sect.iov_len); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | /** |
Ying Xue | 57f1d18 | 2015-05-04 10:36:44 +0800 | [diff] [blame] | 74 | * tipc_subscrp_check_overlap - test for subscription overlap with the |
| 75 | * given values |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 76 | * |
| 77 | * Returns 1 if there is overlap, otherwise 0. |
| 78 | */ |
Parthasarathy Bhuvaragan | a4273c7 | 2016-02-02 10:52:10 +0100 | [diff] [blame] | 79 | int tipc_subscrp_check_overlap(struct tipc_name_seq *seq, u32 found_lower, |
Ying Xue | 57f1d18 | 2015-05-04 10:36:44 +0800 | [diff] [blame] | 80 | u32 found_upper) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 81 | { |
Parthasarathy Bhuvaragan | a4273c7 | 2016-02-02 10:52:10 +0100 | [diff] [blame] | 82 | if (found_lower < seq->lower) |
| 83 | found_lower = seq->lower; |
| 84 | if (found_upper > seq->upper) |
| 85 | found_upper = seq->upper; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 86 | if (found_lower > found_upper) |
| 87 | return 0; |
| 88 | return 1; |
| 89 | } |
| 90 | |
Parthasarathy Bhuvaragan | a4273c7 | 2016-02-02 10:52:10 +0100 | [diff] [blame] | 91 | u32 tipc_subscrp_convert_seq_type(u32 type, int swap) |
| 92 | { |
| 93 | return htohl(type, swap); |
| 94 | } |
| 95 | |
| 96 | void tipc_subscrp_convert_seq(struct tipc_name_seq *in, int swap, |
| 97 | struct tipc_name_seq *out) |
| 98 | { |
| 99 | out->type = htohl(in->type, swap); |
| 100 | out->lower = htohl(in->lower, swap); |
| 101 | out->upper = htohl(in->upper, swap); |
| 102 | } |
| 103 | |
Ying Xue | 57f1d18 | 2015-05-04 10:36:44 +0800 | [diff] [blame] | 104 | void tipc_subscrp_report_overlap(struct tipc_subscription *sub, u32 found_lower, |
| 105 | u32 found_upper, u32 event, u32 port_ref, |
Jon Maloy | 232d07b | 2018-01-08 21:03:30 +0100 | [diff] [blame] | 106 | u32 node, u32 scope, int must) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 107 | { |
Jon Maloy | 232d07b | 2018-01-08 21:03:30 +0100 | [diff] [blame] | 108 | u32 filter = htohl(sub->evt.s.filter, sub->swap); |
Parthasarathy Bhuvaragan | a4273c7 | 2016-02-02 10:52:10 +0100 | [diff] [blame] | 109 | struct tipc_name_seq seq; |
| 110 | |
| 111 | tipc_subscrp_convert_seq(&sub->evt.s.seq, sub->swap, &seq); |
| 112 | if (!tipc_subscrp_check_overlap(&seq, found_lower, found_upper)) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 113 | return; |
Jon Maloy | 232d07b | 2018-01-08 21:03:30 +0100 | [diff] [blame] | 114 | if (!must && !(filter & TIPC_SUB_PORTS)) |
| 115 | return; |
| 116 | if (filter & TIPC_SUB_CLUSTER_SCOPE && scope == TIPC_NODE_SCOPE) |
| 117 | return; |
| 118 | if (filter & TIPC_SUB_NODE_SCOPE && scope != TIPC_NODE_SCOPE) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 119 | return; |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 120 | spin_lock(&sub->lock); |
| 121 | tipc_subscrp_send_event(sub, found_lower, found_upper, |
| 122 | event, port_ref, node); |
| 123 | spin_unlock(&sub->lock); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 124 | } |
| 125 | |
Kees Cook | 31b102b | 2017-10-30 14:06:45 -0700 | [diff] [blame] | 126 | static void tipc_subscrp_timeout(struct timer_list *t) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 127 | { |
Kees Cook | 31b102b | 2017-10-30 14:06:45 -0700 | [diff] [blame] | 128 | struct tipc_subscription *sub = from_timer(sub, t, timer); |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 129 | struct tipc_subscr *s = &sub->evt.s; |
Ying Xue | 557d054c | 2017-03-21 10:47:49 +0100 | [diff] [blame] | 130 | |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 131 | spin_lock(&sub->lock); |
| 132 | tipc_subscrp_send_event(sub, s->seq.lower, s->seq.upper, |
Ying Xue | 57f1d18 | 2015-05-04 10:36:44 +0800 | [diff] [blame] | 133 | TIPC_SUBSCR_TIMEOUT, 0, 0); |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 134 | sub->inactive = true; |
| 135 | spin_unlock(&sub->lock); |
Ying Xue | 00bc00a | 2015-05-04 10:36:46 +0800 | [diff] [blame] | 136 | } |
| 137 | |
Parthasarathy Bhuvaragan | d094c4d | 2017-01-24 13:00:44 +0100 | [diff] [blame] | 138 | static void tipc_subscrp_kref_release(struct kref *kref) |
| 139 | { |
| 140 | struct tipc_subscription *sub = container_of(kref, |
| 141 | struct tipc_subscription, |
| 142 | kref); |
| 143 | struct tipc_net *tn = net_generic(sub->net, tipc_net_id); |
Parthasarathy Bhuvaragan | d094c4d | 2017-01-24 13:00:44 +0100 | [diff] [blame] | 144 | |
Parthasarathy Bhuvaragan | d094c4d | 2017-01-24 13:00:44 +0100 | [diff] [blame] | 145 | atomic_dec(&tn->subscription_count); |
Parthasarathy Bhuvaragan | d094c4d | 2017-01-24 13:00:44 +0100 | [diff] [blame] | 146 | kfree(sub); |
Parthasarathy Bhuvaragan | d094c4d | 2017-01-24 13:00:44 +0100 | [diff] [blame] | 147 | } |
| 148 | |
Ying Xue | 7efea60 | 2017-03-28 12:28:28 +0200 | [diff] [blame] | 149 | void tipc_subscrp_put(struct tipc_subscription *subscription) |
Parthasarathy Bhuvaragan | d094c4d | 2017-01-24 13:00:44 +0100 | [diff] [blame] | 150 | { |
| 151 | kref_put(&subscription->kref, tipc_subscrp_kref_release); |
| 152 | } |
| 153 | |
Ying Xue | 7efea60 | 2017-03-28 12:28:28 +0200 | [diff] [blame] | 154 | void tipc_subscrp_get(struct tipc_subscription *subscription) |
Parthasarathy Bhuvaragan | d094c4d | 2017-01-24 13:00:44 +0100 | [diff] [blame] | 155 | { |
| 156 | kref_get(&subscription->kref); |
| 157 | } |
| 158 | |
Parthasarathy Bhuvaragan | 7c13c62 | 2016-02-02 10:52:11 +0100 | [diff] [blame] | 159 | static struct tipc_subscription *tipc_subscrp_create(struct net *net, |
| 160 | struct tipc_subscr *s, |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 161 | int conid, bool swap) |
Ying Xue | a62fbcc | 2015-01-09 15:27:11 +0800 | [diff] [blame] | 162 | { |
| 163 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Paul Gortmaker | fead390 | 2011-12-29 20:43:44 -0500 | [diff] [blame] | 164 | struct tipc_subscription *sub; |
Parthasarathy Bhuvaragan | c8beccc6 | 2016-02-02 10:52:12 +0100 | [diff] [blame] | 165 | u32 filter = htohl(s->filter, swap); |
Lijun Chen | eb40946 | 2006-10-16 21:59:42 -0700 | [diff] [blame] | 166 | |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 167 | /* Refuse subscription if global limit exceeded */ |
Ying Xue | a62fbcc | 2015-01-09 15:27:11 +0800 | [diff] [blame] | 168 | if (atomic_read(&tn->subscription_count) >= TIPC_MAX_SUBSCRIPTIONS) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 169 | pr_warn("Subscription rejected, limit reached (%u)\n", |
Ying Xue | 34f256c | 2012-08-16 12:09:13 +0000 | [diff] [blame] | 170 | TIPC_MAX_SUBSCRIPTIONS); |
Parthasarathy Bhuvaragan | 7c13c62 | 2016-02-02 10:52:11 +0100 | [diff] [blame] | 171 | return NULL; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | /* Allocate subscription object */ |
Allan Stephens | 28353e7 | 2008-05-19 13:29:47 -0700 | [diff] [blame] | 175 | sub = kmalloc(sizeof(*sub), GFP_ATOMIC); |
Allan Stephens | a10bd92 | 2006-06-25 23:52:17 -0700 | [diff] [blame] | 176 | if (!sub) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 177 | pr_warn("Subscription rejected, no memory\n"); |
Parthasarathy Bhuvaragan | 7c13c62 | 2016-02-02 10:52:11 +0100 | [diff] [blame] | 178 | return NULL; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 179 | } |
| 180 | |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 181 | /* Initialize subscription object */ |
Ying Xue | 4ac1c8d | 2015-01-09 15:27:09 +0800 | [diff] [blame] | 182 | sub->net = net; |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 183 | sub->conid = conid; |
| 184 | sub->inactive = false; |
Parthasarathy Bhuvaragan | 3086523 | 2016-02-02 10:52:09 +0100 | [diff] [blame] | 185 | if (((filter & TIPC_SUB_PORTS) && (filter & TIPC_SUB_SERVICE)) || |
Parthasarathy Bhuvaragan | a4273c7 | 2016-02-02 10:52:10 +0100 | [diff] [blame] | 186 | (htohl(s->seq.lower, swap) > htohl(s->seq.upper, swap))) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 187 | pr_warn("Subscription rejected, illegal request\n"); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 188 | kfree(sub); |
Parthasarathy Bhuvaragan | 7c13c62 | 2016-02-02 10:52:11 +0100 | [diff] [blame] | 189 | return NULL; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 190 | } |
Parthasarathy Bhuvaragan | 7c13c62 | 2016-02-02 10:52:11 +0100 | [diff] [blame] | 191 | |
| 192 | sub->swap = swap; |
| 193 | memcpy(&sub->evt.s, s, sizeof(*s)); |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 194 | spin_lock_init(&sub->lock); |
Parthasarathy Bhuvaragan | 7c13c62 | 2016-02-02 10:52:11 +0100 | [diff] [blame] | 195 | atomic_inc(&tn->subscription_count); |
Parthasarathy Bhuvaragan | d094c4d | 2017-01-24 13:00:44 +0100 | [diff] [blame] | 196 | kref_init(&sub->kref); |
Parthasarathy Bhuvaragan | 7c13c62 | 2016-02-02 10:52:11 +0100 | [diff] [blame] | 197 | return sub; |
| 198 | } |
| 199 | |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 200 | struct tipc_subscription *tipc_subscrp_subscribe(struct net *net, |
| 201 | struct tipc_subscr *s, |
| 202 | int conid, bool swap, |
| 203 | bool status) |
Parthasarathy Bhuvaragan | 7c13c62 | 2016-02-02 10:52:11 +0100 | [diff] [blame] | 204 | { |
Parthasarathy Bhuvaragan | 7c13c62 | 2016-02-02 10:52:11 +0100 | [diff] [blame] | 205 | struct tipc_subscription *sub = NULL; |
| 206 | u32 timeout; |
| 207 | |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 208 | sub = tipc_subscrp_create(net, s, conid, swap); |
Parthasarathy Bhuvaragan | 7c13c62 | 2016-02-02 10:52:11 +0100 | [diff] [blame] | 209 | if (!sub) |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 210 | return NULL; |
Parthasarathy Bhuvaragan | 7c13c62 | 2016-02-02 10:52:11 +0100 | [diff] [blame] | 211 | |
Jon Maloy | 8348500 | 2018-01-08 21:03:29 +0100 | [diff] [blame] | 212 | tipc_nametbl_subscribe(sub, status); |
Kees Cook | 31b102b | 2017-10-30 14:06:45 -0700 | [diff] [blame] | 213 | timer_setup(&sub->timer, tipc_subscrp_timeout, 0); |
Parthasarathy Bhuvaragan | d094c4d | 2017-01-24 13:00:44 +0100 | [diff] [blame] | 214 | timeout = htohl(sub->evt.s.timeout, swap); |
Parthasarathy Bhuvaragan | d094c4d | 2017-01-24 13:00:44 +0100 | [diff] [blame] | 215 | if (timeout != TIPC_WAIT_FOREVER) |
| 216 | mod_timer(&sub->timer, jiffies + msecs_to_jiffies(timeout)); |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 217 | return sub; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 218 | } |
| 219 | |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 220 | void tipc_sub_delete(struct tipc_subscription *sub) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 221 | { |
Jon Maloy | df79d04 | 2018-02-15 10:40:44 +0100 | [diff] [blame^] | 222 | tipc_nametbl_unsubscribe(sub); |
| 223 | if (sub->evt.s.timeout != TIPC_WAIT_FOREVER) |
| 224 | del_timer_sync(&sub->timer); |
| 225 | list_del(&sub->subscrp_list); |
| 226 | tipc_subscrp_put(sub); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 227 | } |
| 228 | |
Ying Xue | 57f1d18 | 2015-05-04 10:36:44 +0800 | [diff] [blame] | 229 | int tipc_topsrv_start(struct net *net) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 230 | { |
Ying Xue | a62fbcc | 2015-01-09 15:27:11 +0800 | [diff] [blame] | 231 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
| 232 | const char name[] = "topology_server"; |
| 233 | struct tipc_server *topsrv; |
| 234 | struct sockaddr_tipc *saddr; |
| 235 | |
| 236 | saddr = kzalloc(sizeof(*saddr), GFP_ATOMIC); |
| 237 | if (!saddr) |
| 238 | return -ENOMEM; |
| 239 | saddr->family = AF_TIPC; |
| 240 | saddr->addrtype = TIPC_ADDR_NAMESEQ; |
| 241 | saddr->addr.nameseq.type = TIPC_TOP_SRV; |
| 242 | saddr->addr.nameseq.lower = TIPC_TOP_SRV; |
| 243 | saddr->addr.nameseq.upper = TIPC_TOP_SRV; |
| 244 | saddr->scope = TIPC_NODE_SCOPE; |
| 245 | |
| 246 | topsrv = kzalloc(sizeof(*topsrv), GFP_ATOMIC); |
| 247 | if (!topsrv) { |
| 248 | kfree(saddr); |
| 249 | return -ENOMEM; |
| 250 | } |
| 251 | topsrv->net = net; |
| 252 | topsrv->saddr = saddr; |
Ying Xue | a62fbcc | 2015-01-09 15:27:11 +0800 | [diff] [blame] | 253 | topsrv->max_rcvbuf_size = sizeof(struct tipc_subscr); |
Ying Xue | a62fbcc | 2015-01-09 15:27:11 +0800 | [diff] [blame] | 254 | |
| 255 | strncpy(topsrv->name, name, strlen(name) + 1); |
| 256 | tn->topsrv = topsrv; |
| 257 | atomic_set(&tn->subscription_count, 0); |
| 258 | |
| 259 | return tipc_server_start(topsrv); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 260 | } |
| 261 | |
Ying Xue | 57f1d18 | 2015-05-04 10:36:44 +0800 | [diff] [blame] | 262 | void tipc_topsrv_stop(struct net *net) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 263 | { |
Ying Xue | a62fbcc | 2015-01-09 15:27:11 +0800 | [diff] [blame] | 264 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
| 265 | struct tipc_server *topsrv = tn->topsrv; |
| 266 | |
| 267 | tipc_server_stop(topsrv); |
| 268 | kfree(topsrv->saddr); |
| 269 | kfree(topsrv); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 270 | } |