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 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871
|
#include <qpdf/qpdf-config.h> // include first for large file support
#include <qpdf/QPDF_private.hh>
#include <array>
#include <atomic>
#include <cstring>
#include <limits>
#include <map>
#include <regex>
#include <sstream>
#include <vector>
#include <qpdf/AcroForm.hh>
#include <qpdf/FileInputSource.hh>
#include <qpdf/InputSource_private.hh>
#include <qpdf/OffsetInputSource.hh>
#include <qpdf/Pipeline.hh>
#include <qpdf/QPDFExc.hh>
#include <qpdf/QPDFLogger.hh>
#include <qpdf/QPDFObjectHandle_private.hh>
#include <qpdf/QPDFObject_private.hh>
#include <qpdf/QPDFParser.hh>
#include <qpdf/QTC.hh>
#include <qpdf/QUtil.hh>
#include <qpdf/Util.hh>
using namespace qpdf;
using namespace std::literals;
using Common = impl::Doc::Common;
using Objects = impl::Doc::Objects;
using Foreign = Objects::Foreign;
using Streams = Objects::Streams;
// This must be a fixed value. This API returns a const reference to it, and the C API relies on its
// being static as well.
std::string const QPDF::qpdf_version(QPDF_VERSION);
static char const* EMPTY_PDF = (
// force line break
"%PDF-1.3\n"
"1 0 obj\n"
"<< /Type /Catalog /Pages 2 0 R >>\n"
"endobj\n"
"2 0 obj\n"
"<< /Type /Pages /Kids [] /Count 0 >>\n"
"endobj\n"
"xref\n"
"0 3\n"
"0000000000 65535 f \n"
"0000000009 00000 n \n"
"0000000058 00000 n \n"
"trailer << /Size 3 /Root 1 0 R >>\n"
"startxref\n"
"110\n"
"%%EOF\n");
namespace
{
class InvalidInputSource: public InputSource
{
public:
~InvalidInputSource() override = default;
qpdf_offset_t
findAndSkipNextEOL() override
{
throwException();
return 0;
}
std::string const&
getName() const override
{
static std::string name("closed input source");
return name;
}
qpdf_offset_t
tell() override
{
throwException();
return 0;
}
void
seek(qpdf_offset_t offset, int whence) override
{
throwException();
}
void
rewind() override
{
throwException();
}
size_t
read(char* buffer, size_t length) override
{
throwException();
return 0;
}
void
unreadCh(char ch) override
{
throwException();
}
private:
void
throwException()
{
throw std::logic_error(
"QPDF operation attempted on a QPDF object with no input "
"source. QPDF operations are invalid before processFile (or "
"another process method) or after closeInputSource");
}
};
} // namespace
QPDF::StringDecrypter::StringDecrypter(QPDF* qpdf, QPDFObjGen og) :
qpdf(qpdf),
og(og)
{
}
std::string const&
QPDF::QPDFVersion()
{
// The C API relies on this being a static value.
return QPDF::qpdf_version;
}
QPDF::Members::Members(QPDF& qpdf) :
Doc(qpdf, this),
c(qpdf, this),
lin(*this),
objects(*this),
pages(*this),
file(std::make_shared<InvalidInputSource>()),
encp(std::make_shared<EncryptionParameters>())
{
}
QPDF::QPDF() :
m(std::make_unique<Members>(*this))
{
m->tokenizer.allowEOF();
// Generate a unique ID. It just has to be unique among all QPDF objects allocated throughout
// the lifetime of this running application.
static std::atomic<unsigned long long> unique_id{0};
m->unique_id = unique_id.fetch_add(1ULL);
}
/// @brief Initializes the AcroForm functionality for the document.
/// @par
/// This method creates a unique instance of QPDFAcroFormDocumentHelper and associates it
/// with the document. It also updates the `acroform_` pointer to reference the AcroForm
/// instance managed by the helper.
///
/// The method has been separated out from `acroform` to avoid it being inlined
/// unnecessarily.
void
QPDF::Doc::init_acroform()
{
acroform_dh_ = std::make_unique<QPDFAcroFormDocumentHelper>(qpdf);
acroform_ = acroform_dh_->m.get();
}
// Provide access to disconnect(). Disconnect will in due course be merged into the current ObjCache
// (future Objects::Entry) to centralize all QPDF access to QPDFObject.
class Disconnect: BaseHandle
{
public:
Disconnect(std::shared_ptr<QPDFObject> const& obj) :
BaseHandle(obj)
{
}
void
disconnect()
{
BaseHandle::disconnect(false);
if (raw_type_code() != ::ot_null) {
obj->value = QPDF_Destroyed();
}
}
};
QPDF::~QPDF()
{
// If two objects are mutually referential (through each object having an array or dictionary
// that contains an indirect reference to the other), the circular references in the
// std::shared_ptr objects will prevent the objects from being deleted. Walk through all objects
// in the object cache, which is those objects that we read from the file, and break all
// resolved indirect references by replacing them with an internal object type representing that
// they have been destroyed. Note that we can't break references like this at any time when the
// QPDF object is active. The call to reset also causes all direct QPDFObjectHandle objects that
// are reachable from this object to release their association with this QPDF. Direct objects
// are not destroyed since they can be moved to other QPDF objects safely.
// At this point, obviously no one is still using the QPDF object, but we'll explicitly clear
// the xref table anyway just to prevent any possibility of resolve() succeeding.
m->xref_table.clear();
for (auto const& iter: m->obj_cache) {
Disconnect(iter.second.object).disconnect();
}
}
std::shared_ptr<QPDF>
QPDF::create()
{
return std::make_shared<QPDF>();
}
void
QPDF::processFile(char const* filename, char const* password)
{
auto* fi = new FileInputSource(filename);
processInputSource(std::shared_ptr<InputSource>(fi), password);
}
void
QPDF::processFile(char const* description, FILE* filep, bool close_file, char const* password)
{
auto* fi = new FileInputSource(description, filep, close_file);
processInputSource(std::shared_ptr<InputSource>(fi), password);
}
void
QPDF::processMemoryFile(
char const* description, char const* buf, size_t length, char const* password)
{
auto is = std::make_shared<is::OffsetBuffer>(description, std::string_view{buf, length});
processInputSource(is, password);
}
void
QPDF::processInputSource(std::shared_ptr<InputSource> source, char const* password)
{
m->file = source;
m->objects.parse(password);
}
void
QPDF::closeInputSource()
{
m->file = std::shared_ptr<InputSource>(new InvalidInputSource());
}
void
QPDF::setPasswordIsHexKey(bool val)
{
m->cf.password_is_hex_key(val);
}
void
QPDF::emptyPDF()
{
processMemoryFile("empty PDF", EMPTY_PDF, strlen(EMPTY_PDF));
}
void
QPDF::registerStreamFilter(
std::string const& filter_name, std::function<std::shared_ptr<QPDFStreamFilter>()> factory)
{
qpdf::Stream::registerStreamFilter(filter_name, factory);
}
void
QPDF::setIgnoreXRefStreams(bool val)
{
(void)m->cf.ignore_xref_streams(val);
}
std::shared_ptr<QPDFLogger>
QPDF::getLogger()
{
return m->cf.log();
}
void
QPDF::setLogger(std::shared_ptr<QPDFLogger> l)
{
m->cf.log(l);
}
void
QPDF::setOutputStreams(std::ostream* out, std::ostream* err)
{
setLogger(QPDFLogger::create());
m->cf.log()->setOutputStreams(out, err);
}
void
QPDF::setSuppressWarnings(bool val)
{
(void)m->cf.suppress_warnings(val);
}
void
QPDF::setMaxWarnings(size_t val)
{
(void)m->cf.max_warnings(val);
}
void
QPDF::setAttemptRecovery(bool val)
{
(void)m->cf.surpress_recovery(!val);
}
void
QPDF::setImmediateCopyFrom(bool val)
{
(void)m->cf.immediate_copy_from(val);
}
std::vector<QPDFExc>
QPDF::getWarnings()
{
std::vector<QPDFExc> result = std::move(m->warnings);
m->warnings.clear();
return result;
}
bool
QPDF::anyWarnings() const
{
return !m->warnings.empty();
}
size_t
QPDF::numWarnings() const
{
return m->warnings.size();
}
void
QPDF::warn(QPDFExc const& e)
{
m->c.warn(e);
}
void
Common::warn(QPDFExc const& e)
{
if (cf.max_warnings() > 0 && m->warnings.size() >= cf.max_warnings()) {
stopOnError("Too many warnings - file is too badly damaged");
}
m->warnings.emplace_back(e);
if (!cf.suppress_warnings()) {
*cf.log()->getWarn() << "WARNING: " << m->warnings.back().what() << "\n";
}
}
void
QPDF::warn(
qpdf_error_code_e error_code,
std::string const& object,
qpdf_offset_t offset,
std::string const& message)
{
m->c.warn(QPDFExc(error_code, getFilename(), object, offset, message));
}
void
Common::warn(
qpdf_error_code_e error_code,
std::string const& object,
qpdf_offset_t offset,
std::string const& message)
{
warn(QPDFExc(error_code, qpdf.getFilename(), object, offset, message));
}
QPDFObjectHandle
QPDF::newReserved()
{
return m->objects.makeIndirectFromQPDFObject(QPDFObject::create<QPDF_Reserved>());
}
QPDFObjectHandle
QPDF::newIndirectNull()
{
return m->objects.makeIndirectFromQPDFObject(QPDFObject::create<QPDF_Null>());
}
QPDFObjectHandle
QPDF::newStream()
{
return makeIndirectObject(
qpdf::Stream(*this, m->objects.nextObjGen(), Dictionary::empty(), 0, 0));
}
QPDFObjectHandle
QPDF::newStream(std::shared_ptr<Buffer> data)
{
auto result = newStream();
result.replaceStreamData(data, {}, {});
return result;
}
QPDFObjectHandle
QPDF::newStream(std::string const& data)
{
auto result = newStream();
result.replaceStreamData(data, {}, {});
return result;
}
QPDFObjectHandle
QPDF::getObject(int objid, int generation)
{
return getObject({objid, generation});
}
QPDFObjectHandle
QPDF::getObjectByObjGen(QPDFObjGen og)
{
return getObject(og);
}
QPDFObjectHandle
QPDF::getObjectByID(int objid, int generation)
{
return getObject(QPDFObjGen(objid, generation));
}
QPDFObjectHandle
QPDF::copyForeignObject(QPDFObjectHandle foreign)
{
return m->objects.foreign().copied(foreign);
}
Objects ::Foreign::Copier&
Objects::Foreign::copier(QPDFObjectHandle const& foreign)
{
if (!foreign.isIndirect()) {
throw std::logic_error("QPDF::copyForeign called with direct object handle");
}
QPDF& other = *foreign.qpdf();
if (&other == &qpdf) {
throw std::logic_error("QPDF::copyForeign called with object from this QPDF");
}
return copiers.insert({other.getUniqueId(), {qpdf}}).first->second;
}
QPDFObjectHandle
Objects::Foreign::Copier::copied(QPDFObjectHandle const& foreign)
{
// Here's an explanation of what's going on here.
//
// A QPDFObjectHandle that is an indirect object has an owning QPDF. The object ID and
// generation refers to an object in the owning QPDF. When we copy the QPDFObjectHandle from a
// foreign QPDF into the local QPDF, we have to replace all indirect object references with
// references to the corresponding object in the local file.
//
// To do this, we maintain mappings from foreign object IDs to local object IDs for each foreign
// QPDF that we are copying from. The mapping is stored in an Foreign::Copier, which contains a
// mapping from the foreign ObjGen to the local QPDFObjectHandle.
//
// To copy, we do a deep traversal of the foreign object with loop detection to discover all
// indirect objects that are encountered, stopping at page boundaries. Whenever we encounter an
// indirect object, we check to see if we have already created a local copy of it. If not, we
// allocate a "reserved" object (or, for a stream, just a new stream) and store in the map the
// mapping from the foreign object ID to the new object. While we
// do this, we keep a list of objects to copy.
//
// Once we are done with the traversal, we copy all the objects that we need to copy. However,
// the copies will contain indirect object IDs that refer to objects in the foreign file. We
// need to replace them with references to objects in the local file. This is what
// replaceForeignIndirectObjects does. Once we have created a copy of the foreign object with
// all the indirect references replaced with new ones in the local context, we can replace the
// local reserved object with the copy. This mechanism allows us to copy objects with circular
// references in any order.
// For streams, rather than copying the objects, we set up the stream data to pull from the
// original stream by using a stream data provider. This is done in a manner that doesn't
// require the original QPDF object but may require the original source of the stream data with
// special handling for immediate_copy_from. This logic is also in
// replaceForeignIndirectObjects.
// Note that we explicitly allow use of copyForeignObject on page objects. It is a documented
// use case to copy pages this way if the intention is to not update the pages tree.
util::assertion(
visiting.empty(), "obj_copier.visiting is not empty at the beginning of copyForeignObject");
// Make sure we have an object in this file for every referenced object in the old file.
// obj_copier.object_map maps foreign QPDFObjGen to local objects. For everything new that we
// have to copy, the local object will be a reservation, unless it is a stream, in which case
// the local object will already be a stream.
reserve_objects(foreign, true);
util::assertion(visiting.empty(), "obj_copier.visiting is not empty after reserving objects");
// Copy any new objects and replace the reservations.
for (auto& oh: to_copy) {
auto copy = replace_indirect_object(oh, true);
if (!oh.isStream()) {
qpdf.replaceReserved(object_map[oh], copy);
}
}
to_copy.clear();
auto og = foreign.getObjGen();
if (!object_map.contains(og)) {
warn(damagedPDF(
foreign.qpdf()->getFilename() + " object " + og.unparse(' '),
foreign.offset(),
"unexpected reference to /Pages object while copying foreign object; replacing with "
"null"));
return QPDFObjectHandle::newNull();
}
return object_map[foreign];
}
void
Objects::Foreign::Copier::reserve_objects(QPDFObjectHandle const& foreign, bool top)
{
auto foreign_tc = foreign.type_code();
util::assertion(
foreign_tc != ::ot_reserved, "QPDF: attempting to copy a foreign reserved object");
if (foreign.isPagesObject()) {
return;
}
if (foreign.indirect()) {
QPDFObjGen foreign_og(foreign.getObjGen());
if (!visiting.add(foreign_og)) {
return;
}
if (object_map.contains(foreign_og)) {
if (!(top && foreign.isPageObject() && object_map[foreign_og].null())) {
visiting.erase(foreign);
return;
}
} else {
object_map[foreign_og] = foreign.isStream() ? qpdf.newStream() : qpdf.newIndirectNull();
if (!top && foreign.isPageObject()) {
visiting.erase(foreign_og);
return;
}
}
to_copy.emplace_back(foreign);
}
if (foreign_tc == ::ot_array) {
for (auto const& item: Array(foreign)) {
reserve_objects(item);
}
} else if (foreign_tc == ::ot_dictionary) {
for (auto const& item: Dictionary(foreign)) {
if (!item.second.null()) {
reserve_objects(item.second);
}
}
} else if (foreign_tc == ::ot_stream) {
reserve_objects(foreign.getDict());
}
visiting.erase(foreign);
}
QPDFObjectHandle
Objects::Foreign::Copier::replace_indirect_object(QPDFObjectHandle const& foreign, bool top)
{
auto foreign_tc = foreign.type_code();
if (!top && foreign.indirect()) {
auto mapping = object_map.find(foreign.id_gen());
if (mapping == object_map.end()) {
// This case would occur if this is a reference to a Pages object that we didn't
// traverse into.
return QPDFObjectHandle::newNull();
}
return mapping->second;
}
if (foreign_tc == ::ot_array) {
Array array = foreign;
std::vector<QPDFObjectHandle> result;
result.reserve(array.size());
for (auto const& item: array) {
result.emplace_back(replace_indirect_object(item));
}
return Array(std::move(result));
}
if (foreign_tc == ::ot_dictionary) {
auto result = Dictionary::empty();
for (auto const& [key, value]: Dictionary(foreign)) {
if (!value.null()) {
result.replace(key, replace_indirect_object(value));
}
}
return result;
}
if (foreign_tc == ::ot_stream) {
Stream stream = foreign;
Stream result = object_map[foreign];
auto dict = result.getDict();
for (auto const& [key, value]: stream.getDict()) {
if (!value.null()) {
dict.replace(key, replace_indirect_object(value));
}
}
stream.copy_data_to(result);
return result;
}
foreign.assertScalar();
auto result = foreign;
result.makeDirect();
return result;
}
unsigned long long
QPDF::getUniqueId() const
{
return m->unique_id;
}
std::string
QPDF::getFilename() const
{
return m->file->getName();
}
PDFVersion
QPDF::getVersionAsPDFVersion()
{
int major = 1;
int minor = 3;
int extension_level = getExtensionLevel();
std::regex v("^[[:space:]]*([0-9]+)\\.([0-9]+)");
std::smatch match;
if (std::regex_search(m->pdf_version, match, v)) {
major = QUtil::string_to_int(match[1].str().c_str());
minor = QUtil::string_to_int(match[2].str().c_str());
}
return {major, minor, extension_level};
}
std::string
QPDF::getPDFVersion() const
{
return m->pdf_version;
}
int
QPDF::getExtensionLevel()
{
if (Integer ExtensionLevel = getRoot()["/Extensions"]["/ADBE"]["/ExtensionLevel"]) {
return ExtensionLevel.value<int>();
}
return 0;
}
QPDFObjectHandle
QPDF::getTrailer()
{
return m->trailer;
}
QPDFObjectHandle
QPDF::getRoot()
{
Dictionary Root = m->trailer["/Root"];
if (!Root) {
throw m->c.damagedPDF("", -1, "unable to find /Root dictionary");
}
if (!m->objects.root_checked()) {
m->objects.root_checked(true);
if (Name(Root["/Type"]) != "/Catalog") {
warn(m->c.damagedPDF(
"", -1, "Catalog: setting missing or invalid /Type entry to /Catalog"));
if (!global::Options::inspection_mode()) {
Root.replace("/Type", Name("/Catalog"));
}
}
}
return Root.oh();
}
std::map<QPDFObjGen, QPDFXRefEntry>
QPDF::getXRefTable()
{
return m->objects.xref_table();
}
std::map<QPDFObjGen, QPDFXRefEntry> const&
Objects::xref_table()
{
util::assertion(m->parsed, "QPDF::getXRefTable called before parsing");
return m->xref_table;
}
bool
QPDF::pipeStreamData(
std::shared_ptr<EncryptionParameters> encp,
std::shared_ptr<InputSource> file,
QPDF& qpdf_for_warning,
QPDFObjGen og,
qpdf_offset_t offset,
size_t length,
QPDFObjectHandle stream_dict,
bool is_root_metadata,
Pipeline* pipeline,
bool suppress_warnings,
bool will_retry)
{
std::unique_ptr<Pipeline> to_delete;
if (encp->encrypted) {
decryptStream(
encp, file, qpdf_for_warning, pipeline, og, stream_dict, is_root_metadata, to_delete);
}
bool attempted_finish = false;
try {
auto buf = file->read(length, offset);
if (buf.size() != length) {
throw qpdf_for_warning.m->c.damagedPDF(
*file,
"",
offset + QIntC::to_offset(buf.size()),
"unexpected EOF reading stream data");
}
pipeline->write(buf.data(), length);
attempted_finish = true;
pipeline->finish();
return true;
} catch (QPDFExc& e) {
if (!suppress_warnings) {
qpdf_for_warning.warn(e);
}
} catch (std::exception& e) {
if (!suppress_warnings) {
QTC::TC("qpdf", "QPDF decoding error warning");
qpdf_for_warning.warn(
// line-break
qpdf_for_warning.m->c.damagedPDF(
*file,
"",
file->getLastOffset(),
("error decoding stream data for object " + og.unparse(' ') + ": " +
e.what())));
if (will_retry) {
qpdf_for_warning.warn(
// line-break
qpdf_for_warning.m->c.damagedPDF(
*file,
"",
file->getLastOffset(),
"stream will be re-processed without filtering to avoid data loss"));
}
}
}
if (!attempted_finish) {
try {
pipeline->finish();
} catch (std::exception&) {
// ignore
}
}
return false;
}
bool
QPDF::pipeStreamData(
QPDFObjGen og,
qpdf_offset_t offset,
size_t length,
QPDFObjectHandle stream_dict,
bool is_root_metadata,
Pipeline* pipeline,
bool suppress_warnings,
bool will_retry)
{
return pipeStreamData(
m->encp,
m->file,
*this,
og,
offset,
length,
stream_dict,
is_root_metadata,
pipeline,
suppress_warnings,
will_retry);
}
// Throw a generic exception when we lack context for something more specific. New code should not
// use this.
void
Common::stopOnError(std::string const& message)
{
throw damagedPDF("", message);
}
// Return an exception of type qpdf_e_damaged_pdf.
QPDFExc
Common::damagedPDF(
InputSource& input, std::string const& object, qpdf_offset_t offset, std::string const& message)
{
return {qpdf_e_damaged_pdf, input.getName(), object, offset, message, true};
}
// Return an exception of type qpdf_e_damaged_pdf. The object is taken from
// m->last_object_description.
QPDFExc
Common::damagedPDF(InputSource& input, qpdf_offset_t offset, std::string const& message) const
{
return damagedPDF(input, m->last_object_description, offset, message);
}
// Return an exception of type qpdf_e_damaged_pdf. The filename is taken from m->file.
QPDFExc
Common::damagedPDF(
std::string const& object, qpdf_offset_t offset, std::string const& message) const
{
return {qpdf_e_damaged_pdf, m->file->getName(), object, offset, message, true};
}
// Return an exception of type qpdf_e_damaged_pdf. The filename is taken from m->file and the
// offset from .m->file->getLastOffset().
QPDFExc
Common::damagedPDF(std::string const& object, std::string const& message) const
{
return damagedPDF(object, m->file->getLastOffset(), message);
}
// Return an exception of type qpdf_e_damaged_pdf. The filename is taken from m->file and the object
// from .m->last_object_description.
QPDFExc
Common::damagedPDF(qpdf_offset_t offset, std::string const& message) const
{
return damagedPDF(m->last_object_description, offset, message);
}
// Return an exception of type qpdf_e_damaged_pdf. The filename is taken from m->file, the object
// from m->last_object_description and the offset from m->file->getLastOffset().
QPDFExc
Common::damagedPDF(std::string const& message) const
{
return damagedPDF(m->last_object_description, m->file->getLastOffset(), message);
}
bool
QPDF::everCalledGetAllPages() const
{
return m->pages.ever_called_get_all_pages();
}
bool
QPDF::everPushedInheritedAttributesToPages() const
{
return m->pages.ever_pushed_inherited_attributes_to_pages();
}
void
QPDF::removeSecurityRestrictions()
{
auto root = getRoot();
root.removeKey("/Perms");
auto acroform = root.getKey("/AcroForm");
if (acroform.isDictionary() && acroform.hasKey("/SigFlags")) {
acroform.replaceKey("/SigFlags", QPDFObjectHandle::newInteger(0));
}
}
|