Whamcloud - gitweb
LU-8066 obd: final pieces for sysfs/debugfs support.
[fs/lustre-release.git] / lustre / lov / lov_obd.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) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 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  * lustre/lov/lov_obd.c
33  *
34  * Author: Phil Schwan <phil@clusterfs.com>
35  * Author: Peter Braam <braam@clusterfs.com>
36  * Author: Mike Shaver <shaver@clusterfs.com>
37  * Author: Nathan Rutman <nathan@clusterfs.com>
38  */
39
40 #define DEBUG_SUBSYSTEM S_LOV
41 #include <libcfs/libcfs.h>
42
43 #include <cl_object.h>
44 #include <lustre_dlm.h>
45 #include <lustre_fid.h>
46 #include <uapi/linux/lustre/lustre_ioctl.h>
47 #include <lustre_lib.h>
48 #include <lustre_mds.h>
49 #include <lustre_net.h>
50 #include <uapi/linux/lustre/lustre_param.h>
51 #include <lustre_swab.h>
52 #include <lprocfs_status.h>
53 #include <obd_class.h>
54 #include <obd_support.h>
55
56 #include "lov_internal.h"
57
58 /* Keep a refcount of lov->tgt usage to prevent racing with addition/deletion.
59    Any function that expects lov_tgts to remain stationary must take a ref. */
60 static void lov_getref(struct obd_device *obd)
61 {
62         struct lov_obd *lov = &obd->u.lov;
63
64         /* nobody gets through here until lov_putref is done */
65         mutex_lock(&lov->lov_lock);
66         atomic_inc(&lov->lov_refcount);
67         mutex_unlock(&lov->lov_lock);
68         return;
69 }
70
71 static void __lov_del_obd(struct obd_device *obd, struct lov_tgt_desc *tgt);
72
73 static void lov_putref(struct obd_device *obd)
74 {
75         struct lov_obd *lov = &obd->u.lov;
76
77         mutex_lock(&lov->lov_lock);
78         /* ok to dec to 0 more than once -- ltd_exp's will be null */
79         if (atomic_dec_and_test(&lov->lov_refcount) && lov->lov_death_row) {
80                 struct list_head kill = LIST_HEAD_INIT(kill);
81                 struct lov_tgt_desc *tgt, *n;
82                 int i;
83
84                 CDEBUG(D_CONFIG, "destroying %d lov targets\n",
85                        lov->lov_death_row);
86                 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
87                         tgt = lov->lov_tgts[i];
88
89                         if (!tgt || !tgt->ltd_reap)
90                                 continue;
91                         list_add(&tgt->ltd_kill, &kill);
92                         /* XXX - right now there is a dependency on ld_tgt_count
93                          * being the maximum tgt index for computing the
94                          * mds_max_easize. So we can't shrink it. */
95                         lov_ost_pool_remove(&lov->lov_packed, i);
96                         lov->lov_tgts[i] = NULL;
97                         lov->lov_death_row--;
98                 }
99                 mutex_unlock(&lov->lov_lock);
100
101                 list_for_each_entry_safe(tgt, n, &kill, ltd_kill) {
102                         list_del(&tgt->ltd_kill);
103                         /* Disconnect */
104                         __lov_del_obd(obd, tgt);
105                 }
106         } else {
107                 mutex_unlock(&lov->lov_lock);
108         }
109 }
110
111 static int lov_set_osc_active(struct obd_device *obd, struct obd_uuid *uuid,
112                               enum obd_notify_event ev);
113 static int lov_notify(struct obd_device *obd, struct obd_device *watched,
114                       enum obd_notify_event ev);
115
116 int lov_connect_obd(struct obd_device *obd, __u32 index, int activate,
117                     struct obd_connect_data *data)
118 {
119         struct lov_obd *lov = &obd->u.lov;
120         struct obd_uuid *tgt_uuid;
121         struct obd_device *tgt_obd;
122         static struct obd_uuid lov_osc_uuid = { "LOV_OSC_UUID" };
123         struct obd_import *imp;
124         int rc;
125         ENTRY;
126
127         if (lov->lov_tgts[index] == NULL)
128                 RETURN(-EINVAL);
129
130         tgt_uuid = &lov->lov_tgts[index]->ltd_uuid;
131         tgt_obd = lov->lov_tgts[index]->ltd_obd;
132
133         if (!tgt_obd->obd_set_up) {
134                 CERROR("Target %s not set up\n", obd_uuid2str(tgt_uuid));
135                 RETURN(-EINVAL);
136         }
137
138         /* override the sp_me from lov */
139         tgt_obd->u.cli.cl_sp_me = lov->lov_sp_me;
140
141         if (data && (data->ocd_connect_flags & OBD_CONNECT_INDEX))
142                 data->ocd_index = index;
143
144         /*
145          * Divine LOV knows that OBDs under it are OSCs.
146          */
147         imp = tgt_obd->u.cli.cl_import;
148
149         if (activate) {
150                 tgt_obd->obd_no_recov = 0;
151                 /* FIXME this is probably supposed to be
152                    ptlrpc_set_import_active.  Horrible naming. */
153                 ptlrpc_activate_import(imp);
154         }
155
156         rc = obd_register_observer(tgt_obd, obd);
157         if (rc) {
158                 CERROR("Target %s register_observer error %d\n",
159                        obd_uuid2str(tgt_uuid), rc);
160                 RETURN(rc);
161         }
162
163
164         if (imp->imp_invalid) {
165                 CDEBUG(D_CONFIG, "not connecting OSC %s; administratively "
166                        "disabled\n", obd_uuid2str(tgt_uuid));
167                 RETURN(0);
168         }
169
170         rc = obd_connect(NULL, &lov->lov_tgts[index]->ltd_exp, tgt_obd,
171                          &lov_osc_uuid, data, NULL);
172         if (rc || !lov->lov_tgts[index]->ltd_exp) {
173                 CERROR("Target %s connect error %d\n",
174                        obd_uuid2str(tgt_uuid), rc);
175                 RETURN(-ENODEV);
176         }
177
178         lov->lov_tgts[index]->ltd_reap = 0;
179
180         CDEBUG(D_CONFIG, "Connected tgt idx %d %s (%s) %sactive\n", index,
181                obd_uuid2str(tgt_uuid), tgt_obd->obd_name, activate ? "":"in");
182
183         if (lov->targets_proc_entry != NULL) {
184                 struct proc_dir_entry *osc_symlink;
185                 struct obd_device *osc_obd;
186
187                 osc_obd = lov->lov_tgts[index]->ltd_exp->exp_obd;
188
189                 LASSERT(osc_obd != NULL);
190                 LASSERT(osc_obd->obd_magic == OBD_DEVICE_MAGIC);
191                 LASSERT(osc_obd->obd_type->typ_name != NULL);
192
193                 osc_symlink = lprocfs_add_symlink(osc_obd->obd_name,
194                                                   lov->targets_proc_entry,
195                                                   "../../../%s/%s",
196                                                   osc_obd->obd_type->typ_name,
197                                                   osc_obd->obd_name);
198                 if (osc_symlink == NULL) {
199                         CERROR("cannot register LOV target "
200                                "/proc/fs/lustre/%s/%s/target_obds/%s\n",
201                                obd->obd_type->typ_name, obd->obd_name,
202                                osc_obd->obd_name);
203                 }
204         }
205         RETURN(0);
206 }
207
208 static int lov_connect(const struct lu_env *env,
209                        struct obd_export **exp, struct obd_device *obd,
210                        struct obd_uuid *cluuid, struct obd_connect_data *data,
211                        void *localdata)
212 {
213         struct lov_obd *lov = &obd->u.lov;
214         struct lov_tgt_desc *tgt;
215         struct lustre_handle conn;
216         int i, rc;
217         ENTRY;
218
219         CDEBUG(D_CONFIG, "connect #%d\n", lov->lov_connects);
220
221         rc = class_connect(&conn, obd, cluuid);
222         if (rc)
223                 RETURN(rc);
224
225         *exp = class_conn2export(&conn);
226
227         /* Why should there ever be more than 1 connect? */
228         lov->lov_connects++;
229         LASSERT(lov->lov_connects == 1);
230
231         memset(&lov->lov_ocd, 0, sizeof(lov->lov_ocd));
232         if (data)
233                 lov->lov_ocd = *data;
234
235         lov->targets_proc_entry = lprocfs_register("target_obds",
236                                                    obd->obd_proc_entry,
237                                                    NULL, NULL);
238         if (IS_ERR(lov->targets_proc_entry)) {
239                 CERROR("%s: cannot register "
240                        "/proc/fs/lustre/%s/%s/target_obds\n",
241                        obd->obd_name, obd->obd_type->typ_name, obd->obd_name);
242                 lov->targets_proc_entry = NULL;
243         }
244
245         obd_getref(obd);
246         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
247                 tgt = lov->lov_tgts[i];
248                 if (!tgt || obd_uuid_empty(&tgt->ltd_uuid))
249                         continue;
250                 /* Flags will be lowest common denominator */
251                 rc = lov_connect_obd(obd, i, tgt->ltd_activate, &lov->lov_ocd);
252                 if (rc) {
253                         CERROR("%s: lov connect tgt %d failed: %d\n",
254                                obd->obd_name, i, rc);
255                         continue;
256                 }
257                 /* connect to administrative disabled ost */
258                 if (!lov->lov_tgts[i]->ltd_exp)
259                         continue;
260
261                 rc = lov_notify(obd, lov->lov_tgts[i]->ltd_exp->exp_obd,
262                                 OBD_NOTIFY_CONNECT);
263                 if (rc) {
264                         CERROR("%s error sending notify %d\n",
265                                obd->obd_name, rc);
266                 }
267         }
268         obd_putref(obd);
269
270         RETURN(0);
271 }
272
273 static int lov_disconnect_obd(struct obd_device *obd, struct lov_tgt_desc *tgt)
274 {
275         struct lov_obd *lov = &obd->u.lov;
276         struct obd_device *osc_obd;
277         int rc;
278         ENTRY;
279
280         osc_obd = class_exp2obd(tgt->ltd_exp);
281         CDEBUG(D_CONFIG, "%s: disconnecting target %s\n",
282                obd->obd_name, osc_obd->obd_name);
283
284         if (tgt->ltd_active) {
285                 tgt->ltd_active = 0;
286                 lov->desc.ld_active_tgt_count--;
287                 tgt->ltd_exp->exp_obd->obd_inactive = 1;
288         }
289
290         if (osc_obd) {
291                 /* Pass it on to our clients.
292                  * XXX This should be an argument to disconnect,
293                  * XXX not a back-door flag on the OBD.  Ah well.
294                  */
295                 osc_obd->obd_force = obd->obd_force;
296                 osc_obd->obd_fail = obd->obd_fail;
297                 osc_obd->obd_no_recov = obd->obd_no_recov;
298
299                 if (lov->targets_proc_entry != NULL)
300                         lprocfs_remove_proc_entry(osc_obd->obd_name,
301                                                   lov->targets_proc_entry);
302         }
303
304         obd_register_observer(osc_obd, NULL);
305
306         rc = obd_disconnect(tgt->ltd_exp);
307         if (rc) {
308                 CERROR("Target %s disconnect error %d\n",
309                        tgt->ltd_uuid.uuid, rc);
310                 rc = 0;
311         }
312
313         tgt->ltd_exp = NULL;
314         RETURN(0);
315 }
316
317 static int lov_disconnect(struct obd_export *exp)
318 {
319         struct obd_device *obd = class_exp2obd(exp);
320         struct lov_obd *lov = &obd->u.lov;
321         int i, rc;
322         ENTRY;
323
324         if (!lov->lov_tgts)
325                 goto out;
326
327         /* Only disconnect the underlying layers on the final disconnect. */
328         lov->lov_connects--;
329         if (lov->lov_connects != 0) {
330                 /* why should there be more than 1 connect? */
331                 CERROR("disconnect #%d\n", lov->lov_connects);
332                 goto out;
333         }
334
335         /* Let's hold another reference so lov_del_obd doesn't spin through
336            putref every time */
337         obd_getref(obd);
338
339         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
340                 if (lov->lov_tgts[i] && lov->lov_tgts[i]->ltd_exp) {
341                         /* Disconnection is the last we know about an obd */
342                         lov_del_target(obd, i, NULL, lov->lov_tgts[i]->ltd_gen);
343                 }
344         }
345         obd_putref(obd);
346
347         if (lov->targets_proc_entry != NULL)
348                 lprocfs_remove(&lov->targets_proc_entry);
349
350 out:
351         rc = class_disconnect(exp); /* bz 9811 */
352         RETURN(rc);
353 }
354
355 /* Error codes:
356  *
357  *  -EINVAL  : UUID can't be found in the LOV's target list
358  *  -ENOTCONN: The UUID is found, but the target connection is bad (!)
359  *  -EBADF   : The UUID is found, but the OBD is the wrong type (!)
360  *  any >= 0 : is log target index
361  */
362 static int lov_set_osc_active(struct obd_device *obd, struct obd_uuid *uuid,
363                               enum obd_notify_event ev)
364 {
365         struct lov_obd *lov = &obd->u.lov;
366         struct lov_tgt_desc *tgt;
367         int index, activate, active;
368         ENTRY;
369
370         CDEBUG(D_INFO, "Searching in lov %p for uuid %s event(%d)\n",
371                lov, uuid->uuid, ev);
372
373         obd_getref(obd);
374         for (index = 0; index < lov->desc.ld_tgt_count; index++) {
375                 tgt = lov->lov_tgts[index];
376                 if (!tgt)
377                         continue;
378                 /*
379                  * LU-642, initially inactive OSC could miss the obd_connect,
380                  * we make up for it here.
381                  */
382                 if (ev == OBD_NOTIFY_ACTIVATE && tgt->ltd_exp == NULL &&
383                     obd_uuid_equals(uuid, &tgt->ltd_uuid)) {
384                         struct obd_uuid lov_osc_uuid = {"LOV_OSC_UUID"};
385
386                         obd_connect(NULL, &tgt->ltd_exp, tgt->ltd_obd,
387                                     &lov_osc_uuid, &lov->lov_ocd, NULL);
388                 }
389                 if (!tgt->ltd_exp)
390                         continue;
391
392                 CDEBUG(D_INFO, "lov idx %d is %s conn %#llx\n",
393                        index, obd_uuid2str(&tgt->ltd_uuid),
394                        tgt->ltd_exp->exp_handle.h_cookie);
395                 if (obd_uuid_equals(uuid, &tgt->ltd_uuid))
396                         break;
397         }
398
399         if (index == lov->desc.ld_tgt_count)
400                 GOTO(out, index = -EINVAL);
401
402         if (ev == OBD_NOTIFY_DEACTIVATE || ev == OBD_NOTIFY_ACTIVATE) {
403                 activate = (ev == OBD_NOTIFY_ACTIVATE) ? 1 : 0;
404
405                 if (lov->lov_tgts[index]->ltd_activate == activate) {
406                         CDEBUG(D_INFO, "OSC %s already %sactivate!\n",
407                                uuid->uuid, activate ? "" : "de");
408                 } else {
409                         lov->lov_tgts[index]->ltd_activate = activate;
410                         CDEBUG(D_CONFIG, "%sactivate OSC %s\n",
411                                activate ? "" : "de", obd_uuid2str(uuid));
412                 }
413
414         } else if (ev == OBD_NOTIFY_INACTIVE || ev == OBD_NOTIFY_ACTIVE) {
415                 active = (ev == OBD_NOTIFY_ACTIVE) ? 1 : 0;
416
417                 if (lov->lov_tgts[index]->ltd_active == active) {
418                         CDEBUG(D_INFO, "OSC %s already %sactive!\n",
419                                uuid->uuid, active ? "" : "in");
420                         GOTO(out, index);
421                 } else {
422                         CDEBUG(D_CONFIG, "Marking OSC %s %sactive\n",
423                                obd_uuid2str(uuid), active ? "" : "in");
424                 }
425
426                 lov->lov_tgts[index]->ltd_active = active;
427                 if (active) {
428                         lov->desc.ld_active_tgt_count++;
429                         lov->lov_tgts[index]->ltd_exp->exp_obd->obd_inactive = 0;
430                 } else {
431                         lov->desc.ld_active_tgt_count--;
432                         lov->lov_tgts[index]->ltd_exp->exp_obd->obd_inactive = 1;
433                 }
434         } else {
435                 CERROR("%s: unknown event %d for uuid %s\n", obd->obd_name,
436                        ev, uuid->uuid);
437         }
438
439  out:
440         obd_putref(obd);
441         RETURN(index);
442 }
443
444 static int lov_notify(struct obd_device *obd, struct obd_device *watched,
445                       enum obd_notify_event ev)
446 {
447         int rc = 0;
448         struct lov_obd *lov = &obd->u.lov;
449         ENTRY;
450
451         down_read(&lov->lov_notify_lock);
452         if (!lov->lov_connects)
453                 GOTO(out_notify_lock, rc = 0);
454
455         if (ev == OBD_NOTIFY_ACTIVE || ev == OBD_NOTIFY_INACTIVE ||
456             ev == OBD_NOTIFY_ACTIVATE || ev == OBD_NOTIFY_DEACTIVATE) {
457                 struct obd_uuid *uuid;
458
459                 LASSERT(watched);
460
461                 if (strcmp(watched->obd_type->typ_name, LUSTRE_OSC_NAME)) {
462                         CERROR("unexpected notification of %s %s\n",
463                                watched->obd_type->typ_name, watched->obd_name);
464                         GOTO(out_notify_lock, rc = -EINVAL);
465                 }
466
467                 uuid = &watched->u.cli.cl_target_uuid;
468
469                 /* Set OSC as active before notifying the observer, so the
470                  * observer can use the OSC normally.
471                  */
472                 rc = lov_set_osc_active(obd, uuid, ev);
473                 if (rc < 0) {
474                         CERROR("%s: event %d failed: rc = %d\n", obd->obd_name,
475                                ev, rc);
476                         GOTO(out_notify_lock, rc);
477                 }
478         }
479
480         /* Pass the notification up the chain. */
481         rc = obd_notify_observer(obd, watched, ev);
482
483 out_notify_lock:
484         up_read(&lov->lov_notify_lock);
485
486         RETURN(rc);
487 }
488
489 static int lov_add_target(struct obd_device *obd, struct obd_uuid *uuidp,
490                           __u32 index, int gen, int active)
491 {
492         struct lov_obd *lov = &obd->u.lov;
493         struct lov_tgt_desc *tgt;
494         struct obd_device *tgt_obd;
495         int rc;
496         ENTRY;
497
498         CDEBUG(D_CONFIG, "uuid:%s idx:%d gen:%d active:%d\n",
499                uuidp->uuid, index, gen, active);
500
501         if (gen <= 0) {
502                 CERROR("request to add OBD %s with invalid generation: %d\n",
503                        uuidp->uuid, gen);
504                 RETURN(-EINVAL);
505         }
506
507         tgt_obd = class_find_client_obd(uuidp, LUSTRE_OSC_NAME,
508                                         &obd->obd_uuid);
509         if (tgt_obd == NULL)
510                 RETURN(-EINVAL);
511
512         mutex_lock(&lov->lov_lock);
513
514         if ((index < lov->lov_tgt_size) && (lov->lov_tgts[index] != NULL)) {
515                 tgt = lov->lov_tgts[index];
516                 CERROR("UUID %s already assigned at LOV target index %d\n",
517                        obd_uuid2str(&tgt->ltd_uuid), index);
518                 mutex_unlock(&lov->lov_lock);
519                 RETURN(-EEXIST);
520         }
521
522         if (index >= lov->lov_tgt_size) {
523                 /* We need to reallocate the lov target array. */
524                 struct lov_tgt_desc **newtgts, **old = NULL;
525                 __u32 newsize, oldsize = 0;
526
527                 newsize = max(lov->lov_tgt_size, (__u32)2);
528                 while (newsize < index + 1)
529                         newsize = newsize << 1;
530                 OBD_ALLOC(newtgts, sizeof(*newtgts) * newsize);
531                 if (newtgts == NULL) {
532                         mutex_unlock(&lov->lov_lock);
533                         RETURN(-ENOMEM);
534                 }
535
536                 if (lov->lov_tgt_size) {
537                         memcpy(newtgts, lov->lov_tgts, sizeof(*newtgts) *
538                                lov->lov_tgt_size);
539                         old = lov->lov_tgts;
540                         oldsize = lov->lov_tgt_size;
541                 }
542
543                 lov->lov_tgts = newtgts;
544                 lov->lov_tgt_size = newsize;
545                 smp_rmb();
546                 if (old)
547                         OBD_FREE(old, sizeof(*old) * oldsize);
548
549                 CDEBUG(D_CONFIG, "tgts: %p size: %d\n",
550                        lov->lov_tgts, lov->lov_tgt_size);
551         }
552
553         OBD_ALLOC_PTR(tgt);
554         if (!tgt) {
555                 mutex_unlock(&lov->lov_lock);
556                 RETURN(-ENOMEM);
557         }
558
559         rc = lov_ost_pool_add(&lov->lov_packed, index, lov->lov_tgt_size);
560         if (rc) {
561                 mutex_unlock(&lov->lov_lock);
562                 OBD_FREE_PTR(tgt);
563                 RETURN(rc);
564         }
565
566         tgt->ltd_uuid = *uuidp;
567         tgt->ltd_obd = tgt_obd;
568         /* XXX - add a sanity check on the generation number. */
569         tgt->ltd_gen = gen;
570         tgt->ltd_index = index;
571         tgt->ltd_activate = active;
572         lov->lov_tgts[index] = tgt;
573         if (index >= lov->desc.ld_tgt_count)
574                 lov->desc.ld_tgt_count = index + 1;
575
576         mutex_unlock(&lov->lov_lock);
577
578         CDEBUG(D_CONFIG, "idx=%d ltd_gen=%d ld_tgt_count=%d\n",
579                 index, tgt->ltd_gen, lov->desc.ld_tgt_count);
580
581         if (lov->lov_connects == 0) {
582                 /* lov_connect hasn't been called yet. We'll do the
583                    lov_connect_obd on this target when that fn first runs,
584                    because we don't know the connect flags yet. */
585                 RETURN(0);
586         }
587
588         obd_getref(obd);
589
590         rc = lov_connect_obd(obd, index, active, &lov->lov_ocd);
591         if (rc)
592                 GOTO(out, rc);
593
594         /* connect to administrative disabled ost */
595         if (!tgt->ltd_exp)
596                 GOTO(out, rc = 0);
597
598         if (lov->lov_cache != NULL) {
599                 rc = obd_set_info_async(NULL, tgt->ltd_exp,
600                                 sizeof(KEY_CACHE_SET), KEY_CACHE_SET,
601                                 sizeof(struct cl_client_cache), lov->lov_cache,
602                                 NULL);
603                 if (rc < 0)
604                         GOTO(out, rc);
605         }
606
607         rc = lov_notify(obd, tgt->ltd_exp->exp_obd,
608                         active ? OBD_NOTIFY_CONNECT : OBD_NOTIFY_INACTIVE);
609
610 out:
611         if (rc) {
612                 CERROR("add failed (%d), deleting %s\n", rc,
613                        obd_uuid2str(&tgt->ltd_uuid));
614                 lov_del_target(obd, index, NULL, 0);
615         }
616         obd_putref(obd);
617         RETURN(rc);
618 }
619
620 /* Schedule a target for deletion */
621 int lov_del_target(struct obd_device *obd, __u32 index,
622                    struct obd_uuid *uuidp, int gen)
623 {
624         struct lov_obd *lov = &obd->u.lov;
625         int count = lov->desc.ld_tgt_count;
626         int rc = 0;
627         ENTRY;
628
629         if (index >= count) {
630                 CERROR("LOV target index %d >= number of LOV OBDs %d.\n",
631                        index, count);
632                 RETURN(-EINVAL);
633         }
634
635         /* to make sure there's no ongoing lov_notify() now */
636         down_write(&lov->lov_notify_lock);
637         obd_getref(obd);
638
639         if (!lov->lov_tgts[index]) {
640                 CERROR("LOV target at index %d is not setup.\n", index);
641                 GOTO(out, rc = -EINVAL);
642         }
643
644         if (uuidp && !obd_uuid_equals(uuidp, &lov->lov_tgts[index]->ltd_uuid)) {
645                 CERROR("LOV target UUID %s at index %d doesn't match %s.\n",
646                        lov_uuid2str(lov, index), index,
647                        obd_uuid2str(uuidp));
648                 GOTO(out, rc = -EINVAL);
649         }
650
651         CDEBUG(D_CONFIG, "uuid: %s idx: %d gen: %d exp: %p active: %d\n",
652                lov_uuid2str(lov, index), index,
653                lov->lov_tgts[index]->ltd_gen, lov->lov_tgts[index]->ltd_exp,
654                lov->lov_tgts[index]->ltd_active);
655
656         lov->lov_tgts[index]->ltd_reap = 1;
657         lov->lov_death_row++;
658         /* we really delete it from obd_putref */
659 out:
660         obd_putref(obd);
661         up_write(&lov->lov_notify_lock);
662
663         RETURN(rc);
664 }
665
666 static void __lov_del_obd(struct obd_device *obd, struct lov_tgt_desc *tgt)
667 {
668         struct obd_device *osc_obd;
669
670         LASSERT(tgt);
671         LASSERT(tgt->ltd_reap);
672
673         osc_obd = class_exp2obd(tgt->ltd_exp);
674
675         CDEBUG(D_CONFIG, "Removing tgt %s : %s\n",
676                tgt->ltd_uuid.uuid,
677                osc_obd ? osc_obd->obd_name : "<no obd>");
678
679         if (tgt->ltd_exp)
680                 lov_disconnect_obd(obd, tgt);
681
682         OBD_FREE_PTR(tgt);
683
684         /* Manual cleanup - no cleanup logs to clean up the osc's.  We must
685            do it ourselves. And we can't do it from lov_cleanup,
686            because we just lost our only reference to it. */
687         if (osc_obd)
688                 class_manual_cleanup(osc_obd);
689 }
690
691 void lov_fix_desc_stripe_size(__u64 *val)
692 {
693         if (*val < LOV_MIN_STRIPE_SIZE) {
694                 if (*val != 0)
695                         LCONSOLE_INFO("Increasing default stripe size to "
696                                       "minimum %u\n",
697                                       LOV_DESC_STRIPE_SIZE_DEFAULT);
698                 *val = LOV_DESC_STRIPE_SIZE_DEFAULT;
699         } else if (*val & (LOV_MIN_STRIPE_SIZE - 1)) {
700                 *val &= ~(LOV_MIN_STRIPE_SIZE - 1);
701                 LCONSOLE_WARN("Changing default stripe size to %llu (a "
702                               "multiple of %u)\n",
703                               *val, LOV_MIN_STRIPE_SIZE);
704         }
705 }
706
707 void lov_fix_desc_stripe_count(__u32 *val)
708 {
709         if (*val == 0)
710                 *val = 1;
711 }
712
713 void lov_fix_desc_pattern(__u32 *val)
714 {
715         /* from lov_setstripe */
716         if ((*val != 0) && (*val != LOV_PATTERN_RAID0)) {
717                 LCONSOLE_WARN("Unknown stripe pattern: %#x\n", *val);
718                 *val = 0;
719         }
720 }
721
722 void lov_fix_desc_qos_maxage(__u32 *val)
723 {
724         if (*val == 0)
725                 *val = LOV_DESC_QOS_MAXAGE_DEFAULT;
726 }
727
728 void lov_fix_desc(struct lov_desc *desc)
729 {
730         lov_fix_desc_stripe_size(&desc->ld_default_stripe_size);
731         lov_fix_desc_stripe_count(&desc->ld_default_stripe_count);
732         lov_fix_desc_pattern(&desc->ld_pattern);
733         lov_fix_desc_qos_maxage(&desc->ld_qos_maxage);
734 }
735
736 int lov_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
737 {
738         struct lov_desc *desc;
739         struct lov_obd *lov = &obd->u.lov;
740 #ifdef CONFIG_PROC_FS
741         struct obd_type *type;
742 #endif
743         int rc;
744         ENTRY;
745
746         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
747                 CERROR("LOV setup requires a descriptor\n");
748                 RETURN(-EINVAL);
749         }
750
751         desc = (struct lov_desc *)lustre_cfg_buf(lcfg, 1);
752
753         if (sizeof(*desc) > LUSTRE_CFG_BUFLEN(lcfg, 1)) {
754                 CERROR("descriptor size wrong: %d > %d\n",
755                        (int)sizeof(*desc), LUSTRE_CFG_BUFLEN(lcfg, 1));
756                 RETURN(-EINVAL);
757         }
758
759         if (desc->ld_magic != LOV_DESC_MAGIC) {
760                 if (desc->ld_magic == __swab32(LOV_DESC_MAGIC)) {
761                             CDEBUG(D_OTHER, "%s: Swabbing lov desc %p\n",
762                                    obd->obd_name, desc);
763                             lustre_swab_lov_desc(desc);
764                 } else {
765                         CERROR("%s: Bad lov desc magic: %#x\n",
766                                obd->obd_name, desc->ld_magic);
767                         RETURN(-EINVAL);
768                 }
769         }
770
771         lov_fix_desc(desc);
772
773         desc->ld_active_tgt_count = 0;
774         lov->desc = *desc;
775         lov->lov_tgt_size = 0;
776
777         mutex_init(&lov->lov_lock);
778         atomic_set(&lov->lov_refcount, 0);
779         lov->lov_sp_me = LUSTRE_SP_CLI;
780
781         init_rwsem(&lov->lov_notify_lock);
782
783         lov->lov_pools_hash_body = cfs_hash_create("POOLS", HASH_POOLS_CUR_BITS,
784                                                    HASH_POOLS_MAX_BITS,
785                                                    HASH_POOLS_BKT_BITS, 0,
786                                                    CFS_HASH_MIN_THETA,
787                                                    CFS_HASH_MAX_THETA,
788                                                    &pool_hash_operations,
789                                                    CFS_HASH_DEFAULT);
790         INIT_LIST_HEAD(&lov->lov_pool_list);
791         lov->lov_pool_count = 0;
792         rc = lov_ost_pool_init(&lov->lov_packed, 0);
793         if (rc)
794                 GOTO(out, rc);
795
796         obd->obd_vars = lprocfs_lov_obd_vars;
797 #ifdef CONFIG_PROC_FS
798         /* If this is true then both client (lov) and server
799          * (lod) are on the same node. The lod layer if loaded
800          * first will register the lov proc directory. In that
801          * case obd->obd_type->typ_procroot will be not set.
802          * Instead we use type->typ_procsym as the parent.
803          */
804         type = class_search_type(LUSTRE_LOD_NAME);
805         if (type && type->typ_procsym) {
806                 obd->obd_proc_entry = lprocfs_register(obd->obd_name,
807                                                        type->typ_procsym,
808                                                        obd->obd_vars, obd);
809                 if (IS_ERR(obd->obd_proc_entry)) {
810                         rc = PTR_ERR(obd->obd_proc_entry);
811                         CERROR("error %d setting up lprocfs for %s\n", rc,
812                                obd->obd_name);
813                         obd->obd_proc_entry = NULL;
814                 }
815         }
816 #endif
817
818         rc = lprocfs_obd_setup(obd, false);
819         if (rc)
820                 GOTO(out, rc);
821
822         rc = lprocfs_seq_create(obd->obd_proc_entry, "target_obd", 0444,
823                                 &lov_proc_target_fops, obd);
824         if (rc)
825                 CWARN("%s: Error adding the target_obd file : rc %d\n",
826                       obd->obd_name, rc);
827
828         lov->lov_pool_proc_entry = lprocfs_register("pools",
829                                                     obd->obd_proc_entry,
830                                                     NULL, NULL);
831         if (IS_ERR(lov->lov_pool_proc_entry)) {
832                 rc = PTR_ERR(lov->lov_pool_proc_entry);
833                 CERROR("%s: error setting up ldebugfs for pools : rc %d\n",
834                        obd->obd_name, rc);
835                 lov->lov_pool_proc_entry = NULL;
836         }
837 out:
838         return rc;
839 }
840
841 static int lov_cleanup(struct obd_device *obd)
842 {
843         struct lov_obd *lov = &obd->u.lov;
844         struct list_head *pos, *tmp;
845         struct pool_desc *pool;
846         ENTRY;
847
848         list_for_each_safe(pos, tmp, &lov->lov_pool_list) {
849                 pool = list_entry(pos, struct pool_desc, pool_list);
850                 /* free pool structs */
851                 CDEBUG(D_INFO, "delete pool %p\n", pool);
852                 /* In the function below, .hs_keycmp resolves to
853                  * pool_hashkey_keycmp() */
854                 /* coverity[overrun-buffer-val] */
855                 lov_pool_del(obd, pool->pool_name);
856         }
857         cfs_hash_putref(lov->lov_pools_hash_body);
858         lov_ost_pool_free(&lov->lov_packed);
859
860         lprocfs_obd_cleanup(obd);
861         if (lov->lov_tgts) {
862                 int i;
863                 obd_getref(obd);
864                 for (i = 0; i < lov->desc.ld_tgt_count; i++) {
865                         if (!lov->lov_tgts[i])
866                                 continue;
867
868                         /* Inactive targets may never have connected */
869                         if (lov->lov_tgts[i]->ltd_active ||
870                             atomic_read(&lov->lov_refcount))
871                                 /* We should never get here - these
872                                  * should have been removed in the
873                                  * disconnect. */
874                                 CERROR("%s: lov tgt %d not cleaned! "
875                                        "deathrow=%d, lovrc=%d\n",
876                                        obd->obd_name, i, lov->lov_death_row,
877                                        atomic_read(&lov->lov_refcount));
878                         lov_del_target(obd, i, NULL, 0);
879                 }
880                 obd_putref(obd);
881                 OBD_FREE(lov->lov_tgts, sizeof(*lov->lov_tgts) *
882                          lov->lov_tgt_size);
883                 lov->lov_tgt_size = 0;
884         }
885
886         if (lov->lov_cache != NULL) {
887                 cl_cache_decref(lov->lov_cache);
888                 lov->lov_cache = NULL;
889         }
890
891         RETURN(0);
892 }
893
894 int lov_process_config_base(struct obd_device *obd, struct lustre_cfg *lcfg,
895                             __u32 *indexp, int *genp)
896 {
897         struct obd_uuid obd_uuid;
898         int cmd;
899         int rc = 0;
900         ENTRY;
901
902         switch(cmd = lcfg->lcfg_command) {
903         case LCFG_ADD_MDC:
904         case LCFG_DEL_MDC:
905                 break;
906         case LCFG_LOV_ADD_OBD:
907         case LCFG_LOV_ADD_INA:
908         case LCFG_LOV_DEL_OBD: {
909                 __u32 index;
910                 int gen;
911                 /* lov_modify_tgts add  0:lov_mdsA  1:ost1_UUID  2:0  3:1 */
912                 if (LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(obd_uuid.uuid))
913                         GOTO(out, rc = -EINVAL);
914
915                 obd_str2uuid(&obd_uuid,  lustre_cfg_buf(lcfg, 1));
916
917                 if (sscanf(lustre_cfg_buf(lcfg, 2), "%u", indexp) != 1)
918                         GOTO(out, rc = -EINVAL);
919                 if (sscanf(lustre_cfg_buf(lcfg, 3), "%d", genp) != 1)
920                         GOTO(out, rc = -EINVAL);
921                 index = *indexp;
922                 gen = *genp;
923                 if (cmd == LCFG_LOV_ADD_OBD)
924                         rc = lov_add_target(obd, &obd_uuid, index, gen, 1);
925                 else if (cmd == LCFG_LOV_ADD_INA)
926                         rc = lov_add_target(obd, &obd_uuid, index, gen, 0);
927                 else
928                         rc = lov_del_target(obd, index, &obd_uuid, gen);
929                 GOTO(out, rc);
930         }
931         case LCFG_PARAM: {
932                 struct lov_desc *desc = &(obd->u.lov.desc);
933
934                 if (!desc)
935                         GOTO(out, rc = -EINVAL);
936
937                 rc = class_process_proc_param(PARAM_LOV, obd->obd_vars,
938                                               lcfg, obd);
939                 if (rc > 0)
940                         rc = 0;
941                 GOTO(out, rc);
942         }
943         case LCFG_POOL_NEW:
944         case LCFG_POOL_ADD:
945         case LCFG_POOL_DEL:
946         case LCFG_POOL_REM:
947                 GOTO(out, rc);
948
949         default: {
950                 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
951                 GOTO(out, rc = -EINVAL);
952
953         }
954         }
955 out:
956         RETURN(rc);
957 }
958
959 static int lov_statfs(const struct lu_env *env, struct obd_export *exp,
960                       struct obd_statfs *osfs, time64_t max_age, __u32 flags)
961 {
962         struct obd_device *obd = class_exp2obd(exp);
963         struct lov_obd *lov = &obd->u.lov;
964         struct obd_info oinfo = {
965                 .oi_osfs = osfs,
966                 .oi_flags = flags,
967         };
968         struct ptlrpc_request_set *rqset;
969         struct lov_request_set *set = NULL;
970         struct lov_request *req;
971         int rc = 0;
972         int rc2;
973
974         ENTRY;
975
976         rqset = ptlrpc_prep_set();
977         if (rqset == NULL)
978                 RETURN(-ENOMEM);
979
980         rc = lov_prep_statfs_set(obd, &oinfo, &set);
981         if (rc < 0)
982                 GOTO(out_rqset, rc);
983
984         list_for_each_entry(req, &set->set_list, rq_link) {
985                 rc = obd_statfs_async(lov->lov_tgts[req->rq_idx]->ltd_exp,
986                                       &req->rq_oi, max_age, rqset);
987                 if (rc < 0)
988                         GOTO(out_set, rc);
989         }
990
991         rc = ptlrpc_set_wait(rqset);
992
993 out_set:
994         if (rc < 0)
995                 atomic_set(&set->set_completes, 0);
996
997         rc2 = lov_fini_statfs_set(set);
998         if (rc == 0)
999                 rc = rc2;
1000
1001 out_rqset:
1002         ptlrpc_set_destroy(rqset);
1003
1004         RETURN(rc);
1005 }
1006
1007 static int lov_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
1008                          void *karg, void __user *uarg)
1009 {
1010         struct obd_device *obddev = class_exp2obd(exp);
1011         struct lov_obd *lov = &obddev->u.lov;
1012         int i = 0, rc = 0, count = lov->desc.ld_tgt_count;
1013         struct obd_uuid *uuidp;
1014         ENTRY;
1015
1016         switch (cmd) {
1017         case IOC_OBD_STATFS: {
1018                 struct obd_ioctl_data *data = karg;
1019                 struct obd_device *osc_obd;
1020                 struct obd_statfs stat_buf = {0};
1021                 __u32 index;
1022                 __u32 flags;
1023
1024                 memcpy(&index, data->ioc_inlbuf2, sizeof(index));
1025                 if ((index >= count))
1026                         RETURN(-ENODEV);
1027
1028                 if (!lov->lov_tgts[index])
1029                         /* Try again with the next index */
1030                         RETURN(-EAGAIN);
1031                 if (!lov->lov_tgts[index]->ltd_active)
1032                         RETURN(-ENODATA);
1033
1034                 osc_obd = class_exp2obd(lov->lov_tgts[index]->ltd_exp);
1035                 if (!osc_obd)
1036                         RETURN(-EINVAL);
1037
1038                 /* copy UUID */
1039                 if (copy_to_user(data->ioc_pbuf2, obd2cli_tgt(osc_obd),
1040                                  min_t(unsigned long, data->ioc_plen2,
1041                                        sizeof(struct obd_uuid))))
1042                         RETURN(-EFAULT);
1043
1044                 memcpy(&flags, data->ioc_inlbuf1, sizeof(flags));
1045                 flags = flags & LL_STATFS_NODELAY ? OBD_STATFS_NODELAY : 0;
1046
1047                 /* got statfs data */
1048                 rc = obd_statfs(NULL, lov->lov_tgts[index]->ltd_exp, &stat_buf,
1049                                 ktime_get_seconds() - OBD_STATFS_CACHE_SECONDS,
1050                                 flags);
1051                 if (rc)
1052                         RETURN(rc);
1053                 if (copy_to_user(data->ioc_pbuf1, &stat_buf,
1054                                  min_t(unsigned long, data->ioc_plen1,
1055                                        sizeof(struct obd_statfs))))
1056                         RETURN(-EFAULT);
1057                 break;
1058         }
1059         case OBD_IOC_LOV_GET_CONFIG: {
1060                 struct obd_ioctl_data *data;
1061                 struct lov_desc *desc;
1062                 char *buf = NULL;
1063                 __u32 *genp;
1064
1065                 len = 0;
1066                 if (obd_ioctl_getdata(&buf, &len, uarg))
1067                         RETURN(-EINVAL);
1068
1069                 data = (struct obd_ioctl_data *)buf;
1070
1071                 if (sizeof(*desc) > data->ioc_inllen1) {
1072                         OBD_FREE_LARGE(buf, len);
1073                         RETURN(-EINVAL);
1074                 }
1075
1076                 if (sizeof(uuidp->uuid) * count > data->ioc_inllen2) {
1077                         OBD_FREE_LARGE(buf, len);
1078                         RETURN(-EINVAL);
1079                 }
1080
1081                 if (sizeof(__u32) * count > data->ioc_inllen3) {
1082                         OBD_FREE_LARGE(buf, len);
1083                         RETURN(-EINVAL);
1084                 }
1085
1086                 desc = (struct lov_desc *)data->ioc_inlbuf1;
1087                 memcpy(desc, &(lov->desc), sizeof(*desc));
1088
1089                 uuidp = (struct obd_uuid *)data->ioc_inlbuf2;
1090                 genp = (__u32 *)data->ioc_inlbuf3;
1091                 /* the uuid will be empty for deleted OSTs */
1092                 for (i = 0; i < count; i++, uuidp++, genp++) {
1093                         if (!lov->lov_tgts[i])
1094                                 continue;
1095                         *uuidp = lov->lov_tgts[i]->ltd_uuid;
1096                         *genp = lov->lov_tgts[i]->ltd_gen;
1097                 }
1098
1099                 if (copy_to_user(uarg, buf, len))
1100                         rc = -EFAULT;
1101                 OBD_FREE_LARGE(buf, len);
1102                 break;
1103         }
1104         case OBD_IOC_QUOTACTL: {
1105                 struct if_quotactl *qctl = karg;
1106                 struct lov_tgt_desc *tgt = NULL;
1107                 struct obd_quotactl *oqctl;
1108
1109                 if (qctl->qc_valid == QC_OSTIDX) {
1110                         if (count <= qctl->qc_idx)
1111                                 RETURN(-EINVAL);
1112
1113                         tgt = lov->lov_tgts[qctl->qc_idx];
1114                         if (!tgt || !tgt->ltd_exp)
1115                                 RETURN(-EINVAL);
1116                 } else if (qctl->qc_valid == QC_UUID) {
1117                         for (i = 0; i < count; i++) {
1118                                 tgt = lov->lov_tgts[i];
1119                                 if (!tgt ||
1120                                     !obd_uuid_equals(&tgt->ltd_uuid,
1121                                                      &qctl->obd_uuid))
1122                                         continue;
1123
1124                                 if (tgt->ltd_exp == NULL)
1125                                         RETURN(-EINVAL);
1126
1127                                 break;
1128                         }
1129                 } else {
1130                         RETURN(-EINVAL);
1131                 }
1132
1133                 if (i >= count)
1134                         RETURN(-EAGAIN);
1135
1136                 LASSERT(tgt && tgt->ltd_exp);
1137                 OBD_ALLOC_PTR(oqctl);
1138                 if (!oqctl)
1139                         RETURN(-ENOMEM);
1140
1141                 QCTL_COPY(oqctl, qctl);
1142                 rc = obd_quotactl(tgt->ltd_exp, oqctl);
1143                 if (rc == 0) {
1144                         QCTL_COPY(qctl, oqctl);
1145                         qctl->qc_valid = QC_OSTIDX;
1146                         qctl->obd_uuid = tgt->ltd_uuid;
1147                 }
1148                 OBD_FREE_PTR(oqctl);
1149                 break;
1150         }
1151         default: {
1152                 int set = 0;
1153
1154                 if (count == 0)
1155                         RETURN(-ENOTTY);
1156
1157                 for (i = 0; i < count; i++) {
1158                         int err;
1159                         struct obd_device *osc_obd;
1160
1161                         /* OST was disconnected */
1162                         if (!lov->lov_tgts[i] || !lov->lov_tgts[i]->ltd_exp)
1163                                 continue;
1164
1165                         /* ll_umount_begin() sets force flag but for lov, not
1166                          * osc. Let's pass it through */
1167                         osc_obd = class_exp2obd(lov->lov_tgts[i]->ltd_exp);
1168                         osc_obd->obd_force = obddev->obd_force;
1169                         err = obd_iocontrol(cmd, lov->lov_tgts[i]->ltd_exp,
1170                                             len, karg, uarg);
1171                         if (err) {
1172                                 if (lov->lov_tgts[i]->ltd_active) {
1173                                         CDEBUG(err == -ENOTTY ?
1174                                                D_IOCTL : D_WARNING,
1175                                                "iocontrol OSC %s on OST "
1176                                                "idx %d cmd %x: err = %d\n",
1177                                                lov_uuid2str(lov, i),
1178                                                i, cmd, err);
1179                                         if (!rc)
1180                                                 rc = err;
1181                                 }
1182                         } else {
1183                                 set = 1;
1184                         }
1185                 }
1186                 if (!set && !rc)
1187                         rc = -EIO;
1188         }
1189         }
1190
1191         RETURN(rc);
1192 }
1193
1194 static int lov_get_info(const struct lu_env *env, struct obd_export *exp,
1195                         __u32 keylen, void *key, __u32 *vallen, void *val)
1196 {
1197         struct obd_device *obddev = class_exp2obd(exp);
1198         struct lov_obd *lov = &obddev->u.lov;
1199         struct lov_desc *ld = &lov->desc;
1200         int rc = 0;
1201         ENTRY;
1202
1203         if (vallen == NULL || val == NULL)
1204                 RETURN(-EFAULT);
1205
1206         obd_getref(obddev);
1207
1208         if (KEY_IS(KEY_MAX_EASIZE)) {
1209                 u32 max_stripe_count = min_t(u32, ld->ld_active_tgt_count,
1210                                              LOV_MAX_STRIPE_COUNT);
1211
1212                 *((u32 *)val) = lov_mds_md_size(max_stripe_count, LOV_MAGIC_V3);
1213         } else if (KEY_IS(KEY_DEFAULT_EASIZE)) {
1214                 u32 def_stripe_count = min_t(u32, ld->ld_default_stripe_count,
1215                                              LOV_MAX_STRIPE_COUNT);
1216
1217                 *((u32 *)val) = lov_mds_md_size(def_stripe_count, LOV_MAGIC_V3);
1218         } else if (KEY_IS(KEY_TGT_COUNT)) {
1219                 *((int *)val) = lov->desc.ld_tgt_count;
1220         } else {
1221                 rc = -EINVAL;
1222         }
1223
1224         obd_putref(obddev);
1225
1226         RETURN(rc);
1227 }
1228
1229 static int lov_set_info_async(const struct lu_env *env, struct obd_export *exp,
1230                               __u32 keylen, void *key,
1231                               __u32 vallen, void *val,
1232                               struct ptlrpc_request_set *set)
1233 {
1234         struct obd_device *obddev = class_exp2obd(exp);
1235         struct lov_obd *lov = &obddev->u.lov;
1236         struct lov_tgt_desc *tgt;
1237         bool do_inactive = false, no_set = false;
1238         u32 i;
1239         int rc = 0;
1240         int err;
1241
1242         ENTRY;
1243
1244         if (set == NULL) {
1245                 no_set = true;
1246                 set = ptlrpc_prep_set();
1247                 if (!set)
1248                         RETURN(-ENOMEM);
1249         }
1250
1251         obd_getref(obddev);
1252
1253         if (KEY_IS(KEY_CHECKSUM)) {
1254                 do_inactive = true;
1255         } else if (KEY_IS(KEY_CACHE_SET)) {
1256                 LASSERT(lov->lov_cache == NULL);
1257                 lov->lov_cache = val;
1258                 do_inactive = true;
1259                 cl_cache_incref(lov->lov_cache);
1260         }
1261
1262         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
1263                 tgt = lov->lov_tgts[i];
1264
1265                 /* OST was disconnected */
1266                 if (tgt == NULL || tgt->ltd_exp == NULL)
1267                         continue;
1268
1269                 /* OST is inactive and we don't want inactive OSCs */
1270                 if (!tgt->ltd_active && !do_inactive)
1271                         continue;
1272
1273                 err = obd_set_info_async(env, tgt->ltd_exp, keylen, key,
1274                                          vallen, val, set);
1275
1276                 if (rc == 0)
1277                         rc = err;
1278         }
1279
1280         /* cycle through MDC target for Data-on-MDT */
1281         for (i = 0; i < LOV_MDC_TGT_MAX; i++) {
1282                 struct obd_device *mdc;
1283
1284                 mdc = lov->lov_mdc_tgts[i].lmtd_mdc;
1285                 if (mdc == NULL)
1286                         continue;
1287
1288                 err = obd_set_info_async(env, mdc->obd_self_export,
1289                                          keylen, key, vallen, val, set);
1290                 if (rc == 0)
1291                         rc = err;
1292         }
1293
1294         obd_putref(obddev);
1295         if (no_set) {
1296                 err = ptlrpc_set_wait(set);
1297                 if (rc == 0)
1298                         rc = err;
1299                 ptlrpc_set_destroy(set);
1300         }
1301         RETURN(rc);
1302 }
1303
1304 void lov_stripe_lock(struct lov_stripe_md *md)
1305 __acquires(&md->lsm_lock)
1306 {
1307         LASSERT(md->lsm_lock_owner != current_pid());
1308         spin_lock(&md->lsm_lock);
1309         LASSERT(md->lsm_lock_owner == 0);
1310         md->lsm_lock_owner = current_pid();
1311 }
1312
1313 void lov_stripe_unlock(struct lov_stripe_md *md)
1314 __releases(&md->lsm_lock)
1315 {
1316         LASSERT(md->lsm_lock_owner == current_pid());
1317         md->lsm_lock_owner = 0;
1318         spin_unlock(&md->lsm_lock);
1319 }
1320
1321 static int lov_quotactl(struct obd_device *obd, struct obd_export *exp,
1322                         struct obd_quotactl *oqctl)
1323 {
1324         struct lov_obd      *lov = &obd->u.lov;
1325         struct lov_tgt_desc *tgt;
1326         __u64                curspace = 0;
1327         __u64                bhardlimit = 0;
1328         int                  i, rc = 0;
1329         ENTRY;
1330
1331         if (oqctl->qc_cmd != Q_GETOQUOTA &&
1332             oqctl->qc_cmd != LUSTRE_Q_SETQUOTA) {
1333                 CERROR("%s: bad quota opc %x for lov obd\n",
1334                        obd->obd_name, oqctl->qc_cmd);
1335                 RETURN(-EFAULT);
1336         }
1337
1338         /* for lov tgt */
1339         obd_getref(obd);
1340         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
1341                 int err;
1342
1343                 tgt = lov->lov_tgts[i];
1344
1345                 if (!tgt)
1346                         continue;
1347
1348                 if (!tgt->ltd_active || tgt->ltd_reap) {
1349                         if (oqctl->qc_cmd == Q_GETOQUOTA &&
1350                             lov->lov_tgts[i]->ltd_activate) {
1351                                 rc = -ENETDOWN;
1352                                 CERROR("ost %d is inactive\n", i);
1353                         } else {
1354                                 CDEBUG(D_HA, "ost %d is inactive\n", i);
1355                         }
1356                         continue;
1357                 }
1358
1359                 err = obd_quotactl(tgt->ltd_exp, oqctl);
1360                 if (err) {
1361                         if (tgt->ltd_active && !rc)
1362                                 rc = err;
1363                         continue;
1364                 }
1365
1366                 if (oqctl->qc_cmd == Q_GETOQUOTA) {
1367                         curspace += oqctl->qc_dqblk.dqb_curspace;
1368                         bhardlimit += oqctl->qc_dqblk.dqb_bhardlimit;
1369                 }
1370         }
1371         obd_putref(obd);
1372
1373         if (oqctl->qc_cmd == Q_GETOQUOTA) {
1374                 oqctl->qc_dqblk.dqb_curspace = curspace;
1375                 oqctl->qc_dqblk.dqb_bhardlimit = bhardlimit;
1376         }
1377         RETURN(rc);
1378 }
1379
1380 static struct obd_ops lov_obd_ops = {
1381         .o_owner                = THIS_MODULE,
1382         .o_setup                = lov_setup,
1383         .o_cleanup              = lov_cleanup,
1384         .o_connect              = lov_connect,
1385         .o_disconnect           = lov_disconnect,
1386         .o_statfs               = lov_statfs,
1387         .o_iocontrol            = lov_iocontrol,
1388         .o_get_info             = lov_get_info,
1389         .o_set_info_async       = lov_set_info_async,
1390         .o_notify               = lov_notify,
1391         .o_pool_new             = lov_pool_new,
1392         .o_pool_rem             = lov_pool_remove,
1393         .o_pool_add             = lov_pool_add,
1394         .o_pool_del             = lov_pool_del,
1395         .o_getref               = lov_getref,
1396         .o_putref               = lov_putref,
1397         .o_quotactl             = lov_quotactl,
1398 };
1399
1400 struct kmem_cache *lov_oinfo_slab;
1401
1402 static int __init lov_init(void)
1403 {
1404         bool enable_proc = true;
1405         struct obd_type *type;
1406         int rc;
1407         ENTRY;
1408
1409         /* print an address of _any_ initialized kernel symbol from this
1410          * module, to allow debugging with gdb that doesn't support data
1411          * symbols from modules.*/
1412         CDEBUG(D_INFO, "Lustre LOV module (%p).\n", &lov_caches);
1413
1414         rc = lu_kmem_init(lov_caches);
1415         if (rc)
1416                 return rc;
1417
1418         lov_oinfo_slab = kmem_cache_create("lov_oinfo",
1419                                            sizeof(struct lov_oinfo), 0,
1420                                            SLAB_HWCACHE_ALIGN, NULL);
1421         if (lov_oinfo_slab == NULL) {
1422                 lu_kmem_fini(lov_caches);
1423                 return -ENOMEM;
1424         }
1425
1426         type = class_search_type(LUSTRE_LOD_NAME);
1427         if (type != NULL && type->typ_procsym != NULL)
1428                 enable_proc = false;
1429
1430         rc = class_register_type(&lov_obd_ops, NULL, enable_proc, NULL,
1431                                  LUSTRE_LOV_NAME, &lov_device_type);
1432
1433         if (rc) {
1434                 kmem_cache_destroy(lov_oinfo_slab);
1435                 lu_kmem_fini(lov_caches);
1436         }
1437
1438         RETURN(rc);
1439 }
1440
1441 static void __exit lov_exit(void)
1442 {
1443         class_unregister_type(LUSTRE_LOV_NAME);
1444         kmem_cache_destroy(lov_oinfo_slab);
1445         lu_kmem_fini(lov_caches);
1446 }
1447
1448 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
1449 MODULE_DESCRIPTION("Lustre Logical Object Volume");
1450 MODULE_VERSION(LUSTRE_VERSION_STRING);
1451 MODULE_LICENSE("GPL");
1452
1453 module_init(lov_init);
1454 module_exit(lov_exit);