Whamcloud - gitweb
Branch HEAD
[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  2008 Sun Microsystems, Inc. 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_mdc.h>
46 #include <lustre_lite.h>
47 #include "llite_internal.h"
48
49 /** records that a write is in flight */
50 void vvp_write_pending(struct ccc_object *club, struct ccc_page *page)
51 {
52         struct ll_inode_info *lli = ll_i2info(club->cob_inode);
53
54         ENTRY;
55         spin_lock(&lli->lli_lock);
56         lli->lli_flags |= LLIF_SOM_DIRTY;
57         if (page != NULL && list_empty(&page->cpg_pending_linkage))
58                 list_add(&page->cpg_pending_linkage, &club->cob_pending_list);
59         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         spin_lock(&lli->lli_lock);
71         if (page != NULL && !list_empty(&page->cpg_pending_linkage)) {
72                 list_del_init(&page->cpg_pending_linkage);
73                 rc = 1;
74         }
75         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         spin_lock(&lli->lli_lock);
91         lli->lli_flags |= flags;
92
93         if ((lli->lli_flags & LLIF_DONE_WRITING) &&
94             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 %lu) 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                 spin_lock(&lcq->lcq_lock);
104
105                 LASSERT(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                 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                 wake_up(&lcq->lcq_waitq);
119                 spin_unlock(&lcq->lcq_lock);
120         }
121         spin_unlock(&lli->lli_lock);
122         EXIT;
123 }
124
125 /** Closes epoch and sends Size-on-MDS attribute update if possible.  Call
126  * this under ll_inode_info::lli_lock spinlock. */
127 void ll_epoch_close(struct inode *inode, struct md_op_data *op_data,
128                     struct obd_client_handle **och, unsigned long flags)
129 {
130         struct ll_inode_info *lli = ll_i2info(inode);
131         struct ccc_object *club = cl2ccc(ll_i2info(inode)->lli_clob);
132         ENTRY;
133
134         spin_lock(&lli->lli_lock);
135         if (!(list_empty(&club->cob_pending_list))) {
136                 if (!(lli->lli_flags & LLIF_EPOCH_PENDING)) {
137                         LASSERT(*och != NULL);
138                         LASSERT(lli->lli_pending_och == NULL);
139                         /* Inode is dirty and there is no pending write done
140                          * request yet, DONE_WRITE is to be sent later. */
141                         lli->lli_flags |= LLIF_EPOCH_PENDING;
142                         lli->lli_pending_och = *och;
143                         spin_unlock(&lli->lli_lock);
144
145                         inode = igrab(inode);
146                         LASSERT(inode);
147                         GOTO(out, 0);
148                 }
149                 if (flags & LLIF_DONE_WRITING) {
150                         /* Some pages are still dirty, it is early to send
151                          * DONE_WRITE. Wait untill all pages will be flushed
152                          * and try DONE_WRITE again later. */
153                         LASSERT(!(lli->lli_flags & LLIF_DONE_WRITING));
154                         lli->lli_flags |= LLIF_DONE_WRITING;
155                         spin_unlock(&lli->lli_lock);
156
157                         inode = igrab(inode);
158                         LASSERT(inode);
159                         GOTO(out, 0);
160                 }
161         }
162         CDEBUG(D_INODE, "Epoch "LPU64" closed on "DFID"\n",
163                ll_i2info(inode)->lli_ioepoch, PFID(&lli->lli_fid));
164         op_data->op_flags |= MF_EPOCH_CLOSE;
165
166         if (flags & LLIF_DONE_WRITING) {
167                 LASSERT(lli->lli_flags & LLIF_SOM_DIRTY);
168                 LASSERT(!(lli->lli_flags & LLIF_DONE_WRITING));
169                 *och = lli->lli_pending_och;
170                 lli->lli_pending_och = NULL;
171                 lli->lli_flags &= ~LLIF_EPOCH_PENDING;
172         } else {
173                 /* Pack Size-on-MDS inode attributes only if they has changed */
174                 if (!(lli->lli_flags & LLIF_SOM_DIRTY)) {
175                         spin_unlock(&lli->lli_lock);
176                         GOTO(out, 0);
177                 }
178
179                 /* There is a pending DONE_WRITE -- close epoch with no
180                  * attribute change. */
181                 if (lli->lli_flags & LLIF_EPOCH_PENDING) {
182                         spin_unlock(&lli->lli_lock);
183                         GOTO(out, 0);
184                 }
185         }
186
187         LASSERT(list_empty(&club->cob_pending_list));
188         lli->lli_flags &= ~LLIF_SOM_DIRTY;
189         spin_unlock(&lli->lli_lock);
190         op_data->op_flags |= MF_SOM_CHANGE;
191
192         /* Check if Size-on-MDS attributes are valid. */
193         if (lli->lli_flags & LLIF_MDS_SIZE_LOCK)
194                 CWARN("ino %lu/%u(flags %lu) som valid it just after "
195                       "recovery\n",
196                       inode->i_ino, inode->i_generation, lli->lli_flags);
197
198         if (!cl_local_size(inode)) {
199                 /* Send Size-on-MDS Attributes if valid. Atime is sent along
200                  * with all the attributes. */
201                 op_data->op_attr.ia_valid |= ATTR_MTIME_SET | ATTR_CTIME_SET |
202                                 ATTR_ATIME_SET | ATTR_SIZE | ATTR_BLOCKS;
203         }
204         EXIT;
205 out:
206         return;
207 }
208
209 int ll_sizeonmds_update(struct inode *inode, struct lustre_handle *fh,
210                         __u64 ioepoch)
211 {
212         struct ll_inode_info *lli = ll_i2info(inode);
213         struct md_op_data *op_data;
214         struct obdo *oa;
215         int rc;
216         ENTRY;
217
218         /* LASSERT(!(lli->lli_flags & LLIF_MDS_SIZE_LOCK)); */
219         /* After recovery that can be valid. */
220         if (lli->lli_flags & LLIF_MDS_SIZE_LOCK)
221                 CWARN("ino %lu/%u(flags %lu) som valid it just after "
222                       "recovery\n", inode->i_ino, inode->i_generation,
223                       lli->lli_flags);
224
225         OBDO_ALLOC(oa);
226         OBD_ALLOC_PTR(op_data);
227         if (!oa || !op_data) {
228                 CERROR("can't allocate memory for Size-on-MDS update.\n");
229                 RETURN(-ENOMEM);
230         }
231         rc = ll_inode_getattr(inode, oa);
232         if (rc == -ENOENT) {
233                 oa->o_valid = 0;
234                 CDEBUG(D_INODE, "objid "LPX64" is already destroyed\n",
235                        lli->lli_smd->lsm_object_id);
236         } else if (rc) {
237                 CERROR("inode_getattr failed (%d): unable to send a "
238                        "Size-on-MDS attribute update for inode %lu/%u\n",
239                        rc, inode->i_ino, inode->i_generation);
240                 GOTO(out, rc);
241         }
242         CDEBUG(D_INODE, "Size-on-MDS update on "DFID"\n", PFID(&lli->lli_fid));
243
244         md_from_obdo(op_data, oa, oa->o_valid);
245         memcpy(&op_data->op_handle, fh, sizeof(*fh));
246
247         op_data->op_ioepoch = ioepoch;
248         op_data->op_flags |= MF_SOM_CHANGE;
249
250         rc = ll_md_setattr(inode, op_data, NULL);
251         EXIT;
252 out:
253         if (oa)
254                 OBDO_FREE(oa);
255         if (op_data)
256                 ll_finish_md_op_data(op_data);
257         return rc;
258 }
259
260 /** Sends a DONE_WRITING rpc, packs Size-on-MDS attributes into it, if
261  * possible */
262 static void ll_done_writing(struct inode *inode)
263 {
264         struct obd_client_handle *och = NULL;
265         struct md_op_data *op_data;
266         int rc;
267         ENTRY;
268
269         LASSERT(ll_i2mdexp(inode)->exp_connect_flags & OBD_CONNECT_SOM);
270
271         OBD_ALLOC_PTR(op_data);
272         if (op_data == NULL) {
273                 CERROR("can't allocate op_data\n");
274                 EXIT;
275                 return;
276         }
277
278         ll_epoch_close(inode, op_data, &och, LLIF_DONE_WRITING);
279         /* If there is no @och, we do not do D_W yet. */
280         if (och == NULL)
281                 GOTO(out, 0);
282
283         ll_pack_inode2opdata(inode, op_data, &och->och_fh);
284
285         rc = md_done_writing(ll_i2sbi(inode)->ll_md_exp, op_data, NULL);
286         if (rc == -EAGAIN) {
287                 /* MDS has instructed us to obtain Size-on-MDS attribute from
288                  * OSTs and send setattr to back to MDS. */
289                 rc = ll_sizeonmds_update(inode, &och->och_fh,
290                                          op_data->op_ioepoch);
291         } else if (rc) {
292                 CERROR("inode %lu mdc done_writing failed: rc = %d\n",
293                        inode->i_ino, rc);
294         }
295 out:
296         ll_finish_md_op_data(op_data);
297         if (och) {
298                 md_clear_open_replay_data(ll_i2sbi(inode)->ll_md_exp, och);
299                 OBD_FREE_PTR(och);
300         }
301         EXIT;
302 }
303
304 static struct ll_inode_info *ll_close_next_lli(struct ll_close_queue *lcq)
305 {
306         struct ll_inode_info *lli = NULL;
307
308         spin_lock(&lcq->lcq_lock);
309
310         if (!list_empty(&lcq->lcq_head)) {
311                 lli = list_entry(lcq->lcq_head.next, struct ll_inode_info,
312                                  lli_close_list);
313                 list_del_init(&lli->lli_close_list);
314         } else if (atomic_read(&lcq->lcq_stop))
315                 lli = ERR_PTR(-EALREADY);
316
317         spin_unlock(&lcq->lcq_lock);
318         return lli;
319 }
320
321 static int ll_close_thread(void *arg)
322 {
323         struct ll_close_queue *lcq = arg;
324         ENTRY;
325
326         {
327                 char name[CFS_CURPROC_COMM_MAX];
328                 snprintf(name, sizeof(name) - 1, "ll_close");
329                 cfs_daemonize(name);
330         }
331
332         complete(&lcq->lcq_comp);
333
334         while (1) {
335                 struct l_wait_info lwi = { 0 };
336                 struct ll_inode_info *lli;
337                 struct inode *inode;
338
339                 l_wait_event_exclusive(lcq->lcq_waitq,
340                                        (lli = ll_close_next_lli(lcq)) != NULL,
341                                        &lwi);
342                 if (IS_ERR(lli))
343                         break;
344
345                 inode = ll_info2i(lli);
346                 CDEBUG(D_INFO, "done_writting for inode %lu/%u\n",
347                        inode->i_ino, inode->i_generation);
348                 ll_done_writing(inode);
349                 iput(inode);
350         }
351
352         CDEBUG(D_INFO, "ll_close exiting\n");
353         complete(&lcq->lcq_comp);
354         RETURN(0);
355 }
356
357 int ll_close_thread_start(struct ll_close_queue **lcq_ret)
358 {
359         struct ll_close_queue *lcq;
360         pid_t pid;
361
362         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CLOSE_THREAD))
363                 return -EINTR;
364
365         OBD_ALLOC(lcq, sizeof(*lcq));
366         if (lcq == NULL)
367                 return -ENOMEM;
368
369         spin_lock_init(&lcq->lcq_lock);
370         INIT_LIST_HEAD(&lcq->lcq_head);
371         init_waitqueue_head(&lcq->lcq_waitq);
372         init_completion(&lcq->lcq_comp);
373
374         pid = kernel_thread(ll_close_thread, lcq, 0);
375         if (pid < 0) {
376                 OBD_FREE(lcq, sizeof(*lcq));
377                 return pid;
378         }
379
380         wait_for_completion(&lcq->lcq_comp);
381         *lcq_ret = lcq;
382         return 0;
383 }
384
385 void ll_close_thread_shutdown(struct ll_close_queue *lcq)
386 {
387         init_completion(&lcq->lcq_comp);
388         atomic_inc(&lcq->lcq_stop);
389         wake_up(&lcq->lcq_waitq);
390         wait_for_completion(&lcq->lcq_comp);
391         OBD_FREE(lcq, sizeof(*lcq));
392 }