Blame SPECS/tlog.spec

3bc3b9
Name:       tlog
bfe097
Version:    12.1
bdc79a
Release:    2%{?dist}
3bc3b9
Summary:    Terminal I/O logger
3bc3b9
3bc3b9
License:    GPLv2+
3bc3b9
URL:        https://github.com/Scribery/%{name}
3bc3b9
Source:     https://github.com/Scribery/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
3bc3b9
76c8e3
BuildRequires:  gcc
3bc3b9
BuildRequires:  json-c-devel
3bc3b9
BuildRequires:  curl-devel
3bc3b9
BuildRequires:  m4
a08854
BuildRequires:  libutempter-devel
3bc3b9
# If it's not RHEL6 and older
3bc3b9
%if 0%{?rhel} == 0 || 0%{?rhel} >= 7
3bc3b9
BuildRequires:  systemd-devel
3bc3b9
BuildRequires:  systemd-units
3bc3b9
%endif
3bc3b9
Requires(post):     sed
3bc3b9
Requires(postun):   sed
3bc3b9
3bc3b9
3bc3b9
%description
3bc3b9
Tlog is a terminal I/O recording program similar to "script", but used in
3bc3b9
place of a user's shell, starting the recording and executing the real user's
3bc3b9
shell afterwards. The recorded I/O can then be forwarded to a logging server
3bc3b9
in JSON format.
3bc3b9
3bc3b9
%global _hardened_build 1
3bc3b9
3bc3b9
%prep
3bc3b9
%setup -q
3bc3b9
3bc3b9
%build
3bc3b9
# If it's not RHEL6 and older
3bc3b9
%if 0%{?rhel} == 0 || 0%{?rhel} >= 7
a08854
%configure --disable-rpath --disable-static --enable-utempter
3bc3b9
# Else, if it's RHEL6 or older
3bc3b9
%else
3bc3b9
%configure --disable-rpath --disable-static --disable-journal
3bc3b9
%endif
3bc3b9
make %{?_smp_mflags}
3bc3b9
3bc3b9
%check
3bc3b9
make %{?_smp_mflags} check
3bc3b9
3bc3b9
%pre
3bc3b9
getent group %{name} >/dev/null ||
3bc3b9
    groupadd -r %{name}
3bc3b9
getent passwd %{name} >/dev/null ||
3bc3b9
    useradd -r -g %{name} -d %{_localstatedir}/run/%{name} -s /sbin/nologin \
3bc3b9
            -c "Tlog terminal I/O logger" %{name}
3bc3b9
3bc3b9
%install
3bc3b9
make install DESTDIR=%{buildroot}
3bc3b9
rm %{buildroot}/%{_libdir}/*.la
3bc3b9
# Remove development files as we're not doing a devel package yet
3bc3b9
rm %{buildroot}/%{_libdir}/*.so
3bc3b9
rm -r %{buildroot}/usr/include/%{name}
3bc3b9
3bc3b9
# If it's not RHEL6 and older
3bc3b9
%if 0%{?rhel} == 0 || 0%{?rhel} >= 7
3bc3b9
    # Create tmpfiles.d configuration for the lock dir
3bc3b9
    mkdir -p %{buildroot}%{_tmpfilesdir}
3bc3b9
    {
3bc3b9
        echo "# Type Path Mode UID GID Age Argument"
3bc3b9
        echo "d /run/%{name} 0755 %{name} %{name}"
3bc3b9
    } > %{buildroot}%{_tmpfilesdir}/%{name}.conf
3bc3b9
    # Create the lock dir
3bc3b9
    mkdir -p %{buildroot}/run
3bc3b9
    install -d -m 0755 %{buildroot}/run/%{name}
3bc3b9
# Else, if it's RHEL6 or older
3bc3b9
%else
3bc3b9
    # Create the lock dir
3bc3b9
    mkdir -p %{buildroot}%{_localstatedir}/run
3bc3b9
    install -d -m 0755 %{buildroot}%{_localstatedir}/run/%{name}
3bc3b9
%endif
3bc3b9
3bc3b9
%files
3bc3b9
%{!?_licensedir:%global license %doc}
3bc3b9
%license COPYING
3bc3b9
%doc %{_defaultdocdir}/%{name}
3bc3b9
%{_bindir}/%{name}-rec
3bc3b9
%attr(6755,%{name},%{name}) %{_bindir}/%{name}-rec-session
3bc3b9
%{_bindir}/%{name}-play
3bc3b9
%{_libdir}/lib%{name}.so*
3bc3b9
%{_datadir}/%{name}
3bc3b9
%{_mandir}/man5/*
3bc3b9
%{_mandir}/man8/*
3bc3b9
# If it's not RHEL6 and older
3bc3b9
%if 0%{?rhel} == 0 || 0%{?rhel} >= 7
3bc3b9
%config(noreplace) %{_tmpfilesdir}/%{name}.conf
3bc3b9
%dir %attr(-,%{name},%{name}) /run/%{name}
3bc3b9
# Else if it's RHEL6 or older
3bc3b9
%else
3bc3b9
%dir %attr(-,%{name},%{name}) %{_localstatedir}/run/%{name}
3bc3b9
%endif
3bc3b9
%dir %{_sysconfdir}/%{name}
3bc3b9
%config(noreplace) %{_sysconfdir}/%{name}/%{name}-rec.conf
3bc3b9
%config(noreplace) %{_sysconfdir}/%{name}/%{name}-rec-session.conf
3bc3b9
%config(noreplace) %{_sysconfdir}/%{name}/%{name}-play.conf
3bc3b9
3bc3b9
%post
3bc3b9
/sbin/ldconfig
3bc3b9
3bc3b9
%postun
3bc3b9
/sbin/ldconfig
3bc3b9
3bc3b9
%changelog
bdc79a
* Mon May 23 2022 Justin Stephenson <jstephen@redhat.com> - 12.1
bfe097
- Exit transfer loop when output fd is closed
bfe097
- Revert "Prevent infinite transfer loop on GDM login"
bfe097
f596d5
* Wed Nov 17 2021 Justin Stephenson <jstephen@redhat.com> - 12-1
f596d5
- Release v12
f596d5
- Prevent infinite transfer loop on GDM login.
f596d5
- tlog-play: add journal namespace support.
f596d5
- tlitest: extend delay for limit-action delay test.
f596d5
2d6534
* Tue Apr 27 2021 Justin Stephenson <jstephen@redhat.com> - 11-1
2d6534
- Fire SIGCHLD after utempter_add_record since it probably eats it.
2d6534
- Correct suse rpmbuild
2d6534
- Update debbuild for travis CI
2d6534
a08854
* Thu Oct 15 2020 Justin Stephenson <jstephen@redhat.com> - 9-2
a08854
- Skip utmp removal with piped IO on stdin
a08854
a08854
* Thu Oct 15 2020 Justin Stephenson <jstephen@redhat.com> - 9-1
a08854
- Release v9
a08854
- Add libutempter support
a08854
- Require journal match filter
a08854
- Add file reader match functionality
a08854
- Restore cursor visibility and color attributes on tlog-play exit
a08854
- Add "time" real clock timestamp message field
a08854
- Various upstream CI improvements
a08854
ad9edb
* Tue May 26 2020 Justin Stephenson <jstephen@redhat.com> - 8-2
ad9edb
- Test fixups from v8
ad9edb
ad9edb
* Thu May 21 2020 Justin Stephenson <jstephen@redhat.com> - 8-1
ad9edb
- Release v8
ad9edb
- Spec file fixes for EL6
ad9edb
- Spec file improvements for Debian/Ubuntu pkg-config
ad9edb
- Tlog-play improve authentication options
ad9edb
- Handle piped in I/O from stdin and improve the main recording transfer exit
ad9edb
  condition.
ad9edb
- Use empty string on hostname resolution failure
ad9edb
76c8e3
* Tue Nov 12 2019 Justin Stephenson <jstephen@redhat.com> - 7-1
76c8e3
- Release v7
76c8e3
- Allow tlog-play redirection of stdout
76c8e3
- Add -i/--interactive option to tlog-rec-session. Allows login
76c8e3
  programs to call tlog-rec-session more transparently.
76c8e3
- Make in_txt/out_txt fields optional. This handles missing fields
76c8e3
  when reading from Elasticsearch or other backends.
76c8e3
76c8e3
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6-2
76c8e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
76c8e3
76c8e3
* Tue May 28 2019 Justin Stephenson <jstephen@redhat.com> - 6-1
c47093
- Release v6. Added features and implemented fixes follow. See README.md and
c47093
  manpages for documentation of new features.
c47093
- Add integration tests for end-to-end test coverage.
c47093
- Fix compiler type comparison error with json-c json_object_array_length
c47093
  return value.
c47093
- Fix a distribution issue causing incorrect M4_CONF_PATH expansion.
c47093
- Log more detailed error when systemd journal is not present.
c47093
76c8e3
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5-2
76c8e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
76c8e3
76c8e3
* Wed Dec 5 2018 Kirill Glebov <kgliebov@redhat.com> - 5-1
76c8e3
- Release v5. Added features and implemented fixes follow. See README.md and
76c8e3
  manpages for documentation of new features.
76c8e3
- Implement support for --configuration option for all programs.
76c8e3
  The option makes the program output its configuration in JSON and then
76c8e3
  exit.
76c8e3
- Add BuildDependencies to allow yum-builddep.
76c8e3
- Open JSON writer file with euid/egid. To allow creating protected log files
76c8e3
  with tlog-rec-session, open the JSON writer's file with the EUID and
76c8e3
  GUID the program was started with.
76c8e3
- Installing Packages with the APT Addon instead of apt-get.
76c8e3
- Switch to using TLOG_ERRS_RAISE macros.
76c8e3
- Fix tlog-play cleanup-path segfault.
76c8e3
- Modify command-line option parsing.
76c8e3
- Remove "fields" field from ES query URL to fix compatibility with
76c8e3
  Elasticsearch 5.
76c8e3
- Remove unused _source parameter from ES query URL.
76c8e3
- Fix tlog-rec-session file permissions bug.
76c8e3
- Use CLOCK_MONOTONIC for rate-limiting writing.
76c8e3
- Filter out some more input control sequences.
3bc3b9
76c8e3
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4-4
76c8e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
3bc3b9
3bc3b9
* Tue Mar 06 2018 Björn Esser <besser82@fedoraproject.org> - 4-3
3bc3b9
- Rebuilt for libjson-c.so.4 (json-c v0.13.1)
3bc3b9
3bc3b9
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4-2
3bc3b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3bc3b9
3bc3b9
* Wed Jan 24 2018 Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> - 4-1
3bc3b9
- Release v4. Added features and implemented fixes follow. See README.md and
3bc3b9
  manpages for documentation of new features.
3bc3b9
- Extract user session recording functionality from tlog-rec into a new tool:
3bc3b9
  tlog-rec-session. It should be used as the user's login shell now, and
3bc3b9
  tlog-rec should be used as a general recording and testing tool.
3bc3b9
- Add (optional) support for writing to and reading from Systemd Journal - the
3bc3b9
  "journal" reader and writer.
3bc3b9
- Make tlog-rec default to "file" writer, and tlog-rec-session to "journal",
3bc3b9
  if built with Journal support, and to "syslog" otherwise.
3bc3b9
- Add "-o" option to tlog-rec as an alias to "--file-path".
3bc3b9
- Add "-i" option to tlog-play as an alias to "--file-path".
3bc3b9
- Assume locale charset is UTF-8, if ASCII charset is detected, since that is
3bc3b9
  a likely indication the locale settings were lost. E.g. upon console login
3bc3b9
  or "su -" on Fedora and RHEL.
3bc3b9
- Switch the "ver" JSON field type to string. Now it should be two numbers
3bc3b9
  separated by a dot. The increase of the first number indicates
3bc3b9
  forward-incompatible changes, the increase of the second number -
3bc3b9
  forward-compatible. If the dot and the second number are omitted, the second
3bc3b9
  number is considered to be zero. Bump the format version to "2".
3bc3b9
- Add a new JSON field: "rec", containing an opaque host-unique recording ID.
3bc3b9
  Bump the format version to "2.1".
3bc3b9
- Add support for playback controls, both through the command line and via
3bc3b9
  playback-time control keys, including: speed adjustment, pause/resume,
3bc3b9
  fast-forward to a time, and packet-by-packet stepping through the recording.
3bc3b9
- Add optional rate-limiting of logged messages. Both throttling and dropping
3bc3b9
  messages are supported.
3bc3b9
- Add "--lax" option to tlog-play to allow playing back recordings with
3bc3b9
  missing messages.
3bc3b9
- Fix input being ignored when there is a lot of output, while recording.
3bc3b9
- Remove addition of tlog-rec (tlog-rec-session) to /etc/shells from RPM
3bc3b9
  packaging to prevent users from changing their shells themselves once it has
3bc3b9
  been assigned.
3bc3b9
- Add support for specifying the shell to start via the tlog-rec-session
76c8e3
  executable name. E.g. by making a tlog-rec-session-shell-zsh ->
3bc3b9
  tlog-rec-session symlink and executing it. That can be used to specify
3bc3b9
  particular shells to be recorded for specific users by assigning these
3bc3b9
  symlinks as their login shells.
3bc3b9
- Make error messages from all the tools a bit less noisy and more readable.
3bc3b9
76c8e3
* Sun Dec 10 2017 Björn Esser <besser82@fedoraproject.org> - 3-4
76c8e3
- Rebuilt for libjson-c.so.3
76c8e3
76c8e3
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3-3
76c8e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
76c8e3
76c8e3
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3-2
76c8e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
76c8e3
76c8e3
* Wed Feb 22 2017 Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> - 3-1
3bc3b9
- Release v3. Added features and implemented fixes follow.
3bc3b9
- Make each JSON message timing data start with window size.
3bc3b9
  This makes it possible to pick up the stream from any message and also
3bc3b9
  combine messages, with window size known and preserved at all times.
3bc3b9
- Add "term" field to JSON messages, specifying terminal type.
3bc3b9
- Add "ver" field to JSON messages, specifying message format version.
3bc3b9
- Set "SHELL" environment variable to actual user shell in tlog-rec.
3bc3b9
- Check for locale's charset and abort tlog-rec if it's anything but the only
3bc3b9
  supported UTF-8.
3bc3b9
- Add -v/--version option support to tlog-rec and tlog-play.
3bc3b9
- Fix tlog-rec and tlog-play error output by accumulating error messages and
3bc3b9
  outputting them only after terminal settings are restored, on exit. Output
3bc3b9
  startup warnings before switching to raw terminal settings.
3bc3b9
- Output a newline after restoring terminal settings in tlog-rec and
3bc3b9
  tlog-play, so that following output is not stuck to the end of the last line
3bc3b9
  of the raw output.
3bc3b9
- Add an Elasticsearch mapping to documentation directory.
3bc3b9
- Disable input logging by default to avoid storing passwords. Please enable
3bc3b9
  it explicitly in configuration, or on the command line, if necessary.
3bc3b9
- Close log file written by tlog-rec on executing the shell in the child to
3bc3b9
  prevent log modification by the recorded user.
3bc3b9
- Support running tlog-rec SUID/SGID to prevent recorded users from killing or
3bc3b9
  modifying it. Make tlog-rec SUID/SGID to user "tlog" in the RPM package.
3bc3b9
- Add session locking to tlog-rec. This prevents tlog-rec from recording if
3bc3b9
  the audit session is already recorded by creating per-audit-session lock
3bc3b9
  files in /var/run/tlog. This only makes sense with tlog-rec SUID/SGID.
3bc3b9
  When certain failures occur while creating a lock file, session is assumed
3bc3b9
  unlocked and is recorded anyway, as it is safer to record a session than
3bc3b9
  not. Add corresponding setup to the RPM package.
3bc3b9
- Reproduce the recorded program (shell) exit status in tlog-rec similarly to
3bc3b9
  how Bash reproduces the last executed command status.
3bc3b9
- Update and expand README.md to describe secure log message filtering with
3bc3b9
  rsyslog, and playback directly from Elasticsearch, among other, smaller
3bc3b9
  additions.
3bc3b9
76c8e3
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2-2
76c8e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
76c8e3
3bc3b9
* Wed Apr 6 2016 Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> - 2-1
3bc3b9
- Release v2. Not ready for production. Following features are added.
3bc3b9
- Fully-fledged command-line interface to tlog-play, along with config file
3bc3b9
  and man pages.
3bc3b9
- Support for playback from file in tlog-play.
3bc3b9
- Make tlog-play follow mode controllable and off by default.
3bc3b9
- Get tlog-rec shell also from TLOG_REC_SHELL environment variable.
3bc3b9
- Support non-TTY stdin/stdout in tlog-rec, allowing its use with
3bc3b9
  non-interactive SSH sessions.
3bc3b9
- Support building on and packaging for EPEL5.
3bc3b9
3bc3b9
* Thu Feb 25 2016 Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> - 1-1
3bc3b9
- Release v1. Not ready for production. Following features are included.
3bc3b9
- Recording of user input, program output and window size changes.
3bc3b9
- Support for writing into syslog and files.
3bc3b9
- Tlog-rec configuration through system-wide configuration file
3bc3b9
  /etc/tlog/tlog-rec.conf, environment variables and command line.
3bc3b9
- Very basic playback directly from ElasticSearch.