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