| /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| /* Network filesystem support services. |
| * |
| * Copyright (C) 2021 Red Hat, Inc. All Rights Reserved. |
| * Written by David Howells (dhowells@redhat.com) |
| * |
| * See: |
| * |
| * Documentation/filesystems/netfs_library.rst |
| * |
| * for a description of the network filesystem interface declared here. |
| */ |
| |
| #ifndef _LINUX_NETFS_H |
| #define _LINUX_NETFS_H |
| |
| #include <linux/workqueue.h> |
| #include <linux/fs.h> |
| #include <linux/pagemap.h> |
| |
| /* |
| * Overload PG_private_2 to give us PG_fscache - this is used to indicate that |
| * a page is currently backed by a local disk cache |
| */ |
| #define folio_test_fscache(folio) folio_test_private_2(folio) |
| #define PageFsCache(page) PagePrivate2((page)) |
| #define SetPageFsCache(page) SetPagePrivate2((page)) |
| #define ClearPageFsCache(page) ClearPagePrivate2((page)) |
| #define TestSetPageFsCache(page) TestSetPagePrivate2((page)) |
| #define TestClearPageFsCache(page) TestClearPagePrivate2((page)) |
| |
| /** |
| * folio_start_fscache - Start an fscache write on a folio. |
| * @folio: The folio. |
| * |
| * Call this function before writing a folio to a local cache. Starting a |
| * second write before the first one finishes is not allowed. |
| */ |
| static inline void folio_start_fscache(struct folio *folio) |
| { |
| VM_BUG_ON_FOLIO(folio_test_private_2(folio), folio); |
| folio_get(folio); |
| folio_set_private_2(folio); |
| } |
| |
| /** |
| * folio_end_fscache - End an fscache write on a folio. |
| * @folio: The folio. |
| * |
| * Call this function after the folio has been written to the local cache. |
| * This will wake any sleepers waiting on this folio. |
| */ |
| static inline void folio_end_fscache(struct folio *folio) |
| { |
| folio_end_private_2(folio); |
| } |
| |
| /** |
| * folio_wait_fscache - Wait for an fscache write on this folio to end. |
| * @folio: The folio. |
| * |
| * If this folio is currently being written to a local cache, wait for |
| * the write to finish. Another write may start after this one finishes, |
| * unless the caller holds the folio lock. |
| */ |
| static inline void folio_wait_fscache(struct folio *folio) |
| { |
| folio_wait_private_2(folio); |
| } |
| |
| /** |
| * folio_wait_fscache_killable - Wait for an fscache write on this folio to end. |
| * @folio: The folio. |
| * |
| * If this folio is currently being written to a local cache, wait |
| * for the write to finish or for a fatal signal to be received. |
| * Another write may start after this one finishes, unless the caller |
| * holds the folio lock. |
| * |
| * Return: |
| * - 0 if successful. |
| * - -EINTR if a fatal signal was encountered. |
| */ |
| static inline int folio_wait_fscache_killable(struct folio *folio) |
| { |
| return folio_wait_private_2_killable(folio); |
| } |
| |
| static inline void set_page_fscache(struct page *page) |
| { |
| folio_start_fscache(page_folio(page)); |
| } |
| |
| static inline void end_page_fscache(struct page *page) |
| { |
| folio_end_private_2(page_folio(page)); |
| } |
| |
| static inline void wait_on_page_fscache(struct page *page) |
| { |
| folio_wait_private_2(page_folio(page)); |
| } |
| |
| static inline int wait_on_page_fscache_killable(struct page *page) |
| { |
| return folio_wait_private_2_killable(page_folio(page)); |
| } |
| |
| enum netfs_read_source { |
| NETFS_FILL_WITH_ZEROES, |
| NETFS_DOWNLOAD_FROM_SERVER, |
| NETFS_READ_FROM_CACHE, |
| NETFS_INVALID_READ, |
| } __mode(byte); |
| |
| typedef void (*netfs_io_terminated_t)(void *priv, ssize_t transferred_or_error, |
| bool was_async); |
| |
| /* |
| * Resources required to do operations on a cache. |
| */ |
| struct netfs_cache_resources { |
| const struct netfs_cache_ops *ops; |
| void *cache_priv; |
| void *cache_priv2; |
| unsigned int debug_id; /* Cookie debug ID */ |
| }; |
| |
| /* |
| * Descriptor for a single component subrequest. |
| */ |
| struct netfs_read_subrequest { |
| struct netfs_read_request *rreq; /* Supervising read request */ |
| struct list_head rreq_link; /* Link in rreq->subrequests */ |
| loff_t start; /* Where to start the I/O */ |
| size_t len; /* Size of the I/O */ |
| size_t transferred; /* Amount of data transferred */ |
| refcount_t usage; |
| short error; /* 0 or error that occurred */ |
| unsigned short debug_index; /* Index in list (for debugging output) */ |
| enum netfs_read_source source; /* Where to read from */ |
| unsigned long flags; |
| #define NETFS_SREQ_WRITE_TO_CACHE 0 /* Set if should write to cache */ |
| #define NETFS_SREQ_CLEAR_TAIL 1 /* Set if the rest of the read should be cleared */ |
| #define NETFS_SREQ_SHORT_READ 2 /* Set if there was a short read from the cache */ |
| #define NETFS_SREQ_SEEK_DATA_READ 3 /* Set if ->read() should SEEK_DATA first */ |
| #define NETFS_SREQ_NO_PROGRESS 4 /* Set if we didn't manage to read any data */ |
| }; |
| |
| /* |
| * Descriptor for a read helper request. This is used to make multiple I/O |
| * requests on a variety of sources and then stitch the result together. |
| */ |
| struct netfs_read_request { |
| struct work_struct work; |
| struct inode *inode; /* The file being accessed */ |
| struct address_space *mapping; /* The mapping being accessed */ |
| struct netfs_cache_resources cache_resources; |
| struct list_head subrequests; /* Requests to fetch I/O from disk or net */ |
| void *netfs_priv; /* Private data for the netfs */ |
| unsigned int debug_id; |
| atomic_t nr_rd_ops; /* Number of read ops in progress */ |
| atomic_t nr_wr_ops; /* Number of write ops in progress */ |
| size_t submitted; /* Amount submitted for I/O so far */ |
| size_t len; /* Length of the request */ |
| short error; /* 0 or error that occurred */ |
| loff_t i_size; /* Size of the file */ |
| loff_t start; /* Start position */ |
| pgoff_t no_unlock_folio; /* Don't unlock this folio after read */ |
| refcount_t usage; |
| unsigned long flags; |
| #define NETFS_RREQ_INCOMPLETE_IO 0 /* Some ioreqs terminated short or with error */ |
| #define NETFS_RREQ_WRITE_TO_CACHE 1 /* Need to write to the cache */ |
| #define NETFS_RREQ_NO_UNLOCK_FOLIO 2 /* Don't unlock no_unlock_folio on completion */ |
| #define NETFS_RREQ_DONT_UNLOCK_FOLIOS 3 /* Don't unlock the folios on completion */ |
| #define NETFS_RREQ_FAILED 4 /* The request failed */ |
| #define NETFS_RREQ_IN_PROGRESS 5 /* Unlocked when the request completes */ |
| const struct netfs_read_request_ops *netfs_ops; |
| }; |
| |
| /* |
| * Operations the network filesystem can/must provide to the helpers. |
| */ |
| struct netfs_read_request_ops { |
| bool (*is_cache_enabled)(struct inode *inode); |
| void (*init_rreq)(struct netfs_read_request *rreq, struct file *file); |
| int (*begin_cache_operation)(struct netfs_read_request *rreq); |
| void (*expand_readahead)(struct netfs_read_request *rreq); |
| bool (*clamp_length)(struct netfs_read_subrequest *subreq); |
| void (*issue_op)(struct netfs_read_subrequest *subreq); |
| bool (*is_still_valid)(struct netfs_read_request *rreq); |
| int (*check_write_begin)(struct file *file, loff_t pos, unsigned len, |
| struct folio *folio, void **_fsdata); |
| void (*done)(struct netfs_read_request *rreq); |
| void (*cleanup)(struct address_space *mapping, void *netfs_priv); |
| }; |
| |
| /* |
| * Table of operations for access to a cache. This is obtained by |
| * rreq->ops->begin_cache_operation(). |
| */ |
| struct netfs_cache_ops { |
| /* End an operation */ |
| void (*end_operation)(struct netfs_cache_resources *cres); |
| |
| /* Read data from the cache */ |
| int (*read)(struct netfs_cache_resources *cres, |
| loff_t start_pos, |
| struct iov_iter *iter, |
| bool seek_data, |
| netfs_io_terminated_t term_func, |
| void *term_func_priv); |
| |
| /* Write data to the cache */ |
| int (*write)(struct netfs_cache_resources *cres, |
| loff_t start_pos, |
| struct iov_iter *iter, |
| netfs_io_terminated_t term_func, |
| void *term_func_priv); |
| |
| /* Expand readahead request */ |
| void (*expand_readahead)(struct netfs_cache_resources *cres, |
| loff_t *_start, size_t *_len, loff_t i_size); |
| |
| /* Prepare a read operation, shortening it to a cached/uncached |
| * boundary as appropriate. |
| */ |
| enum netfs_read_source (*prepare_read)(struct netfs_read_subrequest *subreq, |
| loff_t i_size); |
| |
| /* Prepare a write operation, working out what part of the write we can |
| * actually do. |
| */ |
| int (*prepare_write)(struct netfs_cache_resources *cres, |
| loff_t *_start, size_t *_len, loff_t i_size); |
| }; |
| |
| struct readahead_control; |
| extern void netfs_readahead(struct readahead_control *, |
| const struct netfs_read_request_ops *, |
| void *); |
| extern int netfs_readpage(struct file *, |
| struct folio *, |
| const struct netfs_read_request_ops *, |
| void *); |
| extern int netfs_write_begin(struct file *, struct address_space *, |
| loff_t, unsigned int, unsigned int, struct folio **, |
| void **, |
| const struct netfs_read_request_ops *, |
| void *); |
| |
| extern void netfs_subreq_terminated(struct netfs_read_subrequest *, ssize_t, bool); |
| extern void netfs_stats_show(struct seq_file *); |
| |
| #endif /* _LINUX_NETFS_H */ |