Whamcloud - gitweb
LU-9019 mdt: migrate to 64 bit time
[fs/lustre-release.git] / lustre / mdt / mdt_hsm_cdt_requests.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  *     alternatives
25  *
26  * Copyright (c) 2014, Intel Corporation.
27  */
28 /*
29  * lustre/mdt/mdt_hsm_cdt_requests.c
30  *
31  * Lustre HSM Coordinator
32  *
33  * Author: Jacques-Charles Lafoucriere <jacques-charles.lafoucriere@cea.fr>
34  * Author: Aurelien Degremont <aurelien.degremont@cea.fr>
35  */
36
37 #define DEBUG_SUBSYSTEM S_MDS
38
39 #include <libcfs/libcfs.h>
40 #include <libcfs/libcfs_hash.h>
41 #include <obd_support.h>
42 #include <lprocfs_status.h>
43 #include "mdt_internal.h"
44
45 static unsigned int
46 cdt_request_cookie_hash(struct cfs_hash *hs, const void *key, unsigned int mask)
47 {
48         return cfs_hash_djb2_hash(key, sizeof(u64), mask);
49 }
50
51 static void *cdt_request_cookie_object(struct hlist_node *hnode)
52 {
53         return hlist_entry(hnode, struct cdt_agent_req, car_cookie_hash);
54 }
55
56 static void *cdt_request_cookie_key(struct hlist_node *hnode)
57 {
58         struct cdt_agent_req *car = cdt_request_cookie_object(hnode);
59
60         return &car->car_hai->hai_cookie;
61 }
62
63 static int cdt_request_cookie_keycmp(const void *key, struct hlist_node *hnode)
64 {
65         const u64 *cookie2 = cdt_request_cookie_key(hnode);
66
67         return *(u64 *)key == *cookie2;
68 }
69
70 static void
71 cdt_request_cookie_get(struct cfs_hash *hs, struct hlist_node *hnode)
72 {
73         struct cdt_agent_req *car = cdt_request_cookie_object(hnode);
74
75         mdt_cdt_get_request(car);
76 }
77
78 static void
79 cdt_request_cookie_put(struct cfs_hash *hs, struct hlist_node *hnode)
80 {
81         struct cdt_agent_req *car = cdt_request_cookie_object(hnode);
82
83         mdt_cdt_put_request(car);
84 }
85
86 struct cfs_hash_ops cdt_request_cookie_hash_ops = {
87         .hs_hash        = cdt_request_cookie_hash,
88         .hs_key         = cdt_request_cookie_key,
89         .hs_keycmp      = cdt_request_cookie_keycmp,
90         .hs_object      = cdt_request_cookie_object,
91         .hs_get         = cdt_request_cookie_get,
92         .hs_put_locked  = cdt_request_cookie_put,
93 };
94
95 /**
96  * dump requests list
97  * \param cdt [IN] coordinator
98  */
99 void dump_requests(char *prefix, struct coordinator *cdt)
100 {
101         struct cdt_agent_req    *car;
102
103         down_read(&cdt->cdt_request_lock);
104         list_for_each_entry(car, &cdt->cdt_request_list, car_request_list) {
105                 CDEBUG(D_HSM, "%s fid="DFID" dfid="DFID
106                        " compound/cookie=%#llx/%#llx"
107                        " action=%s archive#=%d flags=%#llx"
108                        " extent=%#llx-%#llx"
109                        " gid=%#llx refcount=%d canceled=%d\n",
110                        prefix, PFID(&car->car_hai->hai_fid),
111                        PFID(&car->car_hai->hai_dfid),
112                        car->car_compound_id, car->car_hai->hai_cookie,
113                        hsm_copytool_action2name(car->car_hai->hai_action),
114                        car->car_archive_id, car->car_flags,
115                        car->car_hai->hai_extent.offset,
116                        car->car_hai->hai_extent.length,
117                        car->car_hai->hai_gid,
118                        atomic_read(&car->car_refcount),
119                        car->car_canceled);
120         }
121         up_read(&cdt->cdt_request_lock);
122 }
123
124 struct req_interval_data {
125         struct cdt_req_progress *crp;
126         __u64                    done_sz;
127 };
128
129 /**
130  * interval tree cb, used to go through all the tree of extent done
131  */
132 static enum interval_iter req_interval_cb(struct interval_node *node,
133                                           void *args)
134 {
135         struct req_interval_data        *data;
136         ENTRY;
137
138         data = args;
139         data->done_sz += node->in_extent.end - node->in_extent.start;
140         RETURN(INTERVAL_ITER_CONT);
141 }
142
143 /**
144  * scan the interval tree associated to a request
145  * to compute the amount of work done
146  * \param car [IN] request
147  * \param done_sz [OUT] will be set to the size of work done
148  */
149 void mdt_cdt_get_work_done(struct cdt_agent_req *car, __u64 *done_sz)
150 {
151         struct req_interval_data         rid;
152         struct cdt_req_progress         *crp = &car->car_progress;
153
154         mutex_lock(&crp->crp_lock);
155
156         rid.crp = crp;
157         rid.done_sz = 0;
158         interval_iterate(crp->crp_root, req_interval_cb, &rid);
159         *done_sz = rid.done_sz;
160
161         mutex_unlock(&crp->crp_lock);
162 }
163
164 #define NODE_VECTOR_SZ 256
165 /**
166  * free the interval tree associated to a request
167  */
168 static void mdt_cdt_free_request_tree(struct cdt_req_progress *crp)
169 {
170         struct interval_node    *node, *vn;
171         int                      i;
172         ENTRY;
173
174         mutex_lock(&crp->crp_lock);
175
176         if (crp->crp_max == 0)
177                 goto out;
178
179         /* remove all nodes from tree */
180         for (i = 0 ; i < crp->crp_cnt ; i++) {
181                 vn = crp->crp_node[i / NODE_VECTOR_SZ];
182                 node = &vn[i % NODE_VECTOR_SZ];
183                 interval_erase(node, &crp->crp_root);
184         }
185         /* free all sub vectors */
186         for (i = 0 ; i <= crp->crp_max / NODE_VECTOR_SZ ; i++)
187                 OBD_FREE(crp->crp_node[i],
188                          NODE_VECTOR_SZ * sizeof(crp->crp_node[i][0]));
189
190         /* free main vector */
191         OBD_FREE(crp->crp_node,
192                  sizeof(crp->crp_node[0]) *
193                   (crp->crp_max / NODE_VECTOR_SZ + 1));
194
195         crp->crp_cnt = 0;
196         crp->crp_max = 0;
197 out:
198         mutex_unlock(&crp->crp_lock);
199         EXIT;
200 }
201
202 /**
203  * update data moved information during a request
204  */
205 static int hsm_update_work(struct cdt_req_progress *crp,
206                            const struct hsm_extent *extent)
207 {
208         int                       rc, osz, nsz;
209         struct interval_node    **new_vv;
210         struct interval_node     *v, *node;
211         __u64                     end;
212         ENTRY;
213
214         end = extent->offset + extent->length;
215         if (end <= extent->offset)
216                 RETURN(-EINVAL);
217
218         mutex_lock(&crp->crp_lock);
219         /* new node index */
220
221         if (crp->crp_cnt >= crp->crp_max) {
222                 /* no more room */
223                 /* allocate a new vector */
224                 OBD_ALLOC(v, NODE_VECTOR_SZ * sizeof(v[0]));
225                 if (v == NULL)
226                         GOTO(out, rc = -ENOMEM);
227
228                 if (crp->crp_max == 0)
229                         osz = 0;
230                 else
231                         osz = sizeof(new_vv[0]) *
232                               (crp->crp_max / NODE_VECTOR_SZ + 1);
233
234                 nsz = osz + sizeof(new_vv[0]);
235                 /* increase main vector size */
236                 OBD_ALLOC(new_vv, nsz);
237                 if (new_vv == NULL) {
238                         OBD_FREE(v, NODE_VECTOR_SZ * sizeof(v[0]));
239                         GOTO(out, rc = -ENOMEM);
240                 }
241
242                 if (osz == 0) {
243                         crp->crp_max = NODE_VECTOR_SZ - 1;
244                 } else {
245                         memcpy(new_vv, crp->crp_node, osz);
246                         OBD_FREE(crp->crp_node, osz);
247                         crp->crp_max += NODE_VECTOR_SZ;
248                 }
249
250                 crp->crp_node = new_vv;
251                 crp->crp_node[crp->crp_max / NODE_VECTOR_SZ] = v;
252         }
253
254         v = crp->crp_node[crp->crp_cnt / NODE_VECTOR_SZ];
255         node = &v[crp->crp_cnt % NODE_VECTOR_SZ];
256         rc = interval_set(node, extent->offset, end);
257         if (rc)
258                 GOTO(out, rc);
259         /* try to insert, if entry already exist ignore the new one
260          * it can happen if ct sends 2 times the same progress */
261         if (interval_insert(node, &crp->crp_root) == NULL)
262                 crp->crp_cnt++;
263
264         rc = 0;
265 out:
266         mutex_unlock(&crp->crp_lock);
267         RETURN(rc);
268 }
269
270 /**
271  * init the interval tree associated to a request
272  */
273 static void mdt_cdt_init_request_tree(struct cdt_req_progress *crp)
274 {
275         mutex_init(&crp->crp_lock);
276         crp->crp_root = NULL;
277         crp->crp_cnt = 0;
278         crp->crp_max = 0;
279 }
280
281 /** Allocate/init an agent request and its sub-structures.
282  *
283  * \param compound_id [IN]
284  * \param archive_id [IN]
285  * \param flags [IN]
286  * \param uuid [IN]
287  * \param hai [IN]
288  * \retval car [OUT] success valid structure
289  * \retval car [OUT]
290  */
291 struct cdt_agent_req *mdt_cdt_alloc_request(__u64 compound_id, __u32 archive_id,
292                                             __u64 flags, struct obd_uuid *uuid,
293                                             struct hsm_action_item *hai)
294 {
295         struct cdt_agent_req *car;
296         ENTRY;
297
298         OBD_SLAB_ALLOC_PTR(car, mdt_hsm_car_kmem);
299         if (car == NULL)
300                 RETURN(ERR_PTR(-ENOMEM));
301
302         atomic_set(&car->car_refcount, 1);
303         car->car_compound_id = compound_id;
304         car->car_archive_id = archive_id;
305         car->car_flags = flags;
306         car->car_canceled = 0;
307         car->car_req_start = ktime_get_real_seconds();
308         car->car_req_update = car->car_req_start;
309         car->car_uuid = *uuid;
310         OBD_ALLOC(car->car_hai, hai->hai_len);
311         if (car->car_hai == NULL) {
312                 OBD_SLAB_FREE_PTR(car, mdt_hsm_car_kmem);
313                 RETURN(ERR_PTR(-ENOMEM));
314         }
315         memcpy(car->car_hai, hai, hai->hai_len);
316         mdt_cdt_init_request_tree(&car->car_progress);
317
318         RETURN(car);
319 }
320
321 /**
322  * Free an agent request and its sub-structures.
323  *
324  * \param car [IN]  Request to be freed.
325  */
326 void mdt_cdt_free_request(struct cdt_agent_req *car)
327 {
328         mdt_cdt_free_request_tree(&car->car_progress);
329         OBD_FREE(car->car_hai, car->car_hai->hai_len);
330         OBD_SLAB_FREE_PTR(car, mdt_hsm_car_kmem);
331 }
332
333 /**
334  * inc refcount of a request
335  * \param car [IN] request
336  */
337 void mdt_cdt_get_request(struct cdt_agent_req *car)
338 {
339         atomic_inc(&car->car_refcount);
340 }
341
342 /**
343  * dec refcount of a request
344  * free if no more refcount
345  * \param car [IN] request
346  */
347 void mdt_cdt_put_request(struct cdt_agent_req *car)
348 {
349         LASSERT(atomic_read(&car->car_refcount) > 0);
350         if (atomic_dec_and_test(&car->car_refcount))
351                 mdt_cdt_free_request(car);
352 }
353
354 /**
355  * add a request to the list
356  * \param cdt [IN] coordinator
357  * \param car [IN] request
358  * \retval 0 success
359  * \retval -ve failure
360  */
361 int mdt_cdt_add_request(struct coordinator *cdt, struct cdt_agent_req *car)
362 {
363         int rc;
364         ENTRY;
365
366         /* cancel requests are not kept in memory */
367         LASSERT(car->car_hai->hai_action != HSMA_CANCEL);
368
369         down_write(&cdt->cdt_request_lock);
370
371         rc = cfs_hash_add_unique(cdt->cdt_request_cookie_hash,
372                                  &car->car_hai->hai_cookie,
373                                  &car->car_cookie_hash);
374         if (rc < 0) {
375                 up_write(&cdt->cdt_request_lock);
376                 RETURN(-EEXIST);
377         }
378
379         list_add_tail(&car->car_request_list, &cdt->cdt_request_list);
380
381         up_write(&cdt->cdt_request_lock);
382
383         mdt_hsm_agent_update_statistics(cdt, 0, 0, 1, &car->car_uuid);
384
385         atomic_inc(&cdt->cdt_request_count);
386
387         RETURN(0);
388 }
389
390 /**
391  * find request in the list by cookie or by fid
392  * \param cdt [IN] coordinator
393  * \param cookie [IN] request cookie
394  * \param fid [IN] fid
395  * \retval request pointer or NULL if not found
396  */
397 struct cdt_agent_req *mdt_cdt_find_request(struct coordinator *cdt, u64 cookie)
398 {
399         struct cdt_agent_req    *car;
400         ENTRY;
401
402         down_read(&cdt->cdt_request_lock);
403         car = cfs_hash_lookup(cdt->cdt_request_cookie_hash, &cookie);
404         up_read(&cdt->cdt_request_lock);
405
406         RETURN(car);
407 }
408
409 /**
410  * remove request from the list
411  * \param cdt [IN] coordinator
412  * \param cookie [IN] request cookie
413  * \retval request pointer
414  */
415 int mdt_cdt_remove_request(struct coordinator *cdt, __u64 cookie)
416 {
417         struct cdt_agent_req *car;
418         ENTRY;
419
420         down_write(&cdt->cdt_request_lock);
421         car = cfs_hash_del_key(cdt->cdt_request_cookie_hash, &cookie);
422         if (car == NULL) {
423                 up_write(&cdt->cdt_request_lock);
424                 RETURN(-ENOENT);
425         }
426
427         list_del(&car->car_request_list);
428         up_write(&cdt->cdt_request_lock);
429
430         /* Drop reference from cdt_request_list. */
431         mdt_cdt_put_request(car);
432
433         LASSERT(atomic_read(&cdt->cdt_request_count) >= 1);
434         if (atomic_dec_and_test(&cdt->cdt_request_count)) {
435                 /* request count is empty, nudge coordinator for more work */
436                 cdt->cdt_wakeup_coordinator = true;
437                 wake_up_interruptible(&cdt->cdt_waitq);
438         }
439
440         RETURN(0);
441 }
442
443 /**
444  * update a request in the list
445  * on success, add a ref to the request returned
446  * \param cdt [IN] coordinator
447  * \param pgs [IN] progression (cookie + extent + err)
448  * \retval request pointer
449  * \retval -ve failure
450  */
451 struct cdt_agent_req *mdt_cdt_update_request(struct coordinator *cdt,
452                                           const struct hsm_progress_kernel *pgs)
453 {
454         struct cdt_agent_req    *car;
455         int                      rc;
456         ENTRY;
457
458         car = mdt_cdt_find_request(cdt, pgs->hpk_cookie);
459         if (car == NULL)
460                 RETURN(ERR_PTR(-ENOENT));
461
462         car->car_req_update = ktime_get_real_seconds();
463
464         /* update data move progress done by copy tool */
465         if (car->car_hai->hai_action != HSMA_REMOVE && pgs->hpk_errval == 0 &&
466             pgs->hpk_extent.length != 0) {
467                 rc = hsm_update_work(&car->car_progress, &pgs->hpk_extent);
468                 if (rc) {
469                         mdt_cdt_put_request(car);
470                         RETURN(ERR_PTR(rc));
471                 }
472         }
473
474         if (pgs->hpk_flags & HP_FLAG_COMPLETED) {
475                 if (pgs->hpk_errval != 0)
476                         mdt_hsm_agent_update_statistics(cdt, 0, 1, 0,
477                                                         &car->car_uuid);
478                 else
479                         mdt_hsm_agent_update_statistics(cdt, 1, 0, 0,
480                                                         &car->car_uuid);
481         }
482         RETURN(car);
483 }
484
485 /**
486  * seq_file method called to start access to /proc file
487  */
488 static void *mdt_hsm_active_requests_proc_start(struct seq_file *s, loff_t *p)
489 {
490         struct mdt_device       *mdt = s->private;
491         struct coordinator      *cdt = &mdt->mdt_coordinator;
492         struct list_head        *pos;
493         loff_t                   i;
494         ENTRY;
495
496         down_read(&cdt->cdt_request_lock);
497
498         if (list_empty(&cdt->cdt_request_list))
499                 RETURN(NULL);
500
501         if (*p == 0)
502                 RETURN(SEQ_START_TOKEN);
503
504         i = 0;
505         list_for_each(pos, &cdt->cdt_request_list) {
506                 i++;
507                 if (i >= *p)
508                         RETURN(pos);
509         }
510         RETURN(NULL);
511 }
512
513 /**
514  * seq_file method called to get next item
515  * just returns NULL at eof
516  */
517 static void *mdt_hsm_active_requests_proc_next(struct seq_file *s, void *v,
518                                                loff_t *p)
519 {
520         struct mdt_device       *mdt = s->private;
521         struct coordinator      *cdt = &mdt->mdt_coordinator;
522         struct list_head        *pos = v;
523         ENTRY;
524
525         if (pos == SEQ_START_TOKEN)
526                 pos = cdt->cdt_request_list.next;
527         else
528                 pos = pos->next;
529
530         (*p)++;
531         if (pos != &cdt->cdt_request_list)
532                 RETURN(pos);
533         else
534                 RETURN(NULL);
535 }
536
537 /**
538  * display request data
539  */
540 static int mdt_hsm_active_requests_proc_show(struct seq_file *s, void *v)
541 {
542         struct list_head        *pos = v;
543         struct cdt_agent_req    *car;
544         char                     buf[12];
545         __u64                    data_moved;
546         ENTRY;
547
548         if (pos == SEQ_START_TOKEN)
549                 RETURN(0);
550
551         car = list_entry(pos, struct cdt_agent_req, car_request_list);
552         mdt_cdt_get_work_done(car, &data_moved);
553
554         seq_printf(s, "fid="DFID" dfid="DFID
555                    " compound/cookie=%#llx/%#llx"
556                    " action=%s archive#=%d flags=%#llx"
557                    " extent=%#llx-%#llx gid=%#llx"
558                    " data=[%s] canceled=%d uuid=%s done=%llu\n",
559                    PFID(&car->car_hai->hai_fid),
560                    PFID(&car->car_hai->hai_dfid),
561                    car->car_compound_id, car->car_hai->hai_cookie,
562                    hsm_copytool_action2name(car->car_hai->hai_action),
563                    car->car_archive_id, car->car_flags,
564                    car->car_hai->hai_extent.offset,
565                    car->car_hai->hai_extent.length,
566                    car->car_hai->hai_gid,
567                    hai_dump_data_field(car->car_hai, buf, sizeof(buf)),
568                    car->car_canceled, obd_uuid2str(&car->car_uuid),
569                    data_moved);
570         RETURN(0);
571 }
572
573 /**
574  * seq_file method called to stop access to /proc file
575  */
576 static void mdt_hsm_active_requests_proc_stop(struct seq_file *s, void *v)
577 {
578         struct mdt_device       *mdt = s->private;
579         struct coordinator      *cdt = &mdt->mdt_coordinator;
580         ENTRY;
581
582         up_read(&cdt->cdt_request_lock);
583
584         EXIT;
585 }
586
587 /* hsm agent list proc functions */
588 static const struct seq_operations mdt_hsm_active_requests_proc_ops = {
589         .start          = mdt_hsm_active_requests_proc_start,
590         .next           = mdt_hsm_active_requests_proc_next,
591         .show           = mdt_hsm_active_requests_proc_show,
592         .stop           = mdt_hsm_active_requests_proc_stop,
593 };
594
595 /**
596  * public function called at open of /proc file to get
597  * list of agents
598  */
599 static int lprocfs_open_hsm_active_requests(struct inode *inode,
600                                             struct file *file)
601 {
602         struct seq_file *s;
603         int              rc;
604         ENTRY;
605
606         rc = seq_open(file, &mdt_hsm_active_requests_proc_ops);
607         if (rc) {
608                 RETURN(rc);
609         }
610         s = file->private_data;
611         s->private = PDE_DATA(inode);
612
613         RETURN(rc);
614 }
615
616 /* methods to access hsm request list */
617 const struct file_operations mdt_hsm_active_requests_fops = {
618         .owner          = THIS_MODULE,
619         .open           = lprocfs_open_hsm_active_requests,
620         .read           = seq_read,
621         .llseek         = seq_lseek,
622         .release        = lprocfs_seq_release,
623 };
624