Page MenuHomeFreeBSD

aarch64: enable tagged pointers (TBI — Top Byte Ignored)
Needs ReviewPublic

Authored by val_packett.cool on Jul 2 2019, 1:19 PM.
Tags
Referenced Files
F108738924: D20835.diff
Mon, Jan 27, 3:43 PM
Unknown Object (File)
Sun, Jan 26, 4:30 AM
Unknown Object (File)
Sat, Jan 18, 3:02 AM
Unknown Object (File)
Fri, Jan 3, 7:30 PM
Unknown Object (File)
Dec 25 2024, 11:44 AM
Unknown Object (File)
Dec 24 2024, 8:58 AM
Unknown Object (File)
Dec 10 2024, 10:53 AM
Unknown Object (File)
Nov 18 2024, 5:00 AM

Details

Reviewers
manu
andrew
Group Reviewers
arm64
Contributor Reviews (src)
Summary

TBI is a very useful feature of ARMv8 that allows the top byte of pointers to be used as a tag. This is useful for various JIT compilers, HWASAN etc. This has been enabled on Linux since 2013, but not on FreeBSD yet. (upd: also on Linux it's per-process toggleable via procctl or something now?)

Linux clears the bits on EL0 data abort, so I've done the same (??) here — not sure about that actually.

Test Plan

This example

#include <stdio.h>
#include <stdint.h>

static inline char *tag(char *ptr) {
        return (char*)(((uintptr_t)ptr & 0xffffffffffff) | (69L << 56));
}

int main() {
        char v = 'x';
        printf("ptr %p val %c\n", &v, *(&v));
        printf("ptr %p\n", tag(&v));
        printf("val %c\n", *tag(&v));
        return 0;
}

no longer segfaults on the last dereference.

UPD: also, I got HWASAN working :) my current llvm80 patches are here (I'll try to keep the link here up to date)

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Skipped
Unit
Tests Skipped