Whamcloud - gitweb
LU-7734 lnet: introduce LNET_PEER_MULTI_RAIL flag bit
[fs/lustre-release.git] / lnet / lnet / peer.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
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.
9  *
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).
15  *
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
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2014, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lnet/lnet/peer.c
33  */
34
35 #define DEBUG_SUBSYSTEM S_LNET
36
37 #include <lnet/lib-lnet.h>
38 #include <lnet/lib-dlc.h>
39
40 static void
41 lnet_peer_remove_from_remote_list(struct lnet_peer_ni *lpni)
42 {
43         if (!list_empty(&lpni->lpni_on_remote_peer_ni_list)) {
44                 list_del_init(&lpni->lpni_on_remote_peer_ni_list);
45                 lnet_peer_ni_decref_locked(lpni);
46         }
47 }
48
49 void
50 lnet_peer_net_added(struct lnet_net *net)
51 {
52         struct lnet_peer_ni *lpni, *tmp;
53
54         list_for_each_entry_safe(lpni, tmp, &the_lnet.ln_remote_peer_ni_list,
55                                  lpni_on_remote_peer_ni_list) {
56
57                 if (LNET_NIDNET(lpni->lpni_nid) == net->net_id) {
58                         lpni->lpni_net = net;
59
60                         spin_lock(&lpni->lpni_lock);
61                         lpni->lpni_txcredits =
62                                 lpni->lpni_net->net_tunables.lct_peer_tx_credits;
63                         lpni->lpni_mintxcredits = lpni->lpni_txcredits;
64                         lpni->lpni_rtrcredits =
65                                 lnet_peer_buffer_credits(lpni->lpni_net);
66                         lpni->lpni_minrtrcredits = lpni->lpni_rtrcredits;
67                         spin_unlock(&lpni->lpni_lock);
68
69                         lnet_peer_remove_from_remote_list(lpni);
70                 }
71         }
72 }
73
74 static void
75 lnet_peer_tables_destroy(void)
76 {
77         struct lnet_peer_table  *ptable;
78         struct list_head        *hash;
79         int                     i;
80         int                     j;
81
82         if (!the_lnet.ln_peer_tables)
83                 return;
84
85         cfs_percpt_for_each(ptable, i, the_lnet.ln_peer_tables) {
86                 hash = ptable->pt_hash;
87                 if (!hash) /* not intialized */
88                         break;
89
90                 LASSERT(list_empty(&ptable->pt_zombie_list));
91
92                 ptable->pt_hash = NULL;
93                 for (j = 0; j < LNET_PEER_HASH_SIZE; j++)
94                         LASSERT(list_empty(&hash[j]));
95
96                 LIBCFS_FREE(hash, LNET_PEER_HASH_SIZE * sizeof(*hash));
97         }
98
99         cfs_percpt_free(the_lnet.ln_peer_tables);
100         the_lnet.ln_peer_tables = NULL;
101 }
102
103 int
104 lnet_peer_tables_create(void)
105 {
106         struct lnet_peer_table  *ptable;
107         struct list_head        *hash;
108         int                     i;
109         int                     j;
110
111         the_lnet.ln_peer_tables = cfs_percpt_alloc(lnet_cpt_table(),
112                                                    sizeof(*ptable));
113         if (the_lnet.ln_peer_tables == NULL) {
114                 CERROR("Failed to allocate cpu-partition peer tables\n");
115                 return -ENOMEM;
116         }
117
118         cfs_percpt_for_each(ptable, i, the_lnet.ln_peer_tables) {
119                 LIBCFS_CPT_ALLOC(hash, lnet_cpt_table(), i,
120                                  LNET_PEER_HASH_SIZE * sizeof(*hash));
121                 if (hash == NULL) {
122                         CERROR("Failed to create peer hash table\n");
123                         lnet_peer_tables_destroy();
124                         return -ENOMEM;
125                 }
126
127                 spin_lock_init(&ptable->pt_zombie_lock);
128                 INIT_LIST_HEAD(&ptable->pt_zombie_list);
129
130                 for (j = 0; j < LNET_PEER_HASH_SIZE; j++)
131                         INIT_LIST_HEAD(&hash[j]);
132                 ptable->pt_hash = hash; /* sign of initialization */
133         }
134
135         return 0;
136 }
137
138 static struct lnet_peer_ni *
139 lnet_peer_ni_alloc(lnet_nid_t nid)
140 {
141         struct lnet_peer_ni *lpni;
142         struct lnet_net *net;
143         int cpt;
144
145         cpt = lnet_nid_cpt_hash(nid, LNET_CPT_NUMBER);
146
147         LIBCFS_CPT_ALLOC(lpni, lnet_cpt_table(), cpt, sizeof(*lpni));
148         if (!lpni)
149                 return NULL;
150
151         INIT_LIST_HEAD(&lpni->lpni_txq);
152         INIT_LIST_HEAD(&lpni->lpni_rtrq);
153         INIT_LIST_HEAD(&lpni->lpni_routes);
154         INIT_LIST_HEAD(&lpni->lpni_hashlist);
155         INIT_LIST_HEAD(&lpni->lpni_on_peer_net_list);
156         INIT_LIST_HEAD(&lpni->lpni_on_remote_peer_ni_list);
157
158         spin_lock_init(&lpni->lpni_lock);
159
160         lpni->lpni_alive = !lnet_peers_start_down(); /* 1 bit!! */
161         lpni->lpni_last_alive = cfs_time_current(); /* assumes alive */
162         lpni->lpni_ping_feats = LNET_PING_FEAT_INVAL;
163         lpni->lpni_nid = nid;
164         lpni->lpni_cpt = cpt;
165         lnet_set_peer_ni_health_locked(lpni, true);
166
167         net = lnet_get_net_locked(LNET_NIDNET(nid));
168         lpni->lpni_net = net;
169         if (net) {
170                 lpni->lpni_txcredits = net->net_tunables.lct_peer_tx_credits;
171                 lpni->lpni_mintxcredits = lpni->lpni_txcredits;
172                 lpni->lpni_rtrcredits = lnet_peer_buffer_credits(net);
173                 lpni->lpni_minrtrcredits = lpni->lpni_rtrcredits;
174         } else {
175                 /*
176                  * This peer_ni is not on a local network, so we
177                  * cannot add the credits here. In case the net is
178                  * added later, add the peer_ni to the remote peer ni
179                  * list so it can be easily found and revisited.
180                  */
181                 /* FIXME: per-net implementation instead? */
182                 atomic_inc(&lpni->lpni_refcount);
183                 list_add_tail(&lpni->lpni_on_remote_peer_ni_list,
184                               &the_lnet.ln_remote_peer_ni_list);
185         }
186
187         /* TODO: update flags */
188
189         return lpni;
190 }
191
192 static struct lnet_peer_net *
193 lnet_peer_net_alloc(__u32 net_id)
194 {
195         struct lnet_peer_net *lpn;
196
197         LIBCFS_CPT_ALLOC(lpn, lnet_cpt_table(), CFS_CPT_ANY, sizeof(*lpn));
198         if (!lpn)
199                 return NULL;
200
201         INIT_LIST_HEAD(&lpn->lpn_on_peer_list);
202         INIT_LIST_HEAD(&lpn->lpn_peer_nis);
203         lpn->lpn_net_id = net_id;
204
205         return lpn;
206 }
207
208 static struct lnet_peer *
209 lnet_peer_alloc(lnet_nid_t nid)
210 {
211         struct lnet_peer *lp;
212
213         LIBCFS_CPT_ALLOC(lp, lnet_cpt_table(), CFS_CPT_ANY, sizeof(*lp));
214         if (!lp)
215                 return NULL;
216
217         INIT_LIST_HEAD(&lp->lp_on_lnet_peer_list);
218         INIT_LIST_HEAD(&lp->lp_peer_nets);
219         spin_lock_init(&lp->lp_lock);
220         lp->lp_primary_nid = nid;
221
222         /* TODO: update flags */
223
224         return lp;
225 }
226
227
228 static void
229 lnet_try_destroy_peer_hierarchy_locked(struct lnet_peer_ni *lpni)
230 {
231         struct lnet_peer_net *peer_net;
232         struct lnet_peer *peer;
233
234         /* TODO: could the below situation happen? accessing an already
235          * destroyed peer? */
236         if (lpni->lpni_peer_net == NULL ||
237             lpni->lpni_peer_net->lpn_peer == NULL)
238                 return;
239
240         peer_net = lpni->lpni_peer_net;
241         peer = lpni->lpni_peer_net->lpn_peer;
242
243         list_del_init(&lpni->lpni_on_peer_net_list);
244         lpni->lpni_peer_net = NULL;
245
246         /* if peer_net is empty, then remove it from the peer */
247         if (list_empty(&peer_net->lpn_peer_nis)) {
248                 list_del_init(&peer_net->lpn_on_peer_list);
249                 peer_net->lpn_peer = NULL;
250                 LIBCFS_FREE(peer_net, sizeof(*peer_net));
251
252                 /* if the peer is empty then remove it from the
253                  * the_lnet.ln_peers */
254                 if (list_empty(&peer->lp_peer_nets)) {
255                         list_del_init(&peer->lp_on_lnet_peer_list);
256                         LIBCFS_FREE(peer, sizeof(*peer));
257                 }
258         }
259 }
260
261 /* called with lnet_net_lock LNET_LOCK_EX held */
262 static int
263 lnet_peer_ni_del_locked(struct lnet_peer_ni *lpni)
264 {
265         struct lnet_peer_table *ptable = NULL;
266
267         /* don't remove a peer_ni if it's also a gateway */
268         if (lpni->lpni_rtr_refcount > 0) {
269                 CERROR("Peer NI %s is a gateway. Can not delete it\n",
270                        libcfs_nid2str(lpni->lpni_nid));
271                 return -EBUSY;
272         }
273
274         lnet_peer_remove_from_remote_list(lpni);
275
276         /* remove peer ni from the hash list. */
277         list_del_init(&lpni->lpni_hashlist);
278
279         /* decrement the ref count on the peer table */
280         ptable = the_lnet.ln_peer_tables[lpni->lpni_cpt];
281         LASSERT(atomic_read(&ptable->pt_number) > 0);
282         atomic_dec(&ptable->pt_number);
283
284         /*
285          * The peer_ni can no longer be found with a lookup. But there
286          * can be current users, so keep track of it on the zombie
287          * list until the reference count has gone to zero.
288          *
289          * The last reference may be lost in a place where the
290          * lnet_net_lock locks only a single cpt, and that cpt may not
291          * be lpni->lpni_cpt. So the zombie list of lnet_peer_table
292          * has its own lock.
293          */
294         spin_lock(&ptable->pt_zombie_lock);
295         list_add(&lpni->lpni_hashlist, &ptable->pt_zombie_list);
296         ptable->pt_zombies++;
297         spin_unlock(&ptable->pt_zombie_lock);
298
299         /* no need to keep this peer on the hierarchy anymore */
300         lnet_try_destroy_peer_hierarchy_locked(lpni);
301
302         /* decrement reference on peer */
303         lnet_peer_ni_decref_locked(lpni);
304
305         return 0;
306 }
307
308 void lnet_peer_uninit(void)
309 {
310         struct lnet_peer_ni *lpni, *tmp;
311
312         lnet_net_lock(LNET_LOCK_EX);
313
314         /* remove all peer_nis from the remote peer and the hash list */
315         list_for_each_entry_safe(lpni, tmp, &the_lnet.ln_remote_peer_ni_list,
316                                  lpni_on_remote_peer_ni_list)
317                 lnet_peer_ni_del_locked(lpni);
318
319         lnet_peer_tables_destroy();
320
321         lnet_net_unlock(LNET_LOCK_EX);
322 }
323
324 static int
325 lnet_peer_del_locked(struct lnet_peer *peer)
326 {
327         struct lnet_peer_ni *lpni = NULL, *lpni2;
328         int rc = 0, rc2 = 0;
329
330         lpni = lnet_get_next_peer_ni_locked(peer, NULL, lpni);
331         while (lpni != NULL) {
332                 lpni2 = lnet_get_next_peer_ni_locked(peer, NULL, lpni);
333                 rc = lnet_peer_ni_del_locked(lpni);
334                 if (rc != 0)
335                         rc2 = rc;
336                 lpni = lpni2;
337         }
338
339         return rc2;
340 }
341
342 static int
343 lnet_peer_del(struct lnet_peer *peer)
344 {
345         lnet_net_lock(LNET_LOCK_EX);
346         lnet_peer_del_locked(peer);
347         lnet_net_unlock(LNET_LOCK_EX);
348
349         return 0;
350 }
351
352 /*
353  * Delete a NID from a peer.
354  * Implements a few sanity checks.
355  * Call with ln_api_mutex held.
356  */
357 static int
358 lnet_peer_del_nid(struct lnet_peer *lp, lnet_nid_t nid)
359 {
360         struct lnet_peer *lp2;
361         struct lnet_peer_ni *lpni;
362
363         lpni = lnet_find_peer_ni_locked(nid);
364         if (!lpni) {
365                 CERROR("Cannot remove unknown nid %s from peer %s\n",
366                        libcfs_nid2str(nid),
367                        libcfs_nid2str(lp->lp_primary_nid));
368                 return -ENOENT;
369         }
370         lnet_peer_ni_decref_locked(lpni);
371         lp2 = lpni->lpni_peer_net->lpn_peer;
372         if (lp2 != lp) {
373                 CERROR("Nid %s is attached to peer %s, not peer %s\n",
374                        libcfs_nid2str(nid),
375                        libcfs_nid2str(lp2->lp_primary_nid),
376                        libcfs_nid2str(lp->lp_primary_nid));
377                 return -EINVAL;
378         }
379
380         /*
381          * This function only allows deletion of the primary NID if it
382          * is the only NID.
383          */
384         if (nid == lp->lp_primary_nid && lnet_get_num_peer_nis(lp) != 1) {
385                 CERROR("Cannot delete primary NID %s from multi-NID peer\n",
386                        libcfs_nid2str(nid));
387                 return -EINVAL;
388         }
389
390         lnet_net_lock(LNET_LOCK_EX);
391         lnet_peer_ni_del_locked(lpni);
392         lnet_net_unlock(LNET_LOCK_EX);
393
394         return 0;
395 }
396
397 static void
398 lnet_peer_table_cleanup_locked(struct lnet_net *net,
399                                struct lnet_peer_table *ptable)
400 {
401         int                      i;
402         struct lnet_peer_ni     *next;
403         struct lnet_peer_ni     *lpni;
404         struct lnet_peer        *peer;
405
406         for (i = 0; i < LNET_PEER_HASH_SIZE; i++) {
407                 list_for_each_entry_safe(lpni, next, &ptable->pt_hash[i],
408                                          lpni_hashlist) {
409                         if (net != NULL && net != lpni->lpni_net)
410                                 continue;
411
412                         peer = lpni->lpni_peer_net->lpn_peer;
413                         if (peer->lp_primary_nid != lpni->lpni_nid) {
414                                 lnet_peer_ni_del_locked(lpni);
415                                 continue;
416                         }
417                         /*
418                          * Removing the primary NID implies removing
419                          * the entire peer. Advance next beyond any
420                          * peer_ni that belongs to the same peer.
421                          */
422                         list_for_each_entry_from(next, &ptable->pt_hash[i],
423                                                  lpni_hashlist) {
424                                 if (next->lpni_peer_net->lpn_peer != peer)
425                                         break;
426                         }
427                         lnet_peer_del_locked(peer);
428                 }
429         }
430 }
431
432 static void
433 lnet_peer_ni_finalize_wait(struct lnet_peer_table *ptable)
434 {
435         int     i = 3;
436
437         spin_lock(&ptable->pt_zombie_lock);
438         while (ptable->pt_zombies) {
439                 spin_unlock(&ptable->pt_zombie_lock);
440
441                 if (IS_PO2(i)) {
442                         CDEBUG(D_WARNING,
443                                "Waiting for %d zombies on peer table\n",
444                                ptable->pt_zombies);
445                 }
446                 set_current_state(TASK_UNINTERRUPTIBLE);
447                 schedule_timeout(cfs_time_seconds(1) >> 1);
448                 spin_lock(&ptable->pt_zombie_lock);
449         }
450         spin_unlock(&ptable->pt_zombie_lock);
451 }
452
453 static void
454 lnet_peer_table_del_rtrs_locked(struct lnet_net *net,
455                                 struct lnet_peer_table *ptable)
456 {
457         struct lnet_peer_ni     *lp;
458         struct lnet_peer_ni     *tmp;
459         lnet_nid_t              lpni_nid;
460         int                     i;
461
462         for (i = 0; i < LNET_PEER_HASH_SIZE; i++) {
463                 list_for_each_entry_safe(lp, tmp, &ptable->pt_hash[i],
464                                          lpni_hashlist) {
465                         if (net != lp->lpni_net)
466                                 continue;
467
468                         if (lp->lpni_rtr_refcount == 0)
469                                 continue;
470
471                         lpni_nid = lp->lpni_nid;
472
473                         lnet_net_unlock(LNET_LOCK_EX);
474                         lnet_del_route(LNET_NIDNET(LNET_NID_ANY), lpni_nid);
475                         lnet_net_lock(LNET_LOCK_EX);
476                 }
477         }
478 }
479
480 void
481 lnet_peer_tables_cleanup(struct lnet_net *net)
482 {
483         int                             i;
484         struct lnet_peer_table          *ptable;
485
486         LASSERT(the_lnet.ln_state != LNET_STATE_SHUTDOWN || net != NULL);
487         /* If just deleting the peers for a NI, get rid of any routes these
488          * peers are gateways for. */
489         cfs_percpt_for_each(ptable, i, the_lnet.ln_peer_tables) {
490                 lnet_net_lock(LNET_LOCK_EX);
491                 lnet_peer_table_del_rtrs_locked(net, ptable);
492                 lnet_net_unlock(LNET_LOCK_EX);
493         }
494
495         /* Start the cleanup process */
496         cfs_percpt_for_each(ptable, i, the_lnet.ln_peer_tables) {
497                 lnet_net_lock(LNET_LOCK_EX);
498                 lnet_peer_table_cleanup_locked(net, ptable);
499                 lnet_net_unlock(LNET_LOCK_EX);
500         }
501
502         cfs_percpt_for_each(ptable, i, the_lnet.ln_peer_tables)
503                 lnet_peer_ni_finalize_wait(ptable);
504 }
505
506 static struct lnet_peer_ni *
507 lnet_get_peer_ni_locked(struct lnet_peer_table *ptable, lnet_nid_t nid)
508 {
509         struct list_head        *peers;
510         struct lnet_peer_ni     *lp;
511
512         LASSERT(the_lnet.ln_state == LNET_STATE_RUNNING);
513
514         peers = &ptable->pt_hash[lnet_nid2peerhash(nid)];
515         list_for_each_entry(lp, peers, lpni_hashlist) {
516                 if (lp->lpni_nid == nid) {
517                         lnet_peer_ni_addref_locked(lp);
518                         return lp;
519                 }
520         }
521
522         return NULL;
523 }
524
525 struct lnet_peer_ni *
526 lnet_find_peer_ni_locked(lnet_nid_t nid)
527 {
528         struct lnet_peer_ni *lpni;
529         struct lnet_peer_table *ptable;
530         int cpt;
531
532         cpt = lnet_nid_cpt_hash(nid, LNET_CPT_NUMBER);
533
534         ptable = the_lnet.ln_peer_tables[cpt];
535         lpni = lnet_get_peer_ni_locked(ptable, nid);
536
537         return lpni;
538 }
539
540 struct lnet_peer_ni *
541 lnet_get_peer_ni_idx_locked(int idx, struct lnet_peer_net **lpn,
542                             struct lnet_peer **lp)
543 {
544         struct lnet_peer_ni     *lpni;
545
546         list_for_each_entry((*lp), &the_lnet.ln_peers, lp_on_lnet_peer_list) {
547                 list_for_each_entry((*lpn), &((*lp)->lp_peer_nets), lpn_on_peer_list) {
548                         list_for_each_entry(lpni, &((*lpn)->lpn_peer_nis),
549                                             lpni_on_peer_net_list)
550                                 if (idx-- == 0)
551                                         return lpni;
552                 }
553         }
554
555         return NULL;
556 }
557
558 struct lnet_peer_ni *
559 lnet_get_next_peer_ni_locked(struct lnet_peer *peer,
560                              struct lnet_peer_net *peer_net,
561                              struct lnet_peer_ni *prev)
562 {
563         struct lnet_peer_ni *lpni;
564         struct lnet_peer_net *net = peer_net;
565
566         if (!prev) {
567                 if (!net)
568                         net = list_entry(peer->lp_peer_nets.next,
569                                          struct lnet_peer_net,
570                                          lpn_on_peer_list);
571                 lpni = list_entry(net->lpn_peer_nis.next, struct lnet_peer_ni,
572                                   lpni_on_peer_net_list);
573
574                 return lpni;
575         }
576
577         if (prev->lpni_on_peer_net_list.next ==
578             &prev->lpni_peer_net->lpn_peer_nis) {
579                 /*
580                  * if you reached the end of the peer ni list and the peer
581                  * net is specified then there are no more peer nis in that
582                  * net.
583                  */
584                 if (net)
585                         return NULL;
586
587                 /*
588                  * we reached the end of this net ni list. move to the
589                  * next net
590                  */
591                 if (prev->lpni_peer_net->lpn_on_peer_list.next ==
592                     &peer->lp_peer_nets)
593                         /* no more nets and no more NIs. */
594                         return NULL;
595
596                 /* get the next net */
597                 net = list_entry(prev->lpni_peer_net->lpn_on_peer_list.next,
598                                  struct lnet_peer_net,
599                                  lpn_on_peer_list);
600                 /* get the ni on it */
601                 lpni = list_entry(net->lpn_peer_nis.next, struct lnet_peer_ni,
602                                   lpni_on_peer_net_list);
603
604                 return lpni;
605         }
606
607         /* there are more nis left */
608         lpni = list_entry(prev->lpni_on_peer_net_list.next,
609                           struct lnet_peer_ni, lpni_on_peer_net_list);
610
611         return lpni;
612 }
613
614 bool
615 lnet_peer_is_ni_pref_locked(struct lnet_peer_ni *lpni, struct lnet_ni *ni)
616 {
617         int i;
618
619         for (i = 0; i < lpni->lpni_pref_nnids; i++) {
620                 if (lpni->lpni_pref_nids[i] == ni->ni_nid)
621                         return true;
622         }
623         return false;
624 }
625
626 lnet_nid_t
627 lnet_peer_primary_nid(lnet_nid_t nid)
628 {
629         struct lnet_peer_ni *lpni;
630         lnet_nid_t primary_nid = nid;
631         int cpt;
632
633         cpt = lnet_net_lock_current();
634         lpni = lnet_find_peer_ni_locked(nid);
635         if (lpni) {
636                 primary_nid = lpni->lpni_peer_net->lpn_peer->lp_primary_nid;
637                 lnet_peer_ni_decref_locked(lpni);
638         }
639         lnet_net_unlock(cpt);
640
641         return primary_nid;
642 }
643
644 lnet_nid_t
645 LNetPrimaryNID(lnet_nid_t nid)
646 {
647         struct lnet_peer_ni *lpni;
648         lnet_nid_t primary_nid = nid;
649         int rc = 0;
650         int cpt;
651
652         cpt = lnet_net_lock_current();
653         lpni = lnet_nid2peerni_locked(nid, cpt);
654         if (IS_ERR(lpni)) {
655                 rc = PTR_ERR(lpni);
656                 goto out_unlock;
657         }
658         primary_nid = lpni->lpni_peer_net->lpn_peer->lp_primary_nid;
659         lnet_peer_ni_decref_locked(lpni);
660 out_unlock:
661         lnet_net_unlock(cpt);
662
663         CDEBUG(D_NET, "NID %s primary NID %s rc %d\n", libcfs_nid2str(nid),
664                libcfs_nid2str(primary_nid), rc);
665         return primary_nid;
666 }
667 EXPORT_SYMBOL(LNetPrimaryNID);
668
669 struct lnet_peer_net *
670 lnet_peer_get_net_locked(struct lnet_peer *peer, __u32 net_id)
671 {
672         struct lnet_peer_net *peer_net;
673         list_for_each_entry(peer_net, &peer->lp_peer_nets, lpn_on_peer_list) {
674                 if (peer_net->lpn_net_id == net_id)
675                         return peer_net;
676         }
677         return NULL;
678 }
679
680 static int
681 lnet_peer_setup_hierarchy(struct lnet_peer *lp, struct lnet_peer_ni *lpni,
682                           lnet_nid_t nid)
683 {
684         struct lnet_peer_net *lpn = NULL;
685         struct lnet_peer_table *ptable;
686         __u32 net_id = LNET_NIDNET(nid);
687
688         /*
689          * Create the peer_ni, peer_net, and peer if they don't exist
690          * yet.
691          */
692         if (lp) {
693                 lpn = lnet_peer_get_net_locked(lp, net_id);
694         } else {
695                 lp = lnet_peer_alloc(nid);
696                 if (!lp)
697                         goto out_enomem;
698         }
699
700         if (!lpn) {
701                 lpn = lnet_peer_net_alloc(net_id);
702                 if (!lpn)
703                         goto out_maybe_free_lp;
704         }
705
706         if (!lpni) {
707                 lpni = lnet_peer_ni_alloc(nid);
708                 if (!lpni)
709                         goto out_maybe_free_lpn;
710         }
711
712         /* Install the new peer_ni */
713         lnet_net_lock(LNET_LOCK_EX);
714         /* Add peer_ni to global peer table hash, if necessary. */
715         if (list_empty(&lpni->lpni_hashlist)) {
716                 ptable = the_lnet.ln_peer_tables[lpni->lpni_cpt];
717                 list_add_tail(&lpni->lpni_hashlist,
718                               &ptable->pt_hash[lnet_nid2peerhash(nid)]);
719                 ptable->pt_version++;
720                 atomic_inc(&ptable->pt_number);
721                 atomic_inc(&lpni->lpni_refcount);
722         }
723
724         /* Detach the peer_ni from an existing peer, if necessary. */
725         if (lpni->lpni_peer_net && lpni->lpni_peer_net->lpn_peer != lp)
726                 lnet_try_destroy_peer_hierarchy_locked(lpni);
727
728         /* Add peer_ni to peer_net */
729         lpni->lpni_peer_net = lpn;
730         list_add_tail(&lpni->lpni_on_peer_net_list, &lpn->lpn_peer_nis);
731
732         /* Add peer_net to peer */
733         if (!lpn->lpn_peer) {
734                 lpn->lpn_peer = lp;
735                 list_add_tail(&lpn->lpn_on_peer_list, &lp->lp_peer_nets);
736         }
737
738         /* Add peer to global peer list */
739         if (list_empty(&lp->lp_on_lnet_peer_list))
740                 list_add_tail(&lp->lp_on_lnet_peer_list, &the_lnet.ln_peers);
741         lnet_net_unlock(LNET_LOCK_EX);
742
743         return 0;
744
745 out_maybe_free_lpn:
746         if (list_empty(&lpn->lpn_on_peer_list))
747                 LIBCFS_FREE(lpn, sizeof(*lpn));
748 out_maybe_free_lp:
749         if (list_empty(&lp->lp_on_lnet_peer_list))
750                 LIBCFS_FREE(lp, sizeof(*lp));
751 out_enomem:
752         return -ENOMEM;
753 }
754
755 /*
756  * Create a new peer, with nid as its primary nid.
757  *
758  * It is not an error if the peer already exists, provided that the
759  * given nid is the primary NID.
760  *
761  * Call with the lnet_api_mutex held.
762  */
763 static int
764 lnet_peer_add(lnet_nid_t nid, bool mr)
765 {
766         struct lnet_peer *lp;
767         struct lnet_peer_ni *lpni;
768         int rc;
769
770         LASSERT(nid != LNET_NID_ANY);
771
772         /*
773          * No need for the lnet_net_lock here, because the
774          * lnet_api_mutex is held.
775          */
776         lpni = lnet_find_peer_ni_locked(nid);
777         if (!lpni) {
778                 rc = lnet_peer_setup_hierarchy(NULL, NULL, nid);
779                 if (rc != 0)
780                         return rc;
781                 lpni = lnet_find_peer_ni_locked(nid);
782                 LASSERT(lpni);
783         }
784         lp = lpni->lpni_peer_net->lpn_peer;
785         lnet_peer_ni_decref_locked(lpni);
786
787         /* A found peer must have this primary NID */
788         if (lp->lp_primary_nid != nid)
789                 return -EEXIST;
790
791         /*
792          * If we found an lpni that is not a multi-rail, which could occur
793          * if lpni is already created as a non-mr lpni or we just created
794          * it, then make sure you indicate that this lpni is a primary mr
795          * capable peer.
796          *
797          * TODO: update flags if necessary
798          */
799         spin_lock(&lp->lp_lock);
800         if (mr && !(lp->lp_state & LNET_PEER_MULTI_RAIL)) {
801                 lp->lp_state |= LNET_PEER_MULTI_RAIL;
802         } else if (!mr && (lp->lp_state & LNET_PEER_MULTI_RAIL)) {
803                 /* The mr state is sticky. */
804                 CDEBUG(D_NET, "Cannot clear multi-rail flag from peer %s\n",
805                        libcfs_nid2str(nid));
806         }
807         spin_unlock(&lp->lp_lock);
808
809         return 0;
810 }
811
812 static int
813 lnet_peer_add_nid(struct lnet_peer *lp, lnet_nid_t nid, bool mr)
814 {
815         struct lnet_peer_ni *lpni;
816
817         LASSERT(lp);
818         LASSERT(nid != LNET_NID_ANY);
819
820         spin_lock(&lp->lp_lock);
821         if (!mr && !(lp->lp_state & LNET_PEER_MULTI_RAIL)) {
822                 spin_unlock(&lp->lp_lock);
823                 CERROR("Cannot add nid %s to non-multi-rail peer %s\n",
824                        libcfs_nid2str(nid),
825                        libcfs_nid2str(lp->lp_primary_nid));
826                 return -EPERM;
827         }
828
829         if (!(lp->lp_state & LNET_PEER_MULTI_RAIL))
830                 lp->lp_state |= LNET_PEER_MULTI_RAIL;
831         spin_unlock(&lp->lp_lock);
832
833         lpni = lnet_find_peer_ni_locked(nid);
834         if (!lpni)
835                 return lnet_peer_setup_hierarchy(lp, NULL, nid);
836
837         if (lpni->lpni_peer_net->lpn_peer != lp) {
838                 struct lnet_peer *lp2 = lpni->lpni_peer_net->lpn_peer;
839                 CERROR("Cannot add NID %s owned by peer %s to peer %s\n",
840                        libcfs_nid2str(lpni->lpni_nid),
841                        libcfs_nid2str(lp2->lp_primary_nid),
842                        libcfs_nid2str(lp->lp_primary_nid));
843                 return -EEXIST;
844         }
845
846         CDEBUG(D_NET, "NID %s is already owned by peer %s\n",
847                libcfs_nid2str(lpni->lpni_nid),
848                libcfs_nid2str(lp->lp_primary_nid));
849         return 0;
850 }
851
852 /*
853  * lpni creation initiated due to traffic either sending or receiving.
854  */
855 static int
856 lnet_peer_ni_traffic_add(lnet_nid_t nid)
857 {
858         struct lnet_peer_ni *lpni;
859         int rc = 0;
860
861         if (nid == LNET_NID_ANY)
862                 return -EINVAL;
863
864         /* lnet_net_lock is not needed here because ln_api_lock is held */
865         lpni = lnet_find_peer_ni_locked(nid);
866         if (lpni) {
867                 /*
868                  * TODO: lnet_update_primary_nid() but not all of it
869                  * only indicate if we're converting this to MR capable
870                  * Can happen due to DD
871                  */
872                 lnet_peer_ni_decref_locked(lpni);
873         } else {
874                 rc = lnet_peer_setup_hierarchy(NULL, NULL, nid);
875         }
876
877         return rc;
878
879 }
880
881 /*
882  * Implementation of IOC_LIBCFS_ADD_PEER_NI.
883  *
884  * This API handles the following combinations:
885  *   Create a peer with its primary NI if only the prim_nid is provided
886  *   Add a NID to a peer identified by the prim_nid. The peer identified
887  *   by the prim_nid must already exist.
888  *   The peer being created may be non-MR.
889  *
890  * The caller must hold ln_api_mutex. This prevents the peer from
891  * being created/modified/deleted by a different thread.
892  */
893 int
894 lnet_add_peer_ni(lnet_nid_t prim_nid, lnet_nid_t nid, bool mr)
895 {
896         struct lnet_peer *lp = NULL;
897         struct lnet_peer_ni *lpni;
898
899         /* The prim_nid must always be specified */
900         if (prim_nid == LNET_NID_ANY)
901                 return -EINVAL;
902
903         /*
904          * If nid isn't specified, we must create a new peer with
905          * prim_nid as its primary nid.
906          */
907         if (nid == LNET_NID_ANY)
908                 return lnet_peer_add(prim_nid, mr);
909
910         /* Look up the prim_nid, which must exist. */
911         lpni = lnet_find_peer_ni_locked(prim_nid);
912         if (!lpni)
913                 return -ENOENT;
914         lnet_peer_ni_decref_locked(lpni);
915         lp = lpni->lpni_peer_net->lpn_peer;
916
917         if (lp->lp_primary_nid != prim_nid) {
918                 CDEBUG(D_NET, "prim_nid %s is not primary for peer %s\n",
919                        libcfs_nid2str(prim_nid),
920                        libcfs_nid2str(lp->lp_primary_nid));
921                 return -ENODEV;
922         }
923
924         return lnet_peer_add_nid(lp, nid, mr);
925 }
926
927 /*
928  * Implementation of IOC_LIBCFS_DEL_PEER_NI.
929  *
930  * This API handles the following combinations:
931  *   Delete a NI from a peer if both prim_nid and nid are provided.
932  *   Delete a peer if only prim_nid is provided.
933  *   Delete a peer if its primary nid is provided.
934  *
935  * The caller must hold ln_api_mutex. This prevents the peer from
936  * being modified/deleted by a different thread.
937  */
938 int
939 lnet_del_peer_ni(lnet_nid_t prim_nid, lnet_nid_t nid)
940 {
941         struct lnet_peer *lp;
942         struct lnet_peer_ni *lpni;
943
944         if (prim_nid == LNET_NID_ANY)
945                 return -EINVAL;
946
947         lpni = lnet_find_peer_ni_locked(prim_nid);
948         if (!lpni)
949                 return -ENOENT;
950         lnet_peer_ni_decref_locked(lpni);
951         lp = lpni->lpni_peer_net->lpn_peer;
952
953         if (prim_nid != lp->lp_primary_nid) {
954                 CDEBUG(D_NET, "prim_nid %s is not primary for peer %s\n",
955                        libcfs_nid2str(prim_nid),
956                        libcfs_nid2str(lp->lp_primary_nid));
957                 return -ENODEV;
958         }
959
960         if (nid == LNET_NID_ANY || nid == lp->lp_primary_nid)
961                 return lnet_peer_del(lp);
962
963         return lnet_peer_del_nid(lp, nid);
964 }
965
966 void
967 lnet_destroy_peer_ni_locked(struct lnet_peer_ni *lpni)
968 {
969         struct lnet_peer_table *ptable;
970
971         LASSERT(atomic_read(&lpni->lpni_refcount) == 0);
972         LASSERT(lpni->lpni_rtr_refcount == 0);
973         LASSERT(list_empty(&lpni->lpni_txq));
974         LASSERT(lpni->lpni_txqnob == 0);
975
976         lpni->lpni_net = NULL;
977
978         /* remove the peer ni from the zombie list */
979         ptable = the_lnet.ln_peer_tables[lpni->lpni_cpt];
980         spin_lock(&ptable->pt_zombie_lock);
981         list_del_init(&lpni->lpni_hashlist);
982         ptable->pt_zombies--;
983         spin_unlock(&ptable->pt_zombie_lock);
984
985         LIBCFS_FREE(lpni, sizeof(*lpni));
986 }
987
988 struct lnet_peer_ni *
989 lnet_nid2peerni_ex(lnet_nid_t nid, int cpt)
990 {
991         struct lnet_peer_ni *lpni = NULL;
992         int rc;
993
994         if (the_lnet.ln_state != LNET_STATE_RUNNING)
995                 return ERR_PTR(-ESHUTDOWN);
996
997         /*
998          * find if a peer_ni already exists.
999          * If so then just return that.
1000          */
1001         lpni = lnet_find_peer_ni_locked(nid);
1002         if (lpni)
1003                 return lpni;
1004
1005         lnet_net_unlock(cpt);
1006
1007         rc = lnet_peer_ni_traffic_add(nid);
1008         if (rc) {
1009                 lpni = ERR_PTR(rc);
1010                 goto out_net_relock;
1011         }
1012
1013         lpni = lnet_find_peer_ni_locked(nid);
1014         LASSERT(lpni);
1015
1016 out_net_relock:
1017         lnet_net_lock(cpt);
1018
1019         return lpni;
1020 }
1021
1022 struct lnet_peer_ni *
1023 lnet_nid2peerni_locked(lnet_nid_t nid, int cpt)
1024 {
1025         struct lnet_peer_ni *lpni = NULL;
1026         int rc;
1027
1028         if (the_lnet.ln_state != LNET_STATE_RUNNING)
1029                 return ERR_PTR(-ESHUTDOWN);
1030
1031         /*
1032          * find if a peer_ni already exists.
1033          * If so then just return that.
1034          */
1035         lpni = lnet_find_peer_ni_locked(nid);
1036         if (lpni)
1037                 return lpni;
1038
1039         /*
1040          * Slow path:
1041          * use the lnet_api_mutex to serialize the creation of the peer_ni
1042          * and the creation/deletion of the local ni/net. When a local ni is
1043          * created, if there exists a set of peer_nis on that network,
1044          * they need to be traversed and updated. When a local NI is
1045          * deleted, which could result in a network being deleted, then
1046          * all peer nis on that network need to be removed as well.
1047          *
1048          * Creation through traffic should also be serialized with
1049          * creation through DLC.
1050          */
1051         lnet_net_unlock(cpt);
1052         mutex_lock(&the_lnet.ln_api_mutex);
1053         /*
1054          * Shutdown is only set under the ln_api_lock, so a single
1055          * check here is sufficent.
1056          */
1057         if (the_lnet.ln_state != LNET_STATE_RUNNING) {
1058                 lpni = ERR_PTR(-ESHUTDOWN);
1059                 goto out_mutex_unlock;
1060         }
1061
1062         rc = lnet_peer_ni_traffic_add(nid);
1063         if (rc) {
1064                 lpni = ERR_PTR(rc);
1065                 goto out_mutex_unlock;
1066         }
1067
1068         lpni = lnet_find_peer_ni_locked(nid);
1069         LASSERT(lpni);
1070
1071 out_mutex_unlock:
1072         mutex_unlock(&the_lnet.ln_api_mutex);
1073         lnet_net_lock(cpt);
1074
1075         return lpni;
1076 }
1077
1078 void
1079 lnet_debug_peer(lnet_nid_t nid)
1080 {
1081         char                    *aliveness = "NA";
1082         struct lnet_peer_ni     *lp;
1083         int                     cpt;
1084
1085         cpt = lnet_cpt_of_nid(nid, NULL);
1086         lnet_net_lock(cpt);
1087
1088         lp = lnet_nid2peerni_locked(nid, cpt);
1089         if (IS_ERR(lp)) {
1090                 lnet_net_unlock(cpt);
1091                 CDEBUG(D_WARNING, "No peer %s\n", libcfs_nid2str(nid));
1092                 return;
1093         }
1094
1095         if (lnet_isrouter(lp) || lnet_peer_aliveness_enabled(lp))
1096                 aliveness = lp->lpni_alive ? "up" : "down";
1097
1098         CDEBUG(D_WARNING, "%-24s %4d %5s %5d %5d %5d %5d %5d %ld\n",
1099                libcfs_nid2str(lp->lpni_nid), atomic_read(&lp->lpni_refcount),
1100                aliveness, lp->lpni_net->net_tunables.lct_peer_tx_credits,
1101                lp->lpni_rtrcredits, lp->lpni_minrtrcredits,
1102                lp->lpni_txcredits, lp->lpni_mintxcredits, lp->lpni_txqnob);
1103
1104         lnet_peer_ni_decref_locked(lp);
1105
1106         lnet_net_unlock(cpt);
1107 }
1108
1109 int lnet_get_peer_ni_info(__u32 peer_index, __u64 *nid,
1110                           char aliveness[LNET_MAX_STR_LEN],
1111                           __u32 *cpt_iter, __u32 *refcount,
1112                           __u32 *ni_peer_tx_credits, __u32 *peer_tx_credits,
1113                           __u32 *peer_rtr_credits, __u32 *peer_min_rtr_credits,
1114                           __u32 *peer_tx_qnob)
1115 {
1116         struct lnet_peer_table          *peer_table;
1117         struct lnet_peer_ni             *lp;
1118         int                             j;
1119         int                             lncpt;
1120         bool                            found = false;
1121
1122         /* get the number of CPTs */
1123         lncpt = cfs_percpt_number(the_lnet.ln_peer_tables);
1124
1125         /* if the cpt number to be examined is >= the number of cpts in
1126          * the system then indicate that there are no more cpts to examin
1127          */
1128         if (*cpt_iter >= lncpt)
1129                 return -ENOENT;
1130
1131         /* get the current table */
1132         peer_table = the_lnet.ln_peer_tables[*cpt_iter];
1133         /* if the ptable is NULL then there are no more cpts to examine */
1134         if (peer_table == NULL)
1135                 return -ENOENT;
1136
1137         lnet_net_lock(*cpt_iter);
1138
1139         for (j = 0; j < LNET_PEER_HASH_SIZE && !found; j++) {
1140                 struct list_head *peers = &peer_table->pt_hash[j];
1141
1142                 list_for_each_entry(lp, peers, lpni_hashlist) {
1143                         if (peer_index-- > 0)
1144                                 continue;
1145
1146                         snprintf(aliveness, LNET_MAX_STR_LEN, "NA");
1147                         if (lnet_isrouter(lp) ||
1148                                 lnet_peer_aliveness_enabled(lp))
1149                                 snprintf(aliveness, LNET_MAX_STR_LEN,
1150                                          lp->lpni_alive ? "up" : "down");
1151
1152                         *nid = lp->lpni_nid;
1153                         *refcount = atomic_read(&lp->lpni_refcount);
1154                         *ni_peer_tx_credits =
1155                                 lp->lpni_net->net_tunables.lct_peer_tx_credits;
1156                         *peer_tx_credits = lp->lpni_txcredits;
1157                         *peer_rtr_credits = lp->lpni_rtrcredits;
1158                         *peer_min_rtr_credits = lp->lpni_mintxcredits;
1159                         *peer_tx_qnob = lp->lpni_txqnob;
1160
1161                         found = true;
1162                 }
1163
1164         }
1165         lnet_net_unlock(*cpt_iter);
1166
1167         *cpt_iter = lncpt;
1168
1169         return found ? 0 : -ENOENT;
1170 }
1171
1172 int lnet_get_peer_info(__u32 idx, lnet_nid_t *primary_nid, lnet_nid_t *nid,
1173                        bool *mr, struct lnet_peer_ni_credit_info *peer_ni_info,
1174                        struct lnet_ioctl_element_stats *peer_ni_stats)
1175 {
1176         struct lnet_peer_ni *lpni = NULL;
1177         struct lnet_peer_net *lpn = NULL;
1178         struct lnet_peer *lp = NULL;
1179
1180         lpni = lnet_get_peer_ni_idx_locked(idx, &lpn, &lp);
1181
1182         if (!lpni)
1183                 return -ENOENT;
1184
1185         *primary_nid = lp->lp_primary_nid;
1186         *mr = lnet_peer_is_multi_rail(lp);
1187         *nid = lpni->lpni_nid;
1188         snprintf(peer_ni_info->cr_aliveness, LNET_MAX_STR_LEN, "NA");
1189         if (lnet_isrouter(lpni) ||
1190                 lnet_peer_aliveness_enabled(lpni))
1191                 snprintf(peer_ni_info->cr_aliveness, LNET_MAX_STR_LEN,
1192                          lpni->lpni_alive ? "up" : "down");
1193
1194         peer_ni_info->cr_refcount = atomic_read(&lpni->lpni_refcount);
1195         peer_ni_info->cr_ni_peer_tx_credits = (lpni->lpni_net != NULL) ?
1196                 lpni->lpni_net->net_tunables.lct_peer_tx_credits : 0;
1197         peer_ni_info->cr_peer_tx_credits = lpni->lpni_txcredits;
1198         peer_ni_info->cr_peer_rtr_credits = lpni->lpni_rtrcredits;
1199         peer_ni_info->cr_peer_min_rtr_credits = lpni->lpni_minrtrcredits;
1200         peer_ni_info->cr_peer_min_tx_credits = lpni->lpni_mintxcredits;
1201         peer_ni_info->cr_peer_tx_qnob = lpni->lpni_txqnob;
1202
1203         peer_ni_stats->send_count = atomic_read(&lpni->lpni_stats.send_count);
1204         peer_ni_stats->recv_count = atomic_read(&lpni->lpni_stats.recv_count);
1205         peer_ni_stats->drop_count = atomic_read(&lpni->lpni_stats.drop_count);
1206
1207         return 0;
1208 }