4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License version 2 for more details (a copy is included
14 * in the LICENSE file that accompanied this code).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
20 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 * CA 95054 USA or visit www.sun.com if you need additional information or
27 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2012, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
37 #define DEBUG_SUBSYSTEM S_LNET
38 #include <lnet/lib-lnet.h>
40 /* tmp struct for parsing routes */
41 struct lnet_text_buf {
42 struct list_head ltb_list; /* stash on lists */
43 int ltb_size; /* allocated size */
44 char ltb_text[0]; /* text buffer */
47 static int lnet_tbnob = 0; /* track text buf allocation */
48 #define LNET_MAX_TEXTBUF_NOB (64<<10) /* bound allocation */
49 #define LNET_SINGLE_TEXTBUF_NOB (4<<10)
52 lnet_syntax(char *name, char *str, int offset, int width)
54 static char dots[LNET_SINGLE_TEXTBUF_NOB];
55 static char dashes[LNET_SINGLE_TEXTBUF_NOB];
57 memset(dots, '.', sizeof(dots));
58 dots[sizeof(dots)-1] = 0;
59 memset(dashes, '-', sizeof(dashes));
60 dashes[sizeof(dashes)-1] = 0;
62 LCONSOLE_ERROR_MSG(0x10f, "Error parsing '%s=\"%s\"'\n", name, str);
63 LCONSOLE_ERROR_MSG(0x110, "here...........%.*s..%.*s|%.*s|\n",
64 (int)strlen(name), dots, offset, dots,
65 (width < 1) ? 0 : width - 1, dashes);
82 lnet_net_unique(__u32 net, struct list_head *nilist)
84 struct list_head *tmp;
87 list_for_each(tmp, nilist) {
88 ni = list_entry(tmp, lnet_ni_t, ni_list);
90 if (LNET_NIDNET(ni->ni_nid) == net)
98 lnet_ni_free(struct lnet_ni *ni)
102 if (ni->ni_refs != NULL)
103 cfs_percpt_free(ni->ni_refs);
105 if (ni->ni_tx_queues != NULL)
106 cfs_percpt_free(ni->ni_tx_queues);
108 if (ni->ni_cpts != NULL)
109 cfs_expr_list_values_free(ni->ni_cpts, ni->ni_ncpts);
112 # ifdef HAVE_LIBPTHREAD
113 pthread_mutex_destroy(&ni->ni_lock);
116 for (i = 0; i < LNET_MAX_INTERFACES &&
117 ni->ni_interfaces[i] != NULL; i++) {
118 LIBCFS_FREE(ni->ni_interfaces[i],
119 strlen(ni->ni_interfaces[i]) + 1);
121 LIBCFS_FREE(ni, sizeof(*ni));
125 lnet_ni_alloc(__u32 net, struct cfs_expr_list *el, struct list_head *nilist)
127 struct lnet_tx_queue *tq;
132 if (!lnet_net_unique(net, nilist)) {
133 LCONSOLE_ERROR_MSG(0x111, "Duplicate network specified: %s\n",
134 libcfs_net2str(net));
138 LIBCFS_ALLOC(ni, sizeof(*ni));
140 CERROR("Out of memory creating network %s\n",
141 libcfs_net2str(net));
146 spin_lock_init(&ni->ni_lock);
148 # ifdef HAVE_LIBPTHREAD
149 pthread_mutex_init(&ni->ni_lock, NULL);
152 INIT_LIST_HEAD(&ni->ni_cptlist);
153 ni->ni_refs = cfs_percpt_alloc(lnet_cpt_table(),
154 sizeof(*ni->ni_refs[0]));
155 if (ni->ni_refs == NULL)
158 ni->ni_tx_queues = cfs_percpt_alloc(lnet_cpt_table(),
159 sizeof(*ni->ni_tx_queues[0]));
160 if (ni->ni_tx_queues == NULL)
163 cfs_percpt_for_each(tq, i, ni->ni_tx_queues)
164 INIT_LIST_HEAD(&tq->tq_delayed);
168 ni->ni_ncpts = LNET_CPT_NUMBER;
170 rc = cfs_expr_list_values(el, LNET_CPT_NUMBER, &ni->ni_cpts);
172 CERROR("Failed to set CPTs for NI %s: %d\n",
173 libcfs_net2str(net), rc);
177 LASSERT(rc <= LNET_CPT_NUMBER);
178 if (rc == LNET_CPT_NUMBER) {
179 LIBCFS_FREE(ni->ni_cpts, rc * sizeof(ni->ni_cpts[0]));
186 /* LND will fill in the address part of the NID */
187 ni->ni_nid = LNET_MKNID(net, 0);
188 ni->ni_last_alive = cfs_time_current_sec();
189 list_add_tail(&ni->ni_list, nilist);
197 lnet_parse_networks(struct list_head *nilist, char *networks)
199 struct cfs_expr_list *el = NULL;
200 int tokensize = strlen(networks) + 1;
208 if (strlen(networks) > LNET_SINGLE_TEXTBUF_NOB) {
209 /* _WAY_ conservative */
210 LCONSOLE_ERROR_MSG(0x112, "Can't parse networks: string too "
215 LIBCFS_ALLOC(tokens, tokensize);
216 if (tokens == NULL) {
217 CERROR("Can't allocate net tokens\n");
221 memcpy(tokens, networks, tokensize);
224 /* Add in the loopback network */
225 ni = lnet_ni_alloc(LNET_MKNET(LOLND, 0), NULL, nilist);
229 while (str != NULL && *str != 0) {
230 char *comma = strchr(str, ',');
231 char *bracket = strchr(str, '(');
232 char *square = strchr(str, '[');
237 /* NB we don't check interface conflicts here; it's the LNDs
238 * responsibility (if it cares at all) */
240 if (square != NULL && (comma == NULL || square < comma)) {
241 /* i.e: o2ib0(ib0)[1,2], number between square
242 * brackets are CPTs this NI needs to be bond */
243 if (bracket != NULL && bracket > square) {
248 tmp = strchr(square, ']');
254 rc = cfs_expr_list_parse(square, tmp - square + 1,
255 0, LNET_CPT_NUMBER - 1, &el);
261 while (square <= tmp)
265 if (bracket == NULL ||
266 (comma != NULL && comma < bracket)) {
268 /* no interface list specified */
272 net = libcfs_str2net(cfs_trimwhite(str));
274 if (net == LNET_NIDNET(LNET_NID_ANY)) {
275 LCONSOLE_ERROR_MSG(0x113, "Unrecognised network"
281 if (LNET_NETTYP(net) != LOLND && /* LO is implicit */
282 lnet_ni_alloc(net, el, nilist) == NULL)
286 cfs_expr_list_free(el);
295 net = libcfs_str2net(cfs_trimwhite(str));
296 if (net == LNET_NIDNET(LNET_NID_ANY)) {
302 ni = lnet_ni_alloc(net, el, nilist);
307 cfs_expr_list_free(el);
314 bracket = strchr(iface, ')');
315 if (bracket == NULL) {
322 comma = strchr(iface, ',');
326 iface = cfs_trimwhite(iface);
332 if (niface == LNET_MAX_INTERFACES) {
333 LCONSOLE_ERROR_MSG(0x115, "Too many interfaces "
335 libcfs_net2str(net));
339 /* Allocate a seperate piece of memory and copy
340 * into it the string, so we don't have
341 * a depencency on the tokens string. This way we
342 * can free the tokens at the end of the function.
343 * The newly allocated ni_interfaces[] can be
344 * freed when freeing the NI */
345 LIBCFS_ALLOC(ni->ni_interfaces[niface],
347 if (ni->ni_interfaces[niface] == NULL) {
348 CERROR("Can't allocate net interface name\n");
351 strncpy(ni->ni_interfaces[niface], iface,
355 } while (iface != NULL);
358 comma = strchr(bracket + 1, ',');
361 str = cfs_trimwhite(str);
370 str = cfs_trimwhite(str);
377 LASSERT(!list_empty(nilist));
379 LIBCFS_FREE(tokens, tokensize);
383 lnet_syntax("networks", networks, (int)(tmp - tokens), strlen(tmp));
385 while (!list_empty(nilist)) {
386 ni = list_entry(nilist->next, lnet_ni_t, ni_list);
388 list_del(&ni->ni_list);
393 cfs_expr_list_free(el);
395 LIBCFS_FREE(tokens, tokensize);
400 struct lnet_text_buf *lnet_new_text_buf(int str_len)
402 struct lnet_text_buf *ltb;
405 /* NB allocate space for the terminating 0 */
406 nob = offsetof(struct lnet_text_buf, ltb_text[str_len + 1]);
407 if (nob > LNET_SINGLE_TEXTBUF_NOB) {
408 /* _way_ conservative for "route net gateway..." */
409 CERROR("text buffer too big\n");
413 if (lnet_tbnob + nob > LNET_MAX_TEXTBUF_NOB) {
414 CERROR("Too many text buffers\n");
418 LIBCFS_ALLOC(ltb, nob);
423 ltb->ltb_text[0] = 0;
429 lnet_free_text_buf(struct lnet_text_buf *ltb)
431 lnet_tbnob -= ltb->ltb_size;
432 LIBCFS_FREE(ltb, ltb->ltb_size);
436 lnet_free_text_bufs(struct list_head *tbs)
438 struct lnet_text_buf *ltb;
440 while (!list_empty(tbs)) {
441 ltb = list_entry(tbs->next, struct lnet_text_buf, ltb_list);
443 list_del(<b->ltb_list);
444 lnet_free_text_buf(ltb);
449 lnet_print_text_bufs(struct list_head *tbs)
451 struct list_head *tmp;
452 struct lnet_text_buf *ltb;
454 list_for_each(tmp, tbs) {
455 ltb = list_entry(tmp, struct lnet_text_buf, ltb_list);
457 CDEBUG(D_WARNING, "%s\n", ltb->ltb_text);
460 CDEBUG(D_WARNING, "%d allocated\n", lnet_tbnob);
464 lnet_str2tbs_sep(struct list_head *tbs, char *str)
466 struct list_head pending;
470 struct lnet_text_buf *ltb;
472 INIT_LIST_HEAD(&pending);
474 /* Split 'str' into separate commands */
476 /* skip leading whitespace */
477 while (cfs_iswhite(*str))
480 /* scan for separator or comment */
481 for (sep = str; *sep != 0; sep++)
482 if (lnet_issep(*sep) || *sep == '#')
485 nob = (int)(sep - str);
487 ltb = lnet_new_text_buf(nob);
489 lnet_free_text_bufs(&pending);
493 for (i = 0; i < nob; i++)
494 if (cfs_iswhite(str[i]))
495 ltb->ltb_text[i] = ' ';
497 ltb->ltb_text[i] = str[i];
499 ltb->ltb_text[nob] = 0;
501 list_add_tail(<b->ltb_list, &pending);
505 /* scan for separator */
508 } while (*sep != 0 && !lnet_issep(*sep));
517 list_splice(&pending, tbs->prev);
522 lnet_expand1tb(struct list_head *list,
523 char *str, char *sep1, char *sep2,
524 char *item, int itemlen)
526 int len1 = (int)(sep1 - str);
527 int len2 = strlen(sep2 + 1);
528 struct lnet_text_buf *ltb;
530 LASSERT (*sep1 == '[');
531 LASSERT (*sep2 == ']');
533 ltb = lnet_new_text_buf(len1 + itemlen + len2);
537 memcpy(ltb->ltb_text, str, len1);
538 memcpy(<b->ltb_text[len1], item, itemlen);
539 memcpy(<b->ltb_text[len1+itemlen], sep2 + 1, len2);
540 ltb->ltb_text[len1 + itemlen + len2] = 0;
542 list_add_tail(<b->ltb_list, list);
547 lnet_str2tbs_expand(struct list_head *tbs, char *str)
550 struct list_head pending;
562 INIT_LIST_HEAD(&pending);
564 sep = strchr(str, '[');
565 if (sep == NULL) /* nothing to expand */
568 sep2 = strchr(sep, ']');
572 for (parsed = sep; parsed < sep2; parsed = enditem) {
575 while (enditem < sep2 && *enditem != ',')
578 if (enditem == parsed) /* no empty items */
581 if (sscanf(parsed, "%d-%d/%d%n", &lo, &hi, &stride, &scanned) < 3) {
583 if (sscanf(parsed, "%d-%d%n", &lo, &hi, &scanned) < 2) {
585 /* simple string enumeration */
586 if (lnet_expand1tb(&pending, str, sep, sep2,
587 parsed, (int)(enditem - parsed)) != 0)
596 /* range expansion */
598 if (enditem != parsed + scanned) /* no trailing junk */
601 if (hi < 0 || lo < 0 || stride < 0 || hi < lo ||
602 (hi - lo) % stride != 0)
605 for (i = lo; i <= hi; i += stride) {
607 snprintf(num, sizeof(num), "%d", i);
609 if (nob + 1 == sizeof(num))
612 if (lnet_expand1tb(&pending, str, sep, sep2,
618 list_splice(&pending, tbs->prev);
622 lnet_free_text_bufs(&pending);
627 lnet_parse_hops (char *str, unsigned int *hops)
629 int len = strlen(str);
632 return (sscanf(str, "%u%n", hops, &nob) >= 1 &&
634 *hops > 0 && *hops < 256);
637 #define LNET_PRIORITY_SEPARATOR (':')
640 lnet_parse_priority(char *str, unsigned int *priority, char **token)
646 sep = strchr(str, LNET_PRIORITY_SEPARATOR);
651 len = strlen(sep + 1);
653 if ((sscanf((sep+1), "%u%n", priority, &nob) < 1) || (len != nob)) {
654 /* Update the caller's token pointer so it treats the found
655 priority as the token to report in the error message. */
656 *token += sep - str + 1;
660 CDEBUG(D_NET, "gateway %s, priority %d, nob %d\n", str, *priority, nob);
663 * Change priority separator to \0 to be able to parse NID
670 lnet_parse_route (char *str, int *im_a_router)
672 /* static scratch buffer OK (single threaded) */
673 static char cmd[LNET_SINGLE_TEXTBUF_NOB];
675 struct list_head nets;
676 struct list_head gateways;
677 struct list_head *tmp1;
678 struct list_head *tmp2;
681 struct lnet_text_buf *ltb;
689 unsigned int priority = 0;
691 INIT_LIST_HEAD(&gateways);
692 INIT_LIST_HEAD(&nets);
694 /* save a copy of the string for error messages */
695 strncpy(cmd, str, sizeof(cmd));
696 cmd[sizeof(cmd) - 1] = '\0';
700 /* scan for token start */
701 while (cfs_iswhite(*sep))
704 if (ntokens < (got_hops ? 3 : 2))
712 /* scan for token end */
713 while (*sep != 0 && !cfs_iswhite(*sep))
719 tmp2 = &nets; /* expanding nets */
720 } else if (ntokens == 2 &&
721 lnet_parse_hops(token, &hops)) {
722 got_hops = 1; /* got a hop count */
725 tmp2 = &gateways; /* expanding gateways */
728 ltb = lnet_new_text_buf(strlen(token));
732 strcpy(ltb->ltb_text, token);
733 tmp1 = <b->ltb_list;
734 list_add_tail(tmp1, tmp2);
736 while (tmp1 != tmp2) {
737 ltb = list_entry(tmp1, struct lnet_text_buf, ltb_list);
739 rc = lnet_str2tbs_expand(tmp1->next, ltb->ltb_text);
745 if (rc > 0) { /* expanded! */
746 list_del(<b->ltb_list);
747 lnet_free_text_buf(ltb);
752 net = libcfs_str2net(ltb->ltb_text);
753 if (net == LNET_NIDNET(LNET_NID_ANY) ||
754 LNET_NETTYP(net) == LOLND)
757 rc = lnet_parse_priority(ltb->ltb_text,
762 nid = libcfs_str2nid(ltb->ltb_text);
763 if (nid == LNET_NID_ANY ||
764 LNET_NETTYP(LNET_NIDNET(nid)) == LOLND)
773 LASSERT(!list_empty(&nets));
774 LASSERT(!list_empty(&gateways));
776 list_for_each(tmp1, &nets) {
777 ltb = list_entry(tmp1, struct lnet_text_buf, ltb_list);
778 net = libcfs_str2net(ltb->ltb_text);
779 LASSERT (net != LNET_NIDNET(LNET_NID_ANY));
781 list_for_each(tmp2, &gateways) {
782 ltb = list_entry(tmp2, struct lnet_text_buf, ltb_list);
783 nid = libcfs_str2nid(ltb->ltb_text);
784 LASSERT(nid != LNET_NID_ANY);
786 if (lnet_islocalnid(nid)) {
791 rc = lnet_add_route(net, hops, nid, priority);
793 CERROR("Can't create route "
796 libcfs_nid2str(nid));
806 lnet_syntax("routes", cmd, (int)(token - str), strlen(token));
808 lnet_free_text_bufs(&nets);
809 lnet_free_text_bufs(&gateways);
814 lnet_parse_route_tbs(struct list_head *tbs, int *im_a_router)
816 struct lnet_text_buf *ltb;
818 while (!list_empty(tbs)) {
819 ltb = list_entry(tbs->next, struct lnet_text_buf, ltb_list);
821 if (lnet_parse_route(ltb->ltb_text, im_a_router) < 0) {
822 lnet_free_text_bufs(tbs);
826 list_del(<b->ltb_list);
827 lnet_free_text_buf(ltb);
834 lnet_parse_routes (char *routes, int *im_a_router)
836 struct list_head tbs;
841 INIT_LIST_HEAD(&tbs);
843 if (lnet_str2tbs_sep(&tbs, routes) < 0) {
844 CERROR("Error parsing routes\n");
847 rc = lnet_parse_route_tbs(&tbs, im_a_router);
850 LASSERT (lnet_tbnob == 0);
855 lnet_match_network_token(char *token, int len, __u32 *ipaddrs, int nip)
857 struct list_head list = LIST_HEAD_INIT(list);
861 rc = cfs_ip_addr_parse(token, len, &list);
865 for (rc = i = 0; !rc && i < nip; i++)
866 rc = cfs_ip_addr_match(ipaddrs[i], &list);
868 cfs_ip_addr_free(&list);
874 lnet_match_network_tokens(char *net_entry, __u32 *ipaddrs, int nip)
876 static char tokens[LNET_SINGLE_TEXTBUF_NOB];
886 LASSERT (strlen(net_entry) < sizeof(tokens));
888 /* work on a copy of the string */
889 strcpy(tokens, net_entry);
892 /* scan for token start */
893 while (cfs_iswhite(*sep))
900 /* scan for token end */
901 while (*sep != 0 && !cfs_iswhite(*sep))
906 if (ntokens++ == 0) {
913 rc = lnet_match_network_token(token, len, ipaddrs, nip);
915 lnet_syntax("ip2nets", net_entry,
916 (int)(token - tokens), len);
920 matched |= (rc != 0);
926 strcpy(net_entry, net); /* replace with matched net */
931 lnet_netspec2net(char *netspec)
933 char *bracket = strchr(netspec, '(');
939 net = libcfs_str2net(netspec);
948 lnet_splitnets(char *source, struct list_head *nets)
953 struct lnet_text_buf *tb;
954 struct lnet_text_buf *tb2;
960 LASSERT(!list_empty(nets));
961 LASSERT(nets->next == nets->prev); /* single entry */
963 tb = list_entry(nets->next, struct lnet_text_buf, ltb_list);
966 sep = strchr(tb->ltb_text, ',');
967 bracket = strchr(tb->ltb_text, '(');
972 /* netspec lists interfaces... */
974 offset2 = offset + (int)(bracket - tb->ltb_text);
975 len = strlen(bracket);
977 bracket = strchr(bracket + 1, ')');
979 if (bracket == NULL ||
980 !(bracket[1] == ',' || bracket[1] == 0)) {
981 lnet_syntax("ip2nets", source, offset2, len);
985 sep = (bracket[1] == 0) ? NULL : bracket + 1;
991 net = lnet_netspec2net(tb->ltb_text);
992 if (net == LNET_NIDNET(LNET_NID_ANY)) {
993 lnet_syntax("ip2nets", source, offset,
994 strlen(tb->ltb_text));
998 list_for_each(t, nets) {
999 tb2 = list_entry(t, struct lnet_text_buf, ltb_list);
1004 if (net == lnet_netspec2net(tb2->ltb_text)) {
1005 /* duplicate network */
1006 lnet_syntax("ip2nets", source, offset,
1007 strlen(tb->ltb_text));
1015 offset += (int)(sep - tb->ltb_text);
1017 tb2 = lnet_new_text_buf(len);
1021 strncpy(tb2->ltb_text, sep, len);
1022 tb2->ltb_text[len] = '\0';
1023 list_add_tail(&tb2->ltb_list, nets);
1030 lnet_match_networks (char **networksp, char *ip2nets, __u32 *ipaddrs, int nip)
1032 static char networks[LNET_SINGLE_TEXTBUF_NOB];
1033 static char source[LNET_SINGLE_TEXTBUF_NOB];
1035 struct list_head raw_entries;
1036 struct list_head matched_nets;
1037 struct list_head current_nets;
1038 struct list_head *t;
1039 struct list_head *t2;
1040 struct lnet_text_buf *tb;
1041 struct lnet_text_buf *tb2;
1049 INIT_LIST_HEAD(&raw_entries);
1050 if (lnet_str2tbs_sep(&raw_entries, ip2nets) < 0) {
1051 CERROR("Error parsing ip2nets\n");
1052 LASSERT (lnet_tbnob == 0);
1056 INIT_LIST_HEAD(&matched_nets);
1057 INIT_LIST_HEAD(¤t_nets);
1063 while (!list_empty(&raw_entries)) {
1064 tb = list_entry(raw_entries.next, struct lnet_text_buf,
1067 strncpy(source, tb->ltb_text, sizeof(source));
1068 source[sizeof(source) - 1] = '\0';
1070 /* replace ltb_text with the network(s) add on match */
1071 rc = lnet_match_network_tokens(tb->ltb_text, ipaddrs, nip);
1075 list_del(&tb->ltb_list);
1077 if (rc == 0) { /* no match */
1078 lnet_free_text_buf(tb);
1082 /* split into separate networks */
1083 INIT_LIST_HEAD(¤t_nets);
1084 list_add(&tb->ltb_list, ¤t_nets);
1085 rc = lnet_splitnets(source, ¤t_nets);
1090 list_for_each(t, ¤t_nets) {
1091 tb = list_entry(t, struct lnet_text_buf, ltb_list);
1092 net1 = lnet_netspec2net(tb->ltb_text);
1093 LASSERT(net1 != LNET_NIDNET(LNET_NID_ANY));
1095 list_for_each(t2, &matched_nets) {
1096 tb2 = list_entry(t2, struct lnet_text_buf,
1098 net2 = lnet_netspec2net(tb2->ltb_text);
1099 LASSERT(net2 != LNET_NIDNET(LNET_NID_ANY));
1112 lnet_free_text_bufs(¤t_nets);
1116 list_for_each_safe(t, t2, ¤t_nets) {
1117 tb = list_entry(t, struct lnet_text_buf, ltb_list);
1119 list_del(&tb->ltb_list);
1120 list_add_tail(&tb->ltb_list, &matched_nets);
1122 len += snprintf(networks + len, sizeof(networks) - len,
1123 "%s%s", (len == 0) ? "" : ",",
1126 if (len >= sizeof(networks)) {
1127 CERROR("Too many matched networks\n");
1137 lnet_free_text_bufs(&raw_entries);
1138 lnet_free_text_bufs(&matched_nets);
1139 lnet_free_text_bufs(¤t_nets);
1140 LASSERT (lnet_tbnob == 0);
1145 *networksp = networks;
1151 lnet_ipaddr_free_enumeration(__u32 *ipaddrs, int nip)
1153 LIBCFS_FREE(ipaddrs, nip * sizeof(*ipaddrs));
1157 lnet_ipaddr_enumerate (__u32 **ipaddrsp)
1165 int nif = libcfs_ipif_enumerate(&ifnames);
1172 LIBCFS_ALLOC(ipaddrs, nif * sizeof(*ipaddrs));
1173 if (ipaddrs == NULL) {
1174 CERROR("Can't allocate ipaddrs[%d]\n", nif);
1175 libcfs_ipif_free_enumeration(ifnames, nif);
1179 for (i = nip = 0; i < nif; i++) {
1180 if (!strcmp(ifnames[i], "lo"))
1183 rc = libcfs_ipif_query(ifnames[i], &up,
1184 &ipaddrs[nip], &netmask);
1186 CWARN("Can't query interface %s: %d\n",
1192 CWARN("Ignoring interface %s: it's down\n",
1200 libcfs_ipif_free_enumeration(ifnames, nif);
1203 *ipaddrsp = ipaddrs;
1206 LIBCFS_ALLOC(ipaddrs2, nip * sizeof(*ipaddrs2));
1207 if (ipaddrs2 == NULL) {
1208 CERROR("Can't allocate ipaddrs[%d]\n", nip);
1211 memcpy(ipaddrs2, ipaddrs,
1212 nip * sizeof(*ipaddrs));
1213 *ipaddrsp = ipaddrs2;
1217 lnet_ipaddr_free_enumeration(ipaddrs, nif);
1223 lnet_parse_ip2nets (char **networksp, char *ip2nets)
1226 int nip = lnet_ipaddr_enumerate(&ipaddrs);
1230 LCONSOLE_ERROR_MSG(0x117, "Error %d enumerating local IP "
1231 "interfaces for ip2nets to match\n", nip);
1236 LCONSOLE_ERROR_MSG(0x118, "No local IP interfaces "
1237 "for ip2nets to match\n");
1241 rc = lnet_match_networks(networksp, ip2nets, ipaddrs, nip);
1242 lnet_ipaddr_free_enumeration(ipaddrs, nip);
1245 LCONSOLE_ERROR_MSG(0x119, "Error %d parsing ip2nets\n", rc);
1250 LCONSOLE_ERROR_MSG(0x11a, "ip2nets does not match "
1251 "any local IP interfaces\n");
1259 lnet_set_ip_niaddr (lnet_ni_t *ni)
1261 __u32 net = LNET_NIDNET(ni->ni_nid);
1270 /* Convenience for LNDs that use the IP address of a local interface as
1271 * the local address part of their NID */
1273 if (ni->ni_interfaces[0] != NULL) {
1275 CLASSERT (LNET_MAX_INTERFACES > 1);
1277 if (ni->ni_interfaces[1] != NULL) {
1278 CERROR("Net %s doesn't support multiple interfaces\n",
1279 libcfs_net2str(net));
1283 rc = libcfs_ipif_query(ni->ni_interfaces[0],
1284 &up, &ip, &netmask);
1286 CERROR("Net %s can't query interface %s: %d\n",
1287 libcfs_net2str(net), ni->ni_interfaces[0], rc);
1292 CERROR("Net %s can't use interface %s: it's down\n",
1293 libcfs_net2str(net), ni->ni_interfaces[0]);
1297 ni->ni_nid = LNET_MKNID(net, ip);
1301 n = libcfs_ipif_enumerate(&names);
1303 CERROR("Net %s can't enumerate interfaces: %d\n",
1304 libcfs_net2str(net), n);
1308 for (i = 0; i < n; i++) {
1309 if (!strcmp(names[i], "lo")) /* skip the loopback IF */
1312 rc = libcfs_ipif_query(names[i], &up, &ip, &netmask);
1315 CWARN("Net %s can't query interface %s: %d\n",
1316 libcfs_net2str(net), names[i], rc);
1321 CWARN("Net %s ignoring interface %s (down)\n",
1322 libcfs_net2str(net), names[i]);
1326 libcfs_ipif_free_enumeration(names, n);
1327 ni->ni_nid = LNET_MKNID(net, ip);
1331 CERROR("Net %s can't find any interfaces\n", libcfs_net2str(net));
1332 libcfs_ipif_free_enumeration(names, n);
1335 EXPORT_SYMBOL(lnet_set_ip_niaddr);