Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / liblustre / file.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Lustre Light file operations
5  *
6  *  Copyright (c) 2002-2004 Cluster File Systems, Inc.
7  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23
24 #define DEBUG_SUBSYSTEM S_LLITE
25
26 #include <stdlib.h>
27 #include <string.h>
28 #include <assert.h>
29 #include <time.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <sys/queue.h>
33 #include <fcntl.h>
34
35 #ifdef HAVE_XTIO_H
36 #include <xtio.h>
37 #endif
38 #include <sysio.h>
39 #include <fs.h>
40 #include <mount.h>
41 #include <inode.h>
42 #ifdef HAVE_FILE_H
43 #include <file.h>
44 #endif
45
46 #undef LIST_HEAD
47
48 #include "llite_lib.h"
49
50 /* Pack the required supplementary groups into the supplied groups array.
51  * If we don't need to use the groups from the target inode(s) then we
52  * instead pack one or more groups from the user's supplementary group
53  * array in case it might be useful.  Not needed if doing an MDS-side upcall. */
54 void ll_i2gids(__u32 *suppgids, struct inode *i1, struct inode *i2)
55 {
56         LASSERT(i1 != NULL);
57         LASSERT(suppgids != NULL);
58
59         if (in_group_p(i1->i_stbuf.st_gid))
60                 suppgids[0] = i1->i_stbuf.st_gid;
61         else
62                 suppgids[0] = -1;
63
64         if (i2) {
65                 if (in_group_p(i2->i_stbuf.st_gid))
66                         suppgids[1] = i2->i_stbuf.st_gid;
67                 else
68                         suppgids[1] = -1;
69         } else {
70                 suppgids[1] = -1;
71         }
72 }
73
74 void llu_prep_md_op_data(struct md_op_data *op_data, struct inode *i1,
75                          struct inode *i2, const char *name, int namelen,
76                          int mode, __u32 opc)
77 {
78         LASSERT(i1 != NULL || i2 != NULL);
79         LASSERT(op_data);
80         memset(op_data, 0, sizeof(*op_data));
81
82         if (i1) {
83                 ll_i2gids(op_data->op_suppgids, i1, i2);
84                 op_data->op_fid1 = *ll_inode2fid(i1);
85         }else {
86                 ll_i2gids(op_data->op_suppgids, i2, i1);
87                 op_data->op_fid1 = *ll_inode2fid(i2);
88         }
89
90         if (i2)
91                 op_data->op_fid2 = *ll_inode2fid(i2);
92         else
93                 fid_zero(&op_data->op_fid2);
94
95         op_data->op_opc = opc;
96         op_data->op_name = name;
97         op_data->op_mode = mode;
98         op_data->op_namelen = namelen;
99         op_data->op_mod_time = CURRENT_TIME;
100         op_data->op_data = NULL;
101 }
102
103 void llu_finish_md_op_data(struct md_op_data *op_data)
104 {
105         OBD_FREE_PTR(op_data);
106 }
107
108 void obdo_refresh_inode(struct inode *dst,
109                         struct obdo *src,
110                         obd_flag valid)
111 {
112         struct intnl_stat *st = llu_i2stat(dst);
113         valid &= src->o_valid;
114
115         if (valid & (OBD_MD_FLCTIME | OBD_MD_FLMTIME))
116                 CDEBUG(D_INODE,"valid "LPX64", cur time %lu/%lu, new %lu/%lu\n",
117                        src->o_valid, LTIME_S(st->st_mtime),
118                        LTIME_S(st->st_ctime),
119                        (long)src->o_mtime, (long)src->o_ctime);
120
121         if (valid & OBD_MD_FLATIME && src->o_atime > LTIME_S(st->st_atime))
122                 LTIME_S(st->st_atime) = src->o_atime;
123         
124         /* mtime is always updated with ctime, but can be set in past.
125            As write and utime(2) may happen within 1 second, and utime's
126            mtime has a priority over write's one, leave mtime from mds 
127            for the same ctimes. */
128         if (valid & OBD_MD_FLCTIME && src->o_ctime > LTIME_S(st->st_ctime)) {
129                 LTIME_S(st->st_ctime) = src->o_ctime;
130                 if (valid & OBD_MD_FLMTIME)
131                         LTIME_S(st->st_mtime) = src->o_mtime;
132         }
133         if (valid & OBD_MD_FLSIZE && src->o_size > st->st_size)
134                 st->st_size = src->o_size;
135         /* optimum IO size */
136         if (valid & OBD_MD_FLBLKSZ)
137                 st->st_blksize = src->o_blksize;
138         /* allocation of space */
139         if (valid & OBD_MD_FLBLOCKS && src->o_blocks > st->st_blocks)
140                 st->st_blocks = src->o_blocks;
141 }
142
143 int llu_local_open(struct llu_inode_info *lli, struct lookup_intent *it)
144 {
145         struct ptlrpc_request *req = it->d.lustre.it_data;
146         struct ll_file_data *fd;
147         struct mdt_body *body;
148         ENTRY;
149
150         body = lustre_msg_buf(req->rq_repmsg, DLM_REPLY_REC_OFF, sizeof(*body));
151         LASSERT(body != NULL);                 /* reply already checked out */
152         LASSERT_REPSWABBED(req, DLM_REPLY_REC_OFF);       /* and swabbed down */
153
154         /* already opened? */
155         if (lli->lli_open_count++)
156                 RETURN(0);
157
158         LASSERT(!lli->lli_file_data);
159
160         OBD_ALLOC(fd, sizeof(*fd));
161         /* We can't handle this well without reorganizing ll_file_open and
162          * ll_md_close, so don't even try right now. */
163         LASSERT(fd != NULL);
164
165         memcpy(&fd->fd_mds_och.och_fh, &body->handle, sizeof(body->handle));
166         fd->fd_mds_och.och_magic = OBD_CLIENT_HANDLE_MAGIC;
167         fd->fd_mds_och.och_fid   = lli->lli_fid;
168         lli->lli_file_data = fd;
169
170         md_set_open_replay_data(lli->lli_sbi->ll_md_exp,
171                                 &fd->fd_mds_och, it->d.lustre.it_data);
172
173         RETURN(0);
174 }
175
176 int llu_iop_open(struct pnode *pnode, int flags, mode_t mode)
177 {
178         struct inode *inode = pnode->p_base->pb_ino;
179         struct llu_inode_info *lli = llu_i2info(inode);
180         struct intnl_stat *st = llu_i2stat(inode);
181         struct ll_file_data *fd;
182         struct ptlrpc_request *request;
183         struct lookup_intent *it;
184         struct lov_stripe_md *lsm;
185         int rc = 0;
186         ENTRY;
187
188         liblustre_wait_event(0);
189
190         /* don't do anything for '/' */
191         if (llu_is_root_inode(inode))
192                 RETURN(0);
193
194         CDEBUG(D_VFSTRACE, "VFS Op:inode=%llu\n", (long long)st->st_ino);
195         LL_GET_INTENT(inode, it);
196
197         if (!it->d.lustre.it_disposition) {
198                 LBUG();
199         }
200
201         rc = it_open_error(DISP_OPEN_OPEN, it);
202         if (rc)
203                 GOTO(out_release, rc);
204
205         rc = llu_local_open(lli, it);
206         if (rc)
207                 LBUG();
208
209         if (!S_ISREG(st->st_mode))
210                 GOTO(out_release, rc = 0);
211
212         fd = lli->lli_file_data;
213
214         lsm = lli->lli_smd;
215         if (lsm == NULL) {
216                 if (fd->fd_flags & O_LOV_DELAY_CREATE) {
217                         CDEBUG(D_INODE, "object creation was delayed\n");
218                         GOTO(out_release, rc);
219                 }
220         }
221         fd->fd_flags &= ~O_LOV_DELAY_CREATE;
222
223         lli->lli_open_flags = flags & ~(O_CREAT | O_EXCL | O_TRUNC);
224
225  out_release:
226         request = it->d.lustre.it_data;
227         ptlrpc_req_finished(request);
228
229         it->it_op_release(it);
230         OBD_FREE(it, sizeof(*it));
231
232         /* libsysio hasn't done anything for O_TRUNC. here we
233          * simply simulate it as open(...); truncate(...); */
234         if (rc == 0 && (flags & O_TRUNC) && S_ISREG(st->st_mode)) {
235                 struct iattr attr;
236
237                 memset(&attr, 0, sizeof(attr));
238                 attr.ia_size = 0;
239                 attr.ia_valid |= ATTR_SIZE | ATTR_RAW;
240                 rc = llu_setattr_raw(inode, &attr);
241                 if (rc)
242                         CERROR("error %d truncate in open()\n", rc);
243         }
244
245         liblustre_wait_event(0);
246         RETURN(rc);
247 }
248
249 int llu_objects_destroy(struct ptlrpc_request *request, struct inode *dir)
250 {
251         struct mdt_body *body;
252         struct lov_mds_md *eadata;
253         struct lov_stripe_md *lsm = NULL;
254         struct obd_trans_info oti = { 0 };
255         struct obdo *oa;
256         int rc;
257         ENTRY;
258
259         /* req is swabbed so this is safe */
260         body = lustre_msg_buf(request->rq_repmsg, REPLY_REC_OFF, sizeof(*body));
261
262         if (!(body->valid & OBD_MD_FLEASIZE))
263                 RETURN(0);
264
265         if (body->eadatasize == 0) {
266                 CERROR("OBD_MD_FLEASIZE set but eadatasize zero\n");
267                 GOTO(out, rc = -EPROTO);
268         }
269
270         /* The MDS sent back the EA because we unlinked the last reference
271          * to this file. Use this EA to unlink the objects on the OST.
272          * It's opaque so we don't swab here; we leave it to obd_unpackmd() to
273          * check it is complete and sensible. */
274         eadata = lustre_swab_repbuf(request, REPLY_REC_OFF+1, body->eadatasize,
275                                     NULL);
276         LASSERT(eadata != NULL);
277         if (eadata == NULL) {
278                 CERROR("Can't unpack MDS EA data\n");
279                 GOTO(out, rc = -EPROTO);
280         }
281
282         rc = obd_unpackmd(llu_i2obdexp(dir), &lsm, eadata,body->eadatasize);
283         if (rc < 0) {
284                 CERROR("obd_unpackmd: %d\n", rc);
285                 GOTO(out, rc);
286         }
287         LASSERT(rc >= sizeof(*lsm));
288
289         OBDO_ALLOC(oa);
290         if (oa == NULL)
291                 GOTO(out_free_memmd, rc = -ENOMEM);
292
293         oa->o_id = lsm->lsm_object_id;
294         oa->o_gr = lsm->lsm_object_gr;
295         oa->o_mode = body->mode & S_IFMT;
296         oa->o_valid = OBD_MD_FLID | OBD_MD_FLTYPE | OBD_MD_FLGROUP;
297
298         if (body->valid & OBD_MD_FLCOOKIE) {
299                 oa->o_valid |= OBD_MD_FLCOOKIE;
300                 oti.oti_logcookies =
301                         lustre_msg_buf(request->rq_repmsg, REPLY_REC_OFF + 2,
302                                        sizeof(struct llog_cookie) *
303                                        lsm->lsm_stripe_count);
304                 if (oti.oti_logcookies == NULL) {
305                         oa->o_valid &= ~OBD_MD_FLCOOKIE;
306                         body->valid &= ~OBD_MD_FLCOOKIE;
307                 }
308         }
309
310         rc = obd_destroy(llu_i2obdexp(dir), oa, lsm, &oti, NULL);
311         OBDO_FREE(oa);
312         if (rc)
313                 CERROR("obd destroy objid 0x"LPX64" error %d\n",
314                        lsm->lsm_object_id, rc);
315  out_free_memmd:
316         obd_free_memmd(llu_i2obdexp(dir), &lsm);
317  out:
318         return rc;
319 }
320
321 int llu_sizeonmds_update(struct inode *inode, struct lustre_handle *fh,
322                          __u64 ioepoch)
323 {
324         struct llu_inode_info *lli = llu_i2info(inode);
325         struct llu_sb_info *sbi = llu_i2sbi(inode);
326         struct md_op_data op_data;
327         struct obdo oa;
328         int rc;
329         ENTRY;
330         
331         LASSERT(!(lli->lli_flags & LLIF_MDS_SIZE_LOCK));
332         LASSERT(sbi->ll_lco.lco_flags & OBD_CONNECT_SOM);
333         
334         rc = llu_inode_getattr(inode, &oa);
335         if (rc) {
336                 CERROR("inode_getattr failed (%d): unable to send a "
337                        "Size-on-MDS attribute update for inode %llu/%lu\n",
338                        rc, (long long)llu_i2stat(inode)->st_ino,
339                        lli->lli_st_generation);
340                 RETURN(rc);
341         }
342         
343         md_from_obdo(&op_data, &oa, oa.o_valid);
344         memcpy(&op_data.op_handle, fh, sizeof(*fh));
345         op_data.op_ioepoch = ioepoch;
346         op_data.op_flags |= MF_SOM_CHANGE;
347
348         rc = llu_md_setattr(inode, &op_data);
349         RETURN(rc);
350 }
351
352 int llu_md_close(struct obd_export *md_exp, struct inode *inode)
353 {
354         struct llu_inode_info *lli = llu_i2info(inode);
355         struct ll_file_data *fd = lli->lli_file_data;
356         struct ptlrpc_request *req = NULL;
357         struct obd_client_handle *och = &fd->fd_mds_och;
358         struct intnl_stat *st = llu_i2stat(inode);
359         struct md_op_data op_data = { { 0 } };
360         int rc;
361         ENTRY;
362
363         /* clear group lock, if present */
364         if (fd->fd_flags & LL_FILE_GROUP_LOCKED) {
365                 struct lov_stripe_md *lsm = llu_i2info(inode)->lli_smd;
366                 fd->fd_flags &= ~(LL_FILE_GROUP_LOCKED|LL_FILE_IGNORE_LOCK);
367                 rc = llu_extent_unlock(fd, inode, lsm, LCK_GROUP,
368                                        &fd->fd_cwlockh);
369         }
370
371         op_data.op_attr.ia_valid = ATTR_MODE | ATTR_ATIME_SET |
372                                 ATTR_MTIME_SET | ATTR_CTIME_SET;
373         
374         if (fd->fd_flags & FMODE_WRITE) {
375                 struct llu_sb_info *sbi = llu_i2sbi(inode);
376                 if (!(sbi->ll_lco.lco_flags & OBD_CONNECT_SOM) ||
377                     !S_ISREG(llu_i2stat(inode)->st_mode)) {
378                         op_data.op_attr.ia_valid |= ATTR_SIZE | ATTR_BLOCKS;
379                 } else {
380                         /* Inode cannot be dirty. Close the epoch. */
381                         op_data.op_flags |= MF_EPOCH_CLOSE;
382                         /* XXX: Send CHANGE flag only if Size-on-MDS inode attributes
383                          * are really changed.  */
384                         op_data.op_flags |= MF_SOM_CHANGE;
385
386                         /* Pack Size-on-MDS attributes if we are in IO epoch and 
387                          * attributes are valid. */
388                         LASSERT(!(lli->lli_flags & LLIF_MDS_SIZE_LOCK));
389                         if (!llu_local_size(inode))
390                                 op_data.op_attr.ia_valid |= 
391                                         OBD_MD_FLSIZE | OBD_MD_FLBLOCKS;
392                 }
393         }
394         op_data.op_fid1 = lli->lli_fid;
395         op_data.op_attr.ia_atime = st->st_atime;
396         op_data.op_attr.ia_mtime = st->st_mtime;
397         op_data.op_attr.ia_ctime = st->st_ctime;
398         op_data.op_attr.ia_size = st->st_size;
399         op_data.op_attr_blocks = st->st_blocks;
400         op_data.op_attr.ia_attr_flags = lli->lli_st_flags;
401         op_data.op_ioepoch = lli->lli_ioepoch;
402         memcpy(&op_data.op_handle, &och->och_fh, sizeof(op_data.op_handle));
403
404         rc = md_close(md_exp, &op_data, och, &req);
405         if (rc == -EAGAIN) {
406                 /* We are the last writer, so the MDS has instructed us to get
407                  * the file size and any write cookies, then close again. */
408                 LASSERT(fd->fd_flags & FMODE_WRITE);
409                 rc = llu_sizeonmds_update(inode, &och->och_fh,
410                                           op_data.op_ioepoch);
411                 if (rc) {
412                         CERROR("inode %llu mdc Size-on-MDS update failed: "
413                                "rc = %d\n", (long long)st->st_ino, rc);
414                         rc = 0;
415                 }
416         } else if (rc) {
417                 CERROR("inode %llu close failed: rc %d\n",
418                        (long long)st->st_ino, rc);
419         } else {
420                 rc = llu_objects_destroy(req, inode);
421                 if (rc)
422                         CERROR("inode %llu ll_objects destroy: rc = %d\n",
423                                (long long)st->st_ino, rc);
424         }
425
426         md_clear_open_replay_data(md_exp, och);
427         ptlrpc_req_finished(req);
428         och->och_fh.cookie = DEAD_HANDLE_MAGIC;
429         lli->lli_file_data = NULL;
430         OBD_FREE(fd, sizeof(*fd));
431
432         RETURN(rc);
433 }
434
435 int llu_file_release(struct inode *inode)
436 {
437         struct ll_file_data *fd;
438         struct llu_sb_info *sbi = llu_i2sbi(inode);
439         struct llu_inode_info *lli = llu_i2info(inode);
440         int rc = 0, rc2;
441
442         ENTRY;
443         CDEBUG(D_VFSTRACE, "VFS Op:inode=%llu/%lu\n",
444                (long long)llu_i2stat(inode)->st_ino, lli->lli_st_generation);
445
446         if (llu_is_root_inode(inode))
447                 RETURN(0);
448
449         /* still opened by others? */
450         if (--lli->lli_open_count)
451                 RETURN(0);
452
453         fd = lli->lli_file_data;
454         if (!fd) /* no process opened the file after an mcreate */
455                 RETURN(0);
456
457         rc2 = llu_md_close(sbi->ll_md_exp, inode);
458         if (rc2 && !rc)
459                 rc = rc2;
460
461         RETURN(rc);
462 }
463
464 /*
465  * libsysio require us return 0
466  */
467 int llu_iop_close(struct inode *inode)
468 {
469         int rc;
470
471         liblustre_wait_event(0);
472
473         rc = llu_file_release(inode);
474         if (rc) {
475                 CERROR("file close error %d\n", rc);
476         }
477         /* if open count == 0 && stale_flag is set, should we
478          * remove the inode immediately? */
479         liblustre_wait_event(0);
480         return 0;
481 }
482
483 _SYSIO_OFF_T llu_iop_pos(struct inode *ino, _SYSIO_OFF_T off)
484 {
485         ENTRY;
486
487         liblustre_wait_event(0);
488
489         if (off < 0 || off > ll_file_maxbytes(ino))
490                 RETURN(-EINVAL);
491
492         RETURN(off);
493 }
494
495 /* this isn't where truncate starts.  roughly:
496  * llu_iop_{open,setattr}->llu_setattr_raw->llu_vmtruncate->llu_truncate
497  * we grab the lock back in setattr_raw to avoid races. */
498 static void llu_truncate(struct inode *inode, obd_flag flags)
499 {
500         struct llu_inode_info *lli = llu_i2info(inode);
501         struct intnl_stat *st = llu_i2stat(inode);
502         struct obd_info oinfo = { { { 0 } } };
503         struct obdo oa = { 0 };
504         int rc;
505         ENTRY;
506         CDEBUG(D_VFSTRACE, "VFS Op:inode=%llu/%lu(%p) to %llu\n",
507                (long long)st->st_ino, lli->lli_st_generation, inode,
508                (long long)st->st_size);
509
510         if (!lli->lli_smd) {
511                 CDEBUG(D_INODE, "truncate on inode %llu with no objects\n",
512                        (long long)st->st_ino);
513                 EXIT;
514                 return;
515         }
516
517         oinfo.oi_md = lli->lli_smd;
518         oinfo.oi_policy.l_extent.start = st->st_size;
519         oinfo.oi_policy.l_extent.end = OBD_OBJECT_EOF;
520         oinfo.oi_oa = &oa;
521         oa.o_id = lli->lli_smd->lsm_object_id;
522         oa.o_valid = OBD_MD_FLID | OBD_MD_FLFLAGS;
523         oa.o_flags = flags; /* We don't actually want to copy inode flags */
524  
525         obdo_from_inode(&oa, inode,
526                         OBD_MD_FLTYPE | OBD_MD_FLMODE | OBD_MD_FLATIME |
527                         OBD_MD_FLMTIME | OBD_MD_FLCTIME);
528
529         obd_adjust_kms(llu_i2obdexp(inode), lli->lli_smd, st->st_size, 1);
530
531         CDEBUG(D_INFO, "calling punch for "LPX64" (all bytes after %Lu)\n",
532                oa.o_id, (long long)st->st_size);
533
534         /* truncate == punch from new size to absolute end of file */
535         rc = obd_punch_rqset(llu_i2obdexp(inode), &oinfo, NULL);
536         if (rc)
537                 CERROR("obd_truncate fails (%d) ino %llu\n",
538                        rc, (long long)st->st_ino);
539         else
540                 obdo_to_inode(inode, &oa, OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
541                                           OBD_MD_FLATIME | OBD_MD_FLMTIME |
542                                           OBD_MD_FLCTIME);
543
544         EXIT;
545         return;
546 } /* llu_truncate */
547
548 int llu_vmtruncate(struct inode * inode, loff_t offset, obd_flag flags)
549 {
550         llu_i2stat(inode)->st_size = offset;
551
552         /*
553          * llu_truncate() is only called from this
554          * point. llu_vmtruncate/llu_truncate split exists to mimic the
555          * structure of Linux VFS truncate code path.
556          */
557
558         llu_truncate(inode, flags);
559
560         return 0;
561 }