blob: e3c99437f6e09529a675ce342923301aa0fdfb03 [file] [log] [blame]
David Howellsec268152007-04-26 15:49:28 -07001/* internal AFS stuff
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David Howells08e0e7c2007-04-26 15:55:03 -07003 * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/compiler.h>
13#include <linux/kernel.h>
Tina Ruchandani8a797902017-03-16 16:27:46 +000014#include <linux/ktime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/fs.h>
16#include <linux/pagemap.h>
David Howells08e0e7c2007-04-26 15:55:03 -070017#include <linux/rxrpc.h>
David Howells00d3b7a2007-04-26 15:57:07 -070018#include <linux/key.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040019#include <linux/workqueue.h>
Andrew Morton00c541e2007-05-31 00:40:52 -070020#include <linux/sched.h>
Christoph Hellwig80e50be2009-10-01 15:44:27 -070021#include <linux/fscache.h>
Jens Axboee1da0222010-04-22 11:58:18 +020022#include <linux/backing-dev.h>
David Howellsff548772017-02-10 16:34:07 +000023#include <linux/uuid.h>
David Howellsf044c882017-11-02 15:27:45 +000024#include <net/net_namespace.h>
David Howells8324f0b2016-08-30 09:49:29 +010025#include <net/af_rxrpc.h>
Andrew Morton00c541e2007-05-31 00:40:52 -070026
David Howells08e0e7c2007-04-26 15:55:03 -070027#include "afs.h"
28#include "afs_vl.h"
29
30#define AFS_CELL_MAX_ADDRS 15
31
David Howells31143d52007-05-09 02:33:46 -070032struct pagevec;
David Howells08e0e7c2007-04-26 15:55:03 -070033struct afs_call;
34
35typedef enum {
36 AFS_VL_NEW, /* new, uninitialised record */
37 AFS_VL_CREATING, /* creating record */
38 AFS_VL_VALID, /* record is pending */
39 AFS_VL_NO_VOLUME, /* no such volume available */
40 AFS_VL_UPDATING, /* update in progress */
41 AFS_VL_VOLUME_DELETED, /* volume was deleted */
42 AFS_VL_UNCERTAIN, /* uncertain state (update failed) */
43} __attribute__((packed)) afs_vlocation_state_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
David Howells00d3b7a2007-04-26 15:57:07 -070045struct afs_mount_params {
46 bool rwpath; /* T if the parent should be considered R/W */
47 bool force; /* T to force cell type */
wangleibec5eb62010-08-11 09:38:04 +010048 bool autocell; /* T if set auto mount operation */
David Howells00d3b7a2007-04-26 15:57:07 -070049 afs_voltype_t type; /* type of volume requested */
50 int volnamesz; /* size of volume name */
51 const char *volname; /* name of volume to mount */
David Howellsf044c882017-11-02 15:27:45 +000052 struct afs_net *net; /* Network namespace in effect */
David Howells00d3b7a2007-04-26 15:57:07 -070053 struct afs_cell *cell; /* cell in which to find volume */
54 struct afs_volume *volume; /* volume record */
55 struct key *key; /* key to use for secure mounting */
56};
57
David Howellsc435ee32017-11-02 15:27:49 +000058struct afs_iget_data {
59 struct afs_fid fid;
60 struct afs_volume *volume; /* volume on which resides */
61};
62
David Howells8e8d7f12017-01-05 10:38:34 +000063enum afs_call_state {
64 AFS_CALL_REQUESTING, /* request is being sent for outgoing call */
65 AFS_CALL_AWAIT_REPLY, /* awaiting reply to outgoing call */
66 AFS_CALL_AWAIT_OP_ID, /* awaiting op ID on incoming call */
67 AFS_CALL_AWAIT_REQUEST, /* awaiting request data on incoming call */
68 AFS_CALL_REPLYING, /* replying to incoming call */
69 AFS_CALL_AWAIT_ACK, /* awaiting final ACK of incoming call */
70 AFS_CALL_COMPLETE, /* Completed or failed */
71};
David Howellsf044c882017-11-02 15:27:45 +000072
David Howells08e0e7c2007-04-26 15:55:03 -070073/*
74 * a record of an in-progress RxRPC call
75 */
76struct afs_call {
77 const struct afs_call_type *type; /* type of call */
David Howells08e0e7c2007-04-26 15:55:03 -070078 wait_queue_head_t waitq; /* processes awaiting completion */
David Howells341f7412017-01-05 10:38:36 +000079 struct work_struct async_work; /* async I/O processor */
David Howells08e0e7c2007-04-26 15:55:03 -070080 struct work_struct work; /* actual work processor */
David Howells08e0e7c2007-04-26 15:55:03 -070081 struct rxrpc_call *rxcall; /* RxRPC call handle */
82 struct key *key; /* security for this call */
David Howellsf044c882017-11-02 15:27:45 +000083 struct afs_net *net; /* The network namespace */
David Howellsd0676a12017-11-02 15:27:49 +000084 struct afs_server *cm_server; /* Server affected by incoming CM call */
David Howellsc435ee32017-11-02 15:27:49 +000085 struct afs_server *server; /* Server used by client call */
David Howells08e0e7c2007-04-26 15:55:03 -070086 void *request; /* request data (first part) */
David Howells31143d52007-05-09 02:33:46 -070087 struct address_space *mapping; /* page set */
88 struct afs_writeback *wb; /* writeback being performed */
David Howells08e0e7c2007-04-26 15:55:03 -070089 void *buffer; /* reply receive buffer */
David Howells97e30432017-11-02 15:27:48 +000090 void *reply[4]; /* Where to put the reply */
David Howells31143d52007-05-09 02:33:46 -070091 pgoff_t first; /* first page in mapping to deal with */
92 pgoff_t last; /* last page in mapping to deal with */
David Howellsd0016482016-08-30 20:42:14 +010093 size_t offset; /* offset into received data store */
David Howells341f7412017-01-05 10:38:36 +000094 atomic_t usage;
David Howells8e8d7f12017-01-05 10:38:34 +000095 enum afs_call_state state;
David Howells08e0e7c2007-04-26 15:55:03 -070096 int error; /* error code */
David Howellsd0016482016-08-30 20:42:14 +010097 u32 abort_code; /* Remote abort ID or 0 */
David Howells08e0e7c2007-04-26 15:55:03 -070098 unsigned request_size; /* size of request data */
99 unsigned reply_max; /* maximum size of reply */
David Howells31143d52007-05-09 02:33:46 -0700100 unsigned first_offset; /* offset into mapping[first] */
David Howellsc435ee32017-11-02 15:27:49 +0000101 unsigned int cb_break; /* cb_break + cb_s_break before the call */
Marc Dionnebcd89272017-03-16 16:27:44 +0000102 union {
103 unsigned last_to; /* amount of mapping[last] */
104 unsigned count2; /* count used in unmarshalling */
105 };
David Howells08e0e7c2007-04-26 15:55:03 -0700106 unsigned char unmarshall; /* unmarshalling phase */
107 bool incoming; /* T if incoming call */
David Howells31143d52007-05-09 02:33:46 -0700108 bool send_pages; /* T if data from mapping should be sent */
David Howellsd0016482016-08-30 20:42:14 +0100109 bool need_attention; /* T if RxRPC poked us */
David Howells56ff9c82017-01-05 10:38:36 +0000110 bool async; /* T if asynchronous */
David Howells33cd7f22017-11-02 15:27:48 +0000111 bool ret_reply0; /* T if should return reply[0] on success */
David Howellsa68f4a22017-10-18 11:36:39 +0100112 bool upgrade; /* T to request service upgrade */
David Howells08e0e7c2007-04-26 15:55:03 -0700113 u16 service_id; /* RxRPC service ID to call */
David Howells50a2c952016-10-13 08:27:10 +0100114 u32 operation_ID; /* operation ID for an incoming call */
David Howells08e0e7c2007-04-26 15:55:03 -0700115 u32 count; /* count for use in unmarshalling */
116 __be32 tmp; /* place to extract temporary data */
David Howells31143d52007-05-09 02:33:46 -0700117 afs_dataversion_t store_version; /* updated version expected from store */
David Howells08e0e7c2007-04-26 15:55:03 -0700118};
119
120struct afs_call_type {
David Howells00d3b7a2007-04-26 15:57:07 -0700121 const char *name;
122
David Howells08e0e7c2007-04-26 15:55:03 -0700123 /* deliver request or reply data to an call
124 * - returning an error will cause the call to be aborted
125 */
David Howellsd0016482016-08-30 20:42:14 +0100126 int (*deliver)(struct afs_call *call);
David Howells08e0e7c2007-04-26 15:55:03 -0700127
David Howells08e0e7c2007-04-26 15:55:03 -0700128 /* clean up a call */
129 void (*destructor)(struct afs_call *call);
David Howells341f7412017-01-05 10:38:36 +0000130
131 /* Work function */
132 void (*work)(struct work_struct *work);
David Howells08e0e7c2007-04-26 15:55:03 -0700133};
134
135/*
David Howells196ee9c2017-01-05 10:38:34 +0000136 * Record of an outstanding read operation on a vnode.
137 */
138struct afs_read {
139 loff_t pos; /* Where to start reading */
David Howellse8e581a2017-03-16 16:27:44 +0000140 loff_t len; /* How much we're asking for */
David Howells196ee9c2017-01-05 10:38:34 +0000141 loff_t actual_len; /* How much we're actually getting */
David Howells6a0e3992017-03-16 16:27:46 +0000142 loff_t remain; /* Amount remaining */
David Howells196ee9c2017-01-05 10:38:34 +0000143 atomic_t usage;
David Howells196ee9c2017-01-05 10:38:34 +0000144 unsigned int index; /* Which page we're reading into */
David Howells196ee9c2017-01-05 10:38:34 +0000145 unsigned int nr_pages;
146 void (*page_done)(struct afs_call *, struct afs_read *);
147 struct page *pages[];
148};
149
150/*
David Howells31143d52007-05-09 02:33:46 -0700151 * record of an outstanding writeback on a vnode
152 */
153struct afs_writeback {
154 struct list_head link; /* link in vnode->writebacks */
155 struct work_struct writer; /* work item to perform the writeback */
156 struct afs_vnode *vnode; /* vnode to which this write applies */
157 struct key *key; /* owner of this write */
158 wait_queue_head_t waitq; /* completion and ready wait queue */
159 pgoff_t first; /* first page in batch */
160 pgoff_t point; /* last page in current store op */
161 pgoff_t last; /* last page in batch (inclusive) */
162 unsigned offset_first; /* offset into first page of start of write */
163 unsigned to_last; /* offset into last page of end of write */
164 int num_conflicts; /* count of conflicting writes in list */
165 int usage;
166 bool conflicts; /* T if has dependent conflicts */
167 enum {
168 AFS_WBACK_SYNCING, /* synchronisation being performed */
169 AFS_WBACK_PENDING, /* write pending */
170 AFS_WBACK_CONFLICTING, /* conflicting writes posted */
171 AFS_WBACK_WRITING, /* writing back */
172 AFS_WBACK_COMPLETE /* the writeback record has been unlinked */
173 } state __attribute__((packed));
174};
175
176/*
David Howells08e0e7c2007-04-26 15:55:03 -0700177 * AFS superblock private data
178 * - there's one superblock per volume
179 */
180struct afs_super_info {
David Howellsf044c882017-11-02 15:27:45 +0000181 struct afs_net *net; /* Network namespace */
David Howells49566f62017-11-02 15:27:46 +0000182 struct afs_cell *cell; /* The cell in which the volume resides */
David Howells08e0e7c2007-04-26 15:55:03 -0700183 struct afs_volume *volume; /* volume record */
184 char rwparent; /* T if parent is R/W AFS volume */
185};
186
187static inline struct afs_super_info *AFS_FS_S(struct super_block *sb)
188{
189 return sb->s_fs_info;
190}
191
192extern struct file_system_type afs_fs_type;
193
194/*
David Howellsf044c882017-11-02 15:27:45 +0000195 * AFS network namespace record.
196 */
197struct afs_net {
198 struct afs_uuid uuid;
199 bool live; /* F if this namespace is being removed */
200
201 /* AF_RXRPC I/O stuff */
202 struct socket *socket;
203 struct afs_call *spare_incoming_call;
204 struct work_struct charge_preallocation_work;
205 struct mutex socket_mutex;
206 atomic_t nr_outstanding_calls;
207 atomic_t nr_superblocks;
208
209 /* Cell database */
210 struct list_head cells;
211 struct afs_cell *ws_cell;
212 rwlock_t cells_lock;
213 struct rw_semaphore cells_sem;
214 wait_queue_head_t cells_freeable_wq;
215
216 struct rw_semaphore proc_cells_sem;
217 struct list_head proc_cells;
218
219 /* Volume location database */
220 struct list_head vl_updates; /* VL records in need-update order */
221 struct list_head vl_graveyard; /* Inactive VL records */
222 struct delayed_work vl_reaper;
223 struct delayed_work vl_updater;
224 spinlock_t vl_updates_lock;
225 spinlock_t vl_graveyard_lock;
226
227 /* File locking renewal management */
228 struct mutex lock_manager_mutex;
229
230 /* Server database */
231 struct rb_root servers; /* Active servers */
232 rwlock_t servers_lock;
233 struct list_head server_graveyard; /* Inactive server LRU list */
234 spinlock_t server_graveyard_lock;
David Howells59fa1c42017-11-02 15:27:45 +0000235 struct timer_list server_timer;
236 struct work_struct server_reaper;
237 atomic_t servers_outstanding;
David Howellsf044c882017-11-02 15:27:45 +0000238
239 /* Misc */
240 struct proc_dir_entry *proc_afs; /* /proc/net/afs directory */
241};
242
243extern struct afs_net __afs_net;// Dummy AFS network namespace; TODO: replace with real netns
244
245/*
David Howells08e0e7c2007-04-26 15:55:03 -0700246 * AFS cell record
247 */
248struct afs_cell {
249 atomic_t usage;
250 struct list_head link; /* main cell list link */
David Howellsf044c882017-11-02 15:27:45 +0000251 struct afs_net *net; /* The network namespace */
David Howells00d3b7a2007-04-26 15:57:07 -0700252 struct key *anonymous_key; /* anonymous user key for this cell */
David Howells08e0e7c2007-04-26 15:55:03 -0700253 struct list_head proc_link; /* /proc cell list link */
David Howells9b3f26c2009-04-03 16:42:41 +0100254#ifdef CONFIG_AFS_FSCACHE
255 struct fscache_cookie *cache; /* caching cookie */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#endif
257
David Howells08e0e7c2007-04-26 15:55:03 -0700258 /* server record management */
259 rwlock_t servers_lock; /* active server list lock */
260 struct list_head servers; /* active server list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
David Howells08e0e7c2007-04-26 15:55:03 -0700262 /* volume location record management */
263 struct rw_semaphore vl_sem; /* volume management serialisation semaphore */
264 struct list_head vl_list; /* cell's active VL record list */
265 spinlock_t vl_lock; /* vl_list lock */
266 unsigned short vl_naddrs; /* number of VL servers in addr list */
267 unsigned short vl_curr_svix; /* current server index */
David Howells4d9df982017-11-02 15:27:47 +0000268 struct sockaddr_rxrpc vl_addrs[AFS_CELL_MAX_ADDRS]; /* cell VL server addresses */
David Howells08e0e7c2007-04-26 15:55:03 -0700269
270 char name[0]; /* cell name - must go last */
271};
272
273/*
274 * entry in the cached volume location catalogue
275 */
276struct afs_cache_vlocation {
David Howells00d3b7a2007-04-26 15:57:07 -0700277 /* volume name (lowercase, padded with NULs) */
278 uint8_t name[AFS_MAXVOLNAME + 1];
279
David Howells08e0e7c2007-04-26 15:55:03 -0700280 uint8_t nservers; /* number of entries used in servers[] */
281 uint8_t vidmask; /* voltype mask for vid[] */
282 uint8_t srvtmask[8]; /* voltype masks for servers[] */
283#define AFS_VOL_VTM_RW 0x01 /* R/W version of the volume is available (on this server) */
284#define AFS_VOL_VTM_RO 0x02 /* R/O version of the volume is available (on this server) */
285#define AFS_VOL_VTM_BAK 0x04 /* backup version of the volume is available (on this server) */
286
287 afs_volid_t vid[3]; /* volume IDs for R/W, R/O and Bak volumes */
David Howells4d9df982017-11-02 15:27:47 +0000288 struct sockaddr_rxrpc servers[8]; /* fileserver addresses */
David Howells08e0e7c2007-04-26 15:55:03 -0700289 time_t rtime; /* last retrieval time */
290};
291
292/*
David Howells08e0e7c2007-04-26 15:55:03 -0700293 * AFS volume location record
294 */
295struct afs_vlocation {
296 atomic_t usage;
Tina Ruchandani8a797902017-03-16 16:27:46 +0000297 time64_t time_of_death; /* time at which put reduced usage to 0 */
David Howells08e0e7c2007-04-26 15:55:03 -0700298 struct list_head link; /* link in cell volume location list */
299 struct list_head grave; /* link in master graveyard list */
300 struct list_head update; /* link in master update list */
301 struct afs_cell *cell; /* cell to which volume belongs */
David Howells08e0e7c2007-04-26 15:55:03 -0700302 struct afs_cache_vlocation vldb; /* volume information DB record */
303 struct afs_volume *vols[3]; /* volume access record pointer (index by type) */
304 wait_queue_head_t waitq; /* status change waitqueue */
Tina Ruchandani8a797902017-03-16 16:27:46 +0000305 time64_t update_at; /* time at which record should be updated */
David S. Miller39bf0942007-04-26 20:39:14 -0700306 spinlock_t lock; /* access lock */
David Howells08e0e7c2007-04-26 15:55:03 -0700307 afs_vlocation_state_t state; /* volume location state */
308 unsigned short upd_rej_cnt; /* ENOMEDIUM count during update */
309 unsigned short upd_busy_cnt; /* EBUSY count during update */
310 bool valid; /* T if valid */
311};
312
313/*
314 * AFS fileserver record
315 */
316struct afs_server {
317 atomic_t usage;
Tina Ruchandani8a797902017-03-16 16:27:46 +0000318 time64_t time_of_death; /* time at which put reduced usage to 0 */
David Howells4d9df982017-11-02 15:27:47 +0000319 struct sockaddr_rxrpc addr; /* server address */
David Howells9ed900b2017-11-02 15:27:46 +0000320 struct afs_net *net; /* Network namespace in which the server resides */
David Howells08e0e7c2007-04-26 15:55:03 -0700321 struct afs_cell *cell; /* cell in which server resides */
322 struct list_head link; /* link in cell's server list */
323 struct list_head grave; /* link in master graveyard list */
David Howellsc435ee32017-11-02 15:27:49 +0000324
David Howells08e0e7c2007-04-26 15:55:03 -0700325 struct rb_node master_rb; /* link in master by-addr tree */
326 struct rw_semaphore sem; /* access lock */
David Howellsc435ee32017-11-02 15:27:49 +0000327 unsigned long flags;
328#define AFS_SERVER_NEW 0 /* New server, don't inc cb_s_break */
David Howells08e0e7c2007-04-26 15:55:03 -0700329
330 /* file service access */
David Howells08e0e7c2007-04-26 15:55:03 -0700331 int fs_state; /* 0 or reason FS currently marked dead (-errno) */
David Howellsc435ee32017-11-02 15:27:49 +0000332 spinlock_t fs_lock; /* access lock */
David Howells08e0e7c2007-04-26 15:55:03 -0700333
334 /* callback promise management */
David Howellsc435ee32017-11-02 15:27:49 +0000335 struct list_head cb_interests; /* List of superblocks using this server */
336 unsigned cb_s_break; /* Break-everything counter. */
337 rwlock_t cb_break_lock; /* Volume finding lock */
338};
339
340/*
341 * Interest by a superblock on a server.
342 */
343struct afs_cb_interest {
344 struct list_head cb_link; /* Link in server->cb_interests */
345 struct afs_server *server; /* Server on which this interest resides */
346 struct super_block *sb; /* Superblock on which inodes reside */
347 afs_volid_t vid; /* Volume ID to match */
348 refcount_t usage;
David Howells08e0e7c2007-04-26 15:55:03 -0700349};
350
351/*
352 * AFS volume access record
353 */
354struct afs_volume {
355 atomic_t usage;
356 struct afs_cell *cell; /* cell to which belongs (unrefd ptr) */
357 struct afs_vlocation *vlocation; /* volume location */
David Howells9b3f26c2009-04-03 16:42:41 +0100358#ifdef CONFIG_AFS_FSCACHE
359 struct fscache_cookie *cache; /* caching cookie */
David Howells08e0e7c2007-04-26 15:55:03 -0700360#endif
361 afs_volid_t vid; /* volume ID */
362 afs_voltype_t type; /* type of volume */
363 char type_force; /* force volume type (suppress R/O -> R/W) */
364 unsigned short nservers; /* number of server slots filled */
365 unsigned short rjservers; /* number of servers discarded due to -ENOMEDIUM */
366 struct afs_server *servers[8]; /* servers on which volume resides (ordered) */
David Howellsc435ee32017-11-02 15:27:49 +0000367 struct afs_cb_interest *cb_interests[8]; /* Interests on servers for callbacks */
David Howells08e0e7c2007-04-26 15:55:03 -0700368 struct rw_semaphore server_sem; /* lock for accessing current server */
369};
370
371/*
372 * vnode catalogue entry
373 */
374struct afs_cache_vnode {
375 afs_vnodeid_t vnode_id; /* vnode ID */
376 unsigned vnode_unique; /* vnode ID uniquifier */
377 afs_dataversion_t data_version; /* data version */
378};
379
380/*
381 * AFS inode private data
382 */
383struct afs_vnode {
384 struct inode vfs_inode; /* the VFS's inode record */
385
386 struct afs_volume *volume; /* volume on which vnode resides */
David Howells08e0e7c2007-04-26 15:55:03 -0700387 struct afs_fid fid; /* the file identifier for this inode */
388 struct afs_file_status status; /* AFS status info for this file */
David Howells9b3f26c2009-04-03 16:42:41 +0100389#ifdef CONFIG_AFS_FSCACHE
390 struct fscache_cookie *cache; /* caching cookie */
David Howells08e0e7c2007-04-26 15:55:03 -0700391#endif
David Howells00d3b7a2007-04-26 15:57:07 -0700392 struct afs_permits *permits; /* cache of permits so far obtained */
393 struct mutex permits_lock; /* lock for altering permits list */
David Howells260a9802007-04-26 15:59:35 -0700394 struct mutex validate_lock; /* lock for validating this vnode */
David Howells08e0e7c2007-04-26 15:55:03 -0700395 wait_queue_head_t update_waitq; /* status fetch waitqueue */
David Howells260a9802007-04-26 15:59:35 -0700396 int update_cnt; /* number of outstanding ops that will update the
David Howells08e0e7c2007-04-26 15:55:03 -0700397 * status */
David Howells31143d52007-05-09 02:33:46 -0700398 spinlock_t writeback_lock; /* lock for writebacks */
David Howells08e0e7c2007-04-26 15:55:03 -0700399 spinlock_t lock; /* waitqueue/flags lock */
400 unsigned long flags;
David Howellsc435ee32017-11-02 15:27:49 +0000401#define AFS_VNODE_CB_PROMISED 0 /* Set if vnode has a callback promise */
David Howells260a9802007-04-26 15:59:35 -0700402#define AFS_VNODE_UNSET 1 /* set if vnode attributes not yet set */
David Howellsc435ee32017-11-02 15:27:49 +0000403#define AFS_VNODE_DIR_MODIFIED 2 /* set if dir vnode's data modified */
David Howells08e0e7c2007-04-26 15:55:03 -0700404#define AFS_VNODE_ZAP_DATA 3 /* set if vnode's data should be invalidated */
405#define AFS_VNODE_DELETED 4 /* set if vnode deleted on server */
406#define AFS_VNODE_MOUNTPOINT 5 /* set if vnode is a mountpoint symlink */
David Howellse8d6c552007-07-15 23:40:12 -0700407#define AFS_VNODE_LOCKING 6 /* set if waiting for lock on vnode */
408#define AFS_VNODE_READLOCKED 7 /* set if vnode is read-locked on the server */
409#define AFS_VNODE_WRITELOCKED 8 /* set if vnode is write-locked on the server */
410#define AFS_VNODE_UNLOCKING 9 /* set if vnode is being unlocked on the server */
wangleibec5eb62010-08-11 09:38:04 +0100411#define AFS_VNODE_AUTOCELL 10 /* set if Vnode is an auto mount point */
412#define AFS_VNODE_PSEUDODIR 11 /* set if Vnode is a pseudo directory */
David Howells08e0e7c2007-04-26 15:55:03 -0700413
David Howells00d3b7a2007-04-26 15:57:07 -0700414 long acl_order; /* ACL check count (callback break count) */
415
David Howells31143d52007-05-09 02:33:46 -0700416 struct list_head writebacks; /* alterations in pagecache that need writing */
David Howellse8d6c552007-07-15 23:40:12 -0700417 struct list_head pending_locks; /* locks waiting to be granted */
418 struct list_head granted_locks; /* locks granted on this file */
419 struct delayed_work lock_work; /* work to be done in locking */
420 struct key *unlock_key; /* key to be used in unlocking */
David Howells31143d52007-05-09 02:33:46 -0700421
David Howells08e0e7c2007-04-26 15:55:03 -0700422 /* outstanding callback notification on this file */
David Howellsc435ee32017-11-02 15:27:49 +0000423 struct afs_cb_interest *cb_interest; /* Server on which this resides */
424 unsigned int cb_s_break; /* Mass break counter on ->server */
425 unsigned int cb_break; /* Break counter on vnode */
426 seqlock_t cb_lock; /* Lock for ->cb_interest, ->status, ->cb_*break */
427
428 time64_t cb_expires_at; /* time at which callback expires */
David Howells08e0e7c2007-04-26 15:55:03 -0700429 unsigned cb_version; /* callback version */
David Howells08e0e7c2007-04-26 15:55:03 -0700430 afs_callback_type_t cb_type; /* type of callback */
David Howells08e0e7c2007-04-26 15:55:03 -0700431};
432
David Howells00d3b7a2007-04-26 15:57:07 -0700433/*
434 * cached security record for one user's attempt to access a vnode
435 */
436struct afs_permit {
437 struct key *key; /* RxRPC ticket holding a security context */
438 afs_access_t access_mask; /* access mask for this key */
439};
440
441/*
442 * cache of security records from attempts to access a vnode
443 */
444struct afs_permits {
445 struct rcu_head rcu; /* disposal procedure */
446 int count; /* number of records */
447 struct afs_permit permits[0]; /* the permits so far examined */
448};
449
David Howellsb908fe62007-04-26 15:58:17 -0700450/*
451 * record of one of a system's set of network interfaces
452 */
453struct afs_interface {
David Howellsb908fe62007-04-26 15:58:17 -0700454 struct in_addr address; /* IPv4 address bound to interface */
455 struct in_addr netmask; /* netmask applied to address */
456 unsigned mtu; /* MTU of interface */
457};
458
David Howells08e0e7c2007-04-26 15:55:03 -0700459/*****************************************************************************/
460/*
David Howells9b3f26c2009-04-03 16:42:41 +0100461 * cache.c
462 */
463#ifdef CONFIG_AFS_FSCACHE
464extern struct fscache_netfs afs_cache_netfs;
465extern struct fscache_cookie_def afs_cell_cache_index_def;
David Howells9b3f26c2009-04-03 16:42:41 +0100466extern struct fscache_cookie_def afs_volume_cache_index_def;
467extern struct fscache_cookie_def afs_vnode_cache_index_def;
468#else
469#define afs_cell_cache_index_def (*(struct fscache_cookie_def *) NULL)
David Howells9b3f26c2009-04-03 16:42:41 +0100470#define afs_volume_cache_index_def (*(struct fscache_cookie_def *) NULL)
471#define afs_vnode_cache_index_def (*(struct fscache_cookie_def *) NULL)
472#endif
473
474/*
David Howells08e0e7c2007-04-26 15:55:03 -0700475 * callback.c
476 */
477extern void afs_init_callback_state(struct afs_server *);
David Howellsc435ee32017-11-02 15:27:49 +0000478extern void afs_break_callback(struct afs_vnode *);
479extern void afs_break_callbacks(struct afs_server *, size_t,struct afs_callback[]);
480
481extern int afs_register_server_cb_interest(struct afs_vnode *, struct afs_cb_interest **,
482 struct afs_server *);
483extern void afs_put_cb_interest(struct afs_net *, struct afs_cb_interest *);
484extern void afs_clear_callback_interests(struct afs_net *, struct afs_volume *);
485
486static inline struct afs_cb_interest *afs_get_cb_interest(struct afs_cb_interest *cbi)
487{
488 refcount_inc(&cbi->usage);
489 return cbi;
490}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492/*
493 * cell.c
494 */
David Howells49566f62017-11-02 15:27:46 +0000495static inline struct afs_cell *afs_get_cell(struct afs_cell *cell)
496{
497 if (cell)
498 atomic_inc(&cell->usage);
499 return cell;
500}
David Howellsf044c882017-11-02 15:27:45 +0000501extern int afs_cell_init(struct afs_net *, char *);
502extern struct afs_cell *afs_cell_create(struct afs_net *, const char *, unsigned, char *, bool);
503extern struct afs_cell *afs_cell_lookup(struct afs_net *, const char *, unsigned, bool);
David Howells08e0e7c2007-04-26 15:55:03 -0700504extern struct afs_cell *afs_grab_cell(struct afs_cell *);
David Howells9ed900b2017-11-02 15:27:46 +0000505extern void afs_put_cell(struct afs_net *, struct afs_cell *);
David Howellsf044c882017-11-02 15:27:45 +0000506extern void __net_exit afs_cell_purge(struct afs_net *);
David Howells08e0e7c2007-04-26 15:55:03 -0700507
508/*
509 * cmservice.c
510 */
511extern bool afs_cm_incoming_call(struct afs_call *);
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/*
514 * dir.c
515 */
Arjan van de Ven754661f2007-02-12 00:55:38 -0800516extern const struct inode_operations afs_dir_inode_operations;
Al Virod61dcce2011-01-12 20:04:20 -0500517extern const struct dentry_operations afs_fs_dentry_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800518extern const struct file_operations afs_dir_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520/*
521 * file.c
522 */
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700523extern const struct address_space_operations afs_fs_aops;
Arjan van de Ven754661f2007-02-12 00:55:38 -0800524extern const struct inode_operations afs_file_inode_operations;
David Howells00d3b7a2007-04-26 15:57:07 -0700525extern const struct file_operations afs_file_operations;
526
527extern int afs_open(struct inode *, struct file *);
528extern int afs_release(struct inode *, struct file *);
Al Virof6d335c2010-05-21 15:27:09 +0100529extern int afs_page_filler(void *, struct page *);
David Howells196ee9c2017-01-05 10:38:34 +0000530extern void afs_put_read(struct afs_read *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532/*
David Howellse8d6c552007-07-15 23:40:12 -0700533 * flock.c
534 */
David Howellsf044c882017-11-02 15:27:45 +0000535extern struct workqueue_struct *afs_lock_manager;
536
David Howellse8d6c552007-07-15 23:40:12 -0700537extern void afs_lock_work(struct work_struct *);
538extern void afs_lock_may_be_available(struct afs_vnode *);
539extern int afs_lock(struct file *, int, struct file_lock *);
540extern int afs_flock(struct file *, int, struct file_lock *);
541
542/*
David Howells08e0e7c2007-04-26 15:55:03 -0700543 * fsclient.c
544 */
David Howells00d3b7a2007-04-26 15:57:07 -0700545extern int afs_fs_fetch_file_status(struct afs_server *, struct key *,
546 struct afs_vnode *, struct afs_volsync *,
David Howells56ff9c82017-01-05 10:38:36 +0000547 bool);
David Howellsf044c882017-11-02 15:27:45 +0000548extern int afs_fs_give_up_callbacks(struct afs_net *, struct afs_server *, bool);
David Howells00d3b7a2007-04-26 15:57:07 -0700549extern int afs_fs_fetch_data(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000550 struct afs_vnode *, struct afs_read *, bool);
David Howells260a9802007-04-26 15:59:35 -0700551extern int afs_fs_create(struct afs_server *, struct key *,
552 struct afs_vnode *, const char *, umode_t,
553 struct afs_fid *, struct afs_file_status *,
David Howells56ff9c82017-01-05 10:38:36 +0000554 struct afs_callback *, bool);
David Howells260a9802007-04-26 15:59:35 -0700555extern int afs_fs_remove(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000556 struct afs_vnode *, const char *, bool, bool);
David Howells260a9802007-04-26 15:59:35 -0700557extern int afs_fs_link(struct afs_server *, struct key *, struct afs_vnode *,
David Howells56ff9c82017-01-05 10:38:36 +0000558 struct afs_vnode *, const char *, bool);
David Howells260a9802007-04-26 15:59:35 -0700559extern int afs_fs_symlink(struct afs_server *, struct key *,
560 struct afs_vnode *, const char *, const char *,
David Howells56ff9c82017-01-05 10:38:36 +0000561 struct afs_fid *, struct afs_file_status *, bool);
David Howells260a9802007-04-26 15:59:35 -0700562extern int afs_fs_rename(struct afs_server *, struct key *,
563 struct afs_vnode *, const char *,
David Howells56ff9c82017-01-05 10:38:36 +0000564 struct afs_vnode *, const char *, bool);
David Howells31143d52007-05-09 02:33:46 -0700565extern int afs_fs_store_data(struct afs_server *, struct afs_writeback *,
David Howells56ff9c82017-01-05 10:38:36 +0000566 pgoff_t, pgoff_t, unsigned, unsigned, bool);
David Howells31143d52007-05-09 02:33:46 -0700567extern int afs_fs_setattr(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000568 struct afs_vnode *, struct iattr *, bool);
David Howells45222b92007-05-10 22:22:20 -0700569extern int afs_fs_get_volume_status(struct afs_server *, struct key *,
570 struct afs_vnode *,
David Howells56ff9c82017-01-05 10:38:36 +0000571 struct afs_volume_status *, bool);
David Howellse8d6c552007-07-15 23:40:12 -0700572extern int afs_fs_set_lock(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000573 struct afs_vnode *, afs_lock_type_t, bool);
David Howellse8d6c552007-07-15 23:40:12 -0700574extern int afs_fs_extend_lock(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000575 struct afs_vnode *, bool);
David Howellse8d6c552007-07-15 23:40:12 -0700576extern int afs_fs_release_lock(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000577 struct afs_vnode *, bool);
David Howellsc435ee32017-11-02 15:27:49 +0000578extern int afs_fs_give_up_all_callbacks(struct afs_server *, struct key *, bool);
David Howells08e0e7c2007-04-26 15:55:03 -0700579
580/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 * inode.c
582 */
David Howellsc435ee32017-11-02 15:27:49 +0000583extern int afs_iget5_test(struct inode *, void *);
wangleibec5eb62010-08-11 09:38:04 +0100584extern struct inode *afs_iget_autocell(struct inode *, const char *, int,
585 struct key *);
David Howells00d3b7a2007-04-26 15:57:07 -0700586extern struct inode *afs_iget(struct super_block *, struct key *,
David Howells260a9802007-04-26 15:59:35 -0700587 struct afs_fid *, struct afs_file_status *,
588 struct afs_callback *);
David Howells416351f2007-05-09 02:33:45 -0700589extern void afs_zap_data(struct afs_vnode *);
David Howells260a9802007-04-26 15:59:35 -0700590extern int afs_validate(struct afs_vnode *, struct key *);
David Howellsa528d352017-01-31 16:46:22 +0000591extern int afs_getattr(const struct path *, struct kstat *, u32, unsigned int);
David Howells31143d52007-05-09 02:33:46 -0700592extern int afs_setattr(struct dentry *, struct iattr *);
Al Virob57922d2010-06-07 14:34:48 -0400593extern void afs_evict_inode(struct inode *);
wangleibec5eb62010-08-11 09:38:04 +0100594extern int afs_drop_inode(struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596/*
597 * main.c
598 */
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000599extern struct workqueue_struct *afs_wq;
David Howellsf044c882017-11-02 15:27:45 +0000600
601static inline struct afs_net *afs_d2net(struct dentry *dentry)
602{
603 return &__afs_net;
604}
605
606static inline struct afs_net *afs_i2net(struct inode *inode)
607{
608 return &__afs_net;
609}
610
611static inline struct afs_net *afs_v2net(struct afs_vnode *vnode)
612{
613 return &__afs_net;
614}
615
616static inline struct afs_net *afs_sock2net(struct sock *sk)
617{
618 return &__afs_net;
619}
620
621static inline struct afs_net *afs_get_net(struct afs_net *net)
622{
623 return net;
624}
625
626static inline void afs_put_net(struct afs_net *net)
627{
628}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630/*
David Howells08e0e7c2007-04-26 15:55:03 -0700631 * misc.c
632 */
633extern int afs_abort_to_error(u32);
634
635/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 * mntpt.c
637 */
Arjan van de Ven754661f2007-02-12 00:55:38 -0800638extern const struct inode_operations afs_mntpt_inode_operations;
wangleibec5eb62010-08-11 09:38:04 +0100639extern const struct inode_operations afs_autocell_inode_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800640extern const struct file_operations afs_mntpt_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
David Howellsd18610b2011-01-14 19:04:05 +0000642extern struct vfsmount *afs_d_automount(struct path *);
David Howells08e0e7c2007-04-26 15:55:03 -0700643extern void afs_mntpt_kill_timer(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645/*
Arnd Bergmannb4db2b32017-02-10 16:34:07 +0000646 * netdevices.c
647 */
648extern int afs_get_ipv4_interfaces(struct afs_interface *, size_t, bool);
649
650/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 * proc.c
652 */
David Howellsf044c882017-11-02 15:27:45 +0000653extern int __net_init afs_proc_init(struct afs_net *);
654extern void __net_exit afs_proc_cleanup(struct afs_net *);
655extern int afs_proc_cell_setup(struct afs_net *, struct afs_cell *);
656extern void afs_proc_cell_remove(struct afs_net *, struct afs_cell *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
David Howells08e0e7c2007-04-26 15:55:03 -0700658/*
659 * rxrpc.c
660 */
David Howellsf044c882017-11-02 15:27:45 +0000661extern struct workqueue_struct *afs_async_calls;
David Howells8324f0b2016-08-30 09:49:29 +0100662
David Howellsf044c882017-11-02 15:27:45 +0000663extern int __net_init afs_open_socket(struct afs_net *);
664extern void __net_exit afs_close_socket(struct afs_net *);
665extern void afs_charge_preallocation(struct work_struct *);
David Howells341f7412017-01-05 10:38:36 +0000666extern void afs_put_call(struct afs_call *);
667extern int afs_queue_call_work(struct afs_call *);
David Howells33cd7f22017-11-02 15:27:48 +0000668extern long afs_make_call(struct sockaddr_rxrpc *, struct afs_call *, gfp_t, bool);
David Howellsf044c882017-11-02 15:27:45 +0000669extern struct afs_call *afs_alloc_flat_call(struct afs_net *,
670 const struct afs_call_type *,
David Howells08e0e7c2007-04-26 15:55:03 -0700671 size_t, size_t);
672extern void afs_flat_call_destructor(struct afs_call *);
David Howells08e0e7c2007-04-26 15:55:03 -0700673extern void afs_send_empty_reply(struct afs_call *);
David Howellsb908fe62007-04-26 15:58:17 -0700674extern void afs_send_simple_reply(struct afs_call *, const void *, size_t);
David Howellsd0016482016-08-30 20:42:14 +0100675extern int afs_extract_data(struct afs_call *, void *, size_t, bool);
David Howells08e0e7c2007-04-26 15:55:03 -0700676
David Howellsd0016482016-08-30 20:42:14 +0100677static inline int afs_transfer_reply(struct afs_call *call)
David Howells372ee162016-08-03 14:11:40 +0100678{
David Howellsd0016482016-08-30 20:42:14 +0100679 return afs_extract_data(call, call->buffer, call->reply_max, false);
David Howells372ee162016-08-03 14:11:40 +0100680}
681
David Howells08e0e7c2007-04-26 15:55:03 -0700682/*
David Howells00d3b7a2007-04-26 15:57:07 -0700683 * security.c
684 */
685extern void afs_clear_permits(struct afs_vnode *);
686extern void afs_cache_permit(struct afs_vnode *, struct key *, long);
David Howells416351f2007-05-09 02:33:45 -0700687extern void afs_zap_permits(struct rcu_head *);
David Howells00d3b7a2007-04-26 15:57:07 -0700688extern struct key *afs_request_key(struct afs_cell *);
Al Viro10556cb2011-06-20 19:28:19 -0400689extern int afs_permission(struct inode *, int);
David Howells00d3b7a2007-04-26 15:57:07 -0700690
691/*
David Howells08e0e7c2007-04-26 15:55:03 -0700692 * server.c
693 */
694extern spinlock_t afs_server_peer_lock;
695
David Howellsc435ee32017-11-02 15:27:49 +0000696static inline struct afs_server *afs_get_server(struct afs_server *server)
697{
698 atomic_inc(&server->usage);
699 return server;
700}
David Howells08e0e7c2007-04-26 15:55:03 -0700701
David Howells59fa1c42017-11-02 15:27:45 +0000702extern void afs_server_timer(struct timer_list *);
David Howells08e0e7c2007-04-26 15:55:03 -0700703extern struct afs_server *afs_lookup_server(struct afs_cell *,
David Howells4d9df982017-11-02 15:27:47 +0000704 struct sockaddr_rxrpc *);
David Howellsf044c882017-11-02 15:27:45 +0000705extern struct afs_server *afs_find_server(struct afs_net *,
706 const struct sockaddr_rxrpc *);
David Howells9ed900b2017-11-02 15:27:46 +0000707extern void afs_put_server(struct afs_net *, struct afs_server *);
David Howellsf044c882017-11-02 15:27:45 +0000708extern void afs_reap_server(struct work_struct *);
709extern void __net_exit afs_purge_servers(struct afs_net *);
David Howells08e0e7c2007-04-26 15:55:03 -0700710
711/*
David Howells00d3b7a2007-04-26 15:57:07 -0700712 * super.c
713 */
David Howellsf044c882017-11-02 15:27:45 +0000714extern int __init afs_fs_init(void);
715extern void __exit afs_fs_exit(void);
David Howells00d3b7a2007-04-26 15:57:07 -0700716
717/*
David Howells08e0e7c2007-04-26 15:55:03 -0700718 * vlclient.c
719 */
David Howellsf044c882017-11-02 15:27:45 +0000720extern int afs_vl_get_entry_by_name(struct afs_net *,
David Howells4d9df982017-11-02 15:27:47 +0000721 struct sockaddr_rxrpc *, struct key *,
David Howells00d3b7a2007-04-26 15:57:07 -0700722 const char *, struct afs_cache_vlocation *,
David Howells56ff9c82017-01-05 10:38:36 +0000723 bool);
David Howellsf044c882017-11-02 15:27:45 +0000724extern int afs_vl_get_entry_by_id(struct afs_net *,
David Howells4d9df982017-11-02 15:27:47 +0000725 struct sockaddr_rxrpc *, struct key *,
David Howells00d3b7a2007-04-26 15:57:07 -0700726 afs_volid_t, afs_voltype_t,
David Howells56ff9c82017-01-05 10:38:36 +0000727 struct afs_cache_vlocation *, bool);
David Howells08e0e7c2007-04-26 15:55:03 -0700728
729/*
730 * vlocation.c
731 */
David Howellsf044c882017-11-02 15:27:45 +0000732extern struct workqueue_struct *afs_vlocation_update_worker;
733
David Howells08e0e7c2007-04-26 15:55:03 -0700734#define afs_get_vlocation(V) do { atomic_inc(&(V)->usage); } while(0)
735
David Howellsf044c882017-11-02 15:27:45 +0000736extern struct afs_vlocation *afs_vlocation_lookup(struct afs_net *,
737 struct afs_cell *,
David Howells00d3b7a2007-04-26 15:57:07 -0700738 struct key *,
David Howells08e0e7c2007-04-26 15:55:03 -0700739 const char *, size_t);
David Howellsf044c882017-11-02 15:27:45 +0000740extern void afs_put_vlocation(struct afs_net *, struct afs_vlocation *);
741extern void afs_vlocation_updater(struct work_struct *);
742extern void afs_vlocation_reaper(struct work_struct *);
743extern void __net_exit afs_vlocation_purge(struct afs_net *);
David Howells08e0e7c2007-04-26 15:55:03 -0700744
745/*
746 * vnode.c
747 */
David Howells08e0e7c2007-04-26 15:55:03 -0700748static inline struct afs_vnode *AFS_FS_I(struct inode *inode)
749{
750 return container_of(inode, struct afs_vnode, vfs_inode);
751}
752
753static inline struct inode *AFS_VNODE_TO_I(struct afs_vnode *vnode)
754{
755 return &vnode->vfs_inode;
756}
757
David Howells260a9802007-04-26 15:59:35 -0700758extern void afs_vnode_finalise_status_update(struct afs_vnode *,
759 struct afs_server *);
David Howells00d3b7a2007-04-26 15:57:07 -0700760extern int afs_vnode_fetch_status(struct afs_vnode *, struct afs_vnode *,
David Howellsc435ee32017-11-02 15:27:49 +0000761 struct key *, bool);
David Howells00d3b7a2007-04-26 15:57:07 -0700762extern int afs_vnode_fetch_data(struct afs_vnode *, struct key *,
David Howells196ee9c2017-01-05 10:38:34 +0000763 struct afs_read *);
David Howells260a9802007-04-26 15:59:35 -0700764extern int afs_vnode_create(struct afs_vnode *, struct key *, const char *,
765 umode_t, struct afs_fid *, struct afs_file_status *,
766 struct afs_callback *, struct afs_server **);
767extern int afs_vnode_remove(struct afs_vnode *, struct key *, const char *,
768 bool);
769extern int afs_vnode_link(struct afs_vnode *, struct afs_vnode *, struct key *,
770 const char *);
771extern int afs_vnode_symlink(struct afs_vnode *, struct key *, const char *,
772 const char *, struct afs_fid *,
773 struct afs_file_status *, struct afs_server **);
774extern int afs_vnode_rename(struct afs_vnode *, struct afs_vnode *,
775 struct key *, const char *, const char *);
David Howells31143d52007-05-09 02:33:46 -0700776extern int afs_vnode_store_data(struct afs_writeback *, pgoff_t, pgoff_t,
777 unsigned, unsigned);
778extern int afs_vnode_setattr(struct afs_vnode *, struct key *, struct iattr *);
David Howells45222b92007-05-10 22:22:20 -0700779extern int afs_vnode_get_volume_status(struct afs_vnode *, struct key *,
780 struct afs_volume_status *);
David Howellse8d6c552007-07-15 23:40:12 -0700781extern int afs_vnode_set_lock(struct afs_vnode *, struct key *,
782 afs_lock_type_t);
783extern int afs_vnode_extend_lock(struct afs_vnode *, struct key *);
784extern int afs_vnode_release_lock(struct afs_vnode *, struct key *);
David Howells08e0e7c2007-04-26 15:55:03 -0700785
786/*
787 * volume.c
788 */
David Howells49566f62017-11-02 15:27:46 +0000789static inline struct afs_volume *afs_get_volume(struct afs_volume *volume)
790{
791 if (volume)
792 atomic_inc(&volume->usage);
793 return volume;
794}
David Howells08e0e7c2007-04-26 15:55:03 -0700795
David Howells9ed900b2017-11-02 15:27:46 +0000796extern void afs_put_volume(struct afs_cell *, struct afs_volume *);
David Howells00d3b7a2007-04-26 15:57:07 -0700797extern struct afs_volume *afs_volume_lookup(struct afs_mount_params *);
David Howells08e0e7c2007-04-26 15:55:03 -0700798extern struct afs_server *afs_volume_pick_fileserver(struct afs_vnode *);
799extern int afs_volume_release_fileserver(struct afs_vnode *,
800 struct afs_server *, int);
801
David Howells31143d52007-05-09 02:33:46 -0700802/*
803 * write.c
804 */
805extern int afs_set_page_dirty(struct page *);
806extern void afs_put_writeback(struct afs_writeback *);
Nick Piggin15b46502008-10-15 22:04:32 -0700807extern int afs_write_begin(struct file *file, struct address_space *mapping,
808 loff_t pos, unsigned len, unsigned flags,
809 struct page **pagep, void **fsdata);
810extern int afs_write_end(struct file *file, struct address_space *mapping,
811 loff_t pos, unsigned len, unsigned copied,
812 struct page *page, void *fsdata);
David Howells31143d52007-05-09 02:33:46 -0700813extern int afs_writepage(struct page *, struct writeback_control *);
814extern int afs_writepages(struct address_space *, struct writeback_control *);
David Howells31143d52007-05-09 02:33:46 -0700815extern void afs_pages_written_back(struct afs_vnode *, struct afs_call *);
Al Viro50b55512014-04-03 14:13:46 -0400816extern ssize_t afs_file_write(struct kiocb *, struct iov_iter *);
David Howells31143d52007-05-09 02:33:46 -0700817extern int afs_writeback_all(struct afs_vnode *);
David Howells58fed942017-03-16 16:27:45 +0000818extern int afs_flush(struct file *, fl_owner_t);
Josef Bacik02c24a82011-07-16 20:44:56 -0400819extern int afs_fsync(struct file *, loff_t, loff_t, int);
David Howells31143d52007-05-09 02:33:46 -0700820
David Howellsd3e3b7ea2017-07-06 15:50:27 +0100821/*
822 * xattr.c
823 */
824extern const struct xattr_handler *afs_xattr_handlers[];
825extern ssize_t afs_listxattr(struct dentry *, char *, size_t);
David Howells31143d52007-05-09 02:33:46 -0700826
David Howells08e0e7c2007-04-26 15:55:03 -0700827/*****************************************************************************/
828/*
829 * debug tracing
830 */
David Howells8e8d7f12017-01-05 10:38:34 +0000831#include <trace/events/afs.h>
832
David Howells08e0e7c2007-04-26 15:55:03 -0700833extern unsigned afs_debug;
834
835#define dbgprintk(FMT,...) \
Sven Schnellead16df82008-04-03 10:44:01 +0100836 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
David Howells08e0e7c2007-04-26 15:55:03 -0700837
Harvey Harrison530b6412008-04-30 00:55:09 -0700838#define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
839#define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
David Howells08e0e7c2007-04-26 15:55:03 -0700840#define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
841
842
843#if defined(__KDEBUG)
844#define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
845#define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
846#define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
847
848#elif defined(CONFIG_AFS_DEBUG)
849#define AFS_DEBUG_KENTER 0x01
850#define AFS_DEBUG_KLEAVE 0x02
851#define AFS_DEBUG_KDEBUG 0x04
852
853#define _enter(FMT,...) \
854do { \
855 if (unlikely(afs_debug & AFS_DEBUG_KENTER)) \
856 kenter(FMT,##__VA_ARGS__); \
857} while (0)
858
859#define _leave(FMT,...) \
860do { \
861 if (unlikely(afs_debug & AFS_DEBUG_KLEAVE)) \
862 kleave(FMT,##__VA_ARGS__); \
863} while (0)
864
865#define _debug(FMT,...) \
866do { \
867 if (unlikely(afs_debug & AFS_DEBUG_KDEBUG)) \
868 kdebug(FMT,##__VA_ARGS__); \
869} while (0)
870
871#else
David Howells12fdff32010-08-12 16:54:57 +0100872#define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
873#define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
874#define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
David Howells08e0e7c2007-04-26 15:55:03 -0700875#endif
876
877/*
878 * debug assertion checking
879 */
880#if 1 // defined(__KDEBUGALL)
881
882#define ASSERT(X) \
883do { \
884 if (unlikely(!(X))) { \
885 printk(KERN_ERR "\n"); \
886 printk(KERN_ERR "AFS: Assertion failed\n"); \
887 BUG(); \
888 } \
889} while(0)
890
891#define ASSERTCMP(X, OP, Y) \
892do { \
893 if (unlikely(!((X) OP (Y)))) { \
894 printk(KERN_ERR "\n"); \
895 printk(KERN_ERR "AFS: Assertion failed\n"); \
896 printk(KERN_ERR "%lu " #OP " %lu is false\n", \
897 (unsigned long)(X), (unsigned long)(Y)); \
898 printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
899 (unsigned long)(X), (unsigned long)(Y)); \
900 BUG(); \
901 } \
902} while(0)
903
David Howells416351f2007-05-09 02:33:45 -0700904#define ASSERTRANGE(L, OP1, N, OP2, H) \
905do { \
906 if (unlikely(!((L) OP1 (N)) || !((N) OP2 (H)))) { \
907 printk(KERN_ERR "\n"); \
908 printk(KERN_ERR "AFS: Assertion failed\n"); \
909 printk(KERN_ERR "%lu "#OP1" %lu "#OP2" %lu is false\n", \
910 (unsigned long)(L), (unsigned long)(N), \
911 (unsigned long)(H)); \
912 printk(KERN_ERR "0x%lx "#OP1" 0x%lx "#OP2" 0x%lx is false\n", \
913 (unsigned long)(L), (unsigned long)(N), \
914 (unsigned long)(H)); \
915 BUG(); \
916 } \
917} while(0)
918
David Howells08e0e7c2007-04-26 15:55:03 -0700919#define ASSERTIF(C, X) \
920do { \
921 if (unlikely((C) && !(X))) { \
922 printk(KERN_ERR "\n"); \
923 printk(KERN_ERR "AFS: Assertion failed\n"); \
924 BUG(); \
925 } \
926} while(0)
927
928#define ASSERTIFCMP(C, X, OP, Y) \
929do { \
930 if (unlikely((C) && !((X) OP (Y)))) { \
931 printk(KERN_ERR "\n"); \
932 printk(KERN_ERR "AFS: Assertion failed\n"); \
933 printk(KERN_ERR "%lu " #OP " %lu is false\n", \
934 (unsigned long)(X), (unsigned long)(Y)); \
935 printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
936 (unsigned long)(X), (unsigned long)(Y)); \
937 BUG(); \
938 } \
939} while(0)
940
941#else
942
943#define ASSERT(X) \
944do { \
945} while(0)
946
947#define ASSERTCMP(X, OP, Y) \
948do { \
949} while(0)
950
David Howells416351f2007-05-09 02:33:45 -0700951#define ASSERTRANGE(L, OP1, N, OP2, H) \
952do { \
953} while(0)
954
David Howells08e0e7c2007-04-26 15:55:03 -0700955#define ASSERTIF(C, X) \
956do { \
957} while(0)
958
959#define ASSERTIFCMP(C, X, OP, Y) \
960do { \
961} while(0)
962
963#endif /* __KDEBUGALL */