Jeff Layton | 7ea34ac | 2012-03-21 09:52:05 -0400 | [diff] [blame] | 1 | /* |
| 2 | * per net namespace data structures for nfsd |
| 3 | * |
| 4 | * Copyright (C) 2012, Jeff Layton <jlayton@redhat.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the Free |
| 8 | * Software Foundation; either version 2 of the License, or (at your option) |
| 9 | * any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 14 | * more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License along with |
| 17 | * this program; if not, write to the Free Software Foundation, Inc., 51 |
| 18 | * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 19 | */ |
| 20 | |
| 21 | #ifndef __NFSD_NETNS_H__ |
| 22 | #define __NFSD_NETNS_H__ |
| 23 | |
| 24 | #include <net/net_namespace.h> |
| 25 | #include <net/netns/generic.h> |
| 26 | |
Stanislav Kinsbursky | 52e19c0 | 2012-11-14 18:21:16 +0300 | [diff] [blame] | 27 | /* Hash tables for nfs4_clientid state */ |
| 28 | #define CLIENT_HASH_BITS 4 |
| 29 | #define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS) |
| 30 | #define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1) |
| 31 | |
Stanislav Kinsbursky | 1872de0 | 2012-11-14 18:21:51 +0300 | [diff] [blame] | 32 | #define SESSION_HASH_SIZE 512 |
| 33 | |
Jeff Layton | 7ea34ac | 2012-03-21 09:52:05 -0400 | [diff] [blame] | 34 | struct cld_net; |
Stanislav Kinsbursky | 9a9c647 | 2012-12-04 14:29:27 +0300 | [diff] [blame] | 35 | struct nfsd4_client_tracking_ops; |
Jeff Layton | 7ea34ac | 2012-03-21 09:52:05 -0400 | [diff] [blame] | 36 | |
Jeff Layton | 14a571a | 2014-08-05 15:13:30 -0400 | [diff] [blame] | 37 | /* |
| 38 | * Represents a nfsd "container". With respect to nfsv4 state tracking, the |
| 39 | * fields of interest are the *_id_hashtbls and the *_name_tree. These track |
| 40 | * the nfs4_client objects by either short or long form clientid. |
| 41 | * |
| 42 | * Each nfsd_net runs a nfs4_laundromat workqueue job when necessary to clean |
| 43 | * up expired clients and delegations within the container. |
| 44 | */ |
Jeff Layton | 7ea34ac | 2012-03-21 09:52:05 -0400 | [diff] [blame] | 45 | struct nfsd_net { |
| 46 | struct cld_net *cld_net; |
Stanislav Kinsbursky | b3853e0 | 2012-04-11 15:13:21 +0400 | [diff] [blame] | 47 | |
Stanislav Kinsbursky | e5f06f7 | 2012-04-11 15:13:28 +0400 | [diff] [blame] | 48 | struct cache_detail *svc_expkey_cache; |
Stanislav Kinsbursky | b3853e0 | 2012-04-11 15:13:21 +0400 | [diff] [blame] | 49 | struct cache_detail *svc_export_cache; |
Stanislav Kinsbursky | c2e76ef | 2012-04-11 17:32:51 +0400 | [diff] [blame] | 50 | |
| 51 | struct cache_detail *idtoname_cache; |
Stanislav Kinsbursky | 9e75a4d | 2012-04-11 17:32:58 +0400 | [diff] [blame] | 52 | struct cache_detail *nametoid_cache; |
Stanislav Kinsbursky | 5e1533c | 2012-07-25 16:56:58 +0400 | [diff] [blame] | 53 | |
| 54 | struct lock_manager nfsd4_manager; |
Stanislav Kinsbursky | a51c84e | 2012-07-25 16:57:37 +0400 | [diff] [blame] | 55 | bool grace_ended; |
Stanislav Kinsbursky | 2c142ba | 2012-07-25 16:57:45 +0400 | [diff] [blame] | 56 | time_t boot_time; |
Stanislav Kinsbursky | 52e19c0 | 2012-11-14 18:21:16 +0300 | [diff] [blame] | 57 | |
| 58 | /* |
| 59 | * reclaim_str_hashtbl[] holds known client info from previous reset/reboot |
| 60 | * used in reboot/reset lease grace period processing |
Stanislav Kinsbursky | 382a62e | 2012-11-14 18:21:26 +0300 | [diff] [blame] | 61 | * |
| 62 | * conf_id_hashtbl[], and conf_name_tree hold confirmed |
| 63 | * setclientid_confirmed info. |
Stanislav Kinsbursky | a99454a | 2012-11-14 18:21:36 +0300 | [diff] [blame] | 64 | * |
| 65 | * unconf_str_hastbl[] and unconf_name_tree hold unconfirmed |
| 66 | * setclientid info. |
Stanislav Kinsbursky | 52e19c0 | 2012-11-14 18:21:16 +0300 | [diff] [blame] | 67 | */ |
| 68 | struct list_head *reclaim_str_hashtbl; |
| 69 | int reclaim_str_hashtbl_size; |
Stanislav Kinsbursky | 8daae4d | 2012-11-14 18:21:21 +0300 | [diff] [blame] | 70 | struct list_head *conf_id_hashtbl; |
Stanislav Kinsbursky | 382a62e | 2012-11-14 18:21:26 +0300 | [diff] [blame] | 71 | struct rb_root conf_name_tree; |
Stanislav Kinsbursky | 0a7ec37 | 2012-11-14 18:21:31 +0300 | [diff] [blame] | 72 | struct list_head *unconf_id_hashtbl; |
Stanislav Kinsbursky | a99454a | 2012-11-14 18:21:36 +0300 | [diff] [blame] | 73 | struct rb_root unconf_name_tree; |
Stanislav Kinsbursky | 1872de0 | 2012-11-14 18:21:51 +0300 | [diff] [blame] | 74 | struct list_head *sessionid_hashtbl; |
Stanislav Kinsbursky | 5ed58bb | 2012-11-14 18:21:56 +0300 | [diff] [blame] | 75 | /* |
| 76 | * client_lru holds client queue ordered by nfs4_client.cl_time |
| 77 | * for lease renewal. |
Stanislav Kinsbursky | 73758fed | 2012-11-14 18:22:01 +0300 | [diff] [blame] | 78 | * |
| 79 | * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time |
| 80 | * for last close replay. |
| 81 | * |
| 82 | * All of the above fields are protected by the client_mutex. |
Stanislav Kinsbursky | 5ed58bb | 2012-11-14 18:21:56 +0300 | [diff] [blame] | 83 | */ |
| 84 | struct list_head client_lru; |
Stanislav Kinsbursky | 73758fed | 2012-11-14 18:22:01 +0300 | [diff] [blame] | 85 | struct list_head close_lru; |
J. Bruce Fields | e8c69d1 | 2013-03-21 15:19:33 -0400 | [diff] [blame] | 86 | struct list_head del_recall_lru; |
Jeff Layton | 0cc11a6 | 2016-10-20 09:34:31 -0400 | [diff] [blame] | 87 | |
| 88 | /* protected by blocked_locks_lock */ |
Jeff Layton | 7919d0a | 2016-09-16 16:28:25 -0400 | [diff] [blame] | 89 | struct list_head blocked_locks_lru; |
Stanislav Kinsbursky | 0912128 | 2012-11-14 18:22:17 +0300 | [diff] [blame] | 90 | |
| 91 | struct delayed_work laundromat_work; |
Stanislav Kinsbursky | c9a4962 | 2012-11-26 15:21:58 +0300 | [diff] [blame] | 92 | |
| 93 | /* client_lock protects the client lru list and session hash table */ |
| 94 | spinlock_t client_lock; |
Stanislav Kinsbursky | 3a07336 | 2012-11-26 16:16:25 +0300 | [diff] [blame] | 95 | |
Jeff Layton | 0cc11a6 | 2016-10-20 09:34:31 -0400 | [diff] [blame] | 96 | /* protects blocked_locks_lru */ |
| 97 | spinlock_t blocked_locks_lock; |
| 98 | |
Stanislav Kinsbursky | 3a07336 | 2012-11-26 16:16:25 +0300 | [diff] [blame] | 99 | struct file *rec_file; |
Stanislav Kinsbursky | f141f79 | 2012-11-26 16:16:30 +0300 | [diff] [blame] | 100 | bool in_grace; |
Julia Lawall | 7c582e4 | 2015-11-22 08:22:10 +0100 | [diff] [blame] | 101 | const struct nfsd4_client_tracking_ops *client_tracking_ops; |
Stanislav Kinsbursky | 3d73371 | 2012-11-27 14:11:44 +0300 | [diff] [blame] | 102 | |
| 103 | time_t nfsd4_lease; |
Stanislav Kinsbursky | 5284b44 | 2012-11-27 14:11:49 +0300 | [diff] [blame] | 104 | time_t nfsd4_grace; |
Stanislav Kinsbursky | 2c2fe29 | 2012-12-06 14:23:14 +0300 | [diff] [blame] | 105 | |
| 106 | bool nfsd_net_up; |
Kinglong Mee | 8ef6671 | 2013-12-31 13:17:30 +0800 | [diff] [blame] | 107 | bool lockd_up; |
Stanislav Kinsbursky | b9c0ef8 | 2012-12-06 14:23:19 +0300 | [diff] [blame] | 108 | |
Jeff Layton | 294ac32 | 2014-07-30 08:27:15 -0400 | [diff] [blame] | 109 | /* Time of server startup */ |
Stanislav Kinsbursky | b9c0ef8 | 2012-12-06 14:23:19 +0300 | [diff] [blame] | 110 | struct timeval nfssvc_boot; |
Stanislav Kinsbursky | 9dd9845 | 2012-12-06 14:23:24 +0300 | [diff] [blame] | 111 | |
Jeff Layton | 5b8db00 | 2014-07-02 16:11:22 -0400 | [diff] [blame] | 112 | /* |
| 113 | * Max number of connections this nfsd container will allow. Defaults |
| 114 | * to '0' which is means that it bases this on the number of threads. |
| 115 | */ |
| 116 | unsigned int max_connections; |
| 117 | |
Jeff Layton | 294ac32 | 2014-07-30 08:27:15 -0400 | [diff] [blame] | 118 | u32 clientid_counter; |
Kinglong Mee | 19311aa8 | 2015-07-18 07:33:31 +0800 | [diff] [blame] | 119 | u32 clverifier_counter; |
Jeff Layton | 294ac32 | 2014-07-30 08:27:15 -0400 | [diff] [blame] | 120 | |
Stanislav Kinsbursky | 9dd9845 | 2012-12-06 14:23:24 +0300 | [diff] [blame] | 121 | struct svc_serv *nfsd_serv; |
Jeff Layton | 7ea34ac | 2012-03-21 09:52:05 -0400 | [diff] [blame] | 122 | }; |
| 123 | |
Bryan Schumaker | 44e34da60 | 2012-11-29 11:40:39 -0500 | [diff] [blame] | 124 | /* Simple check to find out if a given net was properly initialized */ |
| 125 | #define nfsd_netns_ready(nn) ((nn)->sessionid_hashtbl) |
| 126 | |
Alexey Dobriyan | c7d03a0 | 2016-11-17 04:58:21 +0300 | [diff] [blame] | 127 | extern unsigned int nfsd_net_id; |
Jeff Layton | 7ea34ac | 2012-03-21 09:52:05 -0400 | [diff] [blame] | 128 | #endif /* __NFSD_NETNS_H__ */ |