Page MenuHomeFreeBSD

libsysdecode: PROT_MAX() decoding bug
ClosedPublic

Authored by sigsys_gmail.com on Nov 22 2020, 8:07 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, May 6, 2:35 PM
Unknown Object (File)
Mar 31 2025, 4:23 AM
Unknown Object (File)
Mar 11 2025, 6:38 AM
Unknown Object (File)
Mar 10 2025, 4:47 PM
Unknown Object (File)
Mar 4 2025, 10:56 AM
Unknown Object (File)
Feb 24 2025, 12:48 PM
Unknown Object (File)
Feb 24 2025, 12:48 PM
Unknown Object (File)
Feb 24 2025, 12:47 PM
Subscribers

Details

Summary

Small bug with with the regular protection bits not being decoded when there's a PROT_MAX.

Test Plan

Doesn't seem like anything uses explicit PROT_MAX()s in base. So here's a sample program to truss.

#include <stddef.h>
#include <sys/mman.h>
#include <sys/param.h>

int main() {
	int prots[] = { PROT_NONE, PROT_READ, PROT_WRITE, PROT_EXEC, PROT_READ|PROT_WRITE, PROT_READ|PROT_WRITE|PROT_EXEC };
	for (size_t i = 0; i < nitems(prots); i++)
		for (size_t j = 0; j < nitems(prots); j++)
			mmap(NULL, PAGE_SIZE, prots[i] | PROT_MAX(prots[j]), MAP_ANON, -1, 0);
	return (0);
}

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable