]> git.proxmox.com Git - ceph.git/blob - ceph/src/mds/Server.h
33054bd067eb7db02f04a77f2516b4a909636e6d
[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 // open
238 void handle_client_open(MDRequestRef& mdr);
239 void handle_client_openc(MDRequestRef& mdr); // O_CREAT variant.
240 void do_open_truncate(MDRequestRef& mdr, int cmode); // O_TRUNC variant.
241
242 // namespace changes
243 void handle_client_mknod(MDRequestRef& mdr);
244 void handle_client_mkdir(MDRequestRef& mdr);
245 void handle_client_symlink(MDRequestRef& mdr);
246
247 // link
248 void handle_client_link(MDRequestRef& mdr);
249 void _link_local(MDRequestRef& mdr, CDentry *dn, CInode *targeti, SnapRealm *target_realm);
250 void _link_local_finish(MDRequestRef& mdr, CDentry *dn, CInode *targeti,
251 version_t, version_t, bool);
252
253 void _link_remote(MDRequestRef& mdr, bool inc, CDentry *dn, CInode *targeti);
254 void _link_remote_finish(MDRequestRef& mdr, bool inc, CDentry *dn, CInode *targeti,
255 version_t);
256
257 void handle_peer_link_prep(MDRequestRef& mdr);
258 void _logged_peer_link(MDRequestRef& mdr, CInode *targeti, bool adjust_realm);
259 void _commit_peer_link(MDRequestRef& mdr, int r, CInode *targeti);
260 void _committed_peer(MDRequestRef& mdr); // use for rename, too
261 void handle_peer_link_prep_ack(MDRequestRef& mdr, const cref_t<MMDSPeerRequest> &m);
262 void do_link_rollback(bufferlist &rbl, mds_rank_t leader, MDRequestRef& mdr);
263 void _link_rollback_finish(MutationRef& mut, MDRequestRef& mdr,
264 std::map<client_t,ref_t<MClientSnap>>& split);
265
266 // unlink
267 void handle_client_unlink(MDRequestRef& mdr);
268 bool _dir_is_nonempty_unlocked(MDRequestRef& mdr, CInode *rmdiri);
269 bool _dir_is_nonempty(MDRequestRef& mdr, CInode *rmdiri);
270 void _unlink_local(MDRequestRef& mdr, CDentry *dn, CDentry *straydn);
271 void _unlink_local_finish(MDRequestRef& mdr,
272 CDentry *dn, CDentry *straydn,
273 version_t);
274 bool _rmdir_prepare_witness(MDRequestRef& mdr, mds_rank_t who, std::vector<CDentry*>& trace, CDentry *straydn);
275 void handle_peer_rmdir_prep(MDRequestRef& mdr);
276 void _logged_peer_rmdir(MDRequestRef& mdr, CDentry *srcdn, CDentry *straydn);
277 void _commit_peer_rmdir(MDRequestRef& mdr, int r, CDentry *straydn);
278 void handle_peer_rmdir_prep_ack(MDRequestRef& mdr, const cref_t<MMDSPeerRequest> &ack);
279 void do_rmdir_rollback(bufferlist &rbl, mds_rank_t leader, MDRequestRef& mdr);
280 void _rmdir_rollback_finish(MDRequestRef& mdr, metareqid_t reqid, CDentry *dn, CDentry *straydn);
281
282 // rename
283 void handle_client_rename(MDRequestRef& mdr);
284 void _rename_finish(MDRequestRef& mdr,
285 CDentry *srcdn, CDentry *destdn, CDentry *straydn);
286
287 void handle_client_lssnap(MDRequestRef& mdr);
288 void handle_client_mksnap(MDRequestRef& mdr);
289 void _mksnap_finish(MDRequestRef& mdr, CInode *diri, SnapInfo &info);
290 void handle_client_rmsnap(MDRequestRef& mdr);
291 void _rmsnap_finish(MDRequestRef& mdr, CInode *diri, snapid_t snapid);
292 void handle_client_renamesnap(MDRequestRef& mdr);
293 void _renamesnap_finish(MDRequestRef& mdr, CInode *diri, snapid_t snapid);
294
295 // helpers
296 bool _rename_prepare_witness(MDRequestRef& mdr, mds_rank_t who, std::set<mds_rank_t> &witnesse,
297 std::vector<CDentry*>& srctrace, std::vector<CDentry*>& dsttrace, CDentry *straydn);
298 version_t _rename_prepare_import(MDRequestRef& mdr, CDentry *srcdn, bufferlist *client_map_bl);
299 bool _need_force_journal(CInode *diri, bool empty);
300 void _rename_prepare(MDRequestRef& mdr,
301 EMetaBlob *metablob, bufferlist *client_map_bl,
302 CDentry *srcdn, CDentry *destdn, std::string_view alternate_name,
303 CDentry *straydn);
304 /* set not_journaling=true if you're going to discard the results --
305 * this bypasses the asserts to make sure we're journaling the right
306 * things on the right nodes */
307 void _rename_apply(MDRequestRef& mdr, CDentry *srcdn, CDentry *destdn, CDentry *straydn);
308
309 // slaving
310 void handle_peer_rename_prep(MDRequestRef& mdr);
311 void handle_peer_rename_prep_ack(MDRequestRef& mdr, const cref_t<MMDSPeerRequest> &m);
312 void handle_peer_rename_notify_ack(MDRequestRef& mdr, const cref_t<MMDSPeerRequest> &m);
313 void _peer_rename_sessions_flushed(MDRequestRef& mdr);
314 void _logged_peer_rename(MDRequestRef& mdr, CDentry *srcdn, CDentry *destdn, CDentry *straydn);
315 void _commit_peer_rename(MDRequestRef& mdr, int r, CDentry *srcdn, CDentry *destdn, CDentry *straydn);
316 void do_rename_rollback(bufferlist &rbl, mds_rank_t leader, MDRequestRef& mdr, bool finish_mdr=false);
317 void _rename_rollback_finish(MutationRef& mut, MDRequestRef& mdr, CDentry *srcdn, version_t srcdnpv,
318 CDentry *destdn, CDentry *staydn, std::map<client_t,ref_t<MClientSnap>> splits[2],
319 bool finish_mdr);
320
321 void evict_cap_revoke_non_responders();
322 void handle_conf_change(const std::set<std::string>& changed);
323
324 bool terminating_sessions = false;
325
326 std::set<client_t> client_reclaim_gather;
327
328 private:
329 friend class MDSContinuation;
330 friend class ServerContext;
331 friend class ServerLogContext;
332 friend class Batch_Getattr_Lookup;
333
334 // placeholder for validation handler to store xattr specific
335 // data
336 struct XattrInfo {
337 virtual ~XattrInfo() {
338 }
339 };
340
341 struct MirrorXattrInfo : XattrInfo {
342 std::string cluster_id;
343 std::string fs_id;
344
345 static const std::string MIRROR_INFO_REGEX;
346 static const std::string CLUSTER_ID;
347 static const std::string FS_ID;
348
349 MirrorXattrInfo(std::string_view cluster_id,
350 std::string_view fs_id)
351 : cluster_id(cluster_id),
352 fs_id(fs_id) {
353 }
354 };
355
356 struct XattrOp {
357 int op;
358 std::string xattr_name;
359 const bufferlist &xattr_value;
360 int flags = 0;
361
362 std::unique_ptr<XattrInfo> xinfo;
363
364 XattrOp(int op, std::string_view xattr_name, const bufferlist &xattr_value, int flags)
365 : op(op),
366 xattr_name(xattr_name),
367 xattr_value(xattr_value),
368 flags (flags) {
369 }
370 };
371
372 struct XattrHandler {
373 const std::string xattr_name;
374 const std::string description;
375
376 // basic checks are to be done in this handler. return -errno to
377 // reject xattr request (set or remove), zero to proceed. handlers
378 // may parse xattr value for verification if needed and have an
379 // option to store custom data in XattrOp::xinfo.
380 int (Server::*validate)(CInode *cur, const InodeStoreBase::xattr_map_const_ptr xattrs,
381 XattrOp *xattr_op);
382
383 // set xattr for an inode in xattr_map
384 void (Server::*setxattr)(CInode *cur, InodeStoreBase::xattr_map_ptr xattrs,
385 const XattrOp &xattr_op);
386
387 // remove xattr for an inode from xattr_map
388 void (Server::*removexattr)(CInode *cur, InodeStoreBase::xattr_map_ptr xattrs,
389 const XattrOp &xattr_op);
390 };
391
392 inline static const std::string DEFAULT_HANDLER = "<default>";
393 static const XattrHandler xattr_handlers[];
394
395 const XattrHandler* get_xattr_or_default_handler(std::string_view xattr_name);
396
397 // generic variant to set/remove xattr in/from xattr_map
398 int xattr_validate(CInode *cur, const InodeStoreBase::xattr_map_const_ptr xattrs,
399 const std::string &xattr_name, int op, int flags);
400 void xattr_set(InodeStoreBase::xattr_map_ptr xattrs, const std::string &xattr_name,
401 const bufferlist &xattr_value);
402 void xattr_rm(InodeStoreBase::xattr_map_ptr xattrs, const std::string &xattr_name);
403
404 // default xattr handlers
405 int default_xattr_validate(CInode *cur, const InodeStoreBase::xattr_map_const_ptr xattrs,
406 XattrOp *xattr_op);
407 void default_setxattr_handler(CInode *cur, InodeStoreBase::xattr_map_ptr xattrs,
408 const XattrOp &xattr_op);
409 void default_removexattr_handler(CInode *cur, InodeStoreBase::xattr_map_ptr xattrs,
410 const XattrOp &xattr_op);
411
412 // mirror info xattr handler
413 int parse_mirror_info_xattr(const std::string &name, const std::string &value,
414 std::string &cluster_id, std::string &fs_id);
415 int mirror_info_xattr_validate(CInode *cur, const InodeStoreBase::xattr_map_const_ptr xattrs,
416 XattrOp *xattr_op);
417 void mirror_info_setxattr_handler(CInode *cur, InodeStoreBase::xattr_map_ptr xattrs,
418 const XattrOp &xattr_op);
419 void mirror_info_removexattr_handler(CInode *cur, InodeStoreBase::xattr_map_ptr xattrs,
420 const XattrOp &xattr_op);
421
422 static bool is_ceph_vxattr(std::string_view xattr_name) {
423 return xattr_name.rfind("ceph.dir.layout", 0) == 0 ||
424 xattr_name.rfind("ceph.file.layout", 0) == 0 ||
425 xattr_name.rfind("ceph.quota", 0) == 0 ||
426 xattr_name == "ceph.dir.subvolume" ||
427 xattr_name == "ceph.dir.pin" ||
428 xattr_name == "ceph.dir.pin.random" ||
429 xattr_name == "ceph.dir.pin.distributed";
430 }
431
432 static bool is_ceph_dir_vxattr(std::string_view xattr_name) {
433 return (xattr_name == "ceph.dir.layout" ||
434 xattr_name == "ceph.dir.layout.json" ||
435 xattr_name == "ceph.dir.layout.object_size" ||
436 xattr_name == "ceph.dir.layout.stripe_unit" ||
437 xattr_name == "ceph.dir.layout.stripe_count" ||
438 xattr_name == "ceph.dir.layout.pool" ||
439 xattr_name == "ceph.dir.layout.pool_name" ||
440 xattr_name == "ceph.dir.layout.pool_id" ||
441 xattr_name == "ceph.dir.layout.pool_namespace" ||
442 xattr_name == "ceph.dir.pin" ||
443 xattr_name == "ceph.dir.pin.random" ||
444 xattr_name == "ceph.dir.pin.distributed");
445 }
446
447 static bool is_ceph_file_vxattr(std::string_view xattr_name) {
448 return (xattr_name == "ceph.file.layout" ||
449 xattr_name == "ceph.file.layout.json" ||
450 xattr_name == "ceph.file.layout.object_size" ||
451 xattr_name == "ceph.file.layout.stripe_unit" ||
452 xattr_name == "ceph.file.layout.stripe_count" ||
453 xattr_name == "ceph.file.layout.pool" ||
454 xattr_name == "ceph.file.layout.pool_name" ||
455 xattr_name == "ceph.file.layout.pool_id" ||
456 xattr_name == "ceph.file.layout.pool_namespace");
457 }
458
459 static bool is_allowed_ceph_xattr(std::string_view xattr_name) {
460 // not a ceph xattr -- allow!
461 if (xattr_name.rfind("ceph.", 0) != 0) {
462 return true;
463 }
464
465 return xattr_name == "ceph.mirror.info" ||
466 xattr_name == "ceph.mirror.dirty_snap_id";
467 }
468
469 void reply_client_request(MDRequestRef& mdr, const ref_t<MClientReply> &reply);
470 void flush_session(Session *session, MDSGatherBuilder& gather);
471
472 MDSRank *mds;
473 MDCache *mdcache;
474 MDLog *mdlog;
475 PerfCounters *logger = nullptr;
476
477 // OSDMap full status, used to generate CEPHFS_ENOSPC on some operations
478 bool is_full = false;
479
480 // State for while in reconnect
481 MDSContext *reconnect_done = nullptr;
482 int failed_reconnects = 0;
483 bool reconnect_evicting = false; // true if I am waiting for evictions to complete
484 // before proceeding to reconnect_gather_finish
485 time reconnect_start = clock::zero();
486 time reconnect_last_seen = clock::zero();
487 std::set<client_t> client_reconnect_gather; // clients i need a reconnect msg from.
488 std::set<client_t> client_reconnect_denied; // clients whose reconnect msg have been denied .
489
490 feature_bitset_t supported_features;
491 feature_bitset_t supported_metric_spec;
492 feature_bitset_t required_client_features;
493
494 bool forward_all_requests_to_auth = false;
495 bool replay_unsafe_with_closed_session = false;
496 double cap_revoke_eviction_timeout = 0;
497 uint64_t max_snaps_per_dir = 100;
498 unsigned delegate_inos_pct = 0;
499 uint64_t dir_max_entries = 0;
500 int64_t bal_fragment_size_max = 0;
501
502 DecayCounter recall_throttle;
503 time last_recall_state;
504
505 MetricsHandler *metrics_handler;
506
507 // Cache cap acquisition throttle configs
508 uint64_t max_caps_per_client;
509 uint64_t cap_acquisition_throttle;
510 double max_caps_throttle_ratio;
511 double caps_throttle_retry_request_timeout;
512
513 size_t alternate_name_max = g_conf().get_val<Option::size_t>("mds_alternate_name_max");
514 };
515
516 static inline constexpr auto operator|(Server::RecallFlags a, Server::RecallFlags b) {
517 using T = std::underlying_type<Server::RecallFlags>::type;
518 return static_cast<Server::RecallFlags>(static_cast<T>(a) | static_cast<T>(b));
519 }
520 static inline constexpr auto operator&(Server::RecallFlags a, Server::RecallFlags b) {
521 using T = std::underlying_type<Server::RecallFlags>::type;
522 return static_cast<Server::RecallFlags>(static_cast<T>(a) & static_cast<T>(b));
523 }
524 static inline std::ostream& operator<<(std::ostream& os, const Server::RecallFlags& f) {
525 using T = std::underlying_type<Server::RecallFlags>::type;
526 return os << "0x" << std::hex << static_cast<T>(f) << std::dec;
527 }
528 static inline constexpr bool operator!(const Server::RecallFlags& f) {
529 using T = std::underlying_type<Server::RecallFlags>::type;
530 return static_cast<T>(f) == static_cast<T>(0);
531 }
532 #endif