Skip to content

Commit

Permalink
Merge pull request #1233
Browse files Browse the repository at this point in the history
docs: troubleshooting & debugging chapter improvements
  • Loading branch information
pstorz committed Aug 30, 2022
2 parents 25ba495 + bf5a813 commit b884fbc
Show file tree
Hide file tree
Showing 3 changed files with 187 additions and 120 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -155,6 +155,7 @@ and since Bareos version 20 this project adheres to [Semantic Versioning](https:
- dir-job-RescheduleTimes remove wrong default sentence [PR #1225]
- update Appendix/HardwareSizing DB size with new numbers and formulas [BUG #1477][PR #1231]
- add description to fileset signature sha256 and sha512 parameter [PR #1230]
- improve troubleshooting and debugging chapter [PR #1233]

[PR #698]: https://github.com/bareos/bareos/pull/698
[PR #768]: https://github.com/bareos/bareos/pull/768
Expand Down Expand Up @@ -260,4 +261,5 @@ and since Bareos version 20 this project adheres to [Semantic Versioning](https:
[PR #1237]: https://github.com/bareos/bareos/pull/1237
[PR #1216]: https://github.com/bareos/bareos/pull/1216
[PR #1231]: https://github.com/bareos/bareos/pull/1231
[PR #1233]: https://github.com/bareos/bareos/pull/1233
[unreleased]: https://github.com/bareos/bareos/tree/master
99 changes: 86 additions & 13 deletions docs/manuals/source/Appendix/Debugging.rst
@@ -1,31 +1,34 @@
Debugging
=========

:index:`\ <single: Crash>`\ :index:`\ <single: Debug; crash>`\
.. index::
single: Crash
single: Debug; crash

This chapter describes, how to debug Bareos, when the program crashes. If you are just interested about how to get more information about a running Bareos daemon, please read :ref:`section-debug-messages`.
This chapter describes how to debug Bareos when the program crashes. If you are just interested about how to get more information about a running Bareos daemon, please read :ref:`section-debug-messages`.

If you are running on a Linux system, and you have a set of working configuration files, it is very unlikely that Bareos will crash. As with all software, however, it is inevitable that someday, it may crash.

This chapter explains what you should do if one of the three Bareos daemons (Director, File, Storage) crashes. When we speak of crashing, we mean that the daemon terminates abnormally because of an error. There are many cases where Bareos detects errors (such as PIPE errors) and will fail a job. These are not considered crashes. In addition, under certain conditions, Bareos will detect a fatal in the configuration, such as lack of permission to read/write the working directory. In that case,
Bareos will force itself to crash with a SEGFAULT. However, before crashing, Bareos will normally display a message indicating why. For more details, please read on.
This chapter explains what you should do if one of the three daemons (|dir|, |fd|, |sd|) crashes. When we speak of crashing, we mean that the daemon terminates abnormally because of an error. There are many cases where Bareos detects errors (such as PIPE errors) and will fail a job. These are not considered crashes. In addition, under certain conditions, Bareos will detect a fatal in the configuration, such as lack of permission to read/write the working directory. In that case, Bareos will force itself to crash with a SEGFAULT. However, before crashing, Bareos will normally display a message indicating why. For more details, please read on.


Traceback
---------

:index:`\ <single: Traceback>`\
.. index::
single: Traceback

Each of the three Bareos daemons has a built-in exception handler which, in case of an error, will attempt to produce a traceback. If successful the traceback will be emailed to you.
Each of the three Bareos daemons has a built-in exception handler which, in case of an error, will attempt to produce a `traceback`. If successful the `traceback` will be emailed to you and stored into the working directory (usually :file:`/var/lib/bareos/storage/bareos.<pid_of_crashed_process>.traceback` on linux systems).

For this to work, you need to ensure that a few things are setup correctly on your system:

#. You must have a version of Bareos with debug information and not stripped of debugging symbols. When using a packaged version of Bareos, this requires to install the Bareos debug packages (**bareos-debug** on RPM based systems, **bareos-dbg** on Debian based systems).

#. On Linux, :command:`gdb` (the GNU debugger) must be installed. On some systems such as Solaris, :command:`gdb` may be replaced by :command:`dbx`.

#. By default, btraceback uses :command:`bsmtp` to send the traceback via email. Therefore it expects a local mail transfer daemon running. It send the traceback to root@localhost via :strong:`localhost`.
#. By default, :command:`btraceback` uses :command:`bsmtp` to send the `traceback` via email. Therefore it expects a local mail transfer daemon running. It send the `traceback` to root@localhost via :strong:`localhost`.

#. Some Linux distributions, e.g. Ubuntu:index:`\ <single: Platform; Ubuntu; Debug>`\ , disable the possibility to examine the memory of other processes. While this is a good idea for hardening a system, our debug mechanismen will fail. To disable this feature, run (as root):
#. Some Linux distributions, e.g. Ubuntu:index:`\ <single: Platform; Ubuntu; Debug>`\ , disable the possibility to examine the memory of other processes. While this is a good idea for hardening a system, our debug mechanism will fail. To disable this `ptrace protection`, run (as root):

.. code-block:: shell-session
:caption: disable ptrace protection to enable debugging (required on Ubuntu Linux)
Expand All @@ -37,7 +40,8 @@ If all the above conditions are met, the daemon that crashes will produce a trac
Testing The Traceback
---------------------

:index:`\ <single: Traceback; Test>`\
.. index::
single: Traceback; Test

To "manually" test the traceback feature, you simply start Bareos then obtain the PID of the main daemon thread (there are multiple threads). The output produced here will look different depending on what OS and what version of the kernel you are running.

Expand All @@ -56,17 +60,24 @@ which in this case is 2103. Then while Bareos is running, you call the program g
It should produce an email showing you the current state of the daemon (in this case the Director), and then exit leaving Bareos running as if nothing happened. If this is not the case, you will need to correct the problem by modifying the :command:`btraceback` script.

Getting A Traceback On Other Systems
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Getting A Traceback On Other Operating System
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
single: Traceback; Other System

It should be possible to produce a similar backtrace on systems other than Linux, either using :command:`gdb` or some other debugger.
It should be possible to produce a similar backtrace on operating systems other than Linux, either using :command:`gdb` or some other debugger.
:index:`Solaris <single: Platform; Solaris; Debug>`\ with :command:`dbx` loaded works quite fine. On other systems, you will need to modify the :command:`btraceback` program to invoke the correct debugger, and possibly correct the :file:`btraceback.gdb` script to have appropriate commands for your debugger.
Please keep in mind that for any debugger to work, it will most likely need to run as root.


Manually Running Bareos Under The Debugger
------------------------------------------

If for some reason you cannot get the automatic traceback, or if you want to interactively examine the variable contents after a crash, you can run Bareos under the debugger. Assuming you want to run the Storage daemon under the debugger (the technique is the same for the other daemons, only the name changes), you would do the following:
.. index::
single: gdb Bareos; debugger

If for some reason you cannot get the automatic `traceback`, or if you want to interactively examine the variable contents after a crash, you can run Bareos under the debugger. Assuming you want to run the Storage daemon under the debugger (the technique is the same for the other daemons, only the name changes), you would do the following:

#. The Director and the File daemon should be running but the Storage daemon should not.

Expand Down Expand Up @@ -106,3 +117,65 @@ If for some reason you cannot get the automatic traceback, or if you want to int
(gdb) thread apply all bt
After that you can issue any debugging command.


Core debugging
--------------

.. index::
single: Core debugging; core

If a `SEGV` occurs, and you don't have anything installed, then a core file is created. Please follow below instructions to get it debugged on your system (or a clone of it).

For some reason, you may be not able to install the debug symbols nor the debugger tool on your Bareos instance.
By collection the generated core file, you will be able to produce a `traceback` on a similar or cloned system.

#. Get a clone of your operating system.
This is important as the same version of all installed packages need to present.

#. Install Bareos and the debug symbols packages. see :ref:`appendix/debugging:install-debug-packages`

#. Install the debug tools (:command:`gdb` under Linux for example).

#. Transfer the previously generated core dump.

#. Debug the core.

.. code-block:: shell-session
gdb /usr/sbin/bareos-dir /tmp/core.bareos-dir.25972
(gdb) backtrace
.. _appendix/debugging:install-debug-packages:

Installing debug symbols packages
---------------------------------

.. index::
single: debug symbols package; dbg; debuginfo; debug

Our Linux packages are stripped of debugging symbols, so you need an extra step to install their rpm debuginfo or deb dbg equivalent


.. code-block:: shell-session
:caption: Installing bareos debug symbols package on deb system
apt install bareos-dbg gdb
.. code-block:: shell-session
:caption: Installing Bareos debug symbols on (RH)EL system
dnf --enablerepo bareos-debuginfo install bareos-director-debuginfo
.. code-block:: shell-session
:caption: Installing Bareos debug symbols on (open)SUSE system
# Enable and activate bareos-debuginfo repository
zypper modifyrepo --enable --refresh --gpgcheck bareos-debuginfo
zypper install bareos-director-debuginfo
**Notice** For rpm: you maybe want to install all corresponding -debuginfo of installed bareos- packages if you want to debug all.

0 comments on commit b884fbc

Please sign in to comment.