summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* bplist: Move realloc from parse_unicode_node() into plist_utf16be_to_utf8()HEADmasterNikias Bassen2023-05-141-11/+12
| | | | | It is very confusing to handle the reallocation (buffer shrinking) outside of the actual conversion function.
* Make sure function signatures match their declarations in the public headerNikias Bassen2023-05-142-7/+7
|
* Windows: Use winsock2.h instead of sys/time.h when using MSVCNikias Bassen2023-05-132-1/+7
|
* Add space before PRI* macros, some compilers do not like itNikias Bassen2023-05-136-18/+18
|
* Move PLIST_API to the headersNikias Bassen2023-05-137-192/+198
|
* Silence another false 'shadows builtin function' warning on MinGWNikias Bassen2023-05-071-0/+3
|
* Silence false 'shadows builtin function' warning on MinGWNikias Bassen2023-05-071-0/+3
|
* Silence more compiler warning on 32bit systemsNikias Bassen2023-05-071-22/+22
|
* Silence compiler warning on 32bit systemsNikias Bassen2023-05-051-1/+1
|
* Update doxygen config and document undocumented macrosNikias Bassen2023-05-052-84/+22
|
* autoconf: small update to configure.acNikias Bassen2023-04-301-1/+1
|
* autoconf: Allow disabling build of test suiteNikias Bassen2023-04-242-1/+12
|
* Add a PLIST_OPT_NONE value to plist_write_options_tNikias Bassen2023-04-241-0/+1
|
* git-version-gen: Prevent multiple lines of outputNikias Bassen2023-04-241-0/+1
|
* Updated NEWS for release2.3.0Nikias Bassen2023-04-211-0/+25
|
* test: Fix tests for distcheckNikias Bassen2023-04-212-1/+2
|
* Remove unnecessary const to silence compiler warningNikias Bassen2023-04-214-4/+4
|
* Update soversionNikias Bassen2023-04-211-1/+1
|
* docs: Updated manpageNikias Bassen2023-04-211-0/+3
|
* plistutil: Add -p command line switch to print plist in human-readable formatNikias Bassen2023-04-211-0/+27
|
* C++: Remove deprecated Insert()Nikias Bassen2023-04-212-6/+0
|
* Fix buildNikias Bassen2023-04-211-0/+1
|
* Update .gitignoreNikias Bassen2023-04-211-0/+3
|
* Add C++ interface testSébastien Gonzalve2023-04-218-0/+203
|
* C++: Add dictionary and array size methodNikias Bassen2023-04-214-0/+10
| | | | Thanks @Cryptiiiic for the contribution.
* bplist: Fix offset range checkNikias Bassen2023-04-211-1/+1
| | | | Credit to OSS-Fuzz
* Remove deprecated plist_dict_insert_item()Nikias Bassen2023-04-192-17/+0
|
* Add plist_read_from_file() to interface, update plist_from_memory()Nikias Bassen2023-04-194-48/+75
| | | | | | | | | | plist_read_from_file() is a convenience function that will open a given file, checks its size, allocates a buffer large enough to hold the full contents, and reads from file to fill the buffer. Then, it calls plist_from_memory() to convert the data to plist format. A (breaking) change had to be made so that plist_from_memory() will also return the parsed format in its 4th argument (if non-NULL).
* Add new output-only formats and Define constants for the different plist formatsNikias Bassen2023-04-1611-22/+1637
| | | | | | | | | | | | | | | | | | This commit introduces constants for the different plist formats, and adds 3 new human-readable output-only formats: - PLIST_FORMAT_PRINT: the default human-readable format - PLIST_FORMAT_LIMD: "libimobiledevice" format (used in ideviceinfo) - PLIST_FORMAT_PLUTIL: plutil-style format Also, a new set of write functions has been added: - plist_write_to_string - plist_write_to_stream - plist_write_to_file Plus a simple "dump" function: - plist_print See documentation for details.
* Fix build without --enable-debugNikias Bassen2023-02-075-0/+9
|
* [github-actions] Fix build for CodeQL workflow againNikias Bassen2023-02-071-1/+1
|
* [github-actions] Fix build for CodeQL workflowNikias Bassen2023-02-071-15/+4
|
* Add function to interface to allow enabling/disabling error/debug output for ↵Nikias Bassen2023-02-077-0/+45
| | | | | | the format parses This makes the `-d` option work in plistutil that wasn't doing anything
* plistutil: Add command line switch to allow sorting of the output plistNikias Bassen2023-02-062-6/+26
|
* libcnary: Updated typedefs of node_t and node_list_t to contain pointerNikias Bassen2023-02-0610-134/+143
| | | | | This makes the code more readable. Obviously all the code that uses it is also updated.
* Fix plist_sort() by swapping the nodes in the tree instead of their dataNikias Bassen2023-02-051-29/+33
| | | | | | | The problem was that we swapped potential child node data between nodes, but their parents would not be updated that way, leading to double frees or segmentation faults when freeing a plist. This commit instead fixes this by swapping the actual nodes in the tree.
* Add new plist_sort() functionNikias Bassen2023-02-032-0/+69
|
* Add lowercase begin/end iterator functionsDaniel2023-02-034-0/+48
| | | ... for Dictionary and Array
* Add PList::Array iterator member functionsDaniel2023-02-032-0/+27
| | | | | ... returning both iterators and const_iterators: * PList::Array::Begin() * PList::Array::End()
* bplist: Fix handling of PLIST_NULL node typeNikias Bassen2023-01-312-0/+2
|
* jplist: Fix handling of PLIST_NULL type when converting to JSONNikias Bassen2023-01-311-0/+3
|
* xplist: Add missing newline to debug messageNikias Bassen2023-01-191-1/+1
|
* jplist: Add missing newline to debug messageNikias Bassen2023-01-191-1/+1
|
* oplist: Prevent too many levels of recursion to prevent stack overflowNikias Bassen2023-01-181-1/+9
| | | | Credit to OSS-Fuzz
* oplist: Fix another OOB readNikias Bassen2023-01-172-0/+8
| | | | Credit to OSS-Fuzz
* Updated README.md with CodeQL badgeNikias Bassen2023-01-161-0/+1
|
* Rename PLIST_UINT to PLIST_INT and add plist_new_int() and plist_get_int_val()Nikias Bassen2023-01-1617-62/+382
| | | | | | | | | | | | This properly supports getting and setting signed or unsigned integer values. Also, a new helper function plist_int_val_is_negative() was added to determine if a given #PLIST_INT node has a negative value or not. The old type PLIST_UINT is defined as a macro with the value of PLIST_INT for backwards compatibility. This commit also adds int vs. uint support to the C++ interface, and the python bindings in a hopefully useful way.
* oplist: Fix another OOB readNikias Bassen2023-01-132-0/+4
| | | | Credit to OSS-Fuzz
* [github-actions] CodeQL: Update checkout to v3Nikias Bassen2023-01-111-1/+1
|
* [github-actions] build: Update checkout and upload-artifact to v3Nikias Bassen2023-01-111-6/+6
|