Todd C. Miller
0aa216ed55
Refactor freeing of a member_list into free_members().
2016-11-01 14:15:07 -06:00
Todd C. Miller
9de491dc27
add_defaults() now calls sudoerserror() itself instead of the caller
...
assuming any error means out of member.
2016-11-01 14:13:47 -06:00
Todd C. Miller
484b5718d8
s/rval/ret/g -- old habits die hard
2016-11-01 12:34:24 -06:00
Todd C. Miller
2dbe50d1e1
Remove inaccurate XXX comment, sudo_file_parse() sends mail on parse error.
2016-10-31 16:21:50 -06:00
Todd C. Miller
b5f444111e
The fix for Bug #408 broke editing of files in an include dir that
...
have a syntax error. Normally, visudo does not edit those files,
but if a syntax error is detected in one, the user gets a chance
to fix it.
2016-10-31 15:57:05 -06:00
Todd C. Miller
5a8b60e4b4
Make a copy of the current sudoers path when assigning errorfile.
...
Fixes a potential use after free in visudo when there is an error
in one of the include files.
2016-10-31 15:21:18 -06:00
Todd C. Miller
a3a545e416
sudoers_debug_register() was not setting the active debug instance
...
to sudoers_debug_instance when called from the I/O log plugin. This
is because it relied on sudo_debug_register to do that but
sudoers_debug_parse_flags() doesn't set debug_files[]
sudoers_debug_instance is already set (we can only init sudoers
debug once).
To work around this, just make sudoers_debug_instance the active
debug instance in sudoers_debug_register() when it is already set.
2016-10-31 13:36:35 -06:00
Todd C. Miller
e8af335eb8
Fix pasto when setting I/O plugin debug files
2016-10-31 13:12:35 -06:00
Todd C. Miller
1fdcce7faf
use cp instead of *cur when comparing against plugin_path
2016-10-31 12:54:53 -06:00
Todd C. Miller
9f903d3bdd
In sudo_mkdir_parents() inherit the gid of / instead of using gid
...
0 for the first component.
2016-10-30 09:09:12 -06:00
Todd C. Miller
cf707cf5f0
We want to inherit the gid from the parent directory when not setting
...
permissions on intermerdiate directories.
2016-10-30 06:36:55 -06:00
Todd C. Miller
bf62530acf
Move io_mkdir_parents() to its own file and use it in ts_mkdirs().
2016-10-29 12:45:57 -06:00
Todd C. Miller
271a07ff00
Make the I/O log file/dir permissions and owner configurable.
2016-10-29 12:45:55 -06:00
Todd C. Miller
b058ac5299
Add vsyslog.lo
2016-10-29 12:22:40 -06:00
Todd C. Miller
43bf2fdb90
sudo 1.8.19
2016-10-29 10:23:33 -06:00
Todd C. Miller
3423d0af7c
Don't try to syntax check an unrecognized Defaults value in visudo.
2016-10-28 08:24:51 -06:00
Todd C. Miller
7122a733ac
Create I/O log files with the same gid as the parent directory.
2016-10-26 14:18:58 -06:00
Todd C. Miller
a401107564
Check for sudo_ldap_result_last_search() returning NULL. This can't
...
happen in practice because we always call sudo_ldap_result_add_search()
first which guarantees there is a result to be found.
Quiets a PVS-Studio warning.
2016-10-26 13:49:05 -06:00
Todd C. Miller
5a7936209e
Quiet a PVS-Studio warning about the spin loop when waiting for the
...
parent to assign us the terminal pgrp.
2016-10-26 13:49:04 -06:00
Todd C. Miller
dbd5252798
Fix incorrect strncmp() lengths. The check for USERNAME was only
...
looking at the first 5 characters (copy and paste error). The check
for SUDO_PS1 was not checking the trailing '=' character (off by
one error). Found by PVS-Studio.
2016-10-26 11:25:59 -06:00
Todd C. Miller
4c8988d483
When checking for old-style bash functions in the environment, check
...
for values starting with "() " (note the trailing space) rather
than "()". Bash will only treat the value as a function if the
space after "()" is present. The trailing space was already present
in the compare string but when it was added, the length passed to
strncmp() was not updated from 3 to 4.
Found by PVS-Studio. No security impact.
2016-10-26 11:22:30 -06:00
Todd C. Miller
63adb21cea
Add some missing casts from uid_t/gid_t to int when printing uid/gid
...
values. We print these as signed so a value of -1 (no change) is
obvious. Quiets PVS-Studio warnings.
2016-10-26 11:08:33 -06:00
Todd C. Miller
cf5a12c09a
def_timestamp_timeout is a double so compare against 0.0 not 0 to
...
avoid making it appear to be an integer type.
2016-10-26 10:56:32 -06:00
Todd C. Miller
e3825cbedd
When checking syslog facility or priority, move the string
...
compare into the body of the loop and return if it matches.
If we finish the loop it means we didn't find a match.
This makes the code a little bit more readable.
2016-10-26 10:46:03 -06:00
Todd C. Miller
fc1b4155d7
Replace bare ";" in the body of for() loops with "continue;" for
...
improved readability.
2016-10-26 10:42:28 -06:00
Todd C. Miller
f9d6777755
Update from http://git.savannah.gnu.org/gitweb/?p=config.git
2016-10-21 10:06:14 -06:00
Todd C. Miller
17d8734581
Update to libtool 2.4.6
2016-10-21 10:03:02 -06:00
Todd C. Miller
d078450fb5
Use a static buffer if possible.
2016-10-19 12:56:34 -06:00
Todd C. Miller
19c96da44d
add vsyslog() for systems without it.
2016-10-19 11:32:36 -06:00
Todd C. Miller
6fa59b7416
There are now 14 tag values, not 10. Don't bother mentioning the
...
number since it keeps increasing. Bug #759
2016-10-19 07:33:07 -06:00
Todd C. Miller
c18ff022e0
Use vsyslog() if available.
2016-10-18 17:00:53 -06:00
Todd C. Miller
44c2679f83
Add syslog_maxlen to control the max size of syslog messages.
2016-10-18 15:51:47 -06:00
Todd C. Miller
f632e0a63d
Don't generate SIGTOU when restoring the terminal modes. It doen't
...
make sense to suspend the process only to restore the terminal
settings since in this case the shell has already taken ownership
of the tty.
2016-10-17 09:02:34 -06:00
Todd C. Miller
9b886f6b2c
The flush parameter of sudo_term_restore() is bool, not int.
2016-10-17 08:57:17 -06:00
Todd C. Miller
afcdc28534
Add wordexp() to the list of functions wrapped by sudo_noexec.so.
2016-10-14 10:33:55 -06:00
Todd C. Miller
ddbbcb9441
Need RTLD_NEXT for wordexp() on dlopen() systems. It is missing on AIX 5.1 at least.
2016-10-10 08:38:50 -06:00
Todd C. Miller
9dbd45ff66
add missing guard around wordexp()
2016-10-10 08:33:57 -06:00
Todd C. Miller
bea34c9e6d
expand on 1.8.18p1 changes
2016-10-10 08:24:47 -06:00
Todd C. Miller
45b396598b
sudo 1.8.18p1
2016-10-09 19:58:54 -06:00
Todd C. Miller
8e49ce07f6
Fix configure check for seccomp filter on Linux
2016-10-09 11:24:29 -06:00
Todd C. Miller
237e2f964d
Use a seccomp filter on Linux to disable execve(2) and execveat(2).
...
This still relies on LD_PRELOAD to work so it has the same issues
as the existing mether with respect to running 32-bit binaries on
a 64-bit kernel.
2016-10-08 19:09:17 -06:00
Todd C. Miller
d24b9246a9
regen
2016-10-08 19:02:15 -06:00
Todd C. Miller
b5f1d4e254
regen
2016-10-08 10:36:02 -06:00
Todd C. Miller
d0ccd947d0
Wrap wordexp(3) in sudo_noexec.
2016-10-05 20:21:18 -06:00
Todd C. Miller
96580de20c
Clean .json files created by "make check"
2016-09-26 13:38:51 -06:00
Todd C. Miller
90e4538c00
recompile .po files
2016-09-19 16:40:26 -06:00
Todd C. Miller
0a68d6799e
Fix matching when no sudoRunAsUser is present in a sudoRole.
...
If only a sudoRunAsGroup is present, match on the invoking user
if the -g option was specified and the group matched.
If no sudoRunAsGroup is present and the -g option was specified,
allow it if it matches the passwd gid of the runas user.
This matches the behavior of the sudoers backend.
2016-09-19 06:19:49 -06:00
Todd C. Miller
1bccd14180
runas_pw can no longer be NULL
2016-09-19 06:08:00 -06:00
Todd C. Miller
25f90b4811
RunAsGroup without RunAsUser issues
2016-09-15 15:24:00 -06:00
Todd C. Miller
9a55c0c25d
user_matched and group_matched must be type int, not bool
2016-09-15 15:22:06 -06:00