Page MenuHomeFreeBSD

libsysdecode: PROT_MAX() decoding bug
ClosedPublic

Authored by sigsys_gmail.com on Nov 22 2020, 8:07 AM.
Tags
None
Referenced Files
F149492695: D27312.diff
Tue, Mar 24, 7:59 PM
Unknown Object (File)
Sun, Mar 22, 7:56 PM
Unknown Object (File)
Sun, Mar 22, 1:03 PM
Unknown Object (File)
Fri, Mar 20, 6:46 AM
Unknown Object (File)
Thu, Mar 19, 9:25 PM
Unknown Object (File)
Wed, Mar 18, 6:14 AM
Unknown Object (File)
Fri, Mar 13, 3:59 AM
Unknown Object (File)
Tue, Mar 10, 4:03 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