Skip to main content

obkrnl/uma/
zone.rs

1use super::{Alloc, BucketHdr, Slab, Uma, UmaBucket, UmaFlags, UmaKeg};
2use crate::context::{CpuLocal, config, current_thread};
3use crate::lock::Mutex;
4use crate::mem::Strong;
5use crate::vm::Vm;
6use alloc::collections::VecDeque;
7use alloc::collections::linked_list::LinkedList;
8use alloc::string::String;
9use alloc::sync::Arc;
10use alloc::vec::Vec;
11use core::cell::RefCell;
12use core::cmp::min;
13use core::num::NonZero;
14use core::ops::DerefMut;
15use core::pin::Pin;
16use core::ptr::{NonNull, null_mut};
17use core::sync::atomic::{AtomicBool, Ordering};
18
19/// Implementation of `uma_zone` structure.
20pub struct UmaZone {
21    bucket_enable: Arc<AtomicBool>,
22    bucket_keys: Arc<Vec<usize>>,
23    bucket_zones: Arc<Vec<UmaZone>>,
24    ty: ZoneType,
25    size: NonZero<usize>,                                              // uz_size
26    slab: unsafe fn(&Arc<UmaKeg>, Alloc) -> Option<Pin<Strong<Slab>>>, // uz_slab
27    init: Option<fn(*mut u8, NonZero<usize>, Alloc) -> bool>,          // uz_init
28    ctor: Option<fn(*mut u8, NonZero<usize>, Alloc) -> bool>,          // uz_ctor
29    dtor: Option<fn()>,                                                // uz_dtor
30    caches: CpuLocal<RefCell<UmaCache>>,                               // uz_cpu
31    state: Mutex<ZoneState>,
32}
33
34impl UmaZone {
35    const ALIGN_CACHE: usize = 63; // uma_align_cache
36
37    /// See `zone_ctor` on Orbis for a reference.
38    ///
39    /// # Reference offsets
40    /// | Version | Offset |
41    /// |---------|--------|
42    /// |PS4 11.00|0x13D490|
43    pub(super) fn new(
44        vm: &'static Vm,
45        bucket_enable: Arc<AtomicBool>,
46        bucket_keys: Arc<Vec<usize>>,
47        bucket_zones: Arc<Vec<UmaZone>>,
48        args: ZoneArgs,
49    ) -> Self {
50        let name = args.name;
51        let flags = args.flags;
52        let (keg, mut flags) = if flags.has_any(UmaFlags::Secondary) {
53            todo!()
54        } else {
55            // We use a different approach here to make it idiomatic to Rust. On Orbis it will
56            // construct a keg here if it is passed from the caller. If not it will allocate a new
57            // keg from masterzone_k.
58            let keg = match args.keg {
59                Some(v) => v,
60                None => UmaKeg::new(
61                    vm,
62                    args.size,
63                    args.align.unwrap_or(Self::ALIGN_CACHE),
64                    args.init,
65                    flags,
66                ),
67            };
68
69            (keg, UmaFlags::zeroed())
70        };
71
72        // Get type and uz_count.
73        let mut ty = ZoneType::Other;
74        let mut count = 0;
75
76        if !keg.flags().has_any(UmaFlags::Internal) {
77            count = if !keg.flags().has_any(UmaFlags::MaxBucket) {
78                min(keg.item_per_slab(), Uma::BUCKET_MAX)
79            } else {
80                Uma::BUCKET_MAX
81            };
82
83            match name.as_str() {
84                "mbuf_packet" => {
85                    ty = ZoneType::MbufPacket;
86                    count = 4;
87                }
88                "mbuf_cluster_pack" => {
89                    ty = ZoneType::MbufClusterPack;
90                    count = Uma::BUCKET_MAX;
91                }
92                "mbuf_jumbo_page" => {
93                    ty = ZoneType::MbufJumboPage;
94                    count = 1;
95                }
96                "mbuf" => {
97                    ty = ZoneType::Mbuf;
98                    count = 16;
99                }
100                "mbuf_cluster" => {
101                    ty = ZoneType::MbufCluster;
102                    count = 1;
103                }
104                _ => (),
105            }
106        }
107
108        // Construct uma_zone.
109        let inherit = UmaFlags::Offpage
110            | UmaFlags::Malloc
111            | UmaFlags::Hash
112            | UmaFlags::VToSlab
113            | UmaFlags::Bucket
114            | UmaFlags::Internal
115            | UmaFlags::CacheOnly;
116
117        flags |= keg.flags() & inherit;
118
119        Self {
120            bucket_enable,
121            bucket_keys,
122            bucket_zones,
123            ty,
124            size: keg.size(),
125            slab: Self::fetch_slab,
126            init: None,
127            ctor: args.ctor,
128            dtor: args.dtor,
129            caches: CpuLocal::new(|_| RefCell::default()),
130            state: Mutex::new(ZoneState {
131                kegs: LinkedList::from([keg]),
132                full_buckets: VecDeque::default(),
133                free_buckets: VecDeque::default(),
134                alloc_count: 0,
135                free_count: 0,
136                count,
137                fills: 0,
138                flags,
139            }),
140        }
141    }
142
143    pub fn size(&self) -> NonZero<usize> {
144        self.size
145    }
146
147    /// See `uma_zalloc_arg` on the Orbis for a reference.
148    ///
149    /// # Reference offsets
150    /// | Version | Offset |
151    /// |---------|--------|
152    /// |PS4 11.00|0x13E750|
153    pub fn alloc(&self, flags: Alloc) -> *mut u8 {
154        if flags.has_any(Alloc::Wait) {
155            // TODO: The Orbis also modify td_pflags on a certain condition.
156            let td = current_thread();
157
158            if !td.can_sleep() {
159                panic!("attempt to do waitable heap allocation in a non-sleeping context");
160            }
161        }
162
163        let m = loop {
164            // Try allocate from per-CPU cache first so we don't need to acquire a mutex lock.
165            let caches = self.caches.lock();
166            let mem = Self::alloc_from_cache(caches.borrow_mut().deref_mut());
167
168            if !mem.is_null() {
169                break mem;
170            }
171
172            drop(caches); // Exit from non-sleeping context before acquire the mutex.
173
174            // Cache not found, allocate from the zone. We need to re-check the cache again because
175            // we may on a different CPU since we drop the CPU pinning on the above.
176            let mut state = self.state.lock();
177            let caches = self.caches.lock();
178            let mut cache = caches.borrow_mut();
179            let mem = Self::alloc_from_cache(&mut cache);
180
181            if !mem.is_null() {
182                break mem;
183            }
184
185            // TODO: What actually we are doing here?
186            state.alloc_count += core::mem::take(&mut cache.allocs);
187            state.free_count += core::mem::take(&mut cache.frees);
188
189            if let Some(b) = cache.alloc.take() {
190                state.free_buckets.push_front(b);
191            }
192
193            if let Some(b) = state.full_buckets.pop_front() {
194                cache.alloc = Some(b);
195
196                // Seems like this should never fail.
197                let m = Self::alloc_from_cache(&mut cache);
198
199                debug_assert!(!m.is_null());
200
201                break m;
202            }
203
204            drop(cache);
205            drop(caches);
206
207            // TODO: What is this?
208            if matches!(
209                self.ty,
210                ZoneType::MbufPacket
211                    | ZoneType::MbufJumboPage
212                    | ZoneType::Mbuf
213                    | ZoneType::MbufCluster
214            ) {
215                if flags.has_any(Alloc::Wait) {
216                    todo!()
217                }
218
219                todo!()
220            }
221
222            // TODO: What is this?
223            if !matches!(
224                self.ty,
225                ZoneType::MbufCluster
226                    | ZoneType::Mbuf
227                    | ZoneType::MbufJumboPage
228                    | ZoneType::MbufPacket
229                    | ZoneType::MbufClusterPack
230            ) && state.count < Uma::BUCKET_MAX
231            {
232                state.count += 1;
233            }
234
235            if self.alloc_bucket(&mut state, flags) {
236                return self.alloc_item(&mut state, flags);
237            }
238        };
239
240        // The Orbis apply M_ZERO after calling uz_ctor, which seems like a bug.
241        if flags.has_any(Alloc::Zero) {
242            unsafe { m.write_bytes(0, self.size.get()) };
243        }
244
245        if self.ctor.is_none_or(move |f| f(m, self.size, flags)) {
246            m
247        } else {
248            todo!()
249        }
250    }
251
252    /// See `uma_zfree_arg` on the Orbis for a reference.
253    ///
254    /// # Safety
255    /// `item` either allocated from [Self::alloc()] or null.
256    ///
257    /// # Reference offsets
258    /// | Version | Offset |
259    /// |---------|--------|
260    /// |PS4 11.00|0x13EFC0|
261    pub unsafe fn free(&self, item: *mut u8) {
262        if item.is_null() {
263            return;
264        } else if self.dtor.is_some() {
265            todo!()
266        }
267
268        // Check zone type.
269        let mut state = self.state.lock();
270
271        if self.ty != ZoneType::MbufPacket
272            && self.ty != ZoneType::MbufClusterPack
273            && self.ty != ZoneType::MbufJumboPage
274            && self.ty != ZoneType::Mbuf
275            && self.ty != ZoneType::MbufCluster
276            && state.flags.has_any(UmaFlags::Full)
277        {
278            todo!()
279        }
280
281        // TODO: The uz_flags check on above defeat below optimization. On Orbis they did not put
282        // uz_flags behind a uz_lock.
283        loop {
284            let caches = self.caches.lock();
285            let mut cache = caches.borrow_mut();
286
287            while cache.free.is_some() {
288                todo!()
289            }
290
291            state.alloc_count += core::mem::take(&mut cache.allocs);
292            state.free_count += core::mem::take(&mut cache.frees);
293
294            if cache.free.take().is_some() {
295                todo!()
296            }
297
298            if state.free_buckets.front().is_some() {
299                todo!()
300            }
301
302            drop(cache);
303            drop(caches);
304
305            if !self.bucket_enable.load(Ordering::Relaxed) {
306                todo!()
307            }
308
309            // Get bucket zone.
310            let i = (state.count + 15) >> Uma::BUCKET_SHIFT;
311            let k = self.bucket_keys[i];
312            let b = &self.bucket_zones[k];
313            let f = Alloc::from((u32::from(state.flags) >> 31) << 9); // TODO: Refactor this.
314
315            drop(state);
316
317            // Alloc a bucket. The Orbis does not force M_ZERO here but we do the opposite to
318            // eliminate the chance of dangling pointer in bucket items.
319            let b = b.alloc_item(&mut b.state.lock(), f | Alloc::Zero | Alloc::NoWait);
320
321            if b.is_null() {
322                todo!()
323            }
324
325            // Initialize bucket.
326            let h = BucketHdr { len: 0 };
327            let b = unsafe {
328                core::ptr::write(b.cast(), h);
329                core::ptr::slice_from_raw_parts_mut(b, Uma::BUCKET_SIZES[k]) as *mut UmaBucket
330            };
331
332            // Add to free list.
333            state = self.state.lock();
334            state
335                .free_buckets
336                .push_front(unsafe { NonNull::new_unchecked(b) });
337        }
338    }
339
340    fn alloc_from_cache(c: &mut UmaCache) -> *mut u8 {
341        while let Some(b) = c.alloc.map(|v| v.as_ptr()) {
342            if let Some(v) = unsafe { (*b).hdr.len.checked_sub(1) } {
343                unsafe { (*b).hdr.len = v };
344
345                c.allocs += 1;
346
347                return unsafe { (*b).items[v] };
348            }
349
350            if c.free
351                .map(|v| v.as_ptr())
352                .is_some_and(|b| unsafe { (*b).hdr.len != 0 })
353            {
354                core::mem::swap(&mut c.alloc, &mut c.free);
355                continue;
356            }
357
358            break;
359        }
360
361        null_mut()
362    }
363
364    /// See `zone_alloc_bucket` on the Orbis for a reference.
365    ///
366    /// # Reference offsets
367    /// | Version | Offset |
368    /// |---------|--------|
369    /// |PS4 11.00|0x13EBA0|
370    fn alloc_bucket(&self, state: &mut ZoneState, flags: Alloc) -> bool {
371        // Get bucket.
372        let b = match state.free_buckets.front() {
373            Some(_) => todo!(),
374            None => {
375                if self.bucket_enable.load(Ordering::Relaxed) {
376                    // Get allocation flags. On Orbis it will remove M_ZERO from the flags but we do
377                    // the opposite to eliminate the chance of dangling pointer in bucket items.
378                    let mut flags = flags | Alloc::Zero;
379
380                    if state.flags.has_any(UmaFlags::CacheOnly) {
381                        flags |= Alloc::NoVm;
382                    }
383
384                    // Alloc a bucket.
385                    let i = (state.count + 15) >> Uma::BUCKET_SHIFT;
386                    let k = self.bucket_keys[i];
387                    let b = &self.bucket_zones[k];
388                    let b = b.alloc_item(&mut b.state.lock(), flags);
389
390                    if b.is_null() {
391                        todo!()
392                    }
393
394                    // Initialize bucket.
395                    let h = BucketHdr { len: 0 };
396                    let s = Uma::BUCKET_SIZES[k];
397
398                    unsafe {
399                        core::ptr::write(b.cast(), h);
400                        core::ptr::slice_from_raw_parts_mut(b, s) as *mut UmaBucket
401                    }
402                } else {
403                    todo!()
404                }
405            }
406        };
407
408        // SAFETY: We have exclusive access to the bucket.
409        let b = unsafe { &mut *b };
410
411        if state.fills < config().cpu_count().get().into() {
412            let n = min(b.items.len(), state.count);
413            let k = state.kegs.front().unwrap();
414            let mut f = flags;
415
416            state.fills += 1;
417
418            while b.hdr.len < n {
419                let s = match unsafe { (self.slab)(k, f) } {
420                    Some(v) => v,
421                    None => todo!(),
422                };
423
424                while b.hdr.len < n {
425                    let i = s.alloc_item();
426
427                    if i.is_null() {
428                        break;
429                    }
430
431                    b.items[b.hdr.len] = i;
432                    b.hdr.len += 1;
433                }
434
435                f |= Alloc::NoWait;
436            }
437
438            if self.init.is_some() {
439                todo!()
440            }
441
442            state.fills -= 1;
443
444            if b.hdr.len != 0 {
445                state
446                    .full_buckets
447                    .push_front(unsafe { NonNull::new_unchecked(b) });
448
449                return true;
450            }
451
452            todo!()
453        }
454
455        todo!()
456    }
457
458    /// See `zone_alloc_item` on the Orbis for a reference.
459    ///
460    /// # Reference offsets
461    /// | Version | Offset |
462    /// |---------|--------|
463    /// |PS4 11.00|0x13DD50|
464    fn alloc_item(&self, state: &mut ZoneState, flags: Alloc) -> *mut u8 {
465        // Get a slab.
466        let keg = state.kegs.front().unwrap();
467        let slab = unsafe { (self.slab)(keg, flags) };
468
469        if let Some(slab) = slab {
470            let item = slab.alloc_item();
471
472            state.alloc_count += 1;
473
474            if self.init.is_none_or(|f| f(item, self.size, flags)) {
475                if self.ctor.is_none_or(|f| f(item, self.size, flags)) {
476                    if flags.has_any(Alloc::Zero) {
477                        unsafe { item.write_bytes(0, self.size.get()) };
478                    }
479
480                    return item;
481                } else {
482                    todo!()
483                }
484            } else {
485                todo!()
486            }
487        }
488
489        todo!()
490    }
491
492    /// See `zone_fetch_slab` on the Orbis for a reference.
493    ///
494    /// # Reference offsets
495    /// | Version | Offset |
496    /// |---------|--------|
497    /// |PS4 11.00|0x141DB0|
498    unsafe fn fetch_slab(keg: &Arc<UmaKeg>, flags: Alloc) -> Option<Pin<Strong<Slab>>> {
499        if !keg.flags().has_any(UmaFlags::Bucket) || keg.recurse() == 0 {
500            loop {
501                if let Some(v) = unsafe { keg.fetch_slab(flags) } {
502                    return Some(v);
503                }
504
505                if flags.has_any(Alloc::NoWait | Alloc::NoVm) {
506                    break;
507                }
508            }
509        }
510
511        None
512    }
513}
514
515/// Contains mutable data for [UmaZone].
516struct ZoneState {
517    kegs: LinkedList<Arc<UmaKeg>>,              // uz_kegs + uz_klink
518    full_buckets: VecDeque<NonNull<UmaBucket>>, // uz_full_bucket
519    free_buckets: VecDeque<NonNull<UmaBucket>>, // uz_free_bucket
520    alloc_count: u64,                           // uz_allocs
521    free_count: u64,                            // uz_frees
522    count: usize,                               // uz_count
523    fills: u16,                                 // uz_fills
524    flags: UmaFlags,                            // uz_flags
525}
526
527unsafe impl Send for ZoneState {}
528
529/// Type of [UmaZone].
530#[derive(Clone, Copy, PartialEq, Eq)]
531enum ZoneType {
532    Other,
533    /// `zone_pack`.
534    MbufPacket,
535    /// `zone_jumbop`.
536    MbufJumboPage,
537    /// `zone_mbuf`.
538    Mbuf,
539    /// `zone_clust`.
540    MbufCluster,
541    /// `zone_clust_pack`.
542    MbufClusterPack,
543}
544
545/// Implementation of `uma_cache` structure.
546#[derive(Default)]
547struct UmaCache {
548    alloc: Option<NonNull<UmaBucket>>, // uc_allocbucket
549    free: Option<NonNull<UmaBucket>>,  // uc_freebucket
550    allocs: u64,                       // uc_allocs
551    frees: u64,                        // uc_frees
552}
553
554unsafe impl Send for UmaCache {}
555
556/// Implementation of `uma_zctor_args` structure.
557pub struct ZoneArgs {
558    pub name: String,                                             // name
559    pub keg: Option<Arc<UmaKeg>>,                                 // keg
560    pub size: NonZero<usize>,                                     // size
561    pub align: Option<usize>,                                     // align
562    pub init: Option<fn()>,                                       // uminit
563    pub ctor: Option<fn(*mut u8, NonZero<usize>, Alloc) -> bool>, // ctor
564    pub dtor: Option<fn()>,                                       // dtor
565    pub flags: UmaFlags,                                          // flags
566}