Whamcloud - gitweb
LU-7734 lnet: refactor lnet_del_peer_ni()
[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         lp->lp_primary_nid = nid;
220
221         /* TODO: update flags */
222
223         return lp;
224 }
225
226
227 static void
228 lnet_try_destroy_peer_hierarchy_locked(struct lnet_peer_ni *lpni)
229 {
230         struct lnet_peer_net *peer_net;
231         struct lnet_peer *peer;
232
233         /* TODO: could the below situation happen? accessing an already
234          * destroyed peer? */
235         if (lpni->lpni_peer_net == NULL ||
236             lpni->lpni_peer_net->lpn_peer == NULL)
237                 return;
238
239         peer_net = lpni->lpni_peer_net;
240         peer = lpni->lpni_peer_net->lpn_peer;
241
242         list_del_init(&lpni->lpni_on_peer_net_list);
243         lpni->lpni_peer_net = NULL;
244
245         /* if peer_net is empty, then remove it from the peer */
246         if (list_empty(&peer_net->lpn_peer_nis)) {
247                 list_del_init(&peer_net->lpn_on_peer_list);
248                 peer_net->lpn_peer = NULL;
249                 LIBCFS_FREE(peer_net, sizeof(*peer_net));
250
251                 /* if the peer is empty then remove it from the
252                  * the_lnet.ln_peers */
253                 if (list_empty(&peer->lp_peer_nets)) {
254                         list_del_init(&peer->lp_on_lnet_peer_list);
255                         LIBCFS_FREE(peer, sizeof(*peer));
256                 }
257         }
258 }
259
260 /* called with lnet_net_lock LNET_LOCK_EX held */
261 static int
262 lnet_peer_ni_del_locked(struct lnet_peer_ni *lpni)
263 {
264         struct lnet_peer_table *ptable = NULL;
265
266         /* don't remove a peer_ni if it's also a gateway */
267         if (lpni->lpni_rtr_refcount > 0) {
268                 CERROR("Peer NI %s is a gateway. Can not delete it\n",
269                        libcfs_nid2str(lpni->lpni_nid));
270                 return -EBUSY;
271         }
272
273         lnet_peer_remove_from_remote_list(lpni);
274
275         /* remove peer ni from the hash list. */
276         list_del_init(&lpni->lpni_hashlist);
277
278         /* decrement the ref count on the peer table */
279         ptable = the_lnet.ln_peer_tables[lpni->lpni_cpt];
280         LASSERT(atomic_read(&ptable->pt_number) > 0);
281         atomic_dec(&ptable->pt_number);
282
283         /*
284          * The peer_ni can no longer be found with a lookup. But there
285          * can be current users, so keep track of it on the zombie
286          * list until the reference count has gone to zero.
287          *
288          * The last reference may be lost in a place where the
289          * lnet_net_lock locks only a single cpt, and that cpt may not
290          * be lpni->lpni_cpt. So the zombie list of lnet_peer_table
291          * has its own lock.
292          */
293         spin_lock(&ptable->pt_zombie_lock);
294         list_add(&lpni->lpni_hashlist, &ptable->pt_zombie_list);
295         ptable->pt_zombies++;
296         spin_unlock(&ptable->pt_zombie_lock);
297
298         /* no need to keep this peer on the hierarchy anymore */
299         lnet_try_destroy_peer_hierarchy_locked(lpni);
300
301         /* decrement reference on peer */
302         lnet_peer_ni_decref_locked(lpni);
303
304         return 0;
305 }
306
307 void lnet_peer_uninit(void)
308 {
309         struct lnet_peer_ni *lpni, *tmp;
310
311         lnet_net_lock(LNET_LOCK_EX);
312
313         /* remove all peer_nis from the remote peer and the hash list */
314         list_for_each_entry_safe(lpni, tmp, &the_lnet.ln_remote_peer_ni_list,
315                                  lpni_on_remote_peer_ni_list)
316                 lnet_peer_ni_del_locked(lpni);
317
318         lnet_peer_tables_destroy();
319
320         lnet_net_unlock(LNET_LOCK_EX);
321 }
322
323 static int
324 lnet_peer_del_locked(struct lnet_peer *peer)
325 {
326         struct lnet_peer_ni *lpni = NULL, *lpni2;
327         int rc = 0, rc2 = 0;
328
329         lpni = lnet_get_next_peer_ni_locked(peer, NULL, lpni);
330         while (lpni != NULL) {
331                 lpni2 = lnet_get_next_peer_ni_locked(peer, NULL, lpni);
332                 rc = lnet_peer_ni_del_locked(lpni);
333                 if (rc != 0)
334                         rc2 = rc;
335                 lpni = lpni2;
336         }
337
338         return rc2;
339 }
340
341 static int
342 lnet_peer_del(struct lnet_peer *peer)
343 {
344         lnet_net_lock(LNET_LOCK_EX);
345         lnet_peer_del_locked(peer);
346         lnet_net_unlock(LNET_LOCK_EX);
347
348         return 0;
349 }
350
351 /*
352  * Delete a NID from a peer.
353  * Implements a few sanity checks.
354  * Call with ln_api_mutex held.
355  */
356 static int
357 lnet_peer_del_nid(struct lnet_peer *lp, lnet_nid_t nid)
358 {
359         struct lnet_peer *lp2;
360         struct lnet_peer_ni *lpni;
361
362         lpni = lnet_find_peer_ni_locked(nid);
363         if (!lpni) {
364                 CERROR("Cannot remove unknown nid %s from peer %s\n",
365                        libcfs_nid2str(nid),
366                        libcfs_nid2str(lp->lp_primary_nid));
367                 return -ENOENT;
368         }
369         lnet_peer_ni_decref_locked(lpni);
370         lp2 = lpni->lpni_peer_net->lpn_peer;
371         if (lp2 != lp) {
372                 CERROR("Nid %s is attached to peer %s, not peer %s\n",
373                        libcfs_nid2str(nid),
374                        libcfs_nid2str(lp2->lp_primary_nid),
375                        libcfs_nid2str(lp->lp_primary_nid));
376                 return -EINVAL;
377         }
378
379         /*
380          * This function only allows deletion of the primary NID if it
381          * is the only NID.
382          */
383         if (nid == lp->lp_primary_nid && lnet_get_num_peer_nis(lp) != 1) {
384                 CERROR("Cannot delete primary NID %s from multi-NID peer\n",
385                        libcfs_nid2str(nid));
386                 return -EINVAL;
387         }
388
389         lnet_net_lock(LNET_LOCK_EX);
390         lnet_peer_ni_del_locked(lpni);
391         lnet_net_unlock(LNET_LOCK_EX);
392
393         return 0;
394 }
395
396 static void
397 lnet_peer_table_cleanup_locked(struct lnet_net *net,
398                                struct lnet_peer_table *ptable)
399 {
400         int                      i;
401         struct lnet_peer_ni     *next;
402         struct lnet_peer_ni     *lpni;
403         struct lnet_peer        *peer;
404
405         for (i = 0; i < LNET_PEER_HASH_SIZE; i++) {
406                 list_for_each_entry_safe(lpni, next, &ptable->pt_hash[i],
407                                          lpni_hashlist) {
408                         if (net != NULL && net != lpni->lpni_net)
409                                 continue;
410
411                         peer = lpni->lpni_peer_net->lpn_peer;
412                         if (peer->lp_primary_nid != lpni->lpni_nid) {
413                                 lnet_peer_ni_del_locked(lpni);
414                                 continue;
415                         }
416                         /*
417                          * Removing the primary NID implies removing
418                          * the entire peer. Advance next beyond any
419                          * peer_ni that belongs to the same peer.
420                          */
421                         list_for_each_entry_from(next, &ptable->pt_hash[i],
422                                                  lpni_hashlist) {
423                                 if (next->lpni_peer_net->lpn_peer != peer)
424                                         break;
425                         }
426                         lnet_peer_del_locked(peer);
427                 }
428         }
429 }
430
431 static void
432 lnet_peer_ni_finalize_wait(struct lnet_peer_table *ptable)
433 {
434         int     i = 3;
435
436         spin_lock(&ptable->pt_zombie_lock);
437         while (ptable->pt_zombies) {
438                 spin_unlock(&ptable->pt_zombie_lock);
439
440                 if (IS_PO2(i)) {
441                         CDEBUG(D_WARNING,
442                                "Waiting for %d zombies on peer table\n",
443                                ptable->pt_zombies);
444                 }
445                 set_current_state(TASK_UNINTERRUPTIBLE);
446                 schedule_timeout(cfs_time_seconds(1) >> 1);
447                 spin_lock(&ptable->pt_zombie_lock);
448         }
449         spin_unlock(&ptable->pt_zombie_lock);
450 }
451
452 static void
453 lnet_peer_table_del_rtrs_locked(struct lnet_net *net,
454                                 struct lnet_peer_table *ptable)
455 {
456         struct lnet_peer_ni     *lp;
457         struct lnet_peer_ni     *tmp;
458         lnet_nid_t              lpni_nid;
459         int                     i;
460
461         for (i = 0; i < LNET_PEER_HASH_SIZE; i++) {
462                 list_for_each_entry_safe(lp, tmp, &ptable->pt_hash[i],
463                                          lpni_hashlist) {
464                         if (net != lp->lpni_net)
465                                 continue;
466
467                         if (lp->lpni_rtr_refcount == 0)
468                                 continue;
469
470                         lpni_nid = lp->lpni_nid;
471
472                         lnet_net_unlock(LNET_LOCK_EX);
473                         lnet_del_route(LNET_NIDNET(LNET_NID_ANY), lpni_nid);
474                         lnet_net_lock(LNET_LOCK_EX);
475                 }
476         }
477 }
478
479 void
480 lnet_peer_tables_cleanup(struct lnet_net *net)
481 {
482         int                             i;
483         struct lnet_peer_table          *ptable;
484
485         LASSERT(the_lnet.ln_state != LNET_STATE_SHUTDOWN || net != NULL);
486         /* If just deleting the peers for a NI, get rid of any routes these
487          * peers are gateways for. */
488         cfs_percpt_for_each(ptable, i, the_lnet.ln_peer_tables) {
489                 lnet_net_lock(LNET_LOCK_EX);
490                 lnet_peer_table_del_rtrs_locked(net, ptable);
491                 lnet_net_unlock(LNET_LOCK_EX);
492         }
493
494         /* Start the cleanup process */
495         cfs_percpt_for_each(ptable, i, the_lnet.ln_peer_tables) {
496                 lnet_net_lock(LNET_LOCK_EX);
497                 lnet_peer_table_cleanup_locked(net, ptable);
498                 lnet_net_unlock(LNET_LOCK_EX);
499         }
500
501         cfs_percpt_for_each(ptable, i, the_lnet.ln_peer_tables)
502                 lnet_peer_ni_finalize_wait(ptable);
503 }
504
505 static struct lnet_peer_ni *
506 lnet_get_peer_ni_locked(struct lnet_peer_table *ptable, lnet_nid_t nid)
507 {
508         struct list_head        *peers;
509         struct lnet_peer_ni     *lp;
510
511         LASSERT(the_lnet.ln_state == LNET_STATE_RUNNING);
512
513         peers = &ptable->pt_hash[lnet_nid2peerhash(nid)];
514         list_for_each_entry(lp, peers, lpni_hashlist) {
515                 if (lp->lpni_nid == nid) {
516                         lnet_peer_ni_addref_locked(lp);
517                         return lp;
518                 }
519         }
520
521         return NULL;
522 }
523
524 struct lnet_peer_ni *
525 lnet_find_peer_ni_locked(lnet_nid_t nid)
526 {
527         struct lnet_peer_ni *lpni;
528         struct lnet_peer_table *ptable;
529         int cpt;
530
531         cpt = lnet_nid_cpt_hash(nid, LNET_CPT_NUMBER);
532
533         ptable = the_lnet.ln_peer_tables[cpt];
534         lpni = lnet_get_peer_ni_locked(ptable, nid);
535
536         return lpni;
537 }
538
539 struct lnet_peer *
540 lnet_find_or_create_peer_locked(lnet_nid_t dst_nid, int cpt)
541 {
542         struct lnet_peer_ni *lpni;
543         struct lnet_peer *lp;
544
545         lpni = lnet_find_peer_ni_locked(dst_nid);
546         if (!lpni) {
547                 lpni = lnet_nid2peerni_locked(dst_nid, cpt);
548                 if (IS_ERR(lpni))
549                         return ERR_CAST(lpni);
550         }
551
552         lp = lpni->lpni_peer_net->lpn_peer;
553         lnet_peer_ni_decref_locked(lpni);
554
555         return lp;
556 }
557
558 struct lnet_peer_ni *
559 lnet_get_peer_ni_idx_locked(int idx, struct lnet_peer_net **lpn,
560                             struct lnet_peer **lp)
561 {
562         struct lnet_peer_ni     *lpni;
563
564         list_for_each_entry((*lp), &the_lnet.ln_peers, lp_on_lnet_peer_list) {
565                 list_for_each_entry((*lpn), &((*lp)->lp_peer_nets), lpn_on_peer_list) {
566                         list_for_each_entry(lpni, &((*lpn)->lpn_peer_nis),
567                                             lpni_on_peer_net_list)
568                                 if (idx-- == 0)
569                                         return lpni;
570                 }
571         }
572
573         return NULL;
574 }
575
576 struct lnet_peer_ni *
577 lnet_get_next_peer_ni_locked(struct lnet_peer *peer,
578                              struct lnet_peer_net *peer_net,
579                              struct lnet_peer_ni *prev)
580 {
581         struct lnet_peer_ni *lpni;
582         struct lnet_peer_net *net = peer_net;
583
584         if (!prev) {
585                 if (!net)
586                         net = list_entry(peer->lp_peer_nets.next,
587                                          struct lnet_peer_net,
588                                          lpn_on_peer_list);
589                 lpni = list_entry(net->lpn_peer_nis.next, struct lnet_peer_ni,
590                                   lpni_on_peer_net_list);
591
592                 return lpni;
593         }
594
595         if (prev->lpni_on_peer_net_list.next ==
596             &prev->lpni_peer_net->lpn_peer_nis) {
597                 /*
598                  * if you reached the end of the peer ni list and the peer
599                  * net is specified then there are no more peer nis in that
600                  * net.
601                  */
602                 if (net)
603                         return NULL;
604
605                 /*
606                  * we reached the end of this net ni list. move to the
607                  * next net
608                  */
609                 if (prev->lpni_peer_net->lpn_on_peer_list.next ==
610                     &peer->lp_peer_nets)
611                         /* no more nets and no more NIs. */
612                         return NULL;
613
614                 /* get the next net */
615                 net = list_entry(prev->lpni_peer_net->lpn_on_peer_list.next,
616                                  struct lnet_peer_net,
617                                  lpn_on_peer_list);
618                 /* get the ni on it */
619                 lpni = list_entry(net->lpn_peer_nis.next, struct lnet_peer_ni,
620                                   lpni_on_peer_net_list);
621
622                 return lpni;
623         }
624
625         /* there are more nis left */
626         lpni = list_entry(prev->lpni_on_peer_net_list.next,
627                           struct lnet_peer_ni, lpni_on_peer_net_list);
628
629         return lpni;
630 }
631
632 bool
633 lnet_peer_is_ni_pref_locked(struct lnet_peer_ni *lpni, struct lnet_ni *ni)
634 {
635         int i;
636
637         for (i = 0; i < lpni->lpni_pref_nnids; i++) {
638                 if (lpni->lpni_pref_nids[i] == ni->ni_nid)
639                         return true;
640         }
641         return false;
642 }
643
644 lnet_nid_t
645 lnet_peer_primary_nid(lnet_nid_t nid)
646 {
647         struct lnet_peer_ni *lpni;
648         lnet_nid_t primary_nid = nid;
649         int cpt;
650
651         cpt = lnet_net_lock_current();
652         lpni = lnet_find_peer_ni_locked(nid);
653         if (lpni) {
654                 primary_nid = lpni->lpni_peer_net->lpn_peer->lp_primary_nid;
655                 lnet_peer_ni_decref_locked(lpni);
656         }
657         lnet_net_unlock(cpt);
658
659         return primary_nid;
660 }
661
662 lnet_nid_t
663 LNetPrimaryNID(lnet_nid_t nid)
664 {
665         struct lnet_peer_ni *lpni;
666         lnet_nid_t primary_nid = nid;
667         int rc = 0;
668         int cpt;
669
670         cpt = lnet_net_lock_current();
671         lpni = lnet_nid2peerni_locked(nid, cpt);
672         if (IS_ERR(lpni)) {
673                 rc = PTR_ERR(lpni);
674                 goto out_unlock;
675         }
676         primary_nid = lpni->lpni_peer_net->lpn_peer->lp_primary_nid;
677         lnet_peer_ni_decref_locked(lpni);
678 out_unlock:
679         lnet_net_unlock(cpt);
680
681         CDEBUG(D_NET, "NID %s primary NID %s rc %d\n", libcfs_nid2str(nid),
682                libcfs_nid2str(primary_nid), rc);
683         return primary_nid;
684 }
685 EXPORT_SYMBOL(LNetPrimaryNID);
686
687 struct lnet_peer_net *
688 lnet_peer_get_net_locked(struct lnet_peer *peer, __u32 net_id)
689 {
690         struct lnet_peer_net *peer_net;
691         list_for_each_entry(peer_net, &peer->lp_peer_nets, lpn_on_peer_list) {
692                 if (peer_net->lpn_net_id == net_id)
693                         return peer_net;
694         }
695         return NULL;
696 }
697
698 static int
699 lnet_peer_setup_hierarchy(struct lnet_peer *lp, struct lnet_peer_ni *lpni,
700                           lnet_nid_t nid)
701 {
702         struct lnet_peer_net *lpn = NULL;
703         struct lnet_peer_table *ptable;
704         __u32 net_id = LNET_NIDNET(nid);
705
706         /*
707          * Create the peer_ni, peer_net, and peer if they don't exist
708          * yet.
709          */
710         if (lp) {
711                 lpn = lnet_peer_get_net_locked(lp, net_id);
712         } else {
713                 lp = lnet_peer_alloc(nid);
714                 if (!lp)
715                         goto out_enomem;
716         }
717
718         if (!lpn) {
719                 lpn = lnet_peer_net_alloc(net_id);
720                 if (!lpn)
721                         goto out_maybe_free_lp;
722         }
723
724         if (!lpni) {
725                 lpni = lnet_peer_ni_alloc(nid);
726                 if (!lpni)
727                         goto out_maybe_free_lpn;
728         }
729
730         /* Install the new peer_ni */
731         lnet_net_lock(LNET_LOCK_EX);
732         /* Add peer_ni to global peer table hash, if necessary. */
733         if (list_empty(&lpni->lpni_hashlist)) {
734                 ptable = the_lnet.ln_peer_tables[lpni->lpni_cpt];
735                 list_add_tail(&lpni->lpni_hashlist,
736                               &ptable->pt_hash[lnet_nid2peerhash(nid)]);
737                 ptable->pt_version++;
738                 atomic_inc(&ptable->pt_number);
739                 atomic_inc(&lpni->lpni_refcount);
740         }
741
742         /* Detach the peer_ni from an existing peer, if necessary. */
743         if (lpni->lpni_peer_net && lpni->lpni_peer_net->lpn_peer != lp)
744                 lnet_try_destroy_peer_hierarchy_locked(lpni);
745
746         /* Add peer_ni to peer_net */
747         lpni->lpni_peer_net = lpn;
748         list_add_tail(&lpni->lpni_on_peer_net_list, &lpn->lpn_peer_nis);
749
750         /* Add peer_net to peer */
751         if (!lpn->lpn_peer) {
752                 lpn->lpn_peer = lp;
753                 list_add_tail(&lpn->lpn_on_peer_list, &lp->lp_peer_nets);
754         }
755
756         /* Add peer to global peer list */
757         if (list_empty(&lp->lp_on_lnet_peer_list))
758                 list_add_tail(&lp->lp_on_lnet_peer_list, &the_lnet.ln_peers);
759         lnet_net_unlock(LNET_LOCK_EX);
760
761         return 0;
762
763 out_maybe_free_lpn:
764         if (list_empty(&lpn->lpn_on_peer_list))
765                 LIBCFS_FREE(lpn, sizeof(*lpn));
766 out_maybe_free_lp:
767         if (list_empty(&lp->lp_on_lnet_peer_list))
768                 LIBCFS_FREE(lp, sizeof(*lp));
769 out_enomem:
770         return -ENOMEM;
771 }
772
773 static int
774 lnet_add_prim_lpni(lnet_nid_t nid)
775 {
776         int rc;
777         struct lnet_peer *peer;
778         struct lnet_peer_ni *lpni;
779
780         LASSERT(nid != LNET_NID_ANY);
781
782         /*
783          * lookup the NID and its peer
784          *  if the peer doesn't exist, create it.
785          *  if this is a non-MR peer then change its state to MR and exit.
786          *  if this is an MR peer and it's a primary NI: NO-OP.
787          *  if this is an MR peer and it's not a primary NI. Operation not
788          *     allowed.
789          *
790          * The adding and deleting of peer nis is being serialized through
791          * the api_mutex. So we can look up peers with the mutex locked
792          * safely. Only when we need to change the ptable, do we need to
793          * exclusively lock the lnet_net_lock()
794          */
795         lpni = lnet_find_peer_ni_locked(nid);
796         if (!lpni) {
797                 rc = lnet_peer_setup_hierarchy(NULL, NULL, nid);
798                 if (rc != 0)
799                         return rc;
800                 lpni = lnet_find_peer_ni_locked(nid);
801         }
802
803         LASSERT(lpni);
804
805         lnet_peer_ni_decref_locked(lpni);
806
807         peer = lpni->lpni_peer_net->lpn_peer;
808
809         /*
810          * If we found a lpni with the same nid as the NID we're trying to
811          * create, then we're trying to create an already existing lpni 
812          * that belongs to a different peer
813          */
814         if (peer->lp_primary_nid != nid)
815                 return -EEXIST;
816
817         /*
818          * if we found an lpni that is not a multi-rail, which could occur
819          * if lpni is already created as a non-mr lpni or we just created
820          * it, then make sure you indicate that this lpni is a primary mr
821          * capable peer.
822          *
823          * TODO: update flags if necessary
824          */
825         if (!peer->lp_multi_rail && peer->lp_primary_nid == nid)
826                 peer->lp_multi_rail = true;
827
828         return rc;
829 }
830
831 static int
832 lnet_add_peer_ni_to_prim_lpni(lnet_nid_t prim_nid, lnet_nid_t nid)
833 {
834         struct lnet_peer *peer, *primary_peer;
835         struct lnet_peer_ni *lpni = NULL, *klpni = NULL;
836
837         LASSERT(prim_nid != LNET_NID_ANY && nid != LNET_NID_ANY);
838
839         /*
840          * key nid must be created by this point. If not then this
841          * operation is not permitted
842          */
843         klpni = lnet_find_peer_ni_locked(prim_nid);
844         if (!klpni)
845                 return -ENOENT;
846
847         lnet_peer_ni_decref_locked(klpni);
848
849         primary_peer = klpni->lpni_peer_net->lpn_peer;
850
851         lpni = lnet_find_peer_ni_locked(nid);
852         if (lpni) {
853                 lnet_peer_ni_decref_locked(lpni);
854
855                 peer = lpni->lpni_peer_net->lpn_peer;
856                 /*
857                  * lpni already exists in the system but it belongs to
858                  * a different peer. We can't re-added it
859                  */
860                 if (peer->lp_primary_nid != prim_nid && peer->lp_multi_rail) {
861                         CERROR("Cannot add NID %s owned by peer %s to peer %s\n",
862                                libcfs_nid2str(lpni->lpni_nid),
863                                libcfs_nid2str(peer->lp_primary_nid),
864                                libcfs_nid2str(prim_nid));
865                         return -EEXIST;
866                 } else if (peer->lp_primary_nid == prim_nid) {
867                         /*
868                          * found a peer_ni that is already part of the
869                          * peer. This is a no-op operation.
870                          */
871                         return 0;
872                 }
873
874                 /*
875                  * TODO: else if (peer->lp_primary_nid != prim_nid &&
876                  *                !peer->lp_multi_rail)
877                  * peer is not an MR peer and it will be moved in the next
878                  * step to klpni, so update its flags accordingly.
879                  * lnet_move_peer_ni()
880                  */
881
882                 /*
883                  * TODO: call lnet_update_peer() from here to update the
884                  * flags. This is the case when the lpni you're trying to
885                  * add is already part of the peer. This could've been
886                  * added by the DD previously, so go ahead and do any
887                  * updates to the state if necessary
888                  */
889
890         }
891
892         /*
893          * When we get here we either have found an existing lpni, which
894          * we can switch to the new peer. Or we need to create one and
895          * add it to the new peer
896          */
897         return lnet_peer_setup_hierarchy(primary_peer, lpni, nid);
898 }
899
900 /*
901  * lpni creation initiated due to traffic either sending or receiving.
902  */
903 static int
904 lnet_peer_ni_traffic_add(lnet_nid_t nid)
905 {
906         struct lnet_peer_ni *lpni;
907         int rc = 0;
908
909         if (nid == LNET_NID_ANY)
910                 return -EINVAL;
911
912         /* lnet_net_lock is not needed here because ln_api_lock is held */
913         lpni = lnet_find_peer_ni_locked(nid);
914         if (lpni) {
915                 /*
916                  * TODO: lnet_update_primary_nid() but not all of it
917                  * only indicate if we're converting this to MR capable
918                  * Can happen due to DD
919                  */
920                 lnet_peer_ni_decref_locked(lpni);
921         } else {
922                 rc = lnet_peer_setup_hierarchy(NULL, NULL, nid);
923         }
924
925         return rc;
926
927 }
928
929 static int
930 lnet_peer_ni_add_non_mr(lnet_nid_t nid)
931 {
932         struct lnet_peer_ni *lpni;
933
934         lpni = lnet_find_peer_ni_locked(nid);
935         if (lpni) {
936                 CERROR("Cannot add %s as non-mr when it already exists\n",
937                        libcfs_nid2str(nid));
938                 lnet_peer_ni_decref_locked(lpni);
939                 return -EEXIST;
940         }
941
942         return lnet_peer_setup_hierarchy(NULL, NULL, nid);
943 }
944
945 /*
946  * Implementation of IOC_LIBCFS_ADD_PEER_NI.
947  *
948  * This API handles the following combinations:
949  *   Create a primary NI if only the prim_nid is provided
950  *   Create or add an lpni to a primary NI. Primary NI must've already
951  *   been created
952  *   Create a non-MR peer.
953  */
954 int
955 lnet_add_peer_ni(lnet_nid_t prim_nid, lnet_nid_t nid, bool mr)
956 {
957         /*
958          * Caller trying to setup an MR like peer hierarchy but
959          * specifying it to be non-MR. This is not allowed.
960          */
961         if (prim_nid != LNET_NID_ANY &&
962             nid != LNET_NID_ANY && !mr)
963                 return -EPERM;
964
965         /* Add the primary NID of a peer */
966         if (prim_nid != LNET_NID_ANY &&
967             nid == LNET_NID_ANY && mr)
968                 return lnet_add_prim_lpni(prim_nid);
969
970         /* Add a NID to an existing peer */
971         if (prim_nid != LNET_NID_ANY &&
972             nid != LNET_NID_ANY && mr)
973                 return lnet_add_peer_ni_to_prim_lpni(prim_nid, nid);
974
975         /* Add a non-MR peer NI */
976         if (((prim_nid != LNET_NID_ANY &&
977               nid == LNET_NID_ANY) ||
978              (prim_nid == LNET_NID_ANY &&
979               nid != LNET_NID_ANY)) && !mr)
980                 return lnet_peer_ni_add_non_mr(prim_nid != LNET_NID_ANY ?
981                                                          prim_nid : nid);
982
983         return 0;
984 }
985
986 /*
987  * Implementation of IOC_LIBCFS_DEL_PEER_NI.
988  *
989  * This API handles the following combinations:
990  *   Delete a NI from a peer if both prim_nid and nid are provided.
991  *   Delete a peer if only prim_nid is provided.
992  *   Delete a peer if its primary nid is provided.
993  *
994  * The caller must hold ln_api_mutex. This prevents the peer from
995  * being modified/deleted by a different thread.
996  */
997 int
998 lnet_del_peer_ni(lnet_nid_t prim_nid, lnet_nid_t nid)
999 {
1000         struct lnet_peer *lp;
1001         struct lnet_peer_ni *lpni;
1002
1003         if (prim_nid == LNET_NID_ANY)
1004                 return -EINVAL;
1005
1006         lpni = lnet_find_peer_ni_locked(prim_nid);
1007         if (!lpni)
1008                 return -ENOENT;
1009         lnet_peer_ni_decref_locked(lpni);
1010         lp = lpni->lpni_peer_net->lpn_peer;
1011
1012         if (prim_nid != lp->lp_primary_nid) {
1013                 CDEBUG(D_NET, "prim_nid %s is not primary for peer %s\n",
1014                        libcfs_nid2str(prim_nid),
1015                        libcfs_nid2str(lp->lp_primary_nid));
1016                 return -ENODEV;
1017         }
1018
1019         if (nid == LNET_NID_ANY || nid == lp->lp_primary_nid)
1020                 return lnet_peer_del(lp);
1021
1022         return lnet_peer_del_nid(lp, nid);
1023 }
1024
1025 void
1026 lnet_destroy_peer_ni_locked(struct lnet_peer_ni *lpni)
1027 {
1028         struct lnet_peer_table *ptable;
1029
1030         LASSERT(atomic_read(&lpni->lpni_refcount) == 0);
1031         LASSERT(lpni->lpni_rtr_refcount == 0);
1032         LASSERT(list_empty(&lpni->lpni_txq));
1033         LASSERT(lpni->lpni_txqnob == 0);
1034
1035         lpni->lpni_net = NULL;
1036
1037         /* remove the peer ni from the zombie list */
1038         ptable = the_lnet.ln_peer_tables[lpni->lpni_cpt];
1039         spin_lock(&ptable->pt_zombie_lock);
1040         list_del_init(&lpni->lpni_hashlist);
1041         ptable->pt_zombies--;
1042         spin_unlock(&ptable->pt_zombie_lock);
1043
1044         LIBCFS_FREE(lpni, sizeof(*lpni));
1045 }
1046
1047 struct lnet_peer_ni *
1048 lnet_nid2peerni_ex(lnet_nid_t nid, int cpt)
1049 {
1050         struct lnet_peer_ni *lpni = NULL;
1051         int rc;
1052
1053         if (the_lnet.ln_state != LNET_STATE_RUNNING)
1054                 return ERR_PTR(-ESHUTDOWN);
1055
1056         /*
1057          * find if a peer_ni already exists.
1058          * If so then just return that.
1059          */
1060         lpni = lnet_find_peer_ni_locked(nid);
1061         if (lpni)
1062                 return lpni;
1063
1064         lnet_net_unlock(cpt);
1065
1066         rc = lnet_peer_ni_traffic_add(nid);
1067         if (rc) {
1068                 lpni = ERR_PTR(rc);
1069                 goto out_net_relock;
1070         }
1071
1072         lpni = lnet_find_peer_ni_locked(nid);
1073         LASSERT(lpni);
1074
1075 out_net_relock:
1076         lnet_net_lock(cpt);
1077
1078         return lpni;
1079 }
1080
1081 struct lnet_peer_ni *
1082 lnet_nid2peerni_locked(lnet_nid_t nid, int cpt)
1083 {
1084         struct lnet_peer_ni *lpni = NULL;
1085         int rc;
1086
1087         if (the_lnet.ln_state != LNET_STATE_RUNNING)
1088                 return ERR_PTR(-ESHUTDOWN);
1089
1090         /*
1091          * find if a peer_ni already exists.
1092          * If so then just return that.
1093          */
1094         lpni = lnet_find_peer_ni_locked(nid);
1095         if (lpni)
1096                 return lpni;
1097
1098         /*
1099          * Slow path:
1100          * use the lnet_api_mutex to serialize the creation of the peer_ni
1101          * and the creation/deletion of the local ni/net. When a local ni is
1102          * created, if there exists a set of peer_nis on that network,
1103          * they need to be traversed and updated. When a local NI is
1104          * deleted, which could result in a network being deleted, then
1105          * all peer nis on that network need to be removed as well.
1106          *
1107          * Creation through traffic should also be serialized with
1108          * creation through DLC.
1109          */
1110         lnet_net_unlock(cpt);
1111         mutex_lock(&the_lnet.ln_api_mutex);
1112         /*
1113          * Shutdown is only set under the ln_api_lock, so a single
1114          * check here is sufficent.
1115          */
1116         if (the_lnet.ln_state != LNET_STATE_RUNNING) {
1117                 lpni = ERR_PTR(-ESHUTDOWN);
1118                 goto out_mutex_unlock;
1119         }
1120
1121         rc = lnet_peer_ni_traffic_add(nid);
1122         if (rc) {
1123                 lpni = ERR_PTR(rc);
1124                 goto out_mutex_unlock;
1125         }
1126
1127         lpni = lnet_find_peer_ni_locked(nid);
1128         LASSERT(lpni);
1129
1130 out_mutex_unlock:
1131         mutex_unlock(&the_lnet.ln_api_mutex);
1132         lnet_net_lock(cpt);
1133
1134         return lpni;
1135 }
1136
1137 void
1138 lnet_debug_peer(lnet_nid_t nid)
1139 {
1140         char                    *aliveness = "NA";
1141         struct lnet_peer_ni     *lp;
1142         int                     cpt;
1143
1144         cpt = lnet_cpt_of_nid(nid, NULL);
1145         lnet_net_lock(cpt);
1146
1147         lp = lnet_nid2peerni_locked(nid, cpt);
1148         if (IS_ERR(lp)) {
1149                 lnet_net_unlock(cpt);
1150                 CDEBUG(D_WARNING, "No peer %s\n", libcfs_nid2str(nid));
1151                 return;
1152         }
1153
1154         if (lnet_isrouter(lp) || lnet_peer_aliveness_enabled(lp))
1155                 aliveness = lp->lpni_alive ? "up" : "down";
1156
1157         CDEBUG(D_WARNING, "%-24s %4d %5s %5d %5d %5d %5d %5d %ld\n",
1158                libcfs_nid2str(lp->lpni_nid), atomic_read(&lp->lpni_refcount),
1159                aliveness, lp->lpni_net->net_tunables.lct_peer_tx_credits,
1160                lp->lpni_rtrcredits, lp->lpni_minrtrcredits,
1161                lp->lpni_txcredits, lp->lpni_mintxcredits, lp->lpni_txqnob);
1162
1163         lnet_peer_ni_decref_locked(lp);
1164
1165         lnet_net_unlock(cpt);
1166 }
1167
1168 int lnet_get_peer_ni_info(__u32 peer_index, __u64 *nid,
1169                           char aliveness[LNET_MAX_STR_LEN],
1170                           __u32 *cpt_iter, __u32 *refcount,
1171                           __u32 *ni_peer_tx_credits, __u32 *peer_tx_credits,
1172                           __u32 *peer_rtr_credits, __u32 *peer_min_rtr_credits,
1173                           __u32 *peer_tx_qnob)
1174 {
1175         struct lnet_peer_table          *peer_table;
1176         struct lnet_peer_ni             *lp;
1177         int                             j;
1178         int                             lncpt;
1179         bool                            found = false;
1180
1181         /* get the number of CPTs */
1182         lncpt = cfs_percpt_number(the_lnet.ln_peer_tables);
1183
1184         /* if the cpt number to be examined is >= the number of cpts in
1185          * the system then indicate that there are no more cpts to examin
1186          */
1187         if (*cpt_iter >= lncpt)
1188                 return -ENOENT;
1189
1190         /* get the current table */
1191         peer_table = the_lnet.ln_peer_tables[*cpt_iter];
1192         /* if the ptable is NULL then there are no more cpts to examine */
1193         if (peer_table == NULL)
1194                 return -ENOENT;
1195
1196         lnet_net_lock(*cpt_iter);
1197
1198         for (j = 0; j < LNET_PEER_HASH_SIZE && !found; j++) {
1199                 struct list_head *peers = &peer_table->pt_hash[j];
1200
1201                 list_for_each_entry(lp, peers, lpni_hashlist) {
1202                         if (peer_index-- > 0)
1203                                 continue;
1204
1205                         snprintf(aliveness, LNET_MAX_STR_LEN, "NA");
1206                         if (lnet_isrouter(lp) ||
1207                                 lnet_peer_aliveness_enabled(lp))
1208                                 snprintf(aliveness, LNET_MAX_STR_LEN,
1209                                          lp->lpni_alive ? "up" : "down");
1210
1211                         *nid = lp->lpni_nid;
1212                         *refcount = atomic_read(&lp->lpni_refcount);
1213                         *ni_peer_tx_credits =
1214                                 lp->lpni_net->net_tunables.lct_peer_tx_credits;
1215                         *peer_tx_credits = lp->lpni_txcredits;
1216                         *peer_rtr_credits = lp->lpni_rtrcredits;
1217                         *peer_min_rtr_credits = lp->lpni_mintxcredits;
1218                         *peer_tx_qnob = lp->lpni_txqnob;
1219
1220                         found = true;
1221                 }
1222
1223         }
1224         lnet_net_unlock(*cpt_iter);
1225
1226         *cpt_iter = lncpt;
1227
1228         return found ? 0 : -ENOENT;
1229 }
1230
1231 int lnet_get_peer_info(__u32 idx, lnet_nid_t *primary_nid, lnet_nid_t *nid,
1232                        bool *mr, struct lnet_peer_ni_credit_info *peer_ni_info,
1233                        struct lnet_ioctl_element_stats *peer_ni_stats)
1234 {
1235         struct lnet_peer_ni *lpni = NULL;
1236         struct lnet_peer_net *lpn = NULL;
1237         struct lnet_peer *lp = NULL;
1238
1239         lpni = lnet_get_peer_ni_idx_locked(idx, &lpn, &lp);
1240
1241         if (!lpni)
1242                 return -ENOENT;
1243
1244         *primary_nid = lp->lp_primary_nid;
1245         *mr = lp->lp_multi_rail;
1246         *nid = lpni->lpni_nid;
1247         snprintf(peer_ni_info->cr_aliveness, LNET_MAX_STR_LEN, "NA");
1248         if (lnet_isrouter(lpni) ||
1249                 lnet_peer_aliveness_enabled(lpni))
1250                 snprintf(peer_ni_info->cr_aliveness, LNET_MAX_STR_LEN,
1251                          lpni->lpni_alive ? "up" : "down");
1252
1253         peer_ni_info->cr_refcount = atomic_read(&lpni->lpni_refcount);
1254         peer_ni_info->cr_ni_peer_tx_credits = (lpni->lpni_net != NULL) ?
1255                 lpni->lpni_net->net_tunables.lct_peer_tx_credits : 0;
1256         peer_ni_info->cr_peer_tx_credits = lpni->lpni_txcredits;
1257         peer_ni_info->cr_peer_rtr_credits = lpni->lpni_rtrcredits;
1258         peer_ni_info->cr_peer_min_rtr_credits = lpni->lpni_minrtrcredits;
1259         peer_ni_info->cr_peer_min_tx_credits = lpni->lpni_mintxcredits;
1260         peer_ni_info->cr_peer_tx_qnob = lpni->lpni_txqnob;
1261
1262         peer_ni_stats->send_count = atomic_read(&lpni->lpni_stats.send_count);
1263         peer_ni_stats->recv_count = atomic_read(&lpni->lpni_stats.recv_count);
1264         peer_ni_stats->drop_count = atomic_read(&lpni->lpni_stats.drop_count);
1265
1266         return 0;
1267 }