Whamcloud - gitweb
2ce763904c09f5dbc2efc4e0dd6d69be3024c116
[fs/lustre-release.git] / lustre / llite / llite_internal.h
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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef LLITE_INTERNAL_H
38 #define LLITE_INTERNAL_H
39 #include <lustre_debug.h>
40 #include <lustre_ver.h>
41 #include <lustre_disk.h>  /* for s2sbi */
42 #include <lustre_eacl.h>
43 #include <lustre_linkea.h>
44
45 /* for struct cl_lock_descr and struct cl_io */
46 #include <cl_object.h>
47 #include <lclient.h>
48 #include <lustre_lmv.h>
49 #include <lustre_mdc.h>
50 #include <lustre_intent.h>
51 #include <linux/compat.h>
52
53 #include "range_lock.h"
54
55 #ifndef FMODE_EXEC
56 #define FMODE_EXEC 0
57 #endif
58
59 #ifndef VM_FAULT_RETRY
60 #define VM_FAULT_RETRY 0
61 #endif
62
63 /* Kernel 3.1 kills LOOKUP_CONTINUE, LOOKUP_PARENT is equivalent to it.
64  * seem kernel commit 49084c3bb2055c401f3493c13edae14d49128ca0 */
65 #ifndef LOOKUP_CONTINUE
66 #define LOOKUP_CONTINUE LOOKUP_PARENT
67 #endif
68
69 /** Only used on client-side for indicating the tail of dir hash/offset. */
70 #define LL_DIR_END_OFF          0x7fffffffffffffffULL
71 #define LL_DIR_END_OFF_32BIT    0x7fffffffUL
72
73 /* 4UL * 1024 * 1024 */
74 #define LL_MAX_BLKSIZE_BITS 22
75
76 #define LL_IT2STR(it) ((it) ? ldlm_it2str((it)->it_op) : "0")
77 #define LUSTRE_FPRIVATE(file) ((file)->private_data)
78
79 struct ll_dentry_data {
80         struct lookup_intent            *lld_it;
81         unsigned int                    lld_sa_generation;
82         unsigned int                    lld_invalid:1;
83         struct rcu_head                 lld_rcu_head;
84 };
85
86 #define ll_d2d(de) ((struct ll_dentry_data*)((de)->d_fsdata))
87
88 #define LLI_INODE_MAGIC                 0x111d0de5
89 #define LLI_INODE_DEAD                  0xdeadd00d
90
91 /* remote client permission cache */
92 #define REMOTE_PERM_HASHSIZE 16
93
94 struct ll_getname_data {
95 #ifdef HAVE_DIR_CONTEXT
96         struct dir_context      ctx;
97 #endif
98         char            *lgd_name;      /* points to a buffer with NAME_MAX+1 size */
99         struct lu_fid   lgd_fid;        /* target fid we are looking for */
100         int             lgd_found;      /* inode matched? */
101 };
102
103 /* llite setxid/access permission for user on remote client */
104 struct ll_remote_perm {
105         struct hlist_node       lrp_list;
106         uid_t                   lrp_uid;
107         gid_t                   lrp_gid;
108         uid_t                   lrp_fsuid;
109         gid_t                   lrp_fsgid;
110         int                     lrp_access_perm; /* MAY_READ/WRITE/EXEC, this
111                                                     is access permission with
112                                                     lrp_fsuid/lrp_fsgid. */
113 };
114
115 enum lli_flags {
116         /* MDS has an authority for the Size-on-MDS attributes. */
117         LLIF_MDS_SIZE_LOCK      = (1 << 0),
118         /* Epoch close is postponed. */
119         LLIF_EPOCH_PENDING      = (1 << 1),
120         /* DONE WRITING is allowed. */
121         LLIF_DONE_WRITING       = (1 << 2),
122         /* Sizeon-on-MDS attributes are changed. An attribute update needs to
123          * be sent to MDS. */
124         LLIF_SOM_DIRTY          = (1 << 3),
125         /* File data is modified. */
126         LLIF_DATA_MODIFIED      = (1 << 4),
127         /* File is being restored */
128         LLIF_FILE_RESTORING     = (1 << 5),
129         /* Xattr cache is attached to the file */
130         LLIF_XATTR_CACHE        = (1 << 6),
131 };
132
133 struct ll_inode_info {
134         __u32                           lli_inode_magic;
135         __u32                           lli_flags;
136         __u64                           lli_ioepoch;
137
138         spinlock_t                      lli_lock;
139         struct posix_acl                *lli_posix_acl;
140
141         struct hlist_head               *lli_remote_perms;
142         struct mutex                    lli_rmtperm_mutex;
143
144         /* identifying fields for both metadata and data stacks. */
145         struct lu_fid                   lli_fid;
146         /* master inode fid for stripe directory */
147         struct lu_fid                   lli_pfid;
148
149         struct list_head                lli_close_list;
150         struct list_head                lli_oss_capas;
151         /* open count currently used by capability only, indicate whether
152          * capability needs renewal */
153         atomic_t                        lli_open_count;
154         struct obd_capa                *lli_mds_capa;
155         cfs_time_t                      lli_rmtperm_time;
156
157         /* handle is to be sent to MDS later on done_writing and setattr.
158          * Open handle data are needed for the recovery to reconstruct
159          * the inode state on the MDS. XXX: recovery is not ready yet. */
160         struct obd_client_handle       *lli_pending_och;
161
162         /* We need all three because every inode may be opened in different
163          * modes */
164         struct obd_client_handle       *lli_mds_read_och;
165         struct obd_client_handle       *lli_mds_write_och;
166         struct obd_client_handle       *lli_mds_exec_och;
167         __u64                           lli_open_fd_read_count;
168         __u64                           lli_open_fd_write_count;
169         __u64                           lli_open_fd_exec_count;
170         /* Protects access to och pointers and their usage counters */
171         struct mutex                    lli_och_mutex;
172
173         struct inode                    lli_vfs_inode;
174
175         /* the most recent timestamps obtained from mds */
176         obd_time                        lli_atime;
177         obd_time                        lli_mtime;
178         obd_time                        lli_ctime;
179         spinlock_t                      lli_agl_lock;
180
181         /* Try to make the d::member and f::member are aligned. Before using
182          * these members, make clear whether it is directory or not. */
183         union {
184                 /* for directory */
185                 struct {
186                         /* serialize normal readdir and statahead-readdir. */
187                         struct mutex                    lli_readdir_mutex;
188
189                         /* metadata statahead */
190                         /* since parent-child threads can share the same @file
191                          * struct, "opendir_key" is the token when dir close for
192                          * case of parent exit before child -- it is me should
193                          * cleanup the dir readahead. */
194                         void                           *lli_opendir_key;
195                         struct ll_statahead_info       *lli_sai;
196                         /* protect statahead stuff. */
197                         spinlock_t                      lli_sa_lock;
198                         /* "opendir_pid" is the token when lookup/revalid
199                          * -- I am the owner of dir statahead. */
200                         pid_t                           lli_opendir_pid;
201                         /* stat will try to access statahead entries or start
202                          * statahead if this flag is set, and this flag will be
203                          * set upon dir open, and cleared when dir is closed,
204                          * statahead hit ratio is too low, or start statahead
205                          * thread failed. */
206                         unsigned int                    lli_sa_enabled:1;
207                         /* generation for statahead */
208                         unsigned int                    lli_sa_generation;
209                         /* directory stripe information */
210                         struct lmv_stripe_md            *lli_lsm_md;
211                         /* striped directory size */
212                         loff_t                          lli_stripe_dir_size;
213                         /* striped directory nlink */
214                         __u64                           lli_stripe_dir_nlink;
215                 };
216
217                 /* for non-directory */
218                 struct {
219                         struct mutex                    lli_size_mutex;
220                         char                           *lli_symlink_name;
221                         __u64                           lli_maxbytes;
222                         /*
223                          * struct rw_semaphore {
224                          *    signed long       count;     // align d.d_def_acl
225                          *    spinlock_t        wait_lock; // align d.d_sa_lock
226                          *    struct list_head wait_list;
227                          * }
228                          */
229                         struct rw_semaphore             lli_trunc_sem;
230                         struct range_lock_tree          lli_write_tree;
231
232                         struct rw_semaphore             lli_glimpse_sem;
233                         cfs_time_t                      lli_glimpse_time;
234                         struct list_head                lli_agl_list;
235                         __u64                           lli_agl_index;
236
237                         /* for writepage() only to communicate to fsync */
238                         int                             lli_async_rc;
239
240                         /*
241                          * whenever a process try to read/write the file, the
242                          * jobid of the process will be saved here, and it'll
243                          * be packed into the write PRC when flush later.
244                          *
245                          * so the read/write statistics for jobid will not be
246                          * accurate if the file is shared by different jobs.
247                          */
248                         char                    lli_jobid[LUSTRE_JOBID_SIZE];
249                 };
250         };
251
252         /* XXX: For following frequent used members, although they maybe special
253          *      used for non-directory object, it is some time-wasting to check
254          *      whether the object is directory or not before using them. On the
255          *      other hand, currently, sizeof(f) > sizeof(d), it cannot reduce
256          *      the "ll_inode_info" size even if moving those members into u.f.
257          *      So keep them out side.
258          *
259          *      In the future, if more members are added only for directory,
260          *      some of the following members can be moved into u.f.
261          */
262         bool                            lli_has_smd;
263         struct cl_object               *lli_clob;
264
265         /* mutex to request for layout lock exclusively. */
266         struct mutex                    lli_layout_mutex;
267         /* Layout version, protected by lli_layout_lock */
268         __u32                           lli_layout_gen;
269         spinlock_t                      lli_layout_lock;
270
271         struct rw_semaphore             lli_xattrs_list_rwsem;
272         struct mutex                    lli_xattrs_enq_lock;
273         struct list_head                lli_xattrs; /* ll_xattr_entry->xe_list */
274 };
275
276 static inline __u32 ll_layout_version_get(struct ll_inode_info *lli)
277 {
278         __u32 gen;
279
280         spin_lock(&lli->lli_layout_lock);
281         gen = lli->lli_layout_gen;
282         spin_unlock(&lli->lli_layout_lock);
283
284         return gen;
285 }
286
287 static inline void ll_layout_version_set(struct ll_inode_info *lli, __u32 gen)
288 {
289         spin_lock(&lli->lli_layout_lock);
290         lli->lli_layout_gen = gen;
291         spin_unlock(&lli->lli_layout_lock);
292 }
293
294 int ll_xattr_cache_destroy(struct inode *inode);
295
296 int ll_xattr_cache_get(struct inode *inode,
297                         const char *name,
298                         char *buffer,
299                         size_t size,
300                         __u64 valid);
301
302 /*
303  * Locking to guarantee consistency of non-atomic updates to long long i_size,
304  * consistency between file size and KMS.
305  *
306  * Implemented by ->lli_size_mutex and ->lsm_lock, nested in that order.
307  */
308
309 void ll_inode_size_lock(struct inode *inode);
310 void ll_inode_size_unlock(struct inode *inode);
311
312 // FIXME: replace the name of this with LL_I to conform to kernel stuff
313 // static inline struct ll_inode_info *LL_I(struct inode *inode)
314 static inline struct ll_inode_info *ll_i2info(struct inode *inode)
315 {
316         return container_of(inode, struct ll_inode_info, lli_vfs_inode);
317 }
318
319 /* default to about 40meg of readahead on a given system.  That much tied
320  * up in 512k readahead requests serviced at 40ms each is about 1GB/s. */
321 #define SBI_DEFAULT_READAHEAD_MAX (40UL << (20 - PAGE_CACHE_SHIFT))
322
323 /* default to read-ahead full files smaller than 2MB on the second read */
324 #define SBI_DEFAULT_READAHEAD_WHOLE_MAX (2UL << (20 - PAGE_CACHE_SHIFT))
325
326 enum ra_stat {
327         RA_STAT_HIT = 0,
328         RA_STAT_MISS,
329         RA_STAT_DISTANT_READPAGE,
330         RA_STAT_MISS_IN_WINDOW,
331         RA_STAT_FAILED_GRAB_PAGE,
332         RA_STAT_FAILED_MATCH,
333         RA_STAT_DISCARDED,
334         RA_STAT_ZERO_LEN,
335         RA_STAT_ZERO_WINDOW,
336         RA_STAT_EOF,
337         RA_STAT_MAX_IN_FLIGHT,
338         RA_STAT_WRONG_GRAB_PAGE,
339         RA_STAT_FAILED_REACH_END,
340         _NR_RA_STAT,
341 };
342
343 struct ll_ra_info {
344         atomic_t        ra_cur_pages;
345         unsigned long   ra_max_pages;
346         unsigned long   ra_max_pages_per_file;
347         unsigned long   ra_max_read_ahead_whole_pages;
348 };
349
350 /* ra_io_arg will be filled in the beginning of ll_readahead with
351  * ras_lock, then the following ll_read_ahead_pages will read RA
352  * pages according to this arg, all the items in this structure are
353  * counted by page index.
354  */
355 struct ra_io_arg {
356         unsigned long ria_start;  /* start offset of read-ahead*/
357         unsigned long ria_end;    /* end offset of read-ahead*/
358         /* If stride read pattern is detected, ria_stoff means where
359          * stride read is started. Note: for normal read-ahead, the
360          * value here is meaningless, and also it will not be accessed*/
361         pgoff_t ria_stoff;
362         /* ria_length and ria_pages are the length and pages length in the
363          * stride I/O mode. And they will also be used to check whether
364          * it is stride I/O read-ahead in the read-ahead pages*/
365         unsigned long ria_length;
366         unsigned long ria_pages;
367 };
368
369 /* LL_HIST_MAX=32 causes an overflow */
370 #define LL_HIST_MAX 28
371 #define LL_HIST_START 12 /* buckets start at 2^12 = 4k */
372 #define LL_PROCESS_HIST_MAX 10
373 struct per_process_info {
374         pid_t pid;
375         struct obd_histogram pp_r_hist;
376         struct obd_histogram pp_w_hist;
377 };
378
379 /* pp_extents[LL_PROCESS_HIST_MAX] will hold the combined process info */
380 struct ll_rw_extents_info {
381         struct per_process_info pp_extents[LL_PROCESS_HIST_MAX + 1];
382 };
383
384 #define LL_OFFSET_HIST_MAX 100
385 struct ll_rw_process_info {
386         pid_t                     rw_pid;
387         int                       rw_op;
388         loff_t                    rw_range_start;
389         loff_t                    rw_range_end;
390         loff_t                    rw_last_file_pos;
391         loff_t                    rw_offset;
392         size_t                    rw_smallest_extent;
393         size_t                    rw_largest_extent;
394         struct ll_file_data      *rw_last_file;
395 };
396
397 enum stats_track_type {
398         STATS_TRACK_ALL = 0,  /* track all processes */
399         STATS_TRACK_PID,      /* track process with this pid */
400         STATS_TRACK_PPID,     /* track processes with this ppid */
401         STATS_TRACK_GID,      /* track processes with this gid */
402         STATS_TRACK_LAST,
403 };
404
405 /* flags for sbi->ll_flags */
406 #define LL_SBI_NOLCK             0x01 /* DLM locking disabled (directio-only) */
407 #define LL_SBI_CHECKSUM          0x02 /* checksum each page as it's written */
408 #define LL_SBI_FLOCK             0x04
409 #define LL_SBI_USER_XATTR        0x08 /* support user xattr */
410 #define LL_SBI_ACL               0x10 /* support ACL */
411 #define LL_SBI_RMT_CLIENT        0x40 /* remote client */
412 #define LL_SBI_MDS_CAPA          0x80 /* support mds capa */
413 #define LL_SBI_OSS_CAPA         0x100 /* support oss capa */
414 #define LL_SBI_LOCALFLOCK       0x200 /* Local flocks support by kernel */
415 #define LL_SBI_LRU_RESIZE       0x400 /* lru resize support */
416 #define LL_SBI_LAZYSTATFS       0x800 /* lazystatfs mount option */
417 #define LL_SBI_SOM_PREVIEW     0x1000 /* SOM preview mount option */
418 #define LL_SBI_32BIT_API       0x2000 /* generate 32 bit inodes. */
419 #define LL_SBI_64BIT_HASH      0x4000 /* support 64-bits dir hash/offset */
420 #define LL_SBI_AGL_ENABLED     0x8000 /* enable agl */
421 #define LL_SBI_VERBOSE        0x10000 /* verbose mount/umount */
422 #define LL_SBI_LAYOUT_LOCK    0x20000 /* layout lock support */
423 #define LL_SBI_USER_FID2PATH  0x40000 /* allow fid2path by unprivileged users */
424 #define LL_SBI_XATTR_CACHE    0x80000 /* support for xattr cache */
425 #define LL_SBI_NOROOTSQUASH  0x100000 /* do not apply root squash */
426
427 #define LL_SBI_FLAGS {  \
428         "nolck",        \
429         "checksum",     \
430         "flock",        \
431         "user_xattr",   \
432         "acl",          \
433         "???",          \
434         "rmt_client",   \
435         "mds_capa",     \
436         "oss_capa",     \
437         "flock",        \
438         "lru_resize",   \
439         "lazy_statfs",  \
440         "som",          \
441         "32bit_api",    \
442         "64bit_hash",   \
443         "agl",          \
444         "verbose",      \
445         "layout",       \
446         "user_fid2path",\
447         "xattr_cache",  \
448         "norootsquash", \
449 }
450
451 #define RCE_HASHES      32
452
453 struct rmtacl_ctl_entry {
454         struct list_head       rce_list;
455         pid_t            rce_key; /* hash key */
456         int              rce_ops; /* acl operation type */
457 };
458
459 struct rmtacl_ctl_table {
460         spinlock_t      rct_lock;
461         struct list_head        rct_entries[RCE_HASHES];
462 };
463
464 #define EE_HASHES       32
465
466 struct eacl_entry {
467         struct list_head            ee_list;
468         pid_t                 ee_key; /* hash key */
469         struct lu_fid         ee_fid;
470         int                   ee_type; /* ACL type for ACCESS or DEFAULT */
471         ext_acl_xattr_header *ee_acl;
472 };
473
474 struct eacl_table {
475         spinlock_t      et_lock;
476         struct list_head        et_entries[EE_HASHES];
477 };
478
479
480 /* This is embedded into llite super-blocks to keep track of connect
481  * flags (capabilities) supported by all imports given mount is
482  * connected to. */
483 struct lustre_client_ocd {
484         /* This is conjunction of connect_flags across all imports
485          * (LOVs) this mount is connected to. This field is updated by
486          * cl_ocd_update() under ->lco_lock. */
487         __u64                    lco_flags;
488         struct mutex             lco_lock;
489         struct obd_export       *lco_md_exp;
490         struct obd_export       *lco_dt_exp;
491 };
492
493 struct ll_sb_info {
494         struct list_head                  ll_list;
495         /* this protects pglist and ra_info.  It isn't safe to
496          * grab from interrupt contexts */
497         spinlock_t                ll_lock;
498         spinlock_t                ll_pp_extent_lock; /* pp_extent entry*/
499         spinlock_t                ll_process_lock; /* ll_rw_process_info */
500         struct obd_uuid           ll_sb_uuid;
501         struct obd_export        *ll_md_exp;
502         struct obd_export        *ll_dt_exp;
503         struct proc_dir_entry*    ll_proc_root;
504         struct lu_fid             ll_root_fid; /* root object fid */
505
506         int                       ll_flags;
507         unsigned int              ll_umounting:1,
508                                   ll_xattr_cache_enabled:1;
509         /* per-conn chain of SBs */
510         struct list_head                ll_conn_chain;
511         struct lustre_client_ocd  ll_lco;
512
513         /*please don't ask -p*/
514         struct list_head        ll_orphan_dentry_list;
515         struct ll_close_queue    *ll_lcq;
516
517         struct lprocfs_stats     *ll_stats; /* lprocfs stats counter */
518
519         /* Used to track "unstable" pages on a client, and maintain a
520          * LRU list of clean pages. An "unstable" page is defined as
521          * any page which is sent to a server as part of a bulk request,
522          * but is uncommitted to stable storage. */
523         struct cl_client_cache    ll_cache;
524
525         struct lprocfs_stats     *ll_ra_stats;
526
527         struct ll_ra_info         ll_ra_info;
528         unsigned int              ll_namelen;
529         struct file_operations   *ll_fop;
530
531         /* =0 - hold lock over whole read/write
532          * >0 - max. chunk to be read/written w/o lock re-acquiring */
533         unsigned long             ll_max_rw_chunk;
534         unsigned int              ll_md_brw_pages; /* readdir pages per RPC */
535
536         struct lu_site           *ll_site;
537         struct cl_device         *ll_cl;
538         /* Statistics */
539         struct ll_rw_extents_info ll_rw_extents_info;
540         int                       ll_extent_process_count;
541         struct ll_rw_process_info ll_rw_process_info[LL_PROCESS_HIST_MAX];
542         unsigned int              ll_offset_process_count;
543         struct ll_rw_process_info ll_rw_offset_info[LL_OFFSET_HIST_MAX];
544         unsigned int              ll_rw_offset_entry_count;
545         int                       ll_stats_track_id;
546         enum stats_track_type     ll_stats_track_type;
547         int                       ll_rw_stats_on;
548
549         /* metadata stat-ahead */
550         unsigned int              ll_sa_max;     /* max statahead RPCs */
551         atomic_t                  ll_sa_total;   /* statahead thread started
552                                                   * count */
553         atomic_t                  ll_sa_wrong;   /* statahead thread stopped for
554                                                   * low hit ratio */
555         atomic_t                  ll_sa_running; /* running statahead thread
556                                                   * count */
557         atomic_t                  ll_agl_total;  /* AGL thread started count */
558
559         dev_t                     ll_sdev_orig; /* save s_dev before assign for
560                                                  * clustred nfs */
561         struct rmtacl_ctl_table   ll_rct;
562         struct eacl_table         ll_et;
563
564         /* root squash */
565         struct root_squash_info   ll_squash;
566 };
567
568 #define LL_DEFAULT_MAX_RW_CHUNK      (32 * 1024 * 1024)
569
570 struct ll_ra_read {
571         pgoff_t             lrr_start;
572         pgoff_t             lrr_count;
573         struct task_struct *lrr_reader;
574         struct list_head          lrr_linkage;
575 };
576
577 /*
578  * per file-descriptor read-ahead data.
579  */
580 struct ll_readahead_state {
581         spinlock_t  ras_lock;
582         /*
583          * index of the last page that read(2) needed and that wasn't in the
584          * cache. Used by ras_update() to detect seeks.
585          *
586          * XXX nikita: if access seeks into cached region, Lustre doesn't see
587          * this.
588          */
589         unsigned long   ras_last_readpage;
590         /*
591          * number of pages read after last read-ahead window reset. As window
592          * is reset on each seek, this is effectively a number of consecutive
593          * accesses. Maybe ->ras_accessed_in_window is better name.
594          *
595          * XXX nikita: window is also reset (by ras_update()) when Lustre
596          * believes that memory pressure evicts read-ahead pages. In that
597          * case, it probably doesn't make sense to expand window to
598          * PTLRPC_MAX_BRW_PAGES on the third access.
599          */
600         unsigned long   ras_consecutive_pages;
601         /*
602          * number of read requests after the last read-ahead window reset
603          * As window is reset on each seek, this is effectively the number
604          * on consecutive read request and is used to trigger read-ahead.
605          */
606         unsigned long   ras_consecutive_requests;
607         /*
608          * Parameters of current read-ahead window. Handled by
609          * ras_update(). On the initial access to the file or after a seek,
610          * window is reset to 0. After 3 consecutive accesses, window is
611          * expanded to PTLRPC_MAX_BRW_PAGES. Afterwards, window is enlarged by
612          * PTLRPC_MAX_BRW_PAGES chunks up to ->ra_max_pages.
613          */
614         unsigned long   ras_window_start, ras_window_len;
615         /*
616          * Where next read-ahead should start at. This lies within read-ahead
617          * window. Read-ahead window is read in pieces rather than at once
618          * because: 1. lustre limits total number of pages under read-ahead by
619          * ->ra_max_pages (see ll_ra_count_get()), 2. client cannot read pages
620          * not covered by DLM lock.
621          */
622         unsigned long   ras_next_readahead;
623         /*
624          * Total number of ll_file_read requests issued, reads originating
625          * due to mmap are not counted in this total.  This value is used to
626          * trigger full file read-ahead after multiple reads to a small file.
627          */
628         unsigned long   ras_requests;
629         /*
630          * Page index with respect to the current request, these value
631          * will not be accurate when dealing with reads issued via mmap.
632          */
633         unsigned long   ras_request_index;
634         /*
635          * list of struct ll_ra_read's one per read(2) call current in
636          * progress against this file descriptor. Used by read-ahead code,
637          * protected by ->ras_lock.
638          */
639         struct list_head      ras_read_beads;
640         /*
641          * The following 3 items are used for detecting the stride I/O
642          * mode.
643          * In stride I/O mode,
644          * ...............|-----data-----|****gap*****|--------|******|....
645          *    offset      |-stride_pages-|-stride_gap-|
646          * ras_stride_offset = offset;
647          * ras_stride_length = stride_pages + stride_gap;
648          * ras_stride_pages = stride_pages;
649          * Note: all these three items are counted by pages.
650          */
651         unsigned long   ras_stride_length;
652         unsigned long   ras_stride_pages;
653         pgoff_t         ras_stride_offset;
654         /*
655          * number of consecutive stride request count, and it is similar as
656          * ras_consecutive_requests, but used for stride I/O mode.
657          * Note: only more than 2 consecutive stride request are detected,
658          * stride read-ahead will be enable
659          */
660         unsigned long   ras_consecutive_stride_requests;
661 };
662
663 extern struct kmem_cache *ll_file_data_slab;
664 struct lustre_handle;
665 struct ll_file_data {
666         struct ll_readahead_state fd_ras;
667         struct ccc_grouplock fd_grouplock;
668         __u64 lfd_pos;
669         __u32 fd_flags;
670         fmode_t fd_omode;
671         /* openhandle if lease exists for this file.
672          * Borrow lli->lli_och_mutex to protect assignment */
673         struct obd_client_handle *fd_lease_och;
674         struct obd_client_handle *fd_och;
675         struct file *fd_file;
676         /* Indicate whether need to report failure when close.
677          * true: failure is known, not report again.
678          * false: unknown failure, should report. */
679         bool fd_write_failed;
680         rwlock_t fd_lock; /* protect lcc list */
681         struct list_head fd_lccs; /* list of ll_cl_context */
682 };
683
684 struct lov_stripe_md;
685
686 extern spinlock_t inode_lock;
687
688 extern struct proc_dir_entry *proc_lustre_fs_root;
689
690 static inline struct inode *ll_info2i(struct ll_inode_info *lli)
691 {
692         return &lli->lli_vfs_inode;
693 }
694
695 __u32 ll_i2suppgid(struct inode *i);
696 void ll_i2gids(__u32 *suppgids, struct inode *i1,struct inode *i2);
697
698 static inline int ll_need_32bit_api(struct ll_sb_info *sbi)
699 {
700 #if BITS_PER_LONG == 32
701         return 1;
702 #elif defined(CONFIG_COMPAT)
703         return unlikely(is_compat_task() || (sbi->ll_flags & LL_SBI_32BIT_API));
704 #else
705         return unlikely(sbi->ll_flags & LL_SBI_32BIT_API);
706 #endif
707 }
708
709 void ll_ra_read_in(struct file *f, struct ll_ra_read *rar);
710 void ll_ra_read_ex(struct file *f, struct ll_ra_read *rar);
711 struct ll_ra_read *ll_ra_read_get(struct file *f);
712
713 /* llite/lproc_llite.c */
714 #ifdef LPROCFS
715 int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
716                                 struct super_block *sb, char *osc, char *mdc);
717 void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi);
718 void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count);
719 extern struct lprocfs_seq_vars lprocfs_llite_obd_vars[];
720 #else
721 static inline int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
722                         struct super_block *sb, char *osc, char *mdc){return 0;}
723 static inline void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi) {}
724 static void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count) {}
725 #endif
726
727 enum {
728         LPROC_LL_DIRTY_HITS,
729         LPROC_LL_DIRTY_MISSES,
730         LPROC_LL_READ_BYTES,
731         LPROC_LL_WRITE_BYTES,
732         LPROC_LL_BRW_READ,
733         LPROC_LL_BRW_WRITE,
734         LPROC_LL_OSC_READ,
735         LPROC_LL_OSC_WRITE,
736         LPROC_LL_IOCTL,
737         LPROC_LL_OPEN,
738         LPROC_LL_RELEASE,
739         LPROC_LL_MAP,
740         LPROC_LL_LLSEEK,
741         LPROC_LL_FSYNC,
742         LPROC_LL_READDIR,
743         LPROC_LL_SETATTR,
744         LPROC_LL_TRUNC,
745         LPROC_LL_FLOCK,
746         LPROC_LL_GETATTR,
747         LPROC_LL_CREATE,
748         LPROC_LL_LINK,
749         LPROC_LL_UNLINK,
750         LPROC_LL_SYMLINK,
751         LPROC_LL_MKDIR,
752         LPROC_LL_RMDIR,
753         LPROC_LL_MKNOD,
754         LPROC_LL_RENAME,
755         LPROC_LL_STAFS,
756         LPROC_LL_ALLOC_INODE,
757         LPROC_LL_SETXATTR,
758         LPROC_LL_GETXATTR,
759         LPROC_LL_GETXATTR_HITS,
760         LPROC_LL_LISTXATTR,
761         LPROC_LL_REMOVEXATTR,
762         LPROC_LL_INODE_PERM,
763         LPROC_LL_FILE_OPCODES
764 };
765
766 /* llite/dir.c */
767 struct ll_dir_chain {
768 };
769
770 static inline void ll_dir_chain_init(struct ll_dir_chain *chain)
771 {
772 }
773
774 static inline void ll_dir_chain_fini(struct ll_dir_chain *chain)
775 {
776 }
777
778 extern const struct file_operations ll_dir_operations;
779 extern const struct inode_operations ll_dir_inode_operations;
780 #ifdef HAVE_DIR_CONTEXT
781 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
782                 struct dir_context *ctx);
783 #else
784 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
785                 void *cookie, filldir_t filldir);
786 #endif
787 int ll_get_mdt_idx(struct inode *inode);
788 int ll_get_mdt_idx_by_fid(struct ll_sb_info *sbi, const struct lu_fid *fid);
789 struct page *ll_get_dir_page(struct inode *dir, struct md_op_data *op_data,
790                              __u64 offset, struct ll_dir_chain *chain);
791 void ll_release_page(struct inode *inode, struct page *page, bool remove);
792
793 /* llite/namei.c */
794 extern const struct inode_operations ll_special_inode_operations;
795
796 struct inode *ll_iget(struct super_block *sb, ino_t hash,
797                       struct lustre_md *lic);
798 int ll_test_inode_by_fid(struct inode *inode, void *opaque);
799 int ll_md_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
800                        void *data, int flag);
801 struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de);
802 int ll_rmdir_entry(struct inode *dir, char *name, int namelen);
803 void ll_update_times(struct ptlrpc_request *request, struct inode *inode);
804
805 /* llite/rw.c */
806 int ll_writepage(struct page *page, struct writeback_control *wbc);
807 int ll_writepages(struct address_space *, struct writeback_control *wbc);
808 int ll_readpage(struct file *file, struct page *page);
809 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras);
810 int ll_readahead(const struct lu_env *env, struct cl_io *io,
811                  struct cl_page_list *queue, struct ll_readahead_state *ras,
812                  bool hit);
813 int vvp_io_write_commit(const struct lu_env *env, struct cl_io *io);
814 struct ll_cl_context *ll_cl_find(struct file *file);
815 void ll_cl_add(struct file *file, const struct lu_env *env, struct cl_io *io);
816 void ll_cl_remove(struct file *file, const struct lu_env *env);
817
818 #ifndef MS_HAS_NEW_AOPS
819 extern const struct address_space_operations ll_aops;
820 #else
821 extern const struct address_space_operations_ext ll_aops;
822 #endif
823
824 /* llite/file.c */
825 extern struct file_operations ll_file_operations;
826 extern struct file_operations ll_file_operations_flock;
827 extern struct file_operations ll_file_operations_noflock;
828 extern struct inode_operations ll_file_inode_operations;
829 extern int ll_have_md_lock(struct inode *inode, __u64 *bits,
830                            ldlm_mode_t l_req_mode);
831 extern ldlm_mode_t ll_take_md_lock(struct inode *inode, __u64 bits,
832                                    struct lustre_handle *lockh, __u64 flags,
833                                    ldlm_mode_t mode);
834
835 int ll_file_open(struct inode *inode, struct file *file);
836 int ll_file_release(struct inode *inode, struct file *file);
837 int ll_glimpse_ioctl(struct ll_sb_info *sbi,
838                      struct lov_stripe_md *lsm, lstat_t *st);
839 void ll_ioepoch_open(struct ll_inode_info *lli, __u64 ioepoch);
840 int ll_release_openhandle(struct dentry *, struct lookup_intent *);
841 int ll_md_real_close(struct inode *inode, fmode_t fmode);
842 void ll_ioepoch_close(struct inode *inode, struct md_op_data *op_data,
843                       struct obd_client_handle **och, unsigned long flags);
844 void ll_done_writing_attr(struct inode *inode, struct md_op_data *op_data);
845 int ll_som_update(struct inode *inode, struct md_op_data *op_data);
846 int ll_inode_getattr(struct inode *inode, struct obdo *obdo,
847                      __u64 ioepoch, int sync);
848 void ll_pack_inode2opdata(struct inode *inode, struct md_op_data *op_data,
849                           struct lustre_handle *fh);
850 extern void ll_rw_stats_tally(struct ll_sb_info *sbi, pid_t pid,
851                               struct ll_file_data *file, loff_t pos,
852                               size_t count, int rw);
853 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat);
854 struct posix_acl *ll_get_acl(struct inode *inode, int type);
855 int ll_migrate(struct inode *parent, struct file *file, int mdtidx,
856                const char *name, int namelen);
857 int ll_get_fid_by_name(struct inode *parent, const char *name,
858                        int namelen, struct lu_fid *fid);
859 #ifdef HAVE_GENERIC_PERMISSION_4ARGS
860 int ll_inode_permission(struct inode *inode, int mask, unsigned int flags);
861 #else
862 # ifndef HAVE_INODE_PERMISION_2ARGS
863 int ll_inode_permission(struct inode *inode, int mask, struct nameidata *nd);
864 # else
865 int ll_inode_permission(struct inode *inode, int mask);
866 # endif
867 #endif
868
869 int ll_lov_setstripe_ea_info(struct inode *inode, struct file *file,
870                              __u64  flags, struct lov_user_md *lum,
871                              int lum_size);
872 int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
873                              struct lov_mds_md **lmm, int *lmm_size,
874                              struct ptlrpc_request **request);
875 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
876                      int set_default);
877 int ll_dir_getstripe(struct inode *inode, void **lmmp,
878                      int *lmm_size, struct ptlrpc_request **request,
879                      obd_valid valid);
880 #ifdef HAVE_FILE_FSYNC_4ARGS
881 int ll_fsync(struct file *file, loff_t start, loff_t end, int data);
882 #elif defined(HAVE_FILE_FSYNC_2ARGS)
883 int ll_fsync(struct file *file, int data);
884 #else
885 int ll_fsync(struct file *file, struct dentry *dentry, int data);
886 #endif
887 int ll_merge_attr(const struct lu_env *env, struct inode *inode);
888 int ll_fid2path(struct inode *inode, void __user *arg);
889 int ll_data_version(struct inode *inode, __u64 *data_version, int flags);
890 int ll_hsm_release(struct inode *inode);
891
892 /* llite/dcache.c */
893
894 int ll_d_init(struct dentry *de);
895 extern const struct dentry_operations ll_d_ops;
896 void ll_intent_drop_lock(struct lookup_intent *);
897 void ll_intent_release(struct lookup_intent *);
898 void ll_invalidate_aliases(struct inode *);
899 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
900 int ll_revalidate_it_finish(struct ptlrpc_request *request,
901                             struct lookup_intent *it, struct dentry *de);
902
903 /* llite/llite_lib.c */
904 extern struct super_operations lustre_super_operations;
905
906 void ll_lli_init(struct ll_inode_info *lli);
907 int ll_fill_super(struct super_block *sb, struct vfsmount *mnt);
908 void ll_put_super(struct super_block *sb);
909 void ll_kill_super(struct super_block *sb);
910 struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock);
911 void ll_clear_inode(struct inode *inode);
912 int ll_setattr_raw(struct dentry *dentry, struct iattr *attr, bool hsm_import);
913 int ll_setattr(struct dentry *de, struct iattr *attr);
914 int ll_statfs(struct dentry *de, struct kstatfs *sfs);
915 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
916                        __u64 max_age, __u32 flags);
917 int ll_update_inode(struct inode *inode, struct lustre_md *md);
918 int ll_read_inode2(struct inode *inode, void *opaque);
919 void ll_delete_inode(struct inode *inode);
920 int ll_iocontrol(struct inode *inode, struct file *file,
921                  unsigned int cmd, unsigned long arg);
922 int ll_flush_ctx(struct inode *inode);
923 void ll_umount_begin(struct super_block *sb);
924 int ll_remount_fs(struct super_block *sb, int *flags, char *data);
925 #ifdef HAVE_SUPEROPS_USE_DENTRY
926 int ll_show_options(struct seq_file *seq, struct dentry *dentry);
927 #else
928 int ll_show_options(struct seq_file *seq, struct vfsmount *vfs);
929 #endif
930 void ll_dirty_page_discard_warn(struct page *page, int ioret);
931 int ll_prep_inode(struct inode **inode, struct ptlrpc_request *req,
932                   struct super_block *, struct lookup_intent *);
933 void lustre_dump_dentry(struct dentry *, int recur);
934 int ll_obd_statfs(struct inode *inode, void __user *arg);
935 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *max_mdsize);
936 int ll_get_default_mdsize(struct ll_sb_info *sbi, int *default_mdsize);
937 int ll_get_max_cookiesize(struct ll_sb_info *sbi, int *max_cookiesize);
938 int ll_get_default_cookiesize(struct ll_sb_info *sbi, int *default_cookiesize);
939 int ll_process_config(struct lustre_cfg *lcfg);
940 struct md_op_data *ll_prep_md_op_data(struct md_op_data *op_data,
941                                       struct inode *i1, struct inode *i2,
942                                       const char *name, size_t namelen,
943                                       __u32 mode, __u32 opc, void *data);
944 void ll_finish_md_op_data(struct md_op_data *op_data);
945 int ll_get_obd_name(struct inode *inode, unsigned int cmd, unsigned long arg);
946 char *ll_get_fsname(struct super_block *sb, char *buf, int buflen);
947 void ll_compute_rootsquash_state(struct ll_sb_info *sbi);
948 ssize_t ll_copy_user_md(const struct lov_user_md __user *md,
949                         struct lov_user_md **kbuf);
950
951 /* Compute expected user md size when passing in a md from user space */
952 static inline ssize_t ll_lov_user_md_size(const struct lov_user_md *lum)
953 {
954         switch (lum->lmm_magic) {
955         case LOV_USER_MAGIC_V1:
956                 return sizeof(struct lov_user_md_v1);
957         case LOV_USER_MAGIC_V3:
958                 return sizeof(struct lov_user_md_v3);
959         case LOV_USER_MAGIC_SPECIFIC:
960                 if (lum->lmm_stripe_count > LOV_MAX_STRIPE_COUNT)
961                         return -EINVAL;
962
963                 return lov_user_md_size(lum->lmm_stripe_count,
964                                         LOV_USER_MAGIC_SPECIFIC);
965         }
966
967         return -EINVAL;
968 }
969
970 /* llite/llite_nfs.c */
971 extern struct export_operations lustre_export_operations;
972 __u32 get_uuid2int(const char *name, int len);
973 struct inode *search_inode_for_lustre(struct super_block *sb,
974                                       const struct lu_fid *fid);
975 int ll_dir_get_parent_fid(struct inode *dir, struct lu_fid *parent_fid);
976
977 /* llite/symlink.c */
978 extern struct inode_operations ll_fast_symlink_inode_operations;
979
980 /* llite/llite_close.c */
981 struct ll_close_queue {
982         spinlock_t              lcq_lock;
983         struct list_head                lcq_head;
984         wait_queue_head_t       lcq_waitq;
985         struct completion       lcq_comp;
986         atomic_t                lcq_stop;
987 };
988
989 struct ccc_object *cl_inode2ccc(struct inode *inode);
990
991
992 void vvp_write_pending (struct ccc_object *club, struct ccc_page *page);
993 void vvp_write_complete(struct ccc_object *club, struct ccc_page *page);
994
995 /* specific achitecture can implement only part of this list */
996 enum vvp_io_subtype {
997         /** normal IO */
998         IO_NORMAL,
999         /** io started from splice_{read|write} */
1000         IO_SPLICE
1001 };
1002
1003 /* IO subtypes */
1004 struct vvp_io {
1005         /** io subtype */
1006         enum vvp_io_subtype    cui_io_subtype;
1007
1008         union {
1009                 struct {
1010                         struct pipe_inode_info *cui_pipe;
1011                         unsigned int            cui_flags;
1012                 } splice;
1013                 struct vvp_fault_io {
1014                         /**
1015                          * Inode modification time that is checked across DLM
1016                          * lock request.
1017                          */
1018                         time_t                 ft_mtime;
1019                         struct vm_area_struct *ft_vma;
1020                         /**
1021                          *  locked page returned from vvp_io
1022                          */
1023                         struct page            *ft_vmpage;
1024                         struct vm_fault_api {
1025                                 /**
1026                                  * kernel fault info
1027                                  */
1028                                 struct vm_fault *ft_vmf;
1029                                 /**
1030                                  * fault API used bitflags for return code.
1031                                  */
1032                                 unsigned int    ft_flags;
1033                                 /**
1034                                  * check that flags are from filemap_fault
1035                                  */
1036                                 bool            ft_flags_valid;
1037                         } fault;
1038                 } fault;
1039         } u;
1040         /**
1041          * Read-ahead state used by read and page-fault IO contexts.
1042          */
1043         struct ll_ra_read    cui_bead;
1044         /**
1045          * Set when cui_bead has been initialized.
1046          */
1047         int                  cui_ra_window_set;
1048 };
1049
1050 /**
1051  * IO arguments for various VFS I/O interfaces.
1052  */
1053 struct vvp_io_args {
1054         /** normal/sendfile/splice */
1055         enum vvp_io_subtype via_io_subtype;
1056
1057         union {
1058                 struct {
1059                         struct kiocb      *via_iocb;
1060                         struct iovec      *via_iov;
1061                         unsigned long      via_nrsegs;
1062                 } normal;
1063                 struct {
1064                         struct pipe_inode_info  *via_pipe;
1065                         unsigned int       via_flags;
1066                 } splice;
1067         } u;
1068 };
1069
1070 struct ll_cl_context {
1071         struct list_head         lcc_list;
1072         void                    *lcc_cookie;
1073         const struct lu_env     *lcc_env;
1074         struct cl_io            *lcc_io;
1075         struct cl_page          *lcc_page;
1076 };
1077
1078 struct vvp_thread_info {
1079         struct iovec         vti_local_iov;
1080         struct vvp_io_args   vti_args;
1081         struct ra_io_arg     vti_ria;
1082         struct kiocb         vti_kiocb;
1083         struct ll_cl_context vti_io_ctx;
1084 };
1085
1086 extern struct lu_context_key vvp_key;
1087
1088 static inline struct vvp_thread_info *vvp_env_info(const struct lu_env *env)
1089 {
1090         struct vvp_thread_info      *info;
1091
1092         info = lu_context_key_get(&env->le_ctx, &vvp_key);
1093         LASSERT(info != NULL);
1094         return info;
1095 }
1096
1097 static inline struct vvp_io_args *vvp_env_args(const struct lu_env *env,
1098                                                enum vvp_io_subtype type)
1099 {
1100         struct vvp_io_args *ret = &vvp_env_info(env)->vti_args;
1101
1102         ret->via_io_subtype = type;
1103
1104         return ret;
1105 }
1106
1107 struct vvp_session {
1108         struct vvp_io         vs_ios;
1109 };
1110
1111 extern struct lu_context_key vvp_session_key;
1112
1113 static inline struct vvp_session *vvp_env_session(const struct lu_env *env)
1114 {
1115         struct vvp_session *ses;
1116
1117         ses = lu_context_key_get(env->le_ses, &vvp_session_key);
1118         LASSERT(ses != NULL);
1119         return ses;
1120 }
1121
1122 static inline struct vvp_io *vvp_env_io(const struct lu_env *env)
1123 {
1124         return &vvp_env_session(env)->vs_ios;
1125 }
1126
1127 int vvp_global_init(void);
1128 void vvp_global_fini(void);
1129
1130 void ll_queue_done_writing(struct inode *inode, unsigned long flags);
1131 void ll_close_thread_shutdown(struct ll_close_queue *lcq);
1132 int ll_close_thread_start(struct ll_close_queue **lcq_ret);
1133
1134 /* llite/llite_mmap.c */
1135
1136 int ll_teardown_mmaps(struct address_space *mapping, __u64 first, __u64 last);
1137 int ll_file_mmap(struct file * file, struct vm_area_struct * vma);
1138 void policy_from_vma(ldlm_policy_data_t *policy,
1139                 struct vm_area_struct *vma, unsigned long addr, size_t count);
1140 struct vm_area_struct *our_vma(struct mm_struct *mm, unsigned long addr,
1141                                size_t count);
1142
1143 static inline void ll_invalidate_page(struct page *vmpage)
1144 {
1145         struct address_space *mapping = vmpage->mapping;
1146         loff_t offset = vmpage->index << PAGE_CACHE_SHIFT;
1147
1148         LASSERT(PageLocked(vmpage));
1149         if (mapping == NULL)
1150                 return;
1151
1152         /*
1153          * truncate_complete_page() calls
1154          * a_ops->invalidatepage()->cl_page_delete()->vvp_page_delete().
1155          */
1156         ll_teardown_mmaps(mapping, offset, offset + PAGE_CACHE_SIZE);
1157         truncate_complete_page(mapping, vmpage);
1158 }
1159
1160 #define    ll_s2sbi(sb)        (s2lsi(sb)->lsi_llsbi)
1161
1162 /* don't need an addref as the sb_info should be holding one */
1163 static inline struct obd_export *ll_s2dtexp(struct super_block *sb)
1164 {
1165         return ll_s2sbi(sb)->ll_dt_exp;
1166 }
1167
1168 /* don't need an addref as the sb_info should be holding one */
1169 static inline struct obd_export *ll_s2mdexp(struct super_block *sb)
1170 {
1171         return ll_s2sbi(sb)->ll_md_exp;
1172 }
1173
1174 static inline struct client_obd *sbi2mdc(struct ll_sb_info *sbi)
1175 {
1176         struct obd_device *obd = sbi->ll_md_exp->exp_obd;
1177         if (obd == NULL)
1178                 LBUG();
1179         return &obd->u.cli;
1180 }
1181
1182 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
1183 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
1184 {
1185         return ll_s2sbi(inode->i_sb);
1186 }
1187
1188 static inline struct obd_export *ll_i2dtexp(struct inode *inode)
1189 {
1190         return ll_s2dtexp(inode->i_sb);
1191 }
1192
1193 static inline struct obd_export *ll_i2mdexp(struct inode *inode)
1194 {
1195         return ll_s2mdexp(inode->i_sb);
1196 }
1197
1198 static inline struct lu_fid *ll_inode2fid(struct inode *inode)
1199 {
1200         struct lu_fid *fid;
1201
1202         LASSERT(inode != NULL);
1203         fid = &ll_i2info(inode)->lli_fid;
1204
1205         return fid;
1206 }
1207
1208 static inline __u64 ll_file_maxbytes(struct inode *inode)
1209 {
1210         return ll_i2info(inode)->lli_maxbytes;
1211 }
1212
1213 /* llite/xattr.c */
1214 int ll_setxattr(struct dentry *dentry, const char *name,
1215                 const void *value, size_t size, int flags);
1216 ssize_t ll_getxattr(struct dentry *dentry, const char *name,
1217                     void *buffer, size_t size);
1218 ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size);
1219 int ll_removexattr(struct dentry *dentry, const char *name);
1220
1221 /* llite/remote_perm.c */
1222 extern struct kmem_cache *ll_remote_perm_cachep;
1223 extern struct kmem_cache *ll_rmtperm_hash_cachep;
1224
1225 void free_rmtperm_hash(struct hlist_head *hash);
1226 int ll_update_remote_perm(struct inode *inode, struct mdt_remote_perm *perm);
1227 int lustre_check_remote_perm(struct inode *inode, int mask);
1228
1229 /* llite/llite_capa.c */
1230 extern struct timer_list ll_capa_timer;
1231
1232 int ll_capa_thread_start(void);
1233 void ll_capa_thread_stop(void);
1234 void ll_capa_timer_callback(unsigned long unused);
1235
1236 struct obd_capa *ll_add_capa(struct inode *inode, struct obd_capa *ocapa);
1237
1238 void ll_capa_open(struct inode *inode);
1239 void ll_capa_close(struct inode *inode);
1240
1241 struct obd_capa *ll_mdscapa_get(struct inode *inode);
1242 struct obd_capa *ll_osscapa_get(struct inode *inode, __u64 opc);
1243
1244 void ll_truncate_free_capa(struct obd_capa *ocapa);
1245 void ll_clear_inode_capas(struct inode *inode);
1246 void ll_print_capa_stat(struct ll_sb_info *sbi);
1247
1248 /* llite/llite_cl.c */
1249 extern struct lu_device_type vvp_device_type;
1250
1251 /**
1252  * Common IO arguments for various VFS I/O interfaces.
1253  */
1254 int cl_sb_init(struct super_block *sb);
1255 int cl_sb_fini(struct super_block *sb);
1256
1257 void ras_update(struct ll_sb_info *sbi, struct inode *inode,
1258                 struct ll_readahead_state *ras, unsigned long index,
1259                 unsigned hit);
1260 void ll_ra_count_put(struct ll_sb_info *sbi, unsigned long len);
1261 void ll_ra_stats_inc(struct inode *inode, enum ra_stat which);
1262
1263 /* llite/llite_rmtacl.c */
1264 #ifdef CONFIG_FS_POSIX_ACL
1265 obd_valid rce_ops2valid(int ops);
1266 struct rmtacl_ctl_entry *rct_search(struct rmtacl_ctl_table *rct, pid_t key);
1267 int rct_add(struct rmtacl_ctl_table *rct, pid_t key, int ops);
1268 int rct_del(struct rmtacl_ctl_table *rct, pid_t key);
1269 void rct_init(struct rmtacl_ctl_table *rct);
1270 void rct_fini(struct rmtacl_ctl_table *rct);
1271
1272 void ee_free(struct eacl_entry *ee);
1273 int ee_add(struct eacl_table *et, pid_t key, struct lu_fid *fid, int type,
1274            ext_acl_xattr_header *header);
1275 struct eacl_entry *et_search_del(struct eacl_table *et, pid_t key,
1276                                  struct lu_fid *fid, int type);
1277 void et_search_free(struct eacl_table *et, pid_t key);
1278 void et_init(struct eacl_table *et);
1279 void et_fini(struct eacl_table *et);
1280 #endif
1281
1282 /* statahead.c */
1283
1284 #define LL_SA_RPC_MIN           2
1285 #define LL_SA_RPC_DEF           32
1286 #define LL_SA_RPC_MAX           8192
1287
1288 #define LL_SA_CACHE_BIT         5
1289 #define LL_SA_CACHE_SIZE        (1 << LL_SA_CACHE_BIT)
1290 #define LL_SA_CACHE_MASK        (LL_SA_CACHE_SIZE - 1)
1291
1292 /* per inode struct, for dir only */
1293 struct ll_statahead_info {
1294         struct dentry          *sai_dentry;
1295         atomic_t                sai_refcount;   /* when access this struct, hold
1296                                                  * refcount */
1297         unsigned int            sai_max;        /* max ahead of lookup */
1298         __u64                   sai_sent;       /* stat requests sent count */
1299         __u64                   sai_replied;    /* stat requests which received
1300                                                  * reply */
1301         __u64                   sai_index;      /* index of statahead entry */
1302         __u64                   sai_index_wait; /* index of entry which is the
1303                                                  * caller is waiting for */
1304         __u64                   sai_hit;        /* hit count */
1305         __u64                   sai_miss;       /* miss count:
1306                                                  * for "ls -al" case, includes
1307                                                  * hidden dentry miss;
1308                                                  * for "ls -l" case, it does not
1309                                                  * include hidden dentry miss.
1310                                                  * "sai_miss_hidden" is used for
1311                                                  * the later case.
1312                                                  */
1313         unsigned int            sai_consecutive_miss; /* consecutive miss */
1314         unsigned int            sai_miss_hidden;/* "ls -al", but first dentry
1315                                                  * is not a hidden one */
1316         unsigned int            sai_skip_hidden;/* skipped hidden dentry count
1317                                                  */
1318         unsigned int            sai_ls_all:1,   /* "ls -al", do stat-ahead for
1319                                                  * hidden entries */
1320                                 sai_agl_valid:1,/* AGL is valid for the dir */
1321                                 sai_in_readpage:1;/* statahead is in readdir()*/
1322         wait_queue_head_t       sai_waitq;      /* stat-ahead wait queue */
1323         struct ptlrpc_thread    sai_thread;     /* stat-ahead thread */
1324         struct ptlrpc_thread    sai_agl_thread; /* AGL thread */
1325         struct list_head        sai_interim_entries; /* entries which got async
1326                                                       * stat reply, but not
1327                                                       * instantiated */
1328         struct list_head        sai_entries;    /* completed entries */
1329         struct list_head        sai_agls;       /* AGLs to be sent */
1330         struct list_head        sai_cache[LL_SA_CACHE_SIZE];
1331         spinlock_t              sai_cache_lock[LL_SA_CACHE_SIZE];
1332         atomic_t                sai_cache_count; /* entry count in cache */
1333 };
1334
1335 int ll_statahead(struct inode *dir, struct dentry **dentry, bool unplug);
1336 void ll_authorize_statahead(struct inode *dir, void *key);
1337 void ll_deauthorize_statahead(struct inode *dir, void *key);
1338
1339 static inline int ll_glimpse_size(struct inode *inode)
1340 {
1341         struct ll_inode_info *lli = ll_i2info(inode);
1342         int rc;
1343
1344         down_read(&lli->lli_glimpse_sem);
1345         rc = cl_glimpse_size(inode);
1346         lli->lli_glimpse_time = cfs_time_current();
1347         up_read(&lli->lli_glimpse_sem);
1348         return rc;
1349 }
1350
1351 /* dentry may statahead when statahead is enabled and current process has opened
1352  * parent directory, and this dentry hasn't accessed statahead cache before */
1353 static inline bool
1354 dentry_may_statahead(struct inode *dir, struct dentry *dentry)
1355 {
1356         struct ll_inode_info  *lli;
1357         struct ll_dentry_data *ldd;
1358
1359         if (ll_i2sbi(dir)->ll_sa_max == 0)
1360                 return false;
1361
1362         lli = ll_i2info(dir);
1363
1364         /* statahead is not allowed for this dir, there may be three causes:
1365          * 1. dir is not opened.
1366          * 2. statahead hit ratio is too low.
1367          * 3. previous stat started statahead thread failed. */
1368         if (!lli->lli_sa_enabled)
1369                 return false;
1370
1371         /* not the same process, don't statahead */
1372         if (lli->lli_opendir_pid != current_pid())
1373                 return false;
1374
1375         /*
1376          * When stating a dentry, kernel may trigger 'revalidate' or 'lookup'
1377          * multiple times, eg. for 'getattr', 'getxattr' and etc.
1378          * For patchless client, lookup intent is not accurate, which may
1379          * misguide statahead. For example:
1380          * The 'revalidate' call for 'getattr' and 'getxattr' of a dentry will
1381          * have the same intent -- IT_GETATTR, while one dentry should access
1382          * statahead cache once, otherwise statahead windows is messed up.
1383          * The solution is as following:
1384          * Assign 'lld_sa_generation' with 'lli_sa_generation' when a dentry
1385          * IT_GETATTR for the first time, and subsequent IT_GETATTR will
1386          * bypass interacting with statahead cache by checking
1387          * 'lld_sa_generation == lli->lli_sa_generation'.
1388          */
1389         ldd = ll_d2d(dentry);
1390         if (ldd != NULL && ldd->lld_sa_generation == lli->lli_sa_generation)
1391                 return false;
1392
1393         return true;
1394 }
1395
1396 /* llite ioctl register support rountine */
1397 enum llioc_iter {
1398         LLIOC_CONT = 0,
1399         LLIOC_STOP
1400 };
1401
1402 #define LLIOC_MAX_CMD           256
1403
1404 /*
1405  * Rules to write a callback function:
1406  *
1407  * Parameters:
1408  *  @magic: Dynamic ioctl call routine will feed this vaule with the pointer
1409  *      returned to ll_iocontrol_register.  Callback functions should use this
1410  *      data to check the potential collasion of ioctl cmd. If collasion is
1411  *      found, callback function should return LLIOC_CONT.
1412  *  @rcp: The result of ioctl command.
1413  *
1414  *  Return values:
1415  *      If @magic matches the pointer returned by ll_iocontrol_data, the
1416  *      callback should return LLIOC_STOP; return LLIOC_STOP otherwise.
1417  */
1418 typedef enum llioc_iter (*llioc_callback_t)(struct inode *inode,
1419                 struct file *file, unsigned int cmd, unsigned long arg,
1420                 void *magic, int *rcp);
1421
1422 /* export functions */
1423 /* Register ioctl block dynamatically for a regular file.
1424  *
1425  * @cmd: the array of ioctl command set
1426  * @count: number of commands in the @cmd
1427  * @cb: callback function, it will be called if an ioctl command is found to
1428  *      belong to the command list @cmd.
1429  *
1430  * Return vaule:
1431  *      A magic pointer will be returned if success;
1432  *      otherwise, NULL will be returned.
1433  * */
1434 void *ll_iocontrol_register(llioc_callback_t cb, int count, unsigned int *cmd);
1435 void ll_iocontrol_unregister(void *magic);
1436
1437
1438 /* lclient compat stuff */
1439 #define cl_inode_info ll_inode_info
1440 #define cl_i2info(info) ll_i2info(info)
1441 #define cl_inode_mode(inode) ((inode)->i_mode)
1442 #define cl_i2sbi ll_i2sbi
1443
1444 static inline struct ll_file_data *cl_iattr2fd(struct inode *inode,
1445                                                const struct iattr *attr)
1446 {
1447         LASSERT(attr->ia_valid & ATTR_FILE);
1448         return LUSTRE_FPRIVATE(attr->ia_file);
1449 }
1450
1451 static inline void cl_isize_lock(struct inode *inode)
1452 {
1453         ll_inode_size_lock(inode);
1454 }
1455
1456 static inline void cl_isize_unlock(struct inode *inode)
1457 {
1458         ll_inode_size_unlock(inode);
1459 }
1460
1461 static inline void cl_isize_write_nolock(struct inode *inode, loff_t kms)
1462 {
1463         LASSERT(mutex_is_locked(&ll_i2info(inode)->lli_size_mutex));
1464         i_size_write(inode, kms);
1465 }
1466
1467 static inline void cl_isize_write(struct inode *inode, loff_t kms)
1468 {
1469         ll_inode_size_lock(inode);
1470         i_size_write(inode, kms);
1471         ll_inode_size_unlock(inode);
1472 }
1473
1474 #define cl_isize_read(inode)             i_size_read(inode)
1475
1476 #define cl_inode_atime(inode) LTIME_S((inode)->i_atime)
1477 #define cl_inode_ctime(inode) LTIME_S((inode)->i_ctime)
1478 #define cl_inode_mtime(inode) LTIME_S((inode)->i_mtime)
1479
1480 struct obd_capa *cl_capa_lookup(struct inode *inode, enum cl_req_type crt);
1481
1482 int cl_sync_file_range(struct inode *inode, loff_t start, loff_t end,
1483                        enum cl_fsync_mode mode, int ignore_layout);
1484
1485 /** direct write pages */
1486 struct ll_dio_pages {
1487         /** page array to be written. we don't support
1488          * partial pages except the last one. */
1489         struct page **ldp_pages;
1490         /* offset of each page */
1491         loff_t       *ldp_offsets;
1492         /** if ldp_offsets is NULL, it means a sequential
1493          * pages to be written, then this is the file offset
1494          * of the * first page. */
1495         loff_t        ldp_start_offset;
1496         /** how many bytes are to be written. */
1497         size_t        ldp_size;
1498         /** # of pages in the array. */
1499         int           ldp_nr;
1500 };
1501
1502 static inline void cl_stats_tally(struct cl_device *dev, enum cl_req_type crt,
1503                                   int rc)
1504 {
1505         int opc = (crt == CRT_READ) ? LPROC_LL_OSC_READ :
1506                                       LPROC_LL_OSC_WRITE;
1507
1508         ll_stats_ops_tally(ll_s2sbi(cl2ccc_dev(dev)->cdv_sb), opc, rc);
1509 }
1510
1511 extern ssize_t ll_direct_rw_pages(const struct lu_env *env, struct cl_io *io,
1512                                   int rw, struct inode *inode,
1513                                   struct ll_dio_pages *pv);
1514
1515 static inline int ll_file_nolock(const struct file *file)
1516 {
1517         struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1518         struct inode *inode = file->f_dentry->d_inode;
1519
1520         LASSERT(fd != NULL);
1521         return ((fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
1522                 (ll_i2sbi(inode)->ll_flags & LL_SBI_NOLCK));
1523 }
1524
1525 static inline void ll_set_lock_data(struct obd_export *exp, struct inode *inode,
1526                                     struct lookup_intent *it, __u64 *bits)
1527 {
1528         if (!it->d.lustre.it_lock_set) {
1529                 struct lustre_handle handle;
1530
1531                 /* If this inode is a remote object, it will get two
1532                  * separate locks in different namespaces, Master MDT,
1533                  * where the name entry is, will grant LOOKUP lock,
1534                  * remote MDT, where the object is, will grant
1535                  * UPDATE|PERM lock. The inode will be attched to both
1536                  * LOOKUP and PERM locks, so revoking either locks will
1537                  * case the dcache being cleared */
1538                 if (it->d.lustre.it_remote_lock_mode) {
1539                         handle.cookie = it->d.lustre.it_remote_lock_handle;
1540                         CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID
1541                                "(%p) for remote lock "LPX64"\n",
1542                                PFID(ll_inode2fid(inode)), inode,
1543                                handle.cookie);
1544                         md_set_lock_data(exp, &handle.cookie, inode, NULL);
1545                 }
1546
1547                 handle.cookie = it->d.lustre.it_lock_handle;
1548
1549                 CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID"(%p)"
1550                        " for lock "LPX64"\n",
1551                        PFID(ll_inode2fid(inode)), inode, handle.cookie);
1552
1553                 md_set_lock_data(exp, &handle.cookie, inode,
1554                                  &it->d.lustre.it_lock_bits);
1555                 it->d.lustre.it_lock_set = 1;
1556         }
1557
1558         if (bits != NULL)
1559                 *bits = it->d.lustre.it_lock_bits;
1560 }
1561
1562 static inline void ll_lock_dcache(struct inode *inode)
1563 {
1564 #ifdef HAVE_DCACHE_LOCK
1565         spin_lock(&dcache_lock);
1566 #else
1567         spin_lock(&inode->i_lock);
1568 #endif
1569 }
1570
1571 static inline void ll_unlock_dcache(struct inode *inode)
1572 {
1573 #ifdef HAVE_DCACHE_LOCK
1574         spin_unlock(&dcache_lock);
1575 #else
1576         spin_unlock(&inode->i_lock);
1577 #endif
1578 }
1579
1580 static inline int d_lustre_invalid(const struct dentry *dentry)
1581 {
1582         struct ll_dentry_data *lld = ll_d2d(dentry);
1583
1584         return (lld == NULL) || lld->lld_invalid;
1585 }
1586
1587 static inline void __d_lustre_invalidate(struct dentry *dentry)
1588 {
1589         struct ll_dentry_data *lld = ll_d2d(dentry);
1590
1591         if (lld != NULL)
1592                 lld->lld_invalid = 1;
1593 }
1594
1595 /*
1596  * Mark dentry INVALID, if dentry refcount is zero (this is normally case for
1597  * ll_md_blocking_ast), unhash this dentry, and let dcache to reclaim it later;
1598  * else dput() of the last refcount will unhash this dentry and kill it.
1599  */
1600 static inline void d_lustre_invalidate(struct dentry *dentry, int nested)
1601 {
1602         CDEBUG(D_DENTRY, "invalidate dentry %.*s (%p) parent %p inode %p "
1603                "refc %d\n", dentry->d_name.len, dentry->d_name.name, dentry,
1604                dentry->d_parent, dentry->d_inode, ll_d_count(dentry));
1605
1606         spin_lock_nested(&dentry->d_lock,
1607                          nested ? DENTRY_D_LOCK_NESTED : DENTRY_D_LOCK_NORMAL);
1608         __d_lustre_invalidate(dentry);
1609         if (ll_d_count(dentry) == 0)
1610                 __d_drop(dentry);
1611         spin_unlock(&dentry->d_lock);
1612 }
1613
1614 static inline void d_lustre_revalidate(struct dentry *dentry)
1615 {
1616         spin_lock(&dentry->d_lock);
1617         LASSERT(ll_d2d(dentry) != NULL);
1618         ll_d2d(dentry)->lld_invalid = 0;
1619         spin_unlock(&dentry->d_lock);
1620 }
1621
1622 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 7, 53, 0)
1623 /* Compatibility for old (1.8) compiled userspace quota code */
1624 struct if_quotactl_18 {
1625         __u32                   qc_cmd;
1626         __u32                   qc_type;
1627         __u32                   qc_id;
1628         __u32                   qc_stat;
1629         struct obd_dqinfo       qc_dqinfo;
1630         struct obd_dqblk        qc_dqblk;
1631         char                    obd_type[16];
1632         struct obd_uuid         obd_uuid;
1633 };
1634 #define LL_IOC_QUOTACTL_18              _IOWR('f', 162, struct if_quotactl_18 *)
1635 /* End compatibility for old (1.8) compiled userspace quota code */
1636 #endif /* LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 7, 53, 0) */
1637
1638 enum {
1639         LL_LAYOUT_GEN_NONE  = ((__u32)-2),      /* layout lock was cancelled */
1640         LL_LAYOUT_GEN_EMPTY = ((__u32)-1)       /* for empty layout */
1641 };
1642
1643 int ll_layout_conf(struct inode *inode, const struct cl_object_conf *conf);
1644 int ll_layout_refresh(struct inode *inode, __u32 *gen);
1645 int ll_layout_restore(struct inode *inode, loff_t start, __u64 length);
1646
1647 int ll_xattr_init(void);
1648 void ll_xattr_fini(void);
1649
1650 int ll_page_sync_io(const struct lu_env *env, struct cl_io *io,
1651                     struct cl_page *page, enum cl_req_type crt);
1652
1653 int ll_getparent(struct file *file, struct getparent __user *arg);
1654
1655 #endif /* LLITE_INTERNAL_H */