Whamcloud - gitweb
6fcbb4da4206df3964112edcd790e0231e715b22
[fs/lustre-release.git] / lustre / mdt / mdt_coordinator.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  * Copyright (c) 2011, 2012 Commissariat a l'energie atomique et aux energies
24  *                          alternatives
25  *
26  * Copyright (c) 2013, 2016, Intel Corporation.
27  * Use is subject to license terms.
28  */
29 /*
30  * lustre/mdt/mdt_coordinator.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  * Author: Thomas Leibovici <thomas.leibovici@cea.fr>
37  */
38
39 #define DEBUG_SUBSYSTEM S_MDS
40
41 #include <linux/kthread.h>
42 #include <obd_support.h>
43 #include <lustre_net.h>
44 #include <lustre_export.h>
45 #include <obd.h>
46 #include <lprocfs_status.h>
47 #include <lustre_log.h>
48 #include <lustre_kernelcomm.h>
49 #include "mdt_internal.h"
50
51 static struct lprocfs_vars lprocfs_mdt_hsm_vars[];
52
53 /**
54  * get obj and HSM attributes on a fid
55  * \param mti [IN] context
56  * \param fid [IN] object fid
57  * \param hsm [OUT] HSM meta data
58  * \retval obj or error (-ENOENT if not found)
59  */
60 struct mdt_object *mdt_hsm_get_md_hsm(struct mdt_thread_info *mti,
61                                       const struct lu_fid *fid,
62                                       struct md_hsm *hsm)
63 {
64         struct md_attr          *ma;
65         struct mdt_object       *obj;
66         int                      rc;
67         ENTRY;
68
69         ma = &mti->mti_attr;
70         ma->ma_need = MA_HSM;
71         ma->ma_valid = 0;
72
73         /* find object by FID */
74         obj = mdt_object_find(mti->mti_env, mti->mti_mdt, fid);
75         if (IS_ERR(obj))
76                 RETURN(obj);
77
78         if (!mdt_object_exists(obj)) {
79                 /* no more object */
80                 mdt_object_put(mti->mti_env, obj);
81                 RETURN(ERR_PTR(-ENOENT));
82         }
83
84         rc = mdt_attr_get_complex(mti, obj, ma);
85         if (rc) {
86                 mdt_object_put(mti->mti_env, obj);
87                 RETURN(ERR_PTR(rc));
88         }
89
90         if (ma->ma_valid & MA_HSM)
91                 *hsm = ma->ma_hsm;
92         else
93                 memset(hsm, 0, sizeof(*hsm));
94         ma->ma_valid = 0;
95         RETURN(obj);
96 }
97
98 void mdt_hsm_dump_hal(int level, const char *prefix,
99                       struct hsm_action_list *hal)
100 {
101         int                      i, sz;
102         struct hsm_action_item  *hai;
103         char                     buf[12];
104
105         CDEBUG(level, "%s: HAL header: version %X count %d compound %#llx"
106                       " archive_id %d flags %#llx\n",
107                prefix, hal->hal_version, hal->hal_count,
108                hal->hal_compound_id, hal->hal_archive_id, hal->hal_flags);
109
110         hai = hai_first(hal);
111         for (i = 0; i < hal->hal_count; i++) {
112                 sz = hai->hai_len - sizeof(*hai);
113                 CDEBUG(level, "%s %d: fid="DFID" dfid="DFID
114                        " compound/cookie=%#llx/%#llx"
115                        " action=%s extent=%#llx-%#llx gid=%#llx"
116                        " datalen=%d data=[%s]\n",
117                        prefix, i,
118                        PFID(&hai->hai_fid), PFID(&hai->hai_dfid),
119                        hal->hal_compound_id, hai->hai_cookie,
120                        hsm_copytool_action2name(hai->hai_action),
121                        hai->hai_extent.offset,
122                        hai->hai_extent.length,
123                        hai->hai_gid, sz,
124                        hai_dump_data_field(hai, buf, sizeof(buf)));
125                 hai = hai_next(hai);
126         }
127 }
128
129 /**
130  * data passed to llog_cat_process() callback
131  * to scan requests and take actions
132  */
133 struct hsm_scan_request {
134         int                      hal_sz;
135         int                      hal_used_sz;
136         struct hsm_action_list  *hal;
137 };
138
139 struct hsm_scan_data {
140         struct mdt_thread_info          *mti;
141         char                             fs_name[MTI_NAME_MAXLEN+1];
142         /* request to be send to agents */
143         int                              max_requests;  /** vector size */
144         int                              request_cnt;   /** used count */
145         struct hsm_scan_request         *request;
146 };
147
148 /**
149  *  llog_cat_process() callback, used to:
150  *  - find waiting request and start action
151  *  - purge canceled and done requests
152  * \param env [IN] environment
153  * \param llh [IN] llog handle
154  * \param hdr [IN] llog record
155  * \param data [IN/OUT] cb data = struct hsm_scan_data
156  * \retval 0 success
157  * \retval -ve failure
158  */
159 static int mdt_coordinator_cb(const struct lu_env *env,
160                               struct llog_handle *llh,
161                               struct llog_rec_hdr *hdr,
162                               void *data)
163 {
164         struct llog_agent_req_rec       *larr;
165         struct hsm_scan_data            *hsd;
166         struct hsm_action_item          *hai;
167         struct mdt_device               *mdt;
168         struct coordinator              *cdt;
169         int                              rc;
170         ENTRY;
171
172         hsd = data;
173         mdt = hsd->mti->mti_mdt;
174         cdt = &mdt->mdt_coordinator;
175
176         larr = (struct llog_agent_req_rec *)hdr;
177         dump_llog_agent_req_rec("mdt_coordinator_cb(): ", larr);
178         switch (larr->arr_status) {
179         case ARS_WAITING: {
180                 int i;
181                 struct hsm_scan_request *request;
182
183                 /* Are agents full? */
184                 if (atomic_read(&cdt->cdt_request_count) >=
185                     cdt->cdt_max_requests)
186                         break;
187
188                 /* first search whether the request is found in the
189                  * list we have built. */
190                 request = NULL;
191                 for (i = 0; i < hsd->request_cnt; i++) {
192                         if (hsd->request[i].hal->hal_compound_id ==
193                             larr->arr_compound_id) {
194                                 request = &hsd->request[i];
195                                 break;
196                         }
197                 }
198
199                 if (!request) {
200                         struct hsm_action_list *hal;
201
202                         if (hsd->request_cnt == hsd->max_requests)
203                                 /* Unknown request and no more room
204                                  * for a new request. Continue to scan
205                                  * to find other entries for already
206                                  * existing requests.
207                                  */
208                                 RETURN(0);
209
210                         request = &hsd->request[hsd->request_cnt];
211
212                         /* allocates hai vector size just needs to be large
213                          * enough */
214                         request->hal_sz =
215                                 sizeof(*request->hal) +
216                                 cfs_size_round(MTI_NAME_MAXLEN+1) +
217                                 2 * cfs_size_round(larr->arr_hai.hai_len);
218                         OBD_ALLOC(hal, request->hal_sz);
219                         if (!hal)
220                                 RETURN(-ENOMEM);
221                         hal->hal_version = HAL_VERSION;
222                         strlcpy(hal->hal_fsname, hsd->fs_name,
223                                 MTI_NAME_MAXLEN + 1);
224                         hal->hal_compound_id = larr->arr_compound_id;
225                         hal->hal_archive_id = larr->arr_archive_id;
226                         hal->hal_flags = larr->arr_flags;
227                         hal->hal_count = 0;
228                         request->hal_used_sz = hal_size(hal);
229                         request->hal = hal;
230                         hsd->request_cnt++;
231                         hai = hai_first(hal);
232                 } else {
233                         /* request is known */
234                         /* we check if record archive num is the same as the
235                          * known request, if not we will serve it in multiple
236                          * time because we do not know if the agent can serve
237                          * multiple backend
238                          * a use case is a compound made of multiple restore
239                          * where the files are not archived in the same backend
240                          */
241                         if (larr->arr_archive_id !=
242                             request->hal->hal_archive_id)
243                                 RETURN(0);
244
245                         if (request->hal_sz <
246                             request->hal_used_sz +
247                             cfs_size_round(larr->arr_hai.hai_len)) {
248                                 /* Not enough room, need an extension */
249                                 void *hal_buffer;
250                                 int sz;
251
252                                 sz = 2 * request->hal_sz;
253                                 OBD_ALLOC(hal_buffer, sz);
254                                 if (!hal_buffer)
255                                         RETURN(-ENOMEM);
256                                 memcpy(hal_buffer, request->hal,
257                                        request->hal_used_sz);
258                                 OBD_FREE(request->hal,
259                                          request->hal_sz);
260                                 request->hal = hal_buffer;
261                                 request->hal_sz = sz;
262                         }
263                         hai = hai_first(request->hal);
264                         for (i = 0; i < request->hal->hal_count; i++)
265                                 hai = hai_next(hai);
266                 }
267                 memcpy(hai, &larr->arr_hai, larr->arr_hai.hai_len);
268                 hai->hai_cookie = larr->arr_hai.hai_cookie;
269                 hai->hai_gid = larr->arr_hai.hai_gid;
270
271                 request->hal_used_sz += cfs_size_round(hai->hai_len);
272                 request->hal->hal_count++;
273                 break;
274         }
275         case ARS_STARTED: {
276                 struct hsm_progress_kernel pgs;
277                 struct cdt_agent_req *car;
278                 cfs_time_t now = cfs_time_current_sec();
279                 cfs_time_t last;
280
281                 /* we search for a running request
282                  * error may happen if coordinator crashes or stopped
283                  * with running request
284                  */
285                 car = mdt_cdt_find_request(cdt, larr->arr_hai.hai_cookie, NULL);
286                 if (car == NULL) {
287                         last = larr->arr_req_create;
288                 } else {
289                         last = car->car_req_update;
290                         mdt_cdt_put_request(car);
291                 }
292
293                 /* test if request too long, if yes cancel it
294                  * the same way the copy tool acknowledge a cancel request */
295                 if (now <= last + cdt->cdt_active_req_timeout)
296                         RETURN(0);
297
298                 dump_llog_agent_req_rec("request timed out, start cleaning",
299                                         larr);
300                 /* a too old cancel request just needs to be removed
301                  * this can happen, if copy tool does not support
302                  * cancel for other requests, we have to remove the
303                  * running request and notify the copytool */
304                 pgs.hpk_fid = larr->arr_hai.hai_fid;
305                 pgs.hpk_cookie = larr->arr_hai.hai_cookie;
306                 pgs.hpk_extent = larr->arr_hai.hai_extent;
307                 pgs.hpk_flags = HP_FLAG_COMPLETED;
308                 pgs.hpk_errval = ENOSYS;
309                 pgs.hpk_data_version = 0;
310
311                 /* update request state, but do not record in llog, to
312                  * avoid deadlock on cdt_llog_lock */
313                 rc = mdt_hsm_update_request_state(hsd->mti, &pgs, 0);
314                 if (rc)
315                         CERROR("%s: cannot cleanup timed out request: "
316                                DFID" for cookie %#llx action=%s\n",
317                                mdt_obd_name(mdt),
318                                PFID(&pgs.hpk_fid), pgs.hpk_cookie,
319                                hsm_copytool_action2name(
320                                        larr->arr_hai.hai_action));
321
322                 if (rc == -ENOENT) {
323                         /* The request no longer exists, forget
324                          * about it, and do not send a cancel request
325                          * to the client, for which an error will be
326                          * sent back, leading to an endless cycle of
327                          * cancellation. */
328                         RETURN(LLOG_DEL_RECORD);
329                 }
330
331                 /* XXX A cancel request cannot be cancelled. */
332                 if (larr->arr_hai.hai_action == HSMA_CANCEL)
333                         RETURN(0);
334
335                 larr->arr_status = ARS_CANCELED;
336                 larr->arr_req_change = now;
337                 rc = llog_write(hsd->mti->mti_env, llh, hdr, hdr->lrh_index);
338                 if (rc < 0)
339                         CERROR("%s: cannot update agent log: rc = %d\n",
340                                mdt_obd_name(mdt), rc);
341                 break;
342         }
343         case ARS_FAILED:
344         case ARS_CANCELED:
345         case ARS_SUCCEED:
346                 if ((larr->arr_req_change + cdt->cdt_grace_delay) <
347                     cfs_time_current_sec())
348                         RETURN(LLOG_DEL_RECORD);
349                 break;
350         }
351         RETURN(0);
352 }
353
354 /**
355  * create /proc entries for coordinator
356  * \param mdt [IN]
357  * \retval 0 success
358  * \retval -ve failure
359  */
360 int hsm_cdt_procfs_init(struct mdt_device *mdt)
361 {
362         struct coordinator      *cdt = &mdt->mdt_coordinator;
363         int                      rc = 0;
364         ENTRY;
365
366         /* init /proc entries, failure is not critical */
367         cdt->cdt_proc_dir = lprocfs_register("hsm",
368                                              mdt2obd_dev(mdt)->obd_proc_entry,
369                                              lprocfs_mdt_hsm_vars, mdt);
370         if (IS_ERR(cdt->cdt_proc_dir)) {
371                 rc = PTR_ERR(cdt->cdt_proc_dir);
372                 CERROR("%s: Cannot create 'hsm' directory in mdt proc dir,"
373                        " rc=%d\n", mdt_obd_name(mdt), rc);
374                 cdt->cdt_proc_dir = NULL;
375                 RETURN(rc);
376         }
377
378         RETURN(0);
379 }
380
381 /**
382  * remove /proc entries for coordinator
383  * \param mdt [IN]
384  */
385 void  hsm_cdt_procfs_fini(struct mdt_device *mdt)
386 {
387         struct coordinator      *cdt = &mdt->mdt_coordinator;
388
389         LASSERT(cdt->cdt_state == CDT_STOPPED);
390         if (cdt->cdt_proc_dir != NULL)
391                 lprocfs_remove(&cdt->cdt_proc_dir);
392 }
393
394 /**
395  * get vector of hsm cdt /proc vars
396  * \param none
397  * \retval var vector
398  */
399 struct lprocfs_vars *hsm_cdt_get_proc_vars(void)
400 {
401         return lprocfs_mdt_hsm_vars;
402 }
403
404 /**
405  * coordinator thread
406  * \param data [IN] obd device
407  * \retval 0 success
408  * \retval -ve failure
409  */
410 static int mdt_coordinator(void *data)
411 {
412         struct mdt_thread_info  *mti = data;
413         struct mdt_device       *mdt = mti->mti_mdt;
414         struct coordinator      *cdt = &mdt->mdt_coordinator;
415         struct hsm_scan_data     hsd = { NULL };
416         int                      rc = 0;
417         int                      request_sz;
418         ENTRY;
419
420         cdt->cdt_thread.t_flags = SVC_RUNNING;
421         wake_up(&cdt->cdt_thread.t_ctl_waitq);
422
423         CDEBUG(D_HSM, "%s: coordinator thread starting, pid=%d\n",
424                mdt_obd_name(mdt), current_pid());
425
426         /* we use a copy of cdt_max_requests in the cb, so if cdt_max_requests
427          * increases due to a change from /proc we do not overflow the
428          * hsd.request[] vector
429          */
430         hsd.max_requests = cdt->cdt_max_requests;
431         request_sz = hsd.max_requests * sizeof(*hsd.request);
432         OBD_ALLOC(hsd.request, request_sz);
433         if (!hsd.request)
434                 GOTO(out, rc = -ENOMEM);
435
436         hsd.mti = mti;
437         obd_uuid2fsname(hsd.fs_name, mdt_obd_name(mdt), MTI_NAME_MAXLEN);
438
439         while (1) {
440                 struct l_wait_info lwi;
441                 int i;
442
443                 lwi = LWI_TIMEOUT(cfs_time_seconds(cdt->cdt_loop_period),
444                                   NULL, NULL);
445                 l_wait_event(cdt->cdt_thread.t_ctl_waitq,
446                              (cdt->cdt_thread.t_flags &
447                               (SVC_STOPPING|SVC_EVENT)),
448                              &lwi);
449
450                 CDEBUG(D_HSM, "coordinator resumes\n");
451
452                 if (cdt->cdt_thread.t_flags & SVC_STOPPING ||
453                     cdt->cdt_state == CDT_STOPPING) {
454                         cdt->cdt_thread.t_flags &= ~SVC_STOPPING;
455                         rc = 0;
456                         break;
457                 }
458
459                 /* wake up before timeout, new work arrives */
460                 if (cdt->cdt_thread.t_flags & SVC_EVENT)
461                         cdt->cdt_thread.t_flags &= ~SVC_EVENT;
462
463                 /* if coordinator is suspended continue to wait */
464                 if (cdt->cdt_state == CDT_DISABLE) {
465                         CDEBUG(D_HSM, "disable state, coordinator sleeps\n");
466                         continue;
467                 }
468
469                 CDEBUG(D_HSM, "coordinator starts reading llog\n");
470
471                 if (hsd.max_requests != cdt->cdt_max_requests) {
472                         /* cdt_max_requests has changed,
473                          * we need to allocate a new buffer
474                          */
475                         OBD_FREE(hsd.request, request_sz);
476                         hsd.max_requests = cdt->cdt_max_requests;
477                         request_sz = hsd.max_requests * sizeof(*hsd.request);
478                         OBD_ALLOC(hsd.request, request_sz);
479                         if (!hsd.request) {
480                                 rc = -ENOMEM;
481                                 break;
482                         }
483                 }
484
485                 hsd.request_cnt = 0;
486
487                 rc = cdt_llog_process(mti->mti_env, mdt,
488                                       mdt_coordinator_cb, &hsd);
489                 if (rc < 0)
490                         goto clean_cb_alloc;
491
492                 CDEBUG(D_HSM, "found %d requests to send\n", hsd.request_cnt);
493
494                 if (list_empty(&cdt->cdt_agents)) {
495                         CDEBUG(D_HSM, "no agent available, "
496                                       "coordinator sleeps\n");
497                         goto clean_cb_alloc;
498                 }
499
500                 /* here hsd contains a list of requests to be started */
501                 for (i = 0; i < hsd.request_cnt; i++) {
502                         struct hsm_scan_request *request = &hsd.request[i];
503                         struct hsm_action_list  *hal = request->hal;
504                         struct hsm_action_item  *hai;
505                         __u64                   *cookies;
506                         int                      sz, j;
507                         enum agent_req_status    status;
508
509                         /* still room for work ? */
510                         if (atomic_read(&cdt->cdt_request_count) >=
511                             cdt->cdt_max_requests)
512                                 break;
513
514                         rc = mdt_hsm_agent_send(mti, hal, 0);
515                         /* if failure, we suppose it is temporary
516                          * if the copy tool failed to do the request
517                          * it has to use hsm_progress
518                          */
519                         status = (rc ? ARS_WAITING : ARS_STARTED);
520
521                         /* set up cookie vector to set records status
522                          * after copy tools start or failed
523                          */
524                         sz = hal->hal_count * sizeof(__u64);
525                         OBD_ALLOC(cookies, sz);
526                         if (cookies == NULL)
527                                 continue;
528
529                         hai = hai_first(hal);
530                         for (j = 0; j < hal->hal_count; j++) {
531                                 cookies[j] = hai->hai_cookie;
532                                 hai = hai_next(hai);
533                         }
534
535                         rc = mdt_agent_record_update(mti->mti_env, mdt, cookies,
536                                                      hal->hal_count, status);
537                         if (rc)
538                                 CERROR("%s: mdt_agent_record_update() failed, "
539                                        "rc=%d, cannot update status to %s "
540                                        "for %d cookies\n",
541                                        mdt_obd_name(mdt), rc,
542                                        agent_req_status2name(status),
543                                        hal->hal_count);
544
545                         OBD_FREE(cookies, sz);
546                 }
547 clean_cb_alloc:
548                 /* free hal allocated by callback */
549                 for (i = 0; i < hsd.request_cnt; i++) {
550                         struct hsm_scan_request *request = &hsd.request[i];
551
552                         OBD_FREE(request->hal, request->hal_sz);
553                 }
554         }
555         EXIT;
556 out:
557         if (hsd.request)
558                 OBD_FREE(hsd.request, request_sz);
559
560         if (cdt->cdt_state == CDT_STOPPING) {
561                 /* request comes from /proc path, so we need to clean cdt
562                  * struct */
563                  mdt_hsm_cdt_stop(mdt);
564                  mdt->mdt_opts.mo_coordinator = 0;
565         } else {
566                 /* request comes from a thread event, generated
567                  * by mdt_stop_coordinator(), we have to ack
568                  * and cdt cleaning will be done by event sender
569                  */
570                 cdt->cdt_thread.t_flags = SVC_STOPPED;
571                 wake_up(&cdt->cdt_thread.t_ctl_waitq);
572         }
573
574         if (rc != 0)
575                 CERROR("%s: coordinator thread exiting, process=%d, rc=%d\n",
576                        mdt_obd_name(mdt), current_pid(), rc);
577         else
578                 CDEBUG(D_HSM, "%s: coordinator thread exiting, process=%d,"
579                               " no error\n",
580                        mdt_obd_name(mdt), current_pid());
581
582         return rc;
583 }
584
585 /**
586  * lookup a restore handle by FID
587  * caller needs to hold cdt_restore_lock
588  * \param cdt [IN] coordinator
589  * \param fid [IN] FID
590  * \retval cdt_restore_handle found
591  * \retval NULL not found
592  */
593 struct cdt_restore_handle *mdt_hsm_restore_hdl_find(struct coordinator *cdt,
594                                                        const struct lu_fid *fid)
595 {
596         struct cdt_restore_handle       *crh;
597         ENTRY;
598
599         list_for_each_entry(crh, &cdt->cdt_restore_hdl, crh_list) {
600                 if (lu_fid_eq(&crh->crh_fid, fid))
601                         RETURN(crh);
602         }
603         RETURN(NULL);
604 }
605
606 /**
607  * data passed to llog_cat_process() callback
608  * to scan requests and take actions
609  */
610 struct hsm_restore_data {
611         struct mdt_thread_info  *hrd_mti;
612 };
613
614 /**
615  *  llog_cat_process() callback, used to:
616  *  - find restore request and allocate the restore handle
617  * \param env [IN] environment
618  * \param llh [IN] llog handle
619  * \param hdr [IN] llog record
620  * \param data [IN/OUT] cb data = struct hsm_restore_data
621  * \retval 0 success
622  * \retval -ve failure
623  */
624 static int hsm_restore_cb(const struct lu_env *env,
625                           struct llog_handle *llh,
626                           struct llog_rec_hdr *hdr, void *data)
627 {
628         struct llog_agent_req_rec       *larr;
629         struct hsm_restore_data         *hrd;
630         struct cdt_restore_handle       *crh;
631         struct hsm_action_item          *hai;
632         struct mdt_thread_info          *mti;
633         struct coordinator              *cdt;
634         struct mdt_object               *child;
635         int rc;
636         ENTRY;
637
638         hrd = data;
639         mti = hrd->hrd_mti;
640         cdt = &mti->mti_mdt->mdt_coordinator;
641
642         larr = (struct llog_agent_req_rec *)hdr;
643         hai = &larr->arr_hai;
644         if (hai->hai_cookie > cdt->cdt_last_cookie)
645                 /* update the cookie to avoid collision */
646                 cdt->cdt_last_cookie = hai->hai_cookie + 1;
647
648         if (hai->hai_action != HSMA_RESTORE ||
649             agent_req_in_final_state(larr->arr_status))
650                 RETURN(0);
651
652         /* restore request not in a final state */
653
654         /* force replay of restore requests left in started state from previous
655          * CDT context, to be canceled later if finally found to be incompatible
656          * when being re-started */
657         if (larr->arr_status == ARS_STARTED) {
658                 larr->arr_status = ARS_WAITING;
659                 larr->arr_req_change = cfs_time_current_sec();
660                 rc = llog_write(env, llh, hdr, hdr->lrh_index);
661                 if (rc != 0)
662                         GOTO(out, rc);
663         }
664
665         OBD_SLAB_ALLOC_PTR(crh, mdt_hsm_cdt_kmem);
666         if (crh == NULL)
667                 RETURN(-ENOMEM);
668
669         crh->crh_fid = hai->hai_fid;
670         /* in V1 all file is restored
671         crh->extent.start = hai->hai_extent.offset;
672         crh->extent.end = hai->hai_extent.offset + hai->hai_extent.length;
673         */
674         crh->crh_extent.start = 0;
675         crh->crh_extent.end = hai->hai_extent.length;
676         /* get the layout lock */
677         mdt_lock_reg_init(&crh->crh_lh, LCK_EX);
678         child = mdt_object_find_lock(mti, &crh->crh_fid, &crh->crh_lh,
679                                      MDS_INODELOCK_LAYOUT);
680         if (IS_ERR(child))
681                 GOTO(out, rc = PTR_ERR(child));
682
683         rc = 0;
684         /* we choose to not keep a reference
685          * on the object during the restore time which can be very long */
686         mdt_object_put(mti->mti_env, child);
687
688         mutex_lock(&cdt->cdt_restore_lock);
689         list_add_tail(&crh->crh_list, &cdt->cdt_restore_hdl);
690         mutex_unlock(&cdt->cdt_restore_lock);
691
692 out:
693         RETURN(rc);
694 }
695
696 /**
697  * restore coordinator state at startup
698  * the goal is to take a layout lock for each registered restore request
699  * \param mti [IN] context
700  */
701 static int mdt_hsm_pending_restore(struct mdt_thread_info *mti)
702 {
703         struct hsm_restore_data  hrd;
704         int                      rc;
705         ENTRY;
706
707         hrd.hrd_mti = mti;
708
709         rc = cdt_llog_process(mti->mti_env, mti->mti_mdt,
710                               hsm_restore_cb, &hrd);
711
712         RETURN(rc);
713 }
714
715 static int hsm_init_ucred(struct lu_ucred *uc)
716 {
717         ENTRY;
718
719         uc->uc_valid = UCRED_OLD;
720         uc->uc_o_uid = 0;
721         uc->uc_o_gid = 0;
722         uc->uc_o_fsuid = 0;
723         uc->uc_o_fsgid = 0;
724         uc->uc_uid = 0;
725         uc->uc_gid = 0;
726         uc->uc_fsuid = 0;
727         uc->uc_fsgid = 0;
728         uc->uc_suppgids[0] = -1;
729         uc->uc_suppgids[1] = -1;
730         uc->uc_cap = CFS_CAP_FS_MASK;
731         uc->uc_umask = 0777;
732         uc->uc_ginfo = NULL;
733         uc->uc_identity = NULL;
734
735         RETURN(0);
736 }
737
738 /**
739  * wake up coordinator thread
740  * \param mdt [IN] device
741  * \retval 0 success
742  * \retval -ve failure
743  */
744 int mdt_hsm_cdt_wakeup(struct mdt_device *mdt)
745 {
746         struct coordinator      *cdt = &mdt->mdt_coordinator;
747         ENTRY;
748
749         if (cdt->cdt_state == CDT_STOPPED)
750                 RETURN(-ESRCH);
751
752         /* wake up coordinator */
753         cdt->cdt_thread.t_flags = SVC_EVENT;
754         wake_up(&cdt->cdt_thread.t_ctl_waitq);
755
756         RETURN(0);
757 }
758
759 /**
760  * initialize coordinator struct
761  * \param mdt [IN] device
762  * \retval 0 success
763  * \retval -ve failure
764  */
765 int mdt_hsm_cdt_init(struct mdt_device *mdt)
766 {
767         struct coordinator      *cdt = &mdt->mdt_coordinator;
768         struct mdt_thread_info  *cdt_mti = NULL;
769         int                      rc;
770         ENTRY;
771
772         cdt->cdt_state = CDT_STOPPED;
773
774         init_waitqueue_head(&cdt->cdt_thread.t_ctl_waitq);
775         mutex_init(&cdt->cdt_llog_lock);
776         init_rwsem(&cdt->cdt_agent_lock);
777         init_rwsem(&cdt->cdt_request_lock);
778         mutex_init(&cdt->cdt_restore_lock);
779
780         INIT_LIST_HEAD(&cdt->cdt_requests);
781         INIT_LIST_HEAD(&cdt->cdt_agents);
782         INIT_LIST_HEAD(&cdt->cdt_restore_hdl);
783
784         rc = lu_env_init(&cdt->cdt_env, LCT_MD_THREAD);
785         if (rc < 0)
786                 RETURN(rc);
787
788         /* for mdt_ucred(), lu_ucred stored in lu_ucred_key */
789         rc = lu_context_init(&cdt->cdt_session, LCT_SERVER_SESSION);
790         if (rc == 0) {
791                 lu_context_enter(&cdt->cdt_session);
792                 cdt->cdt_env.le_ses = &cdt->cdt_session;
793         } else {
794                 lu_env_fini(&cdt->cdt_env);
795                 RETURN(rc);
796         }
797
798         cdt_mti = lu_context_key_get(&cdt->cdt_env.le_ctx, &mdt_thread_key);
799         LASSERT(cdt_mti != NULL);
800
801         cdt_mti->mti_env = &cdt->cdt_env;
802         cdt_mti->mti_mdt = mdt;
803
804         hsm_init_ucred(mdt_ucred(cdt_mti));
805
806         /* default values for /proc tunnables
807          * can be override by MGS conf */
808         cdt->cdt_default_archive_id = 1;
809         cdt->cdt_grace_delay = 60;
810         cdt->cdt_loop_period = 10;
811         cdt->cdt_max_requests = 3;
812         cdt->cdt_policy = CDT_DEFAULT_POLICY;
813         cdt->cdt_active_req_timeout = 3600;
814
815         RETURN(0);
816 }
817
818 /**
819  * free a coordinator thread
820  * \param mdt [IN] device
821  */
822 int  mdt_hsm_cdt_fini(struct mdt_device *mdt)
823 {
824         struct coordinator *cdt = &mdt->mdt_coordinator;
825         ENTRY;
826
827         lu_context_exit(cdt->cdt_env.le_ses);
828         lu_context_fini(cdt->cdt_env.le_ses);
829
830         lu_env_fini(&cdt->cdt_env);
831
832         RETURN(0);
833 }
834
835 /**
836  * start a coordinator thread
837  * \param mdt [IN] device
838  * \retval 0 success
839  * \retval -ve failure
840  */
841 static int mdt_hsm_cdt_start(struct mdt_device *mdt)
842 {
843         struct coordinator      *cdt = &mdt->mdt_coordinator;
844         int                      rc;
845         void                    *ptr;
846         struct mdt_thread_info  *cdt_mti;
847         struct task_struct      *task;
848         ENTRY;
849
850         /* functions defined but not yet used
851          * this avoid compilation warning
852          */
853         ptr = dump_requests;
854
855         if (cdt->cdt_state != CDT_STOPPED) {
856                 CERROR("%s: Coordinator already started\n",
857                        mdt_obd_name(mdt));
858                 RETURN(-EALREADY);
859         }
860
861         CLASSERT(1 << (CDT_POLICY_SHIFT_COUNT - 1) == CDT_POLICY_LAST);
862         cdt->cdt_policy = CDT_DEFAULT_POLICY;
863
864         cdt->cdt_state = CDT_INIT;
865
866         atomic_set(&cdt->cdt_compound_id, cfs_time_current_sec());
867         /* just need to be larger than previous one */
868         /* cdt_last_cookie is protected by cdt_llog_lock */
869         cdt->cdt_last_cookie = cfs_time_current_sec();
870         atomic_set(&cdt->cdt_request_count, 0);
871         cdt->cdt_user_request_mask = (1UL << HSMA_RESTORE);
872         cdt->cdt_group_request_mask = (1UL << HSMA_RESTORE);
873         cdt->cdt_other_request_mask = (1UL << HSMA_RESTORE);
874
875         /* to avoid deadlock when start is made through /proc
876          * /proc entries are created by the coordinator thread */
877
878         /* set up list of started restore requests */
879         cdt_mti = lu_context_key_get(&cdt->cdt_env.le_ctx, &mdt_thread_key);
880         rc = mdt_hsm_pending_restore(cdt_mti);
881         if (rc)
882                 CERROR("%s: cannot take the layout locks needed"
883                        " for registered restore: %d\n",
884                        mdt_obd_name(mdt), rc);
885
886         task = kthread_run(mdt_coordinator, cdt_mti, "hsm_cdtr");
887         if (IS_ERR(task)) {
888                 rc = PTR_ERR(task);
889                 cdt->cdt_state = CDT_STOPPED;
890                 CERROR("%s: error starting coordinator thread: %d\n",
891                        mdt_obd_name(mdt), rc);
892                 RETURN(rc);
893         } else {
894                 CDEBUG(D_HSM, "%s: coordinator thread started\n",
895                        mdt_obd_name(mdt));
896                 rc = 0;
897         }
898
899         wait_event(cdt->cdt_thread.t_ctl_waitq,
900                        (cdt->cdt_thread.t_flags & SVC_RUNNING));
901
902         cdt->cdt_state = CDT_RUNNING;
903         mdt->mdt_opts.mo_coordinator = 1;
904         RETURN(0);
905 }
906
907 /**
908  * stop a coordinator thread
909  * \param mdt [IN] device
910  */
911 int mdt_hsm_cdt_stop(struct mdt_device *mdt)
912 {
913         struct coordinator              *cdt = &mdt->mdt_coordinator;
914         struct cdt_agent_req            *car, *tmp1;
915         struct hsm_agent                *ha, *tmp2;
916         struct cdt_restore_handle       *crh, *tmp3;
917         struct mdt_thread_info          *cdt_mti;
918         ENTRY;
919
920         if (cdt->cdt_state == CDT_STOPPED) {
921                 CERROR("%s: Coordinator already stopped\n",
922                        mdt_obd_name(mdt));
923                 RETURN(-EALREADY);
924         }
925
926         if (cdt->cdt_state != CDT_STOPPING) {
927                 /* stop coordinator thread before cleaning */
928                 cdt->cdt_thread.t_flags = SVC_STOPPING;
929                 wake_up(&cdt->cdt_thread.t_ctl_waitq);
930                 wait_event(cdt->cdt_thread.t_ctl_waitq,
931                            cdt->cdt_thread.t_flags & SVC_STOPPED);
932         }
933         cdt->cdt_state = CDT_STOPPED;
934
935         /* start cleaning */
936         down_write(&cdt->cdt_request_lock);
937         list_for_each_entry_safe(car, tmp1, &cdt->cdt_requests,
938                                  car_request_list) {
939                 list_del(&car->car_request_list);
940                 mdt_cdt_free_request(car);
941         }
942         up_write(&cdt->cdt_request_lock);
943
944         down_write(&cdt->cdt_agent_lock);
945         list_for_each_entry_safe(ha, tmp2, &cdt->cdt_agents, ha_list) {
946                 list_del(&ha->ha_list);
947                 OBD_FREE_PTR(ha);
948         }
949         up_write(&cdt->cdt_agent_lock);
950
951         cdt_mti = lu_context_key_get(&cdt->cdt_env.le_ctx, &mdt_thread_key);
952         mutex_lock(&cdt->cdt_restore_lock);
953         list_for_each_entry_safe(crh, tmp3, &cdt->cdt_restore_hdl, crh_list) {
954                 struct mdt_object       *child;
955
956                 /* give back layout lock */
957                 child = mdt_object_find(&cdt->cdt_env, mdt, &crh->crh_fid);
958                 if (!IS_ERR(child))
959                         mdt_object_unlock_put(cdt_mti, child, &crh->crh_lh, 1);
960
961                 list_del(&crh->crh_list);
962
963                 OBD_SLAB_FREE_PTR(crh, mdt_hsm_cdt_kmem);
964         }
965         mutex_unlock(&cdt->cdt_restore_lock);
966
967         mdt->mdt_opts.mo_coordinator = 0;
968
969         RETURN(0);
970 }
971
972 /**
973  * register all requests from an hal in the memory list
974  * \param mti [IN] context
975  * \param hal [IN] request
976  * \param uuid [OUT] in case of CANCEL, the uuid of the agent
977  *  which is running the CT
978  * \retval 0 success
979  * \retval -ve failure
980  */
981 int mdt_hsm_add_hal(struct mdt_thread_info *mti,
982                     struct hsm_action_list *hal, struct obd_uuid *uuid)
983 {
984         struct mdt_device       *mdt = mti->mti_mdt;
985         struct coordinator      *cdt = &mdt->mdt_coordinator;
986         struct hsm_action_item  *hai;
987         int                      rc = 0, i;
988         ENTRY;
989
990         /* register request in memory list */
991         hai = hai_first(hal);
992         for (i = 0; i < hal->hal_count; i++, hai = hai_next(hai)) {
993                 struct cdt_agent_req *car;
994
995                 /* in case of a cancel request, we first mark the ondisk
996                  * record of the request we want to stop as canceled
997                  * this does not change the cancel record
998                  * it will be done when updating the request status
999                  */
1000                 if (hai->hai_action == HSMA_CANCEL) {
1001                         rc = mdt_agent_record_update(mti->mti_env, mti->mti_mdt,
1002                                                      &hai->hai_cookie,
1003                                                      1, ARS_CANCELED);
1004                         if (rc) {
1005                                 CERROR("%s: mdt_agent_record_update() failed, "
1006                                        "rc=%d, cannot update status to %s "
1007                                        "for cookie %#llx\n",
1008                                        mdt_obd_name(mdt), rc,
1009                                        agent_req_status2name(ARS_CANCELED),
1010                                        hai->hai_cookie);
1011                                 GOTO(out, rc);
1012                         }
1013
1014                         /* find the running request to set it canceled */
1015                         car = mdt_cdt_find_request(cdt, hai->hai_cookie, NULL);
1016                         if (car != NULL) {
1017                                 car->car_canceled = 1;
1018                                 /* uuid has to be changed to the one running the
1019                                 * request to cancel */
1020                                 *uuid = car->car_uuid;
1021                                 mdt_cdt_put_request(car);
1022                         }
1023                         /* no need to memorize cancel request
1024                          * this also avoid a deadlock when we receive
1025                          * a purge all requests command
1026                          */
1027                         continue;
1028                 }
1029
1030                 if (hai->hai_action == HSMA_ARCHIVE) {
1031                         struct mdt_object *obj;
1032                         struct md_hsm hsm;
1033
1034                         obj = mdt_hsm_get_md_hsm(mti, &hai->hai_fid, &hsm);
1035                         if (IS_ERR(obj) && (PTR_ERR(obj) == -ENOENT))
1036                                 continue;
1037                         if (IS_ERR(obj))
1038                                 GOTO(out, rc = PTR_ERR(obj));
1039
1040                         hsm.mh_flags |= HS_EXISTS;
1041                         hsm.mh_arch_id = hal->hal_archive_id;
1042                         rc = mdt_hsm_attr_set(mti, obj, &hsm);
1043                         mdt_object_put(mti->mti_env, obj);
1044                         if (rc)
1045                                 GOTO(out, rc);
1046                 }
1047
1048                 car = mdt_cdt_alloc_request(hal->hal_compound_id,
1049                                             hal->hal_archive_id, hal->hal_flags,
1050                                             uuid, hai);
1051                 if (IS_ERR(car))
1052                         GOTO(out, rc = PTR_ERR(car));
1053
1054                 rc = mdt_cdt_add_request(cdt, car);
1055                 if (rc != 0)
1056                         mdt_cdt_free_request(car);
1057         }
1058 out:
1059         RETURN(rc);
1060 }
1061
1062 /**
1063  * swap layouts between 2 fids
1064  * \param mti [IN] context
1065  * \param obj [IN]
1066  * \param dfid [IN]
1067  * \param mh_common [IN] MD HSM
1068  */
1069 static int hsm_swap_layouts(struct mdt_thread_info *mti,
1070                             struct mdt_object *obj, const struct lu_fid *dfid,
1071                             struct md_hsm *mh_common)
1072 {
1073         struct mdt_object       *dobj;
1074         struct mdt_lock_handle  *dlh;
1075         int                      rc;
1076         ENTRY;
1077
1078         if (!mdt_object_exists(obj))
1079                 GOTO(out, rc = -ENOENT);
1080
1081         /* we already have layout lock on obj so take only
1082          * on dfid */
1083         dlh = &mti->mti_lh[MDT_LH_OLD];
1084         mdt_lock_reg_init(dlh, LCK_EX);
1085         dobj = mdt_object_find_lock(mti, dfid, dlh, MDS_INODELOCK_LAYOUT);
1086         if (IS_ERR(dobj))
1087                 GOTO(out, rc = PTR_ERR(dobj));
1088
1089         /* if copy tool closes the volatile before sending the final
1090          * progress through llapi_hsm_copy_end(), all the objects
1091          * are removed and mdd_swap_layout LBUG */
1092         if (!mdt_object_exists(dobj)) {
1093                 CERROR("%s: Copytool has closed volatile file "DFID"\n",
1094                        mdt_obd_name(mti->mti_mdt), PFID(dfid));
1095                 GOTO(out_dobj, rc = -ENOENT);
1096         }
1097         /* Since we only handle restores here, unconditionally use
1098          * SWAP_LAYOUTS_MDS_HSM flag to ensure original layout will
1099          * be preserved in case of failure during swap_layout and not
1100          * leave a file in an intermediate but incoherent state.
1101          * But need to setup HSM xattr of data FID before, reuse
1102          * mti and mh presets for FID in hsm_cdt_request_completed(),
1103          * only need to clear RELEASED and DIRTY.
1104          */
1105         mh_common->mh_flags &= ~(HS_RELEASED | HS_DIRTY);
1106         rc = mdt_hsm_attr_set(mti, dobj, mh_common);
1107         if (rc == 0)
1108                 rc = mo_swap_layouts(mti->mti_env,
1109                                      mdt_object_child(obj),
1110                                      mdt_object_child(dobj),
1111                                      SWAP_LAYOUTS_MDS_HSM);
1112
1113 out_dobj:
1114         mdt_object_unlock_put(mti, dobj, dlh, 1);
1115 out:
1116         RETURN(rc);
1117 }
1118
1119 /**
1120  * update status of a completed request
1121  * \param mti [IN] context
1122  * \param pgs [IN] progress of the copy tool
1123  * \param update_record [IN] update llog record
1124  * \retval 0 success
1125  * \retval -ve failure
1126  */
1127 static int hsm_cdt_request_completed(struct mdt_thread_info *mti,
1128                                      struct hsm_progress_kernel *pgs,
1129                                      const struct cdt_agent_req *car,
1130                                      enum agent_req_status *status)
1131 {
1132         const struct lu_env     *env = mti->mti_env;
1133         struct mdt_device       *mdt = mti->mti_mdt;
1134         struct coordinator      *cdt = &mdt->mdt_coordinator;
1135         struct mdt_object       *obj = NULL;
1136         int                      cl_flags = 0, rc = 0;
1137         struct md_hsm            mh;
1138         bool                     is_mh_changed;
1139         ENTRY;
1140
1141         /* default is to retry */
1142         *status = ARS_WAITING;
1143
1144         /* find object by FID
1145          * if error/removed continue anyway to get correct reporting done */
1146         obj = mdt_hsm_get_md_hsm(mti, &car->car_hai->hai_fid, &mh);
1147         /* we will update MD HSM only if needed */
1148         is_mh_changed = false;
1149
1150         /* no need to change mh->mh_arch_id
1151          * mdt_hsm_get_md_hsm() got it from disk and it is still valid
1152          */
1153         if (pgs->hpk_errval != 0) {
1154                 switch (pgs->hpk_errval) {
1155                 case ENOSYS:
1156                         /* the copy tool does not support cancel
1157                          * so the cancel request is failed
1158                          * As we cannot distinguish a cancel progress
1159                          * from another action progress (they have the
1160                          * same cookie), we suppose here the CT returns
1161                          * ENOSYS only if does not support cancel
1162                          */
1163                         /* this can also happen when cdt calls it to
1164                          * for a timed out request */
1165                         *status = ARS_FAILED;
1166                         /* to have a cancel event in changelog */
1167                         pgs->hpk_errval = ECANCELED;
1168                         break;
1169                 case ECANCELED:
1170                         /* the request record has already been set to
1171                          * ARS_CANCELED, this set the cancel request
1172                          * to ARS_SUCCEED */
1173                         *status = ARS_SUCCEED;
1174                         break;
1175                 default:
1176                         /* retry only if current policy or requested, and
1177                          * object is not on error/removed */
1178                         *status = (cdt->cdt_policy & CDT_NORETRY_ACTION ||
1179                                    !(pgs->hpk_flags & HP_FLAG_RETRY) ||
1180                                    IS_ERR(obj)) ? ARS_FAILED : ARS_WAITING;
1181                         break;
1182                 }
1183
1184                 if (pgs->hpk_errval > CLF_HSM_MAXERROR) {
1185                         CERROR("%s: Request %#llx on "DFID
1186                                " failed, error code %d too large\n",
1187                                mdt_obd_name(mdt),
1188                                pgs->hpk_cookie, PFID(&pgs->hpk_fid),
1189                                pgs->hpk_errval);
1190                         hsm_set_cl_error(&cl_flags,
1191                                          CLF_HSM_ERROVERFLOW);
1192                         rc = -EINVAL;
1193                 } else {
1194                         hsm_set_cl_error(&cl_flags, pgs->hpk_errval);
1195                 }
1196
1197                 switch (car->car_hai->hai_action) {
1198                 case HSMA_ARCHIVE:
1199                         hsm_set_cl_event(&cl_flags, HE_ARCHIVE);
1200                         break;
1201                 case HSMA_RESTORE:
1202                         hsm_set_cl_event(&cl_flags, HE_RESTORE);
1203                         break;
1204                 case HSMA_REMOVE:
1205                         hsm_set_cl_event(&cl_flags, HE_REMOVE);
1206                         break;
1207                 case HSMA_CANCEL:
1208                         hsm_set_cl_event(&cl_flags, HE_CANCEL);
1209                         CERROR("%s: Failed request %#llx on "DFID
1210                                " cannot be a CANCEL\n",
1211                                mdt_obd_name(mdt),
1212                                pgs->hpk_cookie,
1213                                PFID(&pgs->hpk_fid));
1214                         break;
1215                 default:
1216                         CERROR("%s: Failed request %#llx on "DFID
1217                                " %d is an unknown action\n",
1218                                mdt_obd_name(mdt),
1219                                pgs->hpk_cookie, PFID(&pgs->hpk_fid),
1220                                car->car_hai->hai_action);
1221                         rc = -EINVAL;
1222                         break;
1223                 }
1224         } else {
1225                 *status = ARS_SUCCEED;
1226                 switch (car->car_hai->hai_action) {
1227                 case HSMA_ARCHIVE:
1228                         hsm_set_cl_event(&cl_flags, HE_ARCHIVE);
1229                         /* set ARCHIVE keep EXIST and clear LOST and
1230                          * DIRTY */
1231                         mh.mh_arch_ver = pgs->hpk_data_version;
1232                         mh.mh_flags |= HS_ARCHIVED;
1233                         mh.mh_flags &= ~(HS_LOST|HS_DIRTY);
1234                         is_mh_changed = true;
1235                         break;
1236                 case HSMA_RESTORE:
1237                         hsm_set_cl_event(&cl_flags, HE_RESTORE);
1238
1239                         /* do not clear RELEASED and DIRTY here
1240                          * this will occur in hsm_swap_layouts()
1241                          */
1242
1243                         /* Restoring has changed the file version on
1244                          * disk. */
1245                         mh.mh_arch_ver = pgs->hpk_data_version;
1246                         is_mh_changed = true;
1247                         break;
1248                 case HSMA_REMOVE:
1249                         hsm_set_cl_event(&cl_flags, HE_REMOVE);
1250                         /* clear ARCHIVED EXISTS and LOST */
1251                         mh.mh_flags &= ~(HS_ARCHIVED | HS_EXISTS | HS_LOST);
1252                         is_mh_changed = true;
1253                         break;
1254                 case HSMA_CANCEL:
1255                         hsm_set_cl_event(&cl_flags, HE_CANCEL);
1256                         CERROR("%s: Successful request %#llx on "DFID" cannot be a CANCEL\n",
1257                                mdt_obd_name(mdt),
1258                                pgs->hpk_cookie,
1259                                PFID(&pgs->hpk_fid));
1260                         break;
1261                 default:
1262                         CERROR("%s: Successful request %#llx on "DFID" %d is an unknown action\n",
1263                                mdt_obd_name(mdt),
1264                                pgs->hpk_cookie, PFID(&pgs->hpk_fid),
1265                                car->car_hai->hai_action);
1266                         rc = -EINVAL;
1267                         break;
1268                 }
1269         }
1270
1271         /* rc != 0 means error when analysing action, it may come from
1272          * a crasy CT no need to manage DIRTY
1273          */
1274         if (rc == 0)
1275                 hsm_set_cl_flags(&cl_flags,
1276                                  mh.mh_flags & HS_DIRTY ? CLF_HSM_DIRTY : 0);
1277
1278         /* unlock is done later, after layout lock management */
1279         if (is_mh_changed && !IS_ERR(obj))
1280                 rc = mdt_hsm_attr_set(mti, obj, &mh);
1281
1282         /* we give back layout lock only if restore was successful or
1283          * if no retry will be attempted and if object is still alive,
1284          * in other cases we just unlock the object */
1285         if (car->car_hai->hai_action == HSMA_RESTORE) {
1286                 struct cdt_restore_handle       *crh;
1287
1288                 /* restore in data FID done, we swap the layouts
1289                  * only if restore is successful */
1290                 if (pgs->hpk_errval == 0 && !IS_ERR_OR_NULL(obj)) {
1291                         rc = hsm_swap_layouts(mti, obj, &car->car_hai->hai_dfid,
1292                                               &mh);
1293                         if (rc) {
1294                                 if (cdt->cdt_policy & CDT_NORETRY_ACTION)
1295                                         *status = ARS_FAILED;
1296                                 pgs->hpk_errval = -rc;
1297                         }
1298                 }
1299                 /* we have to retry, so keep layout lock */
1300                 if (*status == ARS_WAITING)
1301                         GOTO(out, rc);
1302
1303                 /* give back layout lock */
1304                 mutex_lock(&cdt->cdt_restore_lock);
1305                 crh = mdt_hsm_restore_hdl_find(cdt, &car->car_hai->hai_fid);
1306                 if (crh != NULL)
1307                         list_del(&crh->crh_list);
1308                 mutex_unlock(&cdt->cdt_restore_lock);
1309                 /* Just give back layout lock, we keep the reference
1310                  * which is given back later with the lock for HSM
1311                  * flags.
1312                  * XXX obj may be invalid so we do not pass it. */
1313                 if (crh != NULL)
1314                         mdt_object_unlock(mti, NULL, &crh->crh_lh, 1);
1315
1316                 if (crh != NULL)
1317                         OBD_SLAB_FREE_PTR(crh, mdt_hsm_cdt_kmem);
1318         }
1319
1320         GOTO(out, rc);
1321
1322 out:
1323         /* always add a ChangeLog record */
1324         mo_changelog(env, CL_HSM, cl_flags, mdt->mdt_child,
1325                      &car->car_hai->hai_fid);
1326
1327         if (!IS_ERR(obj))
1328                 mdt_object_put(mti->mti_env, obj);
1329
1330         RETURN(rc);
1331 }
1332
1333 /**
1334  * update status of a request
1335  * \param mti [IN] context
1336  * \param pgs [IN] progress of the copy tool
1337  * \param update_record [IN] update llog record
1338  * \retval 0 success
1339  * \retval -ve failure
1340  */
1341 int mdt_hsm_update_request_state(struct mdt_thread_info *mti,
1342                                  struct hsm_progress_kernel *pgs,
1343                                  const int update_record)
1344 {
1345         struct mdt_device       *mdt = mti->mti_mdt;
1346         struct coordinator      *cdt = &mdt->mdt_coordinator;
1347         struct cdt_agent_req    *car;
1348         int                      rc = 0;
1349         ENTRY;
1350
1351         /* no coordinator started, so we cannot serve requests */
1352         if (cdt->cdt_state == CDT_STOPPED)
1353                 RETURN(-EAGAIN);
1354
1355         /* first do sanity checks */
1356         car = mdt_cdt_update_request(cdt, pgs);
1357         if (IS_ERR(car)) {
1358                 CERROR("%s: Cannot find running request for cookie %#llx"
1359                        " on fid="DFID"\n",
1360                        mdt_obd_name(mdt),
1361                        pgs->hpk_cookie, PFID(&pgs->hpk_fid));
1362
1363                 RETURN(PTR_ERR(car));
1364         }
1365
1366         CDEBUG(D_HSM, "Progress received for fid="DFID" cookie=%#llx"
1367                       " action=%s flags=%d err=%d fid="DFID" dfid="DFID"\n",
1368                       PFID(&pgs->hpk_fid), pgs->hpk_cookie,
1369                       hsm_copytool_action2name(car->car_hai->hai_action),
1370                       pgs->hpk_flags, pgs->hpk_errval,
1371                       PFID(&car->car_hai->hai_fid),
1372                       PFID(&car->car_hai->hai_dfid));
1373
1374         /* progress is done on FID or data FID depending of the action and
1375          * of the copy progress */
1376         /* for restore progress is used to send back the data FID to cdt */
1377         if (car->car_hai->hai_action == HSMA_RESTORE &&
1378             lu_fid_eq(&car->car_hai->hai_fid, &car->car_hai->hai_dfid))
1379                 car->car_hai->hai_dfid = pgs->hpk_fid;
1380
1381         if ((car->car_hai->hai_action == HSMA_RESTORE ||
1382              car->car_hai->hai_action == HSMA_ARCHIVE) &&
1383             (!lu_fid_eq(&pgs->hpk_fid, &car->car_hai->hai_dfid) &&
1384              !lu_fid_eq(&pgs->hpk_fid, &car->car_hai->hai_fid))) {
1385                 CERROR("%s: Progress on "DFID" for cookie %#llx"
1386                        " does not match request FID "DFID" nor data FID "
1387                        DFID"\n",
1388                        mdt_obd_name(mdt),
1389                        PFID(&pgs->hpk_fid), pgs->hpk_cookie,
1390                        PFID(&car->car_hai->hai_fid),
1391                        PFID(&car->car_hai->hai_dfid));
1392                 GOTO(out, rc = -EINVAL);
1393         }
1394
1395         if (pgs->hpk_errval != 0 && !(pgs->hpk_flags & HP_FLAG_COMPLETED)) {
1396                 CERROR("%s: Progress on "DFID" for cookie %#llx action=%s"
1397                        " is not coherent (err=%d and not completed"
1398                        " (flags=%d))\n",
1399                        mdt_obd_name(mdt),
1400                        PFID(&pgs->hpk_fid), pgs->hpk_cookie,
1401                        hsm_copytool_action2name(car->car_hai->hai_action),
1402                        pgs->hpk_errval, pgs->hpk_flags);
1403                 GOTO(out, rc = -EINVAL);
1404         }
1405
1406         /* now progress is valid */
1407
1408         /* we use a root like ucred */
1409         hsm_init_ucred(mdt_ucred(mti));
1410
1411         if (pgs->hpk_flags & HP_FLAG_COMPLETED) {
1412                 enum agent_req_status    status;
1413
1414                 rc = hsm_cdt_request_completed(mti, pgs, car, &status);
1415
1416                 /* remove request from memory list */
1417                 mdt_cdt_remove_request(cdt, pgs->hpk_cookie);
1418
1419                 CDEBUG(D_HSM, "Updating record: fid="DFID" cookie=%#llx"
1420                               " action=%s status=%s\n", PFID(&pgs->hpk_fid),
1421                        pgs->hpk_cookie,
1422                        hsm_copytool_action2name(car->car_hai->hai_action),
1423                        agent_req_status2name(status));
1424
1425                 if (update_record) {
1426                         int rc1;
1427
1428                         rc1 = mdt_agent_record_update(mti->mti_env, mdt,
1429                                                      &pgs->hpk_cookie, 1,
1430                                                      status);
1431                         if (rc1)
1432                                 CERROR("%s: mdt_agent_record_update() failed,"
1433                                        " rc=%d, cannot update status to %s"
1434                                        " for cookie %#llx\n",
1435                                        mdt_obd_name(mdt), rc1,
1436                                        agent_req_status2name(status),
1437                                        pgs->hpk_cookie);
1438                         rc = (rc != 0 ? rc : rc1);
1439                 }
1440                 /* ct has completed a request, so a slot is available, wakeup
1441                  * cdt to find new work */
1442                 mdt_hsm_cdt_wakeup(mdt);
1443         } else {
1444                 /* if copytool send a progress on a canceled request
1445                  * we inform copytool it should stop
1446                  */
1447                 if (car->car_canceled == 1)
1448                         rc = -ECANCELED;
1449         }
1450         GOTO(out, rc);
1451
1452 out:
1453         /* remove ref got from mdt_cdt_update_request() */
1454         mdt_cdt_put_request(car);
1455
1456         return rc;
1457 }
1458
1459
1460 /**
1461  * data passed to llog_cat_process() callback
1462  * to cancel requests
1463  */
1464 struct hsm_cancel_all_data {
1465         struct mdt_device       *mdt;
1466 };
1467
1468 /**
1469  *  llog_cat_process() callback, used to:
1470  *  - purge all requests
1471  * \param env [IN] environment
1472  * \param llh [IN] llog handle
1473  * \param hdr [IN] llog record
1474  * \param data [IN] cb data = struct hsm_cancel_all_data
1475  * \retval 0 success
1476  * \retval -ve failure
1477  */
1478 static int mdt_cancel_all_cb(const struct lu_env *env,
1479                              struct llog_handle *llh,
1480                              struct llog_rec_hdr *hdr, void *data)
1481 {
1482         struct llog_agent_req_rec       *larr;
1483         struct hsm_cancel_all_data      *hcad;
1484         int                              rc = 0;
1485         ENTRY;
1486
1487         larr = (struct llog_agent_req_rec *)hdr;
1488         hcad = data;
1489         if (larr->arr_status == ARS_WAITING ||
1490             larr->arr_status == ARS_STARTED) {
1491                 larr->arr_status = ARS_CANCELED;
1492                 larr->arr_req_change = cfs_time_current_sec();
1493                 rc = llog_write(env, llh, hdr, hdr->lrh_index);
1494         }
1495
1496         RETURN(rc);
1497 }
1498
1499 /**
1500  * cancel all actions
1501  * \param obd [IN] MDT device
1502  */
1503 static int hsm_cancel_all_actions(struct mdt_device *mdt)
1504 {
1505         struct mdt_thread_info          *mti;
1506         struct coordinator              *cdt = &mdt->mdt_coordinator;
1507         struct cdt_agent_req            *car;
1508         struct hsm_action_list          *hal = NULL;
1509         struct hsm_action_item          *hai;
1510         struct hsm_cancel_all_data       hcad;
1511         int                              hal_sz = 0, hal_len, rc;
1512         enum cdt_states                  save_state;
1513         ENTRY;
1514
1515         /* retrieve coordinator context */
1516         mti = lu_context_key_get(&cdt->cdt_env.le_ctx, &mdt_thread_key);
1517
1518         /* disable coordinator */
1519         save_state = cdt->cdt_state;
1520         cdt->cdt_state = CDT_DISABLE;
1521
1522         /* send cancel to all running requests */
1523         down_read(&cdt->cdt_request_lock);
1524         list_for_each_entry(car, &cdt->cdt_requests, car_request_list) {
1525                 mdt_cdt_get_request(car);
1526                 /* request is not yet removed from list, it will be done
1527                  * when copytool will return progress
1528                  */
1529
1530                 if (car->car_hai->hai_action == HSMA_CANCEL) {
1531                         mdt_cdt_put_request(car);
1532                         continue;
1533                 }
1534
1535                 /* needed size */
1536                 hal_len = sizeof(*hal) + cfs_size_round(MTI_NAME_MAXLEN + 1) +
1537                           cfs_size_round(car->car_hai->hai_len);
1538
1539                 if (hal_len > hal_sz && hal_sz > 0) {
1540                         /* not enough room, free old buffer */
1541                         OBD_FREE(hal, hal_sz);
1542                         hal = NULL;
1543                 }
1544
1545                 /* empty buffer, allocate one */
1546                 if (hal == NULL) {
1547                         hal_sz = hal_len;
1548                         OBD_ALLOC(hal, hal_sz);
1549                         if (hal == NULL) {
1550                                 mdt_cdt_put_request(car);
1551                                 up_read(&cdt->cdt_request_lock);
1552                                 GOTO(out, rc = -ENOMEM);
1553                         }
1554                 }
1555
1556                 hal->hal_version = HAL_VERSION;
1557                 obd_uuid2fsname(hal->hal_fsname, mdt_obd_name(mdt),
1558                                 MTI_NAME_MAXLEN);
1559                 hal->hal_fsname[MTI_NAME_MAXLEN] = '\0';
1560                 hal->hal_compound_id = car->car_compound_id;
1561                 hal->hal_archive_id = car->car_archive_id;
1562                 hal->hal_flags = car->car_flags;
1563                 hal->hal_count = 0;
1564
1565                 hai = hai_first(hal);
1566                 memcpy(hai, car->car_hai, car->car_hai->hai_len);
1567                 hai->hai_action = HSMA_CANCEL;
1568                 hal->hal_count = 1;
1569
1570                 /* it is possible to safely call mdt_hsm_agent_send()
1571                  * (ie without a deadlock on cdt_request_lock), because the
1572                  * write lock is taken only if we are not in purge mode
1573                  * (mdt_hsm_agent_send() does not call mdt_cdt_add_request()
1574                  *   nor mdt_cdt_remove_request())
1575                  */
1576                 /* no conflict with cdt thread because cdt is disable and we
1577                  * have the request lock */
1578                 mdt_hsm_agent_send(mti, hal, 1);
1579
1580                 mdt_cdt_put_request(car);
1581         }
1582         up_read(&cdt->cdt_request_lock);
1583
1584         if (hal != NULL)
1585                 OBD_FREE(hal, hal_sz);
1586
1587         /* cancel all on-disk records */
1588         hcad.mdt = mdt;
1589
1590         rc = cdt_llog_process(mti->mti_env, mti->mti_mdt,
1591                               mdt_cancel_all_cb, &hcad);
1592 out:
1593         /* enable coordinator */
1594         cdt->cdt_state = save_state;
1595
1596         RETURN(rc);
1597 }
1598
1599 /**
1600  * check if a request is compatible with file status
1601  * \param hai [IN] request description
1602  * \param hal_an [IN] request archive number (not used)
1603  * \param rq_flags [IN] request flags
1604  * \param hsm [IN] file HSM metadata
1605  * \retval boolean
1606  */
1607 bool mdt_hsm_is_action_compat(const struct hsm_action_item *hai,
1608                               const int hal_an, const __u64 rq_flags,
1609                               const struct md_hsm *hsm)
1610 {
1611         int      is_compat = false;
1612         int      hsm_flags;
1613         ENTRY;
1614
1615         hsm_flags = hsm->mh_flags;
1616         switch (hai->hai_action) {
1617         case HSMA_ARCHIVE:
1618                 if (!(hsm_flags & HS_NOARCHIVE) &&
1619                     (hsm_flags & HS_DIRTY || !(hsm_flags & HS_ARCHIVED)))
1620                         is_compat = true;
1621                 break;
1622         case HSMA_RESTORE:
1623                 if (!(hsm_flags & HS_DIRTY) && (hsm_flags & HS_RELEASED) &&
1624                     hsm_flags & HS_ARCHIVED && !(hsm_flags & HS_LOST))
1625                         is_compat = true;
1626                 break;
1627         case HSMA_REMOVE:
1628                 if (!(hsm_flags & HS_RELEASED) &&
1629                     (hsm_flags & (HS_ARCHIVED | HS_EXISTS)))
1630                         is_compat = true;
1631                 break;
1632         case HSMA_CANCEL:
1633                 is_compat = true;
1634                 break;
1635         }
1636         CDEBUG(D_HSM, "fid="DFID" action=%s flags=%#llx"
1637                       " extent=%#llx-%#llx hsm_flags=%.8X %s\n",
1638                       PFID(&hai->hai_fid),
1639                       hsm_copytool_action2name(hai->hai_action), rq_flags,
1640                       hai->hai_extent.offset, hai->hai_extent.length,
1641                       hsm->mh_flags,
1642                       (is_compat ? "compatible" : "uncompatible"));
1643
1644         RETURN(is_compat);
1645 }
1646
1647 /*
1648  * /proc interface used to get/set HSM behaviour (cdt->cdt_policy)
1649  */
1650 static const struct {
1651         __u64            bit;
1652         char            *name;
1653         char            *nickname;
1654 } hsm_policy_names[] = {
1655         { CDT_NONBLOCKING_RESTORE,      "NonBlockingRestore",   "NBR"},
1656         { CDT_NORETRY_ACTION,           "NoRetryAction",        "NRA"},
1657         { 0 },
1658 };
1659
1660 /**
1661  * convert a policy name to a bit
1662  * \param name [IN] policy name
1663  * \retval 0 unknown
1664  * \retval   policy bit
1665  */
1666 static __u64 hsm_policy_str2bit(const char *name)
1667 {
1668         int      i;
1669
1670         for (i = 0; hsm_policy_names[i].bit != 0; i++)
1671                 if (strcmp(hsm_policy_names[i].nickname, name) == 0 ||
1672                     strcmp(hsm_policy_names[i].name, name) == 0)
1673                         return hsm_policy_names[i].bit;
1674         return 0;
1675 }
1676
1677 /**
1678  * convert a policy bit field to a string
1679  * \param mask [IN] policy bit field
1680  * \param hexa [IN] print mask before bit names
1681  * \param buffer [OUT] string
1682  * \param count [IN] size of buffer
1683  */
1684 static void hsm_policy_bit2str(struct seq_file *m, const __u64 mask,
1685                                 const bool hexa)
1686 {
1687         int      i, j;
1688         __u64    bit;
1689         ENTRY;
1690
1691         if (hexa)
1692                 seq_printf(m, "(%#llx) ", mask);
1693
1694         for (i = 0; i < CDT_POLICY_SHIFT_COUNT; i++) {
1695                 bit = (1ULL << i);
1696
1697                 for (j = 0; hsm_policy_names[j].bit != 0; j++) {
1698                         if (hsm_policy_names[j].bit == bit)
1699                                 break;
1700                 }
1701                 if (bit & mask)
1702                         seq_printf(m, "[%s] ", hsm_policy_names[j].name);
1703                 else
1704                         seq_printf(m, "%s ", hsm_policy_names[j].name);
1705         }
1706         /* remove last ' ' */
1707         m->count--;
1708         seq_putc(m, '\0');
1709 }
1710
1711 /* methods to read/write HSM policy flags */
1712 static int mdt_hsm_policy_seq_show(struct seq_file *m, void *data)
1713 {
1714         struct mdt_device       *mdt = m->private;
1715         struct coordinator      *cdt = &mdt->mdt_coordinator;
1716         ENTRY;
1717
1718         hsm_policy_bit2str(m, cdt->cdt_policy, false);
1719         RETURN(0);
1720 }
1721
1722 static ssize_t
1723 mdt_hsm_policy_seq_write(struct file *file, const char __user *buffer,
1724                          size_t count, loff_t *off)
1725 {
1726         struct seq_file         *m = file->private_data;
1727         struct mdt_device       *mdt = m->private;
1728         struct coordinator      *cdt = &mdt->mdt_coordinator;
1729         char                    *start, *token, sign;
1730         char                    *buf;
1731         __u64                    policy;
1732         __u64                    add_mask, remove_mask, set_mask;
1733         int                      rc;
1734         ENTRY;
1735
1736         if (count + 1 > PAGE_SIZE)
1737                 RETURN(-EINVAL);
1738
1739         OBD_ALLOC(buf, count + 1);
1740         if (buf == NULL)
1741                 RETURN(-ENOMEM);
1742
1743         if (copy_from_user(buf, buffer, count))
1744                 GOTO(out, rc = -EFAULT);
1745
1746         buf[count] = '\0';
1747
1748         start = buf;
1749         CDEBUG(D_HSM, "%s: receive new policy: '%s'\n", mdt_obd_name(mdt),
1750                start);
1751
1752         add_mask = remove_mask = set_mask = 0;
1753         do {
1754                 token = strsep(&start, "\n ");
1755                 sign = *token;
1756
1757                 if (sign == '\0')
1758                         continue;
1759
1760                 if (sign == '-' || sign == '+')
1761                         token++;
1762
1763                 policy = hsm_policy_str2bit(token);
1764                 if (policy == 0) {
1765                         CWARN("%s: '%s' is unknown, "
1766                               "supported policies are:\n", mdt_obd_name(mdt),
1767                               token);
1768                         hsm_policy_bit2str(m, 0, false);
1769                         GOTO(out, rc = -EINVAL);
1770                 }
1771                 switch (sign) {
1772                 case '-':
1773                         remove_mask |= policy;
1774                         break;
1775                 case '+':
1776                         add_mask |= policy;
1777                         break;
1778                 default:
1779                         set_mask |= policy;
1780                         break;
1781                 }
1782
1783         } while (start != NULL);
1784
1785         CDEBUG(D_HSM, "%s: new policy: rm=%#llx add=%#llx set=%#llx\n",
1786                mdt_obd_name(mdt), remove_mask, add_mask, set_mask);
1787
1788         /* if no sign in all string, it is a clear and set
1789          * if some sign found, all unsigned are converted
1790          * to add
1791          * P1 P2 = set to P1 and P2
1792          * P1 -P2 = add P1 clear P2 same as +P1 -P2
1793          */
1794         if (remove_mask == 0 && add_mask == 0) {
1795                 cdt->cdt_policy = set_mask;
1796         } else {
1797                 cdt->cdt_policy |= set_mask | add_mask;
1798                 cdt->cdt_policy &= ~remove_mask;
1799         }
1800
1801         GOTO(out, rc = count);
1802
1803 out:
1804         OBD_FREE(buf, count + 1);
1805         RETURN(rc);
1806 }
1807 LPROC_SEQ_FOPS(mdt_hsm_policy);
1808
1809 #define GENERATE_PROC_METHOD(VAR)                                       \
1810 static int mdt_hsm_##VAR##_seq_show(struct seq_file *m, void *data)     \
1811 {                                                                       \
1812         struct mdt_device       *mdt = m->private;                      \
1813         struct coordinator      *cdt = &mdt->mdt_coordinator;           \
1814         ENTRY;                                                          \
1815                                                                         \
1816         seq_printf(m, "%llu\n", (__u64)cdt->VAR);                       \
1817         RETURN(0);                                                      \
1818 }                                                                       \
1819 static ssize_t                                                          \
1820 mdt_hsm_##VAR##_seq_write(struct file *file, const char __user *buffer, \
1821                           size_t count, loff_t *off)                    \
1822                                                                         \
1823 {                                                                       \
1824         struct seq_file         *m = file->private_data;                \
1825         struct mdt_device       *mdt = m->private;                      \
1826         struct coordinator      *cdt = &mdt->mdt_coordinator;           \
1827         __s64                    val;                                   \
1828         int                      rc;                                    \
1829         ENTRY;                                                          \
1830                                                                         \
1831         rc = lprocfs_str_to_s64(buffer, count, &val);                   \
1832         if (rc)                                                         \
1833                 RETURN(rc);                                             \
1834         if (val > 0 && val < INT_MAX) {                                 \
1835                 cdt->VAR = val;                                         \
1836                 RETURN(count);                                          \
1837         }                                                               \
1838         RETURN(-EINVAL);                                                \
1839 }                                                                       \
1840
1841 GENERATE_PROC_METHOD(cdt_loop_period)
1842 GENERATE_PROC_METHOD(cdt_grace_delay)
1843 GENERATE_PROC_METHOD(cdt_active_req_timeout)
1844 GENERATE_PROC_METHOD(cdt_max_requests)
1845 GENERATE_PROC_METHOD(cdt_default_archive_id)
1846
1847 /*
1848  * procfs write method for MDT/hsm_control
1849  * proc entry is in mdt directory so data is mdt obd_device pointer
1850  */
1851 #define CDT_ENABLE_CMD   "enabled"
1852 #define CDT_STOP_CMD     "shutdown"
1853 #define CDT_DISABLE_CMD  "disabled"
1854 #define CDT_PURGE_CMD    "purge"
1855 #define CDT_HELP_CMD     "help"
1856 #define CDT_MAX_CMD_LEN  10
1857
1858 ssize_t
1859 mdt_hsm_cdt_control_seq_write(struct file *file, const char __user *buffer,
1860                               size_t count, loff_t *off)
1861 {
1862         struct seq_file         *m = file->private_data;
1863         struct obd_device       *obd = m->private;
1864         struct mdt_device       *mdt = mdt_dev(obd->obd_lu_dev);
1865         struct coordinator      *cdt = &(mdt->mdt_coordinator);
1866         int                      rc, usage = 0;
1867         char                     kernbuf[CDT_MAX_CMD_LEN];
1868         ENTRY;
1869
1870         if (count == 0 || count >= sizeof(kernbuf))
1871                 RETURN(-EINVAL);
1872
1873         if (copy_from_user(kernbuf, buffer, count))
1874                 RETURN(-EFAULT);
1875         kernbuf[count] = 0;
1876
1877         if (kernbuf[count - 1] == '\n')
1878                 kernbuf[count - 1] = 0;
1879
1880         rc = 0;
1881         if (strcmp(kernbuf, CDT_ENABLE_CMD) == 0) {
1882                 if (cdt->cdt_state == CDT_DISABLE) {
1883                         cdt->cdt_state = CDT_RUNNING;
1884                         mdt_hsm_cdt_wakeup(mdt);
1885                 } else {
1886                         rc = mdt_hsm_cdt_start(mdt);
1887                 }
1888         } else if (strcmp(kernbuf, CDT_STOP_CMD) == 0) {
1889                 if ((cdt->cdt_state == CDT_STOPPING) ||
1890                     (cdt->cdt_state == CDT_STOPPED)) {
1891                         CERROR("%s: Coordinator already stopped\n",
1892                                mdt_obd_name(mdt));
1893                         rc = -EALREADY;
1894                 } else {
1895                         cdt->cdt_state = CDT_STOPPING;
1896                 }
1897         } else if (strcmp(kernbuf, CDT_DISABLE_CMD) == 0) {
1898                 if ((cdt->cdt_state == CDT_STOPPING) ||
1899                     (cdt->cdt_state == CDT_STOPPED)) {
1900                         CERROR("%s: Coordinator is stopped\n",
1901                                mdt_obd_name(mdt));
1902                         rc = -EINVAL;
1903                 } else {
1904                         cdt->cdt_state = CDT_DISABLE;
1905                 }
1906         } else if (strcmp(kernbuf, CDT_PURGE_CMD) == 0) {
1907                 rc = hsm_cancel_all_actions(mdt);
1908         } else if (strcmp(kernbuf, CDT_HELP_CMD) == 0) {
1909                 usage = 1;
1910         } else {
1911                 usage = 1;
1912                 rc = -EINVAL;
1913         }
1914
1915         if (usage == 1)
1916                 CERROR("%s: Valid coordinator control commands are: "
1917                        "%s %s %s %s %s\n", mdt_obd_name(mdt),
1918                        CDT_ENABLE_CMD, CDT_STOP_CMD, CDT_DISABLE_CMD,
1919                        CDT_PURGE_CMD, CDT_HELP_CMD);
1920
1921         if (rc)
1922                 RETURN(rc);
1923
1924         RETURN(count);
1925 }
1926
1927 int mdt_hsm_cdt_control_seq_show(struct seq_file *m, void *data)
1928 {
1929         struct obd_device       *obd = m->private;
1930         struct coordinator      *cdt;
1931         ENTRY;
1932
1933         cdt = &(mdt_dev(obd->obd_lu_dev)->mdt_coordinator);
1934
1935         if (cdt->cdt_state == CDT_INIT)
1936                 seq_printf(m, "init\n");
1937         else if (cdt->cdt_state == CDT_RUNNING)
1938                 seq_printf(m, "enabled\n");
1939         else if (cdt->cdt_state == CDT_STOPPING)
1940                 seq_printf(m, "stopping\n");
1941         else if (cdt->cdt_state == CDT_STOPPED)
1942                 seq_printf(m, "stopped\n");
1943         else if (cdt->cdt_state == CDT_DISABLE)
1944                 seq_printf(m, "disabled\n");
1945         else
1946                 seq_printf(m, "unknown\n");
1947
1948         RETURN(0);
1949 }
1950
1951 static int
1952 mdt_hsm_request_mask_show(struct seq_file *m, __u64 mask)
1953 {
1954         bool first = true;
1955         int i;
1956         ENTRY;
1957
1958         for (i = 0; i < 8 * sizeof(mask); i++) {
1959                 if (mask & (1UL << i)) {
1960                         seq_printf(m, "%s%s", first ? "" : " ",
1961                                    hsm_copytool_action2name(i));
1962                         first = false;
1963                 }
1964         }
1965         seq_putc(m, '\n');
1966
1967         RETURN(0);
1968 }
1969
1970 static int
1971 mdt_hsm_user_request_mask_seq_show(struct seq_file *m, void *data)
1972 {
1973         struct mdt_device *mdt = m->private;
1974         struct coordinator *cdt = &mdt->mdt_coordinator;
1975
1976         return mdt_hsm_request_mask_show(m, cdt->cdt_user_request_mask);
1977 }
1978
1979 static int
1980 mdt_hsm_group_request_mask_seq_show(struct seq_file *m, void *data)
1981 {
1982         struct mdt_device *mdt = m->private;
1983         struct coordinator *cdt = &mdt->mdt_coordinator;
1984
1985         return mdt_hsm_request_mask_show(m, cdt->cdt_group_request_mask);
1986 }
1987
1988 static int
1989 mdt_hsm_other_request_mask_seq_show(struct seq_file *m, void *data)
1990 {
1991         struct mdt_device *mdt = m->private;
1992         struct coordinator *cdt = &mdt->mdt_coordinator;
1993
1994         return mdt_hsm_request_mask_show(m, cdt->cdt_other_request_mask);
1995 }
1996
1997 static inline enum hsm_copytool_action
1998 hsm_copytool_name2action(const char *name)
1999 {
2000         if (strcasecmp(name, "NOOP") == 0)
2001                 return HSMA_NONE;
2002         else if (strcasecmp(name, "ARCHIVE") == 0)
2003                 return HSMA_ARCHIVE;
2004         else if (strcasecmp(name, "RESTORE") == 0)
2005                 return HSMA_RESTORE;
2006         else if (strcasecmp(name, "REMOVE") == 0)
2007                 return HSMA_REMOVE;
2008         else if (strcasecmp(name, "CANCEL") == 0)
2009                 return HSMA_CANCEL;
2010         else
2011                 return -1;
2012 }
2013
2014 static ssize_t
2015 mdt_write_hsm_request_mask(struct file *file, const char __user *user_buf,
2016                             size_t user_count, __u64 *mask)
2017 {
2018         char *buf, *pos, *name;
2019         size_t buf_size;
2020         __u64 new_mask = 0;
2021         int rc;
2022         ENTRY;
2023
2024         if (!(user_count < 4096))
2025                 RETURN(-ENOMEM);
2026
2027         buf_size = user_count + 1;
2028
2029         OBD_ALLOC(buf, buf_size);
2030         if (buf == NULL)
2031                 RETURN(-ENOMEM);
2032
2033         if (copy_from_user(buf, user_buf, buf_size - 1))
2034                 GOTO(out, rc = -EFAULT);
2035
2036         buf[buf_size - 1] = '\0';
2037
2038         pos = buf;
2039         while ((name = strsep(&pos, " \t\v\n")) != NULL) {
2040                 int action;
2041
2042                 if (*name == '\0')
2043                         continue;
2044
2045                 action = hsm_copytool_name2action(name);
2046                 if (action < 0)
2047                         GOTO(out, rc = -EINVAL);
2048
2049                 new_mask |= (1UL << action);
2050         }
2051
2052         *mask = new_mask;
2053         rc = user_count;
2054 out:
2055         OBD_FREE(buf, buf_size);
2056
2057         RETURN(rc);
2058 }
2059
2060 static ssize_t
2061 mdt_hsm_user_request_mask_seq_write(struct file *file, const char __user *buf,
2062                                         size_t count, loff_t *off)
2063 {
2064         struct seq_file         *m = file->private_data;
2065         struct mdt_device       *mdt = m->private;
2066         struct coordinator *cdt = &mdt->mdt_coordinator;
2067
2068         return mdt_write_hsm_request_mask(file, buf, count,
2069                                            &cdt->cdt_user_request_mask);
2070 }
2071
2072 static ssize_t
2073 mdt_hsm_group_request_mask_seq_write(struct file *file, const char __user *buf,
2074                                         size_t count, loff_t *off)
2075 {
2076         struct seq_file         *m = file->private_data;
2077         struct mdt_device       *mdt = m->private;
2078         struct coordinator      *cdt = &mdt->mdt_coordinator;
2079
2080         return mdt_write_hsm_request_mask(file, buf, count,
2081                                            &cdt->cdt_group_request_mask);
2082 }
2083
2084 static ssize_t
2085 mdt_hsm_other_request_mask_seq_write(struct file *file, const char __user *buf,
2086                                         size_t count, loff_t *off)
2087 {
2088         struct seq_file         *m = file->private_data;
2089         struct mdt_device       *mdt = m->private;
2090         struct coordinator      *cdt = &mdt->mdt_coordinator;
2091
2092         return mdt_write_hsm_request_mask(file, buf, count,
2093                                            &cdt->cdt_other_request_mask);
2094 }
2095
2096 LPROC_SEQ_FOPS(mdt_hsm_cdt_loop_period);
2097 LPROC_SEQ_FOPS(mdt_hsm_cdt_grace_delay);
2098 LPROC_SEQ_FOPS(mdt_hsm_cdt_active_req_timeout);
2099 LPROC_SEQ_FOPS(mdt_hsm_cdt_max_requests);
2100 LPROC_SEQ_FOPS(mdt_hsm_cdt_default_archive_id);
2101 LPROC_SEQ_FOPS(mdt_hsm_user_request_mask);
2102 LPROC_SEQ_FOPS(mdt_hsm_group_request_mask);
2103 LPROC_SEQ_FOPS(mdt_hsm_other_request_mask);
2104
2105 static struct lprocfs_vars lprocfs_mdt_hsm_vars[] = {
2106         { .name =       "agents",
2107           .fops =       &mdt_hsm_agent_fops                     },
2108         { .name =       "actions",
2109           .fops =       &mdt_hsm_actions_fops,
2110           .proc_mode =  0444                                    },
2111         { .name =       "default_archive_id",
2112           .fops =       &mdt_hsm_cdt_default_archive_id_fops    },
2113         { .name =       "grace_delay",
2114           .fops =       &mdt_hsm_cdt_grace_delay_fops           },
2115         { .name =       "loop_period",
2116           .fops =       &mdt_hsm_cdt_loop_period_fops           },
2117         { .name =       "max_requests",
2118           .fops =       &mdt_hsm_cdt_max_requests_fops          },
2119         { .name =       "policy",
2120           .fops =       &mdt_hsm_policy_fops                    },
2121         { .name =       "active_request_timeout",
2122           .fops =       &mdt_hsm_cdt_active_req_timeout_fops    },
2123         { .name =       "active_requests",
2124           .fops =       &mdt_hsm_active_requests_fops           },
2125         { .name =       "user_request_mask",
2126           .fops =       &mdt_hsm_user_request_mask_fops,        },
2127         { .name =       "group_request_mask",
2128           .fops =       &mdt_hsm_group_request_mask_fops,       },
2129         { .name =       "other_request_mask",
2130           .fops =       &mdt_hsm_other_request_mask_fops,       },
2131         { 0 }
2132 };