Whamcloud - gitweb
3b2b90bd36429f8a117bae6d8dd9912371107d1d
[fs/lustre-release.git] / lustre / llite / llite_close.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/llite/llite_close.c
37  *
38  * Lustre Lite routines to issue a secondary close after writeback
39  */
40
41 #include <linux/module.h>
42
43 #define DEBUG_SUBSYSTEM S_LLITE
44
45 #include <lustre_lite.h>
46 #include "llite_internal.h"
47
48 /** records that a write is in flight */
49 void vvp_write_pending(struct ccc_object *club, struct ccc_page *page)
50 {
51         struct ll_inode_info *lli = ll_i2info(club->cob_inode);
52
53         ENTRY;
54         cfs_spin_lock(&lli->lli_lock);
55         lli->lli_flags |= LLIF_SOM_DIRTY;
56         if (page != NULL && cfs_list_empty(&page->cpg_pending_linkage))
57                 cfs_list_add(&page->cpg_pending_linkage,
58                              &club->cob_pending_list);
59         cfs_spin_unlock(&lli->lli_lock);
60         EXIT;
61 }
62
63 /** records that a write has completed */
64 void vvp_write_complete(struct ccc_object *club, struct ccc_page *page)
65 {
66         struct ll_inode_info *lli = ll_i2info(club->cob_inode);
67         int rc = 0;
68
69         ENTRY;
70         cfs_spin_lock(&lli->lli_lock);
71         if (page != NULL && !cfs_list_empty(&page->cpg_pending_linkage)) {
72                 cfs_list_del_init(&page->cpg_pending_linkage);
73                 rc = 1;
74         }
75         cfs_spin_unlock(&lli->lli_lock);
76         if (rc)
77                 ll_queue_done_writing(club->cob_inode, 0);
78         EXIT;
79 }
80
81 /** Queues DONE_WRITING if
82  * - done writing is allowed;
83  * - inode has no no dirty pages; */
84 void ll_queue_done_writing(struct inode *inode, unsigned long flags)
85 {
86         struct ll_inode_info *lli = ll_i2info(inode);
87         struct ccc_object *club = cl2ccc(ll_i2info(inode)->lli_clob);
88         ENTRY;
89
90         cfs_spin_lock(&lli->lli_lock);
91         lli->lli_flags |= flags;
92
93         if ((lli->lli_flags & LLIF_DONE_WRITING) &&
94             cfs_list_empty(&club->cob_pending_list)) {
95                 struct ll_close_queue *lcq = ll_i2sbi(inode)->ll_lcq;
96
97                 if (lli->lli_flags & LLIF_MDS_SIZE_LOCK)
98                         CWARN("ino %lu/%u(flags %u) som valid it just after "
99                               "recovery\n",
100                               inode->i_ino, inode->i_generation,
101                               lli->lli_flags);
102                 /* DONE_WRITING is allowed and inode has no dirty page. */
103                 cfs_spin_lock(&lcq->lcq_lock);
104
105                 LASSERT(cfs_list_empty(&lli->lli_close_list));
106                 CDEBUG(D_INODE, "adding inode %lu/%u to close list\n",
107                        inode->i_ino, inode->i_generation);
108                 cfs_list_add_tail(&lli->lli_close_list, &lcq->lcq_head);
109
110                 /* Avoid a concurrent insertion into the close thread queue:
111                  * an inode is already in the close thread, open(), write(),
112                  * close() happen, epoch is closed as the inode is marked as
113                  * LLIF_EPOCH_PENDING. When pages are written inode should not
114                  * be inserted into the queue again, clear this flag to avoid
115                  * it. */
116                 lli->lli_flags &= ~LLIF_DONE_WRITING;
117
118                 cfs_waitq_signal(&lcq->lcq_waitq);
119                 cfs_spin_unlock(&lcq->lcq_lock);
120         }
121         cfs_spin_unlock(&lli->lli_lock);
122         EXIT;
123 }
124
125 /** Pack SOM attributes info @opdata for CLOSE, DONE_WRITING rpc. */
126 void ll_done_writing_attr(struct inode *inode, struct md_op_data *op_data)
127 {
128         struct ll_inode_info *lli = ll_i2info(inode);
129         ENTRY;
130
131         op_data->op_flags |= MF_SOM_CHANGE;
132         /* Check if Size-on-MDS attributes are valid. */
133         if (lli->lli_flags & LLIF_MDS_SIZE_LOCK)
134                 CERROR("ino %lu/%u(flags %u) som valid it just after "
135                        "recovery\n", inode->i_ino, inode->i_generation,
136                        lli->lli_flags);
137
138         if (!cl_local_size(inode)) {
139                 /* Send Size-on-MDS Attributes if valid. */
140                 op_data->op_attr.ia_valid |= ATTR_MTIME_SET | ATTR_CTIME_SET |
141                                 ATTR_ATIME_SET | ATTR_SIZE | ATTR_BLOCKS;
142         }
143         EXIT;
144 }
145
146 /** Closes ioepoch and packs Size-on-MDS attribute if needed into @op_data. */
147 void ll_ioepoch_close(struct inode *inode, struct md_op_data *op_data,
148                       struct obd_client_handle **och, unsigned long flags)
149 {
150         struct ll_inode_info *lli = ll_i2info(inode);
151         struct ccc_object *club = cl2ccc(ll_i2info(inode)->lli_clob);
152         ENTRY;
153
154         cfs_spin_lock(&lli->lli_lock);
155         if (!(cfs_list_empty(&club->cob_pending_list))) {
156                 if (!(lli->lli_flags & LLIF_EPOCH_PENDING)) {
157                         LASSERT(*och != NULL);
158                         LASSERT(lli->lli_pending_och == NULL);
159                         /* Inode is dirty and there is no pending write done
160                          * request yet, DONE_WRITE is to be sent later. */
161                         lli->lli_flags |= LLIF_EPOCH_PENDING;
162                         lli->lli_pending_och = *och;
163                         cfs_spin_unlock(&lli->lli_lock);
164
165                         inode = igrab(inode);
166                         LASSERT(inode);
167                         GOTO(out, 0);
168                 }
169                 if (flags & LLIF_DONE_WRITING) {
170                         /* Some pages are still dirty, it is early to send
171                          * DONE_WRITE. Wait untill all pages will be flushed
172                          * and try DONE_WRITE again later. */
173                         LASSERT(!(lli->lli_flags & LLIF_DONE_WRITING));
174                         lli->lli_flags |= LLIF_DONE_WRITING;
175                         cfs_spin_unlock(&lli->lli_lock);
176
177                         inode = igrab(inode);
178                         LASSERT(inode);
179                         GOTO(out, 0);
180                 }
181         }
182         CDEBUG(D_INODE, "Epoch "LPU64" closed on "DFID"\n",
183                ll_i2info(inode)->lli_ioepoch, PFID(&lli->lli_fid));
184         op_data->op_flags |= MF_EPOCH_CLOSE;
185
186         if (flags & LLIF_DONE_WRITING) {
187                 LASSERT(lli->lli_flags & LLIF_SOM_DIRTY);
188                 LASSERT(!(lli->lli_flags & LLIF_DONE_WRITING));
189                 *och = lli->lli_pending_och;
190                 lli->lli_pending_och = NULL;
191                 lli->lli_flags &= ~LLIF_EPOCH_PENDING;
192         } else {
193                 /* Pack Size-on-MDS inode attributes only if they has changed */
194                 if (!(lli->lli_flags & LLIF_SOM_DIRTY)) {
195                         cfs_spin_unlock(&lli->lli_lock);
196                         GOTO(out, 0);
197                 }
198
199                 /* There is a pending DONE_WRITE -- close epoch with no
200                  * attribute change. */
201                 if (lli->lli_flags & LLIF_EPOCH_PENDING) {
202                         cfs_spin_unlock(&lli->lli_lock);
203                         GOTO(out, 0);
204                 }
205         }
206
207         LASSERT(cfs_list_empty(&club->cob_pending_list));
208         lli->lli_flags &= ~LLIF_SOM_DIRTY;
209         cfs_spin_unlock(&lli->lli_lock);
210         ll_done_writing_attr(inode, op_data);
211
212         EXIT;
213 out:
214         return;
215 }
216
217 /**
218  * Cliens updates SOM attributes on MDS (including llog cookies):
219  * obd_getattr with no lock and md_setattr.
220  */
221 int ll_som_update(struct inode *inode, struct md_op_data *op_data)
222 {
223         struct ll_inode_info *lli = ll_i2info(inode);
224         struct ptlrpc_request *request = NULL;
225         __u32 old_flags;
226         struct obdo *oa;
227         int rc;
228         ENTRY;
229
230         LASSERT(op_data != NULL);
231         if (lli->lli_flags & LLIF_MDS_SIZE_LOCK)
232                 CERROR("ino %lu/%u(flags %u) som valid it just after "
233                        "recovery\n", inode->i_ino, inode->i_generation,
234                        lli->lli_flags);
235
236         OBDO_ALLOC(oa);
237         if (!oa) {
238                 CERROR("can't allocate memory for Size-on-MDS update.\n");
239                 RETURN(-ENOMEM);
240         }
241
242         old_flags = op_data->op_flags;
243         op_data->op_flags = MF_SOM_CHANGE;
244
245         /* If inode is already in another epoch, skip getattr from OSTs. */
246         if (lli->lli_ioepoch == op_data->op_ioepoch) {
247                 rc = ll_inode_getattr(inode, oa, op_data->op_ioepoch,
248                                       old_flags & MF_GETATTR_LOCK);
249                 if (rc) {
250                         oa->o_valid = 0;
251                         if (rc == -ENOENT)
252                                 CDEBUG(D_INODE, "objid "LPX64" is destroyed\n",
253                                        lli->lli_smd->lsm_object_id);
254                         else
255                                 CERROR("inode_getattr failed (%d): unable to "
256                                        "send a Size-on-MDS attribute update "
257                                        "for inode %lu/%u\n", rc, inode->i_ino,
258                                        inode->i_generation);
259                 } else {
260                         CDEBUG(D_INODE, "Size-on-MDS update on "DFID"\n",
261                                PFID(&lli->lli_fid));
262                 }
263                 /* Install attributes into op_data. */
264                 md_from_obdo(op_data, oa, oa->o_valid);
265         }
266
267         rc = md_setattr(ll_i2sbi(inode)->ll_md_exp, op_data,
268                         NULL, 0, NULL, 0, &request, NULL);
269         ptlrpc_req_finished(request);
270
271         OBDO_FREE(oa);
272         RETURN(rc);
273 }
274
275 /**
276  * Closes the ioepoch and packs all the attributes into @op_data for
277  * DONE_WRITING rpc.
278  */
279 static void ll_prepare_done_writing(struct inode *inode,
280                                     struct md_op_data *op_data,
281                                     struct obd_client_handle **och)
282 {
283         ll_ioepoch_close(inode, op_data, och, LLIF_DONE_WRITING);
284         /* If there is no @och, we do not do D_W yet. */
285         if (*och == NULL)
286                 return;
287
288         ll_pack_inode2opdata(inode, op_data, &(*och)->och_fh);
289         ll_prep_md_op_data(op_data, inode, NULL, NULL,
290                            0, 0, LUSTRE_OPC_ANY, NULL);
291 }
292
293 /** Send a DONE_WRITING rpc. */
294 static void ll_done_writing(struct inode *inode)
295 {
296         struct obd_client_handle *och = NULL;
297         struct md_op_data *op_data;
298         int rc;
299         ENTRY;
300
301         LASSERT(exp_connect_som(ll_i2mdexp(inode)));
302
303         OBD_ALLOC_PTR(op_data);
304         if (op_data == NULL) {
305                 CERROR("can't allocate op_data\n");
306                 EXIT;
307                 return;
308         }
309
310         ll_prepare_done_writing(inode, op_data, &och);
311         /* If there is no @och, we do not do D_W yet. */
312         if (och == NULL)
313                 GOTO(out, 0);
314
315         rc = md_done_writing(ll_i2sbi(inode)->ll_md_exp, op_data, NULL);
316         if (rc == -EAGAIN) {
317                 /* MDS has instructed us to obtain Size-on-MDS attribute from
318                  * OSTs and send setattr to back to MDS. */
319                 rc = ll_som_update(inode, op_data);
320         } else if (rc) {
321                 CERROR("inode %lu mdc done_writing failed: rc = %d\n",
322                        inode->i_ino, rc);
323         }
324 out:
325         ll_finish_md_op_data(op_data);
326         if (och) {
327                 md_clear_open_replay_data(ll_i2sbi(inode)->ll_md_exp, och);
328                 OBD_FREE_PTR(och);
329         }
330         EXIT;
331 }
332
333 static struct ll_inode_info *ll_close_next_lli(struct ll_close_queue *lcq)
334 {
335         struct ll_inode_info *lli = NULL;
336
337         cfs_spin_lock(&lcq->lcq_lock);
338
339         if (!cfs_list_empty(&lcq->lcq_head)) {
340                 lli = cfs_list_entry(lcq->lcq_head.next, struct ll_inode_info,
341                                      lli_close_list);
342                 cfs_list_del_init(&lli->lli_close_list);
343         } else if (cfs_atomic_read(&lcq->lcq_stop))
344                 lli = ERR_PTR(-EALREADY);
345
346         cfs_spin_unlock(&lcq->lcq_lock);
347         return lli;
348 }
349
350 static int ll_close_thread(void *arg)
351 {
352         struct ll_close_queue *lcq = arg;
353         ENTRY;
354
355         {
356                 char name[CFS_CURPROC_COMM_MAX];
357                 snprintf(name, sizeof(name) - 1, "ll_close");
358                 cfs_daemonize(name);
359         }
360
361         cfs_complete(&lcq->lcq_comp);
362
363         while (1) {
364                 struct l_wait_info lwi = { 0 };
365                 struct ll_inode_info *lli;
366                 struct inode *inode;
367
368                 l_wait_event_exclusive(lcq->lcq_waitq,
369                                        (lli = ll_close_next_lli(lcq)) != NULL,
370                                        &lwi);
371                 if (IS_ERR(lli))
372                         break;
373
374                 inode = ll_info2i(lli);
375                 CDEBUG(D_INFO, "done_writting for inode %lu/%u\n",
376                        inode->i_ino, inode->i_generation);
377                 ll_done_writing(inode);
378                 iput(inode);
379         }
380
381         CDEBUG(D_INFO, "ll_close exiting\n");
382         cfs_complete(&lcq->lcq_comp);
383         RETURN(0);
384 }
385
386 int ll_close_thread_start(struct ll_close_queue **lcq_ret)
387 {
388         struct ll_close_queue *lcq;
389         pid_t pid;
390
391         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CLOSE_THREAD))
392                 return -EINTR;
393
394         OBD_ALLOC(lcq, sizeof(*lcq));
395         if (lcq == NULL)
396                 return -ENOMEM;
397
398         cfs_spin_lock_init(&lcq->lcq_lock);
399         CFS_INIT_LIST_HEAD(&lcq->lcq_head);
400         cfs_waitq_init(&lcq->lcq_waitq);
401         cfs_init_completion(&lcq->lcq_comp);
402
403         pid = cfs_create_thread(ll_close_thread, lcq, 0);
404         if (pid < 0) {
405                 OBD_FREE(lcq, sizeof(*lcq));
406                 return pid;
407         }
408
409         cfs_wait_for_completion(&lcq->lcq_comp);
410         *lcq_ret = lcq;
411         return 0;
412 }
413
414 void ll_close_thread_shutdown(struct ll_close_queue *lcq)
415 {
416         cfs_init_completion(&lcq->lcq_comp);
417         cfs_atomic_inc(&lcq->lcq_stop);
418         cfs_waitq_signal(&lcq->lcq_waitq);
419         cfs_wait_for_completion(&lcq->lcq_comp);
420         OBD_FREE(lcq, sizeof(*lcq));
421 }