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