at v6.16 18 kB view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef LINUX_MM_INLINE_H 3#define LINUX_MM_INLINE_H 4 5#include <linux/atomic.h> 6#include <linux/huge_mm.h> 7#include <linux/mm_types.h> 8#include <linux/swap.h> 9#include <linux/string.h> 10#include <linux/userfaultfd_k.h> 11#include <linux/swapops.h> 12 13/** 14 * folio_is_file_lru - Should the folio be on a file LRU or anon LRU? 15 * @folio: The folio to test. 16 * 17 * We would like to get this info without a page flag, but the state 18 * needs to survive until the folio is last deleted from the LRU, which 19 * could be as far down as __page_cache_release. 20 * 21 * Return: An integer (not a boolean!) used to sort a folio onto the 22 * right LRU list and to account folios correctly. 23 * 1 if @folio is a regular filesystem backed page cache folio 24 * or a lazily freed anonymous folio (e.g. via MADV_FREE). 25 * 0 if @folio is a normal anonymous folio, a tmpfs folio or otherwise 26 * ram or swap backed folio. 27 */ 28static inline int folio_is_file_lru(struct folio *folio) 29{ 30 return !folio_test_swapbacked(folio); 31} 32 33static inline int page_is_file_lru(struct page *page) 34{ 35 return folio_is_file_lru(page_folio(page)); 36} 37 38static __always_inline void __update_lru_size(struct lruvec *lruvec, 39 enum lru_list lru, enum zone_type zid, 40 long nr_pages) 41{ 42 struct pglist_data *pgdat = lruvec_pgdat(lruvec); 43 44 lockdep_assert_held(&lruvec->lru_lock); 45 WARN_ON_ONCE(nr_pages != (int)nr_pages); 46 47 __mod_lruvec_state(lruvec, NR_LRU_BASE + lru, nr_pages); 48 __mod_zone_page_state(&pgdat->node_zones[zid], 49 NR_ZONE_LRU_BASE + lru, nr_pages); 50} 51 52static __always_inline void update_lru_size(struct lruvec *lruvec, 53 enum lru_list lru, enum zone_type zid, 54 long nr_pages) 55{ 56 __update_lru_size(lruvec, lru, zid, nr_pages); 57#ifdef CONFIG_MEMCG 58 mem_cgroup_update_lru_size(lruvec, lru, zid, nr_pages); 59#endif 60} 61 62/** 63 * __folio_clear_lru_flags - Clear page lru flags before releasing a page. 64 * @folio: The folio that was on lru and now has a zero reference. 65 */ 66static __always_inline void __folio_clear_lru_flags(struct folio *folio) 67{ 68 VM_BUG_ON_FOLIO(!folio_test_lru(folio), folio); 69 70 __folio_clear_lru(folio); 71 72 /* this shouldn't happen, so leave the flags to bad_page() */ 73 if (folio_test_active(folio) && folio_test_unevictable(folio)) 74 return; 75 76 __folio_clear_active(folio); 77 __folio_clear_unevictable(folio); 78} 79 80/** 81 * folio_lru_list - Which LRU list should a folio be on? 82 * @folio: The folio to test. 83 * 84 * Return: The LRU list a folio should be on, as an index 85 * into the array of LRU lists. 86 */ 87static __always_inline enum lru_list folio_lru_list(struct folio *folio) 88{ 89 enum lru_list lru; 90 91 VM_BUG_ON_FOLIO(folio_test_active(folio) && folio_test_unevictable(folio), folio); 92 93 if (folio_test_unevictable(folio)) 94 return LRU_UNEVICTABLE; 95 96 lru = folio_is_file_lru(folio) ? LRU_INACTIVE_FILE : LRU_INACTIVE_ANON; 97 if (folio_test_active(folio)) 98 lru += LRU_ACTIVE; 99 100 return lru; 101} 102 103#ifdef CONFIG_LRU_GEN 104 105#ifdef CONFIG_LRU_GEN_ENABLED 106static inline bool lru_gen_enabled(void) 107{ 108 DECLARE_STATIC_KEY_TRUE(lru_gen_caps[NR_LRU_GEN_CAPS]); 109 110 return static_branch_likely(&lru_gen_caps[LRU_GEN_CORE]); 111} 112#else 113static inline bool lru_gen_enabled(void) 114{ 115 DECLARE_STATIC_KEY_FALSE(lru_gen_caps[NR_LRU_GEN_CAPS]); 116 117 return static_branch_unlikely(&lru_gen_caps[LRU_GEN_CORE]); 118} 119#endif 120 121static inline bool lru_gen_in_fault(void) 122{ 123 return current->in_lru_fault; 124} 125 126static inline int lru_gen_from_seq(unsigned long seq) 127{ 128 return seq % MAX_NR_GENS; 129} 130 131static inline int lru_hist_from_seq(unsigned long seq) 132{ 133 return seq % NR_HIST_GENS; 134} 135 136static inline int lru_tier_from_refs(int refs, bool workingset) 137{ 138 VM_WARN_ON_ONCE(refs > BIT(LRU_REFS_WIDTH)); 139 140 /* see the comment on MAX_NR_TIERS */ 141 return workingset ? MAX_NR_TIERS - 1 : order_base_2(refs); 142} 143 144static inline int folio_lru_refs(struct folio *folio) 145{ 146 unsigned long flags = READ_ONCE(folio->flags); 147 148 if (!(flags & BIT(PG_referenced))) 149 return 0; 150 /* 151 * Return the total number of accesses including PG_referenced. Also see 152 * the comment on LRU_REFS_FLAGS. 153 */ 154 return ((flags & LRU_REFS_MASK) >> LRU_REFS_PGOFF) + 1; 155} 156 157static inline int folio_lru_gen(struct folio *folio) 158{ 159 unsigned long flags = READ_ONCE(folio->flags); 160 161 return ((flags & LRU_GEN_MASK) >> LRU_GEN_PGOFF) - 1; 162} 163 164static inline bool lru_gen_is_active(struct lruvec *lruvec, int gen) 165{ 166 unsigned long max_seq = lruvec->lrugen.max_seq; 167 168 VM_WARN_ON_ONCE(gen >= MAX_NR_GENS); 169 170 /* see the comment on MIN_NR_GENS */ 171 return gen == lru_gen_from_seq(max_seq) || gen == lru_gen_from_seq(max_seq - 1); 172} 173 174static inline void lru_gen_update_size(struct lruvec *lruvec, struct folio *folio, 175 int old_gen, int new_gen) 176{ 177 int type = folio_is_file_lru(folio); 178 int zone = folio_zonenum(folio); 179 int delta = folio_nr_pages(folio); 180 enum lru_list lru = type * LRU_INACTIVE_FILE; 181 struct lru_gen_folio *lrugen = &lruvec->lrugen; 182 183 VM_WARN_ON_ONCE(old_gen != -1 && old_gen >= MAX_NR_GENS); 184 VM_WARN_ON_ONCE(new_gen != -1 && new_gen >= MAX_NR_GENS); 185 VM_WARN_ON_ONCE(old_gen == -1 && new_gen == -1); 186 187 if (old_gen >= 0) 188 WRITE_ONCE(lrugen->nr_pages[old_gen][type][zone], 189 lrugen->nr_pages[old_gen][type][zone] - delta); 190 if (new_gen >= 0) 191 WRITE_ONCE(lrugen->nr_pages[new_gen][type][zone], 192 lrugen->nr_pages[new_gen][type][zone] + delta); 193 194 /* addition */ 195 if (old_gen < 0) { 196 if (lru_gen_is_active(lruvec, new_gen)) 197 lru += LRU_ACTIVE; 198 __update_lru_size(lruvec, lru, zone, delta); 199 return; 200 } 201 202 /* deletion */ 203 if (new_gen < 0) { 204 if (lru_gen_is_active(lruvec, old_gen)) 205 lru += LRU_ACTIVE; 206 __update_lru_size(lruvec, lru, zone, -delta); 207 return; 208 } 209 210 /* promotion */ 211 if (!lru_gen_is_active(lruvec, old_gen) && lru_gen_is_active(lruvec, new_gen)) { 212 __update_lru_size(lruvec, lru, zone, -delta); 213 __update_lru_size(lruvec, lru + LRU_ACTIVE, zone, delta); 214 } 215 216 /* demotion requires isolation, e.g., lru_deactivate_fn() */ 217 VM_WARN_ON_ONCE(lru_gen_is_active(lruvec, old_gen) && !lru_gen_is_active(lruvec, new_gen)); 218} 219 220static inline unsigned long lru_gen_folio_seq(struct lruvec *lruvec, struct folio *folio, 221 bool reclaiming) 222{ 223 int gen; 224 int type = folio_is_file_lru(folio); 225 struct lru_gen_folio *lrugen = &lruvec->lrugen; 226 227 /* 228 * +-----------------------------------+-----------------------------------+ 229 * | Accessed through page tables and | Accessed through file descriptors | 230 * | promoted by folio_update_gen() | and protected by folio_inc_gen() | 231 * +-----------------------------------+-----------------------------------+ 232 * | PG_active (set while isolated) | | 233 * +-----------------+-----------------+-----------------+-----------------+ 234 * | PG_workingset | PG_referenced | PG_workingset | LRU_REFS_FLAGS | 235 * +-----------------------------------+-----------------------------------+ 236 * |<---------- MIN_NR_GENS ---------->| | 237 * |<---------------------------- MAX_NR_GENS ---------------------------->| 238 */ 239 if (folio_test_active(folio)) 240 gen = MIN_NR_GENS - folio_test_workingset(folio); 241 else if (reclaiming) 242 gen = MAX_NR_GENS; 243 else if ((!folio_is_file_lru(folio) && !folio_test_swapcache(folio)) || 244 (folio_test_reclaim(folio) && 245 (folio_test_dirty(folio) || folio_test_writeback(folio)))) 246 gen = MIN_NR_GENS; 247 else 248 gen = MAX_NR_GENS - folio_test_workingset(folio); 249 250 return max(READ_ONCE(lrugen->max_seq) - gen + 1, READ_ONCE(lrugen->min_seq[type])); 251} 252 253static inline bool lru_gen_add_folio(struct lruvec *lruvec, struct folio *folio, bool reclaiming) 254{ 255 unsigned long seq; 256 unsigned long flags; 257 int gen = folio_lru_gen(folio); 258 int type = folio_is_file_lru(folio); 259 int zone = folio_zonenum(folio); 260 struct lru_gen_folio *lrugen = &lruvec->lrugen; 261 262 VM_WARN_ON_ONCE_FOLIO(gen != -1, folio); 263 264 if (folio_test_unevictable(folio) || !lrugen->enabled) 265 return false; 266 267 seq = lru_gen_folio_seq(lruvec, folio, reclaiming); 268 gen = lru_gen_from_seq(seq); 269 flags = (gen + 1UL) << LRU_GEN_PGOFF; 270 /* see the comment on MIN_NR_GENS about PG_active */ 271 set_mask_bits(&folio->flags, LRU_GEN_MASK | BIT(PG_active), flags); 272 273 lru_gen_update_size(lruvec, folio, -1, gen); 274 /* for folio_rotate_reclaimable() */ 275 if (reclaiming) 276 list_add_tail(&folio->lru, &lrugen->folios[gen][type][zone]); 277 else 278 list_add(&folio->lru, &lrugen->folios[gen][type][zone]); 279 280 return true; 281} 282 283static inline bool lru_gen_del_folio(struct lruvec *lruvec, struct folio *folio, bool reclaiming) 284{ 285 unsigned long flags; 286 int gen = folio_lru_gen(folio); 287 288 if (gen < 0) 289 return false; 290 291 VM_WARN_ON_ONCE_FOLIO(folio_test_active(folio), folio); 292 VM_WARN_ON_ONCE_FOLIO(folio_test_unevictable(folio), folio); 293 294 /* for folio_migrate_flags() */ 295 flags = !reclaiming && lru_gen_is_active(lruvec, gen) ? BIT(PG_active) : 0; 296 flags = set_mask_bits(&folio->flags, LRU_GEN_MASK, flags); 297 gen = ((flags & LRU_GEN_MASK) >> LRU_GEN_PGOFF) - 1; 298 299 lru_gen_update_size(lruvec, folio, gen, -1); 300 list_del(&folio->lru); 301 302 return true; 303} 304 305static inline void folio_migrate_refs(struct folio *new, struct folio *old) 306{ 307 unsigned long refs = READ_ONCE(old->flags) & LRU_REFS_MASK; 308 309 set_mask_bits(&new->flags, LRU_REFS_MASK, refs); 310} 311#else /* !CONFIG_LRU_GEN */ 312 313static inline bool lru_gen_enabled(void) 314{ 315 return false; 316} 317 318static inline bool lru_gen_in_fault(void) 319{ 320 return false; 321} 322 323static inline bool lru_gen_add_folio(struct lruvec *lruvec, struct folio *folio, bool reclaiming) 324{ 325 return false; 326} 327 328static inline bool lru_gen_del_folio(struct lruvec *lruvec, struct folio *folio, bool reclaiming) 329{ 330 return false; 331} 332 333static inline void folio_migrate_refs(struct folio *new, struct folio *old) 334{ 335 336} 337#endif /* CONFIG_LRU_GEN */ 338 339static __always_inline 340void lruvec_add_folio(struct lruvec *lruvec, struct folio *folio) 341{ 342 enum lru_list lru = folio_lru_list(folio); 343 344 if (lru_gen_add_folio(lruvec, folio, false)) 345 return; 346 347 update_lru_size(lruvec, lru, folio_zonenum(folio), 348 folio_nr_pages(folio)); 349 if (lru != LRU_UNEVICTABLE) 350 list_add(&folio->lru, &lruvec->lists[lru]); 351} 352 353static __always_inline 354void lruvec_add_folio_tail(struct lruvec *lruvec, struct folio *folio) 355{ 356 enum lru_list lru = folio_lru_list(folio); 357 358 if (lru_gen_add_folio(lruvec, folio, true)) 359 return; 360 361 update_lru_size(lruvec, lru, folio_zonenum(folio), 362 folio_nr_pages(folio)); 363 /* This is not expected to be used on LRU_UNEVICTABLE */ 364 list_add_tail(&folio->lru, &lruvec->lists[lru]); 365} 366 367static __always_inline 368void lruvec_del_folio(struct lruvec *lruvec, struct folio *folio) 369{ 370 enum lru_list lru = folio_lru_list(folio); 371 372 if (lru_gen_del_folio(lruvec, folio, false)) 373 return; 374 375 if (lru != LRU_UNEVICTABLE) 376 list_del(&folio->lru); 377 update_lru_size(lruvec, lru, folio_zonenum(folio), 378 -folio_nr_pages(folio)); 379} 380 381#ifdef CONFIG_ANON_VMA_NAME 382/* mmap_lock should be read-locked */ 383static inline void anon_vma_name_get(struct anon_vma_name *anon_name) 384{ 385 if (anon_name) 386 kref_get(&anon_name->kref); 387} 388 389static inline void anon_vma_name_put(struct anon_vma_name *anon_name) 390{ 391 if (anon_name) 392 kref_put(&anon_name->kref, anon_vma_name_free); 393} 394 395static inline 396struct anon_vma_name *anon_vma_name_reuse(struct anon_vma_name *anon_name) 397{ 398 /* Prevent anon_name refcount saturation early on */ 399 if (kref_read(&anon_name->kref) < REFCOUNT_MAX) { 400 anon_vma_name_get(anon_name); 401 return anon_name; 402 403 } 404 return anon_vma_name_alloc(anon_name->name); 405} 406 407static inline void dup_anon_vma_name(struct vm_area_struct *orig_vma, 408 struct vm_area_struct *new_vma) 409{ 410 struct anon_vma_name *anon_name = anon_vma_name(orig_vma); 411 412 if (anon_name) 413 new_vma->anon_name = anon_vma_name_reuse(anon_name); 414} 415 416static inline void free_anon_vma_name(struct vm_area_struct *vma) 417{ 418 /* 419 * Not using anon_vma_name because it generates a warning if mmap_lock 420 * is not held, which might be the case here. 421 */ 422 anon_vma_name_put(vma->anon_name); 423} 424 425static inline bool anon_vma_name_eq(struct anon_vma_name *anon_name1, 426 struct anon_vma_name *anon_name2) 427{ 428 if (anon_name1 == anon_name2) 429 return true; 430 431 return anon_name1 && anon_name2 && 432 !strcmp(anon_name1->name, anon_name2->name); 433} 434 435#else /* CONFIG_ANON_VMA_NAME */ 436static inline void anon_vma_name_get(struct anon_vma_name *anon_name) {} 437static inline void anon_vma_name_put(struct anon_vma_name *anon_name) {} 438static inline void dup_anon_vma_name(struct vm_area_struct *orig_vma, 439 struct vm_area_struct *new_vma) {} 440static inline void free_anon_vma_name(struct vm_area_struct *vma) {} 441 442static inline bool anon_vma_name_eq(struct anon_vma_name *anon_name1, 443 struct anon_vma_name *anon_name2) 444{ 445 return true; 446} 447 448#endif /* CONFIG_ANON_VMA_NAME */ 449 450void pfnmap_track_ctx_release(struct kref *ref); 451 452static inline void init_tlb_flush_pending(struct mm_struct *mm) 453{ 454 atomic_set(&mm->tlb_flush_pending, 0); 455} 456 457static inline void inc_tlb_flush_pending(struct mm_struct *mm) 458{ 459 atomic_inc(&mm->tlb_flush_pending); 460 /* 461 * The only time this value is relevant is when there are indeed pages 462 * to flush. And we'll only flush pages after changing them, which 463 * requires the PTL. 464 * 465 * So the ordering here is: 466 * 467 * atomic_inc(&mm->tlb_flush_pending); 468 * spin_lock(&ptl); 469 * ... 470 * set_pte_at(); 471 * spin_unlock(&ptl); 472 * 473 * spin_lock(&ptl) 474 * mm_tlb_flush_pending(); 475 * .... 476 * spin_unlock(&ptl); 477 * 478 * flush_tlb_range(); 479 * atomic_dec(&mm->tlb_flush_pending); 480 * 481 * Where the increment if constrained by the PTL unlock, it thus 482 * ensures that the increment is visible if the PTE modification is 483 * visible. After all, if there is no PTE modification, nobody cares 484 * about TLB flushes either. 485 * 486 * This very much relies on users (mm_tlb_flush_pending() and 487 * mm_tlb_flush_nested()) only caring about _specific_ PTEs (and 488 * therefore specific PTLs), because with SPLIT_PTE_PTLOCKS and RCpc 489 * locks (PPC) the unlock of one doesn't order against the lock of 490 * another PTL. 491 * 492 * The decrement is ordered by the flush_tlb_range(), such that 493 * mm_tlb_flush_pending() will not return false unless all flushes have 494 * completed. 495 */ 496} 497 498static inline void dec_tlb_flush_pending(struct mm_struct *mm) 499{ 500 /* 501 * See inc_tlb_flush_pending(). 502 * 503 * This cannot be smp_mb__before_atomic() because smp_mb() simply does 504 * not order against TLB invalidate completion, which is what we need. 505 * 506 * Therefore we must rely on tlb_flush_*() to guarantee order. 507 */ 508 atomic_dec(&mm->tlb_flush_pending); 509} 510 511static inline bool mm_tlb_flush_pending(struct mm_struct *mm) 512{ 513 /* 514 * Must be called after having acquired the PTL; orders against that 515 * PTLs release and therefore ensures that if we observe the modified 516 * PTE we must also observe the increment from inc_tlb_flush_pending(). 517 * 518 * That is, it only guarantees to return true if there is a flush 519 * pending for _this_ PTL. 520 */ 521 return atomic_read(&mm->tlb_flush_pending); 522} 523 524static inline bool mm_tlb_flush_nested(struct mm_struct *mm) 525{ 526 /* 527 * Similar to mm_tlb_flush_pending(), we must have acquired the PTL 528 * for which there is a TLB flush pending in order to guarantee 529 * we've seen both that PTE modification and the increment. 530 * 531 * (no requirement on actually still holding the PTL, that is irrelevant) 532 */ 533 return atomic_read(&mm->tlb_flush_pending) > 1; 534} 535 536#ifdef CONFIG_MMU 537/* 538 * Computes the pte marker to copy from the given source entry into dst_vma. 539 * If no marker should be copied, returns 0. 540 * The caller should insert a new pte created with make_pte_marker(). 541 */ 542static inline pte_marker copy_pte_marker( 543 swp_entry_t entry, struct vm_area_struct *dst_vma) 544{ 545 pte_marker srcm = pte_marker_get(entry); 546 /* Always copy error entries. */ 547 pte_marker dstm = srcm & (PTE_MARKER_POISONED | PTE_MARKER_GUARD); 548 549 /* Only copy PTE markers if UFFD register matches. */ 550 if ((srcm & PTE_MARKER_UFFD_WP) && userfaultfd_wp(dst_vma)) 551 dstm |= PTE_MARKER_UFFD_WP; 552 553 return dstm; 554} 555#endif 556 557/* 558 * If this pte is wr-protected by uffd-wp in any form, arm the special pte to 559 * replace a none pte. NOTE! This should only be called when *pte is already 560 * cleared so we will never accidentally replace something valuable. Meanwhile 561 * none pte also means we are not demoting the pte so tlb flushed is not needed. 562 * E.g., when pte cleared the caller should have taken care of the tlb flush. 563 * 564 * Must be called with pgtable lock held so that no thread will see the none 565 * pte, and if they see it, they'll fault and serialize at the pgtable lock. 566 * 567 * Returns true if an uffd-wp pte was installed, false otherwise. 568 */ 569static inline bool 570pte_install_uffd_wp_if_needed(struct vm_area_struct *vma, unsigned long addr, 571 pte_t *pte, pte_t pteval) 572{ 573#ifdef CONFIG_PTE_MARKER_UFFD_WP 574 bool arm_uffd_pte = false; 575 576 /* The current status of the pte should be "cleared" before calling */ 577 WARN_ON_ONCE(!pte_none(ptep_get(pte))); 578 579 /* 580 * NOTE: userfaultfd_wp_unpopulated() doesn't need this whole 581 * thing, because when zapping either it means it's dropping the 582 * page, or in TTU where the present pte will be quickly replaced 583 * with a swap pte. There's no way of leaking the bit. 584 */ 585 if (vma_is_anonymous(vma) || !userfaultfd_wp(vma)) 586 return false; 587 588 /* A uffd-wp wr-protected normal pte */ 589 if (unlikely(pte_present(pteval) && pte_uffd_wp(pteval))) 590 arm_uffd_pte = true; 591 592 /* 593 * A uffd-wp wr-protected swap pte. Note: this should even cover an 594 * existing pte marker with uffd-wp bit set. 595 */ 596 if (unlikely(pte_swp_uffd_wp_any(pteval))) 597 arm_uffd_pte = true; 598 599 if (unlikely(arm_uffd_pte)) { 600 set_pte_at(vma->vm_mm, addr, pte, 601 make_pte_marker(PTE_MARKER_UFFD_WP)); 602 return true; 603 } 604#endif 605 return false; 606} 607 608static inline bool vma_has_recency(struct vm_area_struct *vma) 609{ 610 if (vma->vm_flags & (VM_SEQ_READ | VM_RAND_READ)) 611 return false; 612 613 if (vma->vm_file && (vma->vm_file->f_mode & FMODE_NOREUSE)) 614 return false; 615 616 return true; 617} 618 619#endif