History log of /src/sys/secmodel/extensions/secmodel_extensions.c |
Revision | | Date | Author | Comments |
1.16 |
| 22-Apr-2023 |
riastradh | secmodel_extensions: Split vfs part into separate .c file.
This way we can provide weak rumpkern stubs that don't require rumpvfs for things that are relevant to vfs, but if you do link rumpvfs then you get the same logic in secmodel extensions.
|
1.15 |
| 29-Mar-2022 |
christos | isroot should be bool...
|
1.14 |
| 28-Mar-2022 |
rillig | secmodel: fix grammar in description of hardlink_check_gid
|
1.13 |
| 27-Mar-2022 |
christos | Implement restrictions for adding hard links to files
|
1.12 |
| 16-Mar-2020 |
pgoyette | Use the module subsystem's ability to process SYSCTL_SETUP() entries to automate installation of sysctl nodes.
Note that there are still a number of device and pseudo-device modules that create entries tied to individual device units, rather than to the module itself. These are not changed.
|
1.11 |
| 21-Feb-2020 |
joerg | Explicitly cast pointers to uintptr_t before casting to enums. They are not necessarily the same size. Don't cast pointers to bool, check for NULL instead.
|
1.10 |
| 04-Sep-2018 |
maxv | branches: 1.10.6; Introduce KAUTH_REQ_PROCESS_CANSEE_KPTR, and use it in the already-existing modstat code. No real functional change.
|
1.9 |
| 25-Aug-2018 |
maxv | Add KAUTH_REQ_PROCESS_CANSEE_EPROC, and use it for the kern.proc node. Same permission as before, so no functional change.
|
1.8 |
| 08-Apr-2018 |
kamil | branches: 1.8.2; Add new sysctl(3) entry: security.models.extensions.user_set_dbregs
Model this new sysctl(3) entry after "user_set_cpu_affinity" in the same level of sysctl(3) switches.
Allow to read unconditionally Debug Registers (no change here). This is convenient as even if a user of a debugger does not use hardware assisted watchpoints/breakpoints, a debugger can still prompt these values to store in an internal cache with context of registers. Reading them should have no security concerns.
Add a paranoid MI switch that prohibits by default setting these registers by a regular user (non-superuser). Make this switch disabled by default. There are enough reserved bits out there to allow using them unconditionally on hardened hosts.
Features shipped with Debug Registers are optional features in debuggers. There is no reduction in elementary functionality.
Reviewed by <christos>
Sponsored by <The NetBSD Foundation>
|
1.7 |
| 12-Dec-2015 |
maxv | branches: 1.7.10; 1.7.16; secmodel_extensions_system_cb() is not mount-specific, even though KAUTH_SYSTEM_MOUNT happens to be the only option handled here.
Put everything into a swith(action). No functional change.
|
1.6 |
| 25-Feb-2014 |
pooka | branches: 1.6.6; Ensure that the top level sysctl nodes (kern, vfs, net, ...) exist before the sysctl link sets are processed, and remove redundancy.
Shaves >13kB off of an amd64 GENERIC, not to mention >1k duplicate lines of code.
|
1.5 |
| 28-Feb-2013 |
martin | branches: 1.5.6; Make the callback deal with embryonic connections which do not have credentials yet. Fixes PR kern/47598.
|
1.4 |
| 28-Jan-2013 |
jym | Re-instate backwards compatible security.models.bsd44.{curtain,securelevel}.
They were mistakenly removed when curtain and securelevel moved to secmodel_extensions(9).
Reported by tls@ on tech-security@.
XXX will ask for pull-up for -6.
|
1.3 |
| 13-Mar-2012 |
elad | branches: 1.3.2; 1.3.4; Replace the remaining KAUTH_GENERIC_ISSUSER authorization calls with something meaningful. All relevant documentation has been updated or written.
Most of these changes were brought up in the following messages:
http://mail-index.netbsd.org/tech-kern/2012/01/18/msg012490.html http://mail-index.netbsd.org/tech-kern/2012/01/19/msg012502.html http://mail-index.netbsd.org/tech-kern/2012/02/17/msg012728.html
Thanks to christos, manu, njoly, and jmmv for input.
Huge thanks to pgoyette for spinning these changes through some build cycles and ATF.
|
1.2 |
| 04-Dec-2011 |
jym | branches: 1.2.2; 1.2.4; 1.2.8; When user_set_cpu_affinity is non-zero, only allow users to modify the CPU affinity of the LWPs they own.
|
1.1 |
| 04-Dec-2011 |
jym | Implement the register/deregister/evaluation API for secmodel(9). It allows registration of callbacks that can be used later for cross-secmodel "safe" communication.
When a secmodel wishes to know a property maintained by another secmodel, it has to submit a request to it so the other secmodel can proceed to evaluating the request. This is done through the secmodel_eval(9) call; example:
bool isroot; error = secmodel_eval("org.netbsd.secmodel.suser", "is-root", cred, &isroot); if (error == 0 && !isroot) result = KAUTH_RESULT_DENY;
This one asks the suser module if the credentials are assumed to be root when evaluated by suser module. If the module is present, it will respond. If absent, the call will return an error.
Args and command are arbitrarily defined; it's up to the secmodel(9) to document what it expects.
Typical example is securelevel testing: when someone wants to know whether securelevel is raised above a certain level or not, the caller has to request this property to the secmodel_securelevel(9) module. Given that securelevel module may be absent from system's context (thus making access to the global "securelevel" variable impossible or unsafe), this API can cope with this absence and return an error.
We are using secmodel_eval(9) to implement a secmodel_extensions(9) module, which plugs with the bsd44, suser and securelevel secmodels to provide the logic behind curtain, usermount and user_set_cpu_affinity modes, without adding hooks to traditional secmodels. This solves a real issue with the current secmodel(9) code, as usermount or user_set_cpu_affinity are not really tied to secmodel_suser(9).
The secmodel_eval(9) is also used to restrict security.models settings when securelevel is above 0, through the "is-securelevel-above" evaluation: - curtain can be enabled any time, but cannot be disabled if securelevel is above 0. - usermount/user_set_cpu_affinity can be disabled any time, but cannot be enabled if securelevel is above 0.
Regarding sysctl(7) entries: curtain and usermount are now found under security.models.extensions tree. The security.curtain and vfs.generic.usermount are still accessible for backwards compat.
Documentation is incoming, I am proof-reading my writings.
Written by elad@, reviewed and tested (anita test + interact for rights tests) by me. ok elad@.
See also http://mail-index.netbsd.org/tech-security/2011/11/29/msg000422.html
XXX might consider va0 mapping too.
XXX Having a secmodel(9) specific printf (like aprint_*) for reporting secmodel(9) errors might be a good idea, but I am not sure on how to design such a function right now.
|
1.2.8.2 |
| 14-Mar-2013 |
riz | Pull up following revision(s) (requested by martin in ticket #839): sys/secmodel/extensions/secmodel_extensions.c: revision 1.5 Make the callback deal with embryonic connections which do not have credentials yet. Fixes PR kern/47598.
|
1.2.8.1 |
| 08-Feb-2013 |
riz | Pull up following revision(s) (requested by jym in ticket #802): sys/secmodel/securelevel/secmodel_securelevel.c: revision 1.29 sys/secmodel/extensions/secmodel_extensions.c: revision 1.4 Re-instate backwards compatible security.models.bsd44.{curtain,securelevel}. They were mistakenly removed when curtain and securelevel moved to secmodel_extensions(9). Reported by tls@ on tech-security@. XXX will ask for pull-up for -6.
|
1.2.4.3 |
| 05-Apr-2012 |
mrg | sync to latest -current.
|
1.2.4.2 |
| 18-Feb-2012 |
mrg | merge from -current (not sure why these were missed).
|
1.2.4.1 |
| 04-Dec-2011 |
mrg | file secmodel_extensions.c was added on branch jmcneill-usbmp on 2012-02-18 07:58:24 +0000
|
1.2.2.2 |
| 14-Mar-2013 |
riz | Pull up following revision(s) (requested by martin in ticket #839): sys/secmodel/extensions/secmodel_extensions.c: revision 1.5 Make the callback deal with embryonic connections which do not have credentials yet. Fixes PR kern/47598.
|
1.2.2.1 |
| 08-Feb-2013 |
riz | Pull up following revision(s) (requested by jym in ticket #802): sys/secmodel/securelevel/secmodel_securelevel.c: revision 1.29 sys/secmodel/extensions/secmodel_extensions.c: revision 1.4 Re-instate backwards compatible security.models.bsd44.{curtain,securelevel}. They were mistakenly removed when curtain and securelevel moved to secmodel_extensions(9). Reported by tls@ on tech-security@. XXX will ask for pull-up for -6.
|
1.3.4.4 |
| 03-Dec-2017 |
jdolecek | update from HEAD
|
1.3.4.3 |
| 20-Aug-2014 |
tls | Rebase to HEAD as of a few days ago.
|
1.3.4.2 |
| 23-Jun-2013 |
tls | resync from head
|
1.3.4.1 |
| 25-Feb-2013 |
tls | resync with head
|
1.3.2.3 |
| 22-May-2014 |
yamt | sync with head.
for a reference, the tree before this commit was tagged as yamt-pagecache-tag8.
this commit was splitted into small chunks to avoid a limitation of cvs. ("Protocol error: too many arguments")
|
1.3.2.2 |
| 17-Apr-2012 |
yamt | sync with head
|
1.3.2.1 |
| 13-Mar-2012 |
yamt | file secmodel_extensions.c was added on branch yamt-pagecache on 2012-04-17 00:08:50 +0000
|
1.5.6.1 |
| 18-May-2014 |
rmind | sync with head
|
1.6.6.1 |
| 27-Dec-2015 |
skrll | Sync with HEAD (as of 26th Dec)
|
1.7.16.2 |
| 06-Sep-2018 |
pgoyette | Sync with HEAD
Resolve a couple of conflicts (result of the uimin/uimax changes)
|
1.7.16.1 |
| 16-Apr-2018 |
pgoyette | Sync with HEAD, resolve some conflicts
|
1.7.10.1 |
| 12-Apr-2018 |
snj | Pull up following revision(s) (requested by kamil in ticket #713): sys/secmodel/extensions/secmodel_extensions.c: 1.8 Add new sysctl(3) entry: security.models.extensions.user_set_dbregs Model this new sysctl(3) entry after "user_set_cpu_affinity" in the same level of sysctl(3) switches. Allow to read unconditionally Debug Registers (no change here). This is convenient as even if a user of a debugger does not use hardware assisted watchpoints/breakpoints, a debugger can still prompt these values to store in an internal cache with context of registers. Reading them should have no security concerns. Add a paranoid MI switch that prohibits by default setting these registers by a regular user (non-superuser). Make this switch disabled by default. There are enough reserved bits out there to allow using them unconditionally on hardened hosts. Features shipped with Debug Registers are optional features in debuggers. There is no reduction in elementary functionality. Reviewed by <christos> Sponsored by <The NetBSD Foundation>
|
1.8.2.2 |
| 08-Apr-2020 |
martin | Merge changes from current as of 20200406
|
1.8.2.1 |
| 10-Jun-2019 |
christos | Sync with HEAD
|
1.10.6.1 |
| 29-Feb-2020 |
ad | Sync with head.
|