1 /* NFS FS-Cache index structure definition
3 * Copyright (C) 2008 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
16 #include <linux/nfs_fs.h>
17 #include <linux/nfs_fs_sb.h>
18 #include <linux/in6.h>
23 #define NFSDBG_FACILITY NFSDBG_FSCACHE
26 * Define the NFS filesystem for FS-Cache. Upon registration FS-Cache sticks
27 * the cookie for the top-level index object for NFS into here. The top-level
28 * index can than have other cache objects inserted into it.
30 struct fscache_netfs nfs_fscache_netfs
= {
36 * Register NFS for caching
38 int nfs_fscache_register(void)
40 return fscache_register_netfs(&nfs_fscache_netfs
);
44 * Unregister NFS for caching
46 void nfs_fscache_unregister(void)
48 fscache_unregister_netfs(&nfs_fscache_netfs
);
52 * Layout of the key for an NFS server cache object.
54 struct nfs_server_key
{
55 uint16_t nfsversion
; /* NFS protocol version */
56 uint16_t family
; /* address family */
57 uint16_t port
; /* IP port */
59 struct in_addr ipv4_addr
; /* IPv4 address */
60 struct in6_addr ipv6_addr
; /* IPv6 address */
65 * Generate a key to describe a server in the main NFS index
66 * - We return the length of the key, or 0 if we can't generate one
68 static uint16_t nfs_server_get_key(const void *cookie_netfs_data
,
69 void *buffer
, uint16_t bufmax
)
71 const struct nfs_client
*clp
= cookie_netfs_data
;
72 const struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*) &clp
->cl_addr
;
73 const struct sockaddr_in
*sin
= (struct sockaddr_in
*) &clp
->cl_addr
;
74 struct nfs_server_key
*key
= buffer
;
75 uint16_t len
= sizeof(struct nfs_server_key
);
77 key
->nfsversion
= clp
->rpc_ops
->version
;
78 key
->family
= clp
->cl_addr
.ss_family
;
82 switch (clp
->cl_addr
.ss_family
) {
84 key
->port
= sin
->sin_port
;
85 key
->addr
[0].ipv4_addr
= sin
->sin_addr
;
86 len
+= sizeof(key
->addr
[0].ipv4_addr
);
90 key
->port
= sin6
->sin6_port
;
91 key
->addr
[0].ipv6_addr
= sin6
->sin6_addr
;
92 len
+= sizeof(key
->addr
[0].ipv6_addr
);
96 printk(KERN_WARNING
"NFS: Unknown network family '%d'\n",
97 clp
->cl_addr
.ss_family
);
106 * Define the server object for FS-Cache. This is used to describe a server
107 * object to fscache_acquire_cookie(). It is keyed by the NFS protocol and
108 * server address parameters.
110 const struct fscache_cookie_def nfs_fscache_server_index_def
= {
111 .name
= "NFS.server",
112 .type
= FSCACHE_COOKIE_TYPE_INDEX
,
113 .get_key
= nfs_server_get_key
,
117 * Generate a key to describe a superblock key in the main NFS index
119 static uint16_t nfs_super_get_key(const void *cookie_netfs_data
,
120 void *buffer
, uint16_t bufmax
)
122 const struct nfs_fscache_key
*key
;
123 const struct nfs_server
*nfss
= cookie_netfs_data
;
126 key
= nfss
->fscache_key
;
127 len
= sizeof(key
->key
) + key
->key
.uniq_len
;
131 memcpy(buffer
, &key
->key
, sizeof(key
->key
));
132 memcpy(buffer
+ sizeof(key
->key
),
133 key
->key
.uniquifier
, key
->key
.uniq_len
);
140 * Define the superblock object for FS-Cache. This is used to describe a
141 * superblock object to fscache_acquire_cookie(). It is keyed by all the NFS
142 * parameters that might cause a separate superblock.
144 const struct fscache_cookie_def nfs_fscache_super_index_def
= {
146 .type
= FSCACHE_COOKIE_TYPE_INDEX
,
147 .get_key
= nfs_super_get_key
,