1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * DAMON api
4  *
5  * Author: SeongJae Park <sj@kernel.org>
6  */
7 
8 #ifndef _DAMON_H_
9 #define _DAMON_H_
10 
11 #include <linux/memcontrol.h>
12 #include <linux/mutex.h>
13 #include <linux/time64.h>
14 #include <linux/types.h>
15 #include <linux/random.h>
16 
17 /* Minimal region size.  Every damon_region is aligned by this. */
18 #define DAMON_MIN_REGION	PAGE_SIZE
19 /* Max priority score for DAMON-based operation schemes */
20 #define DAMOS_MAX_SCORE		(99)
21 
22 /* Get a random number in [l, r) */
damon_rand(unsigned long l,unsigned long r)23 static inline unsigned long damon_rand(unsigned long l, unsigned long r)
24 {
25 	return l + get_random_u32_below(r - l);
26 }
27 
28 /**
29  * struct damon_addr_range - Represents an address region of [@start, @end).
30  * @start:	Start address of the region (inclusive).
31  * @end:	End address of the region (exclusive).
32  */
33 struct damon_addr_range {
34 	unsigned long start;
35 	unsigned long end;
36 };
37 
38 /**
39  * struct damon_size_range - Represents size for filter to operate on [@min, @max].
40  * @min:	Min size (inclusive).
41  * @max:	Max size (inclusive).
42  */
43 struct damon_size_range {
44 	unsigned long min;
45 	unsigned long max;
46 };
47 
48 /**
49  * struct damon_region - Represents a monitoring target region.
50  * @ar:			The address range of the region.
51  * @sampling_addr:	Address of the sample for the next access check.
52  * @nr_accesses:	Access frequency of this region.
53  * @nr_accesses_bp:	@nr_accesses in basis point (0.01%) that updated for
54  *			each sampling interval.
55  * @list:		List head for siblings.
56  * @age:		Age of this region.
57  *
58  * @nr_accesses is reset to zero for every &damon_attrs->aggr_interval and be
59  * increased for every &damon_attrs->sample_interval if an access to the region
60  * during the last sampling interval is found.  The update of this field should
61  * not be done with direct access but with the helper function,
62  * damon_update_region_access_rate().
63  *
64  * @nr_accesses_bp is another representation of @nr_accesses in basis point
65  * (1 in 10,000) that updated for every &damon_attrs->sample_interval in a
66  * manner similar to moving sum.  By the algorithm, this value becomes
67  * @nr_accesses * 10000 for every &struct damon_attrs->aggr_interval.  This can
68  * be used when the aggregation interval is too huge and therefore cannot wait
69  * for it before getting the access monitoring results.
70  *
71  * @age is initially zero, increased for each aggregation interval, and reset
72  * to zero again if the access frequency is significantly changed.  If two
73  * regions are merged into a new region, both @nr_accesses and @age of the new
74  * region are set as region size-weighted average of those of the two regions.
75  */
76 struct damon_region {
77 	struct damon_addr_range ar;
78 	unsigned long sampling_addr;
79 	unsigned int nr_accesses;
80 	unsigned int nr_accesses_bp;
81 	struct list_head list;
82 
83 	unsigned int age;
84 /* private: Internal value for age calculation. */
85 	unsigned int last_nr_accesses;
86 };
87 
88 /**
89  * struct damon_target - Represents a monitoring target.
90  * @pid:		The PID of the virtual address space to monitor.
91  * @nr_regions:		Number of monitoring target regions of this target.
92  * @regions_list:	Head of the monitoring target regions of this target.
93  * @list:		List head for siblings.
94  *
95  * Each monitoring context could have multiple targets.  For example, a context
96  * for virtual memory address spaces could have multiple target processes.  The
97  * @pid should be set for appropriate &struct damon_operations including the
98  * virtual address spaces monitoring operations.
99  */
100 struct damon_target {
101 	struct pid *pid;
102 	unsigned int nr_regions;
103 	struct list_head regions_list;
104 	struct list_head list;
105 };
106 
107 /**
108  * enum damos_action - Represents an action of a Data Access Monitoring-based
109  * Operation Scheme.
110  *
111  * @DAMOS_WILLNEED:	Call ``madvise()`` for the region with MADV_WILLNEED.
112  * @DAMOS_COLD:		Call ``madvise()`` for the region with MADV_COLD.
113  * @DAMOS_PAGEOUT:	Call ``madvise()`` for the region with MADV_PAGEOUT.
114  * @DAMOS_HUGEPAGE:	Call ``madvise()`` for the region with MADV_HUGEPAGE.
115  * @DAMOS_NOHUGEPAGE:	Call ``madvise()`` for the region with MADV_NOHUGEPAGE.
116  * @DAMOS_LRU_PRIO:	Prioritize the region on its LRU lists.
117  * @DAMOS_LRU_DEPRIO:	Deprioritize the region on its LRU lists.
118  * @DAMOS_MIGRATE_HOT:  Migrate the regions prioritizing warmer regions.
119  * @DAMOS_MIGRATE_COLD:	Migrate the regions prioritizing colder regions.
120  * @DAMOS_STAT:		Do nothing but count the stat.
121  * @NR_DAMOS_ACTIONS:	Total number of DAMOS actions
122  *
123  * The support of each action is up to running &struct damon_operations.
124  * &enum DAMON_OPS_VADDR and &enum DAMON_OPS_FVADDR supports all actions except
125  * &enum DAMOS_LRU_PRIO and &enum DAMOS_LRU_DEPRIO.  &enum DAMON_OPS_PADDR
126  * supports only &enum DAMOS_PAGEOUT, &enum DAMOS_LRU_PRIO, &enum
127  * DAMOS_LRU_DEPRIO, and &DAMOS_STAT.
128  */
129 enum damos_action {
130 	DAMOS_WILLNEED,
131 	DAMOS_COLD,
132 	DAMOS_PAGEOUT,
133 	DAMOS_HUGEPAGE,
134 	DAMOS_NOHUGEPAGE,
135 	DAMOS_LRU_PRIO,
136 	DAMOS_LRU_DEPRIO,
137 	DAMOS_MIGRATE_HOT,
138 	DAMOS_MIGRATE_COLD,
139 	DAMOS_STAT,		/* Do nothing but only record the stat */
140 	NR_DAMOS_ACTIONS,
141 };
142 
143 /**
144  * enum damos_quota_goal_metric - Represents the metric to be used as the goal
145  *
146  * @DAMOS_QUOTA_USER_INPUT:	User-input value.
147  * @DAMOS_QUOTA_SOME_MEM_PSI_US:	System level some memory PSI in us.
148  * @NR_DAMOS_QUOTA_GOAL_METRICS:	Number of DAMOS quota goal metrics.
149  *
150  * Metrics equal to larger than @NR_DAMOS_QUOTA_GOAL_METRICS are unsupported.
151  */
152 enum damos_quota_goal_metric {
153 	DAMOS_QUOTA_USER_INPUT,
154 	DAMOS_QUOTA_SOME_MEM_PSI_US,
155 	NR_DAMOS_QUOTA_GOAL_METRICS,
156 };
157 
158 /**
159  * struct damos_quota_goal - DAMOS scheme quota auto-tuning goal.
160  * @metric:		Metric to be used for representing the goal.
161  * @target_value:	Target value of @metric to achieve with the tuning.
162  * @current_value:	Current value of @metric.
163  * @last_psi_total:	Last measured total PSI
164  * @list:		List head for siblings.
165  *
166  * Data structure for getting the current score of the quota tuning goal.  The
167  * score is calculated by how close @current_value and @target_value are.  Then
168  * the score is entered to DAMON's internal feedback loop mechanism to get the
169  * auto-tuned quota.
170  *
171  * If @metric is DAMOS_QUOTA_USER_INPUT, @current_value should be manually
172  * entered by the user, probably inside the kdamond callbacks.  Otherwise,
173  * DAMON sets @current_value with self-measured value of @metric.
174  */
175 struct damos_quota_goal {
176 	enum damos_quota_goal_metric metric;
177 	unsigned long target_value;
178 	unsigned long current_value;
179 	/* metric-dependent fields */
180 	union {
181 		u64 last_psi_total;
182 	};
183 	struct list_head list;
184 };
185 
186 /**
187  * struct damos_quota - Controls the aggressiveness of the given scheme.
188  * @reset_interval:	Charge reset interval in milliseconds.
189  * @ms:			Maximum milliseconds that the scheme can use.
190  * @sz:			Maximum bytes of memory that the action can be applied.
191  * @goals:		Head of quota tuning goals (&damos_quota_goal) list.
192  * @esz:		Effective size quota in bytes.
193  *
194  * @weight_sz:		Weight of the region's size for prioritization.
195  * @weight_nr_accesses:	Weight of the region's nr_accesses for prioritization.
196  * @weight_age:		Weight of the region's age for prioritization.
197  *
198  * To avoid consuming too much CPU time or IO resources for applying the
199  * &struct damos->action to large memory, DAMON allows users to set time and/or
200  * size quotas.  The quotas can be set by writing non-zero values to &ms and
201  * &sz, respectively.  If the time quota is set, DAMON tries to use only up to
202  * &ms milliseconds within &reset_interval for applying the action.  If the
203  * size quota is set, DAMON tries to apply the action only up to &sz bytes
204  * within &reset_interval.
205  *
206  * To convince the different types of quotas and goals, DAMON internally
207  * converts those into one single size quota called "effective quota".  DAMON
208  * internally uses it as the only one real quota.  The conversion is made as
209  * follows.
210  *
211  * The time quota is transformed to a size quota using estimated throughput of
212  * the scheme's action.  DAMON then compares it against &sz and uses smaller
213  * one as the effective quota.
214  *
215  * If @goals is not empty, DAMON calculates yet another size quota based on the
216  * goals using its internal feedback loop algorithm, for every @reset_interval.
217  * Then, if the new size quota is smaller than the effective quota, it uses the
218  * new size quota as the effective quota.
219  *
220  * The resulting effective size quota in bytes is set to @esz.
221  *
222  * For selecting regions within the quota, DAMON prioritizes current scheme's
223  * target memory regions using the &struct damon_operations->get_scheme_score.
224  * You could customize the prioritization logic by setting &weight_sz,
225  * &weight_nr_accesses, and &weight_age, because monitoring operations are
226  * encouraged to respect those.
227  */
228 struct damos_quota {
229 	unsigned long reset_interval;
230 	unsigned long ms;
231 	unsigned long sz;
232 	struct list_head goals;
233 	unsigned long esz;
234 
235 	unsigned int weight_sz;
236 	unsigned int weight_nr_accesses;
237 	unsigned int weight_age;
238 
239 /* private: */
240 	/* For throughput estimation */
241 	unsigned long total_charged_sz;
242 	unsigned long total_charged_ns;
243 
244 	/* For charging the quota */
245 	unsigned long charged_sz;
246 	unsigned long charged_from;
247 	struct damon_target *charge_target_from;
248 	unsigned long charge_addr_from;
249 
250 	/* For prioritization */
251 	unsigned int min_score;
252 
253 	/* For feedback loop */
254 	unsigned long esz_bp;
255 };
256 
257 /**
258  * enum damos_wmark_metric - Represents the watermark metric.
259  *
260  * @DAMOS_WMARK_NONE:		Ignore the watermarks of the given scheme.
261  * @DAMOS_WMARK_FREE_MEM_RATE:	Free memory rate of the system in [0,1000].
262  * @NR_DAMOS_WMARK_METRICS:	Total number of DAMOS watermark metrics
263  */
264 enum damos_wmark_metric {
265 	DAMOS_WMARK_NONE,
266 	DAMOS_WMARK_FREE_MEM_RATE,
267 	NR_DAMOS_WMARK_METRICS,
268 };
269 
270 /**
271  * struct damos_watermarks - Controls when a given scheme should be activated.
272  * @metric:	Metric for the watermarks.
273  * @interval:	Watermarks check time interval in microseconds.
274  * @high:	High watermark.
275  * @mid:	Middle watermark.
276  * @low:	Low watermark.
277  *
278  * If &metric is &DAMOS_WMARK_NONE, the scheme is always active.  Being active
279  * means DAMON does monitoring and applying the action of the scheme to
280  * appropriate memory regions.  Else, DAMON checks &metric of the system for at
281  * least every &interval microseconds and works as below.
282  *
283  * If &metric is higher than &high, the scheme is inactivated.  If &metric is
284  * between &mid and &low, the scheme is activated.  If &metric is lower than
285  * &low, the scheme is inactivated.
286  */
287 struct damos_watermarks {
288 	enum damos_wmark_metric metric;
289 	unsigned long interval;
290 	unsigned long high;
291 	unsigned long mid;
292 	unsigned long low;
293 
294 /* private: */
295 	bool activated;
296 };
297 
298 /**
299  * struct damos_stat - Statistics on a given scheme.
300  * @nr_tried:	Total number of regions that the scheme is tried to be applied.
301  * @sz_tried:	Total size of regions that the scheme is tried to be applied.
302  * @nr_applied:	Total number of regions that the scheme is applied.
303  * @sz_applied:	Total size of regions that the scheme is applied.
304  * @sz_ops_filter_passed:
305  *		Total bytes that passed ops layer-handled DAMOS filters.
306  * @qt_exceeds: Total number of times the quota of the scheme has exceeded.
307  *
308  * "Tried an action to a region" in this context means the DAMOS core logic
309  * determined the region as eligible to apply the action.  The access pattern
310  * (&struct damos_access_pattern), quotas (&struct damos_quota), watermarks
311  * (&struct damos_watermarks) and filters (&struct damos_filter) that handled
312  * on core logic can affect this.  The core logic asks the operation set
313  * (&struct damon_operations) to apply the action to the region.
314  *
315  * "Applied an action to a region" in this context means the operation set
316  * (&struct damon_operations) successfully applied the action to the region, at
317  * least to a part of the region.  The filters (&struct damos_filter) that
318  * handled on operation set layer and type of the action and pages of the
319  * region can affect this.  For example, if a filter is set to exclude
320  * anonymous pages and the region has only anonymous pages, the region will be
321  * failed at applying the action.  If the action is &DAMOS_PAGEOUT and all
322  * pages of the region are already paged out, the region will be failed at
323  * applying the action.
324  */
325 struct damos_stat {
326 	unsigned long nr_tried;
327 	unsigned long sz_tried;
328 	unsigned long nr_applied;
329 	unsigned long sz_applied;
330 	unsigned long sz_ops_filter_passed;
331 	unsigned long qt_exceeds;
332 };
333 
334 /**
335  * enum damos_filter_type - Type of memory for &struct damos_filter
336  * @DAMOS_FILTER_TYPE_ANON:	Anonymous pages.
337  * @DAMOS_FILTER_TYPE_ACTIVE:	Active pages.
338  * @DAMOS_FILTER_TYPE_MEMCG:	Specific memcg's pages.
339  * @DAMOS_FILTER_TYPE_YOUNG:	Recently accessed pages.
340  * @DAMOS_FILTER_TYPE_HUGEPAGE_SIZE:	Page is part of a hugepage.
341  * @DAMOS_FILTER_TYPE_UNMAPPED:	Unmapped pages.
342  * @DAMOS_FILTER_TYPE_ADDR:	Address range.
343  * @DAMOS_FILTER_TYPE_TARGET:	Data Access Monitoring target.
344  * @NR_DAMOS_FILTER_TYPES:	Number of filter types.
345  *
346  * The anon pages type and memcg type filters are handled by underlying
347  * &struct damon_operations as a part of scheme action trying, and therefore
348  * accounted as 'tried'.  In contrast, other types are handled by core layer
349  * before trying of the action and therefore not accounted as 'tried'.
350  *
351  * The support of the filters that handled by &struct damon_operations depend
352  * on the running &struct damon_operations.
353  * &enum DAMON_OPS_PADDR supports both anon pages type and memcg type filters,
354  * while &enum DAMON_OPS_VADDR and &enum DAMON_OPS_FVADDR don't support any of
355  * the two types.
356  */
357 enum damos_filter_type {
358 	DAMOS_FILTER_TYPE_ANON,
359 	DAMOS_FILTER_TYPE_ACTIVE,
360 	DAMOS_FILTER_TYPE_MEMCG,
361 	DAMOS_FILTER_TYPE_YOUNG,
362 	DAMOS_FILTER_TYPE_HUGEPAGE_SIZE,
363 	DAMOS_FILTER_TYPE_UNMAPPED,
364 	DAMOS_FILTER_TYPE_ADDR,
365 	DAMOS_FILTER_TYPE_TARGET,
366 	NR_DAMOS_FILTER_TYPES,
367 };
368 
369 /**
370  * struct damos_filter - DAMOS action target memory filter.
371  * @type:	Type of the target memory.
372  * @matching:	Whether this is for @type-matching memory.
373  * @allow:	Whether to include or exclude the @matching memory.
374  * @memcg_id:	Memcg id of the question if @type is DAMOS_FILTER_MEMCG.
375  * @addr_range:	Address range if @type is DAMOS_FILTER_TYPE_ADDR.
376  * @target_idx:	Index of the &struct damon_target of
377  *		&damon_ctx->adaptive_targets if @type is
378  *		DAMOS_FILTER_TYPE_TARGET.
379  * @sz_range:	Size range if @type is DAMOS_FILTER_TYPE_HUGEPAGE_SIZE.
380  * @list:	List head for siblings.
381  *
382  * Before applying the &damos->action to a memory region, DAMOS checks if each
383  * byte of the region matches to this given condition and avoid applying the
384  * action if so.  Support of each filter type depends on the running &struct
385  * damon_operations and the type.  Refer to &enum damos_filter_type for more
386  * details.
387  */
388 struct damos_filter {
389 	enum damos_filter_type type;
390 	bool matching;
391 	bool allow;
392 	union {
393 		unsigned short memcg_id;
394 		struct damon_addr_range addr_range;
395 		int target_idx;
396 		struct damon_size_range sz_range;
397 	};
398 	struct list_head list;
399 };
400 
401 struct damon_ctx;
402 struct damos;
403 
404 /**
405  * struct damos_walk_control - Control damos_walk().
406  *
407  * @walk_fn:	Function to be called back for each region.
408  * @data:	Data that will be passed to walk functions.
409  *
410  * Control damos_walk(), which requests specific kdamond to invoke the given
411  * function to each region that eligible to apply actions of the kdamond's
412  * schemes.  Refer to damos_walk() for more details.
413  */
414 struct damos_walk_control {
415 	void (*walk_fn)(void *data, struct damon_ctx *ctx,
416 			struct damon_target *t, struct damon_region *r,
417 			struct damos *s, unsigned long sz_filter_passed);
418 	void *data;
419 /* private: internal use only */
420 	/* informs if the kdamond finished handling of the walk request */
421 	struct completion completion;
422 	/* informs if the walk is canceled. */
423 	bool canceled;
424 };
425 
426 /**
427  * struct damos_access_pattern - Target access pattern of the given scheme.
428  * @min_sz_region:	Minimum size of target regions.
429  * @max_sz_region:	Maximum size of target regions.
430  * @min_nr_accesses:	Minimum ``->nr_accesses`` of target regions.
431  * @max_nr_accesses:	Maximum ``->nr_accesses`` of target regions.
432  * @min_age_region:	Minimum age of target regions.
433  * @max_age_region:	Maximum age of target regions.
434  */
435 struct damos_access_pattern {
436 	unsigned long min_sz_region;
437 	unsigned long max_sz_region;
438 	unsigned int min_nr_accesses;
439 	unsigned int max_nr_accesses;
440 	unsigned int min_age_region;
441 	unsigned int max_age_region;
442 };
443 
444 /**
445  * struct damos - Represents a Data Access Monitoring-based Operation Scheme.
446  * @pattern:		Access pattern of target regions.
447  * @action:		&damo_action to be applied to the target regions.
448  * @apply_interval_us:	The time between applying the @action.
449  * @quota:		Control the aggressiveness of this scheme.
450  * @wmarks:		Watermarks for automated (in)activation of this scheme.
451  * @target_nid:		Destination node if @action is "migrate_{hot,cold}".
452  * @filters:		Additional set of &struct damos_filter for &action.
453  * @ops_filters:	ops layer handling &struct damos_filter objects list.
454  * @last_applied:	Last @action applied ops-managing entity.
455  * @stat:		Statistics of this scheme.
456  * @list:		List head for siblings.
457  *
458  * For each @apply_interval_us, DAMON finds regions which fit in the
459  * &pattern and applies &action to those. To avoid consuming too much
460  * CPU time or IO resources for the &action, &quota is used.
461  *
462  * If @apply_interval_us is zero, &damon_attrs->aggr_interval is used instead.
463  *
464  * To do the work only when needed, schemes can be activated for specific
465  * system situations using &wmarks.  If all schemes that registered to the
466  * monitoring context are inactive, DAMON stops monitoring either, and just
467  * repeatedly checks the watermarks.
468  *
469  * @target_nid is used to set the migration target node for migrate_hot or
470  * migrate_cold actions, which means it's only meaningful when @action is either
471  * "migrate_hot" or "migrate_cold".
472  *
473  * Before applying the &action to a memory region, &struct damon_operations
474  * implementation could check pages of the region and skip &action to respect
475  * &filters
476  *
477  * The minimum entity that @action can be applied depends on the underlying
478  * &struct damon_operations.  Since it may not be aligned with the core layer
479  * abstract, namely &struct damon_region, &struct damon_operations could apply
480  * @action to same entity multiple times.  Large folios that underlying on
481  * multiple &struct damon region objects could be such examples.  The &struct
482  * damon_operations can use @last_applied to avoid that.  DAMOS core logic
483  * unsets @last_applied when each regions walking for applying the scheme is
484  * finished.
485  *
486  * After applying the &action to each region, &stat_count and &stat_sz is
487  * updated to reflect the number of regions and total size of regions that the
488  * &action is applied.
489  */
490 struct damos {
491 	struct damos_access_pattern pattern;
492 	enum damos_action action;
493 	unsigned long apply_interval_us;
494 /* private: internal use only */
495 	/*
496 	 * number of sample intervals that should be passed before applying
497 	 * @action
498 	 */
499 	unsigned long next_apply_sis;
500 	/* informs if ongoing DAMOS walk for this scheme is finished */
501 	bool walk_completed;
502 	/*
503 	 * If the current region in the filtering stage is allowed by core
504 	 * layer-handled filters.  If true, operations layer allows it, too.
505 	 */
506 	bool core_filters_allowed;
507 	/* whether to reject core/ops filters umatched regions */
508 	bool core_filters_default_reject;
509 	bool ops_filters_default_reject;
510 /* public: */
511 	struct damos_quota quota;
512 	struct damos_watermarks wmarks;
513 	union {
514 		int target_nid;
515 	};
516 	struct list_head filters;
517 	struct list_head ops_filters;
518 	void *last_applied;
519 	struct damos_stat stat;
520 	struct list_head list;
521 };
522 
523 /**
524  * enum damon_ops_id - Identifier for each monitoring operations implementation
525  *
526  * @DAMON_OPS_VADDR:	Monitoring operations for virtual address spaces
527  * @DAMON_OPS_FVADDR:	Monitoring operations for only fixed ranges of virtual
528  *			address spaces
529  * @DAMON_OPS_PADDR:	Monitoring operations for the physical address space
530  * @NR_DAMON_OPS:	Number of monitoring operations implementations
531  */
532 enum damon_ops_id {
533 	DAMON_OPS_VADDR,
534 	DAMON_OPS_FVADDR,
535 	DAMON_OPS_PADDR,
536 	NR_DAMON_OPS,
537 };
538 
539 /**
540  * struct damon_operations - Monitoring operations for given use cases.
541  *
542  * @id:				Identifier of this operations set.
543  * @init:			Initialize operations-related data structures.
544  * @update:			Update operations-related data structures.
545  * @prepare_access_checks:	Prepare next access check of target regions.
546  * @check_accesses:		Check the accesses to target regions.
547  * @get_scheme_score:		Get the score of a region for a scheme.
548  * @apply_scheme:		Apply a DAMON-based operation scheme.
549  * @target_valid:		Determine if the target is valid.
550  * @cleanup:			Clean up the context.
551  *
552  * DAMON can be extended for various address spaces and usages.  For this,
553  * users should register the low level operations for their target address
554  * space and usecase via the &damon_ctx.ops.  Then, the monitoring thread
555  * (&damon_ctx.kdamond) calls @init and @prepare_access_checks before starting
556  * the monitoring, @update after each &damon_attrs.ops_update_interval, and
557  * @check_accesses, @target_valid and @prepare_access_checks after each
558  * &damon_attrs.sample_interval.
559  *
560  * Each &struct damon_operations instance having valid @id can be registered
561  * via damon_register_ops() and selected by damon_select_ops() later.
562  * @init should initialize operations-related data structures.  For example,
563  * this could be used to construct proper monitoring target regions and link
564  * those to @damon_ctx.adaptive_targets.
565  * @update should update the operations-related data structures.  For example,
566  * this could be used to update monitoring target regions for current status.
567  * @prepare_access_checks should manipulate the monitoring regions to be
568  * prepared for the next access check.
569  * @check_accesses should check the accesses to each region that made after the
570  * last preparation and update the number of observed accesses of each region.
571  * It should also return max number of observed accesses that made as a result
572  * of its update.  The value will be used for regions adjustment threshold.
573  * @get_scheme_score should return the priority score of a region for a scheme
574  * as an integer in [0, &DAMOS_MAX_SCORE].
575  * @apply_scheme is called from @kdamond when a region for user provided
576  * DAMON-based operation scheme is found.  It should apply the scheme's action
577  * to the region and return bytes of the region that the action is successfully
578  * applied.  It should also report how many bytes of the region has passed
579  * filters (&struct damos_filter) that handled by itself.
580  * @target_valid should check whether the target is still valid for the
581  * monitoring.
582  * @cleanup is called from @kdamond just before its termination.
583  */
584 struct damon_operations {
585 	enum damon_ops_id id;
586 	void (*init)(struct damon_ctx *context);
587 	void (*update)(struct damon_ctx *context);
588 	void (*prepare_access_checks)(struct damon_ctx *context);
589 	unsigned int (*check_accesses)(struct damon_ctx *context);
590 	int (*get_scheme_score)(struct damon_ctx *context,
591 			struct damon_target *t, struct damon_region *r,
592 			struct damos *scheme);
593 	unsigned long (*apply_scheme)(struct damon_ctx *context,
594 			struct damon_target *t, struct damon_region *r,
595 			struct damos *scheme, unsigned long *sz_filter_passed);
596 	bool (*target_valid)(struct damon_target *t);
597 	void (*cleanup)(struct damon_ctx *context);
598 };
599 
600 /**
601  * struct damon_callback - Monitoring events notification callbacks.
602  *
603  * @after_wmarks_check:	Called after each schemes' watermarks check.
604  * @after_aggregation:	Called after each aggregation.
605  * @before_terminate:	Called before terminating the monitoring.
606  *
607  * The monitoring thread (&damon_ctx.kdamond) calls @before_terminate just
608  * before finishing the monitoring.
609  *
610  * The monitoring thread calls @after_wmarks_check after each DAMON-based
611  * operation schemes' watermarks check.  If users need to make changes to the
612  * attributes of the monitoring context while it's deactivated due to the
613  * watermarks, this is the good place to do.
614  *
615  * The monitoring thread calls @after_aggregation for each of the aggregation
616  * intervals.  Therefore, users can safely access the monitoring results
617  * without additional protection.  For the reason, users are recommended to use
618  * these callback for the accesses to the results.
619  *
620  * If any callback returns non-zero, monitoring stops.
621  */
622 struct damon_callback {
623 	int (*after_wmarks_check)(struct damon_ctx *context);
624 	int (*after_aggregation)(struct damon_ctx *context);
625 	void (*before_terminate)(struct damon_ctx *context);
626 };
627 
628 /*
629  * struct damon_call_control - Control damon_call().
630  *
631  * @fn:			Function to be called back.
632  * @data:		Data that will be passed to @fn.
633  * @return_code:	Return code from @fn invocation.
634  *
635  * Control damon_call(), which requests specific kdamond to invoke a given
636  * function.  Refer to damon_call() for more details.
637  */
638 struct damon_call_control {
639 	int (*fn)(void *data);
640 	void *data;
641 	int return_code;
642 /* private: internal use only */
643 	/* informs if the kdamond finished handling of the request */
644 	struct completion completion;
645 	/* informs if the kdamond canceled @fn infocation */
646 	bool canceled;
647 };
648 
649 /**
650  * struct damon_intervals_goal - Monitoring intervals auto-tuning goal.
651  *
652  * @access_bp:		Access events observation ratio to achieve in bp.
653  * @aggrs:		Number of aggregations to acheive @access_bp within.
654  * @min_sample_us:	Minimum resulting sampling interval in microseconds.
655  * @max_sample_us:	Maximum resulting sampling interval in microseconds.
656  *
657  * DAMON automatically tunes &damon_attrs->sample_interval and
658  * &damon_attrs->aggr_interval aiming the ratio in bp (1/10,000) of
659  * DAMON-observed access events to theoretical maximum amount within @aggrs
660  * aggregations be same to @access_bp.  The logic increases
661  * &damon_attrs->aggr_interval and &damon_attrs->sampling_interval in same
662  * ratio if the current access events observation ratio is lower than the
663  * target for each @aggrs aggregations, and vice versa.
664  *
665  * If @aggrs is zero, the tuning is disabled and hence this struct is ignored.
666  */
667 struct damon_intervals_goal {
668 	unsigned long access_bp;
669 	unsigned long aggrs;
670 	unsigned long min_sample_us;
671 	unsigned long max_sample_us;
672 };
673 
674 /**
675  * struct damon_attrs - Monitoring attributes for accuracy/overhead control.
676  *
677  * @sample_interval:		The time between access samplings.
678  * @aggr_interval:		The time between monitor results aggregations.
679  * @ops_update_interval:	The time between monitoring operations updates.
680  * @intervals_goal:		Intervals auto-tuning goal.
681  * @min_nr_regions:		The minimum number of adaptive monitoring
682  *				regions.
683  * @max_nr_regions:		The maximum number of adaptive monitoring
684  *				regions.
685  *
686  * For each @sample_interval, DAMON checks whether each region is accessed or
687  * not during the last @sample_interval.  If such access is found, DAMON
688  * aggregates the information by increasing &damon_region->nr_accesses for
689  * @aggr_interval time.  For each @aggr_interval, the count is reset.  DAMON
690  * also checks whether the target memory regions need update (e.g., by
691  * ``mmap()`` calls from the application, in case of virtual memory monitoring)
692  * and applies the changes for each @ops_update_interval.  All time intervals
693  * are in micro-seconds.  Please refer to &struct damon_operations and &struct
694  * damon_callback for more detail.
695  */
696 struct damon_attrs {
697 	unsigned long sample_interval;
698 	unsigned long aggr_interval;
699 	unsigned long ops_update_interval;
700 	struct damon_intervals_goal intervals_goal;
701 	unsigned long min_nr_regions;
702 	unsigned long max_nr_regions;
703 /* private: internal use only */
704 	/*
705 	 * @aggr_interval to @sample_interval ratio.
706 	 * Core-external components call damon_set_attrs() with &damon_attrs
707 	 * that this field is unset.  In the case, damon_set_attrs() sets this
708 	 * field of resulting &damon_attrs.  Core-internal components such as
709 	 * kdamond_tune_intervals() calls damon_set_attrs() with &damon_attrs
710 	 * that this field is set.  In the case, damon_set_attrs() just keep
711 	 * it.
712 	 */
713 	unsigned long aggr_samples;
714 };
715 
716 /**
717  * struct damon_ctx - Represents a context for each monitoring.  This is the
718  * main interface that allows users to set the attributes and get the results
719  * of the monitoring.
720  *
721  * @attrs:		Monitoring attributes for accuracy/overhead control.
722  * @kdamond:		Kernel thread who does the monitoring.
723  * @kdamond_lock:	Mutex for the synchronizations with @kdamond.
724  *
725  * For each monitoring context, one kernel thread for the monitoring is
726  * created.  The pointer to the thread is stored in @kdamond.
727  *
728  * Once started, the monitoring thread runs until explicitly required to be
729  * terminated or every monitoring target is invalid.  The validity of the
730  * targets is checked via the &damon_operations.target_valid of @ops.  The
731  * termination can also be explicitly requested by calling damon_stop().
732  * The thread sets @kdamond to NULL when it terminates. Therefore, users can
733  * know whether the monitoring is ongoing or terminated by reading @kdamond.
734  * Reads and writes to @kdamond from outside of the monitoring thread must
735  * be protected by @kdamond_lock.
736  *
737  * Note that the monitoring thread protects only @kdamond via @kdamond_lock.
738  * Accesses to other fields must be protected by themselves.
739  *
740  * @ops:	Set of monitoring operations for given use cases.
741  * @callback:	Set of callbacks for monitoring events notifications.
742  *
743  * @adaptive_targets:	Head of monitoring targets (&damon_target) list.
744  * @schemes:		Head of schemes (&damos) list.
745  */
746 struct damon_ctx {
747 	struct damon_attrs attrs;
748 
749 /* private: internal use only */
750 	/* number of sample intervals that passed since this context started */
751 	unsigned long passed_sample_intervals;
752 	/*
753 	 * number of sample intervals that should be passed before next
754 	 * aggregation
755 	 */
756 	unsigned long next_aggregation_sis;
757 	/*
758 	 * number of sample intervals that should be passed before next ops
759 	 * update
760 	 */
761 	unsigned long next_ops_update_sis;
762 	/*
763 	 * number of sample intervals that should be passed before next
764 	 * intervals tuning
765 	 */
766 	unsigned long next_intervals_tune_sis;
767 	/* for waiting until the execution of the kdamond_fn is started */
768 	struct completion kdamond_started;
769 	/* for scheme quotas prioritization */
770 	unsigned long *regions_score_histogram;
771 
772 	struct damon_call_control *call_control;
773 	struct mutex call_control_lock;
774 
775 	struct damos_walk_control *walk_control;
776 	struct mutex walk_control_lock;
777 
778 /* public: */
779 	struct task_struct *kdamond;
780 	struct mutex kdamond_lock;
781 
782 	struct damon_operations ops;
783 	struct damon_callback callback;
784 
785 	struct list_head adaptive_targets;
786 	struct list_head schemes;
787 };
788 
damon_next_region(struct damon_region * r)789 static inline struct damon_region *damon_next_region(struct damon_region *r)
790 {
791 	return container_of(r->list.next, struct damon_region, list);
792 }
793 
damon_prev_region(struct damon_region * r)794 static inline struct damon_region *damon_prev_region(struct damon_region *r)
795 {
796 	return container_of(r->list.prev, struct damon_region, list);
797 }
798 
damon_last_region(struct damon_target * t)799 static inline struct damon_region *damon_last_region(struct damon_target *t)
800 {
801 	return list_last_entry(&t->regions_list, struct damon_region, list);
802 }
803 
damon_first_region(struct damon_target * t)804 static inline struct damon_region *damon_first_region(struct damon_target *t)
805 {
806 	return list_first_entry(&t->regions_list, struct damon_region, list);
807 }
808 
damon_sz_region(struct damon_region * r)809 static inline unsigned long damon_sz_region(struct damon_region *r)
810 {
811 	return r->ar.end - r->ar.start;
812 }
813 
814 
815 #define damon_for_each_region(r, t) \
816 	list_for_each_entry(r, &t->regions_list, list)
817 
818 #define damon_for_each_region_from(r, t) \
819 	list_for_each_entry_from(r, &t->regions_list, list)
820 
821 #define damon_for_each_region_safe(r, next, t) \
822 	list_for_each_entry_safe(r, next, &t->regions_list, list)
823 
824 #define damon_for_each_target(t, ctx) \
825 	list_for_each_entry(t, &(ctx)->adaptive_targets, list)
826 
827 #define damon_for_each_target_safe(t, next, ctx)	\
828 	list_for_each_entry_safe(t, next, &(ctx)->adaptive_targets, list)
829 
830 #define damon_for_each_scheme(s, ctx) \
831 	list_for_each_entry(s, &(ctx)->schemes, list)
832 
833 #define damon_for_each_scheme_safe(s, next, ctx) \
834 	list_for_each_entry_safe(s, next, &(ctx)->schemes, list)
835 
836 #define damos_for_each_quota_goal(goal, quota) \
837 	list_for_each_entry(goal, &quota->goals, list)
838 
839 #define damos_for_each_quota_goal_safe(goal, next, quota) \
840 	list_for_each_entry_safe(goal, next, &(quota)->goals, list)
841 
842 #define damos_for_each_filter(f, scheme) \
843 	list_for_each_entry(f, &(scheme)->filters, list)
844 
845 #define damos_for_each_filter_safe(f, next, scheme) \
846 	list_for_each_entry_safe(f, next, &(scheme)->filters, list)
847 
848 #define damos_for_each_ops_filter(f, scheme) \
849 	list_for_each_entry(f, &(scheme)->ops_filters, list)
850 
851 #define damos_for_each_ops_filter_safe(f, next, scheme) \
852 	list_for_each_entry_safe(f, next, &(scheme)->ops_filters, list)
853 
854 #ifdef CONFIG_DAMON
855 
856 struct damon_region *damon_new_region(unsigned long start, unsigned long end);
857 
858 /*
859  * Add a region between two other regions
860  */
damon_insert_region(struct damon_region * r,struct damon_region * prev,struct damon_region * next,struct damon_target * t)861 static inline void damon_insert_region(struct damon_region *r,
862 		struct damon_region *prev, struct damon_region *next,
863 		struct damon_target *t)
864 {
865 	__list_add(&r->list, &prev->list, &next->list);
866 	t->nr_regions++;
867 }
868 
869 void damon_add_region(struct damon_region *r, struct damon_target *t);
870 void damon_destroy_region(struct damon_region *r, struct damon_target *t);
871 int damon_set_regions(struct damon_target *t, struct damon_addr_range *ranges,
872 		unsigned int nr_ranges);
873 void damon_update_region_access_rate(struct damon_region *r, bool accessed,
874 		struct damon_attrs *attrs);
875 
876 struct damos_filter *damos_new_filter(enum damos_filter_type type,
877 		bool matching, bool allow);
878 void damos_add_filter(struct damos *s, struct damos_filter *f);
879 bool damos_filter_for_ops(enum damos_filter_type type);
880 void damos_destroy_filter(struct damos_filter *f);
881 
882 struct damos_quota_goal *damos_new_quota_goal(
883 		enum damos_quota_goal_metric metric,
884 		unsigned long target_value);
885 void damos_add_quota_goal(struct damos_quota *q, struct damos_quota_goal *g);
886 void damos_destroy_quota_goal(struct damos_quota_goal *goal);
887 
888 struct damos *damon_new_scheme(struct damos_access_pattern *pattern,
889 			enum damos_action action,
890 			unsigned long apply_interval_us,
891 			struct damos_quota *quota,
892 			struct damos_watermarks *wmarks,
893 			int target_nid);
894 void damon_add_scheme(struct damon_ctx *ctx, struct damos *s);
895 void damon_destroy_scheme(struct damos *s);
896 int damos_commit_quota_goals(struct damos_quota *dst, struct damos_quota *src);
897 
898 struct damon_target *damon_new_target(void);
899 void damon_add_target(struct damon_ctx *ctx, struct damon_target *t);
900 bool damon_targets_empty(struct damon_ctx *ctx);
901 void damon_free_target(struct damon_target *t);
902 void damon_destroy_target(struct damon_target *t);
903 unsigned int damon_nr_regions(struct damon_target *t);
904 
905 struct damon_ctx *damon_new_ctx(void);
906 void damon_destroy_ctx(struct damon_ctx *ctx);
907 int damon_set_attrs(struct damon_ctx *ctx, struct damon_attrs *attrs);
908 void damon_set_schemes(struct damon_ctx *ctx,
909 			struct damos **schemes, ssize_t nr_schemes);
910 int damon_commit_ctx(struct damon_ctx *old_ctx, struct damon_ctx *new_ctx);
911 int damon_nr_running_ctxs(void);
912 bool damon_is_registered_ops(enum damon_ops_id id);
913 int damon_register_ops(struct damon_operations *ops);
914 int damon_select_ops(struct damon_ctx *ctx, enum damon_ops_id id);
915 
damon_target_has_pid(const struct damon_ctx * ctx)916 static inline bool damon_target_has_pid(const struct damon_ctx *ctx)
917 {
918 	return ctx->ops.id == DAMON_OPS_VADDR || ctx->ops.id == DAMON_OPS_FVADDR;
919 }
920 
damon_max_nr_accesses(const struct damon_attrs * attrs)921 static inline unsigned int damon_max_nr_accesses(const struct damon_attrs *attrs)
922 {
923 	/* {aggr,sample}_interval are unsigned long, hence could overflow */
924 	return min(attrs->aggr_interval / attrs->sample_interval,
925 			(unsigned long)UINT_MAX);
926 }
927 
928 
929 int damon_start(struct damon_ctx **ctxs, int nr_ctxs, bool exclusive);
930 int damon_stop(struct damon_ctx **ctxs, int nr_ctxs);
931 
932 int damon_call(struct damon_ctx *ctx, struct damon_call_control *control);
933 int damos_walk(struct damon_ctx *ctx, struct damos_walk_control *control);
934 
935 int damon_set_region_biggest_system_ram_default(struct damon_target *t,
936 				unsigned long *start, unsigned long *end);
937 
938 #endif	/* CONFIG_DAMON */
939 
940 #endif	/* _DAMON_H */
941