|
Squid Web Cache master
|
Public Member Functions | |
| cbdata () | |
| ~cbdata () | |
| void | check (int) const |
Static Public Member Functions | |
| static cbdata * | FromUserData (const void *) |
Public Attributes | |
| int | valid |
| int32_t | locks |
| cbdata_type | type |
| long | cookie |
| void * | data |
Static Public Attributes | |
| static const long | Cookie |
Private Member Functions | |
| MEMPROXY_CLASS (cbdata) | |
Manage a set of registered callback data pointers. One of the easiest ways to make Squid coredump is to issue a callback to for some data structure which has previously been freed. With this class, we register (add) callback data pointers, lock them just before registering the callback function, validate them before issuing the callback, and then free them when finished.
| cbdata::~cbdata | ( | ) |
Definition at line 101 of file cbdata.cc.
References cbdata_index, data, Mem::Allocator::freeOne(), CBDataIndex::pool, and type.
|
inline |
|
static |
Definition at line 112 of file cbdata.cc.
References CbdataTable(), and data.
Referenced by cbdataInternalFree(), cbdataInternalLock(), cbdataInternalUnlock(), and cbdataReferenceValid().
|
private |
| long cbdata::cookie |
Definition at line 70 of file cbdata.cc.
Referenced by cbdataInternalAlloc(), and check().
|
static |
Definition at line 72 of file cbdata.cc.
Referenced by cbdataInternalAlloc(), and check().
| void* cbdata::data |
Definition at line 78 of file cbdata.cc.
Referenced by ~cbdata(), cbdataInternalAlloc(), cbdataRealFree(), FromUserData(), and Ssl::HandleGeneratorReply().
| int32_t cbdata::locks |
Definition at line 66 of file cbdata.cc.
Referenced by cbdataInternalAlloc().
| cbdata_type cbdata::type |
Definition at line 67 of file cbdata.cc.
Referenced by ~cbdata(), and cbdataInternalAlloc().
| int cbdata::valid |
Definition at line 65 of file cbdata.cc.
Referenced by cbdataInternalAlloc().