Whamcloud - gitweb
03026200c2655246a0ec64a20d165ccec1e75600
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #ifndef LLITE_INTERNAL_H
34 #define LLITE_INTERNAL_H
35 #include <lustre_debug.h>
36 #include <lustre_disk.h>  /* for s2sbi */
37 #include <lustre_eacl.h>
38 #include <lustre_linkea.h>
39
40 /* for struct cl_lock_descr and struct cl_io */
41 #include <cl_object.h>
42 #include <lustre_lmv.h>
43 #include <lustre_mdc.h>
44 #include <lustre_intent.h>
45 #include <linux/compat.h>
46 #include <linux/aio.h>
47 #include <lustre_compat.h>
48 #include <lustre_crypto.h>
49
50 #include "vvp_internal.h"
51 #include "range_lock.h"
52 #include "pcc.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 /* 4UL * 1024 * 1024 */
73 #define LL_MAX_BLKSIZE_BITS 22
74
75 #define LL_IT2STR(it) ((it) ? ldlm_it2str((it)->it_op) : "0")
76
77 #define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET | ATTR_TIMES_SET)
78
79 struct ll_dentry_data {
80         unsigned int                    lld_sa_generation;
81         unsigned int                    lld_invalid:1;
82         unsigned int                    lld_nfs_dentry: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 struct ll_getname_data {
92 #ifdef HAVE_DIR_CONTEXT
93         struct dir_context      ctx;
94 #endif
95         char            *lgd_name;      /* points to a buffer with NAME_MAX+1 size */
96         struct lu_fid   lgd_fid;        /* target fid we are looking for */
97         int             lgd_found;      /* inode matched? */
98 };
99
100 struct ll_grouplock {
101         struct lu_env   *lg_env;
102         struct cl_io    *lg_io;
103         struct cl_lock  *lg_lock;
104         unsigned long    lg_gid;
105 };
106
107 /* See comment on trunc_sem_down_read_nowait */
108 struct ll_trunc_sem {
109         /* when positive, this is a count of readers, when -1, it indicates
110          * the semaphore is held for write, and 0 is unlocked
111          */
112         atomic_t        ll_trunc_readers;
113         /* this tracks a count of waiting writers */
114         atomic_t        ll_trunc_waiters;
115 };
116
117 struct ll_inode_info {
118         __u32                           lli_inode_magic;
119         spinlock_t                      lli_lock;
120
121         volatile unsigned long          lli_flags;
122         struct posix_acl                *lli_posix_acl;
123
124         /* identifying fields for both metadata and data stacks. */
125         struct lu_fid                   lli_fid;
126         /* master inode fid for stripe directory */
127         struct lu_fid                   lli_pfid;
128
129         /* We need all three because every inode may be opened in different
130          * modes */
131         struct obd_client_handle       *lli_mds_read_och;
132         struct obd_client_handle       *lli_mds_write_och;
133         struct obd_client_handle       *lli_mds_exec_och;
134         __u64                           lli_open_fd_read_count;
135         __u64                           lli_open_fd_write_count;
136         __u64                           lli_open_fd_exec_count;
137         /* Protects access to och pointers and their usage counters */
138         struct mutex                    lli_och_mutex;
139
140         struct inode                    lli_vfs_inode;
141
142         /* the most recent timestamps obtained from mds */
143         s64                             lli_atime;
144         s64                             lli_mtime;
145         s64                             lli_ctime;
146         s64                             lli_btime;
147         spinlock_t                      lli_agl_lock;
148
149         /* Try to make the d::member and f::member are aligned. Before using
150          * these members, make clear whether it is directory or not. */
151         union {
152                 /* for directory */
153                 struct {
154                         /* metadata statahead */
155                         /* since parent-child threads can share the same @file
156                          * struct, "opendir_key" is the token when dir close for
157                          * case of parent exit before child -- it is me should
158                          * cleanup the dir readahead. */
159                         void                           *lli_opendir_key;
160                         struct ll_statahead_info       *lli_sai;
161                         /* protect statahead stuff. */
162                         spinlock_t                      lli_sa_lock;
163                         /* "opendir_pid" is the token when lookup/revalid
164                          * -- I am the owner of dir statahead. */
165                         pid_t                           lli_opendir_pid;
166                         /* stat will try to access statahead entries or start
167                          * statahead if this flag is set, and this flag will be
168                          * set upon dir open, and cleared when dir is closed,
169                          * statahead hit ratio is too low, or start statahead
170                          * thread failed. */
171                         unsigned int                    lli_sa_enabled:1;
172                         /* generation for statahead */
173                         unsigned int                    lli_sa_generation;
174                         /* rw lock protects lli_lsm_md */
175                         struct rw_semaphore             lli_lsm_sem;
176                         /* directory stripe information */
177                         struct lmv_stripe_md            *lli_lsm_md;
178                         /* directory default LMV */
179                         struct lmv_stripe_md            *lli_default_lsm_md;
180                 };
181
182                 /* for non-directory */
183                 struct {
184                         struct mutex            lli_size_mutex;
185                         char                   *lli_symlink_name;
186                         struct ll_trunc_sem     lli_trunc_sem;
187                         struct range_lock_tree  lli_write_tree;
188
189                         struct rw_semaphore     lli_glimpse_sem;
190                         ktime_t                 lli_glimpse_time;
191                         struct list_head        lli_agl_list;
192                         __u64                   lli_agl_index;
193
194                         /* for writepage() only to communicate to fsync */
195                         int                     lli_async_rc;
196
197                         /* protect the file heat fields */
198                         spinlock_t                      lli_heat_lock;
199                         __u32                           lli_heat_flags;
200                         struct obd_heat_instance        lli_heat_instances[OBD_HEAT_COUNT];
201
202                         /*
203                          * Whenever a process try to read/write the file, the
204                          * jobid of the process will be saved here, and it'll
205                          * be packed into the write PRC when flush later.
206                          *
207                          * So the read/write statistics for jobid will not be
208                          * accurate if the file is shared by different jobs.
209                          */
210                         char                    lli_jobid[LUSTRE_JOBID_SIZE];
211
212                         struct mutex             lli_pcc_lock;
213                         enum lu_pcc_state_flags  lli_pcc_state;
214                         /*
215                          * @lli_pcc_generation saves the gobal PCC generation
216                          * when the file was successfully attached into PCC.
217                          * The flags of the PCC dataset are saved in
218                          * @lli_pcc_dsflags.
219                          * The gobal PCC generation will be increased when add
220                          * or delete a PCC backend, or change the configuration
221                          * parameters for PCC.
222                          * If @lli_pcc_generation is same as the gobal PCC
223                          * generation, we can use the saved flags of the PCC
224                          * dataset to determine whether need to try auto attach
225                          * safely.
226                          */
227                         __u64                    lli_pcc_generation;
228                         enum pcc_dataset_flags   lli_pcc_dsflags;
229                         struct pcc_inode        *lli_pcc_inode;
230
231                         struct mutex             lli_group_mutex;
232                         __u64                    lli_group_users;
233                         unsigned long            lli_group_gid;
234
235                         __u64                    lli_attr_valid;
236                         __u64                    lli_lazysize;
237                         __u64                    lli_lazyblocks;
238                 };
239         };
240
241         /* XXX: For following frequent used members, although they maybe special
242          *      used for non-directory object, it is some time-wasting to check
243          *      whether the object is directory or not before using them. On the
244          *      other hand, currently, sizeof(f) > sizeof(d), it cannot reduce
245          *      the "ll_inode_info" size even if moving those members into u.f.
246          *      So keep them out side.
247          *
248          *      In the future, if more members are added only for directory,
249          *      some of the following members can be moved into u.f.
250          */
251         struct cl_object                *lli_clob;
252
253         /* mutex to request for layout lock exclusively. */
254         struct mutex                    lli_layout_mutex;
255         /* Layout version, protected by lli_layout_lock */
256         __u32                           lli_layout_gen;
257         spinlock_t                      lli_layout_lock;
258
259         __u32                           lli_projid;   /* project id */
260
261         struct rw_semaphore             lli_xattrs_list_rwsem;
262         struct mutex                    lli_xattrs_enq_lock;
263         struct list_head                lli_xattrs; /* ll_xattr_entry->xe_list */
264 };
265
266 static inline void ll_trunc_sem_init(struct ll_trunc_sem *sem)
267 {
268         atomic_set(&sem->ll_trunc_readers, 0);
269         atomic_set(&sem->ll_trunc_waiters, 0);
270 }
271
272 /* This version of down read ignores waiting writers, meaning if the semaphore
273  * is already held for read, this down_read will 'join' that reader and also
274  * take the semaphore.
275  *
276  * This lets us avoid an unusual deadlock.
277  *
278  * We must take lli_trunc_sem in read mode on entry in to various i/o paths
279  * in Lustre, in order to exclude truncates.  Some of these paths then need to
280  * take the mmap_sem, while still holding the trunc_sem.  The problem is that
281  * page faults hold the mmap_sem when calling in to Lustre, and then must also
282  * take the trunc_sem to exclude truncate.
283  *
284  * This means the locking order for trunc_sem and mmap_sem is sometimes AB,
285  * sometimes BA.  This is almost OK because in both cases, we take the trunc
286  * sem for read, so it doesn't block.
287  *
288  * However, if a write mode user (truncate, a setattr op) arrives in the
289  * middle of this, the second reader on the truncate_sem will wait behind that
290  * writer.
291  *
292  * So we have, on our truncate sem, in order (where 'reader' and 'writer' refer
293  * to the mode in which they take the semaphore):
294  * reader (holding mmap_sem, needs truncate_sem)
295  * writer
296  * reader (holding truncate sem, waiting for mmap_sem)
297  *
298  * And so the readers deadlock.
299  *
300  * The solution is this modified semaphore, where this down_read ignores
301  * waiting write operations, and all waiters are woken up at once, so readers
302  * using down_read_nowait cannot get stuck behind waiting writers, regardless
303  * of the order they arrived in.
304  *
305  * down_read_nowait is only used in the page fault case, where we already hold
306  * the mmap_sem.  This is because otherwise repeated read and write operations
307  * (which take the truncate sem) could prevent a truncate from ever starting.
308  * This could still happen with page faults, but without an even more complex
309  * mechanism, this is unavoidable.
310  *
311  * LU-12460
312  */
313 static inline void trunc_sem_down_read_nowait(struct ll_trunc_sem *sem)
314 {
315         wait_var_event(&sem->ll_trunc_readers,
316                        atomic_inc_unless_negative(&sem->ll_trunc_readers));
317 }
318
319 static inline void trunc_sem_down_read(struct ll_trunc_sem *sem)
320 {
321         wait_var_event(&sem->ll_trunc_readers,
322                        atomic_read(&sem->ll_trunc_waiters) == 0 &&
323                        atomic_inc_unless_negative(&sem->ll_trunc_readers));
324 }
325
326 static inline void trunc_sem_up_read(struct ll_trunc_sem *sem)
327 {
328         if (atomic_dec_return(&sem->ll_trunc_readers) == 0 &&
329             atomic_read(&sem->ll_trunc_waiters))
330                 wake_up_var(&sem->ll_trunc_readers);
331 }
332
333 static inline void trunc_sem_down_write(struct ll_trunc_sem *sem)
334 {
335         atomic_inc(&sem->ll_trunc_waiters);
336         wait_var_event(&sem->ll_trunc_readers,
337                        atomic_cmpxchg(&sem->ll_trunc_readers, 0, -1) == 0);
338         atomic_dec(&sem->ll_trunc_waiters);
339 }
340
341 static inline void trunc_sem_up_write(struct ll_trunc_sem *sem)
342 {
343         atomic_set(&sem->ll_trunc_readers, 0);
344         wake_up_var(&sem->ll_trunc_readers);
345 }
346
347 static inline __u32 ll_layout_version_get(struct ll_inode_info *lli)
348 {
349         __u32 gen;
350
351         spin_lock(&lli->lli_layout_lock);
352         gen = lli->lli_layout_gen;
353         spin_unlock(&lli->lli_layout_lock);
354
355         return gen;
356 }
357
358 static inline void ll_layout_version_set(struct ll_inode_info *lli, __u32 gen)
359 {
360         spin_lock(&lli->lli_layout_lock);
361         lli->lli_layout_gen = gen;
362         spin_unlock(&lli->lli_layout_lock);
363 }
364
365 enum ll_file_flags {
366         /* File data is modified. */
367         LLIF_DATA_MODIFIED      = 0,
368         /* File is being restored */
369         LLIF_FILE_RESTORING     = 1,
370         /* Xattr cache is attached to the file */
371         LLIF_XATTR_CACHE        = 2,
372         /* Project inherit */
373         LLIF_PROJECT_INHERIT    = 3,
374         /* update atime from MDS even if it's older than local inode atime. */
375         LLIF_UPDATE_ATIME       = 4,
376
377 };
378
379 static inline void ll_file_set_flag(struct ll_inode_info *lli,
380                                     enum ll_file_flags flag)
381 {
382         set_bit(flag, &lli->lli_flags);
383 }
384
385 static inline void ll_file_clear_flag(struct ll_inode_info *lli,
386                                       enum ll_file_flags flag)
387 {
388         clear_bit(flag, &lli->lli_flags);
389 }
390
391 static inline bool ll_file_test_flag(struct ll_inode_info *lli,
392                                      enum ll_file_flags flag)
393 {
394         return test_bit(flag, &lli->lli_flags);
395 }
396
397 static inline bool ll_file_test_and_clear_flag(struct ll_inode_info *lli,
398                                                enum ll_file_flags flag)
399 {
400         return test_and_clear_bit(flag, &lli->lli_flags);
401 }
402
403 int ll_xattr_cache_destroy(struct inode *inode);
404
405 int ll_xattr_cache_get(struct inode *inode,
406                         const char *name,
407                         char *buffer,
408                         size_t size,
409                         __u64 valid);
410
411 static inline bool obd_connect_has_secctx(struct obd_connect_data *data)
412 {
413 #ifdef CONFIG_SECURITY
414         return data->ocd_connect_flags & OBD_CONNECT_FLAGS2 &&
415                data->ocd_connect_flags2 & OBD_CONNECT2_FILE_SECCTX;
416 #else
417         return false;
418 #endif
419 }
420
421 static inline void obd_connect_set_secctx(struct obd_connect_data *data)
422 {
423 #ifdef CONFIG_SECURITY
424         data->ocd_connect_flags2 |= OBD_CONNECT2_FILE_SECCTX;
425 #endif
426 }
427
428 int ll_dentry_init_security(struct dentry *dentry, int mode, struct qstr *name,
429                             const char **secctx_name, void **secctx,
430                             __u32 *secctx_size);
431 int ll_inode_init_security(struct dentry *dentry, struct inode *inode,
432                            struct inode *dir);
433
434 int ll_listsecurity(struct inode *inode, char *secctx_name,
435                     size_t secctx_name_size);
436
437 static inline bool obd_connect_has_enc(struct obd_connect_data *data)
438 {
439 #ifdef HAVE_LUSTRE_CRYPTO
440         return data->ocd_connect_flags & OBD_CONNECT_FLAGS2 &&
441                 data->ocd_connect_flags2 & OBD_CONNECT2_ENCRYPT;
442 #else
443         return false;
444 #endif
445 }
446
447 static inline void obd_connect_set_enc(struct obd_connect_data *data)
448 {
449 #ifdef HAVE_LUSTRE_CRYPTO
450         data->ocd_connect_flags2 |= OBD_CONNECT2_ENCRYPT;
451 #endif
452 }
453
454 /*
455  * Locking to guarantee consistency of non-atomic updates to long long i_size,
456  * consistency between file size and KMS.
457  *
458  * Implemented by ->lli_size_mutex and ->lsm_lock, nested in that order.
459  */
460
461 void ll_inode_size_lock(struct inode *inode);
462 void ll_inode_size_unlock(struct inode *inode);
463
464 static inline struct ll_inode_info *ll_i2info(struct inode *inode)
465 {
466         return container_of(inode, struct ll_inode_info, lli_vfs_inode);
467 }
468
469 static inline struct pcc_inode *ll_i2pcci(struct inode *inode)
470 {
471         return ll_i2info(inode)->lli_pcc_inode;
472 }
473
474 /* default to use at least 16M for fast read if possible */
475 #define RA_REMAIN_WINDOW_MIN                    MiB_TO_PAGES(16UL)
476
477 /* default readahead on a given system. */
478 #define SBI_DEFAULT_READ_AHEAD_MAX              MiB_TO_PAGES(64UL)
479
480 /* default read-ahead full files smaller than limit on the second read */
481 #define SBI_DEFAULT_READ_AHEAD_WHOLE_MAX        MiB_TO_PAGES(2UL)
482
483 enum ra_stat {
484         RA_STAT_HIT = 0,
485         RA_STAT_MISS,
486         RA_STAT_DISTANT_READPAGE,
487         RA_STAT_MISS_IN_WINDOW,
488         RA_STAT_FAILED_GRAB_PAGE,
489         RA_STAT_FAILED_MATCH,
490         RA_STAT_DISCARDED,
491         RA_STAT_ZERO_LEN,
492         RA_STAT_ZERO_WINDOW,
493         RA_STAT_EOF,
494         RA_STAT_MAX_IN_FLIGHT,
495         RA_STAT_WRONG_GRAB_PAGE,
496         RA_STAT_FAILED_REACH_END,
497         RA_STAT_ASYNC,
498         RA_STAT_FAILED_FAST_READ,
499         _NR_RA_STAT,
500 };
501
502 struct ll_ra_info {
503         atomic_t        ra_cur_pages;
504         unsigned long   ra_max_pages;
505         unsigned long   ra_max_pages_per_file;
506         unsigned long   ra_max_read_ahead_whole_pages;
507         struct workqueue_struct  *ll_readahead_wq;
508         /*
509          * Max number of active works could be triggered
510          * for async readahead.
511          */
512         unsigned int ra_async_max_active;
513         /* how many async readahead triggered in flight */
514         atomic_t ra_async_inflight;
515         /* Threshold to control when to trigger async readahead */
516         unsigned long ra_async_pages_per_file_threshold;
517 };
518
519 /* ra_io_arg will be filled in the beginning of ll_readahead with
520  * ras_lock, then the following ll_read_ahead_pages will read RA
521  * pages according to this arg, all the items in this structure are
522  * counted by page index.
523  */
524 struct ra_io_arg {
525         pgoff_t         ria_start_idx;  /* start offset of read-ahead*/
526         pgoff_t         ria_end_idx;    /* end offset of read-ahead*/
527         unsigned long   ria_reserved;   /* reserved pages for read-ahead */
528         pgoff_t         ria_end_idx_min;/* minimum end to cover current read */
529         bool            ria_eof;        /* reach end of file */
530         /* If stride read pattern is detected, ria_stoff is the byte offset
531          * where stride read is started. Note: for normal read-ahead, the
532          * value here is meaningless, and also it will not be accessed*/
533         loff_t          ria_stoff;
534         /* ria_length and ria_bytes are the length and pages length in the
535          * stride I/O mode. And they will also be used to check whether
536          * it is stride I/O read-ahead in the read-ahead pages*/
537         loff_t          ria_length;
538         loff_t          ria_bytes;
539 };
540
541 /* LL_HIST_MAX=32 causes an overflow */
542 #define LL_HIST_MAX 28
543 #define LL_HIST_START 12 /* buckets start at 2^12 = 4k */
544 #define LL_PROCESS_HIST_MAX 10
545 struct per_process_info {
546         pid_t pid;
547         struct obd_histogram pp_r_hist;
548         struct obd_histogram pp_w_hist;
549 };
550
551 /* pp_extents[LL_PROCESS_HIST_MAX] will hold the combined process info */
552 struct ll_rw_extents_info {
553         struct per_process_info pp_extents[LL_PROCESS_HIST_MAX + 1];
554 };
555
556 #define LL_OFFSET_HIST_MAX 100
557 struct ll_rw_process_info {
558         pid_t                     rw_pid;
559         int                       rw_op;
560         loff_t                    rw_range_start;
561         loff_t                    rw_range_end;
562         loff_t                    rw_last_file_pos;
563         loff_t                    rw_offset;
564         size_t                    rw_smallest_extent;
565         size_t                    rw_largest_extent;
566         struct ll_file_data      *rw_last_file;
567 };
568
569 enum stats_track_type {
570         STATS_TRACK_ALL = 0,  /* track all processes */
571         STATS_TRACK_PID,      /* track process with this pid */
572         STATS_TRACK_PPID,     /* track processes with this ppid */
573         STATS_TRACK_GID,      /* track processes with this gid */
574         STATS_TRACK_LAST,
575 };
576
577 /* flags for sbi->ll_flags */
578 #define LL_SBI_NOLCK             0x01 /* DLM locking disabled (directio-only) */
579 #define LL_SBI_CHECKSUM          0x02 /* checksum each page as it's written */
580 #define LL_SBI_FLOCK             0x04
581 #define LL_SBI_USER_XATTR        0x08 /* support user xattr */
582 #define LL_SBI_ACL               0x10 /* support ACL */
583 /*      LL_SBI_RMT_CLIENT        0x40    remote client */
584 #define LL_SBI_MDS_CAPA          0x80 /* support mds capa, obsolete */
585 #define LL_SBI_OSS_CAPA         0x100 /* support oss capa, obsolete */
586 #define LL_SBI_LOCALFLOCK       0x200 /* Local flocks support by kernel */
587 #define LL_SBI_LRU_RESIZE       0x400 /* lru resize support */
588 #define LL_SBI_LAZYSTATFS       0x800 /* lazystatfs mount option */
589 /*      LL_SBI_SOM_PREVIEW     0x1000    SOM preview mount option, obsolete */
590 #define LL_SBI_32BIT_API       0x2000 /* generate 32 bit inodes. */
591 #define LL_SBI_64BIT_HASH      0x4000 /* support 64-bits dir hash/offset */
592 #define LL_SBI_AGL_ENABLED     0x8000 /* enable agl */
593 #define LL_SBI_VERBOSE        0x10000 /* verbose mount/umount */
594 #define LL_SBI_LAYOUT_LOCK    0x20000 /* layout lock support */
595 #define LL_SBI_USER_FID2PATH  0x40000 /* allow fid2path by unprivileged users */
596 #define LL_SBI_XATTR_CACHE    0x80000 /* support for xattr cache */
597 #define LL_SBI_NOROOTSQUASH  0x100000 /* do not apply root squash */
598 #define LL_SBI_ALWAYS_PING   0x200000 /* always ping even if server
599                                        * suppress_pings */
600 #define LL_SBI_FAST_READ     0x400000 /* fast read support */
601 #define LL_SBI_FILE_SECCTX   0x800000 /* set file security context at create */
602 /*      LL_SBI_PIO          0x1000000    parallel IO support, introduced in
603                                          2.10, abandoned */
604 #define LL_SBI_TINY_WRITE   0x2000000 /* tiny write support */
605 #define LL_SBI_FILE_HEAT    0x4000000 /* file heat support */
606 #define LL_SBI_TEST_DUMMY_ENCRYPTION    0x8000000 /* test dummy encryption */
607 #define LL_SBI_ENCRYPT     0x10000000 /* client side encryption */
608 #define LL_SBI_FLAGS {  \
609         "nolck",        \
610         "checksum",     \
611         "flock",        \
612         "user_xattr",   \
613         "acl",          \
614         "???",          \
615         "???",          \
616         "mds_capa",     \
617         "oss_capa",     \
618         "flock",        \
619         "lru_resize",   \
620         "lazy_statfs",  \
621         "som",          \
622         "32bit_api",    \
623         "64bit_hash",   \
624         "agl",          \
625         "verbose",      \
626         "layout",       \
627         "user_fid2path",\
628         "xattr_cache",  \
629         "norootsquash", \
630         "always_ping",  \
631         "fast_read",    \
632         "file_secctx",  \
633         "pio",          \
634         "tiny_write",   \
635         "file_heat",    \
636         "test_dummy_encryption", \
637         "noencrypt",    \
638 }
639
640 /* This is embedded into llite super-blocks to keep track of connect
641  * flags (capabilities) supported by all imports given mount is
642  * connected to. */
643 struct lustre_client_ocd {
644         /* This is conjunction of connect_flags across all imports
645          * (LOVs) this mount is connected to. This field is updated by
646          * cl_ocd_update() under ->lco_lock. */
647         __u64                    lco_flags;
648         struct mutex             lco_lock;
649         struct obd_export       *lco_md_exp;
650         struct obd_export       *lco_dt_exp;
651 };
652
653 struct ll_sb_info {
654         /* this protects pglist and ra_info.  It isn't safe to
655          * grab from interrupt contexts */
656         spinlock_t               ll_lock;
657         spinlock_t               ll_pp_extent_lock; /* pp_extent entry*/
658         spinlock_t               ll_process_lock; /* ll_rw_process_info */
659         struct obd_uuid          ll_sb_uuid;
660         struct obd_export       *ll_md_exp;
661         struct obd_export       *ll_dt_exp;
662         struct obd_device       *ll_md_obd;
663         struct obd_device       *ll_dt_obd;
664         struct dentry           *ll_debugfs_entry;
665         struct lu_fid            ll_root_fid; /* root object fid */
666
667         int                       ll_flags;
668         unsigned int              ll_xattr_cache_enabled:1,
669                                   ll_xattr_cache_set:1, /* already set to 0/1 */
670                                   ll_client_common_fill_super_succeeded:1,
671                                   ll_checksum_set:1;
672
673         struct lustre_client_ocd  ll_lco;
674
675         struct lprocfs_stats     *ll_stats; /* lprocfs stats counter */
676
677         /* Used to track "unstable" pages on a client, and maintain a
678          * LRU list of clean pages. An "unstable" page is defined as
679          * any page which is sent to a server as part of a bulk request,
680          * but is uncommitted to stable storage. */
681         struct cl_client_cache   *ll_cache;
682
683         struct lprocfs_stats     *ll_ra_stats;
684
685         struct ll_ra_info         ll_ra_info;
686         unsigned int              ll_namelen;
687         struct file_operations   *ll_fop;
688
689         struct lu_site           *ll_site;
690         struct cl_device         *ll_cl;
691         /* Statistics */
692         struct ll_rw_extents_info ll_rw_extents_info;
693         int                       ll_extent_process_count;
694         struct ll_rw_process_info ll_rw_process_info[LL_PROCESS_HIST_MAX];
695         unsigned int              ll_offset_process_count;
696         struct ll_rw_process_info ll_rw_offset_info[LL_OFFSET_HIST_MAX];
697         unsigned int              ll_rw_offset_entry_count;
698         int                       ll_stats_track_id;
699         enum stats_track_type     ll_stats_track_type;
700         int                       ll_rw_stats_on;
701
702         /* metadata stat-ahead */
703         unsigned int              ll_sa_running_max;/* max concurrent
704                                                      * statahead instances */
705         unsigned int              ll_sa_max;     /* max statahead RPCs */
706         atomic_t                  ll_sa_total;   /* statahead thread started
707                                                   * count */
708         atomic_t                  ll_sa_wrong;   /* statahead thread stopped for
709                                                   * low hit ratio */
710         atomic_t                  ll_sa_running; /* running statahead thread
711                                                   * count */
712         atomic_t                  ll_agl_total;  /* AGL thread started count */
713
714         dev_t                     ll_sdev_orig; /* save s_dev before assign for
715                                                  * clustred nfs */
716         /* root squash */
717         struct root_squash_info   ll_squash;
718         struct path               ll_mnt;
719
720         /* st_blksize returned by stat(2), when non-zero */
721         unsigned int              ll_stat_blksize;
722
723         /* maximum relative age of cached statfs results */
724         unsigned int              ll_statfs_max_age;
725
726         struct kset               ll_kset;      /* sysfs object */
727         struct completion         ll_kobj_unregister;
728
729         /* File heat */
730         unsigned int              ll_heat_decay_weight;
731         unsigned int              ll_heat_period_second;
732
733         /* filesystem fsname */
734         char                      ll_fsname[LUSTRE_MAXFSNAME + 1];
735
736         /* Persistent Client Cache */
737         struct pcc_super          ll_pcc_super;
738 };
739
740 #define SBI_DEFAULT_HEAT_DECAY_WEIGHT   ((80 * 256 + 50) / 100)
741 #define SBI_DEFAULT_HEAT_PERIOD_SECOND  (60)
742 /*
743  * per file-descriptor read-ahead data.
744  */
745 struct ll_readahead_state {
746         spinlock_t      ras_lock;
747         /* End byte that read(2) try to read.  */
748         loff_t          ras_last_read_end_bytes;
749         /*
750          * number of bytes read after last read-ahead window reset. As window
751          * is reset on each seek, this is effectively a number of consecutive
752          * accesses. Maybe ->ras_accessed_in_window is better name.
753          *
754          * XXX nikita: window is also reset (by ras_update()) when Lustre
755          * believes that memory pressure evicts read-ahead pages. In that
756          * case, it probably doesn't make sense to expand window to
757          * PTLRPC_MAX_BRW_PAGES on the third access.
758          */
759         loff_t          ras_consecutive_bytes;
760         /*
761          * number of read requests after the last read-ahead window reset
762          * As window is reset on each seek, this is effectively the number
763          * on consecutive read request and is used to trigger read-ahead.
764          */
765         unsigned long   ras_consecutive_requests;
766         /*
767          * Parameters of current read-ahead window. Handled by
768          * ras_update(). On the initial access to the file or after a seek,
769          * window is reset to 0. After 3 consecutive accesses, window is
770          * expanded to PTLRPC_MAX_BRW_PAGES. Afterwards, window is enlarged by
771          * PTLRPC_MAX_BRW_PAGES chunks up to ->ra_max_pages.
772          */
773         pgoff_t         ras_window_start_idx;
774         pgoff_t         ras_window_pages;
775         /*
776          * Optimal RPC size in pages.
777          * It decides how many pages will be sent for each read-ahead.
778          */
779         unsigned long   ras_rpc_pages;
780         /*
781          * Where next read-ahead should start at. This lies within read-ahead
782          * window. Read-ahead window is read in pieces rather than at once
783          * because: 1. lustre limits total number of pages under read-ahead by
784          * ->ra_max_pages (see ll_ra_count_get()), 2. client cannot read pages
785          * not covered by DLM lock.
786          */
787         pgoff_t         ras_next_readahead_idx;
788         /*
789          * Total number of ll_file_read requests issued, reads originating
790          * due to mmap are not counted in this total.  This value is used to
791          * trigger full file read-ahead after multiple reads to a small file.
792          */
793         unsigned long   ras_requests;
794         /*
795          * The following 3 items are used for detecting the stride I/O
796          * mode.
797          * In stride I/O mode,
798          * ...............|-----data-----|****gap*****|--------|******|....
799          *    offset      |-stride_bytes-|-stride_gap-|
800          * ras_stride_offset = offset;
801          * ras_stride_length = stride_bytes + stride_gap;
802          * ras_stride_bytes = stride_bytes;
803          * Note: all these three items are counted by bytes.
804          */
805         loff_t          ras_stride_offset;
806         loff_t          ras_stride_length;
807         loff_t          ras_stride_bytes;
808         /*
809          * number of consecutive stride request count, and it is similar as
810          * ras_consecutive_requests, but used for stride I/O mode.
811          * Note: only more than 2 consecutive stride request are detected,
812          * stride read-ahead will be enable
813          */
814         unsigned long   ras_consecutive_stride_requests;
815         /* index of the last page that async readahead starts */
816         pgoff_t         ras_async_last_readpage_idx;
817         /* whether we should increase readahead window */
818         bool            ras_need_increase_window;
819         /* whether ra miss check should be skipped */
820         bool            ras_no_miss_check;
821 };
822
823 struct ll_readahead_work {
824         /** File to readahead */
825         struct file                     *lrw_file;
826         pgoff_t                          lrw_start_idx;
827         pgoff_t                          lrw_end_idx;
828
829         /* async worker to handler read */
830         struct work_struct               lrw_readahead_work;
831         char                             lrw_jobid[LUSTRE_JOBID_SIZE];
832 };
833
834 extern struct kmem_cache *ll_file_data_slab;
835 struct lustre_handle;
836 struct ll_file_data {
837         struct ll_readahead_state fd_ras;
838         struct ll_grouplock fd_grouplock;
839         __u64 lfd_pos;
840         __u32 fd_flags;
841         fmode_t fd_omode;
842         /* openhandle if lease exists for this file.
843          * Borrow lli->lli_och_mutex to protect assignment */
844         struct obd_client_handle *fd_lease_och;
845         struct obd_client_handle *fd_och;
846         struct file *fd_file;
847         /* Indicate whether need to report failure when close.
848          * true: failure is known, not report again.
849          * false: unknown failure, should report. */
850         bool fd_write_failed;
851         bool ll_lock_no_expand;
852         rwlock_t fd_lock; /* protect lcc list */
853         struct list_head fd_lccs; /* list of ll_cl_context */
854         /* Used by mirrored file to lead IOs to a specific mirror, usually
855          * for mirror resync. 0 means default. */
856         __u32 fd_designated_mirror;
857         /* The layout version when resync starts. Resync I/O should carry this
858          * layout version for verification to OST objects */
859         __u32 fd_layout_version;
860         struct pcc_file fd_pcc_file;
861 };
862
863 void llite_tunables_unregister(void);
864 int llite_tunables_register(void);
865
866 static inline struct inode *ll_info2i(struct ll_inode_info *lli)
867 {
868         return &lli->lli_vfs_inode;
869 }
870
871 __u32 ll_i2suppgid(struct inode *i);
872 void ll_i2gids(__u32 *suppgids, struct inode *i1,struct inode *i2);
873
874 static inline int ll_need_32bit_api(struct ll_sb_info *sbi)
875 {
876 #if BITS_PER_LONG == 32
877         return 1;
878 #elif defined(CONFIG_COMPAT)
879         if (unlikely(sbi->ll_flags & LL_SBI_32BIT_API))
880                 return true;
881
882 # ifdef CONFIG_X86_X32
883         /* in_compat_syscall() returns true when called from a kthread
884          * and CONFIG_X86_X32 is enabled, which is wrong. So check
885          * whether the caller comes from a syscall (ie. not a kthread)
886          * before calling in_compat_syscall(). */
887         if (current->flags & PF_KTHREAD)
888                 return false;
889 # endif
890
891         return unlikely(in_compat_syscall());
892 #else
893         return unlikely(sbi->ll_flags & LL_SBI_32BIT_API);
894 #endif
895 }
896
897 static inline bool ll_sbi_has_fast_read(struct ll_sb_info *sbi)
898 {
899         return !!(sbi->ll_flags & LL_SBI_FAST_READ);
900 }
901
902 static inline bool ll_sbi_has_tiny_write(struct ll_sb_info *sbi)
903 {
904         return !!(sbi->ll_flags & LL_SBI_TINY_WRITE);
905 }
906
907 static inline bool ll_sbi_has_file_heat(struct ll_sb_info *sbi)
908 {
909         return !!(sbi->ll_flags & LL_SBI_FILE_HEAT);
910 }
911
912 void ll_ras_enter(struct file *f, loff_t pos, size_t count);
913
914 /* llite/lcommon_misc.c */
915 int cl_ocd_update(struct obd_device *host, struct obd_device *watched,
916                   enum obd_notify_event ev, void *owner);
917 int cl_get_grouplock(struct cl_object *obj, unsigned long gid, int nonblock,
918                      struct ll_grouplock *lg);
919 void cl_put_grouplock(struct ll_grouplock *lg);
920
921 /* llite/lproc_llite.c */
922 int ll_debugfs_register_super(struct super_block *sb, const char *name);
923 void ll_debugfs_unregister_super(struct super_block *sb);
924 void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, long count);
925
926 enum {
927         LPROC_LL_READ_BYTES,
928         LPROC_LL_WRITE_BYTES,
929         LPROC_LL_READ,
930         LPROC_LL_WRITE,
931         LPROC_LL_IOCTL,
932         LPROC_LL_OPEN,
933         LPROC_LL_RELEASE,
934         LPROC_LL_MMAP,
935         LPROC_LL_FAULT,
936         LPROC_LL_MKWRITE,
937         LPROC_LL_LLSEEK,
938         LPROC_LL_FSYNC,
939         LPROC_LL_READDIR,
940         LPROC_LL_SETATTR,
941         LPROC_LL_TRUNC,
942         LPROC_LL_FLOCK,
943         LPROC_LL_GETATTR,
944         LPROC_LL_CREATE,
945         LPROC_LL_LINK,
946         LPROC_LL_UNLINK,
947         LPROC_LL_SYMLINK,
948         LPROC_LL_MKDIR,
949         LPROC_LL_RMDIR,
950         LPROC_LL_MKNOD,
951         LPROC_LL_RENAME,
952         LPROC_LL_STATFS,
953         LPROC_LL_SETXATTR,
954         LPROC_LL_GETXATTR,
955         LPROC_LL_GETXATTR_HITS,
956         LPROC_LL_LISTXATTR,
957         LPROC_LL_REMOVEXATTR,
958         LPROC_LL_INODE_PERM,
959         LPROC_LL_FALLOCATE,
960         LPROC_LL_FILE_OPCODES
961 };
962
963 /* llite/dir.c */
964 enum get_default_layout_type {
965         GET_DEFAULT_LAYOUT_ROOT = 1,
966 };
967
968 struct ll_dir_chain {
969 };
970
971 static inline void ll_dir_chain_init(struct ll_dir_chain *chain)
972 {
973 }
974
975 static inline void ll_dir_chain_fini(struct ll_dir_chain *chain)
976 {
977 }
978
979 extern const struct file_operations ll_dir_operations;
980 extern const struct inode_operations ll_dir_inode_operations;
981 #ifdef HAVE_DIR_CONTEXT
982 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
983                 struct dir_context *ctx);
984 #else
985 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
986                 void *cookie, filldir_t filldir);
987 #endif
988 int ll_get_mdt_idx(struct inode *inode);
989 int ll_get_mdt_idx_by_fid(struct ll_sb_info *sbi, const struct lu_fid *fid);
990 struct page *ll_get_dir_page(struct inode *dir, struct md_op_data *op_data,
991                              __u64 offset, struct ll_dir_chain *chain);
992 void ll_release_page(struct inode *inode, struct page *page, bool remove);
993
994 /* llite/namei.c */
995 extern const struct inode_operations ll_special_inode_operations;
996
997 struct inode *ll_iget(struct super_block *sb, ino_t hash,
998                       struct lustre_md *lic);
999 int ll_test_inode_by_fid(struct inode *inode, void *opaque);
1000 int ll_md_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
1001                        void *data, int flag);
1002 struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de);
1003 int ll_rmdir_entry(struct inode *dir, char *name, int namelen);
1004 void ll_update_times(struct ptlrpc_request *request, struct inode *inode);
1005
1006 /* llite/rw.c */
1007 int ll_writepage(struct page *page, struct writeback_control *wbc);
1008 int ll_writepages(struct address_space *, struct writeback_control *wbc);
1009 int ll_readpage(struct file *file, struct page *page);
1010 int ll_io_read_page(const struct lu_env *env, struct cl_io *io,
1011                            struct cl_page *page, struct file *file);
1012 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras);
1013 int vvp_io_write_commit(const struct lu_env *env, struct cl_io *io);
1014
1015 enum lcc_type;
1016 void ll_cl_add(struct file *file, const struct lu_env *env, struct cl_io *io,
1017                enum lcc_type type);
1018 void ll_cl_remove(struct file *file, const struct lu_env *env);
1019 struct ll_cl_context *ll_cl_find(struct file *file);
1020
1021 extern const struct address_space_operations ll_aops;
1022
1023 /* llite/file.c */
1024 extern struct file_operations ll_file_operations;
1025 extern struct file_operations ll_file_operations_flock;
1026 extern struct file_operations ll_file_operations_noflock;
1027 extern struct inode_operations ll_file_inode_operations;
1028 extern int ll_have_md_lock(struct inode *inode, __u64 *bits,
1029                            enum ldlm_mode l_req_mode);
1030 extern enum ldlm_mode ll_take_md_lock(struct inode *inode, __u64 bits,
1031                                       struct lustre_handle *lockh, __u64 flags,
1032                                       enum ldlm_mode mode);
1033
1034 int ll_file_open(struct inode *inode, struct file *file);
1035 int ll_file_release(struct inode *inode, struct file *file);
1036 int ll_release_openhandle(struct dentry *, struct lookup_intent *);
1037 int ll_md_real_close(struct inode *inode, fmode_t fmode);
1038 extern void ll_rw_stats_tally(struct ll_sb_info *sbi, pid_t pid,
1039                               struct ll_file_data *file, loff_t pos,
1040                               size_t count, int rw);
1041 #ifdef HAVE_INODEOPS_ENHANCED_GETATTR
1042 int ll_getattr(const struct path *path, struct kstat *stat,
1043                u32 request_mask, unsigned int flags);
1044 #else
1045 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat);
1046 #endif
1047 int ll_getattr_dentry(struct dentry *de, struct kstat *stat, u32 request_mask,
1048                       unsigned int flags);
1049 struct posix_acl *ll_get_acl(struct inode *inode, int type);
1050 #ifdef HAVE_IOP_SET_ACL
1051 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
1052 int ll_set_acl(struct inode *inode, struct posix_acl *acl, int type);
1053 #else  /* !CONFIG_LUSTRE_FS_POSIX_ACL */
1054 #define ll_set_acl NULL
1055 #endif /* CONFIG_LUSTRE_FS_POSIX_ACL */
1056
1057 #endif
1058
1059 static inline int ll_xflags_to_inode_flags(int xflags)
1060 {
1061         return ((xflags & FS_XFLAG_SYNC)      ? S_SYNC      : 0) |
1062                ((xflags & FS_XFLAG_NOATIME)   ? S_NOATIME   : 0) |
1063                ((xflags & FS_XFLAG_APPEND)    ? S_APPEND    : 0) |
1064                ((xflags & FS_XFLAG_IMMUTABLE) ? S_IMMUTABLE : 0);
1065 }
1066
1067 static inline int ll_inode_flags_to_xflags(int flags)
1068 {
1069         return ((flags & S_SYNC)      ? FS_XFLAG_SYNC      : 0) |
1070                ((flags & S_NOATIME)   ? FS_XFLAG_NOATIME   : 0) |
1071                ((flags & S_APPEND)    ? FS_XFLAG_APPEND    : 0) |
1072                ((flags & S_IMMUTABLE) ? FS_XFLAG_IMMUTABLE : 0);
1073 }
1074
1075 int ll_migrate(struct inode *parent, struct file *file,
1076                struct lmv_user_md *lum, const char *name);
1077 int ll_get_fid_by_name(struct inode *parent, const char *name,
1078                        int namelen, struct lu_fid *fid, struct inode **inode);
1079 int ll_inode_permission(struct inode *inode, int mask);
1080 int ll_ioctl_check_project(struct inode *inode, struct fsxattr *fa);
1081 int ll_ioctl_fsgetxattr(struct inode *inode, unsigned int cmd,
1082                         unsigned long arg);
1083 int ll_ioctl_fssetxattr(struct inode *inode, unsigned int cmd,
1084                         unsigned long arg);
1085
1086 int ll_lov_setstripe_ea_info(struct inode *inode, struct dentry *dentry,
1087                              __u64 flags, struct lov_user_md *lum,
1088                              int lum_size);
1089 int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
1090                              struct lov_mds_md **lmm, int *lmm_size,
1091                              struct ptlrpc_request **request);
1092 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
1093                      int set_default);
1094 int ll_dir_getstripe_default(struct inode *inode, void **lmmp,
1095                              int *lmm_size, struct ptlrpc_request **request,
1096                              struct ptlrpc_request **root_request, u64 valid);
1097 int ll_dir_getstripe(struct inode *inode, void **plmm, int *plmm_size,
1098                      struct ptlrpc_request **request, u64 valid);
1099 int ll_fsync(struct file *file, loff_t start, loff_t end, int data);
1100 int ll_merge_attr(const struct lu_env *env, struct inode *inode);
1101 int ll_fid2path(struct inode *inode, void __user *arg);
1102 int ll_data_version(struct inode *inode, __u64 *data_version, int flags);
1103 int ll_hsm_release(struct inode *inode);
1104 int ll_hsm_state_set(struct inode *inode, struct hsm_state_set *hss);
1105 void ll_io_set_mirror(struct cl_io *io, const struct file *file);
1106
1107 /* llite/dcache.c */
1108
1109 int ll_d_init(struct dentry *de);
1110 extern const struct dentry_operations ll_d_ops;
1111 void ll_intent_drop_lock(struct lookup_intent *);
1112 void ll_intent_release(struct lookup_intent *);
1113 void ll_invalidate_aliases(struct inode *);
1114 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
1115 int ll_revalidate_it_finish(struct ptlrpc_request *request,
1116                             struct lookup_intent *it, struct dentry *de);
1117
1118 /* llite/llite_lib.c */
1119 extern struct super_operations lustre_super_operations;
1120
1121 void ll_lli_init(struct ll_inode_info *lli);
1122 int ll_fill_super(struct super_block *sb);
1123 void ll_put_super(struct super_block *sb);
1124 void ll_kill_super(struct super_block *sb);
1125 struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock);
1126 void ll_dir_clear_lsm_md(struct inode *inode);
1127 void ll_clear_inode(struct inode *inode);
1128 int ll_setattr_raw(struct dentry *dentry, struct iattr *attr,
1129                    enum op_xvalid xvalid, bool hsm_import);
1130 int ll_setattr(struct dentry *de, struct iattr *attr);
1131 int ll_statfs(struct dentry *de, struct kstatfs *sfs);
1132 int ll_statfs_internal(struct ll_sb_info *sbi, struct obd_statfs *osfs,
1133                        u32 flags);
1134 int ll_update_inode(struct inode *inode, struct lustre_md *md);
1135 void ll_update_inode_flags(struct inode *inode, int ext_flags);
1136 int ll_read_inode2(struct inode *inode, void *opaque);
1137 void ll_delete_inode(struct inode *inode);
1138 int ll_iocontrol(struct inode *inode, struct file *file,
1139                  unsigned int cmd, unsigned long arg);
1140 int ll_flush_ctx(struct inode *inode);
1141 void ll_umount_begin(struct super_block *sb);
1142 int ll_remount_fs(struct super_block *sb, int *flags, char *data);
1143 int ll_show_options(struct seq_file *seq, struct dentry *dentry);
1144 void ll_dirty_page_discard_warn(struct page *page, int ioret);
1145 int ll_prep_inode(struct inode **inode, struct ptlrpc_request *req,
1146                   struct super_block *, struct lookup_intent *);
1147 int ll_obd_statfs(struct inode *inode, void __user *arg);
1148 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *max_mdsize);
1149 int ll_get_default_mdsize(struct ll_sb_info *sbi, int *default_mdsize);
1150 int ll_set_default_mdsize(struct ll_sb_info *sbi, int default_mdsize);
1151
1152 void ll_unlock_md_op_lsm(struct md_op_data *op_data);
1153 struct md_op_data *ll_prep_md_op_data(struct md_op_data *op_data,
1154                                       struct inode *i1, struct inode *i2,
1155                                       const char *name, size_t namelen,
1156                                       __u32 mode, enum md_op_code opc,
1157                                       void *data);
1158 void ll_finish_md_op_data(struct md_op_data *op_data);
1159 int ll_get_obd_name(struct inode *inode, unsigned int cmd, unsigned long arg);
1160 void ll_compute_rootsquash_state(struct ll_sb_info *sbi);
1161 ssize_t ll_copy_user_md(const struct lov_user_md __user *md,
1162                         struct lov_user_md **kbuf);
1163 void ll_open_cleanup(struct super_block *sb, struct ptlrpc_request *open_req);
1164
1165 void ll_dom_finish_open(struct inode *inode, struct ptlrpc_request *req,
1166                         struct lookup_intent *it);
1167
1168 /* Compute expected user md size when passing in a md from user space */
1169 static inline ssize_t ll_lov_user_md_size(const struct lov_user_md *lum)
1170 {
1171         switch (lum->lmm_magic) {
1172         case LOV_USER_MAGIC_V1:
1173                 return sizeof(struct lov_user_md_v1);
1174         case LOV_USER_MAGIC_V3:
1175                 return sizeof(struct lov_user_md_v3);
1176         case LOV_USER_MAGIC_SPECIFIC:
1177                 if (lum->lmm_stripe_count > LOV_MAX_STRIPE_COUNT)
1178                         return -EINVAL;
1179
1180                 return lov_user_md_size(lum->lmm_stripe_count,
1181                                         LOV_USER_MAGIC_SPECIFIC);
1182         case LOV_USER_MAGIC_COMP_V1:
1183                 return ((struct lov_comp_md_v1 *)lum)->lcm_size;
1184         case LOV_USER_MAGIC_FOREIGN:
1185                 return foreign_size(lum);
1186         }
1187
1188         return -EINVAL;
1189 }
1190
1191 /* llite/llite_nfs.c */
1192 extern struct export_operations lustre_export_operations;
1193 __u32 get_uuid2int(const char *name, int len);
1194 struct inode *search_inode_for_lustre(struct super_block *sb,
1195                                       const struct lu_fid *fid);
1196 int ll_dir_get_parent_fid(struct inode *dir, struct lu_fid *parent_fid);
1197
1198 /* llite/symlink.c */
1199 extern struct inode_operations ll_fast_symlink_inode_operations;
1200
1201 /**
1202  * IO arguments for various VFS I/O interfaces.
1203  */
1204 struct vvp_io_args {
1205         /** normal/sendfile/splice */
1206         enum vvp_io_subtype via_io_subtype;
1207
1208         union {
1209                 struct {
1210                         struct kiocb      *via_iocb;
1211                         struct iov_iter   *via_iter;
1212                 } normal;
1213                 struct {
1214                         struct pipe_inode_info  *via_pipe;
1215                         unsigned int       via_flags;
1216                 } splice;
1217         } u;
1218 };
1219
1220 enum lcc_type {
1221         LCC_RW = 1,
1222         LCC_MMAP
1223 };
1224
1225 struct ll_cl_context {
1226         struct list_head         lcc_list;
1227         void                    *lcc_cookie;
1228         const struct lu_env     *lcc_env;
1229         struct cl_io            *lcc_io;
1230         struct cl_page          *lcc_page;
1231         enum lcc_type            lcc_type;
1232 };
1233
1234 struct ll_thread_info {
1235         struct vvp_io_args      lti_args;
1236         struct ra_io_arg        lti_ria;
1237         struct ll_cl_context    lti_io_ctx;
1238 };
1239
1240 extern struct lu_context_key ll_thread_key;
1241
1242 static inline struct ll_thread_info *ll_env_info(const struct lu_env *env)
1243 {
1244         struct ll_thread_info *lti;
1245
1246         lti = lu_context_key_get(&env->le_ctx, &ll_thread_key);
1247         LASSERT(lti != NULL);
1248
1249         return lti;
1250 }
1251
1252 static inline struct vvp_io_args *ll_env_args(const struct lu_env *env,
1253                                               enum vvp_io_subtype type)
1254 {
1255         struct vvp_io_args *via = &ll_env_info(env)->lti_args;
1256
1257         via->via_io_subtype = type;
1258
1259         return via;
1260 }
1261
1262 void ll_io_init(struct cl_io *io, struct file *file, enum cl_io_type iot,
1263                 struct vvp_io_args *args);
1264
1265 /* llite/llite_mmap.c */
1266
1267 int ll_teardown_mmaps(struct address_space *mapping, __u64 first, __u64 last);
1268 int ll_file_mmap(struct file * file, struct vm_area_struct * vma);
1269 void policy_from_vma(union ldlm_policy_data *policy, struct vm_area_struct *vma,
1270                      unsigned long addr, size_t count);
1271 struct vm_area_struct *our_vma(struct mm_struct *mm, unsigned long addr,
1272                                size_t count);
1273
1274 #define    ll_s2sbi(sb)        (s2lsi(sb)->lsi_llsbi)
1275
1276 /* don't need an addref as the sb_info should be holding one */
1277 static inline struct obd_export *ll_s2dtexp(struct super_block *sb)
1278 {
1279         return ll_s2sbi(sb)->ll_dt_exp;
1280 }
1281
1282 /* don't need an addref as the sb_info should be holding one */
1283 static inline struct obd_export *ll_s2mdexp(struct super_block *sb)
1284 {
1285         return ll_s2sbi(sb)->ll_md_exp;
1286 }
1287
1288 static inline struct client_obd *sbi2mdc(struct ll_sb_info *sbi)
1289 {
1290         struct obd_device *obd = sbi->ll_md_exp->exp_obd;
1291         if (obd == NULL)
1292                 LBUG();
1293         return &obd->u.cli;
1294 }
1295
1296 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
1297 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
1298 {
1299         return ll_s2sbi(inode->i_sb);
1300 }
1301
1302 static inline struct obd_export *ll_i2dtexp(struct inode *inode)
1303 {
1304         return ll_s2dtexp(inode->i_sb);
1305 }
1306
1307 static inline struct obd_export *ll_i2mdexp(struct inode *inode)
1308 {
1309         return ll_s2mdexp(inode->i_sb);
1310 }
1311
1312 static inline struct lu_fid *ll_inode2fid(struct inode *inode)
1313 {
1314         struct lu_fid *fid;
1315
1316         LASSERT(inode != NULL);
1317         fid = &ll_i2info(inode)->lli_fid;
1318
1319         return fid;
1320 }
1321
1322 static inline bool ll_dir_striped(struct inode *inode)
1323 {
1324         LASSERT(inode);
1325         return S_ISDIR(inode->i_mode) &&
1326                lmv_dir_striped(ll_i2info(inode)->lli_lsm_md);
1327 }
1328
1329 static inline loff_t ll_file_maxbytes(struct inode *inode)
1330 {
1331         struct cl_object *obj = ll_i2info(inode)->lli_clob;
1332
1333         if (obj == NULL)
1334                 return MAX_LFS_FILESIZE;
1335
1336         return min_t(loff_t, cl_object_maxbytes(obj), MAX_LFS_FILESIZE);
1337 }
1338
1339 /* llite/xattr.c */
1340 extern const struct xattr_handler *ll_xattr_handlers[];
1341
1342 #define XATTR_USER_T            1
1343 #define XATTR_TRUSTED_T         2
1344 #define XATTR_SECURITY_T        3
1345 #define XATTR_ACL_ACCESS_T      4
1346 #define XATTR_ACL_DEFAULT_T     5
1347 #define XATTR_LUSTRE_T          6
1348 #define XATTR_OTHER_T           7
1349
1350 ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size);
1351 int ll_xattr_list(struct inode *inode, const char *name, int type,
1352                   void *buffer, size_t size, u64 valid);
1353 const struct xattr_handler *get_xattr_type(const char *name);
1354
1355 /**
1356  * Common IO arguments for various VFS I/O interfaces.
1357  */
1358 int cl_sb_init(struct super_block *sb);
1359 int cl_sb_fini(struct super_block *sb);
1360
1361 enum ras_update_flags {
1362         LL_RAS_HIT  = 0x1,
1363         LL_RAS_MMAP = 0x2
1364 };
1365 void ll_ra_count_put(struct ll_sb_info *sbi, unsigned long len);
1366 void ll_ra_stats_inc(struct inode *inode, enum ra_stat which);
1367
1368 /* statahead.c */
1369
1370 #define LL_SA_RPC_MIN           2
1371 #define LL_SA_RPC_DEF           32
1372 #define LL_SA_RPC_MAX           512
1373
1374 /* XXX: If want to support more concurrent statahead instances,
1375  *      please consider to decentralize the RPC lists attached
1376  *      on related import, such as imp_{sending,delayed}_list.
1377  *      LU-11079 */
1378 #define LL_SA_RUNNING_MAX       256
1379 #define LL_SA_RUNNING_DEF       16
1380
1381 #define LL_SA_CACHE_BIT         5
1382 #define LL_SA_CACHE_SIZE        (1 << LL_SA_CACHE_BIT)
1383 #define LL_SA_CACHE_MASK        (LL_SA_CACHE_SIZE - 1)
1384
1385 /* per inode struct, for dir only */
1386 struct ll_statahead_info {
1387         struct dentry          *sai_dentry;
1388         atomic_t                sai_refcount;   /* when access this struct, hold
1389                                                  * refcount */
1390         unsigned int            sai_max;        /* max ahead of lookup */
1391         __u64                   sai_sent;       /* stat requests sent count */
1392         __u64                   sai_replied;    /* stat requests which received
1393                                                  * reply */
1394         __u64                   sai_index;      /* index of statahead entry */
1395         __u64                   sai_index_wait; /* index of entry which is the
1396                                                  * caller is waiting for */
1397         __u64                   sai_hit;        /* hit count */
1398         __u64                   sai_miss;       /* miss count:
1399                                                  * for "ls -al" case, includes
1400                                                  * hidden dentry miss;
1401                                                  * for "ls -l" case, it does not
1402                                                  * include hidden dentry miss.
1403                                                  * "sai_miss_hidden" is used for
1404                                                  * the later case.
1405                                                  */
1406         unsigned int            sai_consecutive_miss; /* consecutive miss */
1407         unsigned int            sai_miss_hidden;/* "ls -al", but first dentry
1408                                                  * is not a hidden one */
1409         unsigned int            sai_skip_hidden;/* skipped hidden dentry count
1410                                                  */
1411         unsigned int            sai_ls_all:1,   /* "ls -al", do stat-ahead for
1412                                                  * hidden entries */
1413                                 sai_agl_valid:1,/* AGL is valid for the dir */
1414                                 sai_in_readpage:1;/* statahead is in readdir()*/
1415         wait_queue_head_t       sai_waitq;      /* stat-ahead wait queue */
1416         struct task_struct      *sai_task;      /* stat-ahead thread */
1417         struct task_struct      *sai_agl_task;  /* AGL thread */
1418         struct list_head        sai_interim_entries; /* entries which got async
1419                                                       * stat reply, but not
1420                                                       * instantiated */
1421         struct list_head        sai_entries;    /* completed entries */
1422         struct list_head        sai_agls;       /* AGLs to be sent */
1423         struct list_head        sai_cache[LL_SA_CACHE_SIZE];
1424         spinlock_t              sai_cache_lock[LL_SA_CACHE_SIZE];
1425         atomic_t                sai_cache_count; /* entry count in cache */
1426 };
1427
1428 int ll_revalidate_statahead(struct inode *dir, struct dentry **dentry,
1429                             bool unplug);
1430 int ll_start_statahead(struct inode *dir, struct dentry *dentry, bool agl);
1431 void ll_authorize_statahead(struct inode *dir, void *key);
1432 void ll_deauthorize_statahead(struct inode *dir, void *key);
1433
1434 /* glimpse.c */
1435 blkcnt_t dirty_cnt(struct inode *inode);
1436
1437 int cl_glimpse_size0(struct inode *inode, int agl);
1438 int cl_glimpse_lock(const struct lu_env *env, struct cl_io *io,
1439                     struct inode *inode, struct cl_object *clob, int agl);
1440
1441 static inline int cl_glimpse_size(struct inode *inode)
1442 {
1443         return cl_glimpse_size0(inode, 0);
1444 }
1445
1446 /* AGL is 'asychronous glimpse lock', which is a speculative lock taken as
1447  * part of statahead */
1448 static inline int cl_agl(struct inode *inode)
1449 {
1450         return cl_glimpse_size0(inode, 1);
1451 }
1452
1453 int ll_file_lock_ahead(struct file *file, struct llapi_lu_ladvise *ladvise);
1454
1455 int cl_io_get(struct inode *inode, struct lu_env **envout,
1456               struct cl_io **ioout, __u16 *refcheck);
1457
1458 static inline int ll_glimpse_size(struct inode *inode)
1459 {
1460         struct ll_inode_info *lli = ll_i2info(inode);
1461         int rc;
1462
1463         down_read(&lli->lli_glimpse_sem);
1464         rc = cl_glimpse_size(inode);
1465         lli->lli_glimpse_time = ktime_get();
1466         up_read(&lli->lli_glimpse_sem);
1467         return rc;
1468 }
1469
1470 /* dentry may statahead when statahead is enabled and current process has opened
1471  * parent directory, and this dentry hasn't accessed statahead cache before */
1472 static inline bool
1473 dentry_may_statahead(struct inode *dir, struct dentry *dentry)
1474 {
1475         struct ll_inode_info  *lli;
1476         struct ll_dentry_data *ldd;
1477
1478         if (ll_i2sbi(dir)->ll_sa_max == 0)
1479                 return false;
1480
1481         lli = ll_i2info(dir);
1482
1483         /* statahead is not allowed for this dir, there may be three causes:
1484          * 1. dir is not opened.
1485          * 2. statahead hit ratio is too low.
1486          * 3. previous stat started statahead thread failed. */
1487         if (!lli->lli_sa_enabled)
1488                 return false;
1489
1490         /* not the same process, don't statahead */
1491         if (lli->lli_opendir_pid != current->pid)
1492                 return false;
1493
1494         /*
1495          * When stating a dentry, kernel may trigger 'revalidate' or 'lookup'
1496          * multiple times, eg. for 'getattr', 'getxattr' and etc.
1497          * For patchless client, lookup intent is not accurate, which may
1498          * misguide statahead. For example:
1499          * The 'revalidate' call for 'getattr' and 'getxattr' of a dentry will
1500          * have the same intent -- IT_GETATTR, while one dentry should access
1501          * statahead cache once, otherwise statahead windows is messed up.
1502          * The solution is as following:
1503          * Assign 'lld_sa_generation' with 'lli_sa_generation' when a dentry
1504          * IT_GETATTR for the first time, and subsequent IT_GETATTR will
1505          * bypass interacting with statahead cache by checking
1506          * 'lld_sa_generation == lli->lli_sa_generation'.
1507          */
1508         ldd = ll_d2d(dentry);
1509         if (ldd != NULL && lli->lli_sa_generation &&
1510             ldd->lld_sa_generation == lli->lli_sa_generation)
1511                 return false;
1512
1513         return true;
1514 }
1515
1516 int cl_sync_file_range(struct inode *inode, loff_t start, loff_t end,
1517                        enum cl_fsync_mode mode, int ignore_layout);
1518
1519 static inline int ll_file_nolock(const struct file *file)
1520 {
1521         struct ll_file_data *fd = file->private_data;
1522         struct inode *inode = file_inode((struct file *)file);
1523
1524         LASSERT(fd != NULL);
1525         return ((fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
1526                 (ll_i2sbi(inode)->ll_flags & LL_SBI_NOLCK));
1527 }
1528
1529 static inline void ll_set_lock_data(struct obd_export *exp, struct inode *inode,
1530                                     struct lookup_intent *it, __u64 *bits)
1531 {
1532         if (!it->it_lock_set) {
1533                 struct lustre_handle handle;
1534
1535                 /* If this inode is a remote object, it will get two
1536                  * separate locks in different namespaces, Master MDT,
1537                  * where the name entry is, will grant LOOKUP lock,
1538                  * remote MDT, where the object is, will grant
1539                  * UPDATE|PERM lock. The inode will be attched to both
1540                  * LOOKUP and PERM locks, so revoking either locks will
1541                  * case the dcache being cleared */
1542                 if (it->it_remote_lock_mode) {
1543                         handle.cookie = it->it_remote_lock_handle;
1544                         CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID
1545                                "(%p) for remote lock %#llx\n",
1546                                PFID(ll_inode2fid(inode)), inode,
1547                                handle.cookie);
1548                         md_set_lock_data(exp, &handle, inode, NULL);
1549                 }
1550
1551                 handle.cookie = it->it_lock_handle;
1552
1553                 CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID"(%p)"
1554                        " for lock %#llx\n",
1555                        PFID(ll_inode2fid(inode)), inode, handle.cookie);
1556
1557                 md_set_lock_data(exp, &handle, inode, &it->it_lock_bits);
1558                 it->it_lock_set = 1;
1559         }
1560
1561         if (bits != NULL)
1562                 *bits = it->it_lock_bits;
1563 }
1564
1565 static inline int d_lustre_invalid(const struct dentry *dentry)
1566 {
1567         struct ll_dentry_data *lld = ll_d2d(dentry);
1568
1569         return (lld == NULL) || lld->lld_invalid;
1570 }
1571
1572 static inline void __d_lustre_invalidate(struct dentry *dentry)
1573 {
1574         struct ll_dentry_data *lld = ll_d2d(dentry);
1575
1576         if (lld != NULL)
1577                 lld->lld_invalid = 1;
1578 }
1579
1580 /*
1581  * Mark dentry INVALID, if dentry refcount is zero (this is normally case for
1582  * ll_md_blocking_ast), unhash this dentry, and let dcache to reclaim it later;
1583  * else dput() of the last refcount will unhash this dentry and kill it.
1584  */
1585 static inline void d_lustre_invalidate(struct dentry *dentry, int nested)
1586 {
1587         CDEBUG(D_DENTRY, "invalidate dentry %pd (%p) parent %p inode %p refc %d\n",
1588                dentry, dentry,
1589                dentry->d_parent, dentry->d_inode, ll_d_count(dentry));
1590
1591         spin_lock_nested(&dentry->d_lock,
1592                          nested ? DENTRY_D_LOCK_NESTED : DENTRY_D_LOCK_NORMAL);
1593         __d_lustre_invalidate(dentry);
1594         /*
1595          * We should be careful about dentries created by d_obtain_alias().
1596          * These dentries are not put in the dentry tree, instead they are
1597          * linked to sb->s_anon through dentry->d_hash.
1598          * shrink_dcache_for_umount() shrinks the tree and sb->s_anon list.
1599          * If we unhashed such a dentry, unmount would not be able to find
1600          * it and busy inodes would be reported.
1601          */
1602         if (ll_d_count(dentry) == 0 && !(dentry->d_flags & DCACHE_DISCONNECTED))
1603                 __d_drop(dentry);
1604         spin_unlock(&dentry->d_lock);
1605 }
1606
1607 static inline void d_lustre_revalidate(struct dentry *dentry)
1608 {
1609         spin_lock(&dentry->d_lock);
1610         LASSERT(ll_d2d(dentry) != NULL);
1611         ll_d2d(dentry)->lld_invalid = 0;
1612         spin_unlock(&dentry->d_lock);
1613 }
1614
1615 static inline dev_t ll_compat_encode_dev(dev_t dev)
1616 {
1617         /* The compat_sys_*stat*() syscalls will fail unless the
1618          * device majors and minors are both less than 256. Note that
1619          * the value returned here will be passed through
1620          * old_encode_dev() in cp_compat_stat(). And so we are not
1621          * trying to return a valid compat (u16) device number, just
1622          * one that will pass the old_valid_dev() check. */
1623
1624         return MKDEV(MAJOR(dev) & 0xff, MINOR(dev) & 0xff);
1625 }
1626
1627 int ll_layout_conf(struct inode *inode, const struct cl_object_conf *conf);
1628 int ll_layout_refresh(struct inode *inode, __u32 *gen);
1629 int ll_layout_restore(struct inode *inode, loff_t start, __u64 length);
1630 int ll_layout_write_intent(struct inode *inode, enum layout_intent_opc opc,
1631                            struct lu_extent *ext);
1632
1633 int ll_xattr_init(void);
1634 void ll_xattr_fini(void);
1635
1636 int ll_page_sync_io(const struct lu_env *env, struct cl_io *io,
1637                     struct cl_page *page, enum cl_req_type crt);
1638
1639 int ll_getparent(struct file *file, struct getparent __user *arg);
1640
1641 /* lcommon_cl.c */
1642 int cl_setattr_ost(struct cl_object *obj, const struct iattr *attr,
1643                    enum op_xvalid xvalid, unsigned int attr_flags);
1644
1645 extern struct lu_env *cl_inode_fini_env;
1646 extern __u16 cl_inode_fini_refcheck;
1647
1648 int cl_file_inode_init(struct inode *inode, struct lustre_md *md);
1649 void cl_inode_fini(struct inode *inode);
1650
1651 u64 cl_fid_build_ino(const struct lu_fid *fid, int api32);
1652 u32 cl_fid_build_gen(const struct lu_fid *fid);
1653
1654 static inline struct pcc_super *ll_i2pccs(struct inode *inode)
1655 {
1656         return &ll_i2sbi(inode)->ll_pcc_super;
1657 }
1658
1659 static inline struct pcc_super *ll_info2pccs(struct ll_inode_info *lli)
1660 {
1661         return ll_i2pccs(ll_info2i(lli));
1662 }
1663
1664 #ifdef HAVE_LUSTRE_CRYPTO
1665 /* crypto.c */
1666 extern const struct llcrypt_operations lustre_cryptops;
1667 #endif
1668
1669 #endif /* LLITE_INTERNAL_H */