Nguyen Anh Quynh | 8282dc6 | 2014-01-15 21:20:47 +0800 | [diff] [blame] | 1 | This file details the changelog of Capstone. |
| 2 | |
Nguyen Anh Quynh | 1ee2326 | 2014-01-22 18:27:39 +0800 | [diff] [blame] | 3 | --------------------------------- |
Nguyen Anh Quynh | 56db639 | 2014-03-11 11:24:46 +0800 | [diff] [blame^] | 4 | Version 2.1.1: March 13th, 2014 |
| 5 | |
| 6 | This is a stable release to fix some bugs deep in the core. There is no update |
| 7 | to any architectures or bindings, so bindings version 2.1 can be used with this |
| 8 | version 2.1.1 just fine. |
| 9 | |
| 10 | [ Core changes] |
| 11 | |
| 12 | - Fix a buffer overflow bug in Thumb mode (ARM). Some special input can |
| 13 | trigger this flaw. |
| 14 | - Fix a crash issue when embedding Capstone into OSX kernel. This should |
| 15 | enable Capstone to be embedded into other systems with limited stack |
| 16 | memory size such as Linux kernel or some firmwares. |
| 17 | - Use a proper SONAME for library versioning (Linux). |
| 18 | |
| 19 | --------------------------------- |
Nguyen Anh Quynh | f51971d | 2014-03-05 00:09:49 +0800 | [diff] [blame] | 20 | Version 2.1: March 5th, 2014 |
Nguyen Anh Quynh | 6e6ada2 | 2014-03-03 16:50:04 +0800 | [diff] [blame] | 21 | |
| 22 | [ API changes ] |
| 23 | |
| 24 | - API version has been bumped to 2.1. |
Nguyen Anh Quynh | 6cfabcd | 2014-03-03 17:04:15 +0800 | [diff] [blame] | 25 | - Change prototype of cs_close() to be able to invalidate closed handle. |
Nguyen Anh Quynh | 6e6ada2 | 2014-03-03 16:50:04 +0800 | [diff] [blame] | 26 | See http://capstone-engine.org/version_2.1_API.html for more information. |
| 27 | - Extend cs_support() to handle more query types, not only about supported |
| 28 | architectures. This change is backward compatible, however, so existent code |
| 29 | do not need to be modified to support this. |
| 30 | - New query type CS_SUPPORT_DIET for cs_support() to ask about diet status of |
| 31 | the engine. |
| 32 | - New error code CS_ERR_DIET to report errors about newly added diet mode. |
| 33 | - New error code CS_ERR_VERSION to report issue of incompatible versions between |
| 34 | bindings & core engine. |
| 35 | |
| 36 | |
| 37 | [ Core changes ] |
| 38 | |
| 39 | - On memory usage, Capstone uses about 40% less memory, while still faster |
| 40 | than version 2.0. |
| 41 | - All architectures are much smaller: binaries size reduce at least 30%. |
| 42 | Especially, X86-only binary reduces from 1.9MB to just 720KB. |
| 43 | - Support "diet" mode, in which engine size is further reduced (by around 40%) |
| 44 | for embedding purpose. The price to pay is that we have to sacrifice some |
| 45 | non-critical data fields. See http://capstone-engine.org/diet.html for more |
| 46 | details. |
| 47 | |
| 48 | |
| 49 | [ Architectures ] |
| 50 | |
Nguyen Anh Quynh | 6cfabcd | 2014-03-03 17:04:15 +0800 | [diff] [blame] | 51 | - Update all 5 architectures to fix bugs. |
Nguyen Anh Quynh | 6e6ada2 | 2014-03-03 16:50:04 +0800 | [diff] [blame] | 52 | - PowerPC: |
| 53 | - New instructions: FMR & MSYNC. |
| 54 | - Mips: |
| 55 | - New instruction: DLSA |
| 56 | - X86: |
| 57 | - Properly handle AVX-512 instructions. |
| 58 | - New instructions: PSETPM, SALC, INT1, GETSEC. |
| 59 | - Fix some memory leaking issues in case of prefixed instructions such |
| 60 | as LOCK, REP, REPNE. |
| 61 | |
| 62 | |
| 63 | [ Python binding ] |
| 64 | |
| 65 | - Verify the core version at initialization time. Refuse to run if its version |
| 66 | is different from the core's version. |
| 67 | - New API disasm_lite() added to Cs class. This light API only returns tuples of |
Nguyen Anh Quynh | 6cfabcd | 2014-03-03 17:04:15 +0800 | [diff] [blame] | 68 | (address, size, mnemonic, op_str), rather than list of CsInsn objects. This |
Nguyen Anh Quynh | 6e6ada2 | 2014-03-03 16:50:04 +0800 | [diff] [blame] | 69 | improves performance by around 30% in some benchmarks. |
Nguyen Anh Quynh | 7fc8121 | 2014-03-04 23:56:42 +0800 | [diff] [blame] | 70 | - New API version_bind() returns binding's version, which might differ from |
Nguyen Anh Quynh | b0b7308 | 2014-03-03 17:57:15 +0800 | [diff] [blame] | 71 | the core's API version if the binding is out-of-date. |
Nguyen Anh Quynh | f51971d | 2014-03-05 00:09:49 +0800 | [diff] [blame] | 72 | - New API debug() returns information on Cython support, diet status & archs |
Nguyen Anh Quynh | 7fc8121 | 2014-03-04 23:56:42 +0800 | [diff] [blame] | 73 | compiled in. |
Nguyen Anh Quynh | 6e6ada2 | 2014-03-03 16:50:04 +0800 | [diff] [blame] | 74 | - Fixed some memory leaking bugs for Cython binding. |
| 75 | - Fix a bug crashing Cython code when accessing @regs_read/regs_write/groups. |
Nguyen Anh Quynh | e6c378e | 2014-03-03 17:25:53 +0800 | [diff] [blame] | 76 | - Support diet mode. |
Nguyen Anh Quynh | 6e6ada2 | 2014-03-03 16:50:04 +0800 | [diff] [blame] | 77 | |
| 78 | |
| 79 | [ Java binding ] |
| 80 | |
| 81 | - Fix some memory leaking bugs. |
Nguyen Anh Quynh | e6c378e | 2014-03-03 17:25:53 +0800 | [diff] [blame] | 82 | - New API version() returns combined version. |
| 83 | - Support diet mode. |
Nguyen Anh Quynh | 6e6ada2 | 2014-03-03 16:50:04 +0800 | [diff] [blame] | 84 | - Better support for detail option. |
| 85 | |
| 86 | |
| 87 | [ Miscellaneous ] |
| 88 | |
Nguyen Anh Quynh | 6cfabcd | 2014-03-03 17:04:15 +0800 | [diff] [blame] | 89 | - make.sh now can uninstall the core engine. This is done with: |
| 90 | |
Nguyen Anh Quynh | 6e6ada2 | 2014-03-03 16:50:04 +0800 | [diff] [blame] | 91 | $ sudo ./make.sh uninstall |
| 92 | |
| 93 | ---------------------------------- |
Nguyen Anh Quynh | 1ee2326 | 2014-01-22 18:27:39 +0800 | [diff] [blame] | 94 | Version 2.0: January 22nd, 2014 |
Nguyen Anh Quynh | 8282dc6 | 2014-01-15 21:20:47 +0800 | [diff] [blame] | 95 | |
Nguyen Anh Quynh | 1ee2326 | 2014-01-22 18:27:39 +0800 | [diff] [blame] | 96 | Release 2.0 deprecates verison 1.0 and brings a lot of crucial changes. |
Nguyen Anh Quynh | 8282dc6 | 2014-01-15 21:20:47 +0800 | [diff] [blame] | 97 | |
Nguyen Anh Quynh | 1ee2326 | 2014-01-22 18:27:39 +0800 | [diff] [blame] | 98 | [ API changes ] |
| 99 | |
| 100 | - API version has been bumped to 2.0 (see cs_version() API) |
| 101 | - New API cs_strerror(errno) returns a string describing error code given |
| 102 | in its only argument. |
| 103 | - cs_version() now returns combined version encoding both major & minor versions. |
| 104 | - New option CS_OPT_MODE allows to change engine’s mode at run-time with |
| 105 | cs_option(). |
| 106 | - New option CS_OPT_MEM allows to specify user-defined functions for dynamically |
| 107 | memory management used internally by Capstone. This is useful to embed Capstone |
| 108 | into special environments such as kernel or firware. |
| 109 | - New API cs_support() can be used to check if this lib supports a particular |
| 110 | architecture (this is necessary since we now allow to choose which architectures |
| 111 | to compile in). |
| 112 | - The detail option is OFF by default now. To get detail information, it should be |
| 113 | explicitly turned ON. The details then can be accessed using cs_insn.detail |
| 114 | pointer (to newly added structure cs_detail) |
Nguyen Anh Quynh | 8282dc6 | 2014-01-15 21:20:47 +0800 | [diff] [blame] | 115 | |
| 116 | |
Nguyen Anh Quynh | 1ee2326 | 2014-01-22 18:27:39 +0800 | [diff] [blame] | 117 | [ Core changes ] |
| 118 | |
| 119 | - On memory usage, Capstone uses much less memory, but a lot faster now. |
| 120 | - User now can choose which architectures to be supported by modifying config.mk |
| 121 | before compiling/installing. |
| 122 | |
| 123 | |
| 124 | [ Architectures ] |
| 125 | |
| 126 | - Arm |
| 127 | - Support Big-Endian mode (besides Little-Endian mode). |
Nguyen Anh Quynh | 6c5eec5 | 2014-01-22 18:33:35 +0800 | [diff] [blame] | 128 | - Support friendly register, so instead of output sub "r12,r11,0x14", |
| 129 | we have "sub ip,fp,0x14". |
Nguyen Anh Quynh | 1ee2326 | 2014-01-22 18:27:39 +0800 | [diff] [blame] | 130 | - Arm64: support Big-Endian mode (besides Little-Endian mode). |
| 131 | - PowerPC: newly added. |
Nguyen Anh Quynh | 6c5eec5 | 2014-01-22 18:33:35 +0800 | [diff] [blame] | 132 | - Mips: support friendly register, so instead of output "srl $2,$1,0x1f", |
| 133 | we have "srl $v0,$at,0x1f". |
Nguyen Anh Quynh | 1ee2326 | 2014-01-22 18:27:39 +0800 | [diff] [blame] | 134 | - X86: bug fixes. |
| 135 | |
| 136 | |
| 137 | [ Python binding ] |
| 138 | |
| 139 | - Python binding is vastly improved in performance: around 3 ~ 4 times faster |
| 140 | than in 1.0. |
| 141 | - Cython support has been added, which can further speed up over the default |
| 142 | pure Python binding (up to 30% in some cases) |
| 143 | - Function cs_disasm_quick() & Cs.disasm() now use generator (rather than a list) |
| 144 | to return succesfully disassembled instructions. This improves the performance |
| 145 | and reduces memory usage. |
| 146 | |
| 147 | |
| 148 | [ Java binding ] |
| 149 | |
| 150 | - Better performance & bug fixes. |
| 151 | |
| 152 | |
| 153 | [ Miscellaneous ] |
| 154 | |
| 155 | - Fixed some installation issues with Gentoo Linux. |
| 156 | - Capstone now can easily compile/install on all *nix, including Linux, OSX, |
| 157 | {Net, Free, Open}BSD & Solaris. |
| 158 | |
| 159 | ---------------------------------- |
Nguyen Anh Quynh | 8282dc6 | 2014-01-15 21:20:47 +0800 | [diff] [blame] | 160 | [Version 1.0]: December 18th, 2013 |
| 161 | |
| 162 | - Initial public release. |
| 163 | |