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