Whamcloud - gitweb
LU-17744 ldiskfs: mballoc stats fixes
[fs/lustre-release.git] / lustre / mdd / mdd_trans.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/mdd/mdd_trans.c
32  *
33  * Lustre Metadata Server (mdd) routines
34  *
35  * Author: Wang Di <wangdi@clusterfs.com>
36  */
37
38 #define DEBUG_SUBSYSTEM S_MDS
39
40 #include <linux/kthread.h>
41
42 #include <obd_class.h>
43 #include <lprocfs_status.h>
44 #include <lustre_mds.h>
45 #include <lustre_barrier.h>
46
47 #include "mdd_internal.h"
48
49 struct thandle *mdd_trans_create(const struct lu_env *env,
50                                  struct mdd_device *mdd)
51 {
52         struct thandle *th;
53         struct lu_ucred *uc = lu_ucred_check(env);
54
55         /* If blocked by the write barrier, then return "-EINPROGRESS"
56          * to the caller. Usually, such error will be forwarded to the
57          * client, and the expected behaviour is to re-try such modify
58          * RPC some time later until the barrier is thawed or expired. */
59         if (unlikely(!barrier_entry(mdd->mdd_bottom)))
60                 return ERR_PTR(-EINPROGRESS);
61
62         th = mdd_child_ops(mdd)->dt_trans_create(env, mdd->mdd_child);
63         if (!IS_ERR(th) && uc)
64                 th->th_ignore_quota = !!md_capable(uc, CAP_SYS_RESOURCE);
65
66         return th;
67 }
68
69 int mdd_trans_start(const struct lu_env *env, struct mdd_device *mdd,
70                     struct thandle *th)
71 {
72         return mdd_child_ops(mdd)->dt_trans_start(env, mdd->mdd_child, th);
73 }
74
75 struct mdd_changelog_gc {
76         struct mdd_device *mcgc_mdd;
77         __u32 mcgc_id;
78         __u32 mcgc_maxtime;
79         __u64 mcgc_maxindexes;
80         char mcgc_name[CHANGELOG_USER_NAMELEN_FULL];
81 };
82
83 /* return first registered ChangeLog user idle since too long
84  * use ChangeLog's user plain LLOG mtime for this */
85 static int mdd_changelog_gc_cb(const struct lu_env *env,
86                                struct llog_handle *llh,
87                                struct llog_rec_hdr *hdr, void *data)
88 {
89         struct llog_changelog_user_rec2 *rec;
90         struct mdd_changelog_gc *mcgc = data;
91         struct mdd_device *mdd = mcgc->mcgc_mdd;
92
93         ENTRY;
94
95         if ((llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN) == 0)
96                 RETURN(-ENXIO);
97
98         rec = container_of(hdr, typeof(*rec), cur_hdr);
99
100         /* find oldest idle user, based on last record update/cancel time (new
101          * behavior), or for old user records, last record index vs current
102          * ChangeLog index. Late users with old record format will be treated
103          * first as we assume they could be idle since longer
104          */
105         if (rec->cur_time != 0) {
106                 u32 time_now = (u32)ktime_get_real_seconds();
107                 timeout_t time_out = rec->cur_time +
108                                      mdd->mdd_changelog_max_idle_time;
109                 timeout_t idle_time = time_now - rec->cur_time;
110
111                 /* treat oldest idle user first, and if no old format user
112                  * has been already selected
113                  */
114                 if (time_after32(time_now, time_out) &&
115                     idle_time > mcgc->mcgc_maxtime &&
116                     mcgc->mcgc_maxindexes == 0) {
117                         mcgc->mcgc_maxtime = idle_time;
118                         mcgc->mcgc_id = rec->cur_id;
119                         mdd_chlg_username(rec, mcgc->mcgc_name,
120                                           sizeof(mcgc->mcgc_name));
121                 }
122         } else {
123                 /* old user record with no idle time stamp, so use empirical
124                  * method based on its current index/position
125                  */
126                 __u64 idle_indexes;
127
128                 idle_indexes = mdd->mdd_cl.mc_index - rec->cur_endrec;
129
130                 /* treat user with the oldest/smallest current index first */
131                 if (idle_indexes >= mdd->mdd_changelog_max_idle_indexes &&
132                     idle_indexes > mcgc->mcgc_maxindexes) {
133                         mcgc->mcgc_maxindexes = idle_indexes;
134                         mcgc->mcgc_id = rec->cur_id;
135                         mdd_chlg_username(rec, mcgc->mcgc_name,
136                                           sizeof(mcgc->mcgc_name));
137                 }
138
139         }
140         RETURN(0);
141 }
142
143 /* recover space from long-term inactive ChangeLog users */
144 static int mdd_chlg_garbage_collect(void *data)
145 {
146         struct mdd_device *mdd = data;
147         struct lu_env *env = NULL;
148         int rc;
149         struct llog_ctxt *ctxt;
150
151         ENTRY;
152
153         mdd->mdd_cl.mc_gc_task = current;
154
155         CDEBUG(D_HA, "%s: ChangeLog garbage collect thread start with PID %d\n",
156                mdd2obd_dev(mdd)->obd_name, current->pid);
157
158         OBD_ALLOC_PTR(env);
159         if (env == NULL)
160                 GOTO(out, rc = -ENOMEM);
161
162         rc = lu_env_init(env, LCT_MD_THREAD);
163         if (rc)
164                 GOTO(out, rc);
165
166         for (;;) {
167                 struct mdd_changelog_gc mcgc = {
168                         .mcgc_mdd = mdd,
169                         .mcgc_maxtime = 0,
170                         .mcgc_maxindexes = 0,
171                 };
172
173                 ctxt = llog_get_context(mdd2obd_dev(mdd),
174                                         LLOG_CHANGELOG_USER_ORIG_CTXT);
175                 if (ctxt == NULL ||
176                     (ctxt->loc_handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT) == 0)
177                         GOTO(out_ctxt, rc = -ENXIO);
178
179                 rc = llog_cat_process(env, ctxt->loc_handle,
180                                       mdd_changelog_gc_cb, &mcgc, 0, 0);
181                 if (rc != 0 || !mcgc.mcgc_name[0])
182                         break;
183                 llog_ctxt_put(ctxt);
184
185                 if (mcgc.mcgc_maxindexes != 0)
186                         CWARN("%s: Force deregister of ChangeLog user %s idle with more than %llu unprocessed records\n",
187                               mdd2obd_dev(mdd)->obd_name, mcgc.mcgc_name,
188                               mcgc.mcgc_maxindexes);
189                 else
190                         CWARN("%s: Force deregister of ChangeLog user %s idle since more than %us\n",
191                               mdd2obd_dev(mdd)->obd_name, mcgc.mcgc_name,
192                               mcgc.mcgc_maxtime);
193
194                 mdd_changelog_user_purge(env, mdd, mcgc.mcgc_id);
195
196                 if (kthread_should_stop())
197                         GOTO(out_env, rc = 0);
198         }
199
200 out_ctxt:
201         if (ctxt != NULL)
202                 llog_ctxt_put(ctxt);
203
204 out_env:
205         lu_env_fini(env);
206         GOTO(out, rc);
207 out:
208         if (env)
209                 OBD_FREE_PTR(env);
210
211         spin_lock(&mdd->mdd_cl.mc_lock);
212         mdd->mdd_cl.mc_gc_task = MDD_CHLG_GC_NONE;
213         spin_unlock(&mdd->mdd_cl.mc_lock);
214
215         return rc;
216 }
217
218 int mdd_trans_stop(const struct lu_env *env, struct mdd_device *mdd,
219                    int result, struct thandle *handle)
220 {
221         int rc;
222
223         handle->th_result = result;
224         rc = mdd_child_ops(mdd)->dt_trans_stop(env, mdd->mdd_child, handle);
225         barrier_exit(mdd->mdd_bottom);
226
227         /* bottom half of changelog garbage-collection mechanism, started
228          * from mdd_changelog_store(). This is required, as running a
229          * kthead can't occur during a journal transaction is being filled
230          * because otherwise a deadlock can happen if memory reclaim is
231          * triggered by kthreadd when forking the new thread, and thus
232          * I/Os could be attempted to the same device from shrinkers
233          * requiring a new journal transaction to be started when current
234          * could never complete (LU-10680).
235          */
236         if (unlikely(mdd->mdd_cl.mc_flags & CLM_ON &&
237                      cmpxchg(&mdd->mdd_cl.mc_gc_task, MDD_CHLG_GC_NEED,
238                              MDD_CHLG_GC_START) == MDD_CHLG_GC_NEED)) {
239                 /* XXX we may want to cmpxchg() only if MDD_CHLG_GC_NEED
240                  * to save its cost in the frequent case and have an extra
241                  * if/test cost in the rare case where we need to spawn?
242                  */
243                 struct task_struct *gc_task;
244                 struct obd_device *obd = mdd2obd_dev(mdd);
245
246                 gc_task = kthread_run(mdd_chlg_garbage_collect, mdd,
247                                       "chlg_gc_thread");
248                 if (IS_ERR(gc_task)) {
249                         CERROR("%s: cannot start ChangeLog garbage collection "
250                                "thread: rc = %ld\n", obd->obd_name,
251                                PTR_ERR(gc_task));
252                         mdd->mdd_cl.mc_gc_task = MDD_CHLG_GC_NONE;
253                 } else {
254                         CDEBUG(D_HA, "%s: a ChangeLog garbage collection "
255                                "thread has been started\n", obd->obd_name);
256                 }
257         }
258
259         /* if operation failed, return \a result, otherwise return status of
260          * dt_trans_stop */
261         return result ?: rc;
262 }