Whamcloud - gitweb
LU-10308 misc: update Intel copyright messages for 2017
[fs/lustre-release.git] / lustre / mdt / mdt_hsm_cdt_agent.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,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License version 2 for more details.  A copy is
14  * included in the COPYING file that accompanied this code.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * GPL HEADER END
21  */
22 /*
23  * (C) Copyright 2012 Commissariat a l'energie atomique et aux energies
24  *
25  * Copyright (c) 2016, 2017, Intel Corporation.
26  *     alternatives
27  *
28  */
29 /*
30  * lustre/mdt/mdt_hsm_cdt_agent.c
31  *
32  * Lustre HSM Coordinator
33  *
34  * Author: Jacques-Charles Lafoucriere <jacques-charles.lafoucriere@cea.fr>
35  * Author: Aurelien Degremont <aurelien.degremont@cea.fr>
36  */
37
38 #define DEBUG_SUBSYSTEM S_MDS
39
40 #include <obd.h>
41 #include <obd_support.h>
42 #include <lustre_export.h>
43 #include <lprocfs_status.h>
44 #include <lustre_kernelcomm.h>
45 #include "mdt_internal.h"
46
47 /*
48  * Agent external API
49  */
50
51 /*
52  * find a hsm_agent by uuid
53  * lock cdt_agent_lock needs to be held by caller
54  * \param cdt [IN] coordinator
55  * \param uuid [IN] agent UUID
56  * \retval hsm_agent pointer or NULL if not found
57  */
58 static struct hsm_agent *mdt_hsm_agent_lookup(struct coordinator *cdt,
59                                               const struct obd_uuid *uuid)
60 {
61         struct hsm_agent        *ha;
62
63         list_for_each_entry(ha, &cdt->cdt_agents, ha_list) {
64                 if (obd_uuid_equals(&ha->ha_uuid, uuid))
65                         return ha;
66         }
67         return NULL;
68 }
69
70 /**
71  * register a copy tool
72  * \param mti [IN] MDT context
73  * \param uuid [IN] client UUID to be registered
74  * \param count [IN] number of archives agent serves
75  * \param archive_id [IN] vector of archive number served by the copytool
76  * \retval 0 success
77  * \retval -ve failure
78  */
79 int mdt_hsm_agent_register(struct mdt_thread_info *mti,
80                            const struct obd_uuid *uuid,
81                            int nr_archives, __u32 *archive_id)
82 {
83         struct coordinator      *cdt = &mti->mti_mdt->mdt_coordinator;
84         struct hsm_agent        *ha, *tmp;
85         int                      rc;
86         ENTRY;
87
88         /* no coordinator started, so we cannot serve requests */
89         if (cdt->cdt_state == CDT_STOPPED) {
90                 LCONSOLE_WARN("HSM coordinator thread is not running - "
91                               "denying agent registration.\n");
92                 RETURN(-ENXIO);
93         }
94
95         OBD_ALLOC_PTR(ha);
96         if (ha == NULL)
97                 GOTO(out, rc = -ENOMEM);
98
99         ha->ha_uuid = *uuid;
100         ha->ha_archive_cnt = nr_archives;
101         if (ha->ha_archive_cnt != 0) {
102                 int sz;
103
104                 sz = ha->ha_archive_cnt * sizeof(*ha->ha_archive_id);
105                 OBD_ALLOC(ha->ha_archive_id, sz);
106                 if (ha->ha_archive_id == NULL)
107                         GOTO(out_free, rc = -ENOMEM);
108                 memcpy(ha->ha_archive_id, archive_id, sz);
109         }
110         atomic_set(&ha->ha_requests, 0);
111         atomic_set(&ha->ha_success, 0);
112         atomic_set(&ha->ha_failure, 0);
113
114         down_write(&cdt->cdt_agent_lock);
115         tmp = mdt_hsm_agent_lookup(cdt, uuid);
116         if (tmp != NULL) {
117                 LCONSOLE_WARN("HSM agent %s already registered\n",
118                               obd_uuid2str(uuid));
119                 up_write(&cdt->cdt_agent_lock);
120                 GOTO(out_free, rc = -EEXIST);
121         }
122
123         list_add_tail(&ha->ha_list, &cdt->cdt_agents);
124
125         if (ha->ha_archive_cnt == 0)
126                 CDEBUG(D_HSM, "agent %s registered for all archives\n",
127                        obd_uuid2str(&ha->ha_uuid));
128         else
129                 CDEBUG(D_HSM, "agent %s registered for %d archives\n",
130                        obd_uuid2str(&ha->ha_uuid), ha->ha_archive_cnt);
131
132         up_write(&cdt->cdt_agent_lock);
133         GOTO(out, rc = 0);
134
135 out_free:
136
137         if (ha != NULL && ha->ha_archive_id != NULL)
138                 OBD_FREE(ha->ha_archive_id,
139                          ha->ha_archive_cnt * sizeof(*ha->ha_archive_id));
140         if (ha != NULL)
141                 OBD_FREE_PTR(ha);
142 out:
143         return rc;
144 }
145
146 /**
147  * register a copy tool
148  * \param mti [IN] MDT context
149  * \param uuid [IN] uuid to be registered
150  * \param archive_mask [IN] bitmask of archive number served by the copytool
151  * \retval 0 success
152  * \retval -ve failure
153  */
154 int mdt_hsm_agent_register_mask(struct mdt_thread_info *mti,
155                                 const struct obd_uuid *uuid, __u32 archive_mask)
156 {
157         int              rc, i, nr_archives = 0;
158         __u32           *archive_id = NULL;
159         ENTRY;
160
161         nr_archives = hweight32(archive_mask);
162
163         if (nr_archives != 0) {
164                 OBD_ALLOC(archive_id, nr_archives * sizeof(*archive_id));
165                 if (!archive_id)
166                         RETURN(-ENOMEM);
167
168                 nr_archives = 0;
169                 for (i = 0; i < sizeof(archive_mask) * 8; i++) {
170                         if ((1 << i) & archive_mask) {
171                                 archive_id[nr_archives] = i + 1;
172                                 nr_archives++;
173                         }
174                 }
175         }
176
177         rc = mdt_hsm_agent_register(mti, uuid, nr_archives, archive_id);
178
179         if (archive_id != NULL)
180                 OBD_FREE(archive_id, nr_archives * sizeof(*archive_id));
181
182         RETURN(rc);
183 }
184
185 /**
186  * unregister a copy tool
187  * \param mti [IN] MDT context
188  * \param uuid [IN] uuid to be unregistered
189  * \retval 0 success
190  * \retval -ve failure
191  */
192 int mdt_hsm_agent_unregister(struct mdt_thread_info *mti,
193                              const struct obd_uuid *uuid)
194 {
195         struct coordinator      *cdt = &mti->mti_mdt->mdt_coordinator;
196         struct hsm_agent        *ha;
197         int                      rc;
198         ENTRY;
199
200         /* no coordinator started, so we cannot serve requests */
201         if (cdt->cdt_state == CDT_STOPPED)
202                 RETURN(-ENXIO);
203
204         down_write(&cdt->cdt_agent_lock);
205
206         ha = mdt_hsm_agent_lookup(cdt, uuid);
207         if (ha != NULL)
208                 list_del_init(&ha->ha_list);
209
210         up_write(&cdt->cdt_agent_lock);
211
212         if (ha == NULL)
213                 GOTO(out, rc = -ENOENT);
214
215         if (ha->ha_archive_cnt != 0)
216                 OBD_FREE(ha->ha_archive_id,
217                          ha->ha_archive_cnt * sizeof(*ha->ha_archive_id));
218         OBD_FREE_PTR(ha);
219
220         GOTO(out, rc = 0);
221 out:
222         CDEBUG(D_HSM, "agent %s unregistration: %d\n", obd_uuid2str(uuid), rc);
223
224         return rc;
225 }
226
227 /**
228  * update agent statistics
229  * \param mdt [IN] MDT device
230  * \param succ_rq [IN] number of success
231  * \param fail_rq [IN] number of failure
232  * \param new_rq [IN] number of new requests
233  * \param uuid [IN] agent uuid
234  * if all counters == 0, clear counters
235  * \retval 0 success
236  * \retval -ve failure
237  */
238 int mdt_hsm_agent_update_statistics(struct coordinator *cdt,
239                                     int succ_rq, int fail_rq, int new_rq,
240                                     const struct obd_uuid *uuid)
241 {
242         struct hsm_agent        *ha;
243         int                      rc;
244         ENTRY;
245
246         down_read(&cdt->cdt_agent_lock);
247         list_for_each_entry(ha, &cdt->cdt_agents, ha_list) {
248                 if (obd_uuid_equals(&ha->ha_uuid, uuid)) {
249                         if (succ_rq == 0 && fail_rq == 0 && new_rq == 0) {
250                                 atomic_set(&ha->ha_success, 0);
251                                 atomic_set(&ha->ha_failure, 0);
252                                 atomic_set(&ha->ha_requests, 0);
253                         } else {
254                                 atomic_add(succ_rq, &ha->ha_success);
255                                 atomic_add(fail_rq, &ha->ha_failure);
256                                 atomic_add(new_rq, &ha->ha_requests);
257                                 atomic_sub(succ_rq, &ha->ha_requests);
258                                 atomic_sub(fail_rq, &ha->ha_requests);
259                         }
260                         GOTO(out, rc = 0);
261                 }
262
263         }
264         rc = -ENOENT;
265 out:
266         up_read(&cdt->cdt_agent_lock);
267         RETURN(rc);
268 }
269
270 /**
271  * find the best agent
272  * \param cdt [IN] coordinator
273  * \param archive [IN] archive number
274  * \param uuid [OUT] agent who can serve archive
275  * \retval 0 success
276  * \retval -ve failure
277  */
278 int mdt_hsm_find_best_agent(struct coordinator *cdt, __u32 archive,
279                             struct obd_uuid *uuid)
280 {
281         int                      rc = -EAGAIN, i, load = -1;
282         struct hsm_agent        *ha;
283         ENTRY;
284
285         /* Choose an export to send a copytool req to */
286         down_read(&cdt->cdt_agent_lock);
287         list_for_each_entry(ha, &cdt->cdt_agents, ha_list) {
288                 for (i = 0; (i < ha->ha_archive_cnt) &&
289                               (ha->ha_archive_id[i] != archive); i++) {
290                         /* nothing to do, just skip unmatching records */
291                 }
292
293                 /* archive count == 0 means copy tool serves any backend */
294                 if (ha->ha_archive_cnt != 0 && i == ha->ha_archive_cnt)
295                         continue;
296
297                 if (load == -1 || load > atomic_read(&ha->ha_requests)) {
298                         load = atomic_read(&ha->ha_requests);
299                         *uuid = ha->ha_uuid;
300                         rc = 0;
301                 }
302                 if (atomic_read(&ha->ha_requests) == 0)
303                         break;
304         }
305         up_read(&cdt->cdt_agent_lock);
306
307         RETURN(rc);
308 }
309
310 int mdt_hsm_send_action_to_each_archive(struct mdt_thread_info *mti,
311                                     struct hsm_action_item *hai)
312 {
313         __u64 compound_id;
314         struct hsm_agent *ha;
315         __u32 archive_mask = 0;
316         struct coordinator *cdt = &mti->mti_mdt->mdt_coordinator;
317         int i;
318         /* return error by default in case all archive_ids have unregistered */
319         int rc = -EAGAIN;
320         ENTRY;
321
322         /* send action to all registered archive_ids */
323         down_read(&cdt->cdt_agent_lock);
324         list_for_each_entry(ha, &cdt->cdt_agents, ha_list) {
325                 for (i = 0; (i < ha->ha_archive_cnt); i++) {
326                         /* only send once for each archive_id */
327                         if ((1 << ha->ha_archive_id[i]) & archive_mask)
328                                 continue;
329                         archive_mask |= (1 << ha->ha_archive_id[i]);
330
331                         /* XXX: instead of creating one request record per
332                          * new action, it could make sense to gather
333                          * all for the same archive_id as one compound
334                          * request/id, like in mdt_hsm_add_actions() ?? */
335                         compound_id = atomic_inc_return(&cdt->cdt_compound_id);
336                         rc = mdt_agent_record_add(mti->mti_env, mti->mti_mdt,
337                                                   compound_id,
338                                                   ha->ha_archive_id[i], 0,
339                                                   hai);
340                         if (rc) {
341                                 CERROR("%s: unable to add HSM remove request "
342                                        "for "DFID": rc=%d\n",
343                                        mdt_obd_name(mti->mti_mdt),
344                                        PFID(&hai->hai_fid), rc);
345                                 break;
346                         } else {
347                                 CDEBUG(D_HSM, "%s: added HSM remove request "
348                                        "for "DFID", archive_id=%d\n",
349                                        mdt_obd_name(mti->mti_mdt),
350                                        PFID(&hai->hai_fid),
351                                        ha->ha_archive_id[i]);
352                         }
353                 }
354                 /* early exit from loop due to error? */
355                 if (i != ha->ha_archive_cnt)
356                         break;
357         }
358         up_read(&cdt->cdt_agent_lock);
359
360         RETURN(rc);
361 }
362
363 /**
364  * send a compound request to the agent
365  * \param mti [IN] context
366  * \param hal [IN] request (can be a kuc payload)
367  * \param purge [IN] purge mode (no record)
368  * \retval 0 success
369  * \retval -ve failure
370  * This function supposes:
371  *  - all actions are for the same archive number
372  *  - in case of cancel, all cancel are for the same agent
373  * This implies that request split has to be done
374  *  before when building the hal
375  */
376 int mdt_hsm_agent_send(struct mdt_thread_info *mti,
377                        struct hsm_action_list *hal, bool purge)
378 {
379         struct obd_export       *exp;
380         struct mdt_device       *mdt = mti->mti_mdt;
381         struct coordinator      *cdt = &mti->mti_mdt->mdt_coordinator;
382         struct hsm_action_list  *buf = NULL;
383         struct hsm_action_item  *hai;
384         struct obd_uuid          uuid;
385         int                      len, i, rc = 0;
386         bool                     fail_request;
387         bool                     is_registered = false;
388         ENTRY;
389
390         rc = mdt_hsm_find_best_agent(cdt, hal->hal_archive_id, &uuid);
391         if (rc && hal->hal_archive_id == 0) {
392                 uint notrmcount = 0;
393                 int rc2 = 0;
394
395                 /* special case of remove requests with no archive_id specified,
396                  * and no agent registered to serve all archives, then create a
397                  * set of new requests, each to be sent to each registered
398                  * archives.
399                  * Todo so, find all HSMA_REMOVE entries, and then :
400                  *     _ set completed status as SUCCESS (or FAIL?)
401                  *     _ create a new LLOG record for each archive_id
402                  *       presently being served by any CT
403                  */
404                 hai = hai_first(hal);
405                 for (i = 0; i < hal->hal_count; i++,
406                      hai = hai_next(hai)) {
407                         struct hsm_record_update update;
408
409                         /* only removes are concerned */
410                         if (hai->hai_action != HSMA_REMOVE) {
411                                 /* count if other actions than HSMA_REMOVE,
412                                  * to return original error/rc */
413                                 notrmcount++;
414                                 continue;
415                         }
416
417                         /* send remove request to all registered archive_ids */
418                         rc2 = mdt_hsm_send_action_to_each_archive(mti, hai);
419                         if (rc2)
420                                 break;
421
422                         /* only update original request as SUCCEED if it has
423                          * been successfully broadcasted to all available
424                          * archive_ids
425                          * XXX: this should only cause duplicates to be sent,
426                          * unless a method to record already successfully
427                          * reached archive_ids is implemented */
428
429                         update.cookie = hai->hai_cookie;
430                         update.status = ARS_SUCCEED;
431                         rc2 = mdt_agent_record_update(mti->mti_env, mdt,
432                                                       &update, 1);
433                         if (rc2) {
434                                 CERROR("%s: mdt_agent_record_update() "
435                                       "failed, cannot update "
436                                       "status to %s for cookie "
437                                       "%#llx: rc = %d\n",
438                                       mdt_obd_name(mdt),
439                                       agent_req_status2name(ARS_SUCCEED),
440                                       hai->hai_cookie, rc2);
441                                 break;
442                         }
443                 }
444                 /* only remove requests with archive_id=0 */
445                 if (notrmcount == 0)
446                         RETURN(rc2);
447
448         }
449
450         if (rc) {
451                 CERROR("%s: Cannot find agent for archive %d: rc = %d\n",
452                        mdt_obd_name(mdt), hal->hal_archive_id, rc);
453                 RETURN(rc);
454         }
455
456         CDEBUG(D_HSM, "Agent %s selected for archive %d\n", obd_uuid2str(&uuid),
457                hal->hal_archive_id);
458
459         len = hal_size(hal);
460         buf = kuc_alloc(len, KUC_TRANSPORT_HSM, HMT_ACTION_LIST);
461         if (IS_ERR(buf))
462                 RETURN(PTR_ERR(buf));
463         memcpy(buf, hal, len);
464
465         /* Check if request is still valid (cf file hsm flags) */
466         fail_request = false;
467         hai = hai_first(hal);
468         for (i = 0; i < hal->hal_count; i++, hai = hai_next(hai)) {
469                 struct mdt_object *obj;
470                 struct md_hsm hsm;
471
472                 if (hai->hai_action == HSMA_CANCEL)
473                         continue;
474
475                 obj = mdt_hsm_get_md_hsm(mti, &hai->hai_fid, &hsm);
476                 if (!IS_ERR(obj)) {
477                         mdt_object_put(mti->mti_env, obj);
478                 } else if (PTR_ERR(obj) == -ENOENT) {
479                         struct hsm_record_update update = {
480                                 .cookie = hai->hai_cookie,
481                                 .status = ARS_FAILED,
482                         };
483
484                         if (hai->hai_action == HSMA_REMOVE)
485                                 continue;
486
487                         fail_request = true;
488                         rc = mdt_agent_record_update(mti->mti_env, mdt,
489                                                      &update, 1);
490                         if (rc < 0) {
491                                 CERROR("%s: mdt_agent_record_update() failed, "
492                                        "cannot update status to %s for cookie "
493                                        "%#llx: rc = %d\n",
494                                        mdt_obd_name(mdt),
495                                        agent_req_status2name(ARS_FAILED),
496                                        hai->hai_cookie, rc);
497                                 GOTO(out_buf, rc);
498                         }
499
500                         continue;
501                 } else {
502                         GOTO(out_buf, rc = PTR_ERR(obj));
503                 }
504
505                 if (!mdt_hsm_is_action_compat(hai, hal->hal_archive_id,
506                                               hal->hal_flags, &hsm)) {
507                         struct hsm_record_update update = {
508                                 .cookie = hai->hai_cookie,
509                                 .status = ARS_FAILED,
510                         };
511
512                         /* incompatible request, we abort the request */
513                         /* next time coordinator will wake up, it will
514                          * make the same compound with valid only
515                          * records */
516                         fail_request = true;
517                         rc = mdt_agent_record_update(mti->mti_env, mdt,
518                                                      &update, 1);
519                         if (rc) {
520                                 CERROR("%s: mdt_agent_record_update() failed, "
521                                        "cannot update status to %s for cookie "
522                                        "%#llx: rc = %d\n",
523                                        mdt_obd_name(mdt),
524                                        agent_req_status2name(ARS_FAILED),
525                                        hai->hai_cookie, rc);
526                                 GOTO(out_buf, rc);
527                         }
528
529                         /* if restore and record status updated, give
530                          * back granted layout lock */
531                         if (hai->hai_action == HSMA_RESTORE) {
532                                 struct cdt_restore_handle *crh = NULL;
533
534                                 mutex_lock(&cdt->cdt_restore_lock);
535                                 crh = mdt_hsm_restore_hdl_find(cdt,
536                                                                &hai->hai_fid);
537                                 if (crh != NULL)
538                                         list_del(&crh->crh_list);
539                                 mutex_unlock(&cdt->cdt_restore_lock);
540                                 if (crh != NULL) {
541                                         mdt_object_unlock(mti, NULL,
542                                                           &crh->crh_lh, 1);
543                                         OBD_SLAB_FREE_PTR(crh,
544                                                           mdt_hsm_cdt_kmem);
545                                 }
546                         }
547                 }
548         }
549
550         /* we found incompatible requests, so the compound cannot be send
551          * as is. Bad records have been invalidated in llog.
552          * Valid one will be reschedule next time coordinator will wake up
553          * So no need the rebuild a full valid compound request now
554          */
555         if (fail_request)
556                 GOTO(out_buf, rc = 0);
557
558         /* Cancel memory registration is useless for purge
559          * non registration avoid a deadlock :
560          * in case of failure we have to take the write lock
561          * to remove entry which conflict with the read loack needed
562          * by purge
563          */
564         if (!purge) {
565                 /* set is_registered even if failure because we may have
566                  * partial work done */
567                 is_registered = true;
568                 rc = mdt_hsm_add_hal(mti, hal, &uuid);
569                 if (rc)
570                         GOTO(out_buf, rc);
571         }
572
573         /* Uses the ldlm reverse import; this rpc will be seen by
574          *  the ldlm_callback_handler. Note this sends a request RPC
575          * from a server (MDT) to a client (MDC), backwards of normal comms.
576          */
577         exp = cfs_hash_lookup(mdt2obd_dev(mdt)->obd_uuid_hash, &uuid);
578         if (exp == NULL || exp->exp_disconnected) {
579                 if (exp != NULL)
580                         class_export_put(exp);
581                 /* This should clean up agents on evicted exports */
582                 rc = -ENOENT;
583                 CERROR("%s: agent uuid (%s) not found, unregistering:"
584                        " rc = %d\n",
585                        mdt_obd_name(mdt), obd_uuid2str(&uuid), rc);
586                 mdt_hsm_agent_unregister(mti, &uuid);
587                 GOTO(out, rc);
588         }
589
590         /* send request to agent */
591         rc = do_set_info_async(exp->exp_imp_reverse, LDLM_SET_INFO,
592                                LUSTRE_OBD_VERSION,
593                                sizeof(KEY_HSM_COPYTOOL_SEND),
594                                KEY_HSM_COPYTOOL_SEND,
595                                kuc_len(len), kuc_ptr(buf), NULL);
596
597         if (rc)
598                 CERROR("%s: cannot send request to agent '%s': rc = %d\n",
599                        mdt_obd_name(mdt), obd_uuid2str(&uuid), rc);
600
601         class_export_put(exp);
602
603         if (rc == -EPIPE) {
604                 CDEBUG(D_HSM, "Lost connection to agent '%s', unregistering\n",
605                        obd_uuid2str(&uuid));
606                 mdt_hsm_agent_unregister(mti, &uuid);
607         }
608
609 out:
610         if (rc != 0 && is_registered) {
611                 /* in case of error, we have to unregister requests */
612                 hai = hai_first(hal);
613                 for (i = 0; i < hal->hal_count; i++, hai = hai_next(hai)) {
614                         if (hai->hai_action == HSMA_CANCEL)
615                                 continue;
616                         mdt_cdt_remove_request(cdt, hai->hai_cookie);
617                 }
618         }
619
620 out_buf:
621         kuc_free(buf, len);
622
623         RETURN(rc);
624 }
625
626 /**
627  * update status of a request
628  * \param mti [IN]
629  * \param pgs [IN] progress of the copy tool
630  * \retval 0 success
631  * \retval -ve failure
632  */
633 int mdt_hsm_coordinator_update(struct mdt_thread_info *mti,
634                                struct hsm_progress_kernel *pgs)
635 {
636         int      rc;
637
638         ENTRY;
639         /* ask to coordinator to update request state and
640          * to record on disk the result */
641         rc = mdt_hsm_update_request_state(mti, pgs, 1);
642         RETURN(rc);
643 }
644
645 /**
646  * seq_file method called to start access to /proc file
647  */
648 static void *mdt_hsm_agent_proc_start(struct seq_file *s, loff_t *off)
649 {
650         struct mdt_device       *mdt = s->private;
651         struct coordinator      *cdt = &mdt->mdt_coordinator;
652         struct list_head        *pos;
653         loff_t                   i;
654         ENTRY;
655
656         down_read(&cdt->cdt_agent_lock);
657
658         if (list_empty(&cdt->cdt_agents))
659                 RETURN(NULL);
660
661         if (*off == 0)
662                 RETURN(SEQ_START_TOKEN);
663
664         i = 0;
665         list_for_each(pos, &cdt->cdt_agents) {
666                 i++;
667                 if (i >= *off)
668                         RETURN(pos);
669         }
670
671         RETURN(NULL);
672 }
673
674 /**
675  * seq_file method called to get next item
676  * just returns NULL at eof
677  */
678 static void *mdt_hsm_agent_proc_next(struct seq_file *s, void *v, loff_t *p)
679 {
680         struct mdt_device       *mdt = s->private;
681         struct coordinator      *cdt = &mdt->mdt_coordinator;
682         struct list_head        *pos = v;
683         ENTRY;
684
685         if (pos == SEQ_START_TOKEN)
686                 pos = cdt->cdt_agents.next;
687         else
688                 pos = pos->next;
689
690         (*p)++;
691         if (pos != &cdt->cdt_agents)
692                 RETURN(pos);
693
694         RETURN(NULL);
695 }
696
697 /**
698  */
699 static int mdt_hsm_agent_proc_show(struct seq_file *s, void *v)
700 {
701         struct list_head        *pos = v;
702         struct hsm_agent        *ha;
703         int                      i;
704         ENTRY;
705
706         if (pos == SEQ_START_TOKEN)
707                 RETURN(0);
708
709         ha = list_entry(pos, struct hsm_agent, ha_list);
710         seq_printf(s, "uuid=%s archive_id=", ha->ha_uuid.uuid);
711         if (ha->ha_archive_cnt == 0) {
712                 seq_printf(s, "ANY");
713         } else {
714                 seq_printf(s, "%d", ha->ha_archive_id[0]);
715                 for (i = 1; i < ha->ha_archive_cnt; i++)
716                         seq_printf(s, ",%d", ha->ha_archive_id[i]);
717         }
718
719         seq_printf(s, " requests=[current:%d ok:%d errors:%d]\n",
720                    atomic_read(&ha->ha_requests),
721                    atomic_read(&ha->ha_success),
722                    atomic_read(&ha->ha_failure));
723         RETURN(0);
724 }
725
726 /**
727  * seq_file method called to stop access to /proc file
728  */
729 static void mdt_hsm_agent_proc_stop(struct seq_file *s, void *v)
730 {
731         struct mdt_device       *mdt = s->private;
732         struct coordinator      *cdt = &mdt->mdt_coordinator;
733
734         up_read(&cdt->cdt_agent_lock);
735 }
736
737 /* hsm agent list proc functions */
738 static const struct seq_operations mdt_hsm_agent_proc_ops = {
739         .start  = mdt_hsm_agent_proc_start,
740         .next   = mdt_hsm_agent_proc_next,
741         .show   = mdt_hsm_agent_proc_show,
742         .stop   = mdt_hsm_agent_proc_stop,
743 };
744
745 /**
746  * public function called at open of /proc file to get
747  * list of agents
748  */
749 static int lprocfs_open_hsm_agent(struct inode *inode, struct file *file)
750 {
751         struct seq_file *s;
752         int              rc;
753         ENTRY;
754
755         rc = seq_open(file, &mdt_hsm_agent_proc_ops);
756         if (rc)
757                 RETURN(rc);
758
759         s = file->private_data;
760         s->private = PDE_DATA(inode);
761
762         RETURN(rc);
763 }
764
765 /* methods to access hsm agent list */
766 const struct file_operations mdt_hsm_agent_fops = {
767         .owner          = THIS_MODULE,
768         .open           = lprocfs_open_hsm_agent,
769         .read           = seq_read,
770         .llseek         = seq_lseek,
771         .release        = lprocfs_seq_release,
772 };