libzypp 17.31.23
|
Check for running processes which access deleted executables or libraries. More...
#include <misc/CheckAccessDeleted.h>
Classes | |
class | Impl |
struct | ProcInfo |
Data about one running process accessing deleted files. More... | |
Public Types | |
typedef size_t | size_type |
typedef ProcInfo | value_type |
typedef std::vector< ProcInfo >::const_iterator | const_iterator |
Public Member Functions | |
CheckAccessDeleted (bool doCheck_r=true) | |
Default ctor performs check immediately. | |
size_type | check (bool verbose_r=false) |
Check for running processes which access deleted executables or libraries. | |
size_type | check (const Pathname &lsofOutput_r, bool verbose_r=false) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. Performs the same checks but instead of investigating the current system it uses information from lsofOutput_r to support debugging. | |
bool | empty () const |
size_type | size () const |
const_iterator | begin () const |
const_iterator | end () const |
void | setDebugOutputFile (const Pathname &filename_r) |
Writes all filtered process entries that make it into the final set into a file specified by filename_r. | |
Static Public Member Functions | |
static std::string | findService (pid_t pid_r) |
Guess if pid was started by a systemd service script. | |
Private Attributes | |
RWCOW_pointer< Impl > | _pimpl |
Related Functions | |
(Note that these are not member functions.) | |
std::ostream & | operator<< (std::ostream &str, const CheckAccessDeleted &obj) |
Stream output. | |
Check for running processes which access deleted executables or libraries.
Executed after commit, this gives a hint which processes/services need to be restarted.
Per default upon construction or explicit call to check, information about running processes which access deleted files or libraries is collected and provided as a ProcInfo container.
Provides support for reproducing check results from a foreign system by creating a debug output file containing all required information, enabled by setDebugOutputFile.
This data file can be used as datasource when passed to check(const Pathname &, bool).
Definition at line 41 of file CheckAccessDeleted.h.
typedef size_t zypp::CheckAccessDeleted::size_type |
Definition at line 65 of file CheckAccessDeleted.h.
Definition at line 66 of file CheckAccessDeleted.h.
typedef std::vector<ProcInfo>::const_iterator zypp::CheckAccessDeleted::const_iterator |
Definition at line 67 of file CheckAccessDeleted.h.
zypp::CheckAccessDeleted::CheckAccessDeleted | ( | bool | doCheck_r = true | ) |
Default ctor performs check immediately.
Pass false
and the initial check is omitted.
Definition at line 368 of file CheckAccessDeleted.cc.
CheckAccessDeleted::size_type zypp::CheckAccessDeleted::check | ( | bool | verbose_r = false | ) |
Check for running processes which access deleted executables or libraries.
Per default check will try guess and collect executables and libraries only by looking at the files path and name. (e.g named lib*
or located in *bin/
).
A verbose check will omit this test and collect all processes using any deleted file.
Exception | On error collecting the data (e.g. no lsof installed) |
Definition at line 430 of file CheckAccessDeleted.cc.
CheckAccessDeleted::size_type zypp::CheckAccessDeleted::check | ( | const Pathname & | lsofOutput_r, |
bool | verbose_r = false |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. Performs the same checks but instead of investigating the current system it uses information from lsofOutput_r to support debugging.
Definition at line 374 of file CheckAccessDeleted.cc.
bool zypp::CheckAccessDeleted::empty | ( | ) | const |
Definition at line 501 of file CheckAccessDeleted.cc.
CheckAccessDeleted::size_type zypp::CheckAccessDeleted::size | ( | ) | const |
Definition at line 506 of file CheckAccessDeleted.cc.
CheckAccessDeleted::const_iterator zypp::CheckAccessDeleted::begin | ( | ) | const |
Definition at line 511 of file CheckAccessDeleted.cc.
CheckAccessDeleted::const_iterator zypp::CheckAccessDeleted::end | ( | ) | const |
Definition at line 516 of file CheckAccessDeleted.cc.
void zypp::CheckAccessDeleted::setDebugOutputFile | ( | const Pathname & | filename_r | ) |
Writes all filtered process entries that make it into the final set into a file specified by filename_r.
Definition at line 521 of file CheckAccessDeleted.cc.
|
static |
Guess if pid was started by a systemd service script.
The service name might be used to restart the service.
Definition at line 526 of file CheckAccessDeleted.cc.
|
related |
Stream output.
Definition at line 560 of file CheckAccessDeleted.cc.
|
private |
Definition at line 119 of file CheckAccessDeleted.h.