1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0-or-later */
2*4882a593Smuzhiyun /* internal AFS stuff
3*4882a593Smuzhiyun *
4*4882a593Smuzhiyun * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
5*4882a593Smuzhiyun * Written by David Howells (dhowells@redhat.com)
6*4882a593Smuzhiyun */
7*4882a593Smuzhiyun
8*4882a593Smuzhiyun #include <linux/compiler.h>
9*4882a593Smuzhiyun #include <linux/kernel.h>
10*4882a593Smuzhiyun #include <linux/ktime.h>
11*4882a593Smuzhiyun #include <linux/fs.h>
12*4882a593Smuzhiyun #include <linux/pagemap.h>
13*4882a593Smuzhiyun #include <linux/rxrpc.h>
14*4882a593Smuzhiyun #include <linux/key.h>
15*4882a593Smuzhiyun #include <linux/workqueue.h>
16*4882a593Smuzhiyun #include <linux/sched.h>
17*4882a593Smuzhiyun #include <linux/fscache.h>
18*4882a593Smuzhiyun #include <linux/backing-dev.h>
19*4882a593Smuzhiyun #include <linux/uuid.h>
20*4882a593Smuzhiyun #include <linux/mm_types.h>
21*4882a593Smuzhiyun #include <linux/dns_resolver.h>
22*4882a593Smuzhiyun #include <net/net_namespace.h>
23*4882a593Smuzhiyun #include <net/netns/generic.h>
24*4882a593Smuzhiyun #include <net/sock.h>
25*4882a593Smuzhiyun #include <net/af_rxrpc.h>
26*4882a593Smuzhiyun
27*4882a593Smuzhiyun #include "afs.h"
28*4882a593Smuzhiyun #include "afs_vl.h"
29*4882a593Smuzhiyun
30*4882a593Smuzhiyun #define AFS_CELL_MAX_ADDRS 15
31*4882a593Smuzhiyun
32*4882a593Smuzhiyun struct pagevec;
33*4882a593Smuzhiyun struct afs_call;
34*4882a593Smuzhiyun
35*4882a593Smuzhiyun /*
36*4882a593Smuzhiyun * Partial file-locking emulation mode. (The problem being that AFS3 only
37*4882a593Smuzhiyun * allows whole-file locks and no upgrading/downgrading).
38*4882a593Smuzhiyun */
39*4882a593Smuzhiyun enum afs_flock_mode {
40*4882a593Smuzhiyun afs_flock_mode_unset,
41*4882a593Smuzhiyun afs_flock_mode_local, /* Local locking only */
42*4882a593Smuzhiyun afs_flock_mode_openafs, /* Don't get server lock for a partial lock */
43*4882a593Smuzhiyun afs_flock_mode_strict, /* Always get a server lock for a partial lock */
44*4882a593Smuzhiyun afs_flock_mode_write, /* Get an exclusive server lock for a partial lock */
45*4882a593Smuzhiyun };
46*4882a593Smuzhiyun
47*4882a593Smuzhiyun struct afs_fs_context {
48*4882a593Smuzhiyun bool force; /* T to force cell type */
49*4882a593Smuzhiyun bool autocell; /* T if set auto mount operation */
50*4882a593Smuzhiyun bool dyn_root; /* T if dynamic root */
51*4882a593Smuzhiyun bool no_cell; /* T if the source is "none" (for dynroot) */
52*4882a593Smuzhiyun enum afs_flock_mode flock_mode; /* Partial file-locking emulation mode */
53*4882a593Smuzhiyun afs_voltype_t type; /* type of volume requested */
54*4882a593Smuzhiyun unsigned int volnamesz; /* size of volume name */
55*4882a593Smuzhiyun const char *volname; /* name of volume to mount */
56*4882a593Smuzhiyun struct afs_net *net; /* the AFS net namespace stuff */
57*4882a593Smuzhiyun struct afs_cell *cell; /* cell in which to find volume */
58*4882a593Smuzhiyun struct afs_volume *volume; /* volume record */
59*4882a593Smuzhiyun struct key *key; /* key to use for secure mounting */
60*4882a593Smuzhiyun };
61*4882a593Smuzhiyun
62*4882a593Smuzhiyun enum afs_call_state {
63*4882a593Smuzhiyun AFS_CALL_CL_REQUESTING, /* Client: Request is being sent */
64*4882a593Smuzhiyun AFS_CALL_CL_AWAIT_REPLY, /* Client: Awaiting reply */
65*4882a593Smuzhiyun AFS_CALL_CL_PROC_REPLY, /* Client: rxrpc call complete; processing reply */
66*4882a593Smuzhiyun AFS_CALL_SV_AWAIT_OP_ID, /* Server: Awaiting op ID */
67*4882a593Smuzhiyun AFS_CALL_SV_AWAIT_REQUEST, /* Server: Awaiting request data */
68*4882a593Smuzhiyun AFS_CALL_SV_REPLYING, /* Server: Replying */
69*4882a593Smuzhiyun AFS_CALL_SV_AWAIT_ACK, /* Server: Awaiting final ACK */
70*4882a593Smuzhiyun AFS_CALL_COMPLETE, /* Completed or failed */
71*4882a593Smuzhiyun };
72*4882a593Smuzhiyun
73*4882a593Smuzhiyun /*
74*4882a593Smuzhiyun * List of server addresses.
75*4882a593Smuzhiyun */
76*4882a593Smuzhiyun struct afs_addr_list {
77*4882a593Smuzhiyun struct rcu_head rcu;
78*4882a593Smuzhiyun refcount_t usage;
79*4882a593Smuzhiyun u32 version; /* Version */
80*4882a593Smuzhiyun unsigned char max_addrs;
81*4882a593Smuzhiyun unsigned char nr_addrs;
82*4882a593Smuzhiyun unsigned char preferred; /* Preferred address */
83*4882a593Smuzhiyun unsigned char nr_ipv4; /* Number of IPv4 addresses */
84*4882a593Smuzhiyun enum dns_record_source source:8;
85*4882a593Smuzhiyun enum dns_lookup_status status:8;
86*4882a593Smuzhiyun unsigned long failed; /* Mask of addrs that failed locally/ICMP */
87*4882a593Smuzhiyun unsigned long responded; /* Mask of addrs that responded */
88*4882a593Smuzhiyun struct sockaddr_rxrpc addrs[];
89*4882a593Smuzhiyun #define AFS_MAX_ADDRESSES ((unsigned int)(sizeof(unsigned long) * 8))
90*4882a593Smuzhiyun };
91*4882a593Smuzhiyun
92*4882a593Smuzhiyun /*
93*4882a593Smuzhiyun * a record of an in-progress RxRPC call
94*4882a593Smuzhiyun */
95*4882a593Smuzhiyun struct afs_call {
96*4882a593Smuzhiyun const struct afs_call_type *type; /* type of call */
97*4882a593Smuzhiyun struct afs_addr_list *alist; /* Address is alist[addr_ix] */
98*4882a593Smuzhiyun wait_queue_head_t waitq; /* processes awaiting completion */
99*4882a593Smuzhiyun struct work_struct async_work; /* async I/O processor */
100*4882a593Smuzhiyun struct work_struct work; /* actual work processor */
101*4882a593Smuzhiyun struct rxrpc_call *rxcall; /* RxRPC call handle */
102*4882a593Smuzhiyun struct key *key; /* security for this call */
103*4882a593Smuzhiyun struct afs_net *net; /* The network namespace */
104*4882a593Smuzhiyun struct afs_server *server; /* The fileserver record if fs op (pins ref) */
105*4882a593Smuzhiyun struct afs_vlserver *vlserver; /* The vlserver record if vl op */
106*4882a593Smuzhiyun void *request; /* request data (first part) */
107*4882a593Smuzhiyun struct iov_iter def_iter; /* Default buffer/data iterator */
108*4882a593Smuzhiyun struct iov_iter *iter; /* Iterator currently in use */
109*4882a593Smuzhiyun union { /* Convenience for ->def_iter */
110*4882a593Smuzhiyun struct kvec kvec[1];
111*4882a593Smuzhiyun struct bio_vec bvec[1];
112*4882a593Smuzhiyun };
113*4882a593Smuzhiyun void *buffer; /* reply receive buffer */
114*4882a593Smuzhiyun union {
115*4882a593Smuzhiyun long ret0; /* Value to reply with instead of 0 */
116*4882a593Smuzhiyun struct afs_addr_list *ret_alist;
117*4882a593Smuzhiyun struct afs_vldb_entry *ret_vldb;
118*4882a593Smuzhiyun char *ret_str;
119*4882a593Smuzhiyun };
120*4882a593Smuzhiyun struct afs_operation *op;
121*4882a593Smuzhiyun unsigned int server_index;
122*4882a593Smuzhiyun atomic_t usage;
123*4882a593Smuzhiyun enum afs_call_state state;
124*4882a593Smuzhiyun spinlock_t state_lock;
125*4882a593Smuzhiyun int error; /* error code */
126*4882a593Smuzhiyun u32 abort_code; /* Remote abort ID or 0 */
127*4882a593Smuzhiyun unsigned int max_lifespan; /* Maximum lifespan to set if not 0 */
128*4882a593Smuzhiyun unsigned request_size; /* size of request data */
129*4882a593Smuzhiyun unsigned reply_max; /* maximum size of reply */
130*4882a593Smuzhiyun unsigned count2; /* count used in unmarshalling */
131*4882a593Smuzhiyun unsigned char unmarshall; /* unmarshalling phase */
132*4882a593Smuzhiyun unsigned char addr_ix; /* Address in ->alist */
133*4882a593Smuzhiyun bool drop_ref; /* T if need to drop ref for incoming call */
134*4882a593Smuzhiyun bool send_pages; /* T if data from mapping should be sent */
135*4882a593Smuzhiyun bool need_attention; /* T if RxRPC poked us */
136*4882a593Smuzhiyun bool async; /* T if asynchronous */
137*4882a593Smuzhiyun bool upgrade; /* T to request service upgrade */
138*4882a593Smuzhiyun bool intr; /* T if interruptible */
139*4882a593Smuzhiyun bool unmarshalling_error; /* T if an unmarshalling error occurred */
140*4882a593Smuzhiyun u16 service_id; /* Actual service ID (after upgrade) */
141*4882a593Smuzhiyun unsigned int debug_id; /* Trace ID */
142*4882a593Smuzhiyun u32 operation_ID; /* operation ID for an incoming call */
143*4882a593Smuzhiyun u32 count; /* count for use in unmarshalling */
144*4882a593Smuzhiyun union { /* place to extract temporary data */
145*4882a593Smuzhiyun struct {
146*4882a593Smuzhiyun __be32 tmp_u;
147*4882a593Smuzhiyun __be32 tmp;
148*4882a593Smuzhiyun } __attribute__((packed));
149*4882a593Smuzhiyun __be64 tmp64;
150*4882a593Smuzhiyun };
151*4882a593Smuzhiyun ktime_t issue_time; /* Time of issue of operation */
152*4882a593Smuzhiyun };
153*4882a593Smuzhiyun
154*4882a593Smuzhiyun struct afs_call_type {
155*4882a593Smuzhiyun const char *name;
156*4882a593Smuzhiyun unsigned int op; /* Really enum afs_fs_operation */
157*4882a593Smuzhiyun
158*4882a593Smuzhiyun /* deliver request or reply data to an call
159*4882a593Smuzhiyun * - returning an error will cause the call to be aborted
160*4882a593Smuzhiyun */
161*4882a593Smuzhiyun int (*deliver)(struct afs_call *call);
162*4882a593Smuzhiyun
163*4882a593Smuzhiyun /* clean up a call */
164*4882a593Smuzhiyun void (*destructor)(struct afs_call *call);
165*4882a593Smuzhiyun
166*4882a593Smuzhiyun /* Work function */
167*4882a593Smuzhiyun void (*work)(struct work_struct *work);
168*4882a593Smuzhiyun
169*4882a593Smuzhiyun /* Call done function (gets called immediately on success or failure) */
170*4882a593Smuzhiyun void (*done)(struct afs_call *call);
171*4882a593Smuzhiyun };
172*4882a593Smuzhiyun
173*4882a593Smuzhiyun /*
174*4882a593Smuzhiyun * Key available for writeback on a file.
175*4882a593Smuzhiyun */
176*4882a593Smuzhiyun struct afs_wb_key {
177*4882a593Smuzhiyun refcount_t usage;
178*4882a593Smuzhiyun struct key *key;
179*4882a593Smuzhiyun struct list_head vnode_link; /* Link in vnode->wb_keys */
180*4882a593Smuzhiyun };
181*4882a593Smuzhiyun
182*4882a593Smuzhiyun /*
183*4882a593Smuzhiyun * AFS open file information record. Pointed to by file->private_data.
184*4882a593Smuzhiyun */
185*4882a593Smuzhiyun struct afs_file {
186*4882a593Smuzhiyun struct key *key; /* The key this file was opened with */
187*4882a593Smuzhiyun struct afs_wb_key *wb; /* Writeback key record for this file */
188*4882a593Smuzhiyun };
189*4882a593Smuzhiyun
afs_file_key(struct file * file)190*4882a593Smuzhiyun static inline struct key *afs_file_key(struct file *file)
191*4882a593Smuzhiyun {
192*4882a593Smuzhiyun struct afs_file *af = file->private_data;
193*4882a593Smuzhiyun
194*4882a593Smuzhiyun return af->key;
195*4882a593Smuzhiyun }
196*4882a593Smuzhiyun
197*4882a593Smuzhiyun /*
198*4882a593Smuzhiyun * Record of an outstanding read operation on a vnode.
199*4882a593Smuzhiyun */
200*4882a593Smuzhiyun struct afs_read {
201*4882a593Smuzhiyun loff_t pos; /* Where to start reading */
202*4882a593Smuzhiyun loff_t len; /* How much we're asking for */
203*4882a593Smuzhiyun loff_t actual_len; /* How much we're actually getting */
204*4882a593Smuzhiyun loff_t remain; /* Amount remaining */
205*4882a593Smuzhiyun loff_t file_size; /* File size returned by server */
206*4882a593Smuzhiyun afs_dataversion_t data_version; /* Version number returned by server */
207*4882a593Smuzhiyun refcount_t usage;
208*4882a593Smuzhiyun unsigned int index; /* Which page we're reading into */
209*4882a593Smuzhiyun unsigned int nr_pages;
210*4882a593Smuzhiyun unsigned int offset; /* offset into current page */
211*4882a593Smuzhiyun struct afs_vnode *vnode;
212*4882a593Smuzhiyun void (*page_done)(struct afs_read *);
213*4882a593Smuzhiyun struct page **pages;
214*4882a593Smuzhiyun struct page *array[];
215*4882a593Smuzhiyun };
216*4882a593Smuzhiyun
217*4882a593Smuzhiyun /*
218*4882a593Smuzhiyun * AFS superblock private data
219*4882a593Smuzhiyun * - there's one superblock per volume
220*4882a593Smuzhiyun */
221*4882a593Smuzhiyun struct afs_super_info {
222*4882a593Smuzhiyun struct net *net_ns; /* Network namespace */
223*4882a593Smuzhiyun struct afs_cell *cell; /* The cell in which the volume resides */
224*4882a593Smuzhiyun struct afs_volume *volume; /* volume record */
225*4882a593Smuzhiyun enum afs_flock_mode flock_mode:8; /* File locking emulation mode */
226*4882a593Smuzhiyun bool dyn_root; /* True if dynamic root */
227*4882a593Smuzhiyun };
228*4882a593Smuzhiyun
AFS_FS_S(struct super_block * sb)229*4882a593Smuzhiyun static inline struct afs_super_info *AFS_FS_S(struct super_block *sb)
230*4882a593Smuzhiyun {
231*4882a593Smuzhiyun return sb->s_fs_info;
232*4882a593Smuzhiyun }
233*4882a593Smuzhiyun
234*4882a593Smuzhiyun extern struct file_system_type afs_fs_type;
235*4882a593Smuzhiyun
236*4882a593Smuzhiyun /*
237*4882a593Smuzhiyun * Set of substitutes for @sys.
238*4882a593Smuzhiyun */
239*4882a593Smuzhiyun struct afs_sysnames {
240*4882a593Smuzhiyun #define AFS_NR_SYSNAME 16
241*4882a593Smuzhiyun char *subs[AFS_NR_SYSNAME];
242*4882a593Smuzhiyun refcount_t usage;
243*4882a593Smuzhiyun unsigned short nr;
244*4882a593Smuzhiyun char blank[1];
245*4882a593Smuzhiyun };
246*4882a593Smuzhiyun
247*4882a593Smuzhiyun /*
248*4882a593Smuzhiyun * AFS network namespace record.
249*4882a593Smuzhiyun */
250*4882a593Smuzhiyun struct afs_net {
251*4882a593Smuzhiyun struct net *net; /* Backpointer to the owning net namespace */
252*4882a593Smuzhiyun struct afs_uuid uuid;
253*4882a593Smuzhiyun bool live; /* F if this namespace is being removed */
254*4882a593Smuzhiyun
255*4882a593Smuzhiyun /* AF_RXRPC I/O stuff */
256*4882a593Smuzhiyun struct socket *socket;
257*4882a593Smuzhiyun struct afs_call *spare_incoming_call;
258*4882a593Smuzhiyun struct work_struct charge_preallocation_work;
259*4882a593Smuzhiyun struct mutex socket_mutex;
260*4882a593Smuzhiyun atomic_t nr_outstanding_calls;
261*4882a593Smuzhiyun atomic_t nr_superblocks;
262*4882a593Smuzhiyun
263*4882a593Smuzhiyun /* Cell database */
264*4882a593Smuzhiyun struct rb_root cells;
265*4882a593Smuzhiyun struct afs_cell *ws_cell;
266*4882a593Smuzhiyun struct work_struct cells_manager;
267*4882a593Smuzhiyun struct timer_list cells_timer;
268*4882a593Smuzhiyun atomic_t cells_outstanding;
269*4882a593Smuzhiyun struct rw_semaphore cells_lock;
270*4882a593Smuzhiyun struct mutex cells_alias_lock;
271*4882a593Smuzhiyun
272*4882a593Smuzhiyun struct mutex proc_cells_lock;
273*4882a593Smuzhiyun struct hlist_head proc_cells;
274*4882a593Smuzhiyun
275*4882a593Smuzhiyun /* Known servers. Theoretically each fileserver can only be in one
276*4882a593Smuzhiyun * cell, but in practice, people create aliases and subsets and there's
277*4882a593Smuzhiyun * no easy way to distinguish them.
278*4882a593Smuzhiyun */
279*4882a593Smuzhiyun seqlock_t fs_lock; /* For fs_servers, fs_probe_*, fs_proc */
280*4882a593Smuzhiyun struct rb_root fs_servers; /* afs_server (by server UUID or address) */
281*4882a593Smuzhiyun struct list_head fs_probe_fast; /* List of afs_server to probe at 30s intervals */
282*4882a593Smuzhiyun struct list_head fs_probe_slow; /* List of afs_server to probe at 5m intervals */
283*4882a593Smuzhiyun struct hlist_head fs_proc; /* procfs servers list */
284*4882a593Smuzhiyun
285*4882a593Smuzhiyun struct hlist_head fs_addresses4; /* afs_server (by lowest IPv4 addr) */
286*4882a593Smuzhiyun struct hlist_head fs_addresses6; /* afs_server (by lowest IPv6 addr) */
287*4882a593Smuzhiyun seqlock_t fs_addr_lock; /* For fs_addresses[46] */
288*4882a593Smuzhiyun
289*4882a593Smuzhiyun struct work_struct fs_manager;
290*4882a593Smuzhiyun struct timer_list fs_timer;
291*4882a593Smuzhiyun
292*4882a593Smuzhiyun struct work_struct fs_prober;
293*4882a593Smuzhiyun struct timer_list fs_probe_timer;
294*4882a593Smuzhiyun atomic_t servers_outstanding;
295*4882a593Smuzhiyun
296*4882a593Smuzhiyun /* File locking renewal management */
297*4882a593Smuzhiyun struct mutex lock_manager_mutex;
298*4882a593Smuzhiyun
299*4882a593Smuzhiyun /* Misc */
300*4882a593Smuzhiyun struct super_block *dynroot_sb; /* Dynamic root mount superblock */
301*4882a593Smuzhiyun struct proc_dir_entry *proc_afs; /* /proc/net/afs directory */
302*4882a593Smuzhiyun struct afs_sysnames *sysnames;
303*4882a593Smuzhiyun rwlock_t sysnames_lock;
304*4882a593Smuzhiyun
305*4882a593Smuzhiyun /* Statistics counters */
306*4882a593Smuzhiyun atomic_t n_lookup; /* Number of lookups done */
307*4882a593Smuzhiyun atomic_t n_reval; /* Number of dentries needing revalidation */
308*4882a593Smuzhiyun atomic_t n_inval; /* Number of invalidations by the server */
309*4882a593Smuzhiyun atomic_t n_relpg; /* Number of invalidations by releasepage */
310*4882a593Smuzhiyun atomic_t n_read_dir; /* Number of directory pages read */
311*4882a593Smuzhiyun atomic_t n_dir_cr; /* Number of directory entry creation edits */
312*4882a593Smuzhiyun atomic_t n_dir_rm; /* Number of directory entry removal edits */
313*4882a593Smuzhiyun atomic_t n_stores; /* Number of store ops */
314*4882a593Smuzhiyun atomic_long_t n_store_bytes; /* Number of bytes stored */
315*4882a593Smuzhiyun atomic_long_t n_fetch_bytes; /* Number of bytes fetched */
316*4882a593Smuzhiyun atomic_t n_fetches; /* Number of data fetch ops */
317*4882a593Smuzhiyun };
318*4882a593Smuzhiyun
319*4882a593Smuzhiyun extern const char afs_init_sysname[];
320*4882a593Smuzhiyun
321*4882a593Smuzhiyun enum afs_cell_state {
322*4882a593Smuzhiyun AFS_CELL_UNSET,
323*4882a593Smuzhiyun AFS_CELL_ACTIVATING,
324*4882a593Smuzhiyun AFS_CELL_ACTIVE,
325*4882a593Smuzhiyun AFS_CELL_DEACTIVATING,
326*4882a593Smuzhiyun AFS_CELL_INACTIVE,
327*4882a593Smuzhiyun AFS_CELL_FAILED,
328*4882a593Smuzhiyun AFS_CELL_REMOVED,
329*4882a593Smuzhiyun };
330*4882a593Smuzhiyun
331*4882a593Smuzhiyun /*
332*4882a593Smuzhiyun * AFS cell record.
333*4882a593Smuzhiyun *
334*4882a593Smuzhiyun * This is a tricky concept to get right as it is possible to create aliases
335*4882a593Smuzhiyun * simply by pointing AFSDB/SRV records for two names at the same set of VL
336*4882a593Smuzhiyun * servers; it is also possible to do things like setting up two sets of VL
337*4882a593Smuzhiyun * servers, one of which provides a superset of the volumes provided by the
338*4882a593Smuzhiyun * other (for internal/external division, for example).
339*4882a593Smuzhiyun *
340*4882a593Smuzhiyun * Cells only exist in the sense that (a) a cell's name maps to a set of VL
341*4882a593Smuzhiyun * servers and (b) a cell's name is used by the client to select the key to use
342*4882a593Smuzhiyun * for authentication and encryption. The cell name is not typically used in
343*4882a593Smuzhiyun * the protocol.
344*4882a593Smuzhiyun *
345*4882a593Smuzhiyun * Two cells are determined to be aliases if they have an explicit alias (YFS
346*4882a593Smuzhiyun * only), share any VL servers in common or have at least one volume in common.
347*4882a593Smuzhiyun * "In common" means that the address list of the VL servers or the fileservers
348*4882a593Smuzhiyun * share at least one endpoint.
349*4882a593Smuzhiyun */
350*4882a593Smuzhiyun struct afs_cell {
351*4882a593Smuzhiyun union {
352*4882a593Smuzhiyun struct rcu_head rcu;
353*4882a593Smuzhiyun struct rb_node net_node; /* Node in net->cells */
354*4882a593Smuzhiyun };
355*4882a593Smuzhiyun struct afs_net *net;
356*4882a593Smuzhiyun struct afs_cell *alias_of; /* The cell this is an alias of */
357*4882a593Smuzhiyun struct afs_volume *root_volume; /* The root.cell volume if there is one */
358*4882a593Smuzhiyun struct key *anonymous_key; /* anonymous user key for this cell */
359*4882a593Smuzhiyun struct work_struct manager; /* Manager for init/deinit/dns */
360*4882a593Smuzhiyun struct hlist_node proc_link; /* /proc cell list link */
361*4882a593Smuzhiyun #ifdef CONFIG_AFS_FSCACHE
362*4882a593Smuzhiyun struct fscache_cookie *cache; /* caching cookie */
363*4882a593Smuzhiyun #endif
364*4882a593Smuzhiyun time64_t dns_expiry; /* Time AFSDB/SRV record expires */
365*4882a593Smuzhiyun time64_t last_inactive; /* Time of last drop of usage count */
366*4882a593Smuzhiyun atomic_t ref; /* Struct refcount */
367*4882a593Smuzhiyun atomic_t active; /* Active usage counter */
368*4882a593Smuzhiyun unsigned long flags;
369*4882a593Smuzhiyun #define AFS_CELL_FL_NO_GC 0 /* The cell was added manually, don't auto-gc */
370*4882a593Smuzhiyun #define AFS_CELL_FL_DO_LOOKUP 1 /* DNS lookup requested */
371*4882a593Smuzhiyun #define AFS_CELL_FL_CHECK_ALIAS 2 /* Need to check for aliases */
372*4882a593Smuzhiyun enum afs_cell_state state;
373*4882a593Smuzhiyun short error;
374*4882a593Smuzhiyun enum dns_record_source dns_source:8; /* Latest source of data from lookup */
375*4882a593Smuzhiyun enum dns_lookup_status dns_status:8; /* Latest status of data from lookup */
376*4882a593Smuzhiyun unsigned int dns_lookup_count; /* Counter of DNS lookups */
377*4882a593Smuzhiyun unsigned int debug_id;
378*4882a593Smuzhiyun
379*4882a593Smuzhiyun /* The volumes belonging to this cell */
380*4882a593Smuzhiyun struct rb_root volumes; /* Tree of volumes on this server */
381*4882a593Smuzhiyun struct hlist_head proc_volumes; /* procfs volume list */
382*4882a593Smuzhiyun seqlock_t volume_lock; /* For volumes */
383*4882a593Smuzhiyun
384*4882a593Smuzhiyun /* Active fileserver interaction state. */
385*4882a593Smuzhiyun struct rb_root fs_servers; /* afs_server (by server UUID) */
386*4882a593Smuzhiyun seqlock_t fs_lock; /* For fs_servers */
387*4882a593Smuzhiyun
388*4882a593Smuzhiyun /* VL server list. */
389*4882a593Smuzhiyun rwlock_t vl_servers_lock; /* Lock on vl_servers */
390*4882a593Smuzhiyun struct afs_vlserver_list __rcu *vl_servers;
391*4882a593Smuzhiyun
392*4882a593Smuzhiyun u8 name_len; /* Length of name */
393*4882a593Smuzhiyun char *name; /* Cell name, case-flattened and NUL-padded */
394*4882a593Smuzhiyun };
395*4882a593Smuzhiyun
396*4882a593Smuzhiyun /*
397*4882a593Smuzhiyun * Volume Location server record.
398*4882a593Smuzhiyun */
399*4882a593Smuzhiyun struct afs_vlserver {
400*4882a593Smuzhiyun struct rcu_head rcu;
401*4882a593Smuzhiyun struct afs_addr_list __rcu *addresses; /* List of addresses for this VL server */
402*4882a593Smuzhiyun unsigned long flags;
403*4882a593Smuzhiyun #define AFS_VLSERVER_FL_PROBED 0 /* The VL server has been probed */
404*4882a593Smuzhiyun #define AFS_VLSERVER_FL_PROBING 1 /* VL server is being probed */
405*4882a593Smuzhiyun #define AFS_VLSERVER_FL_IS_YFS 2 /* Server is YFS not AFS */
406*4882a593Smuzhiyun #define AFS_VLSERVER_FL_RESPONDING 3 /* VL server is responding */
407*4882a593Smuzhiyun rwlock_t lock; /* Lock on addresses */
408*4882a593Smuzhiyun atomic_t usage;
409*4882a593Smuzhiyun unsigned int rtt; /* Server's current RTT in uS */
410*4882a593Smuzhiyun
411*4882a593Smuzhiyun /* Probe state */
412*4882a593Smuzhiyun wait_queue_head_t probe_wq;
413*4882a593Smuzhiyun atomic_t probe_outstanding;
414*4882a593Smuzhiyun spinlock_t probe_lock;
415*4882a593Smuzhiyun struct {
416*4882a593Smuzhiyun unsigned int rtt; /* RTT in uS */
417*4882a593Smuzhiyun u32 abort_code;
418*4882a593Smuzhiyun short error;
419*4882a593Smuzhiyun unsigned short flags;
420*4882a593Smuzhiyun #define AFS_VLSERVER_PROBE_RESPONDED 0x01 /* At least once response (may be abort) */
421*4882a593Smuzhiyun #define AFS_VLSERVER_PROBE_IS_YFS 0x02 /* The peer appears to be YFS */
422*4882a593Smuzhiyun #define AFS_VLSERVER_PROBE_NOT_YFS 0x04 /* The peer appears not to be YFS */
423*4882a593Smuzhiyun #define AFS_VLSERVER_PROBE_LOCAL_FAILURE 0x08 /* A local failure prevented a probe */
424*4882a593Smuzhiyun } probe;
425*4882a593Smuzhiyun
426*4882a593Smuzhiyun u16 port;
427*4882a593Smuzhiyun u16 name_len; /* Length of name */
428*4882a593Smuzhiyun char name[]; /* Server name, case-flattened */
429*4882a593Smuzhiyun };
430*4882a593Smuzhiyun
431*4882a593Smuzhiyun /*
432*4882a593Smuzhiyun * Weighted list of Volume Location servers.
433*4882a593Smuzhiyun */
434*4882a593Smuzhiyun struct afs_vlserver_entry {
435*4882a593Smuzhiyun u16 priority; /* Preference (as SRV) */
436*4882a593Smuzhiyun u16 weight; /* Weight (as SRV) */
437*4882a593Smuzhiyun enum dns_record_source source:8;
438*4882a593Smuzhiyun enum dns_lookup_status status:8;
439*4882a593Smuzhiyun struct afs_vlserver *server;
440*4882a593Smuzhiyun };
441*4882a593Smuzhiyun
442*4882a593Smuzhiyun struct afs_vlserver_list {
443*4882a593Smuzhiyun struct rcu_head rcu;
444*4882a593Smuzhiyun atomic_t usage;
445*4882a593Smuzhiyun u8 nr_servers;
446*4882a593Smuzhiyun u8 index; /* Server currently in use */
447*4882a593Smuzhiyun u8 preferred; /* Preferred server */
448*4882a593Smuzhiyun enum dns_record_source source:8;
449*4882a593Smuzhiyun enum dns_lookup_status status:8;
450*4882a593Smuzhiyun rwlock_t lock;
451*4882a593Smuzhiyun struct afs_vlserver_entry servers[];
452*4882a593Smuzhiyun };
453*4882a593Smuzhiyun
454*4882a593Smuzhiyun /*
455*4882a593Smuzhiyun * Cached VLDB entry.
456*4882a593Smuzhiyun *
457*4882a593Smuzhiyun * This is pointed to by cell->vldb_entries, indexed by name.
458*4882a593Smuzhiyun */
459*4882a593Smuzhiyun struct afs_vldb_entry {
460*4882a593Smuzhiyun afs_volid_t vid[3]; /* Volume IDs for R/W, R/O and Bak volumes */
461*4882a593Smuzhiyun
462*4882a593Smuzhiyun unsigned long flags;
463*4882a593Smuzhiyun #define AFS_VLDB_HAS_RW 0 /* - R/W volume exists */
464*4882a593Smuzhiyun #define AFS_VLDB_HAS_RO 1 /* - R/O volume exists */
465*4882a593Smuzhiyun #define AFS_VLDB_HAS_BAK 2 /* - Backup volume exists */
466*4882a593Smuzhiyun #define AFS_VLDB_QUERY_VALID 3 /* - Record is valid */
467*4882a593Smuzhiyun #define AFS_VLDB_QUERY_ERROR 4 /* - VL server returned error */
468*4882a593Smuzhiyun
469*4882a593Smuzhiyun uuid_t fs_server[AFS_NMAXNSERVERS];
470*4882a593Smuzhiyun u32 addr_version[AFS_NMAXNSERVERS]; /* Registration change counters */
471*4882a593Smuzhiyun u8 fs_mask[AFS_NMAXNSERVERS];
472*4882a593Smuzhiyun #define AFS_VOL_VTM_RW 0x01 /* R/W version of the volume is available (on this server) */
473*4882a593Smuzhiyun #define AFS_VOL_VTM_RO 0x02 /* R/O version of the volume is available (on this server) */
474*4882a593Smuzhiyun #define AFS_VOL_VTM_BAK 0x04 /* backup version of the volume is available (on this server) */
475*4882a593Smuzhiyun short error;
476*4882a593Smuzhiyun u8 nr_servers; /* Number of server records */
477*4882a593Smuzhiyun u8 name_len;
478*4882a593Smuzhiyun u8 name[AFS_MAXVOLNAME + 1]; /* NUL-padded volume name */
479*4882a593Smuzhiyun };
480*4882a593Smuzhiyun
481*4882a593Smuzhiyun /*
482*4882a593Smuzhiyun * Record of fileserver with which we're actively communicating.
483*4882a593Smuzhiyun */
484*4882a593Smuzhiyun struct afs_server {
485*4882a593Smuzhiyun struct rcu_head rcu;
486*4882a593Smuzhiyun union {
487*4882a593Smuzhiyun uuid_t uuid; /* Server ID */
488*4882a593Smuzhiyun struct afs_uuid _uuid;
489*4882a593Smuzhiyun };
490*4882a593Smuzhiyun
491*4882a593Smuzhiyun struct afs_addr_list __rcu *addresses;
492*4882a593Smuzhiyun struct afs_cell *cell; /* Cell to which belongs (pins ref) */
493*4882a593Smuzhiyun struct rb_node uuid_rb; /* Link in net->fs_servers */
494*4882a593Smuzhiyun struct afs_server __rcu *uuid_next; /* Next server with same UUID */
495*4882a593Smuzhiyun struct afs_server *uuid_prev; /* Previous server with same UUID */
496*4882a593Smuzhiyun struct list_head probe_link; /* Link in net->fs_probe_list */
497*4882a593Smuzhiyun struct hlist_node addr4_link; /* Link in net->fs_addresses4 */
498*4882a593Smuzhiyun struct hlist_node addr6_link; /* Link in net->fs_addresses6 */
499*4882a593Smuzhiyun struct hlist_node proc_link; /* Link in net->fs_proc */
500*4882a593Smuzhiyun struct afs_server *gc_next; /* Next server in manager's list */
501*4882a593Smuzhiyun time64_t unuse_time; /* Time at which last unused */
502*4882a593Smuzhiyun unsigned long flags;
503*4882a593Smuzhiyun #define AFS_SERVER_FL_RESPONDING 0 /* The server is responding */
504*4882a593Smuzhiyun #define AFS_SERVER_FL_UPDATING 1
505*4882a593Smuzhiyun #define AFS_SERVER_FL_NEEDS_UPDATE 2 /* Fileserver address list is out of date */
506*4882a593Smuzhiyun #define AFS_SERVER_FL_NOT_READY 4 /* The record is not ready for use */
507*4882a593Smuzhiyun #define AFS_SERVER_FL_NOT_FOUND 5 /* VL server says no such server */
508*4882a593Smuzhiyun #define AFS_SERVER_FL_VL_FAIL 6 /* Failed to access VL server */
509*4882a593Smuzhiyun #define AFS_SERVER_FL_MAY_HAVE_CB 8 /* May have callbacks on this fileserver */
510*4882a593Smuzhiyun #define AFS_SERVER_FL_IS_YFS 16 /* Server is YFS not AFS */
511*4882a593Smuzhiyun #define AFS_SERVER_FL_NO_IBULK 17 /* Fileserver doesn't support FS.InlineBulkStatus */
512*4882a593Smuzhiyun #define AFS_SERVER_FL_NO_RM2 18 /* Fileserver doesn't support YFS.RemoveFile2 */
513*4882a593Smuzhiyun atomic_t ref; /* Object refcount */
514*4882a593Smuzhiyun atomic_t active; /* Active user count */
515*4882a593Smuzhiyun u32 addr_version; /* Address list version */
516*4882a593Smuzhiyun unsigned int rtt; /* Server's current RTT in uS */
517*4882a593Smuzhiyun unsigned int debug_id; /* Debugging ID for traces */
518*4882a593Smuzhiyun
519*4882a593Smuzhiyun /* file service access */
520*4882a593Smuzhiyun rwlock_t fs_lock; /* access lock */
521*4882a593Smuzhiyun
522*4882a593Smuzhiyun /* callback promise management */
523*4882a593Smuzhiyun unsigned cb_s_break; /* Break-everything counter. */
524*4882a593Smuzhiyun
525*4882a593Smuzhiyun /* Probe state */
526*4882a593Smuzhiyun unsigned long probed_at; /* Time last probe was dispatched (jiffies) */
527*4882a593Smuzhiyun wait_queue_head_t probe_wq;
528*4882a593Smuzhiyun atomic_t probe_outstanding;
529*4882a593Smuzhiyun spinlock_t probe_lock;
530*4882a593Smuzhiyun struct {
531*4882a593Smuzhiyun unsigned int rtt; /* RTT in uS */
532*4882a593Smuzhiyun u32 abort_code;
533*4882a593Smuzhiyun short error;
534*4882a593Smuzhiyun bool responded:1;
535*4882a593Smuzhiyun bool is_yfs:1;
536*4882a593Smuzhiyun bool not_yfs:1;
537*4882a593Smuzhiyun bool local_failure:1;
538*4882a593Smuzhiyun } probe;
539*4882a593Smuzhiyun };
540*4882a593Smuzhiyun
541*4882a593Smuzhiyun /*
542*4882a593Smuzhiyun * Replaceable volume server list.
543*4882a593Smuzhiyun */
544*4882a593Smuzhiyun struct afs_server_entry {
545*4882a593Smuzhiyun struct afs_server *server;
546*4882a593Smuzhiyun };
547*4882a593Smuzhiyun
548*4882a593Smuzhiyun struct afs_server_list {
549*4882a593Smuzhiyun afs_volid_t vids[AFS_MAXTYPES]; /* Volume IDs */
550*4882a593Smuzhiyun refcount_t usage;
551*4882a593Smuzhiyun unsigned char nr_servers;
552*4882a593Smuzhiyun unsigned char preferred; /* Preferred server */
553*4882a593Smuzhiyun unsigned short vnovol_mask; /* Servers to be skipped due to VNOVOL */
554*4882a593Smuzhiyun unsigned int seq; /* Set to ->servers_seq when installed */
555*4882a593Smuzhiyun rwlock_t lock;
556*4882a593Smuzhiyun struct afs_server_entry servers[];
557*4882a593Smuzhiyun };
558*4882a593Smuzhiyun
559*4882a593Smuzhiyun /*
560*4882a593Smuzhiyun * Live AFS volume management.
561*4882a593Smuzhiyun */
562*4882a593Smuzhiyun struct afs_volume {
563*4882a593Smuzhiyun union {
564*4882a593Smuzhiyun struct rcu_head rcu;
565*4882a593Smuzhiyun afs_volid_t vid; /* volume ID */
566*4882a593Smuzhiyun };
567*4882a593Smuzhiyun atomic_t usage;
568*4882a593Smuzhiyun time64_t update_at; /* Time at which to next update */
569*4882a593Smuzhiyun struct afs_cell *cell; /* Cell to which belongs (pins ref) */
570*4882a593Smuzhiyun struct rb_node cell_node; /* Link in cell->volumes */
571*4882a593Smuzhiyun struct hlist_node proc_link; /* Link in cell->proc_volumes */
572*4882a593Smuzhiyun struct super_block __rcu *sb; /* Superblock on which inodes reside */
573*4882a593Smuzhiyun unsigned long flags;
574*4882a593Smuzhiyun #define AFS_VOLUME_NEEDS_UPDATE 0 /* - T if an update needs performing */
575*4882a593Smuzhiyun #define AFS_VOLUME_UPDATING 1 /* - T if an update is in progress */
576*4882a593Smuzhiyun #define AFS_VOLUME_WAIT 2 /* - T if users must wait for update */
577*4882a593Smuzhiyun #define AFS_VOLUME_DELETED 3 /* - T if volume appears deleted */
578*4882a593Smuzhiyun #define AFS_VOLUME_OFFLINE 4 /* - T if volume offline notice given */
579*4882a593Smuzhiyun #define AFS_VOLUME_BUSY 5 /* - T if volume busy notice given */
580*4882a593Smuzhiyun #define AFS_VOLUME_MAYBE_NO_IBULK 6 /* - T if some servers don't have InlineBulkStatus */
581*4882a593Smuzhiyun #ifdef CONFIG_AFS_FSCACHE
582*4882a593Smuzhiyun struct fscache_cookie *cache; /* caching cookie */
583*4882a593Smuzhiyun #endif
584*4882a593Smuzhiyun struct afs_server_list __rcu *servers; /* List of servers on which volume resides */
585*4882a593Smuzhiyun rwlock_t servers_lock; /* Lock for ->servers */
586*4882a593Smuzhiyun unsigned int servers_seq; /* Incremented each time ->servers changes */
587*4882a593Smuzhiyun
588*4882a593Smuzhiyun unsigned cb_v_break; /* Break-everything counter. */
589*4882a593Smuzhiyun rwlock_t cb_v_break_lock;
590*4882a593Smuzhiyun
591*4882a593Smuzhiyun afs_voltype_t type; /* type of volume */
592*4882a593Smuzhiyun char type_force; /* force volume type (suppress R/O -> R/W) */
593*4882a593Smuzhiyun u8 name_len;
594*4882a593Smuzhiyun u8 name[AFS_MAXVOLNAME + 1]; /* NUL-padded volume name */
595*4882a593Smuzhiyun };
596*4882a593Smuzhiyun
597*4882a593Smuzhiyun enum afs_lock_state {
598*4882a593Smuzhiyun AFS_VNODE_LOCK_NONE, /* The vnode has no lock on the server */
599*4882a593Smuzhiyun AFS_VNODE_LOCK_WAITING_FOR_CB, /* We're waiting for the server to break the callback */
600*4882a593Smuzhiyun AFS_VNODE_LOCK_SETTING, /* We're asking the server for a lock */
601*4882a593Smuzhiyun AFS_VNODE_LOCK_GRANTED, /* We have a lock on the server */
602*4882a593Smuzhiyun AFS_VNODE_LOCK_EXTENDING, /* We're extending a lock on the server */
603*4882a593Smuzhiyun AFS_VNODE_LOCK_NEED_UNLOCK, /* We need to unlock on the server */
604*4882a593Smuzhiyun AFS_VNODE_LOCK_UNLOCKING, /* We're telling the server to unlock */
605*4882a593Smuzhiyun AFS_VNODE_LOCK_DELETED, /* The vnode has been deleted whilst we have a lock */
606*4882a593Smuzhiyun };
607*4882a593Smuzhiyun
608*4882a593Smuzhiyun /*
609*4882a593Smuzhiyun * AFS inode private data.
610*4882a593Smuzhiyun *
611*4882a593Smuzhiyun * Note that afs_alloc_inode() *must* reset anything that could incorrectly
612*4882a593Smuzhiyun * leak from one inode to another.
613*4882a593Smuzhiyun */
614*4882a593Smuzhiyun struct afs_vnode {
615*4882a593Smuzhiyun struct inode vfs_inode; /* the VFS's inode record */
616*4882a593Smuzhiyun
617*4882a593Smuzhiyun struct afs_volume *volume; /* volume on which vnode resides */
618*4882a593Smuzhiyun struct afs_fid fid; /* the file identifier for this inode */
619*4882a593Smuzhiyun struct afs_file_status status; /* AFS status info for this file */
620*4882a593Smuzhiyun afs_dataversion_t invalid_before; /* Child dentries are invalid before this */
621*4882a593Smuzhiyun #ifdef CONFIG_AFS_FSCACHE
622*4882a593Smuzhiyun struct fscache_cookie *cache; /* caching cookie */
623*4882a593Smuzhiyun #endif
624*4882a593Smuzhiyun struct afs_permits __rcu *permit_cache; /* cache of permits so far obtained */
625*4882a593Smuzhiyun struct mutex io_lock; /* Lock for serialising I/O on this mutex */
626*4882a593Smuzhiyun struct rw_semaphore validate_lock; /* lock for validating this vnode */
627*4882a593Smuzhiyun struct rw_semaphore rmdir_lock; /* Lock for rmdir vs sillyrename */
628*4882a593Smuzhiyun struct key *silly_key; /* Silly rename key */
629*4882a593Smuzhiyun spinlock_t wb_lock; /* lock for wb_keys */
630*4882a593Smuzhiyun spinlock_t lock; /* waitqueue/flags lock */
631*4882a593Smuzhiyun unsigned long flags;
632*4882a593Smuzhiyun #define AFS_VNODE_CB_PROMISED 0 /* Set if vnode has a callback promise */
633*4882a593Smuzhiyun #define AFS_VNODE_UNSET 1 /* set if vnode attributes not yet set */
634*4882a593Smuzhiyun #define AFS_VNODE_DIR_VALID 2 /* Set if dir contents are valid */
635*4882a593Smuzhiyun #define AFS_VNODE_ZAP_DATA 3 /* set if vnode's data should be invalidated */
636*4882a593Smuzhiyun #define AFS_VNODE_DELETED 4 /* set if vnode deleted on server */
637*4882a593Smuzhiyun #define AFS_VNODE_MOUNTPOINT 5 /* set if vnode is a mountpoint symlink */
638*4882a593Smuzhiyun #define AFS_VNODE_AUTOCELL 6 /* set if Vnode is an auto mount point */
639*4882a593Smuzhiyun #define AFS_VNODE_PSEUDODIR 7 /* set if Vnode is a pseudo directory */
640*4882a593Smuzhiyun #define AFS_VNODE_NEW_CONTENT 8 /* Set if file has new content (create/trunc-0) */
641*4882a593Smuzhiyun #define AFS_VNODE_SILLY_DELETED 9 /* Set if file has been silly-deleted */
642*4882a593Smuzhiyun #define AFS_VNODE_MODIFYING 10 /* Set if we're performing a modification op */
643*4882a593Smuzhiyun
644*4882a593Smuzhiyun struct list_head wb_keys; /* List of keys available for writeback */
645*4882a593Smuzhiyun struct list_head pending_locks; /* locks waiting to be granted */
646*4882a593Smuzhiyun struct list_head granted_locks; /* locks granted on this file */
647*4882a593Smuzhiyun struct delayed_work lock_work; /* work to be done in locking */
648*4882a593Smuzhiyun struct key *lock_key; /* Key to be used in lock ops */
649*4882a593Smuzhiyun ktime_t locked_at; /* Time at which lock obtained */
650*4882a593Smuzhiyun enum afs_lock_state lock_state : 8;
651*4882a593Smuzhiyun afs_lock_type_t lock_type : 8;
652*4882a593Smuzhiyun
653*4882a593Smuzhiyun /* outstanding callback notification on this file */
654*4882a593Smuzhiyun void *cb_server; /* Server with callback/filelock */
655*4882a593Smuzhiyun unsigned int cb_s_break; /* Mass break counter on ->server */
656*4882a593Smuzhiyun unsigned int cb_v_break; /* Mass break counter on ->volume */
657*4882a593Smuzhiyun unsigned int cb_break; /* Break counter on vnode */
658*4882a593Smuzhiyun seqlock_t cb_lock; /* Lock for ->cb_server, ->status, ->cb_*break */
659*4882a593Smuzhiyun
660*4882a593Smuzhiyun time64_t cb_expires_at; /* time at which callback expires */
661*4882a593Smuzhiyun };
662*4882a593Smuzhiyun
afs_vnode_cache(struct afs_vnode * vnode)663*4882a593Smuzhiyun static inline struct fscache_cookie *afs_vnode_cache(struct afs_vnode *vnode)
664*4882a593Smuzhiyun {
665*4882a593Smuzhiyun #ifdef CONFIG_AFS_FSCACHE
666*4882a593Smuzhiyun return vnode->cache;
667*4882a593Smuzhiyun #else
668*4882a593Smuzhiyun return NULL;
669*4882a593Smuzhiyun #endif
670*4882a593Smuzhiyun }
671*4882a593Smuzhiyun
672*4882a593Smuzhiyun /*
673*4882a593Smuzhiyun * cached security record for one user's attempt to access a vnode
674*4882a593Smuzhiyun */
675*4882a593Smuzhiyun struct afs_permit {
676*4882a593Smuzhiyun struct key *key; /* RxRPC ticket holding a security context */
677*4882a593Smuzhiyun afs_access_t access; /* CallerAccess value for this key */
678*4882a593Smuzhiyun };
679*4882a593Smuzhiyun
680*4882a593Smuzhiyun /*
681*4882a593Smuzhiyun * Immutable cache of CallerAccess records from attempts to access vnodes.
682*4882a593Smuzhiyun * These may be shared between multiple vnodes.
683*4882a593Smuzhiyun */
684*4882a593Smuzhiyun struct afs_permits {
685*4882a593Smuzhiyun struct rcu_head rcu;
686*4882a593Smuzhiyun struct hlist_node hash_node; /* Link in hash */
687*4882a593Smuzhiyun unsigned long h; /* Hash value for this permit list */
688*4882a593Smuzhiyun refcount_t usage;
689*4882a593Smuzhiyun unsigned short nr_permits; /* Number of records */
690*4882a593Smuzhiyun bool invalidated; /* Invalidated due to key change */
691*4882a593Smuzhiyun struct afs_permit permits[]; /* List of permits sorted by key pointer */
692*4882a593Smuzhiyun };
693*4882a593Smuzhiyun
694*4882a593Smuzhiyun /*
695*4882a593Smuzhiyun * Error prioritisation and accumulation.
696*4882a593Smuzhiyun */
697*4882a593Smuzhiyun struct afs_error {
698*4882a593Smuzhiyun short error; /* Accumulated error */
699*4882a593Smuzhiyun bool responded; /* T if server responded */
700*4882a593Smuzhiyun };
701*4882a593Smuzhiyun
702*4882a593Smuzhiyun /*
703*4882a593Smuzhiyun * Cursor for iterating over a server's address list.
704*4882a593Smuzhiyun */
705*4882a593Smuzhiyun struct afs_addr_cursor {
706*4882a593Smuzhiyun struct afs_addr_list *alist; /* Current address list (pins ref) */
707*4882a593Smuzhiyun unsigned long tried; /* Tried addresses */
708*4882a593Smuzhiyun signed char index; /* Current address */
709*4882a593Smuzhiyun bool responded; /* T if the current address responded */
710*4882a593Smuzhiyun unsigned short nr_iterations; /* Number of address iterations */
711*4882a593Smuzhiyun short error;
712*4882a593Smuzhiyun u32 abort_code;
713*4882a593Smuzhiyun };
714*4882a593Smuzhiyun
715*4882a593Smuzhiyun /*
716*4882a593Smuzhiyun * Cursor for iterating over a set of volume location servers.
717*4882a593Smuzhiyun */
718*4882a593Smuzhiyun struct afs_vl_cursor {
719*4882a593Smuzhiyun struct afs_addr_cursor ac;
720*4882a593Smuzhiyun struct afs_cell *cell; /* The cell we're querying */
721*4882a593Smuzhiyun struct afs_vlserver_list *server_list; /* Current server list (pins ref) */
722*4882a593Smuzhiyun struct afs_vlserver *server; /* Server on which this resides */
723*4882a593Smuzhiyun struct key *key; /* Key for the server */
724*4882a593Smuzhiyun unsigned long untried; /* Bitmask of untried servers */
725*4882a593Smuzhiyun short index; /* Current server */
726*4882a593Smuzhiyun short error;
727*4882a593Smuzhiyun unsigned short flags;
728*4882a593Smuzhiyun #define AFS_VL_CURSOR_STOP 0x0001 /* Set to cease iteration */
729*4882a593Smuzhiyun #define AFS_VL_CURSOR_RETRY 0x0002 /* Set to do a retry */
730*4882a593Smuzhiyun #define AFS_VL_CURSOR_RETRIED 0x0004 /* Set if started a retry */
731*4882a593Smuzhiyun unsigned short nr_iterations; /* Number of server iterations */
732*4882a593Smuzhiyun };
733*4882a593Smuzhiyun
734*4882a593Smuzhiyun /*
735*4882a593Smuzhiyun * Fileserver operation methods.
736*4882a593Smuzhiyun */
737*4882a593Smuzhiyun struct afs_operation_ops {
738*4882a593Smuzhiyun void (*issue_afs_rpc)(struct afs_operation *op);
739*4882a593Smuzhiyun void (*issue_yfs_rpc)(struct afs_operation *op);
740*4882a593Smuzhiyun void (*success)(struct afs_operation *op);
741*4882a593Smuzhiyun void (*aborted)(struct afs_operation *op);
742*4882a593Smuzhiyun void (*edit_dir)(struct afs_operation *op);
743*4882a593Smuzhiyun void (*put)(struct afs_operation *op);
744*4882a593Smuzhiyun };
745*4882a593Smuzhiyun
746*4882a593Smuzhiyun struct afs_vnode_param {
747*4882a593Smuzhiyun struct afs_vnode *vnode;
748*4882a593Smuzhiyun struct afs_fid fid; /* Fid to access */
749*4882a593Smuzhiyun struct afs_status_cb scb; /* Returned status and callback promise */
750*4882a593Smuzhiyun afs_dataversion_t dv_before; /* Data version before the call */
751*4882a593Smuzhiyun unsigned int cb_break_before; /* cb_break + cb_s_break before the call */
752*4882a593Smuzhiyun u8 dv_delta; /* Expected change in data version */
753*4882a593Smuzhiyun bool put_vnode:1; /* T if we have a ref on the vnode */
754*4882a593Smuzhiyun bool need_io_lock:1; /* T if we need the I/O lock on this */
755*4882a593Smuzhiyun bool update_ctime:1; /* Need to update the ctime */
756*4882a593Smuzhiyun bool set_size:1; /* Must update i_size */
757*4882a593Smuzhiyun bool op_unlinked:1; /* True if file was unlinked by op */
758*4882a593Smuzhiyun bool speculative:1; /* T if speculative status fetch (no vnode lock) */
759*4882a593Smuzhiyun bool modification:1; /* Set if the content gets modified */
760*4882a593Smuzhiyun };
761*4882a593Smuzhiyun
762*4882a593Smuzhiyun /*
763*4882a593Smuzhiyun * Fileserver operation wrapper, handling server and address rotation
764*4882a593Smuzhiyun * asynchronously. May make simultaneous calls to multiple servers.
765*4882a593Smuzhiyun */
766*4882a593Smuzhiyun struct afs_operation {
767*4882a593Smuzhiyun struct afs_net *net; /* Network namespace */
768*4882a593Smuzhiyun struct key *key; /* Key for the cell */
769*4882a593Smuzhiyun const struct afs_call_type *type; /* Type of call done */
770*4882a593Smuzhiyun const struct afs_operation_ops *ops;
771*4882a593Smuzhiyun
772*4882a593Smuzhiyun /* Parameters/results for the operation */
773*4882a593Smuzhiyun struct afs_volume *volume; /* Volume being accessed */
774*4882a593Smuzhiyun struct afs_vnode_param file[2];
775*4882a593Smuzhiyun struct afs_vnode_param *more_files;
776*4882a593Smuzhiyun struct afs_volsync volsync;
777*4882a593Smuzhiyun struct dentry *dentry; /* Dentry to be altered */
778*4882a593Smuzhiyun struct dentry *dentry_2; /* Second dentry to be altered */
779*4882a593Smuzhiyun struct timespec64 mtime; /* Modification time to record */
780*4882a593Smuzhiyun struct timespec64 ctime; /* Change time to set */
781*4882a593Smuzhiyun short nr_files; /* Number of entries in file[], more_files */
782*4882a593Smuzhiyun short error;
783*4882a593Smuzhiyun unsigned int debug_id;
784*4882a593Smuzhiyun
785*4882a593Smuzhiyun unsigned int cb_v_break; /* Volume break counter before op */
786*4882a593Smuzhiyun unsigned int cb_s_break; /* Server break counter before op */
787*4882a593Smuzhiyun
788*4882a593Smuzhiyun union {
789*4882a593Smuzhiyun struct {
790*4882a593Smuzhiyun int which; /* Which ->file[] to fetch for */
791*4882a593Smuzhiyun } fetch_status;
792*4882a593Smuzhiyun struct {
793*4882a593Smuzhiyun int reason; /* enum afs_edit_dir_reason */
794*4882a593Smuzhiyun mode_t mode;
795*4882a593Smuzhiyun const char *symlink;
796*4882a593Smuzhiyun } create;
797*4882a593Smuzhiyun struct {
798*4882a593Smuzhiyun bool need_rehash;
799*4882a593Smuzhiyun } unlink;
800*4882a593Smuzhiyun struct {
801*4882a593Smuzhiyun struct dentry *rehash;
802*4882a593Smuzhiyun struct dentry *tmp;
803*4882a593Smuzhiyun bool new_negative;
804*4882a593Smuzhiyun } rename;
805*4882a593Smuzhiyun struct {
806*4882a593Smuzhiyun struct afs_read *req;
807*4882a593Smuzhiyun } fetch;
808*4882a593Smuzhiyun struct {
809*4882a593Smuzhiyun afs_lock_type_t type;
810*4882a593Smuzhiyun } lock;
811*4882a593Smuzhiyun struct {
812*4882a593Smuzhiyun struct address_space *mapping; /* Pages being written from */
813*4882a593Smuzhiyun pgoff_t first; /* first page in mapping to deal with */
814*4882a593Smuzhiyun pgoff_t last; /* last page in mapping to deal with */
815*4882a593Smuzhiyun unsigned first_offset; /* offset into mapping[first] */
816*4882a593Smuzhiyun unsigned last_to; /* amount of mapping[last] */
817*4882a593Smuzhiyun bool laundering; /* Laundering page, PG_writeback not set */
818*4882a593Smuzhiyun } store;
819*4882a593Smuzhiyun struct {
820*4882a593Smuzhiyun struct iattr *attr;
821*4882a593Smuzhiyun loff_t old_i_size;
822*4882a593Smuzhiyun } setattr;
823*4882a593Smuzhiyun struct afs_acl *acl;
824*4882a593Smuzhiyun struct yfs_acl *yacl;
825*4882a593Smuzhiyun struct {
826*4882a593Smuzhiyun struct afs_volume_status vs;
827*4882a593Smuzhiyun struct kstatfs *buf;
828*4882a593Smuzhiyun } volstatus;
829*4882a593Smuzhiyun };
830*4882a593Smuzhiyun
831*4882a593Smuzhiyun /* Fileserver iteration state */
832*4882a593Smuzhiyun struct afs_addr_cursor ac;
833*4882a593Smuzhiyun struct afs_server_list *server_list; /* Current server list (pins ref) */
834*4882a593Smuzhiyun struct afs_server *server; /* Server we're using (ref pinned by server_list) */
835*4882a593Smuzhiyun struct afs_call *call;
836*4882a593Smuzhiyun unsigned long untried; /* Bitmask of untried servers */
837*4882a593Smuzhiyun short index; /* Current server */
838*4882a593Smuzhiyun unsigned short nr_iterations; /* Number of server iterations */
839*4882a593Smuzhiyun
840*4882a593Smuzhiyun unsigned int flags;
841*4882a593Smuzhiyun #define AFS_OPERATION_STOP 0x0001 /* Set to cease iteration */
842*4882a593Smuzhiyun #define AFS_OPERATION_VBUSY 0x0002 /* Set if seen VBUSY */
843*4882a593Smuzhiyun #define AFS_OPERATION_VMOVED 0x0004 /* Set if seen VMOVED */
844*4882a593Smuzhiyun #define AFS_OPERATION_VNOVOL 0x0008 /* Set if seen VNOVOL */
845*4882a593Smuzhiyun #define AFS_OPERATION_CUR_ONLY 0x0010 /* Set if current server only (file lock held) */
846*4882a593Smuzhiyun #define AFS_OPERATION_NO_VSLEEP 0x0020 /* Set to prevent sleep on VBUSY, VOFFLINE, ... */
847*4882a593Smuzhiyun #define AFS_OPERATION_UNINTR 0x0040 /* Set if op is uninterruptible */
848*4882a593Smuzhiyun #define AFS_OPERATION_DOWNGRADE 0x0080 /* Set to retry with downgraded opcode */
849*4882a593Smuzhiyun #define AFS_OPERATION_LOCK_0 0x0100 /* Set if have io_lock on file[0] */
850*4882a593Smuzhiyun #define AFS_OPERATION_LOCK_1 0x0200 /* Set if have io_lock on file[1] */
851*4882a593Smuzhiyun #define AFS_OPERATION_TRIED_ALL 0x0400 /* Set if we've tried all the fileservers */
852*4882a593Smuzhiyun #define AFS_OPERATION_RETRY_SERVER 0x0800 /* Set if we should retry the current server */
853*4882a593Smuzhiyun #define AFS_OPERATION_DIR_CONFLICT 0x1000 /* Set if we detected a 3rd-party dir change */
854*4882a593Smuzhiyun };
855*4882a593Smuzhiyun
856*4882a593Smuzhiyun /*
857*4882a593Smuzhiyun * Cache auxiliary data.
858*4882a593Smuzhiyun */
859*4882a593Smuzhiyun struct afs_vnode_cache_aux {
860*4882a593Smuzhiyun u64 data_version;
861*4882a593Smuzhiyun } __packed;
862*4882a593Smuzhiyun
863*4882a593Smuzhiyun /*
864*4882a593Smuzhiyun * We use page->private to hold the amount of the page that we've written to,
865*4882a593Smuzhiyun * splitting the field into two parts. However, we need to represent a range
866*4882a593Smuzhiyun * 0...PAGE_SIZE, so we reduce the resolution if the size of the page
867*4882a593Smuzhiyun * exceeds what we can encode.
868*4882a593Smuzhiyun */
869*4882a593Smuzhiyun #ifdef CONFIG_64BIT
870*4882a593Smuzhiyun #define __AFS_PAGE_PRIV_MASK 0x7fffffffUL
871*4882a593Smuzhiyun #define __AFS_PAGE_PRIV_SHIFT 32
872*4882a593Smuzhiyun #define __AFS_PAGE_PRIV_MMAPPED 0x80000000UL
873*4882a593Smuzhiyun #else
874*4882a593Smuzhiyun #define __AFS_PAGE_PRIV_MASK 0x7fffUL
875*4882a593Smuzhiyun #define __AFS_PAGE_PRIV_SHIFT 16
876*4882a593Smuzhiyun #define __AFS_PAGE_PRIV_MMAPPED 0x8000UL
877*4882a593Smuzhiyun #endif
878*4882a593Smuzhiyun
afs_page_dirty_resolution(void)879*4882a593Smuzhiyun static inline unsigned int afs_page_dirty_resolution(void)
880*4882a593Smuzhiyun {
881*4882a593Smuzhiyun int shift = PAGE_SHIFT - (__AFS_PAGE_PRIV_SHIFT - 1);
882*4882a593Smuzhiyun return (shift > 0) ? shift : 0;
883*4882a593Smuzhiyun }
884*4882a593Smuzhiyun
afs_page_dirty_from(unsigned long priv)885*4882a593Smuzhiyun static inline size_t afs_page_dirty_from(unsigned long priv)
886*4882a593Smuzhiyun {
887*4882a593Smuzhiyun unsigned long x = priv & __AFS_PAGE_PRIV_MASK;
888*4882a593Smuzhiyun
889*4882a593Smuzhiyun /* The lower bound is inclusive */
890*4882a593Smuzhiyun return x << afs_page_dirty_resolution();
891*4882a593Smuzhiyun }
892*4882a593Smuzhiyun
afs_page_dirty_to(unsigned long priv)893*4882a593Smuzhiyun static inline size_t afs_page_dirty_to(unsigned long priv)
894*4882a593Smuzhiyun {
895*4882a593Smuzhiyun unsigned long x = (priv >> __AFS_PAGE_PRIV_SHIFT) & __AFS_PAGE_PRIV_MASK;
896*4882a593Smuzhiyun
897*4882a593Smuzhiyun /* The upper bound is immediately beyond the region */
898*4882a593Smuzhiyun return (x + 1) << afs_page_dirty_resolution();
899*4882a593Smuzhiyun }
900*4882a593Smuzhiyun
afs_page_dirty(size_t from,size_t to)901*4882a593Smuzhiyun static inline unsigned long afs_page_dirty(size_t from, size_t to)
902*4882a593Smuzhiyun {
903*4882a593Smuzhiyun unsigned int res = afs_page_dirty_resolution();
904*4882a593Smuzhiyun from >>= res;
905*4882a593Smuzhiyun to = (to - 1) >> res;
906*4882a593Smuzhiyun return (to << __AFS_PAGE_PRIV_SHIFT) | from;
907*4882a593Smuzhiyun }
908*4882a593Smuzhiyun
afs_page_dirty_mmapped(unsigned long priv)909*4882a593Smuzhiyun static inline unsigned long afs_page_dirty_mmapped(unsigned long priv)
910*4882a593Smuzhiyun {
911*4882a593Smuzhiyun return priv | __AFS_PAGE_PRIV_MMAPPED;
912*4882a593Smuzhiyun }
913*4882a593Smuzhiyun
afs_is_page_dirty_mmapped(unsigned long priv)914*4882a593Smuzhiyun static inline bool afs_is_page_dirty_mmapped(unsigned long priv)
915*4882a593Smuzhiyun {
916*4882a593Smuzhiyun return priv & __AFS_PAGE_PRIV_MMAPPED;
917*4882a593Smuzhiyun }
918*4882a593Smuzhiyun
919*4882a593Smuzhiyun #include <trace/events/afs.h>
920*4882a593Smuzhiyun
921*4882a593Smuzhiyun /*****************************************************************************/
922*4882a593Smuzhiyun /*
923*4882a593Smuzhiyun * addr_list.c
924*4882a593Smuzhiyun */
afs_get_addrlist(struct afs_addr_list * alist)925*4882a593Smuzhiyun static inline struct afs_addr_list *afs_get_addrlist(struct afs_addr_list *alist)
926*4882a593Smuzhiyun {
927*4882a593Smuzhiyun if (alist)
928*4882a593Smuzhiyun refcount_inc(&alist->usage);
929*4882a593Smuzhiyun return alist;
930*4882a593Smuzhiyun }
931*4882a593Smuzhiyun extern struct afs_addr_list *afs_alloc_addrlist(unsigned int,
932*4882a593Smuzhiyun unsigned short,
933*4882a593Smuzhiyun unsigned short);
934*4882a593Smuzhiyun extern void afs_put_addrlist(struct afs_addr_list *);
935*4882a593Smuzhiyun extern struct afs_vlserver_list *afs_parse_text_addrs(struct afs_net *,
936*4882a593Smuzhiyun const char *, size_t, char,
937*4882a593Smuzhiyun unsigned short, unsigned short);
938*4882a593Smuzhiyun extern struct afs_vlserver_list *afs_dns_query(struct afs_cell *, time64_t *);
939*4882a593Smuzhiyun extern bool afs_iterate_addresses(struct afs_addr_cursor *);
940*4882a593Smuzhiyun extern int afs_end_cursor(struct afs_addr_cursor *);
941*4882a593Smuzhiyun
942*4882a593Smuzhiyun extern void afs_merge_fs_addr4(struct afs_addr_list *, __be32, u16);
943*4882a593Smuzhiyun extern void afs_merge_fs_addr6(struct afs_addr_list *, __be32 *, u16);
944*4882a593Smuzhiyun
945*4882a593Smuzhiyun /*
946*4882a593Smuzhiyun * cache.c
947*4882a593Smuzhiyun */
948*4882a593Smuzhiyun #ifdef CONFIG_AFS_FSCACHE
949*4882a593Smuzhiyun extern struct fscache_netfs afs_cache_netfs;
950*4882a593Smuzhiyun extern struct fscache_cookie_def afs_cell_cache_index_def;
951*4882a593Smuzhiyun extern struct fscache_cookie_def afs_volume_cache_index_def;
952*4882a593Smuzhiyun extern struct fscache_cookie_def afs_vnode_cache_index_def;
953*4882a593Smuzhiyun #else
954*4882a593Smuzhiyun #define afs_cell_cache_index_def (*(struct fscache_cookie_def *) NULL)
955*4882a593Smuzhiyun #define afs_volume_cache_index_def (*(struct fscache_cookie_def *) NULL)
956*4882a593Smuzhiyun #define afs_vnode_cache_index_def (*(struct fscache_cookie_def *) NULL)
957*4882a593Smuzhiyun #endif
958*4882a593Smuzhiyun
959*4882a593Smuzhiyun /*
960*4882a593Smuzhiyun * callback.c
961*4882a593Smuzhiyun */
962*4882a593Smuzhiyun extern void afs_init_callback_state(struct afs_server *);
963*4882a593Smuzhiyun extern void __afs_break_callback(struct afs_vnode *, enum afs_cb_break_reason);
964*4882a593Smuzhiyun extern void afs_break_callback(struct afs_vnode *, enum afs_cb_break_reason);
965*4882a593Smuzhiyun extern void afs_break_callbacks(struct afs_server *, size_t, struct afs_callback_break *);
966*4882a593Smuzhiyun
afs_calc_vnode_cb_break(struct afs_vnode * vnode)967*4882a593Smuzhiyun static inline unsigned int afs_calc_vnode_cb_break(struct afs_vnode *vnode)
968*4882a593Smuzhiyun {
969*4882a593Smuzhiyun return vnode->cb_break + vnode->cb_v_break;
970*4882a593Smuzhiyun }
971*4882a593Smuzhiyun
afs_cb_is_broken(unsigned int cb_break,const struct afs_vnode * vnode)972*4882a593Smuzhiyun static inline bool afs_cb_is_broken(unsigned int cb_break,
973*4882a593Smuzhiyun const struct afs_vnode *vnode)
974*4882a593Smuzhiyun {
975*4882a593Smuzhiyun return cb_break != (vnode->cb_break + vnode->volume->cb_v_break);
976*4882a593Smuzhiyun }
977*4882a593Smuzhiyun
978*4882a593Smuzhiyun /*
979*4882a593Smuzhiyun * cell.c
980*4882a593Smuzhiyun */
981*4882a593Smuzhiyun extern int afs_cell_init(struct afs_net *, const char *);
982*4882a593Smuzhiyun extern struct afs_cell *afs_find_cell(struct afs_net *, const char *, unsigned,
983*4882a593Smuzhiyun enum afs_cell_trace);
984*4882a593Smuzhiyun extern struct afs_cell *afs_lookup_cell(struct afs_net *, const char *, unsigned,
985*4882a593Smuzhiyun const char *, bool);
986*4882a593Smuzhiyun extern struct afs_cell *afs_use_cell(struct afs_cell *, enum afs_cell_trace);
987*4882a593Smuzhiyun extern void afs_unuse_cell(struct afs_net *, struct afs_cell *, enum afs_cell_trace);
988*4882a593Smuzhiyun extern struct afs_cell *afs_get_cell(struct afs_cell *, enum afs_cell_trace);
989*4882a593Smuzhiyun extern void afs_see_cell(struct afs_cell *, enum afs_cell_trace);
990*4882a593Smuzhiyun extern void afs_put_cell(struct afs_cell *, enum afs_cell_trace);
991*4882a593Smuzhiyun extern void afs_queue_cell(struct afs_cell *, enum afs_cell_trace);
992*4882a593Smuzhiyun extern void afs_manage_cells(struct work_struct *);
993*4882a593Smuzhiyun extern void afs_cells_timer(struct timer_list *);
994*4882a593Smuzhiyun extern void __net_exit afs_cell_purge(struct afs_net *);
995*4882a593Smuzhiyun
996*4882a593Smuzhiyun /*
997*4882a593Smuzhiyun * cmservice.c
998*4882a593Smuzhiyun */
999*4882a593Smuzhiyun extern bool afs_cm_incoming_call(struct afs_call *);
1000*4882a593Smuzhiyun
1001*4882a593Smuzhiyun /*
1002*4882a593Smuzhiyun * dir.c
1003*4882a593Smuzhiyun */
1004*4882a593Smuzhiyun extern const struct file_operations afs_dir_file_operations;
1005*4882a593Smuzhiyun extern const struct inode_operations afs_dir_inode_operations;
1006*4882a593Smuzhiyun extern const struct address_space_operations afs_dir_aops;
1007*4882a593Smuzhiyun extern const struct dentry_operations afs_fs_dentry_operations;
1008*4882a593Smuzhiyun
1009*4882a593Smuzhiyun extern void afs_d_release(struct dentry *);
1010*4882a593Smuzhiyun extern void afs_check_for_remote_deletion(struct afs_operation *);
1011*4882a593Smuzhiyun
1012*4882a593Smuzhiyun /*
1013*4882a593Smuzhiyun * dir_edit.c
1014*4882a593Smuzhiyun */
1015*4882a593Smuzhiyun extern void afs_edit_dir_add(struct afs_vnode *, struct qstr *, struct afs_fid *,
1016*4882a593Smuzhiyun enum afs_edit_dir_reason);
1017*4882a593Smuzhiyun extern void afs_edit_dir_remove(struct afs_vnode *, struct qstr *, enum afs_edit_dir_reason);
1018*4882a593Smuzhiyun
1019*4882a593Smuzhiyun /*
1020*4882a593Smuzhiyun * dir_silly.c
1021*4882a593Smuzhiyun */
1022*4882a593Smuzhiyun extern int afs_sillyrename(struct afs_vnode *, struct afs_vnode *,
1023*4882a593Smuzhiyun struct dentry *, struct key *);
1024*4882a593Smuzhiyun extern int afs_silly_iput(struct dentry *, struct inode *);
1025*4882a593Smuzhiyun
1026*4882a593Smuzhiyun /*
1027*4882a593Smuzhiyun * dynroot.c
1028*4882a593Smuzhiyun */
1029*4882a593Smuzhiyun extern const struct inode_operations afs_dynroot_inode_operations;
1030*4882a593Smuzhiyun extern const struct dentry_operations afs_dynroot_dentry_operations;
1031*4882a593Smuzhiyun
1032*4882a593Smuzhiyun extern struct inode *afs_try_auto_mntpt(struct dentry *, struct inode *);
1033*4882a593Smuzhiyun extern int afs_dynroot_mkdir(struct afs_net *, struct afs_cell *);
1034*4882a593Smuzhiyun extern void afs_dynroot_rmdir(struct afs_net *, struct afs_cell *);
1035*4882a593Smuzhiyun extern int afs_dynroot_populate(struct super_block *);
1036*4882a593Smuzhiyun extern void afs_dynroot_depopulate(struct super_block *);
1037*4882a593Smuzhiyun
1038*4882a593Smuzhiyun /*
1039*4882a593Smuzhiyun * file.c
1040*4882a593Smuzhiyun */
1041*4882a593Smuzhiyun extern const struct address_space_operations afs_fs_aops;
1042*4882a593Smuzhiyun extern const struct inode_operations afs_file_inode_operations;
1043*4882a593Smuzhiyun extern const struct file_operations afs_file_operations;
1044*4882a593Smuzhiyun
1045*4882a593Smuzhiyun extern int afs_cache_wb_key(struct afs_vnode *, struct afs_file *);
1046*4882a593Smuzhiyun extern void afs_put_wb_key(struct afs_wb_key *);
1047*4882a593Smuzhiyun extern int afs_open(struct inode *, struct file *);
1048*4882a593Smuzhiyun extern int afs_release(struct inode *, struct file *);
1049*4882a593Smuzhiyun extern int afs_fetch_data(struct afs_vnode *, struct key *, struct afs_read *);
1050*4882a593Smuzhiyun extern int afs_page_filler(void *, struct page *);
1051*4882a593Smuzhiyun extern void afs_put_read(struct afs_read *);
1052*4882a593Smuzhiyun
afs_get_read(struct afs_read * req)1053*4882a593Smuzhiyun static inline struct afs_read *afs_get_read(struct afs_read *req)
1054*4882a593Smuzhiyun {
1055*4882a593Smuzhiyun refcount_inc(&req->usage);
1056*4882a593Smuzhiyun return req;
1057*4882a593Smuzhiyun }
1058*4882a593Smuzhiyun
1059*4882a593Smuzhiyun /*
1060*4882a593Smuzhiyun * flock.c
1061*4882a593Smuzhiyun */
1062*4882a593Smuzhiyun extern struct workqueue_struct *afs_lock_manager;
1063*4882a593Smuzhiyun
1064*4882a593Smuzhiyun extern void afs_lock_op_done(struct afs_call *);
1065*4882a593Smuzhiyun extern void afs_lock_work(struct work_struct *);
1066*4882a593Smuzhiyun extern void afs_lock_may_be_available(struct afs_vnode *);
1067*4882a593Smuzhiyun extern int afs_lock(struct file *, int, struct file_lock *);
1068*4882a593Smuzhiyun extern int afs_flock(struct file *, int, struct file_lock *);
1069*4882a593Smuzhiyun
1070*4882a593Smuzhiyun /*
1071*4882a593Smuzhiyun * fsclient.c
1072*4882a593Smuzhiyun */
1073*4882a593Smuzhiyun extern void afs_fs_fetch_status(struct afs_operation *);
1074*4882a593Smuzhiyun extern void afs_fs_fetch_data(struct afs_operation *);
1075*4882a593Smuzhiyun extern void afs_fs_create_file(struct afs_operation *);
1076*4882a593Smuzhiyun extern void afs_fs_make_dir(struct afs_operation *);
1077*4882a593Smuzhiyun extern void afs_fs_remove_file(struct afs_operation *);
1078*4882a593Smuzhiyun extern void afs_fs_remove_dir(struct afs_operation *);
1079*4882a593Smuzhiyun extern void afs_fs_link(struct afs_operation *);
1080*4882a593Smuzhiyun extern void afs_fs_symlink(struct afs_operation *);
1081*4882a593Smuzhiyun extern void afs_fs_rename(struct afs_operation *);
1082*4882a593Smuzhiyun extern void afs_fs_store_data(struct afs_operation *);
1083*4882a593Smuzhiyun extern void afs_fs_setattr(struct afs_operation *);
1084*4882a593Smuzhiyun extern void afs_fs_get_volume_status(struct afs_operation *);
1085*4882a593Smuzhiyun extern void afs_fs_set_lock(struct afs_operation *);
1086*4882a593Smuzhiyun extern void afs_fs_extend_lock(struct afs_operation *);
1087*4882a593Smuzhiyun extern void afs_fs_release_lock(struct afs_operation *);
1088*4882a593Smuzhiyun extern int afs_fs_give_up_all_callbacks(struct afs_net *, struct afs_server *,
1089*4882a593Smuzhiyun struct afs_addr_cursor *, struct key *);
1090*4882a593Smuzhiyun extern bool afs_fs_get_capabilities(struct afs_net *, struct afs_server *,
1091*4882a593Smuzhiyun struct afs_addr_cursor *, struct key *);
1092*4882a593Smuzhiyun extern void afs_fs_inline_bulk_status(struct afs_operation *);
1093*4882a593Smuzhiyun
1094*4882a593Smuzhiyun struct afs_acl {
1095*4882a593Smuzhiyun u32 size;
1096*4882a593Smuzhiyun u8 data[];
1097*4882a593Smuzhiyun };
1098*4882a593Smuzhiyun
1099*4882a593Smuzhiyun extern void afs_fs_fetch_acl(struct afs_operation *);
1100*4882a593Smuzhiyun extern void afs_fs_store_acl(struct afs_operation *);
1101*4882a593Smuzhiyun
1102*4882a593Smuzhiyun /*
1103*4882a593Smuzhiyun * fs_operation.c
1104*4882a593Smuzhiyun */
1105*4882a593Smuzhiyun extern struct afs_operation *afs_alloc_operation(struct key *, struct afs_volume *);
1106*4882a593Smuzhiyun extern int afs_put_operation(struct afs_operation *);
1107*4882a593Smuzhiyun extern bool afs_begin_vnode_operation(struct afs_operation *);
1108*4882a593Smuzhiyun extern void afs_wait_for_operation(struct afs_operation *);
1109*4882a593Smuzhiyun extern int afs_do_sync_operation(struct afs_operation *);
1110*4882a593Smuzhiyun
afs_op_nomem(struct afs_operation * op)1111*4882a593Smuzhiyun static inline void afs_op_nomem(struct afs_operation *op)
1112*4882a593Smuzhiyun {
1113*4882a593Smuzhiyun op->error = -ENOMEM;
1114*4882a593Smuzhiyun }
1115*4882a593Smuzhiyun
afs_op_set_vnode(struct afs_operation * op,unsigned int n,struct afs_vnode * vnode)1116*4882a593Smuzhiyun static inline void afs_op_set_vnode(struct afs_operation *op, unsigned int n,
1117*4882a593Smuzhiyun struct afs_vnode *vnode)
1118*4882a593Smuzhiyun {
1119*4882a593Smuzhiyun op->file[n].vnode = vnode;
1120*4882a593Smuzhiyun op->file[n].need_io_lock = true;
1121*4882a593Smuzhiyun }
1122*4882a593Smuzhiyun
afs_op_set_fid(struct afs_operation * op,unsigned int n,const struct afs_fid * fid)1123*4882a593Smuzhiyun static inline void afs_op_set_fid(struct afs_operation *op, unsigned int n,
1124*4882a593Smuzhiyun const struct afs_fid *fid)
1125*4882a593Smuzhiyun {
1126*4882a593Smuzhiyun op->file[n].fid = *fid;
1127*4882a593Smuzhiyun }
1128*4882a593Smuzhiyun
1129*4882a593Smuzhiyun /*
1130*4882a593Smuzhiyun * fs_probe.c
1131*4882a593Smuzhiyun */
1132*4882a593Smuzhiyun extern void afs_fileserver_probe_result(struct afs_call *);
1133*4882a593Smuzhiyun extern void afs_fs_probe_fileserver(struct afs_net *, struct afs_server *, struct key *, bool);
1134*4882a593Smuzhiyun extern int afs_wait_for_fs_probes(struct afs_server_list *, unsigned long);
1135*4882a593Smuzhiyun extern void afs_probe_fileserver(struct afs_net *, struct afs_server *);
1136*4882a593Smuzhiyun extern void afs_fs_probe_dispatcher(struct work_struct *);
1137*4882a593Smuzhiyun extern int afs_wait_for_one_fs_probe(struct afs_server *, bool);
1138*4882a593Smuzhiyun extern void afs_fs_probe_cleanup(struct afs_net *);
1139*4882a593Smuzhiyun
1140*4882a593Smuzhiyun /*
1141*4882a593Smuzhiyun * inode.c
1142*4882a593Smuzhiyun */
1143*4882a593Smuzhiyun extern const struct afs_operation_ops afs_fetch_status_operation;
1144*4882a593Smuzhiyun
1145*4882a593Smuzhiyun extern void afs_vnode_commit_status(struct afs_operation *, struct afs_vnode_param *);
1146*4882a593Smuzhiyun extern int afs_fetch_status(struct afs_vnode *, struct key *, bool, afs_access_t *);
1147*4882a593Smuzhiyun extern int afs_ilookup5_test_by_fid(struct inode *, void *);
1148*4882a593Smuzhiyun extern struct inode *afs_iget_pseudo_dir(struct super_block *, bool);
1149*4882a593Smuzhiyun extern struct inode *afs_iget(struct afs_operation *, struct afs_vnode_param *);
1150*4882a593Smuzhiyun extern struct inode *afs_root_iget(struct super_block *, struct key *);
1151*4882a593Smuzhiyun extern bool afs_check_validity(struct afs_vnode *);
1152*4882a593Smuzhiyun extern int afs_validate(struct afs_vnode *, struct key *);
1153*4882a593Smuzhiyun extern int afs_getattr(const struct path *, struct kstat *, u32, unsigned int);
1154*4882a593Smuzhiyun extern int afs_setattr(struct dentry *, struct iattr *);
1155*4882a593Smuzhiyun extern void afs_evict_inode(struct inode *);
1156*4882a593Smuzhiyun extern int afs_drop_inode(struct inode *);
1157*4882a593Smuzhiyun
1158*4882a593Smuzhiyun /*
1159*4882a593Smuzhiyun * main.c
1160*4882a593Smuzhiyun */
1161*4882a593Smuzhiyun extern struct workqueue_struct *afs_wq;
1162*4882a593Smuzhiyun extern int afs_net_id;
1163*4882a593Smuzhiyun
afs_net(struct net * net)1164*4882a593Smuzhiyun static inline struct afs_net *afs_net(struct net *net)
1165*4882a593Smuzhiyun {
1166*4882a593Smuzhiyun return net_generic(net, afs_net_id);
1167*4882a593Smuzhiyun }
1168*4882a593Smuzhiyun
afs_sb2net(struct super_block * sb)1169*4882a593Smuzhiyun static inline struct afs_net *afs_sb2net(struct super_block *sb)
1170*4882a593Smuzhiyun {
1171*4882a593Smuzhiyun return afs_net(AFS_FS_S(sb)->net_ns);
1172*4882a593Smuzhiyun }
1173*4882a593Smuzhiyun
afs_d2net(struct dentry * dentry)1174*4882a593Smuzhiyun static inline struct afs_net *afs_d2net(struct dentry *dentry)
1175*4882a593Smuzhiyun {
1176*4882a593Smuzhiyun return afs_sb2net(dentry->d_sb);
1177*4882a593Smuzhiyun }
1178*4882a593Smuzhiyun
afs_i2net(struct inode * inode)1179*4882a593Smuzhiyun static inline struct afs_net *afs_i2net(struct inode *inode)
1180*4882a593Smuzhiyun {
1181*4882a593Smuzhiyun return afs_sb2net(inode->i_sb);
1182*4882a593Smuzhiyun }
1183*4882a593Smuzhiyun
afs_v2net(struct afs_vnode * vnode)1184*4882a593Smuzhiyun static inline struct afs_net *afs_v2net(struct afs_vnode *vnode)
1185*4882a593Smuzhiyun {
1186*4882a593Smuzhiyun return afs_i2net(&vnode->vfs_inode);
1187*4882a593Smuzhiyun }
1188*4882a593Smuzhiyun
afs_sock2net(struct sock * sk)1189*4882a593Smuzhiyun static inline struct afs_net *afs_sock2net(struct sock *sk)
1190*4882a593Smuzhiyun {
1191*4882a593Smuzhiyun return net_generic(sock_net(sk), afs_net_id);
1192*4882a593Smuzhiyun }
1193*4882a593Smuzhiyun
__afs_stat(atomic_t * s)1194*4882a593Smuzhiyun static inline void __afs_stat(atomic_t *s)
1195*4882a593Smuzhiyun {
1196*4882a593Smuzhiyun atomic_inc(s);
1197*4882a593Smuzhiyun }
1198*4882a593Smuzhiyun
1199*4882a593Smuzhiyun #define afs_stat_v(vnode, n) __afs_stat(&afs_v2net(vnode)->n)
1200*4882a593Smuzhiyun
1201*4882a593Smuzhiyun /*
1202*4882a593Smuzhiyun * misc.c
1203*4882a593Smuzhiyun */
1204*4882a593Smuzhiyun extern int afs_abort_to_error(u32);
1205*4882a593Smuzhiyun extern void afs_prioritise_error(struct afs_error *, int, u32);
1206*4882a593Smuzhiyun
1207*4882a593Smuzhiyun /*
1208*4882a593Smuzhiyun * mntpt.c
1209*4882a593Smuzhiyun */
1210*4882a593Smuzhiyun extern const struct inode_operations afs_mntpt_inode_operations;
1211*4882a593Smuzhiyun extern const struct inode_operations afs_autocell_inode_operations;
1212*4882a593Smuzhiyun extern const struct file_operations afs_mntpt_file_operations;
1213*4882a593Smuzhiyun
1214*4882a593Smuzhiyun extern struct vfsmount *afs_d_automount(struct path *);
1215*4882a593Smuzhiyun extern void afs_mntpt_kill_timer(void);
1216*4882a593Smuzhiyun
1217*4882a593Smuzhiyun /*
1218*4882a593Smuzhiyun * proc.c
1219*4882a593Smuzhiyun */
1220*4882a593Smuzhiyun #ifdef CONFIG_PROC_FS
1221*4882a593Smuzhiyun extern int __net_init afs_proc_init(struct afs_net *);
1222*4882a593Smuzhiyun extern void __net_exit afs_proc_cleanup(struct afs_net *);
1223*4882a593Smuzhiyun extern int afs_proc_cell_setup(struct afs_cell *);
1224*4882a593Smuzhiyun extern void afs_proc_cell_remove(struct afs_cell *);
1225*4882a593Smuzhiyun extern void afs_put_sysnames(struct afs_sysnames *);
1226*4882a593Smuzhiyun #else
afs_proc_init(struct afs_net * net)1227*4882a593Smuzhiyun static inline int afs_proc_init(struct afs_net *net) { return 0; }
afs_proc_cleanup(struct afs_net * net)1228*4882a593Smuzhiyun static inline void afs_proc_cleanup(struct afs_net *net) {}
afs_proc_cell_setup(struct afs_cell * cell)1229*4882a593Smuzhiyun static inline int afs_proc_cell_setup(struct afs_cell *cell) { return 0; }
afs_proc_cell_remove(struct afs_cell * cell)1230*4882a593Smuzhiyun static inline void afs_proc_cell_remove(struct afs_cell *cell) {}
afs_put_sysnames(struct afs_sysnames * sysnames)1231*4882a593Smuzhiyun static inline void afs_put_sysnames(struct afs_sysnames *sysnames) {}
1232*4882a593Smuzhiyun #endif
1233*4882a593Smuzhiyun
1234*4882a593Smuzhiyun /*
1235*4882a593Smuzhiyun * rotate.c
1236*4882a593Smuzhiyun */
1237*4882a593Smuzhiyun extern bool afs_select_fileserver(struct afs_operation *);
1238*4882a593Smuzhiyun extern void afs_dump_edestaddrreq(const struct afs_operation *);
1239*4882a593Smuzhiyun
1240*4882a593Smuzhiyun /*
1241*4882a593Smuzhiyun * rxrpc.c
1242*4882a593Smuzhiyun */
1243*4882a593Smuzhiyun extern struct workqueue_struct *afs_async_calls;
1244*4882a593Smuzhiyun
1245*4882a593Smuzhiyun extern int __net_init afs_open_socket(struct afs_net *);
1246*4882a593Smuzhiyun extern void __net_exit afs_close_socket(struct afs_net *);
1247*4882a593Smuzhiyun extern void afs_charge_preallocation(struct work_struct *);
1248*4882a593Smuzhiyun extern void afs_put_call(struct afs_call *);
1249*4882a593Smuzhiyun extern void afs_make_call(struct afs_addr_cursor *, struct afs_call *, gfp_t);
1250*4882a593Smuzhiyun extern long afs_wait_for_call_to_complete(struct afs_call *, struct afs_addr_cursor *);
1251*4882a593Smuzhiyun extern struct afs_call *afs_alloc_flat_call(struct afs_net *,
1252*4882a593Smuzhiyun const struct afs_call_type *,
1253*4882a593Smuzhiyun size_t, size_t);
1254*4882a593Smuzhiyun extern void afs_flat_call_destructor(struct afs_call *);
1255*4882a593Smuzhiyun extern void afs_send_empty_reply(struct afs_call *);
1256*4882a593Smuzhiyun extern void afs_send_simple_reply(struct afs_call *, const void *, size_t);
1257*4882a593Smuzhiyun extern int afs_extract_data(struct afs_call *, bool);
1258*4882a593Smuzhiyun extern int afs_protocol_error(struct afs_call *, enum afs_eproto_cause);
1259*4882a593Smuzhiyun
afs_make_op_call(struct afs_operation * op,struct afs_call * call,gfp_t gfp)1260*4882a593Smuzhiyun static inline void afs_make_op_call(struct afs_operation *op, struct afs_call *call,
1261*4882a593Smuzhiyun gfp_t gfp)
1262*4882a593Smuzhiyun {
1263*4882a593Smuzhiyun op->call = call;
1264*4882a593Smuzhiyun op->type = call->type;
1265*4882a593Smuzhiyun call->op = op;
1266*4882a593Smuzhiyun call->key = op->key;
1267*4882a593Smuzhiyun call->intr = !(op->flags & AFS_OPERATION_UNINTR);
1268*4882a593Smuzhiyun afs_make_call(&op->ac, call, gfp);
1269*4882a593Smuzhiyun }
1270*4882a593Smuzhiyun
afs_extract_begin(struct afs_call * call,void * buf,size_t size)1271*4882a593Smuzhiyun static inline void afs_extract_begin(struct afs_call *call, void *buf, size_t size)
1272*4882a593Smuzhiyun {
1273*4882a593Smuzhiyun call->kvec[0].iov_base = buf;
1274*4882a593Smuzhiyun call->kvec[0].iov_len = size;
1275*4882a593Smuzhiyun iov_iter_kvec(&call->def_iter, READ, call->kvec, 1, size);
1276*4882a593Smuzhiyun }
1277*4882a593Smuzhiyun
afs_extract_to_tmp(struct afs_call * call)1278*4882a593Smuzhiyun static inline void afs_extract_to_tmp(struct afs_call *call)
1279*4882a593Smuzhiyun {
1280*4882a593Smuzhiyun afs_extract_begin(call, &call->tmp, sizeof(call->tmp));
1281*4882a593Smuzhiyun }
1282*4882a593Smuzhiyun
afs_extract_to_tmp64(struct afs_call * call)1283*4882a593Smuzhiyun static inline void afs_extract_to_tmp64(struct afs_call *call)
1284*4882a593Smuzhiyun {
1285*4882a593Smuzhiyun afs_extract_begin(call, &call->tmp64, sizeof(call->tmp64));
1286*4882a593Smuzhiyun }
1287*4882a593Smuzhiyun
afs_extract_discard(struct afs_call * call,size_t size)1288*4882a593Smuzhiyun static inline void afs_extract_discard(struct afs_call *call, size_t size)
1289*4882a593Smuzhiyun {
1290*4882a593Smuzhiyun iov_iter_discard(&call->def_iter, READ, size);
1291*4882a593Smuzhiyun }
1292*4882a593Smuzhiyun
afs_extract_to_buf(struct afs_call * call,size_t size)1293*4882a593Smuzhiyun static inline void afs_extract_to_buf(struct afs_call *call, size_t size)
1294*4882a593Smuzhiyun {
1295*4882a593Smuzhiyun afs_extract_begin(call, call->buffer, size);
1296*4882a593Smuzhiyun }
1297*4882a593Smuzhiyun
afs_transfer_reply(struct afs_call * call)1298*4882a593Smuzhiyun static inline int afs_transfer_reply(struct afs_call *call)
1299*4882a593Smuzhiyun {
1300*4882a593Smuzhiyun return afs_extract_data(call, false);
1301*4882a593Smuzhiyun }
1302*4882a593Smuzhiyun
afs_check_call_state(struct afs_call * call,enum afs_call_state state)1303*4882a593Smuzhiyun static inline bool afs_check_call_state(struct afs_call *call,
1304*4882a593Smuzhiyun enum afs_call_state state)
1305*4882a593Smuzhiyun {
1306*4882a593Smuzhiyun return READ_ONCE(call->state) == state;
1307*4882a593Smuzhiyun }
1308*4882a593Smuzhiyun
afs_set_call_state(struct afs_call * call,enum afs_call_state from,enum afs_call_state to)1309*4882a593Smuzhiyun static inline bool afs_set_call_state(struct afs_call *call,
1310*4882a593Smuzhiyun enum afs_call_state from,
1311*4882a593Smuzhiyun enum afs_call_state to)
1312*4882a593Smuzhiyun {
1313*4882a593Smuzhiyun bool ok = false;
1314*4882a593Smuzhiyun
1315*4882a593Smuzhiyun spin_lock_bh(&call->state_lock);
1316*4882a593Smuzhiyun if (call->state == from) {
1317*4882a593Smuzhiyun call->state = to;
1318*4882a593Smuzhiyun trace_afs_call_state(call, from, to, 0, 0);
1319*4882a593Smuzhiyun ok = true;
1320*4882a593Smuzhiyun }
1321*4882a593Smuzhiyun spin_unlock_bh(&call->state_lock);
1322*4882a593Smuzhiyun return ok;
1323*4882a593Smuzhiyun }
1324*4882a593Smuzhiyun
afs_set_call_complete(struct afs_call * call,int error,u32 remote_abort)1325*4882a593Smuzhiyun static inline void afs_set_call_complete(struct afs_call *call,
1326*4882a593Smuzhiyun int error, u32 remote_abort)
1327*4882a593Smuzhiyun {
1328*4882a593Smuzhiyun enum afs_call_state state;
1329*4882a593Smuzhiyun bool ok = false;
1330*4882a593Smuzhiyun
1331*4882a593Smuzhiyun spin_lock_bh(&call->state_lock);
1332*4882a593Smuzhiyun state = call->state;
1333*4882a593Smuzhiyun if (state != AFS_CALL_COMPLETE) {
1334*4882a593Smuzhiyun call->abort_code = remote_abort;
1335*4882a593Smuzhiyun call->error = error;
1336*4882a593Smuzhiyun call->state = AFS_CALL_COMPLETE;
1337*4882a593Smuzhiyun trace_afs_call_state(call, state, AFS_CALL_COMPLETE,
1338*4882a593Smuzhiyun error, remote_abort);
1339*4882a593Smuzhiyun ok = true;
1340*4882a593Smuzhiyun }
1341*4882a593Smuzhiyun spin_unlock_bh(&call->state_lock);
1342*4882a593Smuzhiyun if (ok) {
1343*4882a593Smuzhiyun trace_afs_call_done(call);
1344*4882a593Smuzhiyun
1345*4882a593Smuzhiyun /* Asynchronous calls have two refs to release - one from the alloc and
1346*4882a593Smuzhiyun * one queued with the work item - and we can't just deallocate the
1347*4882a593Smuzhiyun * call because the work item may be queued again.
1348*4882a593Smuzhiyun */
1349*4882a593Smuzhiyun if (call->drop_ref)
1350*4882a593Smuzhiyun afs_put_call(call);
1351*4882a593Smuzhiyun }
1352*4882a593Smuzhiyun }
1353*4882a593Smuzhiyun
1354*4882a593Smuzhiyun /*
1355*4882a593Smuzhiyun * security.c
1356*4882a593Smuzhiyun */
1357*4882a593Smuzhiyun extern void afs_put_permits(struct afs_permits *);
1358*4882a593Smuzhiyun extern void afs_clear_permits(struct afs_vnode *);
1359*4882a593Smuzhiyun extern void afs_cache_permit(struct afs_vnode *, struct key *, unsigned int,
1360*4882a593Smuzhiyun struct afs_status_cb *);
1361*4882a593Smuzhiyun extern void afs_zap_permits(struct rcu_head *);
1362*4882a593Smuzhiyun extern struct key *afs_request_key(struct afs_cell *);
1363*4882a593Smuzhiyun extern struct key *afs_request_key_rcu(struct afs_cell *);
1364*4882a593Smuzhiyun extern int afs_check_permit(struct afs_vnode *, struct key *, afs_access_t *);
1365*4882a593Smuzhiyun extern int afs_permission(struct inode *, int);
1366*4882a593Smuzhiyun extern void __exit afs_clean_up_permit_cache(void);
1367*4882a593Smuzhiyun
1368*4882a593Smuzhiyun /*
1369*4882a593Smuzhiyun * server.c
1370*4882a593Smuzhiyun */
1371*4882a593Smuzhiyun extern spinlock_t afs_server_peer_lock;
1372*4882a593Smuzhiyun
1373*4882a593Smuzhiyun extern struct afs_server *afs_find_server(struct afs_net *,
1374*4882a593Smuzhiyun const struct sockaddr_rxrpc *);
1375*4882a593Smuzhiyun extern struct afs_server *afs_find_server_by_uuid(struct afs_net *, const uuid_t *);
1376*4882a593Smuzhiyun extern struct afs_server *afs_lookup_server(struct afs_cell *, struct key *, const uuid_t *, u32);
1377*4882a593Smuzhiyun extern struct afs_server *afs_get_server(struct afs_server *, enum afs_server_trace);
1378*4882a593Smuzhiyun extern struct afs_server *afs_use_server(struct afs_server *, enum afs_server_trace);
1379*4882a593Smuzhiyun extern void afs_unuse_server(struct afs_net *, struct afs_server *, enum afs_server_trace);
1380*4882a593Smuzhiyun extern void afs_unuse_server_notime(struct afs_net *, struct afs_server *, enum afs_server_trace);
1381*4882a593Smuzhiyun extern void afs_put_server(struct afs_net *, struct afs_server *, enum afs_server_trace);
1382*4882a593Smuzhiyun extern void afs_manage_servers(struct work_struct *);
1383*4882a593Smuzhiyun extern void afs_servers_timer(struct timer_list *);
1384*4882a593Smuzhiyun extern void afs_fs_probe_timer(struct timer_list *);
1385*4882a593Smuzhiyun extern void __net_exit afs_purge_servers(struct afs_net *);
1386*4882a593Smuzhiyun extern bool afs_check_server_record(struct afs_operation *, struct afs_server *);
1387*4882a593Smuzhiyun
afs_inc_servers_outstanding(struct afs_net * net)1388*4882a593Smuzhiyun static inline void afs_inc_servers_outstanding(struct afs_net *net)
1389*4882a593Smuzhiyun {
1390*4882a593Smuzhiyun atomic_inc(&net->servers_outstanding);
1391*4882a593Smuzhiyun }
1392*4882a593Smuzhiyun
afs_dec_servers_outstanding(struct afs_net * net)1393*4882a593Smuzhiyun static inline void afs_dec_servers_outstanding(struct afs_net *net)
1394*4882a593Smuzhiyun {
1395*4882a593Smuzhiyun if (atomic_dec_and_test(&net->servers_outstanding))
1396*4882a593Smuzhiyun wake_up_var(&net->servers_outstanding);
1397*4882a593Smuzhiyun }
1398*4882a593Smuzhiyun
afs_is_probing_server(struct afs_server * server)1399*4882a593Smuzhiyun static inline bool afs_is_probing_server(struct afs_server *server)
1400*4882a593Smuzhiyun {
1401*4882a593Smuzhiyun return list_empty(&server->probe_link);
1402*4882a593Smuzhiyun }
1403*4882a593Smuzhiyun
1404*4882a593Smuzhiyun /*
1405*4882a593Smuzhiyun * server_list.c
1406*4882a593Smuzhiyun */
afs_get_serverlist(struct afs_server_list * slist)1407*4882a593Smuzhiyun static inline struct afs_server_list *afs_get_serverlist(struct afs_server_list *slist)
1408*4882a593Smuzhiyun {
1409*4882a593Smuzhiyun refcount_inc(&slist->usage);
1410*4882a593Smuzhiyun return slist;
1411*4882a593Smuzhiyun }
1412*4882a593Smuzhiyun
1413*4882a593Smuzhiyun extern void afs_put_serverlist(struct afs_net *, struct afs_server_list *);
1414*4882a593Smuzhiyun extern struct afs_server_list *afs_alloc_server_list(struct afs_cell *, struct key *,
1415*4882a593Smuzhiyun struct afs_vldb_entry *,
1416*4882a593Smuzhiyun u8);
1417*4882a593Smuzhiyun extern bool afs_annotate_server_list(struct afs_server_list *, struct afs_server_list *);
1418*4882a593Smuzhiyun
1419*4882a593Smuzhiyun /*
1420*4882a593Smuzhiyun * super.c
1421*4882a593Smuzhiyun */
1422*4882a593Smuzhiyun extern int __init afs_fs_init(void);
1423*4882a593Smuzhiyun extern void afs_fs_exit(void);
1424*4882a593Smuzhiyun
1425*4882a593Smuzhiyun /*
1426*4882a593Smuzhiyun * vlclient.c
1427*4882a593Smuzhiyun */
1428*4882a593Smuzhiyun extern struct afs_vldb_entry *afs_vl_get_entry_by_name_u(struct afs_vl_cursor *,
1429*4882a593Smuzhiyun const char *, int);
1430*4882a593Smuzhiyun extern struct afs_addr_list *afs_vl_get_addrs_u(struct afs_vl_cursor *, const uuid_t *);
1431*4882a593Smuzhiyun extern struct afs_call *afs_vl_get_capabilities(struct afs_net *, struct afs_addr_cursor *,
1432*4882a593Smuzhiyun struct key *, struct afs_vlserver *, unsigned int);
1433*4882a593Smuzhiyun extern struct afs_addr_list *afs_yfsvl_get_endpoints(struct afs_vl_cursor *, const uuid_t *);
1434*4882a593Smuzhiyun extern char *afs_yfsvl_get_cell_name(struct afs_vl_cursor *);
1435*4882a593Smuzhiyun
1436*4882a593Smuzhiyun /*
1437*4882a593Smuzhiyun * vl_alias.c
1438*4882a593Smuzhiyun */
1439*4882a593Smuzhiyun extern int afs_cell_detect_alias(struct afs_cell *, struct key *);
1440*4882a593Smuzhiyun
1441*4882a593Smuzhiyun /*
1442*4882a593Smuzhiyun * vl_probe.c
1443*4882a593Smuzhiyun */
1444*4882a593Smuzhiyun extern void afs_vlserver_probe_result(struct afs_call *);
1445*4882a593Smuzhiyun extern int afs_send_vl_probes(struct afs_net *, struct key *, struct afs_vlserver_list *);
1446*4882a593Smuzhiyun extern int afs_wait_for_vl_probes(struct afs_vlserver_list *, unsigned long);
1447*4882a593Smuzhiyun
1448*4882a593Smuzhiyun /*
1449*4882a593Smuzhiyun * vl_rotate.c
1450*4882a593Smuzhiyun */
1451*4882a593Smuzhiyun extern bool afs_begin_vlserver_operation(struct afs_vl_cursor *,
1452*4882a593Smuzhiyun struct afs_cell *, struct key *);
1453*4882a593Smuzhiyun extern bool afs_select_vlserver(struct afs_vl_cursor *);
1454*4882a593Smuzhiyun extern bool afs_select_current_vlserver(struct afs_vl_cursor *);
1455*4882a593Smuzhiyun extern int afs_end_vlserver_operation(struct afs_vl_cursor *);
1456*4882a593Smuzhiyun
1457*4882a593Smuzhiyun /*
1458*4882a593Smuzhiyun * vlserver_list.c
1459*4882a593Smuzhiyun */
afs_get_vlserver(struct afs_vlserver * vlserver)1460*4882a593Smuzhiyun static inline struct afs_vlserver *afs_get_vlserver(struct afs_vlserver *vlserver)
1461*4882a593Smuzhiyun {
1462*4882a593Smuzhiyun atomic_inc(&vlserver->usage);
1463*4882a593Smuzhiyun return vlserver;
1464*4882a593Smuzhiyun }
1465*4882a593Smuzhiyun
afs_get_vlserverlist(struct afs_vlserver_list * vllist)1466*4882a593Smuzhiyun static inline struct afs_vlserver_list *afs_get_vlserverlist(struct afs_vlserver_list *vllist)
1467*4882a593Smuzhiyun {
1468*4882a593Smuzhiyun if (vllist)
1469*4882a593Smuzhiyun atomic_inc(&vllist->usage);
1470*4882a593Smuzhiyun return vllist;
1471*4882a593Smuzhiyun }
1472*4882a593Smuzhiyun
1473*4882a593Smuzhiyun extern struct afs_vlserver *afs_alloc_vlserver(const char *, size_t, unsigned short);
1474*4882a593Smuzhiyun extern void afs_put_vlserver(struct afs_net *, struct afs_vlserver *);
1475*4882a593Smuzhiyun extern struct afs_vlserver_list *afs_alloc_vlserver_list(unsigned int);
1476*4882a593Smuzhiyun extern void afs_put_vlserverlist(struct afs_net *, struct afs_vlserver_list *);
1477*4882a593Smuzhiyun extern struct afs_vlserver_list *afs_extract_vlserver_list(struct afs_cell *,
1478*4882a593Smuzhiyun const void *, size_t);
1479*4882a593Smuzhiyun
1480*4882a593Smuzhiyun /*
1481*4882a593Smuzhiyun * volume.c
1482*4882a593Smuzhiyun */
1483*4882a593Smuzhiyun extern struct afs_volume *afs_create_volume(struct afs_fs_context *);
1484*4882a593Smuzhiyun extern void afs_activate_volume(struct afs_volume *);
1485*4882a593Smuzhiyun extern void afs_deactivate_volume(struct afs_volume *);
1486*4882a593Smuzhiyun extern struct afs_volume *afs_get_volume(struct afs_volume *, enum afs_volume_trace);
1487*4882a593Smuzhiyun extern void afs_put_volume(struct afs_net *, struct afs_volume *, enum afs_volume_trace);
1488*4882a593Smuzhiyun extern int afs_check_volume_status(struct afs_volume *, struct afs_operation *);
1489*4882a593Smuzhiyun
1490*4882a593Smuzhiyun /*
1491*4882a593Smuzhiyun * write.c
1492*4882a593Smuzhiyun */
1493*4882a593Smuzhiyun extern int afs_set_page_dirty(struct page *);
1494*4882a593Smuzhiyun extern int afs_write_begin(struct file *file, struct address_space *mapping,
1495*4882a593Smuzhiyun loff_t pos, unsigned len, unsigned flags,
1496*4882a593Smuzhiyun struct page **pagep, void **fsdata);
1497*4882a593Smuzhiyun extern int afs_write_end(struct file *file, struct address_space *mapping,
1498*4882a593Smuzhiyun loff_t pos, unsigned len, unsigned copied,
1499*4882a593Smuzhiyun struct page *page, void *fsdata);
1500*4882a593Smuzhiyun extern int afs_writepage(struct page *, struct writeback_control *);
1501*4882a593Smuzhiyun extern int afs_writepages(struct address_space *, struct writeback_control *);
1502*4882a593Smuzhiyun extern ssize_t afs_file_write(struct kiocb *, struct iov_iter *);
1503*4882a593Smuzhiyun extern int afs_fsync(struct file *, loff_t, loff_t, int);
1504*4882a593Smuzhiyun extern vm_fault_t afs_page_mkwrite(struct vm_fault *vmf);
1505*4882a593Smuzhiyun extern void afs_prune_wb_keys(struct afs_vnode *);
1506*4882a593Smuzhiyun extern int afs_launder_page(struct page *);
1507*4882a593Smuzhiyun
1508*4882a593Smuzhiyun /*
1509*4882a593Smuzhiyun * xattr.c
1510*4882a593Smuzhiyun */
1511*4882a593Smuzhiyun extern const struct xattr_handler *afs_xattr_handlers[];
1512*4882a593Smuzhiyun
1513*4882a593Smuzhiyun /*
1514*4882a593Smuzhiyun * yfsclient.c
1515*4882a593Smuzhiyun */
1516*4882a593Smuzhiyun extern void yfs_fs_fetch_data(struct afs_operation *);
1517*4882a593Smuzhiyun extern void yfs_fs_create_file(struct afs_operation *);
1518*4882a593Smuzhiyun extern void yfs_fs_make_dir(struct afs_operation *);
1519*4882a593Smuzhiyun extern void yfs_fs_remove_file2(struct afs_operation *);
1520*4882a593Smuzhiyun extern void yfs_fs_remove_file(struct afs_operation *);
1521*4882a593Smuzhiyun extern void yfs_fs_remove_dir(struct afs_operation *);
1522*4882a593Smuzhiyun extern void yfs_fs_link(struct afs_operation *);
1523*4882a593Smuzhiyun extern void yfs_fs_symlink(struct afs_operation *);
1524*4882a593Smuzhiyun extern void yfs_fs_rename(struct afs_operation *);
1525*4882a593Smuzhiyun extern void yfs_fs_store_data(struct afs_operation *);
1526*4882a593Smuzhiyun extern void yfs_fs_setattr(struct afs_operation *);
1527*4882a593Smuzhiyun extern void yfs_fs_get_volume_status(struct afs_operation *);
1528*4882a593Smuzhiyun extern void yfs_fs_set_lock(struct afs_operation *);
1529*4882a593Smuzhiyun extern void yfs_fs_extend_lock(struct afs_operation *);
1530*4882a593Smuzhiyun extern void yfs_fs_release_lock(struct afs_operation *);
1531*4882a593Smuzhiyun extern void yfs_fs_fetch_status(struct afs_operation *);
1532*4882a593Smuzhiyun extern void yfs_fs_inline_bulk_status(struct afs_operation *);
1533*4882a593Smuzhiyun
1534*4882a593Smuzhiyun struct yfs_acl {
1535*4882a593Smuzhiyun struct afs_acl *acl; /* Dir/file/symlink ACL */
1536*4882a593Smuzhiyun struct afs_acl *vol_acl; /* Whole volume ACL */
1537*4882a593Smuzhiyun u32 inherit_flag; /* True if ACL is inherited from parent dir */
1538*4882a593Smuzhiyun u32 num_cleaned; /* Number of ACEs removed due to subject removal */
1539*4882a593Smuzhiyun unsigned int flags;
1540*4882a593Smuzhiyun #define YFS_ACL_WANT_ACL 0x01 /* Set if caller wants ->acl */
1541*4882a593Smuzhiyun #define YFS_ACL_WANT_VOL_ACL 0x02 /* Set if caller wants ->vol_acl */
1542*4882a593Smuzhiyun };
1543*4882a593Smuzhiyun
1544*4882a593Smuzhiyun extern void yfs_free_opaque_acl(struct yfs_acl *);
1545*4882a593Smuzhiyun extern void yfs_fs_fetch_opaque_acl(struct afs_operation *);
1546*4882a593Smuzhiyun extern void yfs_fs_store_opaque_acl2(struct afs_operation *);
1547*4882a593Smuzhiyun
1548*4882a593Smuzhiyun /*
1549*4882a593Smuzhiyun * Miscellaneous inline functions.
1550*4882a593Smuzhiyun */
AFS_FS_I(struct inode * inode)1551*4882a593Smuzhiyun static inline struct afs_vnode *AFS_FS_I(struct inode *inode)
1552*4882a593Smuzhiyun {
1553*4882a593Smuzhiyun return container_of(inode, struct afs_vnode, vfs_inode);
1554*4882a593Smuzhiyun }
1555*4882a593Smuzhiyun
AFS_VNODE_TO_I(struct afs_vnode * vnode)1556*4882a593Smuzhiyun static inline struct inode *AFS_VNODE_TO_I(struct afs_vnode *vnode)
1557*4882a593Smuzhiyun {
1558*4882a593Smuzhiyun return &vnode->vfs_inode;
1559*4882a593Smuzhiyun }
1560*4882a593Smuzhiyun
1561*4882a593Smuzhiyun /*
1562*4882a593Smuzhiyun * Note that a dentry got changed. We need to set d_fsdata to the data version
1563*4882a593Smuzhiyun * number derived from the result of the operation. It doesn't matter if
1564*4882a593Smuzhiyun * d_fsdata goes backwards as we'll just revalidate.
1565*4882a593Smuzhiyun */
afs_update_dentry_version(struct afs_operation * op,struct afs_vnode_param * dir_vp,struct dentry * dentry)1566*4882a593Smuzhiyun static inline void afs_update_dentry_version(struct afs_operation *op,
1567*4882a593Smuzhiyun struct afs_vnode_param *dir_vp,
1568*4882a593Smuzhiyun struct dentry *dentry)
1569*4882a593Smuzhiyun {
1570*4882a593Smuzhiyun if (!op->error)
1571*4882a593Smuzhiyun dentry->d_fsdata =
1572*4882a593Smuzhiyun (void *)(unsigned long)dir_vp->scb.status.data_version;
1573*4882a593Smuzhiyun }
1574*4882a593Smuzhiyun
1575*4882a593Smuzhiyun /*
1576*4882a593Smuzhiyun * Set the file size and block count. Estimate the number of 512 bytes blocks
1577*4882a593Smuzhiyun * used, rounded up to nearest 1K for consistency with other AFS clients.
1578*4882a593Smuzhiyun */
afs_set_i_size(struct afs_vnode * vnode,u64 size)1579*4882a593Smuzhiyun static inline void afs_set_i_size(struct afs_vnode *vnode, u64 size)
1580*4882a593Smuzhiyun {
1581*4882a593Smuzhiyun i_size_write(&vnode->vfs_inode, size);
1582*4882a593Smuzhiyun vnode->vfs_inode.i_blocks = ((size + 1023) >> 10) << 1;
1583*4882a593Smuzhiyun }
1584*4882a593Smuzhiyun
1585*4882a593Smuzhiyun /*
1586*4882a593Smuzhiyun * Check for a conflicting operation on a directory that we just unlinked from.
1587*4882a593Smuzhiyun * If someone managed to sneak a link or an unlink in on the file we just
1588*4882a593Smuzhiyun * unlinked, we won't be able to trust nlink on an AFS file (but not YFS).
1589*4882a593Smuzhiyun */
afs_check_dir_conflict(struct afs_operation * op,struct afs_vnode_param * dvp)1590*4882a593Smuzhiyun static inline void afs_check_dir_conflict(struct afs_operation *op,
1591*4882a593Smuzhiyun struct afs_vnode_param *dvp)
1592*4882a593Smuzhiyun {
1593*4882a593Smuzhiyun if (dvp->dv_before + dvp->dv_delta != dvp->scb.status.data_version)
1594*4882a593Smuzhiyun op->flags |= AFS_OPERATION_DIR_CONFLICT;
1595*4882a593Smuzhiyun }
1596*4882a593Smuzhiyun
afs_io_error(struct afs_call * call,enum afs_io_error where)1597*4882a593Smuzhiyun static inline int afs_io_error(struct afs_call *call, enum afs_io_error where)
1598*4882a593Smuzhiyun {
1599*4882a593Smuzhiyun trace_afs_io_error(call->debug_id, -EIO, where);
1600*4882a593Smuzhiyun return -EIO;
1601*4882a593Smuzhiyun }
1602*4882a593Smuzhiyun
afs_bad(struct afs_vnode * vnode,enum afs_file_error where)1603*4882a593Smuzhiyun static inline int afs_bad(struct afs_vnode *vnode, enum afs_file_error where)
1604*4882a593Smuzhiyun {
1605*4882a593Smuzhiyun trace_afs_file_error(vnode, -EIO, where);
1606*4882a593Smuzhiyun return -EIO;
1607*4882a593Smuzhiyun }
1608*4882a593Smuzhiyun
1609*4882a593Smuzhiyun /*****************************************************************************/
1610*4882a593Smuzhiyun /*
1611*4882a593Smuzhiyun * debug tracing
1612*4882a593Smuzhiyun */
1613*4882a593Smuzhiyun extern unsigned afs_debug;
1614*4882a593Smuzhiyun
1615*4882a593Smuzhiyun #define dbgprintk(FMT,...) \
1616*4882a593Smuzhiyun printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
1617*4882a593Smuzhiyun
1618*4882a593Smuzhiyun #define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
1619*4882a593Smuzhiyun #define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
1620*4882a593Smuzhiyun #define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
1621*4882a593Smuzhiyun
1622*4882a593Smuzhiyun
1623*4882a593Smuzhiyun #if defined(__KDEBUG)
1624*4882a593Smuzhiyun #define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
1625*4882a593Smuzhiyun #define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
1626*4882a593Smuzhiyun #define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
1627*4882a593Smuzhiyun
1628*4882a593Smuzhiyun #elif defined(CONFIG_AFS_DEBUG)
1629*4882a593Smuzhiyun #define AFS_DEBUG_KENTER 0x01
1630*4882a593Smuzhiyun #define AFS_DEBUG_KLEAVE 0x02
1631*4882a593Smuzhiyun #define AFS_DEBUG_KDEBUG 0x04
1632*4882a593Smuzhiyun
1633*4882a593Smuzhiyun #define _enter(FMT,...) \
1634*4882a593Smuzhiyun do { \
1635*4882a593Smuzhiyun if (unlikely(afs_debug & AFS_DEBUG_KENTER)) \
1636*4882a593Smuzhiyun kenter(FMT,##__VA_ARGS__); \
1637*4882a593Smuzhiyun } while (0)
1638*4882a593Smuzhiyun
1639*4882a593Smuzhiyun #define _leave(FMT,...) \
1640*4882a593Smuzhiyun do { \
1641*4882a593Smuzhiyun if (unlikely(afs_debug & AFS_DEBUG_KLEAVE)) \
1642*4882a593Smuzhiyun kleave(FMT,##__VA_ARGS__); \
1643*4882a593Smuzhiyun } while (0)
1644*4882a593Smuzhiyun
1645*4882a593Smuzhiyun #define _debug(FMT,...) \
1646*4882a593Smuzhiyun do { \
1647*4882a593Smuzhiyun if (unlikely(afs_debug & AFS_DEBUG_KDEBUG)) \
1648*4882a593Smuzhiyun kdebug(FMT,##__VA_ARGS__); \
1649*4882a593Smuzhiyun } while (0)
1650*4882a593Smuzhiyun
1651*4882a593Smuzhiyun #else
1652*4882a593Smuzhiyun #define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
1653*4882a593Smuzhiyun #define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
1654*4882a593Smuzhiyun #define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
1655*4882a593Smuzhiyun #endif
1656*4882a593Smuzhiyun
1657*4882a593Smuzhiyun /*
1658*4882a593Smuzhiyun * debug assertion checking
1659*4882a593Smuzhiyun */
1660*4882a593Smuzhiyun #if 1 // defined(__KDEBUGALL)
1661*4882a593Smuzhiyun
1662*4882a593Smuzhiyun #define ASSERT(X) \
1663*4882a593Smuzhiyun do { \
1664*4882a593Smuzhiyun if (unlikely(!(X))) { \
1665*4882a593Smuzhiyun printk(KERN_ERR "\n"); \
1666*4882a593Smuzhiyun printk(KERN_ERR "AFS: Assertion failed\n"); \
1667*4882a593Smuzhiyun BUG(); \
1668*4882a593Smuzhiyun } \
1669*4882a593Smuzhiyun } while(0)
1670*4882a593Smuzhiyun
1671*4882a593Smuzhiyun #define ASSERTCMP(X, OP, Y) \
1672*4882a593Smuzhiyun do { \
1673*4882a593Smuzhiyun if (unlikely(!((X) OP (Y)))) { \
1674*4882a593Smuzhiyun printk(KERN_ERR "\n"); \
1675*4882a593Smuzhiyun printk(KERN_ERR "AFS: Assertion failed\n"); \
1676*4882a593Smuzhiyun printk(KERN_ERR "%lu " #OP " %lu is false\n", \
1677*4882a593Smuzhiyun (unsigned long)(X), (unsigned long)(Y)); \
1678*4882a593Smuzhiyun printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
1679*4882a593Smuzhiyun (unsigned long)(X), (unsigned long)(Y)); \
1680*4882a593Smuzhiyun BUG(); \
1681*4882a593Smuzhiyun } \
1682*4882a593Smuzhiyun } while(0)
1683*4882a593Smuzhiyun
1684*4882a593Smuzhiyun #define ASSERTRANGE(L, OP1, N, OP2, H) \
1685*4882a593Smuzhiyun do { \
1686*4882a593Smuzhiyun if (unlikely(!((L) OP1 (N)) || !((N) OP2 (H)))) { \
1687*4882a593Smuzhiyun printk(KERN_ERR "\n"); \
1688*4882a593Smuzhiyun printk(KERN_ERR "AFS: Assertion failed\n"); \
1689*4882a593Smuzhiyun printk(KERN_ERR "%lu "#OP1" %lu "#OP2" %lu is false\n", \
1690*4882a593Smuzhiyun (unsigned long)(L), (unsigned long)(N), \
1691*4882a593Smuzhiyun (unsigned long)(H)); \
1692*4882a593Smuzhiyun printk(KERN_ERR "0x%lx "#OP1" 0x%lx "#OP2" 0x%lx is false\n", \
1693*4882a593Smuzhiyun (unsigned long)(L), (unsigned long)(N), \
1694*4882a593Smuzhiyun (unsigned long)(H)); \
1695*4882a593Smuzhiyun BUG(); \
1696*4882a593Smuzhiyun } \
1697*4882a593Smuzhiyun } while(0)
1698*4882a593Smuzhiyun
1699*4882a593Smuzhiyun #define ASSERTIF(C, X) \
1700*4882a593Smuzhiyun do { \
1701*4882a593Smuzhiyun if (unlikely((C) && !(X))) { \
1702*4882a593Smuzhiyun printk(KERN_ERR "\n"); \
1703*4882a593Smuzhiyun printk(KERN_ERR "AFS: Assertion failed\n"); \
1704*4882a593Smuzhiyun BUG(); \
1705*4882a593Smuzhiyun } \
1706*4882a593Smuzhiyun } while(0)
1707*4882a593Smuzhiyun
1708*4882a593Smuzhiyun #define ASSERTIFCMP(C, X, OP, Y) \
1709*4882a593Smuzhiyun do { \
1710*4882a593Smuzhiyun if (unlikely((C) && !((X) OP (Y)))) { \
1711*4882a593Smuzhiyun printk(KERN_ERR "\n"); \
1712*4882a593Smuzhiyun printk(KERN_ERR "AFS: Assertion failed\n"); \
1713*4882a593Smuzhiyun printk(KERN_ERR "%lu " #OP " %lu is false\n", \
1714*4882a593Smuzhiyun (unsigned long)(X), (unsigned long)(Y)); \
1715*4882a593Smuzhiyun printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
1716*4882a593Smuzhiyun (unsigned long)(X), (unsigned long)(Y)); \
1717*4882a593Smuzhiyun BUG(); \
1718*4882a593Smuzhiyun } \
1719*4882a593Smuzhiyun } while(0)
1720*4882a593Smuzhiyun
1721*4882a593Smuzhiyun #else
1722*4882a593Smuzhiyun
1723*4882a593Smuzhiyun #define ASSERT(X) \
1724*4882a593Smuzhiyun do { \
1725*4882a593Smuzhiyun } while(0)
1726*4882a593Smuzhiyun
1727*4882a593Smuzhiyun #define ASSERTCMP(X, OP, Y) \
1728*4882a593Smuzhiyun do { \
1729*4882a593Smuzhiyun } while(0)
1730*4882a593Smuzhiyun
1731*4882a593Smuzhiyun #define ASSERTRANGE(L, OP1, N, OP2, H) \
1732*4882a593Smuzhiyun do { \
1733*4882a593Smuzhiyun } while(0)
1734*4882a593Smuzhiyun
1735*4882a593Smuzhiyun #define ASSERTIF(C, X) \
1736*4882a593Smuzhiyun do { \
1737*4882a593Smuzhiyun } while(0)
1738*4882a593Smuzhiyun
1739*4882a593Smuzhiyun #define ASSERTIFCMP(C, X, OP, Y) \
1740*4882a593Smuzhiyun do { \
1741*4882a593Smuzhiyun } while(0)
1742*4882a593Smuzhiyun
1743*4882a593Smuzhiyun #endif /* __KDEBUGALL */
1744