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