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