[sudo-commits] sudo changeset 13478:e25cff5d148b

Todd C. Miller Todd.Miller at sudo.ws
Mon Sep 13 08:53:42 MDT 2021


changeset:	13478:e25cff5d148b in /raid/repos/sudo
details:	https://www.sudo.ws/repos/sudo/rev/e25cff5d148b
user:		Todd C. Miller <Todd.Miller at sudo.ws>
date:		Thu Sep 09 12:25:13 2021 -0600

Log Message:
	Merge sudo 1.9.8 from tip

diffstat:

 .clang-format                               |     2 +-
 .gitignore                                  |     3 +
 .hgignore                                   |     3 +
 INSTALL                                     |    29 +-
 MANIFEST                                    |    21 +-
 Makefile.in                                 |    15 +-
 NEWS                                        |    63 +
 aclocal.m4                                  |     1 +
 autogen.sh                                  |     4 +-
 config.h.in                                 |    26 +-
 configure                                   |  1775 +++++++++-
 configure.ac                                |   136 +-
 doc/CONTRIBUTORS                            |     2 +-
 doc/HISTORY                                 |     6 +-
 doc/LICENSE                                 |    56 +-
 doc/Makefile.in                             |     4 +-
 doc/sudo.conf.man.in                        |    79 +-
 doc/sudo.conf.mdoc.in                       |    75 +-
 doc/sudo.man.in                             |     6 +-
 doc/sudo.mdoc.in                            |     6 +-
 doc/sudo_logsrv.proto.man.in                |    21 +-
 doc/sudo_logsrv.proto.mdoc.in               |    20 +-
 doc/sudo_logsrvd.conf.man.in                |    63 +-
 doc/sudo_logsrvd.conf.mdoc.in               |    60 +-
 doc/sudoers.man.in                          |   338 +-
 doc/sudoers.mdoc.in                         |   318 +-
 doc/sudoreplay.man.in                       |    16 +-
 doc/sudoreplay.mdoc.in                      |    16 +-
 etc/codespell.exclude                       |     1 +
 etc/sudo.pp                                 |     2 +-
 examples/Makefile.in                        |     2 +-
 examples/sudo.conf.in                       |    15 +
 examples/sudo_logsrvd.conf                  |    19 +-
 include/intercept.pb-c.h                    |   367 ++
 include/log_server.pb-c.h                   |     6 +-
 include/sudo_compat.h                       |    47 +-
 include/sudo_conf.h                         |     4 +-
 include/sudo_debug.h                        |     3 +-
 include/sudo_eventlog.h                     |     4 +
 lib/eventlog/eventlog.c                     |   318 +-
 lib/iolog/iolog_mkdtemp.c                   |     7 +
 lib/iolog/iolog_timing.c                    |     6 +
 lib/logsrv/Makefile.in                      |    17 +-
 lib/logsrv/log_server.pb-c.c                |    19 +-
 lib/logsrv/log_server.proto                 |     1 +
 lib/logsrv/protobuf-c.c                     |  3662 ---------------------
 lib/protobuf-c/Makefile.in                  |   181 +
 lib/protobuf-c/protobuf-c.c                 |  3662 +++++++++++++++++++++
 lib/util/Makefile.in                        |    85 +-
 lib/util/mksiglist.c                        |    15 +-
 lib/util/mksiglist.h                        |   174 -
 lib/util/mksigname.c                        |    13 +-
 lib/util/mksigname.h                        |   175 -
 lib/util/regress/uuid/uuid_test.c           |    92 +
 lib/util/regress/vsyslog/vsyslog_test.c     |   130 -
 lib/util/siglist.in                         |     4 +-
 lib/util/sudo_conf.c                        |    25 +-
 lib/util/sudo_debug.c                       |    33 +-
 lib/util/sys_siglist.h                      |   182 +
 lib/util/sys_signame.h                      |   182 +
 lib/util/util.exp.in                        |     2 +
 lib/util/uuid.c                             |    31 +-
 lib/util/vsyslog.c                          |    79 -
 logsrvd/Makefile.in                         |    42 +-
 logsrvd/iolog_writer.c                      |   270 +-
 logsrvd/logsrv_util.c                       |     9 +-
 logsrvd/logsrvd.c                           |   270 +-
 logsrvd/logsrvd.h                           |     4 +
 logsrvd/logsrvd_conf.c                      |   378 ++-
 logsrvd/logsrvd_journal.c                   |   104 +-
 logsrvd/logsrvd_local.c                     |   203 +-
 logsrvd/logsrvd_queue.c                     |    29 +-
 logsrvd/logsrvd_relay.c                     |   134 +-
 logsrvd/sendlog.c                           |    11 +-
 logsrvd/tls_init.c                          |    27 +-
 m4/ax_prog_cc_for_build.m4                  |   155 +
 m4/sudo.m4                                  |    52 +-
 pathnames.h.in                              |    10 +-
 plugins/audit_json/audit_json.c             |     2 +-
 plugins/python/sudo_python_debug.c          |     2 +-
 plugins/sample_approval/sample_approval.c   |     2 +-
 plugins/sudoers/Makefile.in                 |     6 +-
 plugins/sudoers/audit.c                     |    71 +-
 plugins/sudoers/auth/bsdauth.c              |     4 +
 plugins/sudoers/auth/pam.c                  |     1 -
 plugins/sudoers/check.c                     |    16 +-
 plugins/sudoers/cvtsudoers.c                |     2 +-
 plugins/sudoers/cvtsudoers_json.c           |     7 +-
 plugins/sudoers/cvtsudoers_ldif.c           |     6 +-
 plugins/sudoers/def_data.c                  |    20 +
 plugins/sudoers/def_data.h                  |    10 +
 plugins/sudoers/def_data.in                 |    15 +
 plugins/sudoers/defaults.c                  |    51 +-
 plugins/sudoers/defaults.h                  |     1 +
 plugins/sudoers/editor.c                    |    10 +-
 plugins/sudoers/exptilde.c                  |     2 +-
 plugins/sudoers/file.c                      |     1 +
 plugins/sudoers/find_path.c                 |     5 +
 plugins/sudoers/fmtsudoers.c                |     6 +-
 plugins/sudoers/gc.c                        |    12 -
 plugins/sudoers/gram.c                      |  1210 +++---
 plugins/sudoers/gram.h                      |    96 +-
 plugins/sudoers/gram.y                      |    31 +-
 plugins/sudoers/iolog.c                     |     7 +-
 plugins/sudoers/ldap.c                      |     2 +-
 plugins/sudoers/ldap_util.c                 |    35 +-
 plugins/sudoers/log_client.c                |    51 +-
 plugins/sudoers/log_client.h                |     4 +
 plugins/sudoers/logging.c                   |   177 +-
 plugins/sudoers/logging.h                   |     5 +-
 plugins/sudoers/match.c                     |     5 -
 plugins/sudoers/match_command.c             |    96 +-
 plugins/sudoers/mkdefaults                  |     2 +-
 plugins/sudoers/parse.c                     |    27 +-
 plugins/sudoers/parse.h                     |    24 +-
 plugins/sudoers/po/cs.mo                    |   Bin 
 plugins/sudoers/po/cs.po                    |  1457 +++++---
 plugins/sudoers/po/de.mo                    |   Bin 
 plugins/sudoers/po/de.po                    |  1454 +++++---
 plugins/sudoers/po/eo.mo                    |   Bin 
 plugins/sudoers/po/eo.po                    |  1449 +++++---
 plugins/sudoers/po/fr.mo                    |   Bin 
 plugins/sudoers/po/fr.po                    |  1453 +++++---
 plugins/sudoers/po/hr.mo                    |   Bin 
 plugins/sudoers/po/hr.po                    |  1458 +++++---
 plugins/sudoers/po/it.mo                    |   Bin 
 plugins/sudoers/po/it.po                    |   651 ++-
 plugins/sudoers/po/ko.mo                    |   Bin 
 plugins/sudoers/po/ko.po                    |  1462 +++++---
 plugins/sudoers/po/pl.mo                    |   Bin 
 plugins/sudoers/po/pl.po                    |  1458 +++++---
 plugins/sudoers/po/pt.mo                    |   Bin 
 plugins/sudoers/po/pt.po                    |  1465 +++++---
 plugins/sudoers/po/pt_BR.mo                 |   Bin 
 plugins/sudoers/po/pt_BR.po                 |  1813 ++++++----
 plugins/sudoers/po/sr.mo                    |   Bin 
 plugins/sudoers/po/sr.po                    |   653 ++-
 plugins/sudoers/po/sudoers.pot              |  1508 +++++---
 plugins/sudoers/po/uk.mo                    |   Bin 
 plugins/sudoers/po/uk.po                    |  1453 +++++---
 plugins/sudoers/po/zh_CN.mo                 |   Bin 
 plugins/sudoers/po/zh_CN.po                 |  1479 +++++---
 plugins/sudoers/po/zh_TW.mo                 |   Bin 
 plugins/sudoers/po/zh_TW.po                 |  1457 +++++---
 plugins/sudoers/policy.c                    |    62 +-
 plugins/sudoers/prompt.c                    |    41 +-
 plugins/sudoers/regress/fuzz/fuzz_policy.c  |    47 +-
 plugins/sudoers/regress/fuzz/fuzz_sudoers.c |     7 +-
 plugins/sudoers/set_perms.c                 |    42 +-
 plugins/sudoers/sssd.c                      |     2 +-
 plugins/sudoers/sudo_ldap.h                 |     1 -
 plugins/sudoers/sudoers.c                   |   130 +-
 plugins/sudoers/sudoers.h                   |     8 +-
 plugins/sudoers/sudoers_debug.c             |     2 +-
 plugins/sudoers/sudoreplay.c                |    47 +-
 plugins/sudoers/testsudoers.c               |     6 +-
 plugins/sudoers/toke.c                      |  4612 +++++++++++++-------------
 plugins/sudoers/toke.l                      |    12 +-
 plugins/sudoers/tsdump.c                    |     2 +-
 plugins/sudoers/visudo.c                    |     1 +
 po/cs.mo                                    |   Bin 
 po/cs.po                                    |   550 +-
 po/eo.mo                                    |   Bin 
 po/eo.po                                    |   628 +-
 po/fr.mo                                    |   Bin 
 po/fr.po                                    |   550 +-
 po/hr.mo                                    |   Bin 
 po/hr.po                                    |   552 +-
 po/ko.mo                                    |   Bin 
 po/ko.po                                    |   564 +-
 po/pl.mo                                    |   Bin 
 po/pl.po                                    |   547 +-
 po/pt.mo                                    |   Bin 
 po/pt.po                                    |   552 +-
 po/pt_BR.mo                                 |   Bin 
 po/pt_BR.po                                 |   552 +-
 po/sudo.pot                                 |   535 +-
 po/tr.mo                                    |   Bin 
 po/tr.po                                    |   552 +-
 po/uk.mo                                    |   Bin 
 po/uk.po                                    |   552 +-
 po/zh_CN.mo                                 |   Bin 
 po/zh_CN.po                                 |   552 +-
 po/zh_TW.mo                                 |   Bin 
 po/zh_TW.po                                 |   882 ++--
 scripts/mkdep.pl                            |     4 +-
 scripts/mkpkg                               |    23 +-
 scripts/pp                                  |     8 +-
 src/Makefile.in                             |   186 +-
 src/exec.c                                  |    18 +-
 src/exec_common.c                           |   149 +-
 src/exec_intercept.c                        |   954 +++++
 src/exec_monitor.c                          |    25 +-
 src/exec_nopty.c                            |    35 +-
 src/exec_preload.c                          |   212 +
 src/exec_pty.c                              |    40 +-
 src/intercept.exp.in                        |     6 +
 src/intercept.pb-c.c                        |   829 ++++
 src/intercept.proto                         |    69 +
 src/regress/net_ifs/check_net_ifs.c         |    10 +-
 src/selinux.c                               |     2 +-
 src/sesh.c                                  |    13 +-
 src/sudo.c                                  |   341 +-
 src/sudo.h                                  |    41 +-
 src/sudo_exec.h                             |    25 +-
 src/sudo_intercept.c                        |   396 ++
 src/sudo_intercept_common.c                 |   453 ++
 207 files changed, 32607 insertions(+), 20943 deletions(-)



More information about the sudo-commits mailing list