Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F138933199
D24429.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D24429.diff
View Options
Index: head/sys/kern/kern_sysctl.c
===================================================================
--- head/sys/kern/kern_sysctl.c
+++ head/sys/kern/kern_sysctl.c
@@ -1648,13 +1648,15 @@
int error = 0, ro_string = 0;
/*
- * If the sysctl isn't writable, microoptimise and treat it as a
- * const string.
+ * If the sysctl isn't writable and isn't a preallocated tunable that
+ * can be modified by kenv(2), microoptimise and treat it as a
+ * read-only string.
* A zero-length buffer indicates a fixed size read-only
* string. In ddb, don't worry about trying to make a malloced
* snapshot.
*/
- if (!(oidp->oid_kind & CTLFLAG_WR) || arg2 == 0 || kdb_active) {
+ if ((oidp->oid_kind & CTLFLAG_WR | CTLFLAG_TUN) == 0 || arg2 == 0
+ || kdb_active) {
arg2 = strlen((char *)arg1) + 1;
ro_string = 1;
}
@@ -1697,8 +1699,7 @@
arg2 = req->newlen - req->newidx;
tmparg = malloc(arg2, M_SYSCTLTMP, M_WAITOK);
- error = copyin((const char *)req->newptr + req->newidx,
- tmparg, arg2);
+ error = SYSCTL_IN(req, tmparg, arg2);
if (error) {
free(tmparg, M_SYSCTLTMP);
return (error);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Dec 6, 9:37 PM (11 h, 35 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
26760832
Default Alt Text
D24429.diff (1 KB)
Attached To
Mode
D24429: sysctl(9): fix handling string tunables
Attached
Detach File
Event Timeline
Log In to Comment