Whamcloud - gitweb
LU-12423 lnet: honor discovery setting
[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, 2017, 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 <linux/sched.h>
38 #ifdef HAVE_SCHED_HEADERS
39 #include <linux/sched/signal.h>
40 #endif
41 #include <linux/uaccess.h>
42
43 #include <lnet/lib-lnet.h>
44 #include <uapi/linux/lnet/lnet-dlc.h>
45
46 /* Value indicating that recovery needs to re-check a peer immediately. */
47 #define LNET_REDISCOVER_PEER    (1)
48
49 static int lnet_peer_queue_for_discovery(struct lnet_peer *lp);
50
51 static void
52 lnet_peer_remove_from_remote_list(struct lnet_peer_ni *lpni)
53 {
54         if (!list_empty(&lpni->lpni_on_remote_peer_ni_list)) {
55                 list_del_init(&lpni->lpni_on_remote_peer_ni_list);
56                 lnet_peer_ni_decref_locked(lpni);
57         }
58 }
59
60 void
61 lnet_peer_net_added(struct lnet_net *net)
62 {
63         struct lnet_peer_ni *lpni, *tmp;
64
65         list_for_each_entry_safe(lpni, tmp, &the_lnet.ln_remote_peer_ni_list,
66                                  lpni_on_remote_peer_ni_list) {
67
68                 if (LNET_NIDNET(lpni->lpni_nid) == net->net_id) {
69                         lpni->lpni_net = net;
70
71                         spin_lock(&lpni->lpni_lock);
72                         lpni->lpni_txcredits =
73                                 lpni->lpni_net->net_tunables.lct_peer_tx_credits;
74                         lpni->lpni_mintxcredits = lpni->lpni_txcredits;
75                         lpni->lpni_rtrcredits =
76                                 lnet_peer_buffer_credits(lpni->lpni_net);
77                         lpni->lpni_minrtrcredits = lpni->lpni_rtrcredits;
78                         spin_unlock(&lpni->lpni_lock);
79
80                         lnet_peer_remove_from_remote_list(lpni);
81                 }
82         }
83 }
84
85 static void
86 lnet_peer_tables_destroy(void)
87 {
88         struct lnet_peer_table  *ptable;
89         struct list_head        *hash;
90         int                     i;
91         int                     j;
92
93         if (!the_lnet.ln_peer_tables)
94                 return;
95
96         cfs_percpt_for_each(ptable, i, the_lnet.ln_peer_tables) {
97                 hash = ptable->pt_hash;
98                 if (!hash) /* not intialized */
99                         break;
100
101                 LASSERT(list_empty(&ptable->pt_zombie_list));
102
103                 ptable->pt_hash = NULL;
104                 for (j = 0; j < LNET_PEER_HASH_SIZE; j++)
105                         LASSERT(list_empty(&hash[j]));
106
107                 LIBCFS_FREE(hash, LNET_PEER_HASH_SIZE * sizeof(*hash));
108         }
109
110         cfs_percpt_free(the_lnet.ln_peer_tables);
111         the_lnet.ln_peer_tables = NULL;
112 }
113
114 int
115 lnet_peer_tables_create(void)
116 {
117         struct lnet_peer_table  *ptable;
118         struct list_head        *hash;
119         int                     i;
120         int                     j;
121
122         the_lnet.ln_peer_tables = cfs_percpt_alloc(lnet_cpt_table(),
123                                                    sizeof(*ptable));
124         if (the_lnet.ln_peer_tables == NULL) {
125                 CERROR("Failed to allocate cpu-partition peer tables\n");
126                 return -ENOMEM;
127         }
128
129         cfs_percpt_for_each(ptable, i, the_lnet.ln_peer_tables) {
130                 LIBCFS_CPT_ALLOC(hash, lnet_cpt_table(), i,
131                                  LNET_PEER_HASH_SIZE * sizeof(*hash));
132                 if (hash == NULL) {
133                         CERROR("Failed to create peer hash table\n");
134                         lnet_peer_tables_destroy();
135                         return -ENOMEM;
136                 }
137
138                 spin_lock_init(&ptable->pt_zombie_lock);
139                 INIT_LIST_HEAD(&ptable->pt_zombie_list);
140
141                 INIT_LIST_HEAD(&ptable->pt_peer_list);
142
143                 for (j = 0; j < LNET_PEER_HASH_SIZE; j++)
144                         INIT_LIST_HEAD(&hash[j]);
145                 ptable->pt_hash = hash; /* sign of initialization */
146         }
147
148         return 0;
149 }
150
151 static struct lnet_peer_ni *
152 lnet_peer_ni_alloc(lnet_nid_t nid)
153 {
154         struct lnet_peer_ni *lpni;
155         struct lnet_net *net;
156         int cpt;
157
158         cpt = lnet_nid_cpt_hash(nid, LNET_CPT_NUMBER);
159
160         LIBCFS_CPT_ALLOC(lpni, lnet_cpt_table(), cpt, sizeof(*lpni));
161         if (!lpni)
162                 return NULL;
163
164         INIT_LIST_HEAD(&lpni->lpni_txq);
165         INIT_LIST_HEAD(&lpni->lpni_hashlist);
166         INIT_LIST_HEAD(&lpni->lpni_peer_nis);
167         INIT_LIST_HEAD(&lpni->lpni_recovery);
168         INIT_LIST_HEAD(&lpni->lpni_on_remote_peer_ni_list);
169         LNetInvalidateMDHandle(&lpni->lpni_recovery_ping_mdh);
170
171         spin_lock_init(&lpni->lpni_lock);
172
173         if (lnet_peers_start_down())
174                 lpni->lpni_ns_status = LNET_NI_STATUS_DOWN;
175         else
176                 lpni->lpni_ns_status = LNET_NI_STATUS_UP;
177         lpni->lpni_ping_feats = LNET_PING_FEAT_INVAL;
178         lpni->lpni_nid = nid;
179         lpni->lpni_cpt = cpt;
180         atomic_set(&lpni->lpni_healthv, LNET_MAX_HEALTH_VALUE);
181
182         net = lnet_get_net_locked(LNET_NIDNET(nid));
183         lpni->lpni_net = net;
184         if (net) {
185                 lpni->lpni_txcredits = net->net_tunables.lct_peer_tx_credits;
186                 lpni->lpni_mintxcredits = lpni->lpni_txcredits;
187                 lpni->lpni_rtrcredits = lnet_peer_buffer_credits(net);
188                 lpni->lpni_minrtrcredits = lpni->lpni_rtrcredits;
189         } else {
190                 /*
191                  * This peer_ni is not on a local network, so we
192                  * cannot add the credits here. In case the net is
193                  * added later, add the peer_ni to the remote peer ni
194                  * list so it can be easily found and revisited.
195                  */
196                 /* FIXME: per-net implementation instead? */
197                 atomic_inc(&lpni->lpni_refcount);
198                 list_add_tail(&lpni->lpni_on_remote_peer_ni_list,
199                               &the_lnet.ln_remote_peer_ni_list);
200         }
201
202         CDEBUG(D_NET, "%p nid %s\n", lpni, libcfs_nid2str(lpni->lpni_nid));
203
204         return lpni;
205 }
206
207 static struct lnet_peer_net *
208 lnet_peer_net_alloc(__u32 net_id)
209 {
210         struct lnet_peer_net *lpn;
211
212         LIBCFS_CPT_ALLOC(lpn, lnet_cpt_table(), CFS_CPT_ANY, sizeof(*lpn));
213         if (!lpn)
214                 return NULL;
215
216         INIT_LIST_HEAD(&lpn->lpn_peer_nets);
217         INIT_LIST_HEAD(&lpn->lpn_peer_nis);
218         lpn->lpn_net_id = net_id;
219
220         CDEBUG(D_NET, "%p net %s\n", lpn, libcfs_net2str(lpn->lpn_net_id));
221
222         return lpn;
223 }
224
225 void
226 lnet_destroy_peer_net_locked(struct lnet_peer_net *lpn)
227 {
228         struct lnet_peer *lp;
229
230         CDEBUG(D_NET, "%p net %s\n", lpn, libcfs_net2str(lpn->lpn_net_id));
231
232         LASSERT(atomic_read(&lpn->lpn_refcount) == 0);
233         LASSERT(list_empty(&lpn->lpn_peer_nis));
234         LASSERT(list_empty(&lpn->lpn_peer_nets));
235         lp = lpn->lpn_peer;
236         lpn->lpn_peer = NULL;
237         LIBCFS_FREE(lpn, sizeof(*lpn));
238
239         lnet_peer_decref_locked(lp);
240 }
241
242 static struct lnet_peer *
243 lnet_peer_alloc(lnet_nid_t nid)
244 {
245         struct lnet_peer *lp;
246
247         LIBCFS_CPT_ALLOC(lp, lnet_cpt_table(), CFS_CPT_ANY, sizeof(*lp));
248         if (!lp)
249                 return NULL;
250
251         INIT_LIST_HEAD(&lp->lp_rtrq);
252         INIT_LIST_HEAD(&lp->lp_routes);
253         INIT_LIST_HEAD(&lp->lp_peer_list);
254         INIT_LIST_HEAD(&lp->lp_peer_nets);
255         INIT_LIST_HEAD(&lp->lp_dc_list);
256         INIT_LIST_HEAD(&lp->lp_dc_pendq);
257         INIT_LIST_HEAD(&lp->lp_rtr_list);
258         init_waitqueue_head(&lp->lp_dc_waitq);
259         spin_lock_init(&lp->lp_lock);
260         lp->lp_primary_nid = nid;
261
262         /*
263          * all peers created on a router should have health on
264          * if it's not already on.
265          */
266         if (the_lnet.ln_routing && !lnet_health_sensitivity)
267                 lp->lp_health_sensitivity = 1;
268
269         /*
270          * Turn off discovery for loopback peer. If you're creating a peer
271          * for the loopback interface then that was initiated when we
272          * attempted to send a message over the loopback. There is no need
273          * to ever use a different interface when sending messages to
274          * myself.
275          */
276         if (LNET_NETTYP(LNET_NIDNET(nid)) == LOLND)
277                 lp->lp_state = LNET_PEER_NO_DISCOVERY;
278         lp->lp_cpt = lnet_nid_cpt_hash(nid, LNET_CPT_NUMBER);
279
280         CDEBUG(D_NET, "%p nid %s\n", lp, libcfs_nid2str(lp->lp_primary_nid));
281
282         return lp;
283 }
284
285 void
286 lnet_destroy_peer_locked(struct lnet_peer *lp)
287 {
288         CDEBUG(D_NET, "%p nid %s\n", lp, libcfs_nid2str(lp->lp_primary_nid));
289
290         LASSERT(atomic_read(&lp->lp_refcount) == 0);
291         LASSERT(lp->lp_rtr_refcount == 0);
292         LASSERT(list_empty(&lp->lp_peer_nets));
293         LASSERT(list_empty(&lp->lp_peer_list));
294         LASSERT(list_empty(&lp->lp_dc_list));
295
296         if (lp->lp_data)
297                 lnet_ping_buffer_decref(lp->lp_data);
298
299         /*
300          * if there are messages still on the pending queue, then make
301          * sure to queue them on the ln_msg_resend list so they can be
302          * resent at a later point if the discovery thread is still
303          * running.
304          * If the discovery thread has stopped, then the wakeup will be a
305          * no-op, and it is expected the lnet_shutdown_lndnets() will
306          * eventually be called, which will traverse this list and
307          * finalize the messages on the list.
308          * We can not resend them now because we're holding the cpt lock.
309          * Releasing the lock can cause an inconsistent state
310          */
311         spin_lock(&the_lnet.ln_msg_resend_lock);
312         spin_lock(&lp->lp_lock);
313         list_splice(&lp->lp_dc_pendq, &the_lnet.ln_msg_resend);
314         spin_unlock(&lp->lp_lock);
315         spin_unlock(&the_lnet.ln_msg_resend_lock);
316         wake_up(&the_lnet.ln_dc_waitq);
317
318         LIBCFS_FREE(lp, sizeof(*lp));
319 }
320
321 /*
322  * Detach a peer_ni from its peer_net. If this was the last peer_ni on
323  * that peer_net, detach the peer_net from the peer.
324  *
325  * Call with lnet_net_lock/EX held
326  */
327 static void
328 lnet_peer_detach_peer_ni_locked(struct lnet_peer_ni *lpni)
329 {
330         struct lnet_peer_table *ptable;
331         struct lnet_peer_net *lpn;
332         struct lnet_peer *lp;
333
334         /*
335          * Belts and suspenders: gracefully handle teardown of a
336          * partially connected peer_ni.
337          */
338         lpn = lpni->lpni_peer_net;
339
340         list_del_init(&lpni->lpni_peer_nis);
341         /*
342          * If there are no lpni's left, we detach lpn from
343          * lp_peer_nets, so it cannot be found anymore.
344          */
345         if (list_empty(&lpn->lpn_peer_nis))
346                 list_del_init(&lpn->lpn_peer_nets);
347
348         /* Update peer NID count. */
349         lp = lpn->lpn_peer;
350         lp->lp_nnis--;
351
352         /*
353          * If there are no more peer nets, make the peer unfindable
354          * via the peer_tables.
355          *
356          * Otherwise, if the peer is DISCOVERED, tell discovery to
357          * take another look at it. This is a no-op if discovery for
358          * this peer did the detaching.
359          */
360         if (list_empty(&lp->lp_peer_nets)) {
361                 list_del_init(&lp->lp_peer_list);
362                 ptable = the_lnet.ln_peer_tables[lp->lp_cpt];
363                 ptable->pt_peers--;
364         } else if (the_lnet.ln_dc_state != LNET_DC_STATE_RUNNING) {
365                 /* Discovery isn't running, nothing to do here. */
366         } else if (lp->lp_state & LNET_PEER_DISCOVERED) {
367                 lnet_peer_queue_for_discovery(lp);
368                 wake_up(&the_lnet.ln_dc_waitq);
369         }
370         CDEBUG(D_NET, "peer %s NID %s\n",
371                 libcfs_nid2str(lp->lp_primary_nid),
372                 libcfs_nid2str(lpni->lpni_nid));
373 }
374
375 /* called with lnet_net_lock LNET_LOCK_EX held */
376 static int
377 lnet_peer_ni_del_locked(struct lnet_peer_ni *lpni, bool force)
378 {
379         struct lnet_peer_table *ptable = NULL;
380
381         /* don't remove a peer_ni if it's also a gateway */
382         if (lnet_isrouter(lpni) && !force) {
383                 CERROR("Peer NI %s is a gateway. Can not delete it\n",
384                        libcfs_nid2str(lpni->lpni_nid));
385                 return -EBUSY;
386         }
387
388         lnet_peer_remove_from_remote_list(lpni);
389
390         /* remove peer ni from the hash list. */
391         list_del_init(&lpni->lpni_hashlist);
392
393         /*
394          * indicate the peer is being deleted so the monitor thread can
395          * remove it from the recovery queue.
396          */
397         spin_lock(&lpni->lpni_lock);
398         lpni->lpni_state |= LNET_PEER_NI_DELETING;
399         spin_unlock(&lpni->lpni_lock);
400
401         /* decrement the ref count on the peer table */
402         ptable = the_lnet.ln_peer_tables[lpni->lpni_cpt];
403         LASSERT(ptable->pt_number > 0);
404         ptable->pt_number--;
405
406         /*
407          * The peer_ni can no longer be found with a lookup. But there
408          * can be current users, so keep track of it on the zombie
409          * list until the reference count has gone to zero.
410          *
411          * The last reference may be lost in a place where the
412          * lnet_net_lock locks only a single cpt, and that cpt may not
413          * be lpni->lpni_cpt. So the zombie list of lnet_peer_table
414          * has its own lock.
415          */
416         spin_lock(&ptable->pt_zombie_lock);
417         list_add(&lpni->lpni_hashlist, &ptable->pt_zombie_list);
418         ptable->pt_zombies++;
419         spin_unlock(&ptable->pt_zombie_lock);
420
421         /* no need to keep this peer_ni on the hierarchy anymore */
422         lnet_peer_detach_peer_ni_locked(lpni);
423
424         /* remove hashlist reference on peer_ni */
425         lnet_peer_ni_decref_locked(lpni);
426
427         return 0;
428 }
429
430 void lnet_peer_uninit(void)
431 {
432         struct lnet_peer_ni *lpni, *tmp;
433
434         lnet_net_lock(LNET_LOCK_EX);
435
436         /* remove all peer_nis from the remote peer and the hash list */
437         list_for_each_entry_safe(lpni, tmp, &the_lnet.ln_remote_peer_ni_list,
438                                  lpni_on_remote_peer_ni_list)
439                 lnet_peer_ni_del_locked(lpni, false);
440
441         lnet_peer_tables_destroy();
442
443         lnet_net_unlock(LNET_LOCK_EX);
444 }
445
446 static int
447 lnet_peer_del_locked(struct lnet_peer *peer)
448 {
449         struct lnet_peer_ni *lpni = NULL, *lpni2;
450         int rc = 0, rc2 = 0;
451
452         CDEBUG(D_NET, "peer %s\n", libcfs_nid2str(peer->lp_primary_nid));
453
454         lpni = lnet_get_next_peer_ni_locked(peer, NULL, lpni);
455         while (lpni != NULL) {
456                 lpni2 = lnet_get_next_peer_ni_locked(peer, NULL, lpni);
457                 rc = lnet_peer_ni_del_locked(lpni, false);
458                 if (rc != 0)
459                         rc2 = rc;
460                 lpni = lpni2;
461         }
462
463         return rc2;
464 }
465
466 static int
467 lnet_peer_del(struct lnet_peer *peer)
468 {
469         lnet_net_lock(LNET_LOCK_EX);
470         lnet_peer_del_locked(peer);
471         lnet_net_unlock(LNET_LOCK_EX);
472
473         return 0;
474 }
475
476 /*
477  * Delete a NID from a peer. Call with ln_api_mutex held.
478  *
479  * Error codes:
480  *  -EPERM:  Non-DLC deletion from DLC-configured peer.
481  *  -ENOENT: No lnet_peer_ni corresponding to the nid.
482  *  -ECHILD: The lnet_peer_ni isn't connected to the peer.
483  *  -EBUSY:  The lnet_peer_ni is the primary, and not the only peer_ni.
484  */
485 static int
486 lnet_peer_del_nid(struct lnet_peer *lp, lnet_nid_t nid, unsigned flags)
487 {
488         struct lnet_peer_ni *lpni;
489         lnet_nid_t primary_nid = lp->lp_primary_nid;
490         int rc = 0;
491         bool force = (flags & LNET_PEER_RTR_NI_FORCE_DEL) ? true : false;
492
493         if (!(flags & LNET_PEER_CONFIGURED)) {
494                 if (lp->lp_state & LNET_PEER_CONFIGURED) {
495                         rc = -EPERM;
496                         goto out;
497                 }
498         }
499         lpni = lnet_find_peer_ni_locked(nid);
500         if (!lpni) {
501                 rc = -ENOENT;
502                 goto out;
503         }
504         lnet_peer_ni_decref_locked(lpni);
505         if (lp != lpni->lpni_peer_net->lpn_peer) {
506                 rc = -ECHILD;
507                 goto out;
508         }
509
510         /*
511          * This function only allows deletion of the primary NID if it
512          * is the only NID.
513          */
514         if (nid == lp->lp_primary_nid && lp->lp_nnis != 1 && !force) {
515                 rc = -EBUSY;
516                 goto out;
517         }
518
519         lnet_net_lock(LNET_LOCK_EX);
520
521         if (nid == lp->lp_primary_nid && lp->lp_nnis != 1 && force) {
522                 struct lnet_peer_ni *lpni2;
523                 /* assign the next peer_ni to be the primary */
524                 lpni2 = lnet_get_next_peer_ni_locked(lp, NULL, lpni);
525                 LASSERT(lpni2);
526                 lp->lp_primary_nid = lpni->lpni_nid;
527         }
528         rc = lnet_peer_ni_del_locked(lpni, force);
529
530         lnet_net_unlock(LNET_LOCK_EX);
531
532 out:
533         CDEBUG(D_NET, "peer %s NID %s flags %#x: %d\n",
534                libcfs_nid2str(primary_nid), libcfs_nid2str(nid), flags, rc);
535
536         return rc;
537 }
538
539 static void
540 lnet_peer_table_cleanup_locked(struct lnet_net *net,
541                                struct lnet_peer_table *ptable)
542 {
543         int                      i;
544         struct lnet_peer_ni     *next;
545         struct lnet_peer_ni     *lpni;
546         struct lnet_peer        *peer;
547
548         for (i = 0; i < LNET_PEER_HASH_SIZE; i++) {
549                 list_for_each_entry_safe(lpni, next, &ptable->pt_hash[i],
550                                          lpni_hashlist) {
551                         if (net != NULL && net != lpni->lpni_net)
552                                 continue;
553
554                         peer = lpni->lpni_peer_net->lpn_peer;
555                         if (peer->lp_primary_nid != lpni->lpni_nid) {
556                                 lnet_peer_ni_del_locked(lpni, false);
557                                 continue;
558                         }
559                         /*
560                          * Removing the primary NID implies removing
561                          * the entire peer. Advance next beyond any
562                          * peer_ni that belongs to the same peer.
563                          */
564                         list_for_each_entry_from(next, &ptable->pt_hash[i],
565                                                  lpni_hashlist) {
566                                 if (next->lpni_peer_net->lpn_peer != peer)
567                                         break;
568                         }
569                         lnet_peer_del_locked(peer);
570                 }
571         }
572 }
573
574 static void
575 lnet_peer_ni_finalize_wait(struct lnet_peer_table *ptable)
576 {
577         int     i = 3;
578
579         spin_lock(&ptable->pt_zombie_lock);
580         while (ptable->pt_zombies) {
581                 spin_unlock(&ptable->pt_zombie_lock);
582
583                 if (is_power_of_2(i)) {
584                         CDEBUG(D_WARNING,
585                                "Waiting for %d zombies on peer table\n",
586                                ptable->pt_zombies);
587                 }
588                 set_current_state(TASK_UNINTERRUPTIBLE);
589                 schedule_timeout(cfs_time_seconds(1) >> 1);
590                 spin_lock(&ptable->pt_zombie_lock);
591         }
592         spin_unlock(&ptable->pt_zombie_lock);
593 }
594
595 static void
596 lnet_peer_table_del_rtrs_locked(struct lnet_net *net,
597                                 struct lnet_peer_table *ptable)
598 {
599         struct lnet_peer_ni     *lp;
600         struct lnet_peer_ni     *tmp;
601         lnet_nid_t              gw_nid;
602         int                     i;
603
604         for (i = 0; i < LNET_PEER_HASH_SIZE; i++) {
605                 list_for_each_entry_safe(lp, tmp, &ptable->pt_hash[i],
606                                          lpni_hashlist) {
607                         if (net != lp->lpni_net)
608                                 continue;
609
610                         if (!lnet_isrouter(lp))
611                                 continue;
612
613                         gw_nid = lp->lpni_peer_net->lpn_peer->lp_primary_nid;
614
615                         lnet_net_unlock(LNET_LOCK_EX);
616                         lnet_del_route(LNET_NIDNET(LNET_NID_ANY), gw_nid);
617                         lnet_net_lock(LNET_LOCK_EX);
618                 }
619         }
620 }
621
622 void
623 lnet_peer_tables_cleanup(struct lnet_net *net)
624 {
625         int i;
626         struct lnet_peer_table *ptable;
627
628         LASSERT(the_lnet.ln_state != LNET_STATE_SHUTDOWN || net != NULL);
629         /* If just deleting the peers for a NI, get rid of any routes these
630          * peers are gateways for. */
631         cfs_percpt_for_each(ptable, i, the_lnet.ln_peer_tables) {
632                 lnet_net_lock(LNET_LOCK_EX);
633                 lnet_peer_table_del_rtrs_locked(net, ptable);
634                 lnet_net_unlock(LNET_LOCK_EX);
635         }
636
637         /* Start the cleanup process */
638         cfs_percpt_for_each(ptable, i, the_lnet.ln_peer_tables) {
639                 lnet_net_lock(LNET_LOCK_EX);
640                 lnet_peer_table_cleanup_locked(net, ptable);
641                 lnet_net_unlock(LNET_LOCK_EX);
642         }
643
644         cfs_percpt_for_each(ptable, i, the_lnet.ln_peer_tables)
645                 lnet_peer_ni_finalize_wait(ptable);
646 }
647
648 static struct lnet_peer_ni *
649 lnet_get_peer_ni_locked(struct lnet_peer_table *ptable, lnet_nid_t nid)
650 {
651         struct list_head        *peers;
652         struct lnet_peer_ni     *lp;
653
654         LASSERT(the_lnet.ln_state == LNET_STATE_RUNNING);
655
656         peers = &ptable->pt_hash[lnet_nid2peerhash(nid)];
657         list_for_each_entry(lp, peers, lpni_hashlist) {
658                 if (lp->lpni_nid == nid) {
659                         lnet_peer_ni_addref_locked(lp);
660                         return lp;
661                 }
662         }
663
664         return NULL;
665 }
666
667 struct lnet_peer_ni *
668 lnet_find_peer_ni_locked(lnet_nid_t nid)
669 {
670         struct lnet_peer_ni *lpni;
671         struct lnet_peer_table *ptable;
672         int cpt;
673
674         cpt = lnet_nid_cpt_hash(nid, LNET_CPT_NUMBER);
675
676         ptable = the_lnet.ln_peer_tables[cpt];
677         lpni = lnet_get_peer_ni_locked(ptable, nid);
678
679         return lpni;
680 }
681
682 struct lnet_peer_ni *
683 lnet_peer_get_ni_locked(struct lnet_peer *lp, lnet_nid_t nid)
684 {
685         struct lnet_peer_net *lpn;
686         struct lnet_peer_ni *lpni;
687
688         lpn = lnet_peer_get_net_locked(lp, LNET_NIDNET(nid));
689         if (!lpn)
690                 return NULL;
691
692         list_for_each_entry(lpni, &lpn->lpn_peer_nis, lpni_peer_nis) {
693                 if (lpni->lpni_nid == nid)
694                         return lpni;
695         }
696
697         return NULL;
698 }
699
700 struct lnet_peer *
701 lnet_find_peer(lnet_nid_t nid)
702 {
703         struct lnet_peer_ni *lpni;
704         struct lnet_peer *lp = NULL;
705         int cpt;
706
707         cpt = lnet_net_lock_current();
708         lpni = lnet_find_peer_ni_locked(nid);
709         if (lpni) {
710                 lp = lpni->lpni_peer_net->lpn_peer;
711                 lnet_peer_addref_locked(lp);
712                 lnet_peer_ni_decref_locked(lpni);
713         }
714         lnet_net_unlock(cpt);
715
716         return lp;
717 }
718
719 struct lnet_peer_net *
720 lnet_get_next_peer_net_locked(struct lnet_peer *lp, __u32 prev_lpn_id)
721 {
722         struct lnet_peer_net *net;
723
724         if (!prev_lpn_id) {
725                 /* no net id provided return the first net */
726                 net = list_first_entry_or_null(&lp->lp_peer_nets,
727                                                struct lnet_peer_net,
728                                                lpn_peer_nets);
729
730                 return net;
731         }
732
733         /* find the net after the one provided */
734         list_for_each_entry(net, &lp->lp_peer_nets, lpn_peer_nets) {
735                 if (net->lpn_net_id == prev_lpn_id) {
736                         /*
737                          * if we reached the end of the list loop to the
738                          * beginning.
739                          */
740                         if (net->lpn_peer_nets.next == &lp->lp_peer_nets)
741                                 return list_first_entry_or_null(&lp->lp_peer_nets,
742                                                                 struct lnet_peer_net,
743                                                                 lpn_peer_nets);
744                         else
745                                 return list_next_entry(net, lpn_peer_nets);
746                 }
747         }
748
749         return NULL;
750 }
751
752 struct lnet_peer_ni *
753 lnet_get_next_peer_ni_locked(struct lnet_peer *peer,
754                              struct lnet_peer_net *peer_net,
755                              struct lnet_peer_ni *prev)
756 {
757         struct lnet_peer_ni *lpni;
758         struct lnet_peer_net *net = peer_net;
759
760         if (!prev) {
761                 if (!net) {
762                         if (list_empty(&peer->lp_peer_nets))
763                                 return NULL;
764
765                         net = list_entry(peer->lp_peer_nets.next,
766                                          struct lnet_peer_net,
767                                          lpn_peer_nets);
768                 }
769                 lpni = list_entry(net->lpn_peer_nis.next, struct lnet_peer_ni,
770                                   lpni_peer_nis);
771
772                 return lpni;
773         }
774
775         if (prev->lpni_peer_nis.next == &prev->lpni_peer_net->lpn_peer_nis) {
776                 /*
777                  * if you reached the end of the peer ni list and the peer
778                  * net is specified then there are no more peer nis in that
779                  * net.
780                  */
781                 if (net)
782                         return NULL;
783
784                 /*
785                  * we reached the end of this net ni list. move to the
786                  * next net
787                  */
788                 if (prev->lpni_peer_net->lpn_peer_nets.next ==
789                     &peer->lp_peer_nets)
790                         /* no more nets and no more NIs. */
791                         return NULL;
792
793                 /* get the next net */
794                 net = list_entry(prev->lpni_peer_net->lpn_peer_nets.next,
795                                  struct lnet_peer_net,
796                                  lpn_peer_nets);
797                 /* get the ni on it */
798                 lpni = list_entry(net->lpn_peer_nis.next, struct lnet_peer_ni,
799                                   lpni_peer_nis);
800
801                 return lpni;
802         }
803
804         /* there are more nis left */
805         lpni = list_entry(prev->lpni_peer_nis.next,
806                           struct lnet_peer_ni, lpni_peer_nis);
807
808         return lpni;
809 }
810
811 /* Call with the ln_api_mutex held */
812 int lnet_get_peer_list(u32 *countp, u32 *sizep, struct lnet_process_id __user *ids)
813 {
814         struct lnet_process_id id;
815         struct lnet_peer_table *ptable;
816         struct lnet_peer *lp;
817         __u32 count = 0;
818         __u32 size = 0;
819         int lncpt;
820         int cpt;
821         __u32 i;
822         int rc;
823
824         rc = -ESHUTDOWN;
825         if (the_lnet.ln_state != LNET_STATE_RUNNING)
826                 goto done;
827
828         lncpt = cfs_percpt_number(the_lnet.ln_peer_tables);
829
830         /*
831          * Count the number of peers, and return E2BIG if the buffer
832          * is too small. We'll also return the desired size.
833          */
834         rc = -E2BIG;
835         for (cpt = 0; cpt < lncpt; cpt++) {
836                 ptable = the_lnet.ln_peer_tables[cpt];
837                 count += ptable->pt_peers;
838         }
839         size = count * sizeof(*ids);
840         if (size > *sizep)
841                 goto done;
842
843         /*
844          * Walk the peer lists and copy out the primary nids.
845          * This is safe because the peer lists are only modified
846          * while the ln_api_mutex is held. So we don't need to
847          * hold the lnet_net_lock as well, and can therefore
848          * directly call copy_to_user().
849          */
850         rc = -EFAULT;
851         memset(&id, 0, sizeof(id));
852         id.pid = LNET_PID_LUSTRE;
853         i = 0;
854         for (cpt = 0; cpt < lncpt; cpt++) {
855                 ptable = the_lnet.ln_peer_tables[cpt];
856                 list_for_each_entry(lp, &ptable->pt_peer_list, lp_peer_list) {
857                         if (i >= count)
858                                 goto done;
859                         id.nid = lp->lp_primary_nid;
860                         if (copy_to_user(&ids[i], &id, sizeof(id)))
861                                 goto done;
862                         i++;
863                 }
864         }
865         rc = 0;
866 done:
867         *countp = count;
868         *sizep = size;
869         return rc;
870 }
871
872 /*
873  * Start pushes to peers that need to be updated for a configuration
874  * change on this node.
875  */
876 void
877 lnet_push_update_to_peers(int force)
878 {
879         struct lnet_peer_table *ptable;
880         struct lnet_peer *lp;
881         int lncpt;
882         int cpt;
883
884         lnet_net_lock(LNET_LOCK_EX);
885         if (lnet_peer_discovery_disabled)
886                 force = 0;
887         lncpt = cfs_percpt_number(the_lnet.ln_peer_tables);
888         for (cpt = 0; cpt < lncpt; cpt++) {
889                 ptable = the_lnet.ln_peer_tables[cpt];
890                 list_for_each_entry(lp, &ptable->pt_peer_list, lp_peer_list) {
891                         if (force) {
892                                 spin_lock(&lp->lp_lock);
893                                 if (lp->lp_state & LNET_PEER_MULTI_RAIL)
894                                         lp->lp_state |= LNET_PEER_FORCE_PUSH;
895                                 spin_unlock(&lp->lp_lock);
896                         }
897                         if (lnet_peer_needs_push(lp))
898                                 lnet_peer_queue_for_discovery(lp);
899                 }
900         }
901         lnet_net_unlock(LNET_LOCK_EX);
902         wake_up(&the_lnet.ln_dc_waitq);
903 }
904
905 /*
906  * Test whether a ni is a preferred ni for this peer_ni, e.g, whether
907  * this is a preferred point-to-point path. Call with lnet_net_lock in
908  * shared mmode.
909  */
910 bool
911 lnet_peer_is_pref_nid_locked(struct lnet_peer_ni *lpni, lnet_nid_t nid)
912 {
913         int i;
914
915         if (lpni->lpni_pref_nnids == 0)
916                 return false;
917         if (lpni->lpni_pref_nnids == 1)
918                 return lpni->lpni_pref.nid == nid;
919         for (i = 0; i < lpni->lpni_pref_nnids; i++) {
920                 if (lpni->lpni_pref.nids[i] == nid)
921                         return true;
922         }
923         return false;
924 }
925
926 /*
927  * Set a single ni as preferred, provided no preferred ni is already
928  * defined. Only to be used for non-multi-rail peer_ni.
929  */
930 int
931 lnet_peer_ni_set_non_mr_pref_nid(struct lnet_peer_ni *lpni, lnet_nid_t nid)
932 {
933         int rc = 0;
934
935         spin_lock(&lpni->lpni_lock);
936         if (nid == LNET_NID_ANY) {
937                 rc = -EINVAL;
938         } else if (lpni->lpni_pref_nnids > 0) {
939                 rc = -EPERM;
940         } else if (lpni->lpni_pref_nnids == 0) {
941                 lpni->lpni_pref.nid = nid;
942                 lpni->lpni_pref_nnids = 1;
943                 lpni->lpni_state |= LNET_PEER_NI_NON_MR_PREF;
944         }
945         spin_unlock(&lpni->lpni_lock);
946
947         CDEBUG(D_NET, "peer %s nid %s: %d\n",
948                libcfs_nid2str(lpni->lpni_nid), libcfs_nid2str(nid), rc);
949         return rc;
950 }
951
952 /*
953  * Clear the preferred NID from a non-multi-rail peer_ni, provided
954  * this preference was set by lnet_peer_ni_set_non_mr_pref_nid().
955  */
956 int
957 lnet_peer_ni_clr_non_mr_pref_nid(struct lnet_peer_ni *lpni)
958 {
959         int rc = 0;
960
961         spin_lock(&lpni->lpni_lock);
962         if (lpni->lpni_state & LNET_PEER_NI_NON_MR_PREF) {
963                 lpni->lpni_pref_nnids = 0;
964                 lpni->lpni_state &= ~LNET_PEER_NI_NON_MR_PREF;
965         } else if (lpni->lpni_pref_nnids == 0) {
966                 rc = -ENOENT;
967         } else {
968                 rc = -EPERM;
969         }
970         spin_unlock(&lpni->lpni_lock);
971
972         CDEBUG(D_NET, "peer %s: %d\n",
973                libcfs_nid2str(lpni->lpni_nid), rc);
974         return rc;
975 }
976
977 /*
978  * Clear the preferred NIDs from a non-multi-rail peer.
979  */
980 void
981 lnet_peer_clr_non_mr_pref_nids(struct lnet_peer *lp)
982 {
983         struct lnet_peer_ni *lpni = NULL;
984
985         while ((lpni = lnet_get_next_peer_ni_locked(lp, NULL, lpni)) != NULL)
986                 lnet_peer_ni_clr_non_mr_pref_nid(lpni);
987 }
988
989 int
990 lnet_peer_add_pref_nid(struct lnet_peer_ni *lpni, lnet_nid_t nid)
991 {
992         lnet_nid_t *nids = NULL;
993         lnet_nid_t *oldnids = NULL;
994         struct lnet_peer *lp = lpni->lpni_peer_net->lpn_peer;
995         int size;
996         int i;
997         int rc = 0;
998
999         if (nid == LNET_NID_ANY) {
1000                 rc = -EINVAL;
1001                 goto out;
1002         }
1003
1004         if (lpni->lpni_pref_nnids == 1 && lpni->lpni_pref.nid == nid) {
1005                 rc = -EEXIST;
1006                 goto out;
1007         }
1008
1009         /* A non-MR node may have only one preferred NI per peer_ni */
1010         if (lpni->lpni_pref_nnids > 0) {
1011                 if (!(lp->lp_state & LNET_PEER_MULTI_RAIL)) {
1012                         rc = -EPERM;
1013                         goto out;
1014                 }
1015         }
1016
1017         if (lpni->lpni_pref_nnids != 0) {
1018                 size = sizeof(*nids) * (lpni->lpni_pref_nnids + 1);
1019                 LIBCFS_CPT_ALLOC(nids, lnet_cpt_table(), lpni->lpni_cpt, size);
1020                 if (!nids) {
1021                         rc = -ENOMEM;
1022                         goto out;
1023                 }
1024                 for (i = 0; i < lpni->lpni_pref_nnids; i++) {
1025                         if (lpni->lpni_pref.nids[i] == nid) {
1026                                 LIBCFS_FREE(nids, size);
1027                                 rc = -EEXIST;
1028                                 goto out;
1029                         }
1030                         nids[i] = lpni->lpni_pref.nids[i];
1031                 }
1032                 nids[i] = nid;
1033         }
1034
1035         lnet_net_lock(LNET_LOCK_EX);
1036         spin_lock(&lpni->lpni_lock);
1037         if (lpni->lpni_pref_nnids == 0) {
1038                 lpni->lpni_pref.nid = nid;
1039         } else {
1040                 oldnids = lpni->lpni_pref.nids;
1041                 lpni->lpni_pref.nids = nids;
1042         }
1043         lpni->lpni_pref_nnids++;
1044         lpni->lpni_state &= ~LNET_PEER_NI_NON_MR_PREF;
1045         spin_unlock(&lpni->lpni_lock);
1046         lnet_net_unlock(LNET_LOCK_EX);
1047
1048         if (oldnids) {
1049                 size = sizeof(*nids) * (lpni->lpni_pref_nnids - 1);
1050                 LIBCFS_FREE(oldnids, sizeof(*oldnids) * size);
1051         }
1052 out:
1053         if (rc == -EEXIST && (lpni->lpni_state & LNET_PEER_NI_NON_MR_PREF)) {
1054                 spin_lock(&lpni->lpni_lock);
1055                 lpni->lpni_state &= ~LNET_PEER_NI_NON_MR_PREF;
1056                 spin_unlock(&lpni->lpni_lock);
1057         }
1058         CDEBUG(D_NET, "peer %s nid %s: %d\n",
1059                libcfs_nid2str(lp->lp_primary_nid), libcfs_nid2str(nid), rc);
1060         return rc;
1061 }
1062
1063 int
1064 lnet_peer_del_pref_nid(struct lnet_peer_ni *lpni, lnet_nid_t nid)
1065 {
1066         lnet_nid_t *nids = NULL;
1067         lnet_nid_t *oldnids = NULL;
1068         struct lnet_peer *lp = lpni->lpni_peer_net->lpn_peer;
1069         int size;
1070         int i, j;
1071         int rc = 0;
1072
1073         if (lpni->lpni_pref_nnids == 0) {
1074                 rc = -ENOENT;
1075                 goto out;
1076         }
1077
1078         if (lpni->lpni_pref_nnids == 1) {
1079                 if (lpni->lpni_pref.nid != nid) {
1080                         rc = -ENOENT;
1081                         goto out;
1082                 }
1083         } else if (lpni->lpni_pref_nnids == 2) {
1084                 if (lpni->lpni_pref.nids[0] != nid &&
1085                     lpni->lpni_pref.nids[1] != nid) {
1086                         rc = -ENOENT;
1087                         goto out;
1088                 }
1089         } else {
1090                 size = sizeof(*nids) * (lpni->lpni_pref_nnids - 1);
1091                 LIBCFS_CPT_ALLOC(nids, lnet_cpt_table(), lpni->lpni_cpt, size);
1092                 if (!nids) {
1093                         rc = -ENOMEM;
1094                         goto out;
1095                 }
1096                 for (i = 0, j = 0; i < lpni->lpni_pref_nnids; i++) {
1097                         if (lpni->lpni_pref.nids[i] != nid)
1098                                 continue;
1099                         nids[j++] = lpni->lpni_pref.nids[i];
1100                 }
1101                 /* Check if we actually removed a nid. */
1102                 if (j == lpni->lpni_pref_nnids) {
1103                         LIBCFS_FREE(nids, size);
1104                         rc = -ENOENT;
1105                         goto out;
1106                 }
1107         }
1108
1109         lnet_net_lock(LNET_LOCK_EX);
1110         spin_lock(&lpni->lpni_lock);
1111         if (lpni->lpni_pref_nnids == 1) {
1112                 lpni->lpni_pref.nid = LNET_NID_ANY;
1113         } else if (lpni->lpni_pref_nnids == 2) {
1114                 oldnids = lpni->lpni_pref.nids;
1115                 if (oldnids[0] == nid)
1116                         lpni->lpni_pref.nid = oldnids[1];
1117                 else
1118                         lpni->lpni_pref.nid = oldnids[2];
1119         } else {
1120                 oldnids = lpni->lpni_pref.nids;
1121                 lpni->lpni_pref.nids = nids;
1122         }
1123         lpni->lpni_pref_nnids--;
1124         lpni->lpni_state &= ~LNET_PEER_NI_NON_MR_PREF;
1125         spin_unlock(&lpni->lpni_lock);
1126         lnet_net_unlock(LNET_LOCK_EX);
1127
1128         if (oldnids) {
1129                 size = sizeof(*nids) * (lpni->lpni_pref_nnids + 1);
1130                 LIBCFS_FREE(oldnids, sizeof(*oldnids) * size);
1131         }
1132 out:
1133         CDEBUG(D_NET, "peer %s nid %s: %d\n",
1134                libcfs_nid2str(lp->lp_primary_nid), libcfs_nid2str(nid), rc);
1135         return rc;
1136 }
1137
1138 lnet_nid_t
1139 lnet_peer_primary_nid_locked(lnet_nid_t nid)
1140 {
1141         struct lnet_peer_ni *lpni;
1142         lnet_nid_t primary_nid = nid;
1143
1144         lpni = lnet_find_peer_ni_locked(nid);
1145         if (lpni) {
1146                 primary_nid = lpni->lpni_peer_net->lpn_peer->lp_primary_nid;
1147                 lnet_peer_ni_decref_locked(lpni);
1148         }
1149
1150         return primary_nid;
1151 }
1152
1153 bool
1154 lnet_is_discovery_disabled_locked(struct lnet_peer *lp)
1155 {
1156         if (lnet_peer_discovery_disabled)
1157                 return true;
1158
1159         if (!(lp->lp_state & LNET_PEER_MULTI_RAIL) ||
1160             (lp->lp_state & LNET_PEER_NO_DISCOVERY)) {
1161                 return true;
1162         }
1163
1164         return false;
1165 }
1166
1167 /*
1168  * Peer Discovery
1169  */
1170 bool
1171 lnet_is_discovery_disabled(struct lnet_peer *lp)
1172 {
1173         bool rc = false;
1174
1175         spin_lock(&lp->lp_lock);
1176         rc = lnet_is_discovery_disabled_locked(lp);
1177         spin_unlock(&lp->lp_lock);
1178
1179         return rc;
1180 }
1181
1182 lnet_nid_t
1183 LNetPrimaryNID(lnet_nid_t nid)
1184 {
1185         struct lnet_peer *lp;
1186         struct lnet_peer_ni *lpni;
1187         lnet_nid_t primary_nid = nid;
1188         int rc = 0;
1189         int cpt;
1190
1191         cpt = lnet_net_lock_current();
1192         lpni = lnet_nid2peerni_locked(nid, LNET_NID_ANY, cpt);
1193         if (IS_ERR(lpni)) {
1194                 rc = PTR_ERR(lpni);
1195                 goto out_unlock;
1196         }
1197         lp = lpni->lpni_peer_net->lpn_peer;
1198
1199         while (!lnet_peer_is_uptodate(lp)) {
1200                 rc = lnet_discover_peer_locked(lpni, cpt, true);
1201                 if (rc)
1202                         goto out_decref;
1203                 lp = lpni->lpni_peer_net->lpn_peer;
1204
1205                 /* Only try once if discovery is disabled */
1206                 if (lnet_is_discovery_disabled(lp))
1207                         break;
1208         }
1209         primary_nid = lp->lp_primary_nid;
1210 out_decref:
1211         lnet_peer_ni_decref_locked(lpni);
1212 out_unlock:
1213         lnet_net_unlock(cpt);
1214
1215         CDEBUG(D_NET, "NID %s primary NID %s rc %d\n", libcfs_nid2str(nid),
1216                libcfs_nid2str(primary_nid), rc);
1217         return primary_nid;
1218 }
1219 EXPORT_SYMBOL(LNetPrimaryNID);
1220
1221 struct lnet_peer_net *
1222 lnet_peer_get_net_locked(struct lnet_peer *peer, __u32 net_id)
1223 {
1224         struct lnet_peer_net *peer_net;
1225         list_for_each_entry(peer_net, &peer->lp_peer_nets, lpn_peer_nets) {
1226                 if (peer_net->lpn_net_id == net_id)
1227                         return peer_net;
1228         }
1229         return NULL;
1230 }
1231
1232 /*
1233  * Attach a peer_ni to a peer_net and peer. This function assumes
1234  * peer_ni is not already attached to the peer_net/peer. The peer_ni
1235  * may be attached to a different peer, in which case it will be
1236  * properly detached first. The whole operation is done atomically.
1237  *
1238  * Always returns 0.  This is the last function called from functions
1239  * that do return an int, so returning 0 here allows the compiler to
1240  * do a tail call.
1241  */
1242 static int
1243 lnet_peer_attach_peer_ni(struct lnet_peer *lp,
1244                                 struct lnet_peer_net *lpn,
1245                                 struct lnet_peer_ni *lpni,
1246                                 unsigned flags)
1247 {
1248         struct lnet_peer_table *ptable;
1249
1250         /* Install the new peer_ni */
1251         lnet_net_lock(LNET_LOCK_EX);
1252         /* Add peer_ni to global peer table hash, if necessary. */
1253         if (list_empty(&lpni->lpni_hashlist)) {
1254                 int hash = lnet_nid2peerhash(lpni->lpni_nid);
1255
1256                 ptable = the_lnet.ln_peer_tables[lpni->lpni_cpt];
1257                 list_add_tail(&lpni->lpni_hashlist, &ptable->pt_hash[hash]);
1258                 ptable->pt_version++;
1259                 ptable->pt_number++;
1260                 /* This is the 1st refcount on lpni. */
1261                 atomic_inc(&lpni->lpni_refcount);
1262         }
1263
1264         /* Detach the peer_ni from an existing peer, if necessary. */
1265         if (lpni->lpni_peer_net) {
1266                 LASSERT(lpni->lpni_peer_net != lpn);
1267                 LASSERT(lpni->lpni_peer_net->lpn_peer != lp);
1268                 lnet_peer_detach_peer_ni_locked(lpni);
1269                 lnet_peer_net_decref_locked(lpni->lpni_peer_net);
1270                 lpni->lpni_peer_net = NULL;
1271         }
1272
1273         /* Add peer_ni to peer_net */
1274         lpni->lpni_peer_net = lpn;
1275         list_add_tail(&lpni->lpni_peer_nis, &lpn->lpn_peer_nis);
1276         lnet_peer_net_addref_locked(lpn);
1277
1278         /* Add peer_net to peer */
1279         if (!lpn->lpn_peer) {
1280                 lpn->lpn_peer = lp;
1281                 list_add_tail(&lpn->lpn_peer_nets, &lp->lp_peer_nets);
1282                 lnet_peer_addref_locked(lp);
1283         }
1284
1285         /* Add peer to global peer list, if necessary */
1286         ptable = the_lnet.ln_peer_tables[lp->lp_cpt];
1287         if (list_empty(&lp->lp_peer_list)) {
1288                 list_add_tail(&lp->lp_peer_list, &ptable->pt_peer_list);
1289                 ptable->pt_peers++;
1290         }
1291
1292
1293         /* Update peer state */
1294         spin_lock(&lp->lp_lock);
1295         if (flags & LNET_PEER_CONFIGURED) {
1296                 if (!(lp->lp_state & LNET_PEER_CONFIGURED))
1297                         lp->lp_state |= LNET_PEER_CONFIGURED;
1298         }
1299         if (flags & LNET_PEER_MULTI_RAIL) {
1300                 if (!(lp->lp_state & LNET_PEER_MULTI_RAIL)) {
1301                         lp->lp_state |= LNET_PEER_MULTI_RAIL;
1302                         lnet_peer_clr_non_mr_pref_nids(lp);
1303                 }
1304         }
1305         spin_unlock(&lp->lp_lock);
1306
1307         lp->lp_nnis++;
1308         lnet_net_unlock(LNET_LOCK_EX);
1309
1310         CDEBUG(D_NET, "peer %s NID %s flags %#x\n",
1311                libcfs_nid2str(lp->lp_primary_nid),
1312                libcfs_nid2str(lpni->lpni_nid), flags);
1313
1314         return 0;
1315 }
1316
1317 /*
1318  * Create a new peer, with nid as its primary nid.
1319  *
1320  * Call with the lnet_api_mutex held.
1321  */
1322 static int
1323 lnet_peer_add(lnet_nid_t nid, unsigned flags)
1324 {
1325         struct lnet_peer *lp;
1326         struct lnet_peer_net *lpn;
1327         struct lnet_peer_ni *lpni;
1328         int rc = 0;
1329
1330         LASSERT(nid != LNET_NID_ANY);
1331
1332         /*
1333          * No need for the lnet_net_lock here, because the
1334          * lnet_api_mutex is held.
1335          */
1336         lpni = lnet_find_peer_ni_locked(nid);
1337         if (lpni) {
1338                 /* A peer with this NID already exists. */
1339                 lp = lpni->lpni_peer_net->lpn_peer;
1340                 lnet_peer_ni_decref_locked(lpni);
1341                 /*
1342                  * This is an error if the peer was configured and the
1343                  * primary NID differs or an attempt is made to change
1344                  * the Multi-Rail flag. Otherwise the assumption is
1345                  * that an existing peer is being modified.
1346                  */
1347                 if (lp->lp_state & LNET_PEER_CONFIGURED) {
1348                         if (lp->lp_primary_nid != nid)
1349                                 rc = -EEXIST;
1350                         else if ((lp->lp_state ^ flags) & LNET_PEER_MULTI_RAIL)
1351                                 rc = -EPERM;
1352                         goto out;
1353                 }
1354                 /* Delete and recreate as a configured peer. */
1355                 lnet_peer_del(lp);
1356         }
1357
1358         /* Create peer, peer_net, and peer_ni. */
1359         rc = -ENOMEM;
1360         lp = lnet_peer_alloc(nid);
1361         if (!lp)
1362                 goto out;
1363         lpn = lnet_peer_net_alloc(LNET_NIDNET(nid));
1364         if (!lpn)
1365                 goto out_free_lp;
1366         lpni = lnet_peer_ni_alloc(nid);
1367         if (!lpni)
1368                 goto out_free_lpn;
1369
1370         return lnet_peer_attach_peer_ni(lp, lpn, lpni, flags);
1371
1372 out_free_lpn:
1373         LIBCFS_FREE(lpn, sizeof(*lpn));
1374 out_free_lp:
1375         LIBCFS_FREE(lp, sizeof(*lp));
1376 out:
1377         CDEBUG(D_NET, "peer %s NID flags %#x: %d\n",
1378                libcfs_nid2str(nid), flags, rc);
1379         return rc;
1380 }
1381
1382 /*
1383  * Add a NID to a peer. Call with ln_api_mutex held.
1384  *
1385  * Error codes:
1386  *  -EPERM:    Non-DLC addition to a DLC-configured peer.
1387  *  -EEXIST:   The NID was configured by DLC for a different peer.
1388  *  -ENOMEM:   Out of memory.
1389  *  -ENOTUNIQ: Adding a second peer NID on a single network on a
1390  *             non-multi-rail peer.
1391  */
1392 static int
1393 lnet_peer_add_nid(struct lnet_peer *lp, lnet_nid_t nid, unsigned flags)
1394 {
1395         struct lnet_peer_net *lpn;
1396         struct lnet_peer_ni *lpni;
1397         int rc = 0;
1398
1399         LASSERT(lp);
1400         LASSERT(nid != LNET_NID_ANY);
1401
1402         /* A configured peer can only be updated through configuration. */
1403         if (!(flags & LNET_PEER_CONFIGURED)) {
1404                 if (lp->lp_state & LNET_PEER_CONFIGURED) {
1405                         rc = -EPERM;
1406                         goto out;
1407                 }
1408         }
1409
1410         /*
1411          * The MULTI_RAIL flag can be set but not cleared, because
1412          * that would leave the peer struct in an invalid state.
1413          */
1414         if (flags & LNET_PEER_MULTI_RAIL) {
1415                 spin_lock(&lp->lp_lock);
1416                 if (!(lp->lp_state & LNET_PEER_MULTI_RAIL)) {
1417                         lp->lp_state |= LNET_PEER_MULTI_RAIL;
1418                         lnet_peer_clr_non_mr_pref_nids(lp);
1419                 }
1420                 spin_unlock(&lp->lp_lock);
1421         } else if (lp->lp_state & LNET_PEER_MULTI_RAIL) {
1422                 rc = -EPERM;
1423                 goto out;
1424         }
1425
1426         lpni = lnet_find_peer_ni_locked(nid);
1427         if (lpni) {
1428                 /*
1429                  * A peer_ni already exists. This is only a problem if
1430                  * it is not connected to this peer and was configured
1431                  * by DLC.
1432                  */
1433                 lnet_peer_ni_decref_locked(lpni);
1434                 if (lpni->lpni_peer_net->lpn_peer == lp)
1435                         goto out;
1436                 if (lnet_peer_ni_is_configured(lpni)) {
1437                         rc = -EEXIST;
1438                         goto out;
1439                 }
1440                 /* If this is the primary NID, destroy the peer. */
1441                 if (lnet_peer_ni_is_primary(lpni)) {
1442                         struct lnet_peer *rtr_lp =
1443                           lpni->lpni_peer_net->lpn_peer;
1444                         int rtr_refcount = rtr_lp->lp_rtr_refcount;
1445                         /*
1446                          * if we're trying to delete a router it means
1447                          * we're moving this peer NI to a new peer so must
1448                          * transfer router properties to the new peer
1449                          */
1450                         if (rtr_refcount > 0) {
1451                                 flags |= LNET_PEER_RTR_NI_FORCE_DEL;
1452                                 lnet_rtr_transfer_to_peer(rtr_lp, lp);
1453                         }
1454                         lnet_peer_del(lpni->lpni_peer_net->lpn_peer);
1455                         lpni = lnet_peer_ni_alloc(nid);
1456                         if (!lpni) {
1457                                 rc = -ENOMEM;
1458                                 goto out;
1459                         }
1460                 }
1461         } else {
1462                 lpni = lnet_peer_ni_alloc(nid);
1463                 if (!lpni) {
1464                         rc = -ENOMEM;
1465                         goto out;
1466                 }
1467         }
1468
1469         /*
1470          * Get the peer_net. Check that we're not adding a second
1471          * peer_ni on a peer_net of a non-multi-rail peer.
1472          */
1473         lpn = lnet_peer_get_net_locked(lp, LNET_NIDNET(nid));
1474         if (!lpn) {
1475                 lpn = lnet_peer_net_alloc(LNET_NIDNET(nid));
1476                 if (!lpn) {
1477                         rc = -ENOMEM;
1478                         goto out_free_lpni;
1479                 }
1480         } else if (!(lp->lp_state & LNET_PEER_MULTI_RAIL)) {
1481                 rc = -ENOTUNIQ;
1482                 goto out_free_lpni;
1483         }
1484
1485         return lnet_peer_attach_peer_ni(lp, lpn, lpni, flags);
1486
1487 out_free_lpni:
1488         /* If the peer_ni was allocated above its peer_net pointer is NULL */
1489         if (!lpni->lpni_peer_net)
1490                 LIBCFS_FREE(lpni, sizeof(*lpni));
1491 out:
1492         CDEBUG(D_NET, "peer %s NID %s flags %#x: %d\n",
1493                libcfs_nid2str(lp->lp_primary_nid), libcfs_nid2str(nid),
1494                flags, rc);
1495         return rc;
1496 }
1497
1498 /*
1499  * Update the primary NID of a peer, if possible.
1500  *
1501  * Call with the lnet_api_mutex held.
1502  */
1503 static int
1504 lnet_peer_set_primary_nid(struct lnet_peer *lp, lnet_nid_t nid, unsigned flags)
1505 {
1506         lnet_nid_t old = lp->lp_primary_nid;
1507         int rc = 0;
1508
1509         if (lp->lp_primary_nid == nid)
1510                 goto out;
1511         rc = lnet_peer_add_nid(lp, nid, flags);
1512         if (rc)
1513                 goto out;
1514         lp->lp_primary_nid = nid;
1515 out:
1516         CDEBUG(D_NET, "peer %s NID %s: %d\n",
1517                libcfs_nid2str(old), libcfs_nid2str(nid), rc);
1518         return rc;
1519 }
1520
1521 /*
1522  * lpni creation initiated due to traffic either sending or receiving.
1523  */
1524 static int
1525 lnet_peer_ni_traffic_add(lnet_nid_t nid, lnet_nid_t pref)
1526 {
1527         struct lnet_peer *lp;
1528         struct lnet_peer_net *lpn;
1529         struct lnet_peer_ni *lpni;
1530         /*
1531          * Assume peer is Multi-Rail capable and let discovery find out
1532          * otherwise.
1533          */
1534         unsigned flags = LNET_PEER_MULTI_RAIL;
1535         int rc = 0;
1536
1537         if (nid == LNET_NID_ANY) {
1538                 rc = -EINVAL;
1539                 goto out;
1540         }
1541
1542         /* lnet_net_lock is not needed here because ln_api_lock is held */
1543         lpni = lnet_find_peer_ni_locked(nid);
1544         if (lpni) {
1545                 /*
1546                  * We must have raced with another thread. Since we
1547                  * know next to nothing about a peer_ni created by
1548                  * traffic, we just assume everything is ok and
1549                  * return.
1550                  */
1551                 lnet_peer_ni_decref_locked(lpni);
1552                 goto out;
1553         }
1554
1555         /* Create peer, peer_net, and peer_ni. */
1556         rc = -ENOMEM;
1557         lp = lnet_peer_alloc(nid);
1558         if (!lp)
1559                 goto out;
1560         lpn = lnet_peer_net_alloc(LNET_NIDNET(nid));
1561         if (!lpn)
1562                 goto out_free_lp;
1563         lpni = lnet_peer_ni_alloc(nid);
1564         if (!lpni)
1565                 goto out_free_lpn;
1566         if (pref != LNET_NID_ANY)
1567                 lnet_peer_ni_set_non_mr_pref_nid(lpni, pref);
1568
1569         return lnet_peer_attach_peer_ni(lp, lpn, lpni, flags);
1570
1571 out_free_lpn:
1572         LIBCFS_FREE(lpn, sizeof(*lpn));
1573 out_free_lp:
1574         LIBCFS_FREE(lp, sizeof(*lp));
1575 out:
1576         CDEBUG(D_NET, "peer %s: %d\n", libcfs_nid2str(nid), rc);
1577         return rc;
1578 }
1579
1580 /*
1581  * Implementation of IOC_LIBCFS_ADD_PEER_NI.
1582  *
1583  * This API handles the following combinations:
1584  *   Create a peer with its primary NI if only the prim_nid is provided
1585  *   Add a NID to a peer identified by the prim_nid. The peer identified
1586  *   by the prim_nid must already exist.
1587  *   The peer being created may be non-MR.
1588  *
1589  * The caller must hold ln_api_mutex. This prevents the peer from
1590  * being created/modified/deleted by a different thread.
1591  */
1592 int
1593 lnet_add_peer_ni(lnet_nid_t prim_nid, lnet_nid_t nid, bool mr)
1594 {
1595         struct lnet_peer *lp = NULL;
1596         struct lnet_peer_ni *lpni;
1597         unsigned flags;
1598
1599         /* The prim_nid must always be specified */
1600         if (prim_nid == LNET_NID_ANY)
1601                 return -EINVAL;
1602
1603         flags = LNET_PEER_CONFIGURED;
1604         if (mr)
1605                 flags |= LNET_PEER_MULTI_RAIL;
1606
1607         /*
1608          * If nid isn't specified, we must create a new peer with
1609          * prim_nid as its primary nid.
1610          */
1611         if (nid == LNET_NID_ANY)
1612                 return lnet_peer_add(prim_nid, flags);
1613
1614         /* Look up the prim_nid, which must exist. */
1615         lpni = lnet_find_peer_ni_locked(prim_nid);
1616         if (!lpni)
1617                 return -ENOENT;
1618         lnet_peer_ni_decref_locked(lpni);
1619         lp = lpni->lpni_peer_net->lpn_peer;
1620
1621         /* Peer must have been configured. */
1622         if (!(lp->lp_state & LNET_PEER_CONFIGURED)) {
1623                 CDEBUG(D_NET, "peer %s was not configured\n",
1624                        libcfs_nid2str(prim_nid));
1625                 return -ENOENT;
1626         }
1627
1628         /* Primary NID must match */
1629         if (lp->lp_primary_nid != prim_nid) {
1630                 CDEBUG(D_NET, "prim_nid %s is not primary for peer %s\n",
1631                        libcfs_nid2str(prim_nid),
1632                        libcfs_nid2str(lp->lp_primary_nid));
1633                 return -ENODEV;
1634         }
1635
1636         /* Multi-Rail flag must match. */
1637         if ((lp->lp_state ^ flags) & LNET_PEER_MULTI_RAIL) {
1638                 CDEBUG(D_NET, "multi-rail state mismatch for peer %s\n",
1639                        libcfs_nid2str(prim_nid));
1640                 return -EPERM;
1641         }
1642
1643         return lnet_peer_add_nid(lp, nid, flags);
1644 }
1645
1646 /*
1647  * Implementation of IOC_LIBCFS_DEL_PEER_NI.
1648  *
1649  * This API handles the following combinations:
1650  *   Delete a NI from a peer if both prim_nid and nid are provided.
1651  *   Delete a peer if only prim_nid is provided.
1652  *   Delete a peer if its primary nid is provided.
1653  *
1654  * The caller must hold ln_api_mutex. This prevents the peer from
1655  * being modified/deleted by a different thread.
1656  */
1657 int
1658 lnet_del_peer_ni(lnet_nid_t prim_nid, lnet_nid_t nid)
1659 {
1660         struct lnet_peer *lp;
1661         struct lnet_peer_ni *lpni;
1662         unsigned flags;
1663
1664         if (prim_nid == LNET_NID_ANY)
1665                 return -EINVAL;
1666
1667         lpni = lnet_find_peer_ni_locked(prim_nid);
1668         if (!lpni)
1669                 return -ENOENT;
1670         lnet_peer_ni_decref_locked(lpni);
1671         lp = lpni->lpni_peer_net->lpn_peer;
1672
1673         if (prim_nid != lp->lp_primary_nid) {
1674                 CDEBUG(D_NET, "prim_nid %s is not primary for peer %s\n",
1675                        libcfs_nid2str(prim_nid),
1676                        libcfs_nid2str(lp->lp_primary_nid));
1677                 return -ENODEV;
1678         }
1679
1680         lnet_net_lock(LNET_LOCK_EX);
1681         if (lp->lp_rtr_refcount > 0) {
1682                 lnet_net_unlock(LNET_LOCK_EX);
1683                 CERROR("%s is a router. Can not be deleted\n",
1684                        libcfs_nid2str(prim_nid));
1685                 return -EBUSY;
1686         }
1687         lnet_net_unlock(LNET_LOCK_EX);
1688
1689         if (nid == LNET_NID_ANY || nid == lp->lp_primary_nid)
1690                 return lnet_peer_del(lp);
1691
1692         flags = LNET_PEER_CONFIGURED;
1693         if (lp->lp_state & LNET_PEER_MULTI_RAIL)
1694                 flags |= LNET_PEER_MULTI_RAIL;
1695
1696         return lnet_peer_del_nid(lp, nid, flags);
1697 }
1698
1699 void
1700 lnet_destroy_peer_ni_locked(struct lnet_peer_ni *lpni)
1701 {
1702         struct lnet_peer_table *ptable;
1703         struct lnet_peer_net *lpn;
1704
1705         CDEBUG(D_NET, "%p nid %s\n", lpni, libcfs_nid2str(lpni->lpni_nid));
1706
1707         LASSERT(atomic_read(&lpni->lpni_refcount) == 0);
1708         LASSERT(list_empty(&lpni->lpni_txq));
1709         LASSERT(lpni->lpni_txqnob == 0);
1710         LASSERT(list_empty(&lpni->lpni_peer_nis));
1711         LASSERT(list_empty(&lpni->lpni_on_remote_peer_ni_list));
1712
1713         lpn = lpni->lpni_peer_net;
1714         lpni->lpni_peer_net = NULL;
1715         lpni->lpni_net = NULL;
1716
1717         /* remove the peer ni from the zombie list */
1718         ptable = the_lnet.ln_peer_tables[lpni->lpni_cpt];
1719         spin_lock(&ptable->pt_zombie_lock);
1720         list_del_init(&lpni->lpni_hashlist);
1721         ptable->pt_zombies--;
1722         spin_unlock(&ptable->pt_zombie_lock);
1723
1724         if (lpni->lpni_pref_nnids > 1) {
1725                 LIBCFS_FREE(lpni->lpni_pref.nids,
1726                         sizeof(*lpni->lpni_pref.nids) * lpni->lpni_pref_nnids);
1727         }
1728         LIBCFS_FREE(lpni, sizeof(*lpni));
1729
1730         lnet_peer_net_decref_locked(lpn);
1731 }
1732
1733 struct lnet_peer_ni *
1734 lnet_nid2peerni_ex(lnet_nid_t nid, int cpt)
1735 {
1736         struct lnet_peer_ni *lpni = NULL;
1737         int rc;
1738
1739         if (the_lnet.ln_state != LNET_STATE_RUNNING)
1740                 return ERR_PTR(-ESHUTDOWN);
1741
1742         /*
1743          * find if a peer_ni already exists.
1744          * If so then just return that.
1745          */
1746         lpni = lnet_find_peer_ni_locked(nid);
1747         if (lpni)
1748                 return lpni;
1749
1750         lnet_net_unlock(cpt);
1751
1752         rc = lnet_peer_ni_traffic_add(nid, LNET_NID_ANY);
1753         if (rc) {
1754                 lpni = ERR_PTR(rc);
1755                 goto out_net_relock;
1756         }
1757
1758         lpni = lnet_find_peer_ni_locked(nid);
1759         LASSERT(lpni);
1760
1761 out_net_relock:
1762         lnet_net_lock(cpt);
1763
1764         return lpni;
1765 }
1766
1767 /*
1768  * Get a peer_ni for the given nid, create it if necessary. Takes a
1769  * hold on the peer_ni.
1770  */
1771 struct lnet_peer_ni *
1772 lnet_nid2peerni_locked(lnet_nid_t nid, lnet_nid_t pref, int cpt)
1773 {
1774         struct lnet_peer_ni *lpni = NULL;
1775         int rc;
1776
1777         if (the_lnet.ln_state != LNET_STATE_RUNNING)
1778                 return ERR_PTR(-ESHUTDOWN);
1779
1780         /*
1781          * find if a peer_ni already exists.
1782          * If so then just return that.
1783          */
1784         lpni = lnet_find_peer_ni_locked(nid);
1785         if (lpni)
1786                 return lpni;
1787
1788         /*
1789          * Slow path:
1790          * use the lnet_api_mutex to serialize the creation of the peer_ni
1791          * and the creation/deletion of the local ni/net. When a local ni is
1792          * created, if there exists a set of peer_nis on that network,
1793          * they need to be traversed and updated. When a local NI is
1794          * deleted, which could result in a network being deleted, then
1795          * all peer nis on that network need to be removed as well.
1796          *
1797          * Creation through traffic should also be serialized with
1798          * creation through DLC.
1799          */
1800         lnet_net_unlock(cpt);
1801         mutex_lock(&the_lnet.ln_api_mutex);
1802         /*
1803          * Shutdown is only set under the ln_api_lock, so a single
1804          * check here is sufficent.
1805          */
1806         if (the_lnet.ln_state != LNET_STATE_RUNNING) {
1807                 lpni = ERR_PTR(-ESHUTDOWN);
1808                 goto out_mutex_unlock;
1809         }
1810
1811         rc = lnet_peer_ni_traffic_add(nid, pref);
1812         if (rc) {
1813                 lpni = ERR_PTR(rc);
1814                 goto out_mutex_unlock;
1815         }
1816
1817         lpni = lnet_find_peer_ni_locked(nid);
1818         LASSERT(lpni);
1819
1820 out_mutex_unlock:
1821         mutex_unlock(&the_lnet.ln_api_mutex);
1822         lnet_net_lock(cpt);
1823
1824         /* Lock has been dropped, check again for shutdown. */
1825         if (the_lnet.ln_state != LNET_STATE_RUNNING) {
1826                 if (!IS_ERR(lpni))
1827                         lnet_peer_ni_decref_locked(lpni);
1828                 lpni = ERR_PTR(-ESHUTDOWN);
1829         }
1830
1831         return lpni;
1832 }
1833
1834 bool
1835 lnet_peer_gw_discovery(struct lnet_peer *lp)
1836 {
1837         bool rc = false;
1838
1839         spin_lock(&lp->lp_lock);
1840         if (lp->lp_state & LNET_PEER_RTR_DISCOVERY)
1841                 rc = true;
1842         spin_unlock(&lp->lp_lock);
1843
1844         return rc;
1845 }
1846
1847 /*
1848  * Is a peer uptodate from the point of view of discovery?
1849  *
1850  * If it is currently being processed, obviously not.
1851  * A forced Ping or Push is also handled by the discovery thread.
1852  *
1853  * Otherwise look at whether the peer needs rediscovering.
1854  */
1855 bool
1856 lnet_peer_is_uptodate(struct lnet_peer *lp)
1857 {
1858         bool rc;
1859
1860         spin_lock(&lp->lp_lock);
1861         if (lp->lp_state & (LNET_PEER_DISCOVERING |
1862                             LNET_PEER_FORCE_PING |
1863                             LNET_PEER_FORCE_PUSH)) {
1864                 rc = false;
1865         } else if (lp->lp_state & LNET_PEER_REDISCOVER) {
1866                 rc = false;
1867         } else if (lnet_peer_needs_push(lp)) {
1868                 rc = false;
1869         } else if (lp->lp_state & LNET_PEER_DISCOVERED) {
1870                 if (lp->lp_state & LNET_PEER_NIDS_UPTODATE)
1871                         rc = true;
1872                 else
1873                         rc = false;
1874         } else {
1875                 rc = false;
1876         }
1877         spin_unlock(&lp->lp_lock);
1878
1879         return rc;
1880 }
1881
1882 /*
1883  * Queue a peer for the attention of the discovery thread.  Call with
1884  * lnet_net_lock/EX held. Returns 0 if the peer was queued, and
1885  * -EALREADY if the peer was already queued.
1886  */
1887 static int lnet_peer_queue_for_discovery(struct lnet_peer *lp)
1888 {
1889         int rc;
1890
1891         spin_lock(&lp->lp_lock);
1892         if (!(lp->lp_state & LNET_PEER_DISCOVERING))
1893                 lp->lp_state |= LNET_PEER_DISCOVERING;
1894         spin_unlock(&lp->lp_lock);
1895         if (list_empty(&lp->lp_dc_list)) {
1896                 lnet_peer_addref_locked(lp);
1897                 list_add_tail(&lp->lp_dc_list, &the_lnet.ln_dc_request);
1898                 wake_up(&the_lnet.ln_dc_waitq);
1899                 rc = 0;
1900         } else {
1901                 rc = -EALREADY;
1902         }
1903
1904         CDEBUG(D_NET, "Queue peer %s: %d\n",
1905                libcfs_nid2str(lp->lp_primary_nid), rc);
1906
1907         return rc;
1908 }
1909
1910 /*
1911  * Discovery of a peer is complete. Wake all waiters on the peer.
1912  * Call with lnet_net_lock/EX held.
1913  */
1914 static void lnet_peer_discovery_complete(struct lnet_peer *lp)
1915 {
1916         struct lnet_msg *msg, *tmp;
1917         int rc = 0;
1918         struct list_head pending_msgs;
1919
1920         INIT_LIST_HEAD(&pending_msgs);
1921
1922         CDEBUG(D_NET, "Discovery complete. Dequeue peer %s\n",
1923                libcfs_nid2str(lp->lp_primary_nid));
1924
1925         list_del_init(&lp->lp_dc_list);
1926         spin_lock(&lp->lp_lock);
1927         list_splice_init(&lp->lp_dc_pendq, &pending_msgs);
1928         spin_unlock(&lp->lp_lock);
1929         wake_up_all(&lp->lp_dc_waitq);
1930
1931         if (lp->lp_rtr_refcount > 0)
1932                 lnet_router_discovery_complete(lp);
1933
1934         lnet_net_unlock(LNET_LOCK_EX);
1935
1936         /* iterate through all pending messages and send them again */
1937         list_for_each_entry_safe(msg, tmp, &pending_msgs, msg_list) {
1938                 list_del_init(&msg->msg_list);
1939                 if (lp->lp_dc_error) {
1940                         lnet_finalize(msg, lp->lp_dc_error);
1941                         continue;
1942                 }
1943
1944                 CDEBUG(D_NET, "sending pending message %s to target %s\n",
1945                        lnet_msgtyp2str(msg->msg_type),
1946                        libcfs_id2str(msg->msg_target));
1947                 rc = lnet_send(msg->msg_src_nid_param, msg,
1948                                msg->msg_rtr_nid_param);
1949                 if (rc < 0) {
1950                         CNETERR("Error sending %s to %s: %d\n",
1951                                lnet_msgtyp2str(msg->msg_type),
1952                                libcfs_id2str(msg->msg_target), rc);
1953                         lnet_finalize(msg, rc);
1954                 }
1955         }
1956         lnet_net_lock(LNET_LOCK_EX);
1957         lnet_peer_decref_locked(lp);
1958 }
1959
1960 /*
1961  * Handle inbound push.
1962  * Like any event handler, called with lnet_res_lock/CPT held.
1963  */
1964 void lnet_peer_push_event(struct lnet_event *ev)
1965 {
1966         struct lnet_ping_buffer *pbuf = ev->md.user_ptr;
1967         struct lnet_peer *lp;
1968
1969         /* lnet_find_peer() adds a refcount */
1970         lp = lnet_find_peer(ev->source.nid);
1971         if (!lp) {
1972                 CDEBUG(D_NET, "Push Put from unknown %s (source %s). Ignoring...\n",
1973                        libcfs_nid2str(ev->initiator.nid),
1974                        libcfs_nid2str(ev->source.nid));
1975                 return;
1976         }
1977
1978         /* Ensure peer state remains consistent while we modify it. */
1979         spin_lock(&lp->lp_lock);
1980
1981         /*
1982          * If some kind of error happened the contents of the message
1983          * cannot be used. Clear the NIDS_UPTODATE and set the
1984          * FORCE_PING flag to trigger a ping.
1985          */
1986         if (ev->status) {
1987                 lp->lp_state &= ~LNET_PEER_NIDS_UPTODATE;
1988                 lp->lp_state |= LNET_PEER_FORCE_PING;
1989                 CDEBUG(D_NET, "Push Put error %d from %s (source %s)\n",
1990                        ev->status,
1991                        libcfs_nid2str(lp->lp_primary_nid),
1992                        libcfs_nid2str(ev->source.nid));
1993                 goto out;
1994         }
1995
1996         /*
1997          * A push with invalid or corrupted info. Clear the UPTODATE
1998          * flag to trigger a ping.
1999          */
2000         if (lnet_ping_info_validate(&pbuf->pb_info)) {
2001                 lp->lp_state &= ~LNET_PEER_NIDS_UPTODATE;
2002                 lp->lp_state |= LNET_PEER_FORCE_PING;
2003                 CDEBUG(D_NET, "Corrupted Push from %s\n",
2004                        libcfs_nid2str(lp->lp_primary_nid));
2005                 goto out;
2006         }
2007
2008         /*
2009          * Make sure we'll allocate the correct size ping buffer when
2010          * pinging the peer.
2011          */
2012         if (lp->lp_data_nnis < pbuf->pb_info.pi_nnis)
2013                 lp->lp_data_nnis = pbuf->pb_info.pi_nnis;
2014
2015         /*
2016          * A non-Multi-Rail peer is not supposed to be capable of
2017          * sending a push.
2018          */
2019         if (!(pbuf->pb_info.pi_features & LNET_PING_FEAT_MULTI_RAIL)) {
2020                 CERROR("Push from non-Multi-Rail peer %s dropped\n",
2021                        libcfs_nid2str(lp->lp_primary_nid));
2022                 goto out;
2023         }
2024
2025         /*
2026          * Check the MULTIRAIL flag. Complain if the peer was DLC
2027          * configured without it.
2028          */
2029         if (!(lp->lp_state & LNET_PEER_MULTI_RAIL)) {
2030                 if (lp->lp_state & LNET_PEER_CONFIGURED) {
2031                         CERROR("Push says %s is Multi-Rail, DLC says not\n",
2032                                libcfs_nid2str(lp->lp_primary_nid));
2033                 } else {
2034                         lp->lp_state |= LNET_PEER_MULTI_RAIL;
2035                         lnet_peer_clr_non_mr_pref_nids(lp);
2036                 }
2037         }
2038
2039         /*
2040          * The peer may have discovery disabled at its end. Set
2041          * NO_DISCOVERY as appropriate.
2042          */
2043         if (!(pbuf->pb_info.pi_features & LNET_PING_FEAT_DISCOVERY)) {
2044                 CDEBUG(D_NET, "Peer %s has discovery disabled\n",
2045                        libcfs_nid2str(lp->lp_primary_nid));
2046                 lp->lp_state |= LNET_PEER_NO_DISCOVERY;
2047         } else if (lp->lp_state & LNET_PEER_NO_DISCOVERY) {
2048                 CDEBUG(D_NET, "Peer %s has discovery enabled\n",
2049                        libcfs_nid2str(lp->lp_primary_nid));
2050                 lp->lp_state &= ~LNET_PEER_NO_DISCOVERY;
2051         }
2052
2053         /*
2054          * Check for truncation of the Put message. Clear the
2055          * NIDS_UPTODATE flag and set FORCE_PING to trigger a ping,
2056          * and tell discovery to allocate a bigger buffer.
2057          */
2058         if (pbuf->pb_nnis < pbuf->pb_info.pi_nnis) {
2059                 if (the_lnet.ln_push_target_nnis < pbuf->pb_info.pi_nnis)
2060                         the_lnet.ln_push_target_nnis = pbuf->pb_info.pi_nnis;
2061                 lp->lp_state &= ~LNET_PEER_NIDS_UPTODATE;
2062                 lp->lp_state |= LNET_PEER_FORCE_PING;
2063                 CDEBUG(D_NET, "Truncated Push from %s (%d nids)\n",
2064                        libcfs_nid2str(lp->lp_primary_nid),
2065                        pbuf->pb_info.pi_nnis);
2066                 goto out;
2067         }
2068
2069         /* always assume new data */
2070         lp->lp_peer_seqno = LNET_PING_BUFFER_SEQNO(pbuf);
2071         lp->lp_state &= ~LNET_PEER_NIDS_UPTODATE;
2072
2073         /*
2074          * If there is data present that hasn't been processed yet,
2075          * we'll replace it if the Put contained newer data and it
2076          * fits. We're racing with a Ping or earlier Push in this
2077          * case.
2078          */
2079         if (lp->lp_state & LNET_PEER_DATA_PRESENT) {
2080                 if (LNET_PING_BUFFER_SEQNO(pbuf) >
2081                         LNET_PING_BUFFER_SEQNO(lp->lp_data) &&
2082                     pbuf->pb_info.pi_nnis <= lp->lp_data->pb_nnis) {
2083                         memcpy(&lp->lp_data->pb_info, &pbuf->pb_info,
2084                                LNET_PING_INFO_SIZE(pbuf->pb_info.pi_nnis));
2085                         CDEBUG(D_NET, "Ping/Push race from %s: %u vs %u\n",
2086                               libcfs_nid2str(lp->lp_primary_nid),
2087                               LNET_PING_BUFFER_SEQNO(pbuf),
2088                               LNET_PING_BUFFER_SEQNO(lp->lp_data));
2089                 }
2090                 goto out;
2091         }
2092
2093         /*
2094          * Allocate a buffer to copy the data. On a failure we drop
2095          * the Push and set FORCE_PING to force the discovery
2096          * thread to fix the problem by pinging the peer.
2097          */
2098         lp->lp_data = lnet_ping_buffer_alloc(lp->lp_data_nnis, GFP_ATOMIC);
2099         if (!lp->lp_data) {
2100                 lp->lp_state |= LNET_PEER_FORCE_PING;
2101                 CDEBUG(D_NET, "Cannot allocate Push buffer for %s %u\n",
2102                        libcfs_nid2str(lp->lp_primary_nid),
2103                        LNET_PING_BUFFER_SEQNO(pbuf));
2104                 goto out;
2105         }
2106
2107         /* Success */
2108         memcpy(&lp->lp_data->pb_info, &pbuf->pb_info,
2109                LNET_PING_INFO_SIZE(pbuf->pb_info.pi_nnis));
2110         lp->lp_state |= LNET_PEER_DATA_PRESENT;
2111         CDEBUG(D_NET, "Received Push %s %u\n",
2112                libcfs_nid2str(lp->lp_primary_nid),
2113                LNET_PING_BUFFER_SEQNO(pbuf));
2114
2115 out:
2116         /*
2117          * Queue the peer for discovery if not done, force it on the request
2118          * queue and wake the discovery thread if the peer was already queued,
2119          * because its status changed.
2120          */
2121         spin_unlock(&lp->lp_lock);
2122         lnet_net_lock(LNET_LOCK_EX);
2123         if (!lnet_peer_is_uptodate(lp) && lnet_peer_queue_for_discovery(lp)) {
2124                 list_move(&lp->lp_dc_list, &the_lnet.ln_dc_request);
2125                 wake_up(&the_lnet.ln_dc_waitq);
2126         }
2127         /* Drop refcount from lookup */
2128         lnet_peer_decref_locked(lp);
2129         lnet_net_unlock(LNET_LOCK_EX);
2130 }
2131
2132 /*
2133  * Clear the discovery error state, unless we're already discovering
2134  * this peer, in which case the error is current.
2135  */
2136 static void lnet_peer_clear_discovery_error(struct lnet_peer *lp)
2137 {
2138         spin_lock(&lp->lp_lock);
2139         if (!(lp->lp_state & LNET_PEER_DISCOVERING))
2140                 lp->lp_dc_error = 0;
2141         spin_unlock(&lp->lp_lock);
2142 }
2143
2144 /*
2145  * Peer discovery slow path. The ln_api_mutex is held on entry, and
2146  * dropped/retaken within this function. An lnet_peer_ni is passed in
2147  * because discovery could tear down an lnet_peer.
2148  */
2149 int
2150 lnet_discover_peer_locked(struct lnet_peer_ni *lpni, int cpt, bool block)
2151 {
2152         DEFINE_WAIT(wait);
2153         struct lnet_peer *lp;
2154         int rc = 0;
2155         int count = 0;
2156
2157 again:
2158         lnet_net_unlock(cpt);
2159         lnet_net_lock(LNET_LOCK_EX);
2160         lp = lpni->lpni_peer_net->lpn_peer;
2161         lnet_peer_clear_discovery_error(lp);
2162
2163         /*
2164          * We're willing to be interrupted. The lpni can become a
2165          * zombie if we race with DLC, so we must check for that.
2166          */
2167         for (;;) {
2168                 /* Keep lp alive when the lnet_net_lock is unlocked */
2169                 lnet_peer_addref_locked(lp);
2170                 prepare_to_wait(&lp->lp_dc_waitq, &wait, TASK_INTERRUPTIBLE);
2171                 if (signal_pending(current))
2172                         break;
2173                 if (the_lnet.ln_dc_state != LNET_DC_STATE_RUNNING)
2174                         break;
2175                 /*
2176                  * Don't repeat discovery if discovery is disabled. This is
2177                  * done to ensure we can use discovery as a standard ping as
2178                  * well for backwards compatibility with routers which do not
2179                  * have discovery or have discovery disabled
2180                  */
2181                 if (lnet_is_discovery_disabled(lp) && count > 0)
2182                         break;
2183                 if (lp->lp_dc_error)
2184                         break;
2185                 if (lnet_peer_is_uptodate(lp))
2186                         break;
2187                 lnet_peer_queue_for_discovery(lp);
2188                 count++;
2189                 CDEBUG(D_NET, "Discovery attempt # %d\n", count);
2190
2191                 /*
2192                  * If caller requested a non-blocking operation then
2193                  * return immediately. Once discovery is complete any
2194                  * pending messages that were stopped due to discovery
2195                  * will be transmitted.
2196                  */
2197                 if (!block)
2198                         break;
2199
2200                 lnet_net_unlock(LNET_LOCK_EX);
2201                 schedule();
2202                 finish_wait(&lp->lp_dc_waitq, &wait);
2203                 lnet_net_lock(LNET_LOCK_EX);
2204                 lnet_peer_decref_locked(lp);
2205                 /* Peer may have changed */
2206                 lp = lpni->lpni_peer_net->lpn_peer;
2207         }
2208         finish_wait(&lp->lp_dc_waitq, &wait);
2209
2210         lnet_net_unlock(LNET_LOCK_EX);
2211         lnet_net_lock(cpt);
2212         lnet_peer_decref_locked(lp);
2213         /*
2214          * The peer may have changed, so re-check and rediscover if that turns
2215          * out to have been the case. The reference count on lp ensured that
2216          * even if it was unlinked from lpni the memory could not be recycled.
2217          * Thus the check below is sufficient to determine whether the peer
2218          * changed. If the peer changed, then lp must not be dereferenced.
2219          */
2220         if (lp != lpni->lpni_peer_net->lpn_peer)
2221                 goto again;
2222
2223         if (signal_pending(current))
2224                 rc = -EINTR;
2225         else if (the_lnet.ln_dc_state != LNET_DC_STATE_RUNNING)
2226                 rc = -ESHUTDOWN;
2227         else if (lp->lp_dc_error)
2228                 rc = lp->lp_dc_error;
2229         else if (!block)
2230                 CDEBUG(D_NET, "non-blocking discovery\n");
2231         else if (!lnet_peer_is_uptodate(lp) && !lnet_is_discovery_disabled(lp))
2232                 goto again;
2233
2234         CDEBUG(D_NET, "peer %s NID %s: %d. %s\n",
2235                (lp ? libcfs_nid2str(lp->lp_primary_nid) : "(none)"),
2236                libcfs_nid2str(lpni->lpni_nid), rc,
2237                (!block) ? "pending discovery" : "discovery complete");
2238
2239         return rc;
2240 }
2241
2242 /* Handle an incoming ack for a push. */
2243 static void
2244 lnet_discovery_event_ack(struct lnet_peer *lp, struct lnet_event *ev)
2245 {
2246         struct lnet_ping_buffer *pbuf;
2247
2248         pbuf = LNET_PING_INFO_TO_BUFFER(ev->md.start);
2249         spin_lock(&lp->lp_lock);
2250         lp->lp_state &= ~LNET_PEER_PUSH_SENT;
2251         lp->lp_push_error = ev->status;
2252         if (ev->status)
2253                 lp->lp_state |= LNET_PEER_PUSH_FAILED;
2254         else
2255                 lp->lp_node_seqno = LNET_PING_BUFFER_SEQNO(pbuf);
2256         spin_unlock(&lp->lp_lock);
2257
2258         CDEBUG(D_NET, "peer %s ev->status %d\n",
2259                libcfs_nid2str(lp->lp_primary_nid), ev->status);
2260 }
2261
2262 /* Handle a Reply message. This is the reply to a Ping message. */
2263 static void
2264 lnet_discovery_event_reply(struct lnet_peer *lp, struct lnet_event *ev)
2265 {
2266         struct lnet_ping_buffer *pbuf;
2267         int rc;
2268
2269         spin_lock(&lp->lp_lock);
2270
2271         /*
2272          * If some kind of error happened the contents of message
2273          * cannot be used. Set PING_FAILED to trigger a retry.
2274          */
2275         if (ev->status) {
2276                 lp->lp_state |= LNET_PEER_PING_FAILED;
2277                 lp->lp_ping_error = ev->status;
2278                 CDEBUG(D_NET, "Ping Reply error %d from %s (source %s)\n",
2279                        ev->status,
2280                        libcfs_nid2str(lp->lp_primary_nid),
2281                        libcfs_nid2str(ev->source.nid));
2282                 goto out;
2283         }
2284
2285         pbuf = LNET_PING_INFO_TO_BUFFER(ev->md.start);
2286         if (pbuf->pb_info.pi_magic == __swab32(LNET_PROTO_PING_MAGIC))
2287                 lnet_swap_pinginfo(pbuf);
2288
2289         /*
2290          * A reply with invalid or corrupted info. Set PING_FAILED to
2291          * trigger a retry.
2292          */
2293         rc = lnet_ping_info_validate(&pbuf->pb_info);
2294         if (rc) {
2295                 lp->lp_state |= LNET_PEER_PING_FAILED;
2296                 lp->lp_ping_error = 0;
2297                 CDEBUG(D_NET, "Corrupted Ping Reply from %s: %d\n",
2298                        libcfs_nid2str(lp->lp_primary_nid), rc);
2299                 goto out;
2300         }
2301
2302
2303         /*
2304          * Only enable the multi-rail feature on the peer if both sides of
2305          * the connection have discovery on
2306          */
2307         if (pbuf->pb_info.pi_features & LNET_PING_FEAT_MULTI_RAIL) {
2308                 CDEBUG(D_NET, "Peer %s has Multi-Rail feature enabled\n",
2309                        libcfs_nid2str(lp->lp_primary_nid));
2310                 lp->lp_state |= LNET_PEER_MULTI_RAIL;
2311         } else {
2312                 CDEBUG(D_NET, "Peer %s has Multi-Rail feature disabled\n",
2313                        libcfs_nid2str(lp->lp_primary_nid));
2314                 lp->lp_state &= ~LNET_PEER_MULTI_RAIL;
2315         }
2316
2317         /*
2318          * The peer may have discovery disabled at its end. Set
2319          * NO_DISCOVERY as appropriate.
2320          */
2321         if ((pbuf->pb_info.pi_features & LNET_PING_FEAT_DISCOVERY) &&
2322             !lnet_peer_discovery_disabled) {
2323                 CDEBUG(D_NET, "Peer %s has discovery enabled\n",
2324                        libcfs_nid2str(lp->lp_primary_nid));
2325                 lp->lp_state &= ~LNET_PEER_NO_DISCOVERY;
2326         } else {
2327                 CDEBUG(D_NET, "Peer %s has discovery disabled\n",
2328                        libcfs_nid2str(lp->lp_primary_nid));
2329                 lp->lp_state |= LNET_PEER_NO_DISCOVERY;
2330         }
2331
2332         /*
2333          * Update the MULTI_RAIL flag based on the reply. If the peer
2334          * was configured with DLC then the setting should match what
2335          * DLC put in.
2336          */
2337         if (pbuf->pb_info.pi_features & LNET_PING_FEAT_MULTI_RAIL) {
2338                 if (lp->lp_state & LNET_PEER_MULTI_RAIL) {
2339                         /* Everything's fine */
2340                 } else if (lp->lp_state & LNET_PEER_CONFIGURED) {
2341                         CWARN("Reply says %s is Multi-Rail, DLC says not\n",
2342                               libcfs_nid2str(lp->lp_primary_nid));
2343                 } else {
2344                         /*
2345                          * if discovery is disabled then we don't want to
2346                          * update the state of the peer. All we'll do is
2347                          * update the peer_nis which were reported back in
2348                          * the initial ping
2349                          */
2350
2351                         if (!lnet_is_discovery_disabled_locked(lp)) {
2352                                 lp->lp_state |= LNET_PEER_MULTI_RAIL;
2353                                 lnet_peer_clr_non_mr_pref_nids(lp);
2354                         }
2355                 }
2356         } else if (lp->lp_state & LNET_PEER_MULTI_RAIL) {
2357                 if (lp->lp_state & LNET_PEER_CONFIGURED) {
2358                         CWARN("DLC says %s is Multi-Rail, Reply says not\n",
2359                               libcfs_nid2str(lp->lp_primary_nid));
2360                 } else {
2361                         CERROR("Multi-Rail state vanished from %s\n",
2362                                libcfs_nid2str(lp->lp_primary_nid));
2363                         lp->lp_state &= ~LNET_PEER_MULTI_RAIL;
2364                 }
2365         }
2366
2367         /*
2368          * Make sure we'll allocate the correct size ping buffer when
2369          * pinging the peer.
2370          */
2371         if (lp->lp_data_nnis < pbuf->pb_info.pi_nnis)
2372                 lp->lp_data_nnis = pbuf->pb_info.pi_nnis;
2373
2374         /*
2375          * Check for truncation of the Reply. Clear PING_SENT and set
2376          * PING_FAILED to trigger a retry.
2377          */
2378         if (pbuf->pb_nnis < pbuf->pb_info.pi_nnis) {
2379                 if (the_lnet.ln_push_target_nnis < pbuf->pb_info.pi_nnis)
2380                         the_lnet.ln_push_target_nnis = pbuf->pb_info.pi_nnis;
2381                 lp->lp_state |= LNET_PEER_PING_FAILED;
2382                 lp->lp_ping_error = 0;
2383                 CDEBUG(D_NET, "Truncated Reply from %s (%d nids)\n",
2384                        libcfs_nid2str(lp->lp_primary_nid),
2385                        pbuf->pb_info.pi_nnis);
2386                 goto out;
2387         }
2388
2389         /*
2390          * Check the sequence numbers in the reply. These are only
2391          * available if the reply came from a Multi-Rail peer.
2392          */
2393         if (pbuf->pb_info.pi_features & LNET_PING_FEAT_MULTI_RAIL &&
2394             pbuf->pb_info.pi_nnis > 1 &&
2395             lp->lp_primary_nid == pbuf->pb_info.pi_ni[1].ns_nid) {
2396                 if (LNET_PING_BUFFER_SEQNO(pbuf) < lp->lp_peer_seqno)
2397                         CDEBUG(D_NET, "peer %s: seq# got %u have %u. peer rebooted?\n",
2398                                 libcfs_nid2str(lp->lp_primary_nid),
2399                                 LNET_PING_BUFFER_SEQNO(pbuf),
2400                                 lp->lp_peer_seqno);
2401
2402                 lp->lp_peer_seqno = LNET_PING_BUFFER_SEQNO(pbuf);
2403         }
2404
2405         /* We're happy with the state of the data in the buffer. */
2406         CDEBUG(D_NET, "peer %s data present %u. state = 0x%x\n",
2407                libcfs_nid2str(lp->lp_primary_nid), lp->lp_peer_seqno, lp->lp_state);
2408         if (lp->lp_state & LNET_PEER_DATA_PRESENT)
2409                 lnet_ping_buffer_decref(lp->lp_data);
2410         else
2411                 lp->lp_state |= LNET_PEER_DATA_PRESENT;
2412         lnet_ping_buffer_addref(pbuf);
2413         lp->lp_data = pbuf;
2414 out:
2415         lp->lp_state &= ~LNET_PEER_PING_SENT;
2416         spin_unlock(&lp->lp_lock);
2417 }
2418
2419 /*
2420  * Send event handling. Only matters for error cases, where we clean
2421  * up state on the peer and peer_ni that would otherwise be updated in
2422  * the REPLY event handler for a successful Ping, and the ACK event
2423  * handler for a successful Push.
2424  */
2425 static int
2426 lnet_discovery_event_send(struct lnet_peer *lp, struct lnet_event *ev)
2427 {
2428         int rc = 0;
2429
2430         if (!ev->status)
2431                 goto out;
2432
2433         spin_lock(&lp->lp_lock);
2434         if (ev->msg_type == LNET_MSG_GET) {
2435                 lp->lp_state &= ~LNET_PEER_PING_SENT;
2436                 lp->lp_state |= LNET_PEER_PING_FAILED;
2437                 lp->lp_ping_error = ev->status;
2438         } else { /* ev->msg_type == LNET_MSG_PUT */
2439                 lp->lp_state &= ~LNET_PEER_PUSH_SENT;
2440                 lp->lp_state |= LNET_PEER_PUSH_FAILED;
2441                 lp->lp_push_error = ev->status;
2442         }
2443         spin_unlock(&lp->lp_lock);
2444         rc = LNET_REDISCOVER_PEER;
2445 out:
2446         CDEBUG(D_NET, "%s Send to %s: %d\n",
2447                 (ev->msg_type == LNET_MSG_GET ? "Ping" : "Push"),
2448                 libcfs_nid2str(ev->target.nid), rc);
2449         return rc;
2450 }
2451
2452 /*
2453  * Unlink event handling. This event is only seen if a call to
2454  * LNetMDUnlink() caused the event to be unlinked. If this call was
2455  * made after the event was set up in LNetGet() or LNetPut() then we
2456  * assume the Ping or Push timed out.
2457  */
2458 static void
2459 lnet_discovery_event_unlink(struct lnet_peer *lp, struct lnet_event *ev)
2460 {
2461         spin_lock(&lp->lp_lock);
2462         /* We've passed through LNetGet() */
2463         if (lp->lp_state & LNET_PEER_PING_SENT) {
2464                 lp->lp_state &= ~LNET_PEER_PING_SENT;
2465                 lp->lp_state |= LNET_PEER_PING_FAILED;
2466                 lp->lp_ping_error = -ETIMEDOUT;
2467                 CDEBUG(D_NET, "Ping Unlink for message to peer %s\n",
2468                         libcfs_nid2str(lp->lp_primary_nid));
2469         }
2470         /* We've passed through LNetPut() */
2471         if (lp->lp_state & LNET_PEER_PUSH_SENT) {
2472                 lp->lp_state &= ~LNET_PEER_PUSH_SENT;
2473                 lp->lp_state |= LNET_PEER_PUSH_FAILED;
2474                 lp->lp_push_error = -ETIMEDOUT;
2475                 CDEBUG(D_NET, "Push Unlink for message to peer %s\n",
2476                         libcfs_nid2str(lp->lp_primary_nid));
2477         }
2478         spin_unlock(&lp->lp_lock);
2479 }
2480
2481 /*
2482  * Event handler for the discovery EQ.
2483  *
2484  * Called with lnet_res_lock(cpt) held. The cpt is the
2485  * lnet_cpt_of_cookie() of the md handle cookie.
2486  */
2487 static void lnet_discovery_event_handler(struct lnet_event *event)
2488 {
2489         struct lnet_peer *lp = event->md.user_ptr;
2490         struct lnet_ping_buffer *pbuf;
2491         int rc;
2492
2493         /* discovery needs to take another look */
2494         rc = LNET_REDISCOVER_PEER;
2495
2496         CDEBUG(D_NET, "Received event: %d\n", event->type);
2497
2498         switch (event->type) {
2499         case LNET_EVENT_ACK:
2500                 lnet_discovery_event_ack(lp, event);
2501                 break;
2502         case LNET_EVENT_REPLY:
2503                 lnet_discovery_event_reply(lp, event);
2504                 break;
2505         case LNET_EVENT_SEND:
2506                 /* Only send failure triggers a retry. */
2507                 rc = lnet_discovery_event_send(lp, event);
2508                 break;
2509         case LNET_EVENT_UNLINK:
2510                 /* LNetMDUnlink() was called */
2511                 lnet_discovery_event_unlink(lp, event);
2512                 break;
2513         default:
2514                 /* Invalid events. */
2515                 LBUG();
2516         }
2517         lnet_net_lock(LNET_LOCK_EX);
2518         if (event->unlinked) {
2519                 pbuf = LNET_PING_INFO_TO_BUFFER(event->md.start);
2520                 lnet_ping_buffer_decref(pbuf);
2521                 lnet_peer_decref_locked(lp);
2522         }
2523
2524         /* put peer back at end of request queue, if discovery not already
2525          * done */
2526         if (rc == LNET_REDISCOVER_PEER && !lnet_peer_is_uptodate(lp)) {
2527                 list_move_tail(&lp->lp_dc_list, &the_lnet.ln_dc_request);
2528                 wake_up(&the_lnet.ln_dc_waitq);
2529         }
2530         lnet_net_unlock(LNET_LOCK_EX);
2531 }
2532
2533 /*
2534  * Build a peer from incoming data.
2535  *
2536  * The NIDs in the incoming data are supposed to be structured as follows:
2537  *  - loopback
2538  *  - primary NID
2539  *  - other NIDs in same net
2540  *  - NIDs in second net
2541  *  - NIDs in third net
2542  *  - ...
2543  * This due to the way the list of NIDs in the data is created.
2544  *
2545  * Note that this function will mark the peer uptodate unless an
2546  * ENOMEM is encontered. All other errors are due to a conflict
2547  * between the DLC configuration and what discovery sees. We treat DLC
2548  * as binding, and therefore set the NIDS_UPTODATE flag to prevent the
2549  * peer from becoming stuck in discovery.
2550  */
2551 static int lnet_peer_merge_data(struct lnet_peer *lp,
2552                                 struct lnet_ping_buffer *pbuf)
2553 {
2554         struct lnet_peer_ni *lpni;
2555         lnet_nid_t *curnis = NULL;
2556         struct lnet_ni_status *addnis = NULL;
2557         lnet_nid_t *delnis = NULL;
2558         unsigned flags;
2559         int ncurnis;
2560         int naddnis;
2561         int ndelnis;
2562         int nnis = 0;
2563         int i;
2564         int j;
2565         int rc;
2566
2567         flags = LNET_PEER_DISCOVERED;
2568         if (pbuf->pb_info.pi_features & LNET_PING_FEAT_MULTI_RAIL)
2569                 flags |= LNET_PEER_MULTI_RAIL;
2570
2571         /*
2572          * Cache the routing feature for the peer; whether it is enabled
2573          * for disabled as reported by the remote peer.
2574          */
2575         spin_lock(&lp->lp_lock);
2576         if (!(pbuf->pb_info.pi_features & LNET_PING_FEAT_RTE_DISABLED))
2577                 lp->lp_state |= LNET_PEER_ROUTER_ENABLED;
2578         else
2579                 lp->lp_state &= ~LNET_PEER_ROUTER_ENABLED;
2580         spin_unlock(&lp->lp_lock);
2581
2582         nnis = MAX(lp->lp_nnis, pbuf->pb_info.pi_nnis);
2583         LIBCFS_ALLOC(curnis, nnis * sizeof(*curnis));
2584         LIBCFS_ALLOC(addnis, nnis * sizeof(*addnis));
2585         LIBCFS_ALLOC(delnis, nnis * sizeof(*delnis));
2586         if (!curnis || !addnis || !delnis) {
2587                 rc = -ENOMEM;
2588                 goto out;
2589         }
2590         ncurnis = 0;
2591         naddnis = 0;
2592         ndelnis = 0;
2593
2594         /* Construct the list of NIDs present in peer. */
2595         lpni = NULL;
2596         while ((lpni = lnet_get_next_peer_ni_locked(lp, NULL, lpni)) != NULL)
2597                 curnis[ncurnis++] = lpni->lpni_nid;
2598
2599         /*
2600          * Check for NIDs in pbuf not present in curnis[].
2601          * The loop starts at 1 to skip the loopback NID.
2602          */
2603         for (i = 1; i < pbuf->pb_info.pi_nnis; i++) {
2604                 for (j = 0; j < ncurnis; j++)
2605                         if (pbuf->pb_info.pi_ni[i].ns_nid == curnis[j])
2606                                 break;
2607                 if (j == ncurnis)
2608                         addnis[naddnis++] = pbuf->pb_info.pi_ni[i];
2609         }
2610         /*
2611          * Check for NIDs in curnis[] not present in pbuf.
2612          * The nested loop starts at 1 to skip the loopback NID.
2613          *
2614          * But never add the loopback NID to delnis[]: if it is
2615          * present in curnis[] then this peer is for this node.
2616          */
2617         for (i = 0; i < ncurnis; i++) {
2618                 if (LNET_NETTYP(LNET_NIDNET(curnis[i])) == LOLND)
2619                         continue;
2620                 for (j = 1; j < pbuf->pb_info.pi_nnis; j++) {
2621                         if (curnis[i] == pbuf->pb_info.pi_ni[j].ns_nid) {
2622                                 /*
2623                                  * update the information we cache for the
2624                                  * peer with the latest information we
2625                                  * received
2626                                  */
2627                                 lpni = lnet_find_peer_ni_locked(curnis[i]);
2628                                 if (lpni) {
2629                                         lpni->lpni_ns_status = pbuf->pb_info.pi_ni[j].ns_status;
2630                                         lnet_peer_ni_decref_locked(lpni);
2631                                 }
2632                                 break;
2633                         }
2634                 }
2635                 if (j == pbuf->pb_info.pi_nnis)
2636                         delnis[ndelnis++] = curnis[i];
2637         }
2638
2639         /*
2640          * If we get here and the discovery is disabled then we don't want
2641          * to add or delete any NIs. We just updated the ones we have some
2642          * information on, and call it a day
2643          */
2644         rc = 0;
2645         if (lnet_is_discovery_disabled(lp))
2646                 goto out;
2647
2648         for (i = 0; i < naddnis; i++) {
2649                 rc = lnet_peer_add_nid(lp, addnis[i].ns_nid, flags);
2650                 if (rc) {
2651                         CERROR("Error adding NID %s to peer %s: %d\n",
2652                                libcfs_nid2str(addnis[i].ns_nid),
2653                                libcfs_nid2str(lp->lp_primary_nid), rc);
2654                         if (rc == -ENOMEM)
2655                                 goto out;
2656                 }
2657                 lpni = lnet_find_peer_ni_locked(addnis[i].ns_nid);
2658                 if (lpni) {
2659                         lpni->lpni_ns_status = addnis[i].ns_status;
2660                         lnet_peer_ni_decref_locked(lpni);
2661                 }
2662         }
2663
2664         for (i = 0; i < ndelnis; i++) {
2665                 /*
2666                  * for routers it's okay to delete the primary_nid because
2667                  * the upper layers don't really rely on it. So if we're
2668                  * being told that the router changed its primary_nid
2669                  * then it's okay to delete it.
2670                  */
2671                 if (lp->lp_rtr_refcount > 0)
2672                         flags |= LNET_PEER_RTR_NI_FORCE_DEL;
2673                 rc = lnet_peer_del_nid(lp, delnis[i], flags);
2674                 if (rc) {
2675                         CERROR("Error deleting NID %s from peer %s: %d\n",
2676                                libcfs_nid2str(delnis[i]),
2677                                libcfs_nid2str(lp->lp_primary_nid), rc);
2678                         if (rc == -ENOMEM)
2679                                 goto out;
2680                 }
2681         }
2682         /*
2683          * Errors other than -ENOMEM are due to peers having been
2684          * configured with DLC. Ignore these because DLC overrides
2685          * Discovery.
2686          */
2687         rc = 0;
2688 out:
2689         LIBCFS_FREE(curnis, nnis * sizeof(*curnis));
2690         LIBCFS_FREE(addnis, nnis * sizeof(*addnis));
2691         LIBCFS_FREE(delnis, nnis * sizeof(*delnis));
2692         lnet_ping_buffer_decref(pbuf);
2693         CDEBUG(D_NET, "peer %s (%p): %d\n", libcfs_nid2str(lp->lp_primary_nid), lp, rc);
2694
2695         if (rc) {
2696                 spin_lock(&lp->lp_lock);
2697                 lp->lp_state &= ~LNET_PEER_NIDS_UPTODATE;
2698                 lp->lp_state |= LNET_PEER_FORCE_PING;
2699                 spin_unlock(&lp->lp_lock);
2700         }
2701         return rc;
2702 }
2703
2704 /*
2705  * The data in pbuf says lp is its primary peer, but the data was
2706  * received by a different peer. Try to update lp with the data.
2707  */
2708 static int
2709 lnet_peer_set_primary_data(struct lnet_peer *lp, struct lnet_ping_buffer *pbuf)
2710 {
2711         struct lnet_handle_md mdh;
2712
2713         /* Queue lp for discovery, and force it on the request queue. */
2714         lnet_net_lock(LNET_LOCK_EX);
2715         if (lnet_peer_queue_for_discovery(lp))
2716                 list_move(&lp->lp_dc_list, &the_lnet.ln_dc_request);
2717         lnet_net_unlock(LNET_LOCK_EX);
2718
2719         LNetInvalidateMDHandle(&mdh);
2720
2721         /*
2722          * Decide whether we can move the peer to the DATA_PRESENT state.
2723          *
2724          * We replace stale data for a multi-rail peer, repair PING_FAILED
2725          * status, and preempt FORCE_PING.
2726          *
2727          * If after that we have DATA_PRESENT, we merge it into this peer.
2728          */
2729         spin_lock(&lp->lp_lock);
2730         if (lp->lp_state & LNET_PEER_MULTI_RAIL) {
2731                 if (lp->lp_peer_seqno < LNET_PING_BUFFER_SEQNO(pbuf)) {
2732                         lp->lp_peer_seqno = LNET_PING_BUFFER_SEQNO(pbuf);
2733                 } else if (lp->lp_state & LNET_PEER_DATA_PRESENT) {
2734                         lp->lp_state &= ~LNET_PEER_DATA_PRESENT;
2735                         lnet_ping_buffer_decref(pbuf);
2736                         pbuf = lp->lp_data;
2737                         lp->lp_data = NULL;
2738                 }
2739         }
2740         if (lp->lp_state & LNET_PEER_DATA_PRESENT) {
2741                 lnet_ping_buffer_decref(lp->lp_data);
2742                 lp->lp_data = NULL;
2743                 lp->lp_state &= ~LNET_PEER_DATA_PRESENT;
2744         }
2745         if (lp->lp_state & LNET_PEER_PING_FAILED) {
2746                 mdh = lp->lp_ping_mdh;
2747                 LNetInvalidateMDHandle(&lp->lp_ping_mdh);
2748                 lp->lp_state &= ~LNET_PEER_PING_FAILED;
2749                 lp->lp_ping_error = 0;
2750         }
2751         if (lp->lp_state & LNET_PEER_FORCE_PING)
2752                 lp->lp_state &= ~LNET_PEER_FORCE_PING;
2753         lp->lp_state |= LNET_PEER_NIDS_UPTODATE;
2754         spin_unlock(&lp->lp_lock);
2755
2756         if (!LNetMDHandleIsInvalid(mdh))
2757                 LNetMDUnlink(mdh);
2758
2759         if (pbuf)
2760                 return lnet_peer_merge_data(lp, pbuf);
2761
2762         CDEBUG(D_NET, "peer %s\n", libcfs_nid2str(lp->lp_primary_nid));
2763         return 0;
2764 }
2765
2766 static bool lnet_is_nid_in_ping_info(lnet_nid_t nid, struct lnet_ping_info *pinfo)
2767 {
2768         int i;
2769
2770         for (i = 0; i < pinfo->pi_nnis; i++) {
2771                 if (pinfo->pi_ni[i].ns_nid == nid)
2772                         return true;
2773         }
2774
2775         return false;
2776 }
2777
2778 /*
2779  * Update a peer using the data received.
2780  */
2781 static int lnet_peer_data_present(struct lnet_peer *lp)
2782 __must_hold(&lp->lp_lock)
2783 {
2784         struct lnet_ping_buffer *pbuf;
2785         struct lnet_peer_ni *lpni;
2786         lnet_nid_t nid = LNET_NID_ANY;
2787         unsigned flags;
2788         int rc = 0;
2789
2790         pbuf = lp->lp_data;
2791         lp->lp_data = NULL;
2792         lp->lp_state &= ~LNET_PEER_DATA_PRESENT;
2793         lp->lp_state |= LNET_PEER_NIDS_UPTODATE;
2794         spin_unlock(&lp->lp_lock);
2795
2796         /*
2797          * Modifications of peer structures are done while holding the
2798          * ln_api_mutex. A global lock is required because we may be
2799          * modifying multiple peer structures, and a mutex greatly
2800          * simplifies memory management.
2801          *
2802          * The actual changes to the data structures must also protect
2803          * against concurrent lookups, for which the lnet_net_lock in
2804          * LNET_LOCK_EX mode is used.
2805          */
2806         mutex_lock(&the_lnet.ln_api_mutex);
2807         if (the_lnet.ln_state != LNET_STATE_RUNNING) {
2808                 rc = -ESHUTDOWN;
2809                 goto out;
2810         }
2811
2812         /*
2813          * If this peer is not on the peer list then it is being torn
2814          * down, and our reference count may be all that is keeping it
2815          * alive. Don't do any work on it.
2816          */
2817         if (list_empty(&lp->lp_peer_list))
2818                 goto out;
2819
2820         flags = LNET_PEER_DISCOVERED;
2821         if (pbuf->pb_info.pi_features & LNET_PING_FEAT_MULTI_RAIL)
2822                 flags |= LNET_PEER_MULTI_RAIL;
2823
2824         /*
2825          * Check whether the primary NID in the message matches the
2826          * primary NID of the peer. If it does, update the peer, if
2827          * it it does not, check whether there is already a peer with
2828          * that primary NID. If no such peer exists, try to update
2829          * the primary NID of the current peer (allowed if it was
2830          * created due to message traffic) and complete the update.
2831          * If the peer did exist, hand off the data to it.
2832          *
2833          * The peer for the loopback interface is a special case: this
2834          * is the peer for the local node, and we want to set its
2835          * primary NID to the correct value here. Moreover, this peer
2836          * can show up with only the loopback NID in the ping buffer.
2837          */
2838         if (pbuf->pb_info.pi_nnis <= 1)
2839                 goto out;
2840         nid = pbuf->pb_info.pi_ni[1].ns_nid;
2841         if (LNET_NETTYP(LNET_NIDNET(lp->lp_primary_nid)) == LOLND) {
2842                 rc = lnet_peer_set_primary_nid(lp, nid, flags);
2843                 if (!rc)
2844                         rc = lnet_peer_merge_data(lp, pbuf);
2845         /*
2846          * if the primary nid of the peer is present in the ping info returned
2847          * from the peer, but it's not the local primary peer we have
2848          * cached and discovery is disabled, then we don't want to update
2849          * our local peer info, by adding or removing NIDs, we just want
2850          * to update the status of the nids that we currently have
2851          * recorded in that peer.
2852          */
2853         } else if (lp->lp_primary_nid == nid ||
2854                    (lnet_is_nid_in_ping_info(lp->lp_primary_nid, &pbuf->pb_info) &&
2855                     lnet_is_discovery_disabled(lp))) {
2856                 rc = lnet_peer_merge_data(lp, pbuf);
2857         } else {
2858                 lpni = lnet_find_peer_ni_locked(nid);
2859                 if (!lpni) {
2860                         rc = lnet_peer_set_primary_nid(lp, nid, flags);
2861                         if (rc) {
2862                                 CERROR("Primary NID error %s versus %s: %d\n",
2863                                        libcfs_nid2str(lp->lp_primary_nid),
2864                                        libcfs_nid2str(nid), rc);
2865                         } else {
2866                                 rc = lnet_peer_merge_data(lp, pbuf);
2867                         }
2868                 } else {
2869                         struct lnet_peer *new_lp;
2870                         new_lp = lpni->lpni_peer_net->lpn_peer;
2871                         /*
2872                          * if lp has discovery/MR enabled that means new_lp
2873                          * should have discovery/MR enabled as well, since
2874                          * it's the same peer, which we're about to merge
2875                          */
2876                         if (!(lp->lp_state & LNET_PEER_NO_DISCOVERY))
2877                                 new_lp->lp_state &= ~LNET_PEER_NO_DISCOVERY;
2878                         if (lp->lp_state & LNET_PEER_MULTI_RAIL)
2879                                 new_lp->lp_state |= LNET_PEER_MULTI_RAIL;
2880
2881                         rc = lnet_peer_set_primary_data(new_lp, pbuf);
2882                         lnet_consolidate_routes_locked(lp, new_lp);
2883                         lnet_peer_ni_decref_locked(lpni);
2884                 }
2885         }
2886 out:
2887         CDEBUG(D_NET, "peer %s(%p): %d. state = 0x%x\n", libcfs_nid2str(lp->lp_primary_nid), lp, rc,
2888                lp->lp_state);
2889         mutex_unlock(&the_lnet.ln_api_mutex);
2890
2891         spin_lock(&lp->lp_lock);
2892         /* Tell discovery to re-check the peer immediately. */
2893         if (!rc)
2894                 rc = LNET_REDISCOVER_PEER;
2895         return rc;
2896 }
2897
2898 /*
2899  * A ping failed. Clear the PING_FAILED state and set the
2900  * FORCE_PING state, to ensure a retry even if discovery is
2901  * disabled. This avoids being left with incorrect state.
2902  */
2903 static int lnet_peer_ping_failed(struct lnet_peer *lp)
2904 __must_hold(&lp->lp_lock)
2905 {
2906         struct lnet_handle_md mdh;
2907         int rc;
2908
2909         mdh = lp->lp_ping_mdh;
2910         LNetInvalidateMDHandle(&lp->lp_ping_mdh);
2911         lp->lp_state &= ~LNET_PEER_PING_FAILED;
2912         lp->lp_state |= LNET_PEER_FORCE_PING;
2913         rc = lp->lp_ping_error;
2914         lp->lp_ping_error = 0;
2915         spin_unlock(&lp->lp_lock);
2916
2917         if (!LNetMDHandleIsInvalid(mdh))
2918                 LNetMDUnlink(mdh);
2919
2920         CDEBUG(D_NET, "peer %s:%d\n",
2921                libcfs_nid2str(lp->lp_primary_nid), rc);
2922
2923         spin_lock(&lp->lp_lock);
2924         return rc ? rc : LNET_REDISCOVER_PEER;
2925 }
2926
2927 /*
2928  * Select NID to send a Ping or Push to.
2929  */
2930 static lnet_nid_t lnet_peer_select_nid(struct lnet_peer *lp)
2931 {
2932         struct lnet_peer_ni *lpni;
2933
2934         /* Look for a direct-connected NID for this peer. */
2935         lpni = NULL;
2936         while ((lpni = lnet_get_next_peer_ni_locked(lp, NULL, lpni)) != NULL) {
2937                 if (!lnet_get_net_locked(lpni->lpni_peer_net->lpn_net_id))
2938                         continue;
2939                 break;
2940         }
2941         if (lpni)
2942                 return lpni->lpni_nid;
2943
2944         /* Look for a routed-connected NID for this peer. */
2945         lpni = NULL;
2946         while ((lpni = lnet_get_next_peer_ni_locked(lp, NULL, lpni)) != NULL) {
2947                 if (!lnet_find_rnet_locked(lpni->lpni_peer_net->lpn_net_id))
2948                         continue;
2949                 break;
2950         }
2951         if (lpni)
2952                 return lpni->lpni_nid;
2953
2954         return LNET_NID_ANY;
2955 }
2956
2957 /* Active side of ping. */
2958 static int lnet_peer_send_ping(struct lnet_peer *lp)
2959 __must_hold(&lp->lp_lock)
2960 {
2961         lnet_nid_t pnid;
2962         int nnis;
2963         int rc;
2964         int cpt;
2965
2966         lp->lp_state |= LNET_PEER_PING_SENT;
2967         lp->lp_state &= ~LNET_PEER_FORCE_PING;
2968         spin_unlock(&lp->lp_lock);
2969
2970         cpt = lnet_net_lock_current();
2971         /* Refcount for MD. */
2972         lnet_peer_addref_locked(lp);
2973         pnid = lnet_peer_select_nid(lp);
2974         lnet_net_unlock(cpt);
2975
2976         nnis = MAX(lp->lp_data_nnis, LNET_INTERFACES_MIN);
2977
2978         rc = lnet_send_ping(pnid, &lp->lp_ping_mdh, nnis, lp,
2979                             the_lnet.ln_dc_eqh, false);
2980
2981         /*
2982          * if LNetMDBind in lnet_send_ping fails we need to decrement the
2983          * refcount on the peer, otherwise LNetMDUnlink will be called
2984          * which will eventually do that.
2985          */
2986         if (rc > 0) {
2987                 lnet_net_lock(cpt);
2988                 lnet_peer_decref_locked(lp);
2989                 lnet_net_unlock(cpt);
2990                 rc = -rc; /* change the rc to negative value */
2991                 goto fail_error;
2992         } else if (rc < 0) {
2993                 goto fail_error;
2994         }
2995
2996         CDEBUG(D_NET, "peer %s\n", libcfs_nid2str(lp->lp_primary_nid));
2997
2998         spin_lock(&lp->lp_lock);
2999         return 0;
3000
3001 fail_error:
3002         CDEBUG(D_NET, "peer %s: %d\n", libcfs_nid2str(lp->lp_primary_nid), rc);
3003         /*
3004          * The errors that get us here are considered hard errors and
3005          * cause Discovery to terminate. So we clear PING_SENT, but do
3006          * not set either PING_FAILED or FORCE_PING. In fact we need
3007          * to clear PING_FAILED, because the unlink event handler will
3008          * have set it if we called LNetMDUnlink() above.
3009          */
3010         spin_lock(&lp->lp_lock);
3011         lp->lp_state &= ~(LNET_PEER_PING_SENT | LNET_PEER_PING_FAILED);
3012         return rc;
3013 }
3014
3015 /*
3016  * This function exists because you cannot call LNetMDUnlink() from an
3017  * event handler.
3018  */
3019 static int lnet_peer_push_failed(struct lnet_peer *lp)
3020 __must_hold(&lp->lp_lock)
3021 {
3022         struct lnet_handle_md mdh;
3023         int rc;
3024
3025         mdh = lp->lp_push_mdh;
3026         LNetInvalidateMDHandle(&lp->lp_push_mdh);
3027         lp->lp_state &= ~LNET_PEER_PUSH_FAILED;
3028         rc = lp->lp_push_error;
3029         lp->lp_push_error = 0;
3030         spin_unlock(&lp->lp_lock);
3031
3032         if (!LNetMDHandleIsInvalid(mdh))
3033                 LNetMDUnlink(mdh);
3034
3035         CDEBUG(D_NET, "peer %s\n", libcfs_nid2str(lp->lp_primary_nid));
3036         spin_lock(&lp->lp_lock);
3037         return rc ? rc : LNET_REDISCOVER_PEER;
3038 }
3039
3040 /* Active side of push. */
3041 static int lnet_peer_send_push(struct lnet_peer *lp)
3042 __must_hold(&lp->lp_lock)
3043 {
3044         struct lnet_ping_buffer *pbuf;
3045         struct lnet_process_id id;
3046         struct lnet_md md;
3047         int cpt;
3048         int rc;
3049
3050         /* Don't push to a non-multi-rail peer. */
3051         if (!(lp->lp_state & LNET_PEER_MULTI_RAIL)) {
3052                 lp->lp_state &= ~LNET_PEER_FORCE_PUSH;
3053                 return 0;
3054         }
3055
3056         lp->lp_state |= LNET_PEER_PUSH_SENT;
3057         lp->lp_state &= ~LNET_PEER_FORCE_PUSH;
3058         spin_unlock(&lp->lp_lock);
3059
3060         cpt = lnet_net_lock_current();
3061         pbuf = the_lnet.ln_ping_target;
3062         lnet_ping_buffer_addref(pbuf);
3063         lnet_net_unlock(cpt);
3064
3065         /* Push source MD */
3066         md.start     = &pbuf->pb_info;
3067         md.length    = LNET_PING_INFO_SIZE(pbuf->pb_nnis);
3068         md.threshold = 2; /* Put/Ack */
3069         md.max_size  = 0;
3070         md.options   = 0;
3071         md.eq_handle = the_lnet.ln_dc_eqh;
3072         md.user_ptr  = lp;
3073
3074         rc = LNetMDBind(md, LNET_UNLINK, &lp->lp_push_mdh);
3075         if (rc) {
3076                 lnet_ping_buffer_decref(pbuf);
3077                 CERROR("Can't bind push source MD: %d\n", rc);
3078                 goto fail_error;
3079         }
3080         cpt = lnet_net_lock_current();
3081         /* Refcount for MD. */
3082         lnet_peer_addref_locked(lp);
3083         id.pid = LNET_PID_LUSTRE;
3084         id.nid = lnet_peer_select_nid(lp);
3085         lnet_net_unlock(cpt);
3086
3087         if (id.nid == LNET_NID_ANY) {
3088                 rc = -EHOSTUNREACH;
3089                 goto fail_unlink;
3090         }
3091
3092         rc = LNetPut(LNET_NID_ANY, lp->lp_push_mdh,
3093                      LNET_ACK_REQ, id, LNET_RESERVED_PORTAL,
3094                      LNET_PROTO_PING_MATCHBITS, 0, 0);
3095
3096         if (rc)
3097                 goto fail_unlink;
3098
3099         CDEBUG(D_NET, "peer %s\n", libcfs_nid2str(lp->lp_primary_nid));
3100
3101         spin_lock(&lp->lp_lock);
3102         return 0;
3103
3104 fail_unlink:
3105         LNetMDUnlink(lp->lp_push_mdh);
3106         LNetInvalidateMDHandle(&lp->lp_push_mdh);
3107 fail_error:
3108         CDEBUG(D_NET, "peer %s(%p): %d\n", libcfs_nid2str(lp->lp_primary_nid), lp, rc);
3109         /*
3110          * The errors that get us here are considered hard errors and
3111          * cause Discovery to terminate. So we clear PUSH_SENT, but do
3112          * not set PUSH_FAILED. In fact we need to clear PUSH_FAILED,
3113          * because the unlink event handler will have set it if we
3114          * called LNetMDUnlink() above.
3115          */
3116         spin_lock(&lp->lp_lock);
3117         lp->lp_state &= ~(LNET_PEER_PUSH_SENT | LNET_PEER_PUSH_FAILED);
3118         return rc;
3119 }
3120
3121 /*
3122  * An unrecoverable error was encountered during discovery.
3123  * Set error status in peer and abort discovery.
3124  */
3125 static void lnet_peer_discovery_error(struct lnet_peer *lp, int error)
3126 {
3127         CDEBUG(D_NET, "Discovery error %s: %d\n",
3128                libcfs_nid2str(lp->lp_primary_nid), error);
3129
3130         spin_lock(&lp->lp_lock);
3131         lp->lp_dc_error = error;
3132         lp->lp_state &= ~LNET_PEER_DISCOVERING;
3133         lp->lp_state |= LNET_PEER_REDISCOVER;
3134         spin_unlock(&lp->lp_lock);
3135 }
3136
3137 /*
3138  * Mark the peer as discovered.
3139  */
3140 static int lnet_peer_discovered(struct lnet_peer *lp)
3141 __must_hold(&lp->lp_lock)
3142 {
3143         lp->lp_state |= LNET_PEER_DISCOVERED;
3144         lp->lp_state &= ~(LNET_PEER_DISCOVERING |
3145                           LNET_PEER_REDISCOVER);
3146
3147         CDEBUG(D_NET, "peer %s\n", libcfs_nid2str(lp->lp_primary_nid));
3148
3149         return 0;
3150 }
3151
3152
3153 /*
3154  * Discovering this peer is taking too long. Cancel any Ping or Push
3155  * that discovery is waiting on by unlinking the relevant MDs. The
3156  * lnet_discovery_event_handler() will proceed from here and complete
3157  * the cleanup.
3158  */
3159 static void lnet_peer_cancel_discovery(struct lnet_peer *lp)
3160 {
3161         struct lnet_handle_md ping_mdh;
3162         struct lnet_handle_md push_mdh;
3163
3164         LNetInvalidateMDHandle(&ping_mdh);
3165         LNetInvalidateMDHandle(&push_mdh);
3166
3167         spin_lock(&lp->lp_lock);
3168         if (lp->lp_state & LNET_PEER_PING_SENT) {
3169                 ping_mdh = lp->lp_ping_mdh;
3170                 LNetInvalidateMDHandle(&lp->lp_ping_mdh);
3171         }
3172         if (lp->lp_state & LNET_PEER_PUSH_SENT) {
3173                 push_mdh = lp->lp_push_mdh;
3174                 LNetInvalidateMDHandle(&lp->lp_push_mdh);
3175         }
3176         spin_unlock(&lp->lp_lock);
3177
3178         if (!LNetMDHandleIsInvalid(ping_mdh))
3179                 LNetMDUnlink(ping_mdh);
3180         if (!LNetMDHandleIsInvalid(push_mdh))
3181                 LNetMDUnlink(push_mdh);
3182 }
3183
3184 /*
3185  * Wait for work to be queued or some other change that must be
3186  * attended to. Returns non-zero if the discovery thread should shut
3187  * down.
3188  */
3189 static int lnet_peer_discovery_wait_for_work(void)
3190 {
3191         int cpt;
3192         int rc = 0;
3193
3194         DEFINE_WAIT(wait);
3195
3196         cpt = lnet_net_lock_current();
3197         for (;;) {
3198                 prepare_to_wait(&the_lnet.ln_dc_waitq, &wait,
3199                                 TASK_INTERRUPTIBLE);
3200                 if (the_lnet.ln_dc_state == LNET_DC_STATE_STOPPING)
3201                         break;
3202                 if (lnet_push_target_resize_needed())
3203                         break;
3204                 if (!list_empty(&the_lnet.ln_dc_request))
3205                         break;
3206                 if (!list_empty(&the_lnet.ln_msg_resend))
3207                         break;
3208                 lnet_net_unlock(cpt);
3209
3210                 /*
3211                  * wakeup max every second to check if there are peers that
3212                  * have been stuck on the working queue for greater than
3213                  * the peer timeout.
3214                  */
3215                 schedule_timeout(cfs_time_seconds(1));
3216                 finish_wait(&the_lnet.ln_dc_waitq, &wait);
3217                 cpt = lnet_net_lock_current();
3218         }
3219         finish_wait(&the_lnet.ln_dc_waitq, &wait);
3220
3221         if (the_lnet.ln_dc_state == LNET_DC_STATE_STOPPING)
3222                 rc = -ESHUTDOWN;
3223
3224         lnet_net_unlock(cpt);
3225
3226         CDEBUG(D_NET, "woken: %d\n", rc);
3227
3228         return rc;
3229 }
3230
3231 /*
3232  * Messages that were pending on a destroyed peer will be put on a global
3233  * resend list. The message resend list will be checked by
3234  * the discovery thread when it wakes up, and will resend messages. These
3235  * messages can still be sendable in the case the lpni which was the initial
3236  * cause of the message re-queue was transfered to another peer.
3237  *
3238  * It is possible that LNet could be shutdown while we're iterating
3239  * through the list. lnet_shudown_lndnets() will attempt to access the
3240  * resend list, but will have to wait until the spinlock is released, by
3241  * which time there shouldn't be any more messages on the resend list.
3242  * During shutdown lnet_send() will fail and lnet_finalize() will be called
3243  * for the messages so they can be released. The other case is that
3244  * lnet_shudown_lndnets() can finalize all the messages before this
3245  * function can visit the resend list, in which case this function will be
3246  * a no-op.
3247  */
3248 static void lnet_resend_msgs(void)
3249 {
3250         struct lnet_msg *msg, *tmp;
3251         struct list_head resend;
3252         int rc;
3253
3254         INIT_LIST_HEAD(&resend);
3255
3256         spin_lock(&the_lnet.ln_msg_resend_lock);
3257         list_splice(&the_lnet.ln_msg_resend, &resend);
3258         spin_unlock(&the_lnet.ln_msg_resend_lock);
3259
3260         list_for_each_entry_safe(msg, tmp, &resend, msg_list) {
3261                 list_del_init(&msg->msg_list);
3262                 rc = lnet_send(msg->msg_src_nid_param, msg,
3263                                msg->msg_rtr_nid_param);
3264                 if (rc < 0) {
3265                         CNETERR("Error sending %s to %s: %d\n",
3266                                lnet_msgtyp2str(msg->msg_type),
3267                                libcfs_id2str(msg->msg_target), rc);
3268                         lnet_finalize(msg, rc);
3269                 }
3270         }
3271 }
3272
3273 /* The discovery thread. */
3274 static int lnet_peer_discovery(void *arg)
3275 {
3276         struct lnet_peer *lp;
3277         int rc;
3278
3279         CDEBUG(D_NET, "started\n");
3280         cfs_block_allsigs();
3281
3282         for (;;) {
3283                 if (lnet_peer_discovery_wait_for_work())
3284                         break;
3285
3286                 lnet_resend_msgs();
3287
3288                 if (lnet_push_target_resize_needed())
3289                         lnet_push_target_resize();
3290
3291                 lnet_net_lock(LNET_LOCK_EX);
3292                 if (the_lnet.ln_dc_state == LNET_DC_STATE_STOPPING)
3293                         break;
3294
3295                 /*
3296                  * Process all incoming discovery work requests.  When
3297                  * discovery must wait on a peer to change state, it
3298                  * is added to the tail of the ln_dc_working queue. A
3299                  * timestamp keeps track of when the peer was added,
3300                  * so we can time out discovery requests that take too
3301                  * long.
3302                  */
3303                 while (!list_empty(&the_lnet.ln_dc_request)) {
3304                         lp = list_first_entry(&the_lnet.ln_dc_request,
3305                                               struct lnet_peer, lp_dc_list);
3306                         list_move(&lp->lp_dc_list, &the_lnet.ln_dc_working);
3307                         /*
3308                          * set the time the peer was put on the dc_working
3309                          * queue. It shouldn't remain on the queue
3310                          * forever, in case the GET message (for ping)
3311                          * doesn't get a REPLY or the PUT message (for
3312                          * push) doesn't get an ACK.
3313                          */
3314                         lp->lp_last_queued = ktime_get_real_seconds();
3315                         lnet_net_unlock(LNET_LOCK_EX);
3316
3317                         /*
3318                          * Select an action depending on the state of
3319                          * the peer and whether discovery is disabled.
3320                          * The check whether discovery is disabled is
3321                          * done after the code that handles processing
3322                          * for arrived data, cleanup for failures, and
3323                          * forcing a Ping or Push.
3324                          */
3325                         spin_lock(&lp->lp_lock);
3326                         CDEBUG(D_NET, "peer %s(%p) state %#x\n",
3327                                 libcfs_nid2str(lp->lp_primary_nid), lp,
3328                                 lp->lp_state);
3329                         if (lp->lp_state & LNET_PEER_DATA_PRESENT)
3330                                 rc = lnet_peer_data_present(lp);
3331                         else if (lp->lp_state & LNET_PEER_PING_FAILED)
3332                                 rc = lnet_peer_ping_failed(lp);
3333                         else if (lp->lp_state & LNET_PEER_PUSH_FAILED)
3334                                 rc = lnet_peer_push_failed(lp);
3335                         else if (lp->lp_state & LNET_PEER_FORCE_PING)
3336                                 rc = lnet_peer_send_ping(lp);
3337                         else if (lp->lp_state & LNET_PEER_FORCE_PUSH)
3338                                 rc = lnet_peer_send_push(lp);
3339                         else if (!(lp->lp_state & LNET_PEER_NIDS_UPTODATE))
3340                                 rc = lnet_peer_send_ping(lp);
3341                         else if (lnet_peer_needs_push(lp))
3342                                 rc = lnet_peer_send_push(lp);
3343                         else
3344                                 rc = lnet_peer_discovered(lp);
3345                         CDEBUG(D_NET, "peer %s(%p) state %#x rc %d\n",
3346                                 libcfs_nid2str(lp->lp_primary_nid), lp,
3347                                 lp->lp_state, rc);
3348                         spin_unlock(&lp->lp_lock);
3349
3350                         lnet_net_lock(LNET_LOCK_EX);
3351                         if (rc == LNET_REDISCOVER_PEER) {
3352                                 list_move(&lp->lp_dc_list,
3353                                           &the_lnet.ln_dc_request);
3354                         } else if (rc) {
3355                                 lnet_peer_discovery_error(lp, rc);
3356                         }
3357                         if (!(lp->lp_state & LNET_PEER_DISCOVERING))
3358                                 lnet_peer_discovery_complete(lp);
3359                         if (the_lnet.ln_dc_state == LNET_DC_STATE_STOPPING)
3360                                 break;
3361                 }
3362
3363                 lnet_net_unlock(LNET_LOCK_EX);
3364         }
3365
3366         CDEBUG(D_NET, "stopping\n");
3367         /*
3368          * Clean up before telling lnet_peer_discovery_stop() that
3369          * we're done. Use wake_up() below to somewhat reduce the
3370          * size of the thundering herd if there are multiple threads
3371          * waiting on discovery of a single peer.
3372          */
3373
3374         /* Queue cleanup 1: stop all pending pings and pushes. */
3375         lnet_net_lock(LNET_LOCK_EX);
3376         while (!list_empty(&the_lnet.ln_dc_working)) {
3377                 lp = list_first_entry(&the_lnet.ln_dc_working,
3378                                       struct lnet_peer, lp_dc_list);
3379                 list_move(&lp->lp_dc_list, &the_lnet.ln_dc_expired);
3380                 lnet_net_unlock(LNET_LOCK_EX);
3381                 lnet_peer_cancel_discovery(lp);
3382                 lnet_net_lock(LNET_LOCK_EX);
3383         }
3384         lnet_net_unlock(LNET_LOCK_EX);
3385
3386         /* Queue cleanup 2: wait for the expired queue to clear. */
3387         while (!list_empty(&the_lnet.ln_dc_expired))
3388                 schedule_timeout(cfs_time_seconds(1));
3389
3390         /* Queue cleanup 3: clear the request queue. */
3391         lnet_net_lock(LNET_LOCK_EX);
3392         while (!list_empty(&the_lnet.ln_dc_request)) {
3393                 lp = list_first_entry(&the_lnet.ln_dc_request,
3394                                       struct lnet_peer, lp_dc_list);
3395                 lnet_peer_discovery_error(lp, -ESHUTDOWN);
3396                 lnet_peer_discovery_complete(lp);
3397         }
3398         lnet_net_unlock(LNET_LOCK_EX);
3399
3400         LNetEQFree(the_lnet.ln_dc_eqh);
3401         LNetInvalidateEQHandle(&the_lnet.ln_dc_eqh);
3402
3403         the_lnet.ln_dc_state = LNET_DC_STATE_SHUTDOWN;
3404         wake_up(&the_lnet.ln_dc_waitq);
3405
3406         CDEBUG(D_NET, "stopped\n");
3407
3408         return 0;
3409 }
3410
3411 /* ln_api_mutex is held on entry. */
3412 int lnet_peer_discovery_start(void)
3413 {
3414         struct task_struct *task;
3415         int rc;
3416
3417         if (the_lnet.ln_dc_state != LNET_DC_STATE_SHUTDOWN)
3418                 return -EALREADY;
3419
3420         rc = LNetEQAlloc(0, lnet_discovery_event_handler, &the_lnet.ln_dc_eqh);
3421         if (rc != 0) {
3422                 CERROR("Can't allocate discovery EQ: %d\n", rc);
3423                 return rc;
3424         }
3425
3426         the_lnet.ln_dc_state = LNET_DC_STATE_RUNNING;
3427         task = kthread_run(lnet_peer_discovery, NULL, "lnet_discovery");
3428         if (IS_ERR(task)) {
3429                 rc = PTR_ERR(task);
3430                 CERROR("Can't start peer discovery thread: %d\n", rc);
3431
3432                 LNetEQFree(the_lnet.ln_dc_eqh);
3433                 LNetInvalidateEQHandle(&the_lnet.ln_dc_eqh);
3434
3435                 the_lnet.ln_dc_state = LNET_DC_STATE_SHUTDOWN;
3436         }
3437
3438         CDEBUG(D_NET, "discovery start: %d\n", rc);
3439
3440         return rc;
3441 }
3442
3443 /* ln_api_mutex is held on entry. */
3444 void lnet_peer_discovery_stop(void)
3445 {
3446         if (the_lnet.ln_dc_state == LNET_DC_STATE_SHUTDOWN)
3447                 return;
3448
3449         LASSERT(the_lnet.ln_dc_state == LNET_DC_STATE_RUNNING);
3450         the_lnet.ln_dc_state = LNET_DC_STATE_STOPPING;
3451         wake_up(&the_lnet.ln_dc_waitq);
3452
3453         wait_event(the_lnet.ln_dc_waitq,
3454                    the_lnet.ln_dc_state == LNET_DC_STATE_SHUTDOWN);
3455
3456         LASSERT(list_empty(&the_lnet.ln_dc_request));
3457         LASSERT(list_empty(&the_lnet.ln_dc_working));
3458         LASSERT(list_empty(&the_lnet.ln_dc_expired));
3459
3460         CDEBUG(D_NET, "discovery stopped\n");
3461 }
3462
3463 /* Debugging */
3464
3465 void
3466 lnet_debug_peer(lnet_nid_t nid)
3467 {
3468         char                    *aliveness = "NA";
3469         struct lnet_peer_ni     *lp;
3470         int                     cpt;
3471
3472         cpt = lnet_cpt_of_nid(nid, NULL);
3473         lnet_net_lock(cpt);
3474
3475         lp = lnet_nid2peerni_locked(nid, LNET_NID_ANY, cpt);
3476         if (IS_ERR(lp)) {
3477                 lnet_net_unlock(cpt);
3478                 CDEBUG(D_WARNING, "No peer %s\n", libcfs_nid2str(nid));
3479                 return;
3480         }
3481
3482         if (lnet_isrouter(lp) || lnet_peer_aliveness_enabled(lp))
3483                 aliveness = (lnet_is_peer_ni_alive(lp)) ? "up" : "down";
3484
3485         CDEBUG(D_WARNING, "%-24s %4d %5s %5d %5d %5d %5d %5d %ld\n",
3486                libcfs_nid2str(lp->lpni_nid), atomic_read(&lp->lpni_refcount),
3487                aliveness, lp->lpni_net->net_tunables.lct_peer_tx_credits,
3488                lp->lpni_rtrcredits, lp->lpni_minrtrcredits,
3489                lp->lpni_txcredits, lp->lpni_mintxcredits, lp->lpni_txqnob);
3490
3491         lnet_peer_ni_decref_locked(lp);
3492
3493         lnet_net_unlock(cpt);
3494 }
3495
3496 /* Gathering information for userspace. */
3497
3498 int lnet_get_peer_ni_info(__u32 peer_index, __u64 *nid,
3499                           char aliveness[LNET_MAX_STR_LEN],
3500                           __u32 *cpt_iter, __u32 *refcount,
3501                           __u32 *ni_peer_tx_credits, __u32 *peer_tx_credits,
3502                           __u32 *peer_rtr_credits, __u32 *peer_min_rtr_credits,
3503                           __u32 *peer_tx_qnob)
3504 {
3505         struct lnet_peer_table          *peer_table;
3506         struct lnet_peer_ni             *lp;
3507         int                             j;
3508         int                             lncpt;
3509         bool                            found = false;
3510
3511         /* get the number of CPTs */
3512         lncpt = cfs_percpt_number(the_lnet.ln_peer_tables);
3513
3514         /* if the cpt number to be examined is >= the number of cpts in
3515          * the system then indicate that there are no more cpts to examin
3516          */
3517         if (*cpt_iter >= lncpt)
3518                 return -ENOENT;
3519
3520         /* get the current table */
3521         peer_table = the_lnet.ln_peer_tables[*cpt_iter];
3522         /* if the ptable is NULL then there are no more cpts to examine */
3523         if (peer_table == NULL)
3524                 return -ENOENT;
3525
3526         lnet_net_lock(*cpt_iter);
3527
3528         for (j = 0; j < LNET_PEER_HASH_SIZE && !found; j++) {
3529                 struct list_head *peers = &peer_table->pt_hash[j];
3530
3531                 list_for_each_entry(lp, peers, lpni_hashlist) {
3532                         if (peer_index-- > 0)
3533                                 continue;
3534
3535                         snprintf(aliveness, LNET_MAX_STR_LEN, "NA");
3536                         if (lnet_isrouter(lp) ||
3537                                 lnet_peer_aliveness_enabled(lp))
3538                                 snprintf(aliveness, LNET_MAX_STR_LEN,
3539                                          lnet_is_peer_ni_alive(lp) ? "up" : "down");
3540
3541                         *nid = lp->lpni_nid;
3542                         *refcount = atomic_read(&lp->lpni_refcount);
3543                         *ni_peer_tx_credits =
3544                                 lp->lpni_net->net_tunables.lct_peer_tx_credits;
3545                         *peer_tx_credits = lp->lpni_txcredits;
3546                         *peer_rtr_credits = lp->lpni_rtrcredits;
3547                         *peer_min_rtr_credits = lp->lpni_mintxcredits;
3548                         *peer_tx_qnob = lp->lpni_txqnob;
3549
3550                         found = true;
3551                 }
3552
3553         }
3554         lnet_net_unlock(*cpt_iter);
3555
3556         *cpt_iter = lncpt;
3557
3558         return found ? 0 : -ENOENT;
3559 }
3560
3561 /* ln_api_mutex is held, which keeps the peer list stable */
3562 int lnet_get_peer_info(struct lnet_ioctl_peer_cfg *cfg, void __user *bulk)
3563 {
3564         struct lnet_ioctl_element_stats *lpni_stats;
3565         struct lnet_ioctl_element_msg_stats *lpni_msg_stats;
3566         struct lnet_ioctl_peer_ni_hstats *lpni_hstats;
3567         struct lnet_peer_ni_credit_info *lpni_info;
3568         struct lnet_peer_ni *lpni;
3569         struct lnet_peer *lp;
3570         lnet_nid_t nid;
3571         __u32 size;
3572         int rc;
3573
3574         lp = lnet_find_peer(cfg->prcfg_prim_nid);
3575
3576         if (!lp) {
3577                 rc = -ENOENT;
3578                 goto out;
3579         }
3580
3581         size = sizeof(nid) + sizeof(*lpni_info) + sizeof(*lpni_stats)
3582                 + sizeof(*lpni_msg_stats) + sizeof(*lpni_hstats);
3583         size *= lp->lp_nnis;
3584         if (size > cfg->prcfg_size) {
3585                 cfg->prcfg_size = size;
3586                 rc = -E2BIG;
3587                 goto out_lp_decref;
3588         }
3589
3590         cfg->prcfg_prim_nid = lp->lp_primary_nid;
3591         cfg->prcfg_mr = lnet_peer_is_multi_rail(lp);
3592         cfg->prcfg_cfg_nid = lp->lp_primary_nid;
3593         cfg->prcfg_count = lp->lp_nnis;
3594         cfg->prcfg_size = size;
3595         cfg->prcfg_state = lp->lp_state;
3596
3597         /* Allocate helper buffers. */
3598         rc = -ENOMEM;
3599         LIBCFS_ALLOC(lpni_info, sizeof(*lpni_info));
3600         if (!lpni_info)
3601                 goto out_lp_decref;
3602         LIBCFS_ALLOC(lpni_stats, sizeof(*lpni_stats));
3603         if (!lpni_stats)
3604                 goto out_free_info;
3605         LIBCFS_ALLOC(lpni_msg_stats, sizeof(*lpni_msg_stats));
3606         if (!lpni_msg_stats)
3607                 goto out_free_stats;
3608         LIBCFS_ALLOC(lpni_hstats, sizeof(*lpni_hstats));
3609         if (!lpni_hstats)
3610                 goto out_free_msg_stats;
3611
3612
3613         lpni = NULL;
3614         rc = -EFAULT;
3615         while ((lpni = lnet_get_next_peer_ni_locked(lp, NULL, lpni)) != NULL) {
3616                 nid = lpni->lpni_nid;
3617                 if (copy_to_user(bulk, &nid, sizeof(nid)))
3618                         goto out_free_hstats;
3619                 bulk += sizeof(nid);
3620
3621                 memset(lpni_info, 0, sizeof(*lpni_info));
3622                 snprintf(lpni_info->cr_aliveness, LNET_MAX_STR_LEN, "NA");
3623                 if (lnet_isrouter(lpni) ||
3624                         lnet_peer_aliveness_enabled(lpni))
3625                         snprintf(lpni_info->cr_aliveness, LNET_MAX_STR_LEN,
3626                                 lnet_is_peer_ni_alive(lpni) ? "up" : "down");
3627
3628                 lpni_info->cr_refcount = atomic_read(&lpni->lpni_refcount);
3629                 lpni_info->cr_ni_peer_tx_credits = (lpni->lpni_net != NULL) ?
3630                         lpni->lpni_net->net_tunables.lct_peer_tx_credits : 0;
3631                 lpni_info->cr_peer_tx_credits = lpni->lpni_txcredits;
3632                 lpni_info->cr_peer_rtr_credits = lpni->lpni_rtrcredits;
3633                 lpni_info->cr_peer_min_rtr_credits = lpni->lpni_minrtrcredits;
3634                 lpni_info->cr_peer_min_tx_credits = lpni->lpni_mintxcredits;
3635                 lpni_info->cr_peer_tx_qnob = lpni->lpni_txqnob;
3636                 if (copy_to_user(bulk, lpni_info, sizeof(*lpni_info)))
3637                         goto out_free_hstats;
3638                 bulk += sizeof(*lpni_info);
3639
3640                 memset(lpni_stats, 0, sizeof(*lpni_stats));
3641                 lpni_stats->iel_send_count = lnet_sum_stats(&lpni->lpni_stats,
3642                                                             LNET_STATS_TYPE_SEND);
3643                 lpni_stats->iel_recv_count = lnet_sum_stats(&lpni->lpni_stats,
3644                                                             LNET_STATS_TYPE_RECV);
3645                 lpni_stats->iel_drop_count = lnet_sum_stats(&lpni->lpni_stats,
3646                                                             LNET_STATS_TYPE_DROP);
3647                 if (copy_to_user(bulk, lpni_stats, sizeof(*lpni_stats)))
3648                         goto out_free_hstats;
3649                 bulk += sizeof(*lpni_stats);
3650                 lnet_usr_translate_stats(lpni_msg_stats, &lpni->lpni_stats);
3651                 if (copy_to_user(bulk, lpni_msg_stats, sizeof(*lpni_msg_stats)))
3652                         goto out_free_hstats;
3653                 bulk += sizeof(*lpni_msg_stats);
3654                 lpni_hstats->hlpni_network_timeout =
3655                   atomic_read(&lpni->lpni_hstats.hlt_network_timeout);
3656                 lpni_hstats->hlpni_remote_dropped =
3657                   atomic_read(&lpni->lpni_hstats.hlt_remote_dropped);
3658                 lpni_hstats->hlpni_remote_timeout =
3659                   atomic_read(&lpni->lpni_hstats.hlt_remote_timeout);
3660                 lpni_hstats->hlpni_remote_error =
3661                   atomic_read(&lpni->lpni_hstats.hlt_remote_error);
3662                 lpni_hstats->hlpni_health_value =
3663                   atomic_read(&lpni->lpni_healthv);
3664                 if (copy_to_user(bulk, lpni_hstats, sizeof(*lpni_hstats)))
3665                         goto out_free_hstats;
3666                 bulk += sizeof(*lpni_hstats);
3667         }
3668         rc = 0;
3669
3670 out_free_hstats:
3671         LIBCFS_FREE(lpni_hstats, sizeof(*lpni_hstats));
3672 out_free_msg_stats:
3673         LIBCFS_FREE(lpni_msg_stats, sizeof(*lpni_msg_stats));
3674 out_free_stats:
3675         LIBCFS_FREE(lpni_stats, sizeof(*lpni_stats));
3676 out_free_info:
3677         LIBCFS_FREE(lpni_info, sizeof(*lpni_info));
3678 out_lp_decref:
3679         lnet_peer_decref_locked(lp);
3680 out:
3681         return rc;
3682 }
3683
3684 void
3685 lnet_peer_ni_add_to_recoveryq_locked(struct lnet_peer_ni *lpni)
3686 {
3687         /* the mt could've shutdown and cleaned up the queues */
3688         if (the_lnet.ln_mt_state != LNET_MT_STATE_RUNNING)
3689                 return;
3690
3691         if (list_empty(&lpni->lpni_recovery) &&
3692             atomic_read(&lpni->lpni_healthv) < LNET_MAX_HEALTH_VALUE) {
3693                 CERROR("lpni %s added to recovery queue. Health = %d\n",
3694                         libcfs_nid2str(lpni->lpni_nid),
3695                         atomic_read(&lpni->lpni_healthv));
3696                 list_add_tail(&lpni->lpni_recovery, &the_lnet.ln_mt_peerNIRecovq);
3697                 lnet_peer_ni_addref_locked(lpni);
3698         }
3699 }
3700
3701 /* Call with the ln_api_mutex held */
3702 void
3703 lnet_peer_ni_set_healthv(lnet_nid_t nid, int value, bool all)
3704 {
3705         struct lnet_peer_table *ptable;
3706         struct lnet_peer *lp;
3707         struct lnet_peer_net *lpn;
3708         struct lnet_peer_ni *lpni;
3709         int lncpt;
3710         int cpt;
3711
3712         if (the_lnet.ln_state != LNET_STATE_RUNNING)
3713                 return;
3714
3715         if (!all) {
3716                 lnet_net_lock(LNET_LOCK_EX);
3717                 lpni = lnet_find_peer_ni_locked(nid);
3718                 if (!lpni) {
3719                         lnet_net_unlock(LNET_LOCK_EX);
3720                         return;
3721                 }
3722                 atomic_set(&lpni->lpni_healthv, value);
3723                 lnet_peer_ni_add_to_recoveryq_locked(lpni);
3724                 lnet_peer_ni_decref_locked(lpni);
3725                 lnet_net_unlock(LNET_LOCK_EX);
3726                 return;
3727         }
3728
3729         lncpt = cfs_percpt_number(the_lnet.ln_peer_tables);
3730
3731         /*
3732          * Walk all the peers and reset the healhv for each one to the
3733          * maximum value.
3734          */
3735         lnet_net_lock(LNET_LOCK_EX);
3736         for (cpt = 0; cpt < lncpt; cpt++) {
3737                 ptable = the_lnet.ln_peer_tables[cpt];
3738                 list_for_each_entry(lp, &ptable->pt_peer_list, lp_peer_list) {
3739                         list_for_each_entry(lpn, &lp->lp_peer_nets, lpn_peer_nets) {
3740                                 list_for_each_entry(lpni, &lpn->lpn_peer_nis,
3741                                                     lpni_peer_nis) {
3742                                         atomic_set(&lpni->lpni_healthv, value);
3743                                         lnet_peer_ni_add_to_recoveryq_locked(lpni);
3744                                 }
3745                         }
3746                 }
3747         }
3748         lnet_net_unlock(LNET_LOCK_EX);
3749 }
3750