Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F102709006
D47600.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
D47600.diff
View Options
diff --git a/sys/security/mac_do/mac_do.c b/sys/security/mac_do/mac_do.c
--- a/sys/security/mac_do/mac_do.c
+++ b/sys/security/mac_do/mac_do.c
@@ -309,30 +309,22 @@
static int
sysctl_rules(SYSCTL_HANDLER_ARGS)
{
- char *new_string;
+ char *const buf = malloc(MAC_RULE_STRING_LEN, M_DO, M_WAITOK);
struct prison *pr;
struct rules *rules;
int error;
rules = find_rules(req->td->td_ucred->cr_prison, &pr);
- prison_unlock(pr);
- if (req->newptr == NULL)
- return (sysctl_handle_string(oidp, rules->string, MAC_RULE_STRING_LEN, req));
-
- new_string = malloc(MAC_RULE_STRING_LEN, M_DO,
- M_WAITOK|M_ZERO);
- prison_lock(pr);
- strlcpy(new_string, rules->string, MAC_RULE_STRING_LEN);
+ strlcpy(buf, rules->string, MAC_RULE_STRING_LEN);
prison_unlock(pr);
- error = sysctl_handle_string(oidp, new_string, MAC_RULE_STRING_LEN, req);
- if (error)
+ error = sysctl_handle_string(oidp, buf, MAC_RULE_STRING_LEN, req);
+ if (error != 0 || req->newptr == NULL)
goto out;
- error = parse_and_set_rules(pr, new_string);
-
+ error = parse_and_set_rules(pr, buf);
out:
- free(new_string, M_DO);
+ free(buf, M_DO);
return (error);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Nov 17, 4:25 AM (21 h, 48 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
14661804
Default Alt Text
D47600.diff (1 KB)
Attached To
Mode
D47600: MAC/do: sysctl_rules(): Always copy the rules specification string
Attached
Detach File
Event Timeline
Log In to Comment