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.gnu.org/licenses/gpl-2.0.html
23 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2015, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
32 * lnet/lnet/nidstrings.c
34 * Author: Phil Schwan <phil@clusterfs.com>
37 #define DEBUG_SUBSYSTEM S_LNET
39 #include <libcfs/libcfs.h>
40 #include <uapi/linux/lnet/nidstr.h>
42 /* max value for numeric network address */
43 #define MAX_NUMERIC_VALUE 0xffffffff
45 #define IPSTRING_LENGTH 16
47 /* CAVEAT VENDITOR! Keep the canonical string representation of nets/nids
48 * consistent in all conversion functions. Some code fragments are copied
49 * around for the sake of clarity...
52 /* CAVEAT EMPTOR! Racey temporary buffer allocation!
53 * Choose the number of nidstrings to support the MAXIMUM expected number of
54 * concurrent users. If there are more, the returned string will be volatile.
55 * NB this number must allow for a process to be descheduled for a timeslice
56 * between getting its string and using it.
59 static char libcfs_nidstrings[LNET_NIDSTR_COUNT][LNET_NIDSTR_SIZE];
60 static int libcfs_nidstring_idx;
62 static DEFINE_SPINLOCK(libcfs_nidstring_lock);
64 static struct netstrfns *libcfs_namenum2netstrfns(const char *name);
67 libcfs_next_nidstring(void)
72 spin_lock_irqsave(&libcfs_nidstring_lock, flags);
74 str = libcfs_nidstrings[libcfs_nidstring_idx++];
75 if (libcfs_nidstring_idx == ARRAY_SIZE(libcfs_nidstrings))
76 libcfs_nidstring_idx = 0;
78 spin_unlock_irqrestore(&libcfs_nidstring_lock, flags);
81 EXPORT_SYMBOL(libcfs_next_nidstring);
84 * Nid range list syntax.
87 * <nidlist> :== <nidrange> [ ' ' <nidrange> ]
88 * <nidrange> :== <addrrange> '@' <net>
89 * <addrrange> :== '*' |
92 * <ipaddr_range> :== <cfs_expr_list>.<cfs_expr_list>.<cfs_expr_list>.
94 * <cfs_expr_list> :== <number> |
96 * <expr_list> :== '[' <range_expr> [ ',' <range_expr>] ']'
97 * <range_expr> :== <number> |
98 * <number> '-' <number> |
99 * <number> '-' <number> '/' <number>
100 * <net> :== <netname> | <netname><number>
101 * <netname> :== "lo" | "tcp" | "o2ib" | "cib" | "openib" | "iib" |
102 * "vib" | "ra" | "elan" | "mx" | "ptl"
107 * Structure to represent \<nidrange\> token of the syntax.
109 * One of this is created for each \<net\> parsed.
113 * Link to list of this structures which is built on nid range
116 struct list_head nr_link;
118 * List head for addrrange::ar_link.
120 struct list_head nr_addrranges;
122 * Flag indicating that *@<net> is found.
126 * Pointer to corresponding element of libcfs_netstrfns.
128 struct netstrfns *nr_netstrfns;
130 * Number of network. E.g. 5 if \<net\> is "elan5".
136 * Structure to represent \<addrrange\> token of the syntax.
140 * Link to nidrange::nr_addrranges.
142 struct list_head ar_link;
144 * List head for cfs_expr_list::el_list.
146 struct list_head ar_numaddr_ranges;
150 * Parses \<addrrange\> token on the syntax.
152 * Allocates struct addrrange and links to \a nidrange via
153 * (nidrange::nr_addrranges)
155 * \retval 0 if \a src parses to '*' | \<ipaddr_range\> | \<cfs_expr_list\>
156 * \retval -errno otherwise
159 parse_addrange(const struct cfs_lstr *src, struct nidrange *nidrange)
161 struct addrrange *addrrange;
163 if (src->ls_len == 1 && src->ls_str[0] == '*') {
164 nidrange->nr_all = 1;
168 LIBCFS_ALLOC(addrrange, sizeof(struct addrrange));
169 if (addrrange == NULL)
171 list_add_tail(&addrrange->ar_link, &nidrange->nr_addrranges);
172 INIT_LIST_HEAD(&addrrange->ar_numaddr_ranges);
174 return nidrange->nr_netstrfns->nf_parse_addrlist(src->ls_str,
176 &addrrange->ar_numaddr_ranges);
180 * Finds or creates struct nidrange.
182 * Checks if \a src is a valid network name, looks for corresponding
183 * nidrange on the ist of nidranges (\a nidlist), creates new struct
184 * nidrange if it is not found.
186 * \retval pointer to struct nidrange matching network specified via \a src
187 * \retval NULL if \a src does not match any network
189 static struct nidrange *
190 add_nidrange(const struct cfs_lstr *src,
191 struct list_head *nidlist)
193 struct netstrfns *nf;
198 if (src->ls_len >= LNET_NIDSTR_SIZE)
201 nf = libcfs_namenum2netstrfns(src->ls_str);
204 endlen = src->ls_len - strlen(nf->nf_name);
206 /* network name only, e.g. "elan" or "tcp" */
209 /* e.g. "elan25" or "tcp23", refuse to parse if
210 * network name is not appended with decimal or
211 * hexadecimal number */
212 if (!cfs_str2num_check(src->ls_str + strlen(nf->nf_name),
213 endlen, &netnum, 0, MAX_NUMERIC_VALUE))
217 list_for_each_entry(nr, nidlist, nr_link) {
218 if (nr->nr_netstrfns != nf)
220 if (nr->nr_netnum != netnum)
225 LIBCFS_ALLOC(nr, sizeof(struct nidrange));
228 list_add_tail(&nr->nr_link, nidlist);
229 INIT_LIST_HEAD(&nr->nr_addrranges);
230 nr->nr_netstrfns = nf;
232 nr->nr_netnum = netnum;
238 * Parses \<nidrange\> token of the syntax.
240 * \retval 1 if \a src parses to \<addrrange\> '@' \<net\>
241 * \retval 0 otherwise
244 parse_nidrange(struct cfs_lstr *src, struct list_head *nidlist)
246 struct cfs_lstr addrrange;
250 if (cfs_gettok(src, '@', &addrrange) == 0)
253 if (cfs_gettok(src, '@', &net) == 0 || src->ls_str != NULL)
256 nr = add_nidrange(&net, nidlist);
260 if (parse_addrange(&addrrange, nr) != 0)
269 * Frees addrrange structures of \a list.
271 * For each struct addrrange structure found on \a list it frees
272 * cfs_expr_list list attached to it and frees the addrrange itself.
277 free_addrranges(struct list_head *list)
279 while (!list_empty(list)) {
280 struct addrrange *ar;
282 ar = list_entry(list->next, struct addrrange, ar_link);
284 cfs_expr_list_free_list(&ar->ar_numaddr_ranges);
285 list_del(&ar->ar_link);
286 LIBCFS_FREE(ar, sizeof(struct addrrange));
291 * Frees nidrange strutures of \a list.
293 * For each struct nidrange structure found on \a list it frees
294 * addrrange list attached to it and frees the nidrange itself.
299 cfs_free_nidlist(struct list_head *list)
301 struct list_head *pos, *next;
304 list_for_each_safe(pos, next, list) {
305 nr = list_entry(pos, struct nidrange, nr_link);
306 free_addrranges(&nr->nr_addrranges);
308 LIBCFS_FREE(nr, sizeof(struct nidrange));
311 EXPORT_SYMBOL(cfs_free_nidlist);
314 * Parses nid range list.
316 * Parses with rigorous syntax and overflow checking \a str into
317 * \<nidrange\> [ ' ' \<nidrange\> ], compiles \a str into set of
318 * structures and links that structure to \a nidlist. The resulting
319 * list can be used to match a NID againts set of NIDS defined by \a
323 * \retval 1 on success
324 * \retval 0 otherwise
327 cfs_parse_nidlist(char *str, int len, struct list_head *nidlist)
335 INIT_LIST_HEAD(nidlist);
337 rc = cfs_gettok(&src, ' ', &res);
339 cfs_free_nidlist(nidlist);
342 rc = parse_nidrange(&res, nidlist);
344 cfs_free_nidlist(nidlist);
350 EXPORT_SYMBOL(cfs_parse_nidlist);
353 * Matches a nid (\a nid) against the compiled list of nidranges (\a nidlist).
355 * \see cfs_parse_nidlist()
358 * \retval 0 otherwises
360 int cfs_match_nid(lnet_nid_t nid, struct list_head *nidlist)
363 struct addrrange *ar;
365 list_for_each_entry(nr, nidlist, nr_link) {
366 if (nr->nr_netstrfns->nf_type != LNET_NETTYP(LNET_NIDNET(nid)))
368 if (nr->nr_netnum != LNET_NETNUM(LNET_NIDNET(nid)))
372 list_for_each_entry(ar, &nr->nr_addrranges, ar_link)
373 if (nr->nr_netstrfns->nf_match_addr(LNET_NIDADDR(nid),
374 &ar->ar_numaddr_ranges))
379 EXPORT_SYMBOL(cfs_match_nid);
382 * Print the network part of the nidrange \a nr into the specified \a buffer.
384 * \retval number of characters written
387 cfs_print_network(char *buffer, int count, struct nidrange *nr)
389 struct netstrfns *nf = nr->nr_netstrfns;
391 if (nr->nr_netnum == 0)
392 return scnprintf(buffer, count, "@%s", nf->nf_name);
394 return scnprintf(buffer, count, "@%s%u",
395 nf->nf_name, nr->nr_netnum);
399 * Print a list of addrrange (\a addrranges) into the specified \a buffer.
400 * At max \a count characters can be printed into \a buffer.
402 * \retval number of characters written
405 cfs_print_addrranges(char *buffer, int count, struct list_head *addrranges,
409 struct addrrange *ar;
410 struct netstrfns *nf = nr->nr_netstrfns;
412 list_for_each_entry(ar, addrranges, ar_link) {
414 i += scnprintf(buffer + i, count - i, " ");
415 i += nf->nf_print_addrlist(buffer + i, count - i,
416 &ar->ar_numaddr_ranges);
417 i += cfs_print_network(buffer + i, count - i, nr);
423 * Print a list of nidranges (\a nidlist) into the specified \a buffer.
424 * At max \a count characters can be printed into \a buffer.
425 * Nidranges are separated by a space character.
427 * \retval number of characters written
429 int cfs_print_nidlist(char *buffer, int count, struct list_head *nidlist)
437 list_for_each_entry(nr, nidlist, nr_link) {
439 i += scnprintf(buffer + i, count - i, " ");
441 if (nr->nr_all != 0) {
442 LASSERT(list_empty(&nr->nr_addrranges));
443 i += scnprintf(buffer + i, count - i, "*");
444 i += cfs_print_network(buffer + i, count - i, nr);
446 i += cfs_print_addrranges(buffer + i, count - i,
447 &nr->nr_addrranges, nr);
452 EXPORT_SYMBOL(cfs_print_nidlist);
455 * Determines minimum and maximum addresses for a single
456 * numeric address range
459 * \param[out] *min_nid __u32 representation of min NID
460 * \param[out] *max_nid __u32 representation of max NID
461 * \retval -EINVAL unsupported LNET range
462 * \retval -ERANGE non-contiguous LNET range
464 static int cfs_ip_ar_min_max(struct addrrange *ar, __u32 *min_nid,
467 struct cfs_expr_list *expr_list;
468 struct cfs_range_expr *range;
469 unsigned int min_ip[4] = {0};
470 unsigned int max_ip[4] = {0};
472 bool expect_full_octet = false;
474 list_for_each_entry(expr_list, &ar->ar_numaddr_ranges, el_link) {
477 list_for_each_entry(range, &expr_list->el_exprs, re_link) {
478 /* XXX: add support for multiple & non-contig. re's */
482 /* if a previous octet was ranged, then all remaining
483 * octets must be full for contiguous range */
484 if (expect_full_octet && (range->re_lo != 0 ||
485 range->re_hi != 255))
488 if (range->re_stride != 1)
491 if (range->re_lo > range->re_hi)
494 if (range->re_lo != range->re_hi)
495 expect_full_octet = true;
497 min_ip[cur_octet] = range->re_lo;
498 max_ip[cur_octet] = range->re_hi;
507 *min_nid = ((min_ip[0] << 24) | (min_ip[1] << 16) |
508 (min_ip[2] << 8) | min_ip[3]);
511 *max_nid = ((max_ip[0] << 24) | (max_ip[1] << 16) |
512 (max_ip[2] << 8) | max_ip[3]);
518 * Determines minimum and maximum addresses for a single
519 * numeric address range
522 * \param[out] *min_nid __u32 representation of min NID
523 * \param[out] *max_nid __u32 representation of max NID
524 * \retval -EINVAL unsupported LNET range
526 static int cfs_num_ar_min_max(struct addrrange *ar, __u32 *min_nid,
529 struct cfs_expr_list *el;
530 struct cfs_range_expr *re;
531 unsigned int min_addr = 0;
532 unsigned int max_addr = 0;
534 list_for_each_entry(el, &ar->ar_numaddr_ranges, el_link) {
537 list_for_each_entry(re, &el->el_exprs, re_link) {
540 if (re->re_lo > re->re_hi)
543 if (re->re_lo < min_addr || min_addr == 0)
544 min_addr = re->re_lo;
545 if (re->re_hi > max_addr)
546 max_addr = re->re_hi;
561 * Takes a linked list of nidrange expressions, determines the minimum
562 * and maximum nid and creates appropriate nid structures
564 * \param[out] *min_nid string representation of min NID
565 * \param[out] *max_nid string representation of max NID
566 * \retval -EINVAL unsupported LNET range
567 * \retval -ERANGE non-contiguous LNET range
569 int cfs_nidrange_find_min_max(struct list_head *nidlist, char *min_nid,
570 char *max_nid, size_t nidstr_length)
572 struct nidrange *first_nidrange;
574 struct netstrfns *nf;
578 char min_addr_str[IPSTRING_LENGTH];
579 char max_addr_str[IPSTRING_LENGTH];
582 first_nidrange = list_entry(nidlist->next, struct nidrange, nr_link);
584 netnum = first_nidrange->nr_netnum;
585 nf = first_nidrange->nr_netstrfns;
586 lndname = nf->nf_name;
588 rc = nf->nf_min_max(nidlist, &min_addr, &max_addr);
592 nf->nf_addr2str(min_addr, min_addr_str, sizeof(min_addr_str));
593 nf->nf_addr2str(max_addr, max_addr_str, sizeof(max_addr_str));
595 snprintf(min_nid, nidstr_length, "%s@%s%d", min_addr_str, lndname,
597 snprintf(max_nid, nidstr_length, "%s@%s%d", max_addr_str, lndname,
602 EXPORT_SYMBOL(cfs_nidrange_find_min_max);
605 * Determines the min and max NID values for num LNDs
608 * \param[out] *min_nid if provided, returns string representation of min NID
609 * \param[out] *max_nid if provided, returns string representation of max NID
610 * \retval -EINVAL unsupported LNET range
611 * \retval -ERANGE non-contiguous LNET range
613 static int cfs_num_min_max(struct list_head *nidlist, __u32 *min_nid,
617 struct addrrange *ar;
618 unsigned int tmp_min_addr = 0;
619 unsigned int tmp_max_addr = 0;
620 unsigned int min_addr = 0;
621 unsigned int max_addr = 0;
622 int nidlist_count = 0;
625 list_for_each_entry(nr, nidlist, nr_link) {
626 if (nidlist_count > 0)
629 list_for_each_entry(ar, &nr->nr_addrranges, ar_link) {
630 rc = cfs_num_ar_min_max(ar, &tmp_min_addr,
635 if (tmp_min_addr < min_addr || min_addr == 0)
636 min_addr = tmp_min_addr;
637 if (tmp_max_addr > max_addr)
638 max_addr = tmp_min_addr;
650 * Takes an nidlist and determines the minimum and maximum
654 * \param[out] *min_nid if provided, returns string representation of min NID
655 * \param[out] *max_nid if provided, returns string representation of max NID
656 * \retval -EINVAL unsupported LNET range
657 * \retval -ERANGE non-contiguous LNET range
659 static int cfs_ip_min_max(struct list_head *nidlist, __u32 *min_nid,
663 struct addrrange *ar;
664 __u32 tmp_min_ip_addr = 0;
665 __u32 tmp_max_ip_addr = 0;
666 __u32 min_ip_addr = 0;
667 __u32 max_ip_addr = 0;
668 int nidlist_count = 0;
671 list_for_each_entry(nr, nidlist, nr_link) {
672 if (nidlist_count > 0)
677 max_ip_addr = 0xffffffff;
681 list_for_each_entry(ar, &nr->nr_addrranges, ar_link) {
682 rc = cfs_ip_ar_min_max(ar, &tmp_min_ip_addr,
687 if (tmp_min_ip_addr < min_ip_addr || min_ip_addr == 0)
688 min_ip_addr = tmp_min_ip_addr;
689 if (tmp_max_ip_addr > max_ip_addr)
690 max_ip_addr = tmp_max_ip_addr;
697 *max_nid = max_ip_addr;
699 *min_nid = min_ip_addr;
705 libcfs_lo_str2addr(const char *str, int nob, __u32 *addr)
712 libcfs_ip_addr2str(__u32 addr, char *str, size_t size)
714 snprintf(str, size, "%u.%u.%u.%u",
715 (addr >> 24) & 0xff, (addr >> 16) & 0xff,
716 (addr >> 8) & 0xff, addr & 0xff);
719 /* CAVEAT EMPTOR XscanfX
720 * I use "%n" at the end of a sscanf format to detect trailing junk. However
721 * sscanf may return immediately if it sees the terminating '0' in a string, so
722 * I initialise the %n variable to the expected length. If sscanf sets it;
723 * fine, if it doesn't, then the scan ended at the end of the string, which is
726 libcfs_ip_str2addr(const char *str, int nob, __u32 *addr)
732 int n = nob; /* XscanfX */
735 if (sscanf(str, "%u.%u.%u.%u%n", &a, &b, &c, &d, &n) >= 4 &&
737 (a & ~0xff) == 0 && (b & ~0xff) == 0 &&
738 (c & ~0xff) == 0 && (d & ~0xff) == 0) {
739 *addr = ((a<<24)|(b<<16)|(c<<8)|d);
745 /* Used by lnet/config.c so it can't be static */
747 cfs_ip_addr_parse(char *str, int len, struct list_head *list)
749 struct cfs_expr_list *el;
758 while (src.ls_str != NULL) {
761 if (!cfs_gettok(&src, '.', &res)) {
766 rc = cfs_expr_list_parse(res.ls_str, res.ls_len, 0, 255, &el);
770 list_add_tail(&el->el_link, list);
779 cfs_expr_list_free_list(list);
785 libcfs_ip_addr_range_print(char *buffer, int count, struct list_head *list)
788 struct cfs_expr_list *el;
790 list_for_each_entry(el, list, el_link) {
793 i += scnprintf(buffer + i, count - i, ".");
794 i += cfs_expr_list_print(buffer + i, count - i, el);
800 * Matches address (\a addr) against address set encoded in \a list.
802 * \retval 1 if \a addr matches
803 * \retval 0 otherwise
806 cfs_ip_addr_match(__u32 addr, struct list_head *list)
808 struct cfs_expr_list *el;
811 list_for_each_entry_reverse(el, list, el_link) {
812 if (!cfs_expr_list_match(addr & 0xff, el))
822 * Print the network part of the nidrange \a nr into the specified \a buffer.
824 * \retval number of characters written
827 libcfs_decnum_addr2str(__u32 addr, char *str, size_t size)
829 snprintf(str, size, "%u", addr);
833 libcfs_num_str2addr(const char *str, int nob, __u32 *addr)
838 if (sscanf(str, "0x%x%n", addr, &n) >= 1 && n == nob)
842 if (sscanf(str, "0X%x%n", addr, &n) >= 1 && n == nob)
846 if (sscanf(str, "%u%n", addr, &n) >= 1 && n == nob)
853 * Nf_parse_addrlist method for networks using numeric addresses.
855 * Examples of such networks are gm and elan.
857 * \retval 0 if \a str parsed to numeric address
858 * \retval errno otherwise
861 libcfs_num_parse(char *str, int len, struct list_head *list)
863 struct cfs_expr_list *el;
866 rc = cfs_expr_list_parse(str, len, 0, MAX_NUMERIC_VALUE, &el);
868 list_add_tail(&el->el_link, list);
874 libcfs_num_addr_range_print(char *buffer, int count, struct list_head *list)
877 struct cfs_expr_list *el;
879 list_for_each_entry(el, list, el_link) {
881 i += cfs_expr_list_print(buffer + i, count - i, el);
887 * Nf_match_addr method for networks using numeric addresses
890 * \retval 0 otherwise
893 libcfs_num_match(__u32 addr, struct list_head *numaddr)
895 struct cfs_expr_list *el;
897 LASSERT(!list_empty(numaddr));
898 el = list_entry(numaddr->next, struct cfs_expr_list, el_link);
900 return cfs_expr_list_match(addr, el);
903 static struct netstrfns libcfs_netstrfns[] = {
906 .nf_modname = "klolnd",
907 .nf_addr2str = libcfs_decnum_addr2str,
908 .nf_str2addr = libcfs_lo_str2addr,
909 .nf_parse_addrlist = libcfs_num_parse,
910 .nf_print_addrlist = libcfs_num_addr_range_print,
911 .nf_match_addr = libcfs_num_match,
912 .nf_min_max = cfs_num_min_max },
913 { .nf_type = SOCKLND,
915 .nf_modname = "ksocklnd",
916 .nf_addr2str = libcfs_ip_addr2str,
917 .nf_str2addr = libcfs_ip_str2addr,
918 .nf_parse_addrlist = cfs_ip_addr_parse,
919 .nf_print_addrlist = libcfs_ip_addr_range_print,
920 .nf_match_addr = cfs_ip_addr_match,
921 .nf_min_max = cfs_ip_min_max },
922 { .nf_type = O2IBLND,
924 .nf_modname = "ko2iblnd",
925 .nf_addr2str = libcfs_ip_addr2str,
926 .nf_str2addr = libcfs_ip_str2addr,
927 .nf_parse_addrlist = cfs_ip_addr_parse,
928 .nf_print_addrlist = libcfs_ip_addr_range_print,
929 .nf_match_addr = cfs_ip_addr_match,
930 .nf_min_max = cfs_ip_min_max },
933 .nf_modname = "kgnilnd",
934 .nf_addr2str = libcfs_decnum_addr2str,
935 .nf_str2addr = libcfs_num_str2addr,
936 .nf_parse_addrlist = libcfs_num_parse,
937 .nf_print_addrlist = libcfs_num_addr_range_print,
938 .nf_match_addr = libcfs_num_match,
939 .nf_min_max = cfs_num_min_max },
940 { .nf_type = GNIIPLND,
942 .nf_modname = "kgnilnd",
943 .nf_addr2str = libcfs_ip_addr2str,
944 .nf_str2addr = libcfs_ip_str2addr,
945 .nf_parse_addrlist = cfs_ip_addr_parse,
946 .nf_print_addrlist = libcfs_ip_addr_range_print,
947 .nf_match_addr = cfs_ip_addr_match,
948 .nf_min_max = cfs_ip_min_max },
949 { .nf_type = PTL4LND,
951 .nf_modname = "kptl4lnd",
952 .nf_addr2str = libcfs_decnum_addr2str,
953 .nf_str2addr = libcfs_num_str2addr,
954 .nf_parse_addrlist = libcfs_num_parse,
955 .nf_print_addrlist = libcfs_num_addr_range_print,
956 .nf_match_addr = libcfs_num_match,
957 .nf_min_max = cfs_num_min_max},
960 static const size_t libcfs_nnetstrfns = ARRAY_SIZE(libcfs_netstrfns);
962 static struct netstrfns *
963 libcfs_lnd2netstrfns(__u32 lnd)
967 for (i = 0; i < libcfs_nnetstrfns; i++)
968 if (lnd == libcfs_netstrfns[i].nf_type)
969 return &libcfs_netstrfns[i];
974 static struct netstrfns *
975 libcfs_namenum2netstrfns(const char *name)
977 struct netstrfns *nf;
980 for (i = 0; i < libcfs_nnetstrfns; i++) {
981 nf = &libcfs_netstrfns[i];
982 if (!strncmp(name, nf->nf_name, strlen(nf->nf_name)))
988 static struct netstrfns *
989 libcfs_name2netstrfns(const char *name)
993 for (i = 0; i < libcfs_nnetstrfns; i++)
994 if (!strcmp(libcfs_netstrfns[i].nf_name, name))
995 return &libcfs_netstrfns[i];
1001 libcfs_isknown_lnd(__u32 lnd)
1003 return libcfs_lnd2netstrfns(lnd) != NULL;
1005 EXPORT_SYMBOL(libcfs_isknown_lnd);
1008 libcfs_lnd2modname(__u32 lnd)
1010 struct netstrfns *nf = libcfs_lnd2netstrfns(lnd);
1012 return (nf == NULL) ? NULL : nf->nf_modname;
1014 EXPORT_SYMBOL(libcfs_lnd2modname);
1017 libcfs_str2lnd(const char *str)
1019 struct netstrfns *nf = libcfs_name2netstrfns(str);
1026 EXPORT_SYMBOL(libcfs_str2lnd);
1029 libcfs_lnd2str_r(__u32 lnd, char *buf, size_t buf_size)
1031 struct netstrfns *nf;
1033 nf = libcfs_lnd2netstrfns(lnd);
1035 snprintf(buf, buf_size, "?%u?", lnd);
1037 snprintf(buf, buf_size, "%s", nf->nf_name);
1041 EXPORT_SYMBOL(libcfs_lnd2str_r);
1044 libcfs_net2str_r(__u32 net, char *buf, size_t buf_size)
1046 __u32 nnum = LNET_NETNUM(net);
1047 __u32 lnd = LNET_NETTYP(net);
1048 struct netstrfns *nf;
1050 nf = libcfs_lnd2netstrfns(lnd);
1052 snprintf(buf, buf_size, "<%u:%u>", lnd, nnum);
1054 snprintf(buf, buf_size, "%s", nf->nf_name);
1056 snprintf(buf, buf_size, "%s%u", nf->nf_name, nnum);
1060 EXPORT_SYMBOL(libcfs_net2str_r);
1063 libcfs_nid2str_r(lnet_nid_t nid, char *buf, size_t buf_size)
1065 __u32 addr = LNET_NIDADDR(nid);
1066 __u32 net = LNET_NIDNET(nid);
1067 __u32 nnum = LNET_NETNUM(net);
1068 __u32 lnd = LNET_NETTYP(net);
1069 struct netstrfns *nf;
1071 if (nid == LNET_NID_ANY) {
1072 strncpy(buf, "<?>", buf_size);
1073 buf[buf_size - 1] = '\0';
1077 nf = libcfs_lnd2netstrfns(lnd);
1079 snprintf(buf, buf_size, "%x@<%u:%u>", addr, lnd, nnum);
1083 nf->nf_addr2str(addr, buf, buf_size);
1084 addr_len = strlen(buf);
1086 snprintf(buf + addr_len, buf_size - addr_len, "@%s",
1089 snprintf(buf + addr_len, buf_size - addr_len, "@%s%u",
1095 EXPORT_SYMBOL(libcfs_nid2str_r);
1097 static struct netstrfns *
1098 libcfs_str2net_internal(const char *str, __u32 *net)
1100 struct netstrfns *nf = NULL;
1102 unsigned int netnum;
1105 for (i = 0; i < libcfs_nnetstrfns; i++) {
1106 nf = &libcfs_netstrfns[i];
1107 if (!strncmp(str, nf->nf_name, strlen(nf->nf_name)))
1111 if (i == libcfs_nnetstrfns)
1114 nob = strlen(nf->nf_name);
1116 if (strlen(str) == (unsigned int)nob) {
1119 if (nf->nf_type == LOLND) /* net number not allowed */
1124 if (sscanf(str, "%u%n", &netnum, &i) < 1 ||
1125 i != (int)strlen(str))
1129 *net = LNET_MKNET(nf->nf_type, netnum);
1134 libcfs_str2net(const char *str)
1138 if (libcfs_str2net_internal(str, &net) != NULL)
1141 return LNET_NIDNET(LNET_NID_ANY);
1143 EXPORT_SYMBOL(libcfs_str2net);
1146 libcfs_str2nid(const char *str)
1148 const char *sep = strchr(str, '@');
1149 struct netstrfns *nf;
1154 nf = libcfs_str2net_internal(sep + 1, &net);
1156 return LNET_NID_ANY;
1158 sep = str + strlen(str);
1159 net = LNET_MKNET(SOCKLND, 0);
1160 nf = libcfs_lnd2netstrfns(SOCKLND);
1161 LASSERT(nf != NULL);
1164 if (!nf->nf_str2addr(str, (int)(sep - str), &addr))
1165 return LNET_NID_ANY;
1167 return LNET_MKNID(net, addr);
1169 EXPORT_SYMBOL(libcfs_str2nid);
1172 libcfs_id2str(struct lnet_process_id id)
1174 char *str = libcfs_next_nidstring();
1176 if (id.pid == LNET_PID_ANY) {
1177 snprintf(str, LNET_NIDSTR_SIZE,
1178 "LNET_PID_ANY-%s", libcfs_nid2str(id.nid));
1182 snprintf(str, LNET_NIDSTR_SIZE, "%s%u-%s",
1183 ((id.pid & LNET_PID_USERFLAG) != 0) ? "U" : "",
1184 (id.pid & ~LNET_PID_USERFLAG), libcfs_nid2str(id.nid));
1187 EXPORT_SYMBOL(libcfs_id2str);
1190 libcfs_str2anynid(lnet_nid_t *nidp, const char *str)
1192 if (!strcmp(str, "*")) {
1193 *nidp = LNET_NID_ANY;
1197 *nidp = libcfs_str2nid(str);
1198 return *nidp != LNET_NID_ANY;
1200 EXPORT_SYMBOL(libcfs_str2anynid);