1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37#include "core.h"
38#include "config.h"
39#include "dbg.h"
40#include "bearer.h"
41#include "link.h"
42#include "port.h"
43#include "discover.h"
44#include "bcast.h"
45
46#define MAX_ADDR_STR 32
47
48static struct media media_list[MAX_MEDIA];
49static u32 media_count = 0;
50
51struct bearer tipc_bearers[MAX_BEARERS];
52
53
54
55
56
57
58
59static int media_name_valid(const char *name)
60{
61 u32 len;
62
63 len = strlen(name);
64 if ((len + 1) > TIPC_MAX_MEDIA_NAME)
65 return 0;
66 return (strspn(name, tipc_alphabet) == len);
67}
68
69
70
71
72
73static struct media *media_find(const char *name)
74{
75 struct media *m_ptr;
76 u32 i;
77
78 for (i = 0, m_ptr = media_list; i < media_count; i++, m_ptr++) {
79 if (!strcmp(m_ptr->name, name))
80 return m_ptr;
81 }
82 return NULL;
83}
84
85
86
87
88
89
90
91int tipc_register_media(u32 media_type,
92 char *name,
93 int (*enable)(struct tipc_bearer *),
94 void (*disable)(struct tipc_bearer *),
95 int (*send_msg)(struct sk_buff *,
96 struct tipc_bearer *,
97 struct tipc_media_addr *),
98 char *(*addr2str)(struct tipc_media_addr *a,
99 char *str_buf, int str_size),
100 struct tipc_media_addr *bcast_addr,
101 const u32 bearer_priority,
102 const u32 link_tolerance,
103 const u32 send_window_limit)
104{
105 struct media *m_ptr;
106 u32 media_id;
107 u32 i;
108 int res = -EINVAL;
109
110 write_lock_bh(&tipc_net_lock);
111
112 if (tipc_mode != TIPC_NET_MODE) {
113 warn("Media <%s> rejected, not in networked mode yet\n", name);
114 goto exit;
115 }
116 if (!media_name_valid(name)) {
117 warn("Media <%s> rejected, illegal name\n", name);
118 goto exit;
119 }
120 if (!bcast_addr) {
121 warn("Media <%s> rejected, no broadcast address\n", name);
122 goto exit;
123 }
124 if ((bearer_priority < TIPC_MIN_LINK_PRI) &&
125 (bearer_priority > TIPC_MAX_LINK_PRI)) {
126 warn("Media <%s> rejected, illegal priority (%u)\n", name,
127 bearer_priority);
128 goto exit;
129 }
130 if ((link_tolerance < TIPC_MIN_LINK_TOL) ||
131 (link_tolerance > TIPC_MAX_LINK_TOL)) {
132 warn("Media <%s> rejected, illegal tolerance (%u)\n", name,
133 link_tolerance);
134 goto exit;
135 }
136
137 media_id = media_count++;
138 if (media_id >= MAX_MEDIA) {
139 warn("Media <%s> rejected, media limit reached (%u)\n", name,
140 MAX_MEDIA);
141 media_count--;
142 goto exit;
143 }
144 for (i = 0; i < media_id; i++) {
145 if (media_list[i].type_id == media_type) {
146 warn("Media <%s> rejected, duplicate type (%u)\n", name,
147 media_type);
148 media_count--;
149 goto exit;
150 }
151 if (!strcmp(name, media_list[i].name)) {
152 warn("Media <%s> rejected, duplicate name\n", name);
153 media_count--;
154 goto exit;
155 }
156 }
157
158 m_ptr = &media_list[media_id];
159 m_ptr->type_id = media_type;
160 m_ptr->send_msg = send_msg;
161 m_ptr->enable_bearer = enable;
162 m_ptr->disable_bearer = disable;
163 m_ptr->addr2str = addr2str;
164 memcpy(&m_ptr->bcast_addr, bcast_addr, sizeof(*bcast_addr));
165 m_ptr->bcast = 1;
166 strcpy(m_ptr->name, name);
167 m_ptr->priority = bearer_priority;
168 m_ptr->tolerance = link_tolerance;
169 m_ptr->window = send_window_limit;
170 dbg("Media <%s> registered\n", name);
171 res = 0;
172exit:
173 write_unlock_bh(&tipc_net_lock);
174 return res;
175}
176
177
178
179
180
181void tipc_media_addr_printf(struct print_buf *pb, struct tipc_media_addr *a)
182{
183 struct media *m_ptr;
184 u32 media_type;
185 u32 i;
186
187 media_type = ntohl(a->type);
188 for (i = 0, m_ptr = media_list; i < media_count; i++, m_ptr++) {
189 if (m_ptr->type_id == media_type)
190 break;
191 }
192
193 if ((i < media_count) && (m_ptr->addr2str != NULL)) {
194 char addr_str[MAX_ADDR_STR];
195
196 tipc_printf(pb, "%s(%s)", m_ptr->name,
197 m_ptr->addr2str(a, addr_str, sizeof(addr_str)));
198 } else {
199 unchar *addr = (unchar *)&a->dev_addr;
200
201 tipc_printf(pb, "UNKNOWN(%u)", media_type);
202 for (i = 0; i < (sizeof(*a) - sizeof(a->type)); i++) {
203 tipc_printf(pb, "-%02x", addr[i]);
204 }
205 }
206}
207
208
209
210
211
212struct sk_buff *tipc_media_get_names(void)
213{
214 struct sk_buff *buf;
215 struct media *m_ptr;
216 int i;
217
218 buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME));
219 if (!buf)
220 return NULL;
221
222 read_lock_bh(&tipc_net_lock);
223 for (i = 0, m_ptr = media_list; i < media_count; i++, m_ptr++) {
224 tipc_cfg_append_tlv(buf, TIPC_TLV_MEDIA_NAME, m_ptr->name,
225 strlen(m_ptr->name) + 1);
226 }
227 read_unlock_bh(&tipc_net_lock);
228 return buf;
229}
230
231
232
233
234
235
236
237
238
239static int bearer_name_validate(const char *name,
240 struct bearer_name *name_parts)
241{
242 char name_copy[TIPC_MAX_BEARER_NAME];
243 char *media_name;
244 char *if_name;
245 u32 media_len;
246 u32 if_len;
247
248
249
250 name_copy[TIPC_MAX_BEARER_NAME - 1] = 0;
251
252 strncpy(name_copy, name, TIPC_MAX_BEARER_NAME);
253 if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0)
254 return 0;
255
256
257
258 media_name = name_copy;
259 if ((if_name = strchr(media_name, ':')) == NULL)
260 return 0;
261 *(if_name++) = 0;
262 media_len = if_name - media_name;
263 if_len = strlen(if_name) + 1;
264
265
266
267 if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
268 (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME) ||
269 (strspn(media_name, tipc_alphabet) != (media_len - 1)) ||
270 (strspn(if_name, tipc_alphabet) != (if_len - 1)))
271 return 0;
272
273
274
275 if (name_parts) {
276 strcpy(name_parts->media_name, media_name);
277 strcpy(name_parts->if_name, if_name);
278 }
279 return 1;
280}
281
282
283
284
285
286static struct bearer *bearer_find(const char *name)
287{
288 struct bearer *b_ptr;
289 u32 i;
290
291 if (tipc_mode != TIPC_NET_MODE)
292 return NULL;
293
294 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
295 if (b_ptr->active && (!strcmp(b_ptr->publ.name, name)))
296 return b_ptr;
297 }
298 return NULL;
299}
300
301
302
303
304
305struct bearer *tipc_bearer_find_interface(const char *if_name)
306{
307 struct bearer *b_ptr;
308 char *b_if_name;
309 u32 i;
310
311 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
312 if (!b_ptr->active)
313 continue;
314 b_if_name = strchr(b_ptr->publ.name, ':') + 1;
315 if (!strcmp(b_if_name, if_name))
316 return b_ptr;
317 }
318 return NULL;
319}
320
321
322
323
324
325struct sk_buff *tipc_bearer_get_names(void)
326{
327 struct sk_buff *buf;
328 struct media *m_ptr;
329 struct bearer *b_ptr;
330 int i, j;
331
332 buf = tipc_cfg_reply_alloc(MAX_BEARERS * TLV_SPACE(TIPC_MAX_BEARER_NAME));
333 if (!buf)
334 return NULL;
335
336 read_lock_bh(&tipc_net_lock);
337 for (i = 0, m_ptr = media_list; i < media_count; i++, m_ptr++) {
338 for (j = 0; j < MAX_BEARERS; j++) {
339 b_ptr = &tipc_bearers[j];
340 if (b_ptr->active && (b_ptr->media == m_ptr)) {
341 tipc_cfg_append_tlv(buf, TIPC_TLV_BEARER_NAME,
342 b_ptr->publ.name,
343 strlen(b_ptr->publ.name) + 1);
344 }
345 }
346 }
347 read_unlock_bh(&tipc_net_lock);
348 return buf;
349}
350
351void tipc_bearer_add_dest(struct bearer *b_ptr, u32 dest)
352{
353 tipc_nmap_add(&b_ptr->nodes, dest);
354 tipc_disc_update_link_req(b_ptr->link_req);
355 tipc_bcbearer_sort();
356}
357
358void tipc_bearer_remove_dest(struct bearer *b_ptr, u32 dest)
359{
360 tipc_nmap_remove(&b_ptr->nodes, dest);
361 tipc_disc_update_link_req(b_ptr->link_req);
362 tipc_bcbearer_sort();
363}
364
365
366
367
368
369
370
371
372
373static int bearer_push(struct bearer *b_ptr)
374{
375 u32 res = 0;
376 struct link *ln, *tln;
377
378 if (b_ptr->publ.blocked)
379 return 0;
380
381 while (!list_empty(&b_ptr->cong_links) && (res != PUSH_FAILED)) {
382 list_for_each_entry_safe(ln, tln, &b_ptr->cong_links, link_list) {
383 res = tipc_link_push_packet(ln);
384 if (res == PUSH_FAILED)
385 break;
386 if (res == PUSH_FINISHED)
387 list_move_tail(&ln->link_list, &b_ptr->links);
388 }
389 }
390 return list_empty(&b_ptr->cong_links);
391}
392
393void tipc_bearer_lock_push(struct bearer *b_ptr)
394{
395 int res;
396
397 spin_lock_bh(&b_ptr->publ.lock);
398 res = bearer_push(b_ptr);
399 spin_unlock_bh(&b_ptr->publ.lock);
400 if (res)
401 tipc_bcbearer_push();
402}
403
404
405
406
407
408
409void tipc_continue(struct tipc_bearer *tb_ptr)
410{
411 struct bearer *b_ptr = (struct bearer *)tb_ptr;
412
413 spin_lock_bh(&b_ptr->publ.lock);
414 b_ptr->continue_count++;
415 if (!list_empty(&b_ptr->cong_links))
416 tipc_k_signal((Handler)tipc_bearer_lock_push, (unsigned long)b_ptr);
417 b_ptr->publ.blocked = 0;
418 spin_unlock_bh(&b_ptr->publ.lock);
419}
420
421
422
423
424
425
426
427
428
429static void tipc_bearer_schedule_unlocked(struct bearer *b_ptr, struct link *l_ptr)
430{
431 list_move_tail(&l_ptr->link_list, &b_ptr->cong_links);
432}
433
434
435
436
437
438
439
440
441
442void tipc_bearer_schedule(struct bearer *b_ptr, struct link *l_ptr)
443{
444 spin_lock_bh(&b_ptr->publ.lock);
445 tipc_bearer_schedule_unlocked(b_ptr, l_ptr);
446 spin_unlock_bh(&b_ptr->publ.lock);
447}
448
449
450
451
452
453
454
455int tipc_bearer_resolve_congestion(struct bearer *b_ptr, struct link *l_ptr)
456{
457 int res = 1;
458
459 if (list_empty(&b_ptr->cong_links))
460 return 1;
461 spin_lock_bh(&b_ptr->publ.lock);
462 if (!bearer_push(b_ptr)) {
463 tipc_bearer_schedule_unlocked(b_ptr, l_ptr);
464 res = 0;
465 }
466 spin_unlock_bh(&b_ptr->publ.lock);
467 return res;
468}
469
470
471
472
473
474
475int tipc_enable_bearer(const char *name, u32 bcast_scope, u32 priority)
476{
477 struct bearer *b_ptr;
478 struct media *m_ptr;
479 struct bearer_name b_name;
480 char addr_string[16];
481 u32 bearer_id;
482 u32 with_this_prio;
483 u32 i;
484 int res = -EINVAL;
485
486 if (tipc_mode != TIPC_NET_MODE) {
487 warn("Bearer <%s> rejected, not supported in standalone mode\n",
488 name);
489 return -ENOPROTOOPT;
490 }
491 if (!bearer_name_validate(name, &b_name)) {
492 warn("Bearer <%s> rejected, illegal name\n", name);
493 return -EINVAL;
494 }
495 if (!tipc_addr_domain_valid(bcast_scope) ||
496 !in_scope(bcast_scope, tipc_own_addr)) {
497 warn("Bearer <%s> rejected, illegal broadcast scope\n", name);
498 return -EINVAL;
499 }
500 if ((priority < TIPC_MIN_LINK_PRI ||
501 priority > TIPC_MAX_LINK_PRI) &&
502 (priority != TIPC_MEDIA_LINK_PRI)) {
503 warn("Bearer <%s> rejected, illegal priority\n", name);
504 return -EINVAL;
505 }
506
507 write_lock_bh(&tipc_net_lock);
508
509 m_ptr = media_find(b_name.media_name);
510 if (!m_ptr) {
511 warn("Bearer <%s> rejected, media <%s> not registered\n", name,
512 b_name.media_name);
513 goto failed;
514 }
515
516 if (priority == TIPC_MEDIA_LINK_PRI)
517 priority = m_ptr->priority;
518
519restart:
520 bearer_id = MAX_BEARERS;
521 with_this_prio = 1;
522 for (i = MAX_BEARERS; i-- != 0; ) {
523 if (!tipc_bearers[i].active) {
524 bearer_id = i;
525 continue;
526 }
527 if (!strcmp(name, tipc_bearers[i].publ.name)) {
528 warn("Bearer <%s> rejected, already enabled\n", name);
529 goto failed;
530 }
531 if ((tipc_bearers[i].priority == priority) &&
532 (++with_this_prio > 2)) {
533 if (priority-- == 0) {
534 warn("Bearer <%s> rejected, duplicate priority\n",
535 name);
536 goto failed;
537 }
538 warn("Bearer <%s> priority adjustment required %u->%u\n",
539 name, priority + 1, priority);
540 goto restart;
541 }
542 }
543 if (bearer_id >= MAX_BEARERS) {
544 warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
545 name, MAX_BEARERS);
546 goto failed;
547 }
548
549 b_ptr = &tipc_bearers[bearer_id];
550 memset(b_ptr, 0, sizeof(struct bearer));
551
552 strcpy(b_ptr->publ.name, name);
553 res = m_ptr->enable_bearer(&b_ptr->publ);
554 if (res) {
555 warn("Bearer <%s> rejected, enable failure (%d)\n", name, -res);
556 goto failed;
557 }
558
559 b_ptr->identity = bearer_id;
560 b_ptr->media = m_ptr;
561 b_ptr->net_plane = bearer_id + 'A';
562 b_ptr->active = 1;
563 b_ptr->detect_scope = bcast_scope;
564 b_ptr->priority = priority;
565 INIT_LIST_HEAD(&b_ptr->cong_links);
566 INIT_LIST_HEAD(&b_ptr->links);
567 if (m_ptr->bcast) {
568 b_ptr->link_req = tipc_disc_init_link_req(b_ptr, &m_ptr->bcast_addr,
569 bcast_scope, 2);
570 }
571 spin_lock_init(&b_ptr->publ.lock);
572 write_unlock_bh(&tipc_net_lock);
573 info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
574 name, addr_string_fill(addr_string, bcast_scope), priority);
575 return 0;
576failed:
577 write_unlock_bh(&tipc_net_lock);
578 return res;
579}
580
581
582
583
584
585
586int tipc_block_bearer(const char *name)
587{
588 struct bearer *b_ptr = NULL;
589 struct link *l_ptr;
590 struct link *temp_l_ptr;
591
592 read_lock_bh(&tipc_net_lock);
593 b_ptr = bearer_find(name);
594 if (!b_ptr) {
595 warn("Attempt to block unknown bearer <%s>\n", name);
596 read_unlock_bh(&tipc_net_lock);
597 return -EINVAL;
598 }
599
600 info("Blocking bearer <%s>\n", name);
601 spin_lock_bh(&b_ptr->publ.lock);
602 b_ptr->publ.blocked = 1;
603 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
604 struct tipc_node *n_ptr = l_ptr->owner;
605
606 spin_lock_bh(&n_ptr->lock);
607 tipc_link_reset(l_ptr);
608 spin_unlock_bh(&n_ptr->lock);
609 }
610 spin_unlock_bh(&b_ptr->publ.lock);
611 read_unlock_bh(&tipc_net_lock);
612 return 0;
613}
614
615
616
617
618
619
620
621static int bearer_disable(const char *name)
622{
623 struct bearer *b_ptr;
624 struct link *l_ptr;
625 struct link *temp_l_ptr;
626
627 b_ptr = bearer_find(name);
628 if (!b_ptr) {
629 warn("Attempt to disable unknown bearer <%s>\n", name);
630 return -EINVAL;
631 }
632
633 info("Disabling bearer <%s>\n", name);
634 tipc_disc_stop_link_req(b_ptr->link_req);
635 spin_lock_bh(&b_ptr->publ.lock);
636 b_ptr->link_req = NULL;
637 b_ptr->publ.blocked = 1;
638 if (b_ptr->media->disable_bearer) {
639 spin_unlock_bh(&b_ptr->publ.lock);
640 write_unlock_bh(&tipc_net_lock);
641 b_ptr->media->disable_bearer(&b_ptr->publ);
642 write_lock_bh(&tipc_net_lock);
643 spin_lock_bh(&b_ptr->publ.lock);
644 }
645 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
646 tipc_link_delete(l_ptr);
647 }
648 spin_unlock_bh(&b_ptr->publ.lock);
649 memset(b_ptr, 0, sizeof(struct bearer));
650 return 0;
651}
652
653int tipc_disable_bearer(const char *name)
654{
655 int res;
656
657 write_lock_bh(&tipc_net_lock);
658 res = bearer_disable(name);
659 write_unlock_bh(&tipc_net_lock);
660 return res;
661}
662
663
664
665void tipc_bearer_stop(void)
666{
667 u32 i;
668
669 for (i = 0; i < MAX_BEARERS; i++) {
670 if (tipc_bearers[i].active)
671 tipc_bearers[i].publ.blocked = 1;
672 }
673 for (i = 0; i < MAX_BEARERS; i++) {
674 if (tipc_bearers[i].active)
675 bearer_disable(tipc_bearers[i].publ.name);
676 }
677 media_count = 0;
678}
679
680
681