xref: /openbmc/linux/fs/afs/internal.h (revision 62e59c4e)
1 /* internal AFS stuff
2  *
3  * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
4  * Written by David Howells (dhowells@redhat.com)
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version
9  * 2 of the License, or (at your option) any later version.
10  */
11 
12 #include <linux/compiler.h>
13 #include <linux/kernel.h>
14 #include <linux/ktime.h>
15 #include <linux/fs.h>
16 #include <linux/pagemap.h>
17 #include <linux/rxrpc.h>
18 #include <linux/key.h>
19 #include <linux/workqueue.h>
20 #include <linux/sched.h>
21 #include <linux/fscache.h>
22 #include <linux/backing-dev.h>
23 #include <linux/uuid.h>
24 #include <linux/mm_types.h>
25 #include <linux/dns_resolver.h>
26 #include <net/net_namespace.h>
27 #include <net/netns/generic.h>
28 #include <net/sock.h>
29 #include <net/af_rxrpc.h>
30 
31 #include "afs.h"
32 #include "afs_vl.h"
33 
34 #define AFS_CELL_MAX_ADDRS 15
35 
36 struct pagevec;
37 struct afs_call;
38 
39 struct afs_fs_context {
40 	bool			force;		/* T to force cell type */
41 	bool			autocell;	/* T if set auto mount operation */
42 	bool			dyn_root;	/* T if dynamic root */
43 	bool			no_cell;	/* T if the source is "none" (for dynroot) */
44 	afs_voltype_t		type;		/* type of volume requested */
45 	unsigned int		volnamesz;	/* size of volume name */
46 	const char		*volname;	/* name of volume to mount */
47 	struct afs_net		*net;		/* the AFS net namespace stuff */
48 	struct afs_cell		*cell;		/* cell in which to find volume */
49 	struct afs_volume	*volume;	/* volume record */
50 	struct key		*key;		/* key to use for secure mounting */
51 };
52 
53 struct afs_iget_data {
54 	struct afs_fid		fid;
55 	struct afs_volume	*volume;	/* volume on which resides */
56 };
57 
58 enum afs_call_state {
59 	AFS_CALL_CL_REQUESTING,		/* Client: Request is being sent */
60 	AFS_CALL_CL_AWAIT_REPLY,	/* Client: Awaiting reply */
61 	AFS_CALL_CL_PROC_REPLY,		/* Client: rxrpc call complete; processing reply */
62 	AFS_CALL_SV_AWAIT_OP_ID,	/* Server: Awaiting op ID */
63 	AFS_CALL_SV_AWAIT_REQUEST,	/* Server: Awaiting request data */
64 	AFS_CALL_SV_REPLYING,		/* Server: Replying */
65 	AFS_CALL_SV_AWAIT_ACK,		/* Server: Awaiting final ACK */
66 	AFS_CALL_COMPLETE,		/* Completed or failed */
67 };
68 
69 /*
70  * List of server addresses.
71  */
72 struct afs_addr_list {
73 	struct rcu_head		rcu;		/* Must be first */
74 	refcount_t		usage;
75 	u32			version;	/* Version */
76 	unsigned char		max_addrs;
77 	unsigned char		nr_addrs;
78 	unsigned char		preferred;	/* Preferred address */
79 	unsigned char		nr_ipv4;	/* Number of IPv4 addresses */
80 	enum dns_record_source	source:8;
81 	enum dns_lookup_status	status:8;
82 	unsigned long		probed;		/* Mask of servers that have been probed */
83 	unsigned long		failed;		/* Mask of addrs that failed locally/ICMP */
84 	unsigned long		responded;	/* Mask of addrs that responded */
85 	struct sockaddr_rxrpc	addrs[];
86 #define AFS_MAX_ADDRESSES ((unsigned int)(sizeof(unsigned long) * 8))
87 };
88 
89 /*
90  * a record of an in-progress RxRPC call
91  */
92 struct afs_call {
93 	const struct afs_call_type *type;	/* type of call */
94 	struct afs_addr_list	*alist;		/* Address is alist[addr_ix] */
95 	wait_queue_head_t	waitq;		/* processes awaiting completion */
96 	struct work_struct	async_work;	/* async I/O processor */
97 	struct work_struct	work;		/* actual work processor */
98 	struct rxrpc_call	*rxcall;	/* RxRPC call handle */
99 	struct key		*key;		/* security for this call */
100 	struct afs_net		*net;		/* The network namespace */
101 	struct afs_server	*cm_server;	/* Server affected by incoming CM call */
102 	struct afs_cb_interest	*cbi;		/* Callback interest for server used */
103 	void			*request;	/* request data (first part) */
104 	struct address_space	*mapping;	/* Pages being written from */
105 	struct iov_iter		iter;		/* Buffer iterator */
106 	struct iov_iter		*_iter;		/* Iterator currently in use */
107 	union {	/* Convenience for ->iter */
108 		struct kvec	kvec[1];
109 		struct bio_vec	bvec[1];
110 	};
111 	void			*buffer;	/* reply receive buffer */
112 	void			*reply[4];	/* Where to put the reply */
113 	pgoff_t			first;		/* first page in mapping to deal with */
114 	pgoff_t			last;		/* last page in mapping to deal with */
115 	atomic_t		usage;
116 	enum afs_call_state	state;
117 	spinlock_t		state_lock;
118 	int			error;		/* error code */
119 	u32			abort_code;	/* Remote abort ID or 0 */
120 	u32			epoch;
121 	unsigned		request_size;	/* size of request data */
122 	unsigned		reply_max;	/* maximum size of reply */
123 	unsigned		first_offset;	/* offset into mapping[first] */
124 	unsigned int		cb_break;	/* cb_break + cb_s_break before the call */
125 	union {
126 		unsigned	last_to;	/* amount of mapping[last] */
127 		unsigned	count2;		/* count used in unmarshalling */
128 	};
129 	unsigned char		unmarshall;	/* unmarshalling phase */
130 	unsigned char		addr_ix;	/* Address in ->alist */
131 	bool			incoming;	/* T if incoming call */
132 	bool			send_pages;	/* T if data from mapping should be sent */
133 	bool			need_attention;	/* T if RxRPC poked us */
134 	bool			async;		/* T if asynchronous */
135 	bool			ret_reply0;	/* T if should return reply[0] on success */
136 	bool			upgrade;	/* T to request service upgrade */
137 	bool			want_reply_time; /* T if want reply_time */
138 	u16			service_id;	/* Actual service ID (after upgrade) */
139 	unsigned int		debug_id;	/* Trace ID */
140 	u32			operation_ID;	/* operation ID for an incoming call */
141 	u32			count;		/* count for use in unmarshalling */
142 	union {					/* place to extract temporary data */
143 		struct {
144 			__be32	tmp_u;
145 			__be32	tmp;
146 		} __attribute__((packed));
147 		__be64		tmp64;
148 	};
149 	afs_dataversion_t	expected_version; /* Updated version expected from store */
150 	afs_dataversion_t	expected_version_2; /* 2nd updated version expected from store */
151 	ktime_t			reply_time;	/* Time of first reply packet */
152 };
153 
154 struct afs_call_type {
155 	const char *name;
156 	unsigned int op; /* Really enum afs_fs_operation */
157 
158 	/* deliver request or reply data to an call
159 	 * - returning an error will cause the call to be aborted
160 	 */
161 	int (*deliver)(struct afs_call *call);
162 
163 	/* clean up a call */
164 	void (*destructor)(struct afs_call *call);
165 
166 	/* Work function */
167 	void (*work)(struct work_struct *work);
168 
169 	/* Call done function (gets called immediately on success or failure) */
170 	void (*done)(struct afs_call *call);
171 };
172 
173 /*
174  * Key available for writeback on a file.
175  */
176 struct afs_wb_key {
177 	refcount_t		usage;
178 	struct key		*key;
179 	struct list_head	vnode_link;	/* Link in vnode->wb_keys */
180 };
181 
182 /*
183  * AFS open file information record.  Pointed to by file->private_data.
184  */
185 struct afs_file {
186 	struct key		*key;		/* The key this file was opened with */
187 	struct afs_wb_key	*wb;		/* Writeback key record for this file */
188 };
189 
190 static inline struct key *afs_file_key(struct file *file)
191 {
192 	struct afs_file *af = file->private_data;
193 
194 	return af->key;
195 }
196 
197 /*
198  * Record of an outstanding read operation on a vnode.
199  */
200 struct afs_read {
201 	loff_t			pos;		/* Where to start reading */
202 	loff_t			len;		/* How much we're asking for */
203 	loff_t			actual_len;	/* How much we're actually getting */
204 	loff_t			remain;		/* Amount remaining */
205 	loff_t			file_size;	/* File size returned by server */
206 	afs_dataversion_t	data_version;	/* Version number returned by server */
207 	refcount_t		usage;
208 	unsigned int		index;		/* Which page we're reading into */
209 	unsigned int		nr_pages;
210 	unsigned int		offset;		/* offset into current page */
211 	void (*page_done)(struct afs_call *, struct afs_read *);
212 	struct page		**pages;
213 	struct page		*array[];
214 };
215 
216 /*
217  * AFS superblock private data
218  * - there's one superblock per volume
219  */
220 struct afs_super_info {
221 	struct net		*net_ns;	/* Network namespace */
222 	struct afs_cell		*cell;		/* The cell in which the volume resides */
223 	struct afs_volume	*volume;	/* volume record */
224 	bool			dyn_root;	/* True if dynamic root */
225 };
226 
227 static inline struct afs_super_info *AFS_FS_S(struct super_block *sb)
228 {
229 	return sb->s_fs_info;
230 }
231 
232 extern struct file_system_type afs_fs_type;
233 
234 /*
235  * Set of substitutes for @sys.
236  */
237 struct afs_sysnames {
238 #define AFS_NR_SYSNAME 16
239 	char			*subs[AFS_NR_SYSNAME];
240 	refcount_t		usage;
241 	unsigned short		nr;
242 	char			blank[1];
243 };
244 
245 /*
246  * AFS network namespace record.
247  */
248 struct afs_net {
249 	struct net		*net;		/* Backpointer to the owning net namespace */
250 	struct afs_uuid		uuid;
251 	bool			live;		/* F if this namespace is being removed */
252 
253 	/* AF_RXRPC I/O stuff */
254 	struct socket		*socket;
255 	struct afs_call		*spare_incoming_call;
256 	struct work_struct	charge_preallocation_work;
257 	struct mutex		socket_mutex;
258 	atomic_t		nr_outstanding_calls;
259 	atomic_t		nr_superblocks;
260 
261 	/* Cell database */
262 	struct rb_root		cells;
263 	struct afs_cell __rcu	*ws_cell;
264 	struct work_struct	cells_manager;
265 	struct timer_list	cells_timer;
266 	atomic_t		cells_outstanding;
267 	seqlock_t		cells_lock;
268 
269 	struct mutex		proc_cells_lock;
270 	struct hlist_head	proc_cells;
271 
272 	/* Known servers.  Theoretically each fileserver can only be in one
273 	 * cell, but in practice, people create aliases and subsets and there's
274 	 * no easy way to distinguish them.
275 	 */
276 	seqlock_t		fs_lock;	/* For fs_servers */
277 	struct rb_root		fs_servers;	/* afs_server (by server UUID or address) */
278 	struct list_head	fs_updates;	/* afs_server (by update_at) */
279 	struct hlist_head	fs_proc;	/* procfs servers list */
280 
281 	struct hlist_head	fs_addresses4;	/* afs_server (by lowest IPv4 addr) */
282 	struct hlist_head	fs_addresses6;	/* afs_server (by lowest IPv6 addr) */
283 	seqlock_t		fs_addr_lock;	/* For fs_addresses[46] */
284 
285 	struct work_struct	fs_manager;
286 	struct timer_list	fs_timer;
287 	atomic_t		servers_outstanding;
288 
289 	/* File locking renewal management */
290 	struct mutex		lock_manager_mutex;
291 
292 	/* Misc */
293 	struct super_block	*dynroot_sb;	/* Dynamic root mount superblock */
294 	struct proc_dir_entry	*proc_afs;	/* /proc/net/afs directory */
295 	struct afs_sysnames	*sysnames;
296 	rwlock_t		sysnames_lock;
297 
298 	/* Statistics counters */
299 	atomic_t		n_lookup;	/* Number of lookups done */
300 	atomic_t		n_reval;	/* Number of dentries needing revalidation */
301 	atomic_t		n_inval;	/* Number of invalidations by the server */
302 	atomic_t		n_relpg;	/* Number of invalidations by releasepage */
303 	atomic_t		n_read_dir;	/* Number of directory pages read */
304 	atomic_t		n_dir_cr;	/* Number of directory entry creation edits */
305 	atomic_t		n_dir_rm;	/* Number of directory entry removal edits */
306 	atomic_t		n_stores;	/* Number of store ops */
307 	atomic_long_t		n_store_bytes;	/* Number of bytes stored */
308 	atomic_long_t		n_fetch_bytes;	/* Number of bytes fetched */
309 	atomic_t		n_fetches;	/* Number of data fetch ops */
310 };
311 
312 extern const char afs_init_sysname[];
313 
314 enum afs_cell_state {
315 	AFS_CELL_UNSET,
316 	AFS_CELL_ACTIVATING,
317 	AFS_CELL_ACTIVE,
318 	AFS_CELL_DEACTIVATING,
319 	AFS_CELL_INACTIVE,
320 	AFS_CELL_FAILED,
321 };
322 
323 /*
324  * AFS cell record.
325  *
326  * This is a tricky concept to get right as it is possible to create aliases
327  * simply by pointing AFSDB/SRV records for two names at the same set of VL
328  * servers; it is also possible to do things like setting up two sets of VL
329  * servers, one of which provides a superset of the volumes provided by the
330  * other (for internal/external division, for example).
331  *
332  * Cells only exist in the sense that (a) a cell's name maps to a set of VL
333  * servers and (b) a cell's name is used by the client to select the key to use
334  * for authentication and encryption.  The cell name is not typically used in
335  * the protocol.
336  *
337  * There is no easy way to determine if two cells are aliases or one is a
338  * subset of another.
339  */
340 struct afs_cell {
341 	union {
342 		struct rcu_head	rcu;
343 		struct rb_node	net_node;	/* Node in net->cells */
344 	};
345 	struct afs_net		*net;
346 	struct key		*anonymous_key;	/* anonymous user key for this cell */
347 	struct work_struct	manager;	/* Manager for init/deinit/dns */
348 	struct hlist_node	proc_link;	/* /proc cell list link */
349 #ifdef CONFIG_AFS_FSCACHE
350 	struct fscache_cookie	*cache;		/* caching cookie */
351 #endif
352 	time64_t		dns_expiry;	/* Time AFSDB/SRV record expires */
353 	time64_t		last_inactive;	/* Time of last drop of usage count */
354 	atomic_t		usage;
355 	unsigned long		flags;
356 #define AFS_CELL_FL_NOT_READY	0		/* The cell record is not ready for use */
357 #define AFS_CELL_FL_NO_GC	1		/* The cell was added manually, don't auto-gc */
358 #define AFS_CELL_FL_NOT_FOUND	2		/* Permanent DNS error */
359 #define AFS_CELL_FL_DNS_FAIL	3		/* Failed to access DNS */
360 #define AFS_CELL_FL_NO_LOOKUP_YET 4		/* Not completed first DNS lookup yet */
361 	enum afs_cell_state	state;
362 	short			error;
363 
364 	/* Active fileserver interaction state. */
365 	struct list_head	proc_volumes;	/* procfs volume list */
366 	rwlock_t		proc_lock;
367 
368 	/* VL server list. */
369 	rwlock_t		vl_servers_lock; /* Lock on vl_servers */
370 	struct afs_vlserver_list __rcu *vl_servers;
371 
372 	u8			name_len;	/* Length of name */
373 	char			name[64 + 1];	/* Cell name, case-flattened and NUL-padded */
374 };
375 
376 /*
377  * Volume Location server record.
378  */
379 struct afs_vlserver {
380 	struct rcu_head		rcu;
381 	struct afs_addr_list	__rcu *addresses; /* List of addresses for this VL server */
382 	unsigned long		flags;
383 #define AFS_VLSERVER_FL_PROBED	0		/* The VL server has been probed */
384 #define AFS_VLSERVER_FL_PROBING	1		/* VL server is being probed */
385 #define AFS_VLSERVER_FL_IS_YFS	2		/* Server is YFS not AFS */
386 	rwlock_t		lock;		/* Lock on addresses */
387 	atomic_t		usage;
388 
389 	/* Probe state */
390 	wait_queue_head_t	probe_wq;
391 	atomic_t		probe_outstanding;
392 	spinlock_t		probe_lock;
393 	struct {
394 		unsigned int	rtt;		/* RTT as ktime/64 */
395 		u32		abort_code;
396 		short		error;
397 		bool		have_result;
398 		bool		responded:1;
399 		bool		is_yfs:1;
400 		bool		not_yfs:1;
401 		bool		local_failure:1;
402 	} probe;
403 
404 	u16			port;
405 	u16			name_len;	/* Length of name */
406 	char			name[];		/* Server name, case-flattened */
407 };
408 
409 /*
410  * Weighted list of Volume Location servers.
411  */
412 struct afs_vlserver_entry {
413 	u16			priority;	/* Preference (as SRV) */
414 	u16			weight;		/* Weight (as SRV) */
415 	enum dns_record_source	source:8;
416 	enum dns_lookup_status	status:8;
417 	struct afs_vlserver	*server;
418 };
419 
420 struct afs_vlserver_list {
421 	struct rcu_head		rcu;
422 	atomic_t		usage;
423 	u8			nr_servers;
424 	u8			index;		/* Server currently in use */
425 	u8			preferred;	/* Preferred server */
426 	enum dns_record_source	source:8;
427 	enum dns_lookup_status	status:8;
428 	rwlock_t		lock;
429 	struct afs_vlserver_entry servers[];
430 };
431 
432 /*
433  * Cached VLDB entry.
434  *
435  * This is pointed to by cell->vldb_entries, indexed by name.
436  */
437 struct afs_vldb_entry {
438 	afs_volid_t		vid[3];		/* Volume IDs for R/W, R/O and Bak volumes */
439 
440 	unsigned long		flags;
441 #define AFS_VLDB_HAS_RW		0		/* - R/W volume exists */
442 #define AFS_VLDB_HAS_RO		1		/* - R/O volume exists */
443 #define AFS_VLDB_HAS_BAK	2		/* - Backup volume exists */
444 #define AFS_VLDB_QUERY_VALID	3		/* - Record is valid */
445 #define AFS_VLDB_QUERY_ERROR	4		/* - VL server returned error */
446 
447 	uuid_t			fs_server[AFS_NMAXNSERVERS];
448 	u8			fs_mask[AFS_NMAXNSERVERS];
449 #define AFS_VOL_VTM_RW	0x01 /* R/W version of the volume is available (on this server) */
450 #define AFS_VOL_VTM_RO	0x02 /* R/O version of the volume is available (on this server) */
451 #define AFS_VOL_VTM_BAK	0x04 /* backup version of the volume is available (on this server) */
452 	short			error;
453 	u8			nr_servers;	/* Number of server records */
454 	u8			name_len;
455 	u8			name[AFS_MAXVOLNAME + 1]; /* NUL-padded volume name */
456 };
457 
458 /*
459  * Record of fileserver with which we're actively communicating.
460  */
461 struct afs_server {
462 	struct rcu_head		rcu;
463 	union {
464 		uuid_t		uuid;		/* Server ID */
465 		struct afs_uuid	_uuid;
466 	};
467 
468 	struct afs_addr_list	__rcu *addresses;
469 	struct rb_node		uuid_rb;	/* Link in net->servers */
470 	struct hlist_node	addr4_link;	/* Link in net->fs_addresses4 */
471 	struct hlist_node	addr6_link;	/* Link in net->fs_addresses6 */
472 	struct hlist_node	proc_link;	/* Link in net->fs_proc */
473 	struct afs_server	*gc_next;	/* Next server in manager's list */
474 	time64_t		put_time;	/* Time at which last put */
475 	time64_t		update_at;	/* Time at which to next update the record */
476 	unsigned long		flags;
477 #define AFS_SERVER_FL_NOT_READY	1		/* The record is not ready for use */
478 #define AFS_SERVER_FL_NOT_FOUND	2		/* VL server says no such server */
479 #define AFS_SERVER_FL_VL_FAIL	3		/* Failed to access VL server */
480 #define AFS_SERVER_FL_UPDATING	4
481 #define AFS_SERVER_FL_PROBED	5		/* The fileserver has been probed */
482 #define AFS_SERVER_FL_PROBING	6		/* Fileserver is being probed */
483 #define AFS_SERVER_FL_NO_IBULK	7		/* Fileserver doesn't support FS.InlineBulkStatus */
484 #define AFS_SERVER_FL_MAY_HAVE_CB 8		/* May have callbacks on this fileserver */
485 #define AFS_SERVER_FL_IS_YFS	9		/* Server is YFS not AFS */
486 #define AFS_SERVER_FL_NO_RM2	10		/* Fileserver doesn't support YFS.RemoveFile2 */
487 #define AFS_SERVER_FL_HAVE_EPOCH 11		/* ->epoch is valid */
488 	atomic_t		usage;
489 	u32			addr_version;	/* Address list version */
490 	u32			cm_epoch;	/* Server RxRPC epoch */
491 
492 	/* file service access */
493 	rwlock_t		fs_lock;	/* access lock */
494 
495 	/* callback promise management */
496 	struct hlist_head	cb_volumes;	/* List of volume interests on this server */
497 	unsigned		cb_s_break;	/* Break-everything counter. */
498 	rwlock_t		cb_break_lock;	/* Volume finding lock */
499 
500 	/* Probe state */
501 	wait_queue_head_t	probe_wq;
502 	atomic_t		probe_outstanding;
503 	spinlock_t		probe_lock;
504 	struct {
505 		unsigned int	rtt;		/* RTT as ktime/64 */
506 		u32		abort_code;
507 		u32		cm_epoch;
508 		short		error;
509 		bool		have_result;
510 		bool		responded:1;
511 		bool		is_yfs:1;
512 		bool		not_yfs:1;
513 		bool		local_failure:1;
514 		bool		no_epoch:1;
515 		bool		cm_probed:1;
516 		bool		said_rebooted:1;
517 		bool		said_inconsistent:1;
518 	} probe;
519 };
520 
521 /*
522  * Volume collation in the server's callback interest list.
523  */
524 struct afs_vol_interest {
525 	struct hlist_node	srv_link;	/* Link in server->cb_volumes */
526 	struct hlist_head	cb_interests;	/* List of callback interests on the server */
527 	afs_volid_t		vid;		/* Volume ID to match */
528 	unsigned int		usage;
529 };
530 
531 /*
532  * Interest by a superblock on a server.
533  */
534 struct afs_cb_interest {
535 	struct hlist_node	cb_vlink;	/* Link in vol_interest->cb_interests */
536 	struct afs_vol_interest	*vol_interest;
537 	struct afs_server	*server;	/* Server on which this interest resides */
538 	struct super_block	*sb;		/* Superblock on which inodes reside */
539 	afs_volid_t		vid;		/* Volume ID to match */
540 	refcount_t		usage;
541 };
542 
543 /*
544  * Replaceable server list.
545  */
546 struct afs_server_entry {
547 	struct afs_server	*server;
548 	struct afs_cb_interest	*cb_interest;
549 };
550 
551 struct afs_server_list {
552 	refcount_t		usage;
553 	unsigned char		nr_servers;
554 	unsigned char		preferred;	/* Preferred server */
555 	unsigned short		vnovol_mask;	/* Servers to be skipped due to VNOVOL */
556 	unsigned int		seq;		/* Set to ->servers_seq when installed */
557 	rwlock_t		lock;
558 	struct afs_server_entry	servers[];
559 };
560 
561 /*
562  * Live AFS volume management.
563  */
564 struct afs_volume {
565 	afs_volid_t		vid;		/* volume ID */
566 	atomic_t		usage;
567 	time64_t		update_at;	/* Time at which to next update */
568 	struct afs_cell		*cell;		/* Cell to which belongs (pins ref) */
569 	struct list_head	proc_link;	/* Link in cell->vl_proc */
570 	unsigned long		flags;
571 #define AFS_VOLUME_NEEDS_UPDATE	0	/* - T if an update needs performing */
572 #define AFS_VOLUME_UPDATING	1	/* - T if an update is in progress */
573 #define AFS_VOLUME_WAIT		2	/* - T if users must wait for update */
574 #define AFS_VOLUME_DELETED	3	/* - T if volume appears deleted */
575 #define AFS_VOLUME_OFFLINE	4	/* - T if volume offline notice given */
576 #define AFS_VOLUME_BUSY		5	/* - T if volume busy notice given */
577 #ifdef CONFIG_AFS_FSCACHE
578 	struct fscache_cookie	*cache;		/* caching cookie */
579 #endif
580 	struct afs_server_list	*servers;	/* List of servers on which volume resides */
581 	rwlock_t		servers_lock;	/* Lock for ->servers */
582 	unsigned int		servers_seq;	/* Incremented each time ->servers changes */
583 
584 	unsigned		cb_v_break;	/* Break-everything counter. */
585 	rwlock_t		cb_break_lock;
586 
587 	afs_voltype_t		type;		/* type of volume */
588 	short			error;
589 	char			type_force;	/* force volume type (suppress R/O -> R/W) */
590 	u8			name_len;
591 	u8			name[AFS_MAXVOLNAME + 1]; /* NUL-padded volume name */
592 };
593 
594 enum afs_lock_state {
595 	AFS_VNODE_LOCK_NONE,		/* The vnode has no lock on the server */
596 	AFS_VNODE_LOCK_WAITING_FOR_CB,	/* We're waiting for the server to break the callback */
597 	AFS_VNODE_LOCK_SETTING,		/* We're asking the server for a lock */
598 	AFS_VNODE_LOCK_GRANTED,		/* We have a lock on the server */
599 	AFS_VNODE_LOCK_EXTENDING,	/* We're extending a lock on the server */
600 	AFS_VNODE_LOCK_NEED_UNLOCK,	/* We need to unlock on the server */
601 	AFS_VNODE_LOCK_UNLOCKING,	/* We're telling the server to unlock */
602 };
603 
604 /*
605  * AFS inode private data.
606  *
607  * Note that afs_alloc_inode() *must* reset anything that could incorrectly
608  * leak from one inode to another.
609  */
610 struct afs_vnode {
611 	struct inode		vfs_inode;	/* the VFS's inode record */
612 
613 	struct afs_volume	*volume;	/* volume on which vnode resides */
614 	struct afs_fid		fid;		/* the file identifier for this inode */
615 	struct afs_file_status	status;		/* AFS status info for this file */
616 	afs_dataversion_t	invalid_before;	/* Child dentries are invalid before this */
617 #ifdef CONFIG_AFS_FSCACHE
618 	struct fscache_cookie	*cache;		/* caching cookie */
619 #endif
620 	struct afs_permits __rcu *permit_cache;	/* cache of permits so far obtained */
621 	struct mutex		io_lock;	/* Lock for serialising I/O on this mutex */
622 	struct rw_semaphore	validate_lock;	/* lock for validating this vnode */
623 	spinlock_t		wb_lock;	/* lock for wb_keys */
624 	spinlock_t		lock;		/* waitqueue/flags lock */
625 	unsigned long		flags;
626 #define AFS_VNODE_CB_PROMISED	0		/* Set if vnode has a callback promise */
627 #define AFS_VNODE_UNSET		1		/* set if vnode attributes not yet set */
628 #define AFS_VNODE_DIR_VALID	2		/* Set if dir contents are valid */
629 #define AFS_VNODE_ZAP_DATA	3		/* set if vnode's data should be invalidated */
630 #define AFS_VNODE_DELETED	4		/* set if vnode deleted on server */
631 #define AFS_VNODE_MOUNTPOINT	5		/* set if vnode is a mountpoint symlink */
632 #define AFS_VNODE_AUTOCELL	6		/* set if Vnode is an auto mount point */
633 #define AFS_VNODE_PSEUDODIR	7 		/* set if Vnode is a pseudo directory */
634 #define AFS_VNODE_NEW_CONTENT	8		/* Set if file has new content (create/trunc-0) */
635 
636 	struct list_head	wb_keys;	/* List of keys available for writeback */
637 	struct list_head	pending_locks;	/* locks waiting to be granted */
638 	struct list_head	granted_locks;	/* locks granted on this file */
639 	struct delayed_work	lock_work;	/* work to be done in locking */
640 	struct key		*lock_key;	/* Key to be used in lock ops */
641 	enum afs_lock_state	lock_state : 8;
642 	afs_lock_type_t		lock_type : 8;
643 
644 	/* outstanding callback notification on this file */
645 	struct afs_cb_interest	*cb_interest;	/* Server on which this resides */
646 	unsigned int		cb_s_break;	/* Mass break counter on ->server */
647 	unsigned int		cb_v_break;	/* Mass break counter on ->volume */
648 	unsigned int		cb_break;	/* Break counter on vnode */
649 	seqlock_t		cb_lock;	/* Lock for ->cb_interest, ->status, ->cb_*break */
650 
651 	time64_t		cb_expires_at;	/* time at which callback expires */
652 	unsigned		cb_version;	/* callback version */
653 	afs_callback_type_t	cb_type;	/* type of callback */
654 };
655 
656 static inline struct fscache_cookie *afs_vnode_cache(struct afs_vnode *vnode)
657 {
658 #ifdef CONFIG_AFS_FSCACHE
659 	return vnode->cache;
660 #else
661 	return NULL;
662 #endif
663 }
664 
665 /*
666  * cached security record for one user's attempt to access a vnode
667  */
668 struct afs_permit {
669 	struct key		*key;		/* RxRPC ticket holding a security context */
670 	afs_access_t		access;		/* CallerAccess value for this key */
671 };
672 
673 /*
674  * Immutable cache of CallerAccess records from attempts to access vnodes.
675  * These may be shared between multiple vnodes.
676  */
677 struct afs_permits {
678 	struct rcu_head		rcu;
679 	struct hlist_node	hash_node;	/* Link in hash */
680 	unsigned long		h;		/* Hash value for this permit list */
681 	refcount_t		usage;
682 	unsigned short		nr_permits;	/* Number of records */
683 	bool			invalidated;	/* Invalidated due to key change */
684 	struct afs_permit	permits[];	/* List of permits sorted by key pointer */
685 };
686 
687 /*
688  * record of one of a system's set of network interfaces
689  */
690 struct afs_interface {
691 	struct in_addr	address;	/* IPv4 address bound to interface */
692 	struct in_addr	netmask;	/* netmask applied to address */
693 	unsigned	mtu;		/* MTU of interface */
694 };
695 
696 /*
697  * Error prioritisation and accumulation.
698  */
699 struct afs_error {
700 	short	error;			/* Accumulated error */
701 	bool	responded;		/* T if server responded */
702 };
703 
704 /*
705  * Cursor for iterating over a server's address list.
706  */
707 struct afs_addr_cursor {
708 	struct afs_addr_list	*alist;		/* Current address list (pins ref) */
709 	unsigned long		tried;		/* Tried addresses */
710 	signed char		index;		/* Current address */
711 	bool			responded;	/* T if the current address responded */
712 	unsigned short		nr_iterations;	/* Number of address iterations */
713 	short			error;
714 	u32			abort_code;
715 };
716 
717 /*
718  * Cursor for iterating over a set of volume location servers.
719  */
720 struct afs_vl_cursor {
721 	struct afs_addr_cursor	ac;
722 	struct afs_cell		*cell;		/* The cell we're querying */
723 	struct afs_vlserver_list *server_list;	/* Current server list (pins ref) */
724 	struct afs_vlserver	*server;	/* Server on which this resides */
725 	struct key		*key;		/* Key for the server */
726 	unsigned long		untried;	/* Bitmask of untried servers */
727 	short			index;		/* Current server */
728 	short			error;
729 	unsigned short		flags;
730 #define AFS_VL_CURSOR_STOP	0x0001		/* Set to cease iteration */
731 #define AFS_VL_CURSOR_RETRY	0x0002		/* Set to do a retry */
732 #define AFS_VL_CURSOR_RETRIED	0x0004		/* Set if started a retry */
733 	unsigned short		nr_iterations;	/* Number of server iterations */
734 };
735 
736 /*
737  * Cursor for iterating over a set of fileservers.
738  */
739 struct afs_fs_cursor {
740 	struct afs_addr_cursor	ac;
741 	struct afs_vnode	*vnode;
742 	struct afs_server_list	*server_list;	/* Current server list (pins ref) */
743 	struct afs_cb_interest	*cbi;		/* Server on which this resides (pins ref) */
744 	struct key		*key;		/* Key for the server */
745 	unsigned long		untried;	/* Bitmask of untried servers */
746 	unsigned int		cb_break;	/* cb_break + cb_s_break before the call */
747 	unsigned int		cb_break_2;	/* cb_break + cb_s_break (2nd vnode) */
748 	short			index;		/* Current server */
749 	short			error;
750 	unsigned short		flags;
751 #define AFS_FS_CURSOR_STOP	0x0001		/* Set to cease iteration */
752 #define AFS_FS_CURSOR_VBUSY	0x0002		/* Set if seen VBUSY */
753 #define AFS_FS_CURSOR_VMOVED	0x0004		/* Set if seen VMOVED */
754 #define AFS_FS_CURSOR_VNOVOL	0x0008		/* Set if seen VNOVOL */
755 #define AFS_FS_CURSOR_CUR_ONLY	0x0010		/* Set if current server only (file lock held) */
756 #define AFS_FS_CURSOR_NO_VSLEEP	0x0020		/* Set to prevent sleep on VBUSY, VOFFLINE, ... */
757 	unsigned short		nr_iterations;	/* Number of server iterations */
758 };
759 
760 /*
761  * Cache auxiliary data.
762  */
763 struct afs_vnode_cache_aux {
764 	u64			data_version;
765 } __packed;
766 
767 #include <trace/events/afs.h>
768 
769 /*****************************************************************************/
770 /*
771  * addr_list.c
772  */
773 static inline struct afs_addr_list *afs_get_addrlist(struct afs_addr_list *alist)
774 {
775 	if (alist)
776 		refcount_inc(&alist->usage);
777 	return alist;
778 }
779 extern struct afs_addr_list *afs_alloc_addrlist(unsigned int,
780 						unsigned short,
781 						unsigned short);
782 extern void afs_put_addrlist(struct afs_addr_list *);
783 extern struct afs_vlserver_list *afs_parse_text_addrs(struct afs_net *,
784 						      const char *, size_t, char,
785 						      unsigned short, unsigned short);
786 extern struct afs_vlserver_list *afs_dns_query(struct afs_cell *, time64_t *);
787 extern bool afs_iterate_addresses(struct afs_addr_cursor *);
788 extern int afs_end_cursor(struct afs_addr_cursor *);
789 
790 extern void afs_merge_fs_addr4(struct afs_addr_list *, __be32, u16);
791 extern void afs_merge_fs_addr6(struct afs_addr_list *, __be32 *, u16);
792 
793 /*
794  * cache.c
795  */
796 #ifdef CONFIG_AFS_FSCACHE
797 extern struct fscache_netfs afs_cache_netfs;
798 extern struct fscache_cookie_def afs_cell_cache_index_def;
799 extern struct fscache_cookie_def afs_volume_cache_index_def;
800 extern struct fscache_cookie_def afs_vnode_cache_index_def;
801 #else
802 #define afs_cell_cache_index_def	(*(struct fscache_cookie_def *) NULL)
803 #define afs_volume_cache_index_def	(*(struct fscache_cookie_def *) NULL)
804 #define afs_vnode_cache_index_def	(*(struct fscache_cookie_def *) NULL)
805 #endif
806 
807 /*
808  * callback.c
809  */
810 extern void afs_init_callback_state(struct afs_server *);
811 extern void __afs_break_callback(struct afs_vnode *);
812 extern void afs_break_callback(struct afs_vnode *);
813 extern void afs_break_callbacks(struct afs_server *, size_t, struct afs_callback_break*);
814 
815 extern int afs_register_server_cb_interest(struct afs_vnode *,
816 					   struct afs_server_list *, unsigned int);
817 extern void afs_put_cb_interest(struct afs_net *, struct afs_cb_interest *);
818 extern void afs_clear_callback_interests(struct afs_net *, struct afs_server_list *);
819 
820 static inline struct afs_cb_interest *afs_get_cb_interest(struct afs_cb_interest *cbi)
821 {
822 	if (cbi)
823 		refcount_inc(&cbi->usage);
824 	return cbi;
825 }
826 
827 static inline unsigned int afs_calc_vnode_cb_break(struct afs_vnode *vnode)
828 {
829 	return vnode->cb_break + vnode->cb_v_break;
830 }
831 
832 static inline bool afs_cb_is_broken(unsigned int cb_break,
833 				    const struct afs_vnode *vnode,
834 				    const struct afs_cb_interest *cbi)
835 {
836 	return !cbi || cb_break != (vnode->cb_break +
837 				    vnode->volume->cb_v_break);
838 }
839 
840 /*
841  * cell.c
842  */
843 extern int afs_cell_init(struct afs_net *, const char *);
844 extern struct afs_cell *afs_lookup_cell_rcu(struct afs_net *, const char *, unsigned);
845 extern struct afs_cell *afs_lookup_cell(struct afs_net *, const char *, unsigned,
846 					const char *, bool);
847 extern struct afs_cell *afs_get_cell(struct afs_cell *);
848 extern void afs_put_cell(struct afs_net *, struct afs_cell *);
849 extern void afs_manage_cells(struct work_struct *);
850 extern void afs_cells_timer(struct timer_list *);
851 extern void __net_exit afs_cell_purge(struct afs_net *);
852 
853 /*
854  * cmservice.c
855  */
856 extern bool afs_cm_incoming_call(struct afs_call *);
857 
858 /*
859  * dir.c
860  */
861 extern const struct file_operations afs_dir_file_operations;
862 extern const struct inode_operations afs_dir_inode_operations;
863 extern const struct address_space_operations afs_dir_aops;
864 extern const struct dentry_operations afs_fs_dentry_operations;
865 
866 extern void afs_d_release(struct dentry *);
867 
868 /*
869  * dir_edit.c
870  */
871 extern void afs_edit_dir_add(struct afs_vnode *, struct qstr *, struct afs_fid *,
872 			     enum afs_edit_dir_reason);
873 extern void afs_edit_dir_remove(struct afs_vnode *, struct qstr *, enum afs_edit_dir_reason);
874 
875 /*
876  * dynroot.c
877  */
878 extern const struct file_operations afs_dynroot_file_operations;
879 extern const struct inode_operations afs_dynroot_inode_operations;
880 extern const struct dentry_operations afs_dynroot_dentry_operations;
881 
882 extern struct inode *afs_try_auto_mntpt(struct dentry *, struct inode *);
883 extern int afs_dynroot_mkdir(struct afs_net *, struct afs_cell *);
884 extern void afs_dynroot_rmdir(struct afs_net *, struct afs_cell *);
885 extern int afs_dynroot_populate(struct super_block *);
886 extern void afs_dynroot_depopulate(struct super_block *);
887 
888 /*
889  * file.c
890  */
891 extern const struct address_space_operations afs_fs_aops;
892 extern const struct inode_operations afs_file_inode_operations;
893 extern const struct file_operations afs_file_operations;
894 
895 extern int afs_cache_wb_key(struct afs_vnode *, struct afs_file *);
896 extern void afs_put_wb_key(struct afs_wb_key *);
897 extern int afs_open(struct inode *, struct file *);
898 extern int afs_release(struct inode *, struct file *);
899 extern int afs_fetch_data(struct afs_vnode *, struct key *, struct afs_read *);
900 extern int afs_page_filler(void *, struct page *);
901 extern void afs_put_read(struct afs_read *);
902 
903 /*
904  * flock.c
905  */
906 extern struct workqueue_struct *afs_lock_manager;
907 
908 extern void afs_lock_work(struct work_struct *);
909 extern void afs_lock_may_be_available(struct afs_vnode *);
910 extern int afs_lock(struct file *, int, struct file_lock *);
911 extern int afs_flock(struct file *, int, struct file_lock *);
912 
913 /*
914  * fsclient.c
915  */
916 #define AFS_VNODE_NOT_YET_SET	0x01
917 #define AFS_VNODE_META_CHANGED	0x02
918 #define AFS_VNODE_DATA_CHANGED	0x04
919 extern void afs_update_inode_from_status(struct afs_vnode *, struct afs_file_status *,
920 					 const afs_dataversion_t *, u8);
921 
922 extern int afs_fs_fetch_file_status(struct afs_fs_cursor *, struct afs_volsync *, bool);
923 extern int afs_fs_give_up_callbacks(struct afs_net *, struct afs_server *);
924 extern int afs_fs_fetch_data(struct afs_fs_cursor *, struct afs_read *);
925 extern int afs_fs_create(struct afs_fs_cursor *, const char *, umode_t, u64,
926 			 struct afs_fid *, struct afs_file_status *, struct afs_callback *);
927 extern int afs_fs_remove(struct afs_fs_cursor *, struct afs_vnode *, const char *, bool, u64);
928 extern int afs_fs_link(struct afs_fs_cursor *, struct afs_vnode *, const char *, u64);
929 extern int afs_fs_symlink(struct afs_fs_cursor *, const char *, const char *, u64,
930 			  struct afs_fid *, struct afs_file_status *);
931 extern int afs_fs_rename(struct afs_fs_cursor *, const char *,
932 			 struct afs_vnode *, const char *, u64, u64);
933 extern int afs_fs_store_data(struct afs_fs_cursor *, struct address_space *,
934 			     pgoff_t, pgoff_t, unsigned, unsigned);
935 extern int afs_fs_setattr(struct afs_fs_cursor *, struct iattr *);
936 extern int afs_fs_get_volume_status(struct afs_fs_cursor *, struct afs_volume_status *);
937 extern int afs_fs_set_lock(struct afs_fs_cursor *, afs_lock_type_t);
938 extern int afs_fs_extend_lock(struct afs_fs_cursor *);
939 extern int afs_fs_release_lock(struct afs_fs_cursor *);
940 extern int afs_fs_give_up_all_callbacks(struct afs_net *, struct afs_server *,
941 					struct afs_addr_cursor *, struct key *);
942 extern int afs_fs_get_capabilities(struct afs_net *, struct afs_server *,
943 				   struct afs_addr_cursor *, struct key *, unsigned int, bool);
944 extern int afs_fs_inline_bulk_status(struct afs_fs_cursor *, struct afs_net *,
945 				     struct afs_fid *, struct afs_file_status *,
946 				     struct afs_callback *, unsigned int,
947 				     struct afs_volsync *);
948 extern int afs_fs_fetch_status(struct afs_fs_cursor *, struct afs_net *,
949 			       struct afs_fid *, struct afs_file_status *,
950 			       struct afs_callback *, struct afs_volsync *);
951 
952 /*
953  * fs_probe.c
954  */
955 extern void afs_fileserver_probe_result(struct afs_call *);
956 extern int afs_probe_fileservers(struct afs_net *, struct key *, struct afs_server_list *);
957 extern int afs_wait_for_fs_probes(struct afs_server_list *, unsigned long);
958 
959 /*
960  * inode.c
961  */
962 extern int afs_fetch_status(struct afs_vnode *, struct key *, bool);
963 extern int afs_iget5_test(struct inode *, void *);
964 extern struct inode *afs_iget_pseudo_dir(struct super_block *, bool);
965 extern struct inode *afs_iget(struct super_block *, struct key *,
966 			      struct afs_fid *, struct afs_file_status *,
967 			      struct afs_callback *,
968 			      struct afs_cb_interest *);
969 extern void afs_zap_data(struct afs_vnode *);
970 extern int afs_validate(struct afs_vnode *, struct key *);
971 extern int afs_getattr(const struct path *, struct kstat *, u32, unsigned int);
972 extern int afs_setattr(struct dentry *, struct iattr *);
973 extern void afs_evict_inode(struct inode *);
974 extern int afs_drop_inode(struct inode *);
975 
976 /*
977  * main.c
978  */
979 extern struct workqueue_struct *afs_wq;
980 extern int afs_net_id;
981 
982 static inline struct afs_net *afs_net(struct net *net)
983 {
984 	return net_generic(net, afs_net_id);
985 }
986 
987 static inline struct afs_net *afs_sb2net(struct super_block *sb)
988 {
989 	return afs_net(AFS_FS_S(sb)->net_ns);
990 }
991 
992 static inline struct afs_net *afs_d2net(struct dentry *dentry)
993 {
994 	return afs_sb2net(dentry->d_sb);
995 }
996 
997 static inline struct afs_net *afs_i2net(struct inode *inode)
998 {
999 	return afs_sb2net(inode->i_sb);
1000 }
1001 
1002 static inline struct afs_net *afs_v2net(struct afs_vnode *vnode)
1003 {
1004 	return afs_i2net(&vnode->vfs_inode);
1005 }
1006 
1007 static inline struct afs_net *afs_sock2net(struct sock *sk)
1008 {
1009 	return net_generic(sock_net(sk), afs_net_id);
1010 }
1011 
1012 static inline void __afs_stat(atomic_t *s)
1013 {
1014 	atomic_inc(s);
1015 }
1016 
1017 #define afs_stat_v(vnode, n) __afs_stat(&afs_v2net(vnode)->n)
1018 
1019 /*
1020  * misc.c
1021  */
1022 extern int afs_abort_to_error(u32);
1023 extern void afs_prioritise_error(struct afs_error *, int, u32);
1024 
1025 /*
1026  * mntpt.c
1027  */
1028 extern const struct inode_operations afs_mntpt_inode_operations;
1029 extern const struct inode_operations afs_autocell_inode_operations;
1030 extern const struct file_operations afs_mntpt_file_operations;
1031 
1032 extern struct vfsmount *afs_d_automount(struct path *);
1033 extern void afs_mntpt_kill_timer(void);
1034 
1035 /*
1036  * netdevices.c
1037  */
1038 extern int afs_get_ipv4_interfaces(struct afs_net *, struct afs_interface *,
1039 				   size_t, bool);
1040 
1041 /*
1042  * proc.c
1043  */
1044 #ifdef CONFIG_PROC_FS
1045 extern int __net_init afs_proc_init(struct afs_net *);
1046 extern void __net_exit afs_proc_cleanup(struct afs_net *);
1047 extern int afs_proc_cell_setup(struct afs_cell *);
1048 extern void afs_proc_cell_remove(struct afs_cell *);
1049 extern void afs_put_sysnames(struct afs_sysnames *);
1050 #else
1051 static inline int afs_proc_init(struct afs_net *net) { return 0; }
1052 static inline void afs_proc_cleanup(struct afs_net *net) {}
1053 static inline int afs_proc_cell_setup(struct afs_cell *cell) { return 0; }
1054 static inline void afs_proc_cell_remove(struct afs_cell *cell) {}
1055 static inline void afs_put_sysnames(struct afs_sysnames *sysnames) {}
1056 #endif
1057 
1058 /*
1059  * rotate.c
1060  */
1061 extern bool afs_begin_vnode_operation(struct afs_fs_cursor *, struct afs_vnode *,
1062 				      struct key *);
1063 extern bool afs_select_fileserver(struct afs_fs_cursor *);
1064 extern bool afs_select_current_fileserver(struct afs_fs_cursor *);
1065 extern int afs_end_vnode_operation(struct afs_fs_cursor *);
1066 
1067 /*
1068  * rxrpc.c
1069  */
1070 extern struct workqueue_struct *afs_async_calls;
1071 
1072 extern int __net_init afs_open_socket(struct afs_net *);
1073 extern void __net_exit afs_close_socket(struct afs_net *);
1074 extern void afs_charge_preallocation(struct work_struct *);
1075 extern void afs_put_call(struct afs_call *);
1076 extern long afs_make_call(struct afs_addr_cursor *, struct afs_call *, gfp_t, bool);
1077 extern struct afs_call *afs_alloc_flat_call(struct afs_net *,
1078 					    const struct afs_call_type *,
1079 					    size_t, size_t);
1080 extern void afs_flat_call_destructor(struct afs_call *);
1081 extern void afs_send_empty_reply(struct afs_call *);
1082 extern void afs_send_simple_reply(struct afs_call *, const void *, size_t);
1083 extern int afs_extract_data(struct afs_call *, bool);
1084 extern int afs_protocol_error(struct afs_call *, int, enum afs_eproto_cause);
1085 
1086 static inline void afs_extract_begin(struct afs_call *call, void *buf, size_t size)
1087 {
1088 	call->kvec[0].iov_base = buf;
1089 	call->kvec[0].iov_len = size;
1090 	iov_iter_kvec(&call->iter, READ, call->kvec, 1, size);
1091 }
1092 
1093 static inline void afs_extract_to_tmp(struct afs_call *call)
1094 {
1095 	afs_extract_begin(call, &call->tmp, sizeof(call->tmp));
1096 }
1097 
1098 static inline void afs_extract_to_tmp64(struct afs_call *call)
1099 {
1100 	afs_extract_begin(call, &call->tmp64, sizeof(call->tmp64));
1101 }
1102 
1103 static inline void afs_extract_discard(struct afs_call *call, size_t size)
1104 {
1105 	iov_iter_discard(&call->iter, READ, size);
1106 }
1107 
1108 static inline void afs_extract_to_buf(struct afs_call *call, size_t size)
1109 {
1110 	afs_extract_begin(call, call->buffer, size);
1111 }
1112 
1113 static inline int afs_transfer_reply(struct afs_call *call)
1114 {
1115 	return afs_extract_data(call, false);
1116 }
1117 
1118 static inline bool afs_check_call_state(struct afs_call *call,
1119 					enum afs_call_state state)
1120 {
1121 	return READ_ONCE(call->state) == state;
1122 }
1123 
1124 static inline bool afs_set_call_state(struct afs_call *call,
1125 				      enum afs_call_state from,
1126 				      enum afs_call_state to)
1127 {
1128 	bool ok = false;
1129 
1130 	spin_lock_bh(&call->state_lock);
1131 	if (call->state == from) {
1132 		call->state = to;
1133 		trace_afs_call_state(call, from, to, 0, 0);
1134 		ok = true;
1135 	}
1136 	spin_unlock_bh(&call->state_lock);
1137 	return ok;
1138 }
1139 
1140 static inline void afs_set_call_complete(struct afs_call *call,
1141 					 int error, u32 remote_abort)
1142 {
1143 	enum afs_call_state state;
1144 	bool ok = false;
1145 
1146 	spin_lock_bh(&call->state_lock);
1147 	state = call->state;
1148 	if (state != AFS_CALL_COMPLETE) {
1149 		call->abort_code = remote_abort;
1150 		call->error = error;
1151 		call->state = AFS_CALL_COMPLETE;
1152 		trace_afs_call_state(call, state, AFS_CALL_COMPLETE,
1153 				     error, remote_abort);
1154 		ok = true;
1155 	}
1156 	spin_unlock_bh(&call->state_lock);
1157 	if (ok)
1158 		trace_afs_call_done(call);
1159 }
1160 
1161 /*
1162  * security.c
1163  */
1164 extern void afs_put_permits(struct afs_permits *);
1165 extern void afs_clear_permits(struct afs_vnode *);
1166 extern void afs_cache_permit(struct afs_vnode *, struct key *, unsigned int);
1167 extern void afs_zap_permits(struct rcu_head *);
1168 extern struct key *afs_request_key(struct afs_cell *);
1169 extern int afs_check_permit(struct afs_vnode *, struct key *, afs_access_t *);
1170 extern int afs_permission(struct inode *, int);
1171 extern void __exit afs_clean_up_permit_cache(void);
1172 
1173 /*
1174  * server.c
1175  */
1176 extern spinlock_t afs_server_peer_lock;
1177 
1178 static inline struct afs_server *afs_get_server(struct afs_server *server)
1179 {
1180 	atomic_inc(&server->usage);
1181 	return server;
1182 }
1183 
1184 extern struct afs_server *afs_find_server(struct afs_net *,
1185 					  const struct sockaddr_rxrpc *);
1186 extern struct afs_server *afs_find_server_by_uuid(struct afs_net *, const uuid_t *);
1187 extern struct afs_server *afs_lookup_server(struct afs_cell *, struct key *, const uuid_t *);
1188 extern void afs_put_server(struct afs_net *, struct afs_server *);
1189 extern void afs_manage_servers(struct work_struct *);
1190 extern void afs_servers_timer(struct timer_list *);
1191 extern void __net_exit afs_purge_servers(struct afs_net *);
1192 extern bool afs_check_server_record(struct afs_fs_cursor *, struct afs_server *);
1193 
1194 /*
1195  * server_list.c
1196  */
1197 static inline struct afs_server_list *afs_get_serverlist(struct afs_server_list *slist)
1198 {
1199 	refcount_inc(&slist->usage);
1200 	return slist;
1201 }
1202 
1203 extern void afs_put_serverlist(struct afs_net *, struct afs_server_list *);
1204 extern struct afs_server_list *afs_alloc_server_list(struct afs_cell *, struct key *,
1205 						     struct afs_vldb_entry *,
1206 						     u8);
1207 extern bool afs_annotate_server_list(struct afs_server_list *, struct afs_server_list *);
1208 
1209 /*
1210  * super.c
1211  */
1212 extern int __init afs_fs_init(void);
1213 extern void afs_fs_exit(void);
1214 
1215 /*
1216  * vlclient.c
1217  */
1218 extern struct afs_vldb_entry *afs_vl_get_entry_by_name_u(struct afs_vl_cursor *,
1219 							 const char *, int);
1220 extern struct afs_addr_list *afs_vl_get_addrs_u(struct afs_vl_cursor *, const uuid_t *);
1221 extern int afs_vl_get_capabilities(struct afs_net *, struct afs_addr_cursor *, struct key *,
1222 				   struct afs_vlserver *, unsigned int, bool);
1223 extern struct afs_addr_list *afs_yfsvl_get_endpoints(struct afs_vl_cursor *, const uuid_t *);
1224 
1225 /*
1226  * vl_probe.c
1227  */
1228 extern void afs_vlserver_probe_result(struct afs_call *);
1229 extern int afs_send_vl_probes(struct afs_net *, struct key *, struct afs_vlserver_list *);
1230 extern int afs_wait_for_vl_probes(struct afs_vlserver_list *, unsigned long);
1231 
1232 /*
1233  * vl_rotate.c
1234  */
1235 extern bool afs_begin_vlserver_operation(struct afs_vl_cursor *,
1236 					 struct afs_cell *, struct key *);
1237 extern bool afs_select_vlserver(struct afs_vl_cursor *);
1238 extern bool afs_select_current_vlserver(struct afs_vl_cursor *);
1239 extern int afs_end_vlserver_operation(struct afs_vl_cursor *);
1240 
1241 /*
1242  * vlserver_list.c
1243  */
1244 static inline struct afs_vlserver *afs_get_vlserver(struct afs_vlserver *vlserver)
1245 {
1246 	atomic_inc(&vlserver->usage);
1247 	return vlserver;
1248 }
1249 
1250 static inline struct afs_vlserver_list *afs_get_vlserverlist(struct afs_vlserver_list *vllist)
1251 {
1252 	if (vllist)
1253 		atomic_inc(&vllist->usage);
1254 	return vllist;
1255 }
1256 
1257 extern struct afs_vlserver *afs_alloc_vlserver(const char *, size_t, unsigned short);
1258 extern void afs_put_vlserver(struct afs_net *, struct afs_vlserver *);
1259 extern struct afs_vlserver_list *afs_alloc_vlserver_list(unsigned int);
1260 extern void afs_put_vlserverlist(struct afs_net *, struct afs_vlserver_list *);
1261 extern struct afs_vlserver_list *afs_extract_vlserver_list(struct afs_cell *,
1262 							   const void *, size_t);
1263 
1264 /*
1265  * volume.c
1266  */
1267 static inline struct afs_volume *__afs_get_volume(struct afs_volume *volume)
1268 {
1269 	if (volume)
1270 		atomic_inc(&volume->usage);
1271 	return volume;
1272 }
1273 
1274 extern struct afs_volume *afs_create_volume(struct afs_fs_context *);
1275 extern void afs_activate_volume(struct afs_volume *);
1276 extern void afs_deactivate_volume(struct afs_volume *);
1277 extern void afs_put_volume(struct afs_cell *, struct afs_volume *);
1278 extern int afs_check_volume_status(struct afs_volume *, struct key *);
1279 
1280 /*
1281  * write.c
1282  */
1283 extern int afs_set_page_dirty(struct page *);
1284 extern int afs_write_begin(struct file *file, struct address_space *mapping,
1285 			loff_t pos, unsigned len, unsigned flags,
1286 			struct page **pagep, void **fsdata);
1287 extern int afs_write_end(struct file *file, struct address_space *mapping,
1288 			loff_t pos, unsigned len, unsigned copied,
1289 			struct page *page, void *fsdata);
1290 extern int afs_writepage(struct page *, struct writeback_control *);
1291 extern int afs_writepages(struct address_space *, struct writeback_control *);
1292 extern void afs_pages_written_back(struct afs_vnode *, struct afs_call *);
1293 extern ssize_t afs_file_write(struct kiocb *, struct iov_iter *);
1294 extern int afs_fsync(struct file *, loff_t, loff_t, int);
1295 extern vm_fault_t afs_page_mkwrite(struct vm_fault *vmf);
1296 extern void afs_prune_wb_keys(struct afs_vnode *);
1297 extern int afs_launder_page(struct page *);
1298 
1299 /*
1300  * xattr.c
1301  */
1302 extern const struct xattr_handler *afs_xattr_handlers[];
1303 extern ssize_t afs_listxattr(struct dentry *, char *, size_t);
1304 
1305 /*
1306  * yfsclient.c
1307  */
1308 extern int yfs_fs_fetch_file_status(struct afs_fs_cursor *, struct afs_volsync *, bool);
1309 extern int yfs_fs_fetch_data(struct afs_fs_cursor *, struct afs_read *);
1310 extern int yfs_fs_create_file(struct afs_fs_cursor *, const char *, umode_t, u64,
1311 			      struct afs_fid *, struct afs_file_status *, struct afs_callback *);
1312 extern int yfs_fs_make_dir(struct afs_fs_cursor *, const char *, umode_t, u64,
1313 			 struct afs_fid *, struct afs_file_status *, struct afs_callback *);
1314 extern int yfs_fs_remove_file2(struct afs_fs_cursor *, struct afs_vnode *, const char *, u64);
1315 extern int yfs_fs_remove(struct afs_fs_cursor *, struct afs_vnode *, const char *, bool, u64);
1316 extern int yfs_fs_link(struct afs_fs_cursor *, struct afs_vnode *, const char *, u64);
1317 extern int yfs_fs_symlink(struct afs_fs_cursor *, const char *, const char *, u64,
1318 			  struct afs_fid *, struct afs_file_status *);
1319 extern int yfs_fs_rename(struct afs_fs_cursor *, const char *,
1320 			 struct afs_vnode *, const char *, u64, u64);
1321 extern int yfs_fs_store_data(struct afs_fs_cursor *, struct address_space *,
1322 			     pgoff_t, pgoff_t, unsigned, unsigned);
1323 extern int yfs_fs_setattr(struct afs_fs_cursor *, struct iattr *);
1324 extern int yfs_fs_get_volume_status(struct afs_fs_cursor *, struct afs_volume_status *);
1325 extern int yfs_fs_set_lock(struct afs_fs_cursor *, afs_lock_type_t);
1326 extern int yfs_fs_extend_lock(struct afs_fs_cursor *);
1327 extern int yfs_fs_release_lock(struct afs_fs_cursor *);
1328 extern int yfs_fs_fetch_status(struct afs_fs_cursor *, struct afs_net *,
1329 			       struct afs_fid *, struct afs_file_status *,
1330 			       struct afs_callback *, struct afs_volsync *);
1331 extern int yfs_fs_inline_bulk_status(struct afs_fs_cursor *, struct afs_net *,
1332 				     struct afs_fid *, struct afs_file_status *,
1333 				     struct afs_callback *, unsigned int,
1334 				     struct afs_volsync *);
1335 
1336 /*
1337  * Miscellaneous inline functions.
1338  */
1339 static inline struct afs_vnode *AFS_FS_I(struct inode *inode)
1340 {
1341 	return container_of(inode, struct afs_vnode, vfs_inode);
1342 }
1343 
1344 static inline struct inode *AFS_VNODE_TO_I(struct afs_vnode *vnode)
1345 {
1346 	return &vnode->vfs_inode;
1347 }
1348 
1349 static inline void afs_vnode_commit_status(struct afs_fs_cursor *fc,
1350 					   struct afs_vnode *vnode,
1351 					   unsigned int cb_break)
1352 {
1353 	if (fc->ac.error == 0)
1354 		afs_cache_permit(vnode, fc->key, cb_break);
1355 }
1356 
1357 static inline void afs_check_for_remote_deletion(struct afs_fs_cursor *fc,
1358 						 struct afs_vnode *vnode)
1359 {
1360 	if (fc->ac.error == -ENOENT) {
1361 		set_bit(AFS_VNODE_DELETED, &vnode->flags);
1362 		afs_break_callback(vnode);
1363 	}
1364 }
1365 
1366 static inline int afs_io_error(struct afs_call *call, enum afs_io_error where)
1367 {
1368 	trace_afs_io_error(call->debug_id, -EIO, where);
1369 	return -EIO;
1370 }
1371 
1372 static inline int afs_bad(struct afs_vnode *vnode, enum afs_file_error where)
1373 {
1374 	trace_afs_file_error(vnode, -EIO, where);
1375 	return -EIO;
1376 }
1377 
1378 /*****************************************************************************/
1379 /*
1380  * debug tracing
1381  */
1382 extern unsigned afs_debug;
1383 
1384 #define dbgprintk(FMT,...) \
1385 	printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
1386 
1387 #define kenter(FMT,...)	dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
1388 #define kleave(FMT,...)	dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
1389 #define kdebug(FMT,...)	dbgprintk("    "FMT ,##__VA_ARGS__)
1390 
1391 
1392 #if defined(__KDEBUG)
1393 #define _enter(FMT,...)	kenter(FMT,##__VA_ARGS__)
1394 #define _leave(FMT,...)	kleave(FMT,##__VA_ARGS__)
1395 #define _debug(FMT,...)	kdebug(FMT,##__VA_ARGS__)
1396 
1397 #elif defined(CONFIG_AFS_DEBUG)
1398 #define AFS_DEBUG_KENTER	0x01
1399 #define AFS_DEBUG_KLEAVE	0x02
1400 #define AFS_DEBUG_KDEBUG	0x04
1401 
1402 #define _enter(FMT,...)					\
1403 do {							\
1404 	if (unlikely(afs_debug & AFS_DEBUG_KENTER))	\
1405 		kenter(FMT,##__VA_ARGS__);		\
1406 } while (0)
1407 
1408 #define _leave(FMT,...)					\
1409 do {							\
1410 	if (unlikely(afs_debug & AFS_DEBUG_KLEAVE))	\
1411 		kleave(FMT,##__VA_ARGS__);		\
1412 } while (0)
1413 
1414 #define _debug(FMT,...)					\
1415 do {							\
1416 	if (unlikely(afs_debug & AFS_DEBUG_KDEBUG))	\
1417 		kdebug(FMT,##__VA_ARGS__);		\
1418 } while (0)
1419 
1420 #else
1421 #define _enter(FMT,...)	no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
1422 #define _leave(FMT,...)	no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
1423 #define _debug(FMT,...)	no_printk("    "FMT ,##__VA_ARGS__)
1424 #endif
1425 
1426 /*
1427  * debug assertion checking
1428  */
1429 #if 1 // defined(__KDEBUGALL)
1430 
1431 #define ASSERT(X)						\
1432 do {								\
1433 	if (unlikely(!(X))) {					\
1434 		printk(KERN_ERR "\n");				\
1435 		printk(KERN_ERR "AFS: Assertion failed\n");	\
1436 		BUG();						\
1437 	}							\
1438 } while(0)
1439 
1440 #define ASSERTCMP(X, OP, Y)						\
1441 do {									\
1442 	if (unlikely(!((X) OP (Y)))) {					\
1443 		printk(KERN_ERR "\n");					\
1444 		printk(KERN_ERR "AFS: Assertion failed\n");		\
1445 		printk(KERN_ERR "%lu " #OP " %lu is false\n",		\
1446 		       (unsigned long)(X), (unsigned long)(Y));		\
1447 		printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n",	\
1448 		       (unsigned long)(X), (unsigned long)(Y));		\
1449 		BUG();							\
1450 	}								\
1451 } while(0)
1452 
1453 #define ASSERTRANGE(L, OP1, N, OP2, H)					\
1454 do {									\
1455 	if (unlikely(!((L) OP1 (N)) || !((N) OP2 (H)))) {		\
1456 		printk(KERN_ERR "\n");					\
1457 		printk(KERN_ERR "AFS: Assertion failed\n");		\
1458 		printk(KERN_ERR "%lu "#OP1" %lu "#OP2" %lu is false\n",	\
1459 		       (unsigned long)(L), (unsigned long)(N),		\
1460 		       (unsigned long)(H));				\
1461 		printk(KERN_ERR "0x%lx "#OP1" 0x%lx "#OP2" 0x%lx is false\n", \
1462 		       (unsigned long)(L), (unsigned long)(N),		\
1463 		       (unsigned long)(H));				\
1464 		BUG();							\
1465 	}								\
1466 } while(0)
1467 
1468 #define ASSERTIF(C, X)						\
1469 do {								\
1470 	if (unlikely((C) && !(X))) {				\
1471 		printk(KERN_ERR "\n");				\
1472 		printk(KERN_ERR "AFS: Assertion failed\n");	\
1473 		BUG();						\
1474 	}							\
1475 } while(0)
1476 
1477 #define ASSERTIFCMP(C, X, OP, Y)					\
1478 do {									\
1479 	if (unlikely((C) && !((X) OP (Y)))) {				\
1480 		printk(KERN_ERR "\n");					\
1481 		printk(KERN_ERR "AFS: Assertion failed\n");		\
1482 		printk(KERN_ERR "%lu " #OP " %lu is false\n",		\
1483 		       (unsigned long)(X), (unsigned long)(Y));		\
1484 		printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n",	\
1485 		       (unsigned long)(X), (unsigned long)(Y));		\
1486 		BUG();							\
1487 	}								\
1488 } while(0)
1489 
1490 #else
1491 
1492 #define ASSERT(X)				\
1493 do {						\
1494 } while(0)
1495 
1496 #define ASSERTCMP(X, OP, Y)			\
1497 do {						\
1498 } while(0)
1499 
1500 #define ASSERTRANGE(L, OP1, N, OP2, H)		\
1501 do {						\
1502 } while(0)
1503 
1504 #define ASSERTIF(C, X)				\
1505 do {						\
1506 } while(0)
1507 
1508 #define ASSERTIFCMP(C, X, OP, Y)		\
1509 do {						\
1510 } while(0)
1511 
1512 #endif /* __KDEBUGALL */
1513