]> git.proxmox.com Git - ceph.git/blob - ceph/src/mds/Server.h
import ceph quincy 17.2.6
[ceph.git] / ceph / src / mds / Server.h
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3 /*
4 * Ceph - scalable distributed file system
5 *
6 * Copyright (C) 2004-2006 Sage Weil <sage@newdream.net>
7 *
8 * This is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License version 2.1, as published by the Free Software
11 * Foundation. See file COPYING.
12 *
13 */
14
15 #ifndef CEPH_MDS_SERVER_H
16 #define CEPH_MDS_SERVER_H
17
18 #include <string_view>
19
20 #include <common/DecayCounter.h>
21
22 #include "include/common_fwd.h"
23
24 #include "messages/MClientReconnect.h"
25 #include "messages/MClientReply.h"
26 #include "messages/MClientRequest.h"
27 #include "messages/MClientSession.h"
28 #include "messages/MClientSnap.h"
29 #include "messages/MClientReclaim.h"
30 #include "messages/MClientReclaimReply.h"
31 #include "messages/MLock.h"
32
33 #include "CInode.h"
34 #include "MDSRank.h"
35 #include "Mutation.h"
36 #include "MDSContext.h"
37
38 class OSDMap;
39 class LogEvent;
40 class EMetaBlob;
41 class EUpdate;
42 class MDLog;
43 struct SnapInfo;
44 class MetricsHandler;
45
46 enum {
47 l_mdss_first = 1000,
48 l_mdss_dispatch_client_request,
49 l_mdss_dispatch_peer_request,
50 l_mdss_handle_client_request,
51 l_mdss_handle_client_session,
52 l_mdss_handle_peer_request,
53 l_mdss_req_create_latency,
54 l_mdss_req_getattr_latency,
55 l_mdss_req_getfilelock_latency,
56 l_mdss_req_link_latency,
57 l_mdss_req_lookup_latency,
58 l_mdss_req_lookuphash_latency,
59 l_mdss_req_lookupino_latency,
60 l_mdss_req_lookupname_latency,
61 l_mdss_req_lookupparent_latency,
62 l_mdss_req_lookupsnap_latency,
63 l_mdss_req_lssnap_latency,
64 l_mdss_req_mkdir_latency,
65 l_mdss_req_mknod_latency,
66 l_mdss_req_mksnap_latency,
67 l_mdss_req_open_latency,
68 l_mdss_req_readdir_latency,
69 l_mdss_req_rename_latency,
70 l_mdss_req_renamesnap_latency,
71 l_mdss_req_rmdir_latency,
72 l_mdss_req_rmsnap_latency,
73 l_mdss_req_rmxattr_latency,
74 l_mdss_req_setattr_latency,
75 l_mdss_req_setdirlayout_latency,
76 l_mdss_req_setfilelock_latency,
77 l_mdss_req_setlayout_latency,
78 l_mdss_req_setxattr_latency,
79 l_mdss_req_symlink_latency,
80 l_mdss_req_unlink_latency,
81 l_mdss_cap_revoke_eviction,
82 l_mdss_cap_acquisition_throttle,
83 l_mdss_req_getvxattr_latency,
84 l_mdss_last,
85 };
86
87 class Server {
88 public:
89 using clock = ceph::coarse_mono_clock;
90 using time = ceph::coarse_mono_time;
91
92 enum class RecallFlags : uint64_t {
93 NONE = 0,
94 STEADY = (1<<0),
95 ENFORCE_MAX = (1<<1),
96 TRIM = (1<<2),
97 ENFORCE_LIVENESS = (1<<3),
98 };
99
100 explicit Server(MDSRank *m, MetricsHandler *metrics_handler);
101 ~Server() {
102 g_ceph_context->get_perfcounters_collection()->remove(logger);
103 delete logger;
104 delete reconnect_done;
105 }
106
107 void create_logger();
108
109 // message handler
110 void dispatch(const cref_t<Message> &m);
111
112 void handle_osd_map();
113
114 // -- sessions and recovery --
115 bool waiting_for_reconnect(client_t c) const;
116 void dump_reconnect_status(Formatter *f) const;
117
118 time last_recalled() const {
119 return last_recall_state;
120 }
121
122 void handle_client_session(const cref_t<MClientSession> &m);
123 void _session_logged(Session *session, uint64_t state_seq, bool open, version_t pv,
124 const interval_set<inodeno_t>& inos_to_free, version_t piv,
125 const interval_set<inodeno_t>& inos_to_purge, LogSegment *ls);
126 version_t prepare_force_open_sessions(std::map<client_t,entity_inst_t> &cm,
127 std::map<client_t,client_metadata_t>& cmm,
128 std::map<client_t,std::pair<Session*,uint64_t> >& smap);
129 void finish_force_open_sessions(const std::map<client_t,std::pair<Session*,uint64_t> >& smap,
130 bool dec_import=true);
131 void flush_client_sessions(std::set<client_t>& client_set, MDSGatherBuilder& gather);
132 void finish_flush_session(Session *session, version_t seq);
133 void terminate_sessions();
134 void find_idle_sessions();
135
136 void kill_session(Session *session, Context *on_safe);
137 size_t apply_blocklist();
138 void journal_close_session(Session *session, int state, Context *on_safe);
139
140 size_t get_num_pending_reclaim() const { return client_reclaim_gather.size(); }
141 Session *find_session_by_uuid(std::string_view uuid);
142 void reclaim_session(Session *session, const cref_t<MClientReclaim> &m);
143 void finish_reclaim_session(Session *session, const ref_t<MClientReclaimReply> &reply=nullptr);
144 void handle_client_reclaim(const cref_t<MClientReclaim> &m);
145
146 void reconnect_clients(MDSContext *reconnect_done_);
147 void handle_client_reconnect(const cref_t<MClientReconnect> &m);
148 void infer_supported_features(Session *session, client_metadata_t& client_metadata);
149 void update_required_client_features();
150
151 //void process_reconnect_cap(CInode *in, int from, ceph_mds_cap_reconnect& capinfo);
152 void reconnect_gather_finish();
153 void reconnect_tick();
154 void recover_filelocks(CInode *in, bufferlist locks, int64_t client);
155
156 std::pair<bool, uint64_t> recall_client_state(MDSGatherBuilder* gather, RecallFlags=RecallFlags::NONE);
157 void force_clients_readonly();
158
159 // -- requests --
160 void handle_client_request(const cref_t<MClientRequest> &m);
161
162 void journal_and_reply(MDRequestRef& mdr, CInode *tracei, CDentry *tracedn,
163 LogEvent *le, MDSLogContextBase *fin);
164 void submit_mdlog_entry(LogEvent *le, MDSLogContextBase *fin,
165 MDRequestRef& mdr, std::string_view event);
166 void dispatch_client_request(MDRequestRef& mdr);
167 void perf_gather_op_latency(const cref_t<MClientRequest> &req, utime_t lat);
168 void early_reply(MDRequestRef& mdr, CInode *tracei, CDentry *tracedn);
169 void respond_to_request(MDRequestRef& mdr, int r = 0);
170 void set_trace_dist(const ref_t<MClientReply> &reply, CInode *in, CDentry *dn,
171 MDRequestRef& mdr);
172
173 void handle_peer_request(const cref_t<MMDSPeerRequest> &m);
174 void handle_peer_request_reply(const cref_t<MMDSPeerRequest> &m);
175 void dispatch_peer_request(MDRequestRef& mdr);
176 void handle_peer_auth_pin(MDRequestRef& mdr);
177 void handle_peer_auth_pin_ack(MDRequestRef& mdr, const cref_t<MMDSPeerRequest> &ack);
178
179 // some helpers
180 bool check_fragment_space(MDRequestRef& mdr, CDir *in);
181 bool check_dir_max_entries(MDRequestRef& mdr, CDir *in);
182 bool check_access(MDRequestRef& mdr, CInode *in, unsigned mask);
183 bool _check_access(Session *session, CInode *in, unsigned mask, int caller_uid, int caller_gid, int setattr_uid, int setattr_gid);
184 CDentry *prepare_stray_dentry(MDRequestRef& mdr, CInode *in);
185 CInode* prepare_new_inode(MDRequestRef& mdr, CDir *dir, inodeno_t useino, unsigned mode,
186 const file_layout_t *layout=nullptr);
187 void journal_allocated_inos(MDRequestRef& mdr, EMetaBlob *blob);
188 void apply_allocated_inos(MDRequestRef& mdr, Session *session);
189
190 void _try_open_ino(MDRequestRef& mdr, int r, inodeno_t ino);
191 CInode* rdlock_path_pin_ref(MDRequestRef& mdr, bool want_auth,
192 bool no_want_auth=false);
193 CDentry* rdlock_path_xlock_dentry(MDRequestRef& mdr, bool create,
194 bool okexist=false, bool want_layout=false);
195 std::pair<CDentry*, CDentry*>
196 rdlock_two_paths_xlock_destdn(MDRequestRef& mdr, bool xlock_srcdn);
197
198 CDir* try_open_auth_dirfrag(CInode *diri, frag_t fg, MDRequestRef& mdr);
199
200 // requests on existing inodes.
201 void handle_client_getattr(MDRequestRef& mdr, bool is_lookup);
202 void handle_client_lookup_ino(MDRequestRef& mdr,
203 bool want_parent, bool want_dentry);
204 void _lookup_snap_ino(MDRequestRef& mdr);
205 void _lookup_ino_2(MDRequestRef& mdr, int r);
206 void handle_client_readdir(MDRequestRef& mdr);
207 void handle_client_file_setlock(MDRequestRef& mdr);
208 void handle_client_file_readlock(MDRequestRef& mdr);
209
210 bool xlock_policylock(MDRequestRef& mdr, CInode *in,
211 bool want_layout=false, bool xlock_snaplock=false);
212 CInode* try_get_auth_inode(MDRequestRef& mdr, inodeno_t ino);
213 void handle_client_setattr(MDRequestRef& mdr);
214 void handle_client_setlayout(MDRequestRef& mdr);
215 void handle_client_setdirlayout(MDRequestRef& mdr);
216
217 int parse_quota_vxattr(std::string name, std::string value, quota_info_t *quota);
218 void create_quota_realm(CInode *in);
219 int parse_layout_vxattr_json(std::string name, std::string value,
220 const OSDMap& osdmap, file_layout_t *layout);
221 int parse_layout_vxattr_string(std::string name, std::string value, const OSDMap& osdmap,
222 file_layout_t *layout);
223 int parse_layout_vxattr(std::string name, std::string value, const OSDMap& osdmap,
224 file_layout_t *layout, bool validate=true);
225 int check_layout_vxattr(MDRequestRef& mdr,
226 std::string name,
227 std::string value,
228 file_layout_t *layout);
229 void handle_set_vxattr(MDRequestRef& mdr, CInode *cur);
230 void handle_remove_vxattr(MDRequestRef& mdr, CInode *cur);
231 void handle_client_getvxattr(MDRequestRef& mdr);
232 void handle_client_setxattr(MDRequestRef& mdr);
233 void handle_client_removexattr(MDRequestRef& mdr);
234
235 void handle_client_fsync(MDRequestRef& mdr);
236
237 bool is_unlink_pending(CDentry *dn);
238 void wait_for_pending_unlink(CDentry *dn, MDRequestRef& mdr);
239
240 // open
241 void handle_client_open(MDRequestRef& mdr);
242 void handle_client_openc(MDRequestRef& mdr); // O_CREAT variant.
243 void do_open_truncate(MDRequestRef& mdr, int cmode); // O_TRUNC variant.
244
245 // namespace changes
246 void handle_client_mknod(MDRequestRef& mdr);
247 void handle_client_mkdir(MDRequestRef& mdr);
248 void handle_client_symlink(MDRequestRef& mdr);
249
250 // link
251 void handle_client_link(MDRequestRef& mdr);
252 void _link_local(MDRequestRef& mdr, CDentry *dn, CInode *targeti, SnapRealm *target_realm);
253 void _link_local_finish(MDRequestRef& mdr, CDentry *dn, CInode *targeti,
254 version_t, version_t, bool);
255
256 void _link_remote(MDRequestRef& mdr, bool inc, CDentry *dn, CInode *targeti);
257 void _link_remote_finish(MDRequestRef& mdr, bool inc, CDentry *dn, CInode *targeti,
258 version_t);
259
260 void handle_peer_link_prep(MDRequestRef& mdr);
261 void _logged_peer_link(MDRequestRef& mdr, CInode *targeti, bool adjust_realm);
262 void _commit_peer_link(MDRequestRef& mdr, int r, CInode *targeti);
263 void _committed_peer(MDRequestRef& mdr); // use for rename, too
264 void handle_peer_link_prep_ack(MDRequestRef& mdr, const cref_t<MMDSPeerRequest> &m);
265 void do_link_rollback(bufferlist &rbl, mds_rank_t leader, MDRequestRef& mdr);
266 void _link_rollback_finish(MutationRef& mut, MDRequestRef& mdr,
267 std::map<client_t,ref_t<MClientSnap>>& split);
268
269 // unlink
270 void handle_client_unlink(MDRequestRef& mdr);
271 bool _dir_is_nonempty_unlocked(MDRequestRef& mdr, CInode *rmdiri);
272 bool _dir_is_nonempty(MDRequestRef& mdr, CInode *rmdiri);
273 void _unlink_local(MDRequestRef& mdr, CDentry *dn, CDentry *straydn);
274 void _unlink_local_finish(MDRequestRef& mdr,
275 CDentry *dn, CDentry *straydn,
276 version_t);
277 bool _rmdir_prepare_witness(MDRequestRef& mdr, mds_rank_t who, std::vector<CDentry*>& trace, CDentry *straydn);
278 void handle_peer_rmdir_prep(MDRequestRef& mdr);
279 void _logged_peer_rmdir(MDRequestRef& mdr, CDentry *srcdn, CDentry *straydn);
280 void _commit_peer_rmdir(MDRequestRef& mdr, int r, CDentry *straydn);
281 void handle_peer_rmdir_prep_ack(MDRequestRef& mdr, const cref_t<MMDSPeerRequest> &ack);
282 void do_rmdir_rollback(bufferlist &rbl, mds_rank_t leader, MDRequestRef& mdr);
283 void _rmdir_rollback_finish(MDRequestRef& mdr, metareqid_t reqid, CDentry *dn, CDentry *straydn);
284
285 // rename
286 void handle_client_rename(MDRequestRef& mdr);
287 void _rename_finish(MDRequestRef& mdr,
288 CDentry *srcdn, CDentry *destdn, CDentry *straydn);
289
290 void handle_client_lssnap(MDRequestRef& mdr);
291 void handle_client_mksnap(MDRequestRef& mdr);
292 void _mksnap_finish(MDRequestRef& mdr, CInode *diri, SnapInfo &info);
293 void handle_client_rmsnap(MDRequestRef& mdr);
294 void _rmsnap_finish(MDRequestRef& mdr, CInode *diri, snapid_t snapid);
295 void handle_client_renamesnap(MDRequestRef& mdr);
296 void _renamesnap_finish(MDRequestRef& mdr, CInode *diri, snapid_t snapid);
297
298 // helpers
299 bool _rename_prepare_witness(MDRequestRef& mdr, mds_rank_t who, std::set<mds_rank_t> &witnesse,
300 std::vector<CDentry*>& srctrace, std::vector<CDentry*>& dsttrace, CDentry *straydn);
301 version_t _rename_prepare_import(MDRequestRef& mdr, CDentry *srcdn, bufferlist *client_map_bl);
302 bool _need_force_journal(CInode *diri, bool empty);
303 void _rename_prepare(MDRequestRef& mdr,
304 EMetaBlob *metablob, bufferlist *client_map_bl,
305 CDentry *srcdn, CDentry *destdn, std::string_view alternate_name,
306 CDentry *straydn);
307 /* set not_journaling=true if you're going to discard the results --
308 * this bypasses the asserts to make sure we're journaling the right
309 * things on the right nodes */
310 void _rename_apply(MDRequestRef& mdr, CDentry *srcdn, CDentry *destdn, CDentry *straydn);
311
312 // slaving
313 void handle_peer_rename_prep(MDRequestRef& mdr);
314 void handle_peer_rename_prep_ack(MDRequestRef& mdr, const cref_t<MMDSPeerRequest> &m);
315 void handle_peer_rename_notify_ack(MDRequestRef& mdr, const cref_t<MMDSPeerRequest> &m);
316 void _peer_rename_sessions_flushed(MDRequestRef& mdr);
317 void _logged_peer_rename(MDRequestRef& mdr, CDentry *srcdn, CDentry *destdn, CDentry *straydn);
318 void _commit_peer_rename(MDRequestRef& mdr, int r, CDentry *srcdn, CDentry *destdn, CDentry *straydn);
319 void do_rename_rollback(bufferlist &rbl, mds_rank_t leader, MDRequestRef& mdr, bool finish_mdr=false);
320 void _rename_rollback_finish(MutationRef& mut, MDRequestRef& mdr, CDentry *srcdn, version_t srcdnpv,
321 CDentry *destdn, CDentry *staydn, std::map<client_t,ref_t<MClientSnap>> splits[2],
322 bool finish_mdr);
323
324 void evict_cap_revoke_non_responders();
325 void handle_conf_change(const std::set<std::string>& changed);
326
327 bool terminating_sessions = false;
328
329 std::set<client_t> client_reclaim_gather;
330
331 private:
332 friend class MDSContinuation;
333 friend class ServerContext;
334 friend class ServerLogContext;
335 friend class Batch_Getattr_Lookup;
336
337 // placeholder for validation handler to store xattr specific
338 // data
339 struct XattrInfo {
340 virtual ~XattrInfo() {
341 }
342 };
343
344 struct MirrorXattrInfo : XattrInfo {
345 std::string cluster_id;
346 std::string fs_id;
347
348 static const std::string MIRROR_INFO_REGEX;
349 static const std::string CLUSTER_ID;
350 static const std::string FS_ID;
351
352 MirrorXattrInfo(std::string_view cluster_id,
353 std::string_view fs_id)
354 : cluster_id(cluster_id),
355 fs_id(fs_id) {
356 }
357 };
358
359 struct XattrOp {
360 int op;
361 std::string xattr_name;
362 const bufferlist &xattr_value;
363 int flags = 0;
364
365 std::unique_ptr<XattrInfo> xinfo;
366
367 XattrOp(int op, std::string_view xattr_name, const bufferlist &xattr_value, int flags)
368 : op(op),
369 xattr_name(xattr_name),
370 xattr_value(xattr_value),
371 flags (flags) {
372 }
373 };
374
375 struct XattrHandler {
376 const std::string xattr_name;
377 const std::string description;
378
379 // basic checks are to be done in this handler. return -errno to
380 // reject xattr request (set or remove), zero to proceed. handlers
381 // may parse xattr value for verification if needed and have an
382 // option to store custom data in XattrOp::xinfo.
383 int (Server::*validate)(CInode *cur, const InodeStoreBase::xattr_map_const_ptr xattrs,
384 XattrOp *xattr_op);
385
386 // set xattr for an inode in xattr_map
387 void (Server::*setxattr)(CInode *cur, InodeStoreBase::xattr_map_ptr xattrs,
388 const XattrOp &xattr_op);
389
390 // remove xattr for an inode from xattr_map
391 void (Server::*removexattr)(CInode *cur, InodeStoreBase::xattr_map_ptr xattrs,
392 const XattrOp &xattr_op);
393 };
394
395 inline static const std::string DEFAULT_HANDLER = "<default>";
396 static const XattrHandler xattr_handlers[];
397
398 const XattrHandler* get_xattr_or_default_handler(std::string_view xattr_name);
399
400 // generic variant to set/remove xattr in/from xattr_map
401 int xattr_validate(CInode *cur, const InodeStoreBase::xattr_map_const_ptr xattrs,
402 const std::string &xattr_name, int op, int flags);
403 void xattr_set(InodeStoreBase::xattr_map_ptr xattrs, const std::string &xattr_name,
404 const bufferlist &xattr_value);
405 void xattr_rm(InodeStoreBase::xattr_map_ptr xattrs, const std::string &xattr_name);
406
407 // default xattr handlers
408 int default_xattr_validate(CInode *cur, const InodeStoreBase::xattr_map_const_ptr xattrs,
409 XattrOp *xattr_op);
410 void default_setxattr_handler(CInode *cur, InodeStoreBase::xattr_map_ptr xattrs,
411 const XattrOp &xattr_op);
412 void default_removexattr_handler(CInode *cur, InodeStoreBase::xattr_map_ptr xattrs,
413 const XattrOp &xattr_op);
414
415 // mirror info xattr handler
416 int parse_mirror_info_xattr(const std::string &name, const std::string &value,
417 std::string &cluster_id, std::string &fs_id);
418 int mirror_info_xattr_validate(CInode *cur, const InodeStoreBase::xattr_map_const_ptr xattrs,
419 XattrOp *xattr_op);
420 void mirror_info_setxattr_handler(CInode *cur, InodeStoreBase::xattr_map_ptr xattrs,
421 const XattrOp &xattr_op);
422 void mirror_info_removexattr_handler(CInode *cur, InodeStoreBase::xattr_map_ptr xattrs,
423 const XattrOp &xattr_op);
424
425 static bool is_ceph_vxattr(std::string_view xattr_name) {
426 return xattr_name.rfind("ceph.dir.layout", 0) == 0 ||
427 xattr_name.rfind("ceph.file.layout", 0) == 0 ||
428 xattr_name.rfind("ceph.quota", 0) == 0 ||
429 xattr_name == "ceph.dir.subvolume" ||
430 xattr_name == "ceph.dir.pin" ||
431 xattr_name == "ceph.dir.pin.random" ||
432 xattr_name == "ceph.dir.pin.distributed";
433 }
434
435 static bool is_ceph_dir_vxattr(std::string_view xattr_name) {
436 return (xattr_name == "ceph.dir.layout" ||
437 xattr_name == "ceph.dir.layout.json" ||
438 xattr_name == "ceph.dir.layout.object_size" ||
439 xattr_name == "ceph.dir.layout.stripe_unit" ||
440 xattr_name == "ceph.dir.layout.stripe_count" ||
441 xattr_name == "ceph.dir.layout.pool" ||
442 xattr_name == "ceph.dir.layout.pool_name" ||
443 xattr_name == "ceph.dir.layout.pool_id" ||
444 xattr_name == "ceph.dir.layout.pool_namespace" ||
445 xattr_name == "ceph.dir.pin" ||
446 xattr_name == "ceph.dir.pin.random" ||
447 xattr_name == "ceph.dir.pin.distributed");
448 }
449
450 static bool is_ceph_file_vxattr(std::string_view xattr_name) {
451 return (xattr_name == "ceph.file.layout" ||
452 xattr_name == "ceph.file.layout.json" ||
453 xattr_name == "ceph.file.layout.object_size" ||
454 xattr_name == "ceph.file.layout.stripe_unit" ||
455 xattr_name == "ceph.file.layout.stripe_count" ||
456 xattr_name == "ceph.file.layout.pool" ||
457 xattr_name == "ceph.file.layout.pool_name" ||
458 xattr_name == "ceph.file.layout.pool_id" ||
459 xattr_name == "ceph.file.layout.pool_namespace");
460 }
461
462 static bool is_allowed_ceph_xattr(std::string_view xattr_name) {
463 // not a ceph xattr -- allow!
464 if (xattr_name.rfind("ceph.", 0) != 0) {
465 return true;
466 }
467
468 return xattr_name == "ceph.mirror.info" ||
469 xattr_name == "ceph.mirror.dirty_snap_id";
470 }
471
472 void reply_client_request(MDRequestRef& mdr, const ref_t<MClientReply> &reply);
473 void flush_session(Session *session, MDSGatherBuilder& gather);
474
475 MDSRank *mds;
476 MDCache *mdcache;
477 MDLog *mdlog;
478 PerfCounters *logger = nullptr;
479
480 // OSDMap full status, used to generate CEPHFS_ENOSPC on some operations
481 bool is_full = false;
482
483 // State for while in reconnect
484 MDSContext *reconnect_done = nullptr;
485 int failed_reconnects = 0;
486 bool reconnect_evicting = false; // true if I am waiting for evictions to complete
487 // before proceeding to reconnect_gather_finish
488 time reconnect_start = clock::zero();
489 time reconnect_last_seen = clock::zero();
490 std::set<client_t> client_reconnect_gather; // clients i need a reconnect msg from.
491 std::set<client_t> client_reconnect_denied; // clients whose reconnect msg have been denied .
492
493 feature_bitset_t supported_features;
494 feature_bitset_t supported_metric_spec;
495 feature_bitset_t required_client_features;
496
497 bool forward_all_requests_to_auth = false;
498 bool replay_unsafe_with_closed_session = false;
499 double cap_revoke_eviction_timeout = 0;
500 uint64_t max_snaps_per_dir = 100;
501 unsigned delegate_inos_pct = 0;
502 uint64_t dir_max_entries = 0;
503 int64_t bal_fragment_size_max = 0;
504
505 DecayCounter recall_throttle;
506 time last_recall_state;
507
508 MetricsHandler *metrics_handler;
509
510 // Cache cap acquisition throttle configs
511 uint64_t max_caps_per_client;
512 uint64_t cap_acquisition_throttle;
513 double max_caps_throttle_ratio;
514 double caps_throttle_retry_request_timeout;
515
516 size_t alternate_name_max = g_conf().get_val<Option::size_t>("mds_alternate_name_max");
517 };
518
519 static inline constexpr auto operator|(Server::RecallFlags a, Server::RecallFlags b) {
520 using T = std::underlying_type<Server::RecallFlags>::type;
521 return static_cast<Server::RecallFlags>(static_cast<T>(a) | static_cast<T>(b));
522 }
523 static inline constexpr auto operator&(Server::RecallFlags a, Server::RecallFlags b) {
524 using T = std::underlying_type<Server::RecallFlags>::type;
525 return static_cast<Server::RecallFlags>(static_cast<T>(a) & static_cast<T>(b));
526 }
527 static inline std::ostream& operator<<(std::ostream& os, const Server::RecallFlags& f) {
528 using T = std::underlying_type<Server::RecallFlags>::type;
529 return os << "0x" << std::hex << static_cast<T>(f) << std::dec;
530 }
531 static inline constexpr bool operator!(const Server::RecallFlags& f) {
532 using T = std::underlying_type<Server::RecallFlags>::type;
533 return static_cast<T>(f) == static_cast<T>(0);
534 }
535 #endif