1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
#include "debug.h"
#include "showinfo.h"
#include "meta.h"
#include "acfg.h"
#include "filereader.h"
#include "fileio.h"
#include "job.h"
#include <iostream>
#ifdef HAVE_ZLIB
#include <zlib.h>
#endif
using namespace std;
#ifdef SendFmt
// just be sure about that, its buffer is used for local purposes and
// so it shall not interfere with tFmtSendObj
#undef SendFmt
#undef SendFmtRemote
#endif
#define SCALEFAC 250
namespace acng
{
static cmstring sReportButton("<tr><td class=\"colcont\"><form action=\"#stats\" method=\"get\">"
"<input type=\"submit\" name=\"doCount\" value=\"Count Data\"></form>"
"</td><td class=\"colcont\" colspan=8 valign=top><font size=-2>"
"<i>Not calculated, click \"Count data\"</i></font></td></tr>");
// some NOOPs
tMarkupFileSend::tMarkupFileSend(const tSpecialRequest::tRunParms& parms,
const char *s,
const char *m, const char *c)
:
tSpecialRequest(parms),
m_sFileName(s), m_sMimeType(m), m_sHttpCode(c)
{
}
static cmstring errstring("Information about APT configuration not available, "
"please contact the system administrator.");
void tMarkupFileSend::Run()
{
LOGSTART2("tStaticFileSend::Run", m_parms.cmd);
filereader fr;
const char *pr(nullptr), *pend(nullptr);
if(!m_bFatalError)
{
m_bFatalError = ! ( fr.OpenFile(cfg::confdir+SZPATHSEP+m_sFileName, true) ||
(!cfg::suppdir.empty() && fr.OpenFile(cfg::suppdir+SZPATHSEP+m_sFileName, true)));
}
if(m_bFatalError)
{
m_sHttpCode="500 Template Not Found";
m_sMimeType="text/plain";
return SendRaw(errstring.data(), (size_t) errstring.size());
}
pr = fr.GetBuffer();
pend = pr + fr.GetSize();
SendChunkedPageHeader(m_sHttpCode, m_sMimeType);
auto lastchar=pend-1;
while(pr<pend)
{
auto restlen=pend-pr;
auto propStart=(LPCSTR) memchr(pr, (uint) '$', restlen);
if (propStart) {
if (propStart < lastchar && propStart[1] == '{') {
SendChunk(pr, propStart-pr);
pr=propStart;
// found begin of a new property key
auto propEnd = (LPCSTR) memchr(propStart+2, (uint) '}', pend-propStart+2);
if(!propEnd)// unclosed, seriously? Just dump the rest at the user
goto no_more_props;
if(propStart+6<propEnd && ':' == *(propStart+2))
SendIfElse(propStart+3, propEnd);
else
{
string key(propStart+2, propEnd-propStart-2);
SendProp(key);
}
pr=propEnd+1;
} else {
// not a property string, send as-is
propStart++;
SendChunk(pr, propStart-pr);
pr=propStart;
}
} else // no more props
{
no_more_props:
SendChunk(pr, restlen);
break;
}
}
}
void tDeleter::SendProp(cmstring &key)
{
if(key=="count")
return SendChunk(m_fmtHelper.clean()<<files.size());
else if(key=="countNZs")
{
if(files.size()!=1)
return SendChunk(m_fmtHelper.clean()<<"s");
}
else if(key == "stuff")
return SendChunk(sHidParms);
else if(key=="vmode")
return SendChunk(sVisualMode.data(), sVisualMode.size());
return tMarkupFileSend::SendProp(key);
}
// and deserialize it from GET parameter into m_delCboxFilter
tDeleter::tDeleter(const tRunParms& parms, const mstring& vmode)
: tMarkupFileSend(parms, "delconfirm.html", "text/html", "200 OK"),
sVisualMode(vmode)
{
#define BADCHARS "<>\"'|\t"
tStrPos qpos=m_parms.cmd.find("?");
if(m_parms.cmd.find_first_of(BADCHARS) not_eq stmiss // what the f..., XSS attempt?
|| qpos==stmiss)
{
m_bFatalError=true;
return;
}
mstring params(m_parms.cmd, qpos+1);
mstring blob;
for(tSplitWalk split(¶ms, "&"); split.Next();)
{
mstring tok(split);
if(startsWithSz(tok, "kf="))
{
char *end(0);
auto val = strtoul(tok.c_str()+3, &end, 16);
if(*end == 0 || *end=='&')
#ifdef COMPATGCC47
files.insert(val);
#else
files.emplace(val);
#endif
}
else if(startsWithSz(tok, "blob="))
tok.swap(blob);
}
sHidParms << "<input type=\"hidden\" name=\"blob\" value=\"";
sHidParms.append(blob.data()+5, blob.size()-5);
sHidParms << "\">\n";
tStrDeq filePaths;
acbuf buf;
#ifdef HAVE_DECB64 // this page isn't accessible with crippled configuration anyway
if (!blob.empty())
{
// let's decode the blob and pickup what counts
tSS gzBuf;
//if(!Hex2buf(blob.data()+5, blob.size()-5, gzBuf)) return;
if (!DecodeBase64(blob.data()+5, blob.size()-5, gzBuf)) return;
if(gzBuf.size() < 2 * sizeof(unsigned)) return;
unsigned ulen = 123456;
memcpy(&ulen, gzBuf.rptr(), sizeof(unsigned));
if (ulen > 100000) // no way...
return;
gzBuf.drop(sizeof(unsigned));
buf.setsize(ulen);
uLongf uncompSize = ulen;
auto gzCode = uncompress((Bytef*) buf.wptr(), &uncompSize, (const Bytef*) gzBuf.rptr(),
gzBuf.size());
if (Z_OK != gzCode)
return;
buf.got(uncompSize);
}
#endif
while(true)
{
unsigned id, slen;
if(buf.size() < 2*sizeof(unsigned))
break;
memcpy(&id, buf.rptr(), sizeof(unsigned));
buf.drop(sizeof(unsigned));
memcpy(&slen, buf.rptr(), sizeof(unsigned));
buf.drop(sizeof(unsigned));
if(slen > buf.size()) // looks fishy
return;
if(ContHas(files, id))
filePaths.emplace_back(buf.rptr(), slen);
buf.drop(slen);
}
// do stricter path checks and prepare the query page data
for(const auto& path : filePaths)
{
if(path.find_first_of(BADCHARS)!=stmiss // what the f..., XSS attempt?
|| rex::Match(path, rex::NASTY_PATH))
{
m_bFatalError=true;
return;
}
}
if (m_parms.type == workDELETECONFIRM || m_parms.type == workTRUNCATECONFIRM)
{
for (const auto& path : filePaths)
sHidParms << html_sanitize(path) << "<br>\n";
for (const auto& pathId : files)
sHidParms << "<input type=\"hidden\" name=\"kf\" value=\"" << tSS::fmtflags::hex
<< pathId << "\">\n" << tSS::fmtflags::dec;
}
else
{
auto del = (m_parms.type == workDELETE);
for (const auto& path : filePaths)
{
for (auto suf :
{ "", ".head" })
{
sHidParms << (del ? "Deleting " : "Truncating ") << path << suf << "<br>\n";
auto p = cfg::cacheDirSlash + path + suf;
int r = del ? unlink(p.c_str()) : truncate(p.c_str(), 0);
if (r && errno != ENOENT)
{
tErrnoFmter ferrno("<span class=\"ERROR\">[ error: ");
sHidParms << ferrno << " ]</span><br>\n";
}
}
}
}
}
tMaintPage::tMaintPage(const tRunParms& parms)
:tMarkupFileSend(parms, "report.html", "text/html", "200 OK")
{
if(StrHas(parms.cmd, "doTraceStart"))
cfg::patrace=true;
else if(StrHas(parms.cmd, "doTraceStop"))
cfg::patrace=false;
else if(StrHas(parms.cmd, "doTraceClear"))
{
auto& tr(tTraceData::getInstance());
lockguard g(tr);
tr.clear();
}
}
// compares c string with a determined part of another string
#define RAWEQ(longstring, len, pfx) (len==(sizeof(pfx)-1) && 0==memcmp(longstring, pfx, sizeof(pfx)-1))
#define PFXCMP(longstring, len, pfx) ((sizeof(pfx)-1) <= len && 0==memcmp(longstring, pfx, sizeof(pfx)-1))
inline int tMarkupFileSend::CheckCondition(LPCSTR id, size_t len)
{
//std::cerr << "check if: " << string(id, len) << std::endl;
if(PFXCMP(id, len, "cfg:"))
{
string key(id+4, len-4);
auto p=cfg::GetIntPtr(key.c_str());
if(p)
return ! *p;
if(key == "degraded")
return cfg::DegradedMode();
return -1;
}
if(RAWEQ(id, len, "delConfirmed"))
return m_parms.type != workDELETE && m_parms.type != workTRUNCATE;
return -2;
}
void tMarkupFileSend::SendIfElse(LPCSTR pszBeginSep, LPCSTR pszEnd)
{
//std::cerr << "got if: " << string(pszBeginSep, pszEnd-pszBeginSep) << std::endl;
auto sep = pszBeginSep;
auto key=sep+1;
auto valYes=(LPCSTR) memchr(key, (uint) *sep, pszEnd-key);
if(!valYes) // heh?
return;
auto sel=CheckCondition(key, valYes-key);
//std::cerr << "sel: " << sel << std::endl;
if(sel<0) // heh?
return;
valYes++; // now really there
auto valNo=(LPCSTR) memchr(valYes, (uint) *sep, pszEnd-valYes);
//std::cerr << "valNO: " << valNo<< std::endl;
if(!valNo) // heh?
return;
if(0==sel)
SendChunk(valYes, valNo-valYes);
else
SendChunk(valNo+1, pszEnd-valNo-1);
}
void tMaintPage::SendProp(cmstring &key)
{
if(key=="statsRow")
{
if(!StrHas(m_parms.cmd, "doCount"))
return SendChunk(sReportButton);
return SendChunk(log::GetStatReport());
}
static cmstring defStringChecked("checked");
if(key == "aOeDefaultChecked")
return SendChunk(cfg::exfailabort ? defStringChecked : sEmptyString);
if(key == "curPatTraceCol")
{
m_fmtHelper.clear();
auto& tr(tTraceData::getInstance());
lockguard g(tr);
int bcount=0;
for(cmstring& x: tr)
{
if(x.find_first_of(BADCHARS) not_eq stmiss)
{
bcount++;
continue;
}
m_fmtHelper<<x;
if(&x != &(*tr.rbegin()))
m_fmtHelper.append(WITHLEN("<br>"));
}
if(bcount)
m_fmtHelper.append(WITHLEN("<br>some strings not considered due to security restrictions<br>"));
return SendChunk(m_fmtHelper);
}
return tMarkupFileSend::SendProp(key);
}
void tMarkupFileSend::SendRaw(const char* pBuf, size_t len)
{
// go the easy way if nothing to replace there
m_fmtHelper.clean() << "HTTP/1.1 " << (m_sHttpCode ? m_sHttpCode : "200 OK")
<< "\r\nConnection: close\r\nContent-Type: "
<< (m_sMimeType ? m_sMimeType : "text/html")
<< "\r\nContent-Length: " << len
<< "\r\n\r\n";
SendRawData(m_fmtHelper.rptr(), m_fmtHelper.size(), MSG_MORE | MSG_NOSIGNAL);
SendRawData(pBuf, len, MSG_NOSIGNAL);
}
void tMarkupFileSend::SendProp(cmstring &key)
{
if (startsWithSz(key, "cfg:"))
{
auto ckey=key.c_str() + 4;
auto ps(cfg::GetStringPtr(ckey));
if(ps)
return SendChunk(*ps);
auto pi(cfg::GetIntPtr(ckey));
if(pi)
return SendChunk(m_fmtHelper.clean() << *pi);
return;
}
if (key == "serverip")
return SendChunk(GetHostname());
if (key == "footer")
return SendChunk(GetFooter());
if (key == "hostname")
{
m_fmtHelper.clean().setsize(500);
if(gethostname(m_fmtHelper.wptr(), m_fmtHelper.freecapa()))
return; // failed?
return SendChunk(m_fmtHelper.wptr(), strlen(m_fmtHelper.wptr()));
}
if(key=="random")
return SendChunk(m_fmtHelper.clean() << rand());
if(key=="dataInHuman")
{
auto stats = log::GetCurrentCountersInOut();
return SendChunk(offttosH(stats.first));
}
if(key=="dataOutHuman")
{
auto stats = log::GetCurrentCountersInOut();
return SendChunk(offttosH(stats.second));
}
if(key=="dataIn")
{
auto stats = log::GetCurrentCountersInOut();
auto statsMax = std::max(stats.first, stats.second);
auto pixels = statsMax ? (stats.first * SCALEFAC / statsMax) : 0;
return SendChunk(m_fmtHelper.clean() << pixels);
}
if(key=="dataOut")
{
auto stats = log::GetCurrentCountersInOut();
auto statsMax = std::max(stats.second, stats.first);
auto pixels = statsMax ? (SCALEFAC * stats.second / statsMax) : 0;
return SendChunk(m_fmtHelper.clean() << pixels);
}
if (key == "dataHistInHuman")
{
auto stats = pairSum(log::GetCurrentCountersInOut(), log::GetOldCountersInOut());
return SendChunk(offttosH(stats.first));
}
if (key == "dataHistOutHuman")
{
auto stats = pairSum(log::GetCurrentCountersInOut(), log::GetOldCountersInOut());
return SendChunk(offttosH(stats.second));
}
if (key == "dataHistIn")
{
auto stats = pairSum(log::GetCurrentCountersInOut(), log::GetOldCountersInOut());
auto statsMax = std::max(stats.second, stats.first);
auto pixels = statsMax ? (stats.first * SCALEFAC / statsMax) : 0;
return SendChunk(m_fmtHelper.clean() << pixels);
}
if (key == "dataHistOut")
{
auto stats = pairSum(log::GetCurrentCountersInOut(), log::GetOldCountersInOut());
auto statsMax = std::max(stats.second, stats.first);
auto pixels = statsMax ? (SCALEFAC * stats.second/statsMax) : 0;
return SendChunk(m_fmtHelper.clean() << pixels);
}
}
}
|