├── .github └── workflows │ └── build.yml ├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── _ldid ├── docs ├── ldid.1 ├── ldid.zh_CN.1 └── ldid.zh_TW.1 ├── ldid.cpp ├── ldid.hpp └── machine.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: build 2 | on: 3 | push: 4 | paths: 5 | - '*.c' 6 | - '*.cpp' 7 | - '.github/workflows/*' 8 | - 'Makefile' 9 | pull_request: 10 | paths: 11 | - '*.c' 12 | - '*.cpp' 13 | - '.github/workflows/*' 14 | - 'Makefile' 15 | workflow_dispatch: 16 | release: 17 | types: 18 | - created 19 | 20 | env: 21 | LIBPLIST_VERSION: 2.2.0 22 | OPENSSL_VERSION: 3.0.5 23 | SCCACHE_VERSION: 0.3.0 24 | 25 | jobs: 26 | build-linux: 27 | runs-on: ubuntu-22.04 28 | strategy: 29 | matrix: 30 | triple: 31 | - aarch64-linux-musl 32 | - x86_64-linux-musl 33 | - x86_64-w64-mingw32 34 | env: 35 | TOOLCHAIN: ${{ matrix.triple }}-cross 36 | TRIPLE: ${{ matrix.triple }} 37 | 38 | steps: 39 | - uses: actions/checkout@v1 40 | with: 41 | submodules: recursive 42 | 43 | - uses: actions/cache@v2 44 | with: 45 | path: | 46 | ~/.cache/sccache 47 | ~/dep_src 48 | key: build-linux-${{ matrix.triple }}-${{ env.GITHUB_SHA }} 49 | restore-keys: | 50 | build-linux-${{ matrix.triple }}- 51 | 52 | - name: setup environment 53 | run: | 54 | export DOWNLOAD_PATH=${HOME}/dep_src 55 | export DEP_PATH=${HOME}/build 56 | mkdir -p ${DOWNLOAD_PATH} ${DEP_PATH} 57 | echo "DOWNLOAD_PATH=${DOWNLOAD_PATH}" >> $GITHUB_ENV 58 | echo "DEP_PATH=${DEP_PATH}" >> $GITHUB_ENV 59 | echo "ARCH=$(echo ${{ matrix.triple }} | cut -d- -f 1)" >> $GITHUB_ENV 60 | echo "OS=$(echo ${{ matrix.triple }} | cut -d- -f 2)" >> $GITHUB_ENV 61 | if [ "$(echo ${{ matrix.triple }} | cut -d- -f 2)" = "w64" ]; then 62 | echo "EXT=.exe" >> $GITHUB_ENV 63 | else 64 | echo "EXT=" >> $GITHUB_ENV 65 | fi 66 | 67 | - name: setup toolchain 68 | run: | 69 | # Download Toolchain 70 | wget -nc -P ${DOWNLOAD_PATH} https://cameronkatri.com/toolchains/${TOOLCHAIN}.tgz 71 | tar xf ${DOWNLOAD_PATH}/${TOOLCHAIN}.tgz -C ${HOME} 72 | 73 | # Download sccache 74 | wget -nc -P ${DOWNLOAD_PATH} \ 75 | https://github.com/mozilla/sccache/releases/download/v${SCCACHE_VERSION}/sccache-v${SCCACHE_VERSION}-x86_64-unknown-linux-musl.tar.gz 76 | tar xf ${DOWNLOAD_PATH}/sccache-v${SCCACHE_VERSION}-x86_64-unknown-linux-musl.tar.gz -C ${HOME} 77 | mv ${HOME}/sccache-v${SCCACHE_VERSION}-x86_64-unknown-linux-musl/sccache ${HOME}/${TOOLCHAIN}/bin 78 | chmod +x ${HOME}/${TOOLCHAIN}/bin/sccache 79 | 80 | echo "${HOME}/${TOOLCHAIN}/bin" >> $GITHUB_PATH 81 | echo "CC=sccache ${TRIPLE}-gcc" >> $GITHUB_ENV 82 | echo "CXX=sccache ${TRIPLE}-g++" >> $GITHUB_ENV 83 | echo "AR=${TRIPLE}-gcc-ar" >> $GITHUB_ENV 84 | echo "NM=${TRIPLE}-gcc-nm" >> $GITHUB_ENV 85 | echo "RANLIB=${TRIPLE}-gcc-ranlib" >> $GITHUB_ENV 86 | if [ "${OS}" = "w64" ]; then 87 | echo "CFLAGS=-Os -fPIC -fno-pie -no-pie -static -ffunction-sections -fdata-sections" >> $GITHUB_ENV 88 | echo "CXXFLAGS=-Os -fPIC -fno-pie -no-pie -static -ffunction-sections -fdata-sections" >> $GITHUB_ENV 89 | echo "LDFLAGS=-Os -fPIC -fno-pie -no-pie -static -Wl,--gc-sections -Wl,-strip-all -ffunction-sections -fdata-sections" >> $GITHUB_ENV 90 | else 91 | echo "CFLAGS=-Os -fPIC -fno-pie -no-pie -static -ffunction-sections -flto -fdata-sections" >> $GITHUB_ENV 92 | echo "CXXFLAGS=-Os -fPIC -fno-pie -no-pie -static -ffunction-sections -flto -fdata-sections" >> $GITHUB_ENV 93 | echo "LDFLAGS=-Os -fPIC -fno-pie -no-pie -static -Wl,--gc-sections -Wl,-strip-all -flto -ffunction-sections -fdata-sections" >> $GITHUB_ENV 94 | fi 95 | 96 | - name: build libplist 97 | run: | 98 | wget -nc -P ${DOWNLOAD_PATH} https://github.com/libimobiledevice/libplist/releases/download/${LIBPLIST_VERSION}/libplist-${LIBPLIST_VERSION}.tar.bz2 99 | tar xf ${DOWNLOAD_PATH}/libplist-${LIBPLIST_VERSION}.tar.bz2 -C ${DEP_PATH} 100 | cd ${DEP_PATH}/libplist-${LIBPLIST_VERSION} 101 | ./configure --host=${TRIPLE} --prefix=/usr --without-cython --enable-static --disable-shared 102 | make -j$(nproc) 103 | 104 | echo "LIBPLIST_INCLUDES=-I${DEP_PATH}/libplist-${LIBPLIST_VERSION}/include" >> $GITHUB_ENV 105 | echo "LIBPLIST_LIBS=${DEP_PATH}/libplist-${LIBPLIST_VERSION}/src/.libs/libplist-2.0.a" >> $GITHUB_ENV 106 | 107 | - name: build openssl 108 | run: | 109 | if [ "${OS}" = "w64" ]; then 110 | export PLATFORM="mingw64" 111 | else 112 | export PLATFORM="linux-${ARCH}" 113 | fi 114 | 115 | wget -nc -P ${DOWNLOAD_PATH} https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz 116 | tar xf ${DOWNLOAD_PATH}/openssl-${OPENSSL_VERSION}.tar.gz -C ${DEP_PATH} 117 | cd ${DEP_PATH}/openssl-${OPENSSL_VERSION} 118 | ./config -static enable-fips enable-capieng no-module enable-ktls no-zlib \ 119 | no-async no-comp no-idea no-mdc2 no-rc5 no-ec2m no-sm2 no-sm4 no-ssl3 no-seed no-weak-ssl-ciphers ${PLATFORM} 120 | make -j$(nproc) build_generated libcrypto.a 121 | 122 | echo "LIBCRYPTO_INCLUDES=-I${DEP_PATH}/openssl-${OPENSSL_VERSION}/include" >> $GITHUB_ENV 123 | if [ "${OS}" = "w64" ]; then 124 | echo "LIBCRYPTO_LIBS=${DEP_PATH}/openssl-${OPENSSL_VERSION}/libcrypto.a -lws2_32 -lgdi32 -ladvapi32 -lcrypt32 -luser32" >> $GITHUB_ENV 125 | else 126 | echo "LIBCRYPTO_LIBS=${DEP_PATH}/openssl-${OPENSSL_VERSION}/libcrypto.a" >> $GITHUB_ENV 127 | fi 128 | 129 | - name: build mman-win32 130 | if: ${{ env.OS == 'w64' }} 131 | run: | 132 | wget -nc -O ${DOWNLOAD_PATH}/mman-win32.tar.gz https://github.com/alitrack/mman-win32/archive/refs/heads/master.tar.gz || true 133 | tar xf ${DOWNLOAD_PATH}/mman-win32.tar.gz -C ${DEP_PATH} 134 | cd ${DEP_PATH}/mman-win32-master 135 | ./configure --prefix=/ --disable-shared --enable-static --cross-prefix="${TRIPLE}-" 136 | make -j$(nproc) 137 | mkdir -p include/sys/ 138 | ln -s ../../mman.h include/sys/ 139 | 140 | echo "CXXFLAGS=${CXXFLAGS} -I${DEP_PATH}/mman-win32-master/include" >> $GITHUB_ENV 141 | echo "LIBS=${LIBS} ${DEP_PATH}/mman-win32-master/libmman.a" >> $GITHUB_ENV 142 | 143 | - name: build tre 144 | if: ${{ env.OS == 'w64' }} 145 | run: | 146 | sudo apt-get install -y autopoint 147 | wget -nc -O ${DOWNLOAD_PATH}/tre.tar.gz https://github.com/laurikari/tre/archive/refs/heads/master.tar.gz || true 148 | tar xf ${DOWNLOAD_PATH}/tre.tar.gz -C ${DEP_PATH} 149 | cd ${DEP_PATH}/tre-master 150 | ./utils/autogen.sh 151 | ./configure --host=${TRIPLE} --prefix=/usr --without-cython --enable-static --disable-shared 152 | make -j$(nproc) 153 | 154 | echo "CXXFLAGS=${CXXFLAGS} -I${DEP_PATH}/tre-master/lib" >> $GITHUB_ENV 155 | echo "LIBS=${LIBS} ${DEP_PATH}/tre-master/lib/.libs/libtre.a" >> $GITHUB_ENV 156 | 157 | - name: build 158 | run: | 159 | make -j$(nproc) \ 160 | CXXFLAGS="-Wextra ${CXXFLAGS}" \ 161 | LDFLAGS="-static -static-libstdc++ ${LDFLAGS}" \ 162 | EXT="${EXT}" 163 | ${TRIPLE}-strip ldid${EXT} 164 | 165 | - uses: actions/upload-artifact@v1 166 | with: 167 | name: ldid_${{ env.OS }}_${{ env.ARCH }} 168 | path: ldid${{ env.EXT }} 169 | 170 | - name: Upload Release Asset Linux/Windows 171 | uses: actions/upload-release-asset@v1 172 | if: ${{ github.event_name == 'release' }} 173 | env: 174 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 175 | with: 176 | upload_url: ${{ github.event.release.upload_url }} 177 | asset_path: ldid${{ env.EXT }} 178 | asset_name: ldid_${{ env.OS }}_${{ env.ARCH }}${{ env.EXT }} 179 | asset_content_type: application/octet-stream 180 | 181 | build-macos: 182 | runs-on: macos-11 183 | strategy: 184 | matrix: 185 | include: 186 | - arch: x86_64 187 | os: macosx 188 | - arch: arm64 189 | os: macosx 190 | - arch: arm64 191 | os: iphoneos 192 | env: 193 | ARCH: ${{ matrix.arch }} 194 | OS: ${{ matrix.os }} 195 | steps: 196 | - uses: actions/checkout@v1 197 | with: 198 | submodules: recursive 199 | 200 | - uses: actions/cache@v2 201 | with: 202 | path: | 203 | ~/Library/Caches/Mozilla.sccache 204 | ~/dep_src 205 | key: build-${{ matrix.os }}-${{ matrix.arch }}-${ { env.GITHUB_SHA } } 206 | restore-keys: | 207 | build-${{ matrix.os }}-${{ matrix.arch }}- 208 | 209 | - name: setup environment 210 | run: | 211 | export DOWNLOAD_PATH=${HOME}/dep_src 212 | export DEP_PATH=${HOME}/build 213 | mkdir -p ${DOWNLOAD_PATH} ${DEP_PATH} 214 | echo "DOWNLOAD_PATH=${DOWNLOAD_PATH}" >> $GITHUB_ENV 215 | echo "DEP_PATH=${DEP_PATH}" >> $GITHUB_ENV 216 | 217 | if [ "${ARCH}" = "arm64" ]; then 218 | echo "HOST_ARCH=aarch64" >> $GITHUB_ENV 219 | else 220 | echo "HOST_ARCH=${ARCH}" >> $GITHUB_ENV 221 | fi 222 | echo "SDK=$(xcrun -sdk ${OS} --show-sdk-path)" >> $GITHUB_ENV 223 | 224 | - name: setup toolchain 225 | run: | 226 | brew install libtool autoconf automake 227 | 228 | # Download sccache 229 | wget -nc -P ${DOWNLOAD_PATH} \ 230 | https://github.com/mozilla/sccache/releases/download/v${SCCACHE_VERSION}/sccache-v${SCCACHE_VERSION}-x86_64-apple-darwin.tar.gz 231 | tar xf ${DOWNLOAD_PATH}/sccache-v${SCCACHE_VERSION}-x86_64-apple-darwin.tar.gz -C ${HOME} 232 | chmod +x ${HOME}/sccache-v${SCCACHE_VERSION}-x86_64-apple-darwin/sccache 233 | 234 | echo "${HOME}/sccache-v${SCCACHE_VERSION}-x86_64-apple-darwin" >> $GITHUB_PATH 235 | CC="sccache clang -arch ${ARCH} -isysroot ${SDK}" 236 | CXX="sccache clang++ -arch ${ARCH} -isysroot ${SDK}" 237 | if [ "${OS}" = "macosx" ]; then 238 | echo "CC=${CC} -mmacosx-version-min=10.13" >> $GITHUB_ENV 239 | echo "CXX=${CXX} -mmacosx-version-min=10.13" >> $GITHUB_ENV 240 | else 241 | echo "CC=${CC} -miphoneos-version-min=10.0" >> $GITHUB_ENV 242 | echo "CXX=${CXX} -miphoneos-version-min=10.0" >> $GITHUB_ENV 243 | fi 244 | echo "CXXFLAGS=-Os" >> $GITHUB_ENV 245 | echo "CFLAGS=-Os" >> $GITHUB_ENV 246 | 247 | - name: build libplist 248 | run: | 249 | wget -nc -P ${DOWNLOAD_PATH} https://github.com/libimobiledevice/libplist/releases/download/${LIBPLIST_VERSION}/libplist-${LIBPLIST_VERSION}.tar.bz2 250 | tar xf ${DOWNLOAD_PATH}/libplist-${LIBPLIST_VERSION}.tar.bz2 -C ${DEP_PATH} 251 | cd ${DEP_PATH}/libplist-${LIBPLIST_VERSION} 252 | ./configure --host=${HOST_ARCH}-apple-darwin --without-cython --enable-static --disable-shared 253 | make -j$(sysctl -n hw.ncpu) 254 | 255 | echo "LIBPLIST_INCLUDES=-I${DEP_PATH}/libplist-${LIBPLIST_VERSION}/include" >> $GITHUB_ENV 256 | echo "LIBPLIST_LIBS=${DEP_PATH}/libplist-${LIBPLIST_VERSION}/src/.libs/libplist-2.0.a" >> $GITHUB_ENV 257 | 258 | - name: build openssl 259 | run: | 260 | wget -nc -P ${DOWNLOAD_PATH} https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz 261 | tar xf ${DOWNLOAD_PATH}/openssl-${OPENSSL_VERSION}.tar.gz -C ${DEP_PATH} 262 | cd ${DEP_PATH}/openssl-${OPENSSL_VERSION} 263 | ./config -static enable-fips enable-capieng no-module enable-ktls no-zlib \ 264 | no-async no-comp no-idea no-mdc2 no-rc5 no-ec2m no-sm2 no-sm4 no-ssl3 no-seed no-weak-ssl-ciphers darwin64-${ARCH}-cc 265 | make -j$(sysctl -n hw.ncpu) build_generated libcrypto.a 266 | 267 | echo "LIBCRYPTO_INCLUDES=${CXXFLAGS} -I${DEP_PATH}/openssl-${OPENSSL_VERSION}/include" >> $GITHUB_ENV 268 | echo "LIBCRYPTO_LIBS=${DEP_PATH}/openssl-${OPENSSL_VERSION}/libcrypto.a" >> $GITHUB_ENV 269 | 270 | - name: build 271 | run: | 272 | make -j$(sysctl -n hw.ncpu) \ 273 | CXXFLAGS="-flto=thin -Wextra ${CXXFLAGS}" \ 274 | LDFLAGS="-flto=thin" 275 | strip ldid 276 | 277 | - uses: actions/upload-artifact@v1 278 | with: 279 | name: ldid_${{ matrix.os }}_${{ matrix.arch }} 280 | path: ldid 281 | 282 | - name: Upload Release Asset macOS 283 | uses: actions/upload-release-asset@v1 284 | if: ${{ github.event_name == 'release' }} 285 | env: 286 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 287 | with: 288 | upload_url: ${{ github.event.release.upload_url }} 289 | asset_path: ldid 290 | asset_name: ldid_${{ matrix.os }}_${{ matrix.arch }} 291 | asset_content_type: application/octet-stream 292 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ldid 2 | *.obj 3 | *.exe 4 | *.o 5 | .DS_Store 6 | .vscode 7 | compile_commands.json 8 | .cache 9 | *.core 10 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published by 637 | the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | ifneq (,$(wildcard .git)) 2 | VERSION ?= $(shell git describe --tags) 3 | else 4 | VERSION ?= 2.1.5-procursus7 5 | endif 6 | 7 | CC ?= cc 8 | CXX ?= c++ 9 | INSTALL ?= install 10 | LN ?= ln 11 | 12 | CXXFLAGS ?= -O2 -pipe 13 | LDFLAGS ?= 14 | 15 | PREFIX ?= /usr/local 16 | 17 | BINDIR ?= $(PREFIX)/bin 18 | MANDIR ?= $(PREFIX)/share/man 19 | 20 | SRC := ldid.cpp 21 | LIBS ?= 22 | 23 | LIBPLIST_INCLUDES ?= $(shell pkg-config --cflags libplist-2.0) 24 | LIBPLIST_LIBS ?= $(shell pkg-config --libs libplist-2.0) 25 | 26 | ifeq ($(shell uname -s),FreeBSD) 27 | LIBCRYPTO_INCLUDES ?= -I/usr/include 28 | LIBCRYPTO_LIBS ?= -L/usr/lib -lcrypto 29 | else 30 | LIBCRYPTO_INCLUDES ?= $(shell pkg-config --cflags libcrypto) 31 | LIBCRYPTO_LIBS ?= $(shell pkg-config --libs libcrypto) 32 | endif 33 | 34 | MANPAGE_LANGS := zh_TW zh_CN 35 | 36 | EXT ?= 37 | 38 | all: ldid$(EXT) 39 | 40 | %.cpp.o: %.cpp 41 | $(CXX) -c -std=c++11 $(CXXFLAGS) $(LIBCRYPTO_INCLUDES) $(LIBPLIST_INCLUDES) $(CPPFLAGS) -I. -DLDID_VERSION=\"$(VERSION)\" $< -o $@ 42 | 43 | ldid$(EXT): $(SRC:%=%.o) 44 | $(CXX) -o $@ $^ $(LDFLAGS) $(LIBCRYPTO_LIBS) $(LIBPLIST_LIBS) $(LIBS) 45 | 46 | install: all 47 | $(INSTALL) -d $(DESTDIR)$(BINDIR)/ 48 | $(INSTALL) -m755 ldid $(DESTDIR)$(BINDIR)/ldid 49 | $(LN) -sf ldid $(DESTDIR)$(BINDIR)/ldid2 50 | $(INSTALL) -d $(DESTDIR)$(MANDIR)/man1/ 51 | $(INSTALL) -m644 docs/ldid.1 $(DESTDIR)$(MANDIR)/man1/ldid.1 52 | for lang in $(MANPAGE_LANGS); do \ 53 | $(INSTALL) -d $(DESTDIR)$(MANDIR)/$$lang/man1/; \ 54 | $(INSTALL) -m644 docs/ldid.$$lang.1 $(DESTDIR)$(MANDIR)/$$lang/man1/ldid.1; \ 55 | done 56 | 57 | clean: 58 | rm -rf ldid *.o 59 | 60 | .PHONY: all clean install 61 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ldid 2 | 3 | Changes from https://git.saurik.com/ldid.git: 4 | - Add manpages (`en`, `zh_TW` and `zh_CN`) (@CRKatri & @asdfugil) 5 | - Support OpenSSL 3 (@sunflsks) 6 | - Allow p12 keys to have a password (@sunflsks) 7 | - Add a `-arch arch_type` flag so that typing the raw CPU type is not needed 8 | - Proper error messages 9 | -------------------------------------------------------------------------------- /_ldid: -------------------------------------------------------------------------------- 1 | #compdef ldid ldid2 2 | 3 | _arguments \ 4 | '-S-[Add signature]:entitlements:_files' \ 5 | '-w[Shallow sign]' \ 6 | '-Q-[Embed requirements]:requirements:_files' \ 7 | '(-S)-r[Remove signature]' \ 8 | '(-r)-h[Print signature information]' \ 9 | '-q[Print requirements]' \ 10 | '-e[Print entitlements]' \ 11 | '-M[Merge entitlements]' \ 12 | '*-C-[Flags]:flags:(adhoc enforcement expires hard host kill library-validation restrict runtime linker-signed)' \ 13 | '-H-[Hash type]:hash:(sha1 sha256)' \ 14 | '-I-[Set identifier]:identifier' \ 15 | '-K-[Signing private key]:key:_files' \ 16 | '-P-[Set as platform]:number' \ 17 | '-U-[Password for -K]' \ 18 | '*: :_files' 19 | -------------------------------------------------------------------------------- /docs/ldid.1: -------------------------------------------------------------------------------- 1 | .\"- 2 | .\" Copyright (c) 2021-2022 Procursus Team 3 | .\" SPDX-License-Identifier: AGPL-3.0-or-later 4 | .\" 5 | .Dd January 20, 2022 6 | .Dt LDID 1 7 | .Os 8 | .Sh NAME 9 | .Nm ldid 10 | .Nd Link Identity Editor 11 | .Sh SYNOPSIS 12 | .Nm 13 | .Op Fl A Ns Ar cputype : Ns Ar subtype 14 | .Op Fl a 15 | .Op Fl C Ns Op Ar adhoc | Ar enforcement | Ar expires | Ar hard | Ar host | Ar kill | Ar library-validation | Ar restrict | Ar runtime 16 | .Op Fl D 17 | .Op Fl d 18 | .Op Fl E Ns Ar num : Ns Ar file 19 | .Op Fl e 20 | .Op Fl H Ns Op Ar sha1 | Ar sha256 21 | .Op Fl h 22 | .Op Fl I Ns Ar name 23 | .Op Fl K Ns Ar key.p12 Op Fl U Ns Ar password 24 | .Op Fl M 25 | .Op Fl P Ns Op Ar num 26 | .Op Fl Q Ns Ar requirements 27 | .Op Fl q 28 | .Op Fl r | Fl S Ns Ar file.xml | Fl s 29 | .Op Fl u 30 | .Op Fl w 31 | .Op Fl arch Ar arch_type 32 | .Ar 33 | .Sh DESCRIPTION 34 | .Nm 35 | adds SHA1 and SHA256 hashes to a Mach-O file so that they can be run 36 | on a system that has validation, but not signature verification. 37 | .Bl -tag -width -indent 38 | .It Fl A Ns Ar cputype : Ns Ar subtype 39 | When used with 40 | .Fl a , Fl D , Fl e , Fl h , Fl q , 41 | or 42 | .Fl u , 43 | only act on the slice specified by 44 | .Ar cputype 45 | and 46 | .Ar subtype . 47 | .Ar cputype 48 | and 49 | .Ar subtype 50 | should both be integers. 51 | .It Fl a 52 | Print the CPU types and subtypes in hexadecimal. 53 | .It Fl arch Ar arch_type 54 | The same as 55 | .Fl A , 56 | except the name of the architecture is used. 57 | The list of currently known 58 | .Ar arch_type Ns s 59 | can be found in 60 | .Xr arch 3 . 61 | This is a Procursus extension. 62 | .It Fl C Ns Op Ar adhoc | Ar enforcement | Ar expires | Ar hard | Ar host | Ar kill | Ar library-validation | Ar restrict | Ar runtime | Ar linker-signed 63 | Specify the option flags to embed in the code signature. 64 | See 65 | .Xr codesign 1 66 | for details about these options. 67 | .It Fl D 68 | Reset the cryptid. 69 | .It Fl d 70 | Print the cryptid in the binaries if it exists. 71 | .It Fl E Ns Ar num : Ns Ar file 72 | Embed the hashes of 73 | .Ar file 74 | in the special codesign slot at 75 | .Ar num . 76 | .It Fl e 77 | Print the entitlements in each slice, or the slice specified by 78 | .Fl A 79 | or 80 | .Fl arch 81 | to 82 | .Ar stdout . 83 | .It Fl H Ns Op Ar sha1 | Ar sha256 84 | Disable the hash not specified. 85 | This is useful to replicate the default behavior of 86 | .Xr codesign 1 , 87 | which only provides a sha256 signature. 88 | .It Fl h 89 | Print information about the signature, such as 90 | hash types, flags, CDHash, and CodeDirectory version to 91 | .Ar stdout . 92 | .It Fl I Ns Ar name 93 | Set the identifier used in the binaries signature to 94 | .Ar name . 95 | If not specified, the basename of the binary is used. 96 | .It Fl K Ns Ar key.p12 97 | Sign using the identity in 98 | .Ar key.p12 . 99 | This will give the binary a valid signature so that it can be run 100 | on a system with signature validation. 101 | If 102 | .Ar key.p12 103 | has a password you will be prompted for it, 104 | or you can specify from the command line with 105 | .Fl U . 106 | .It Fl M 107 | When used with 108 | .Fl S , 109 | merge the new and existing entitlements instead of replacing the existing 110 | entitlements. 111 | This is useful for adding a few specific entitlements to a 112 | handful of binaries. 113 | .It Fl P Ns Op Ar num 114 | Mark the Mach-O as a platform binary. 115 | If 116 | .Ar num 117 | is specified, the platform field in the CodeDirectory will be set to that number. 118 | The default number is 13, as per Apple binaries. 119 | Specifying the platform using 120 | .Fl P 121 | is a Procursus extension. 122 | .It Fl Q Ns Ar requirements.xml 123 | Embed the requirements found in 124 | .Ar requirements . 125 | .It Fl q 126 | Print embedded requirements of the binaries. 127 | .It Fl r 128 | Remove the signature from the Mach-O. 129 | .It Fl S Ns Op Ar file.xml 130 | Pseudo-sign the Mach-O binaries. 131 | If 132 | .Ar file.xml 133 | is specified then the entitlements found in 134 | .Ar file.xml 135 | will be embedded in the Mach-O. 136 | .It Fl s 137 | Resign the Mach-O binaries while keeping the existing entitlements. 138 | .It Fl U Ns Ar password 139 | Use 140 | .Ar password 141 | as the password for the p12 certificate instead of prompting. 142 | This is a Procursus extension. 143 | .It Fl u 144 | If the binary was linked against UIKit, then print the UIKit version that the 145 | Mach-O binary was linked against. 146 | .It Fl w 147 | Shallow sign. Only the main binary of the specified bundle will be signed, as 148 | specified by 149 | .Ar CFBundleIdentifier 150 | in 151 | .Ar Info.plist . 152 | Any nested bundles and/or stray binaries will be completely 153 | left alone and interpreted at face-value. Applicable only when the signing 154 | target is a bundle directory, and not a specific Mach-O file. 155 | .Fl w 156 | can be used on any bundle, not just the root .app, including frameworks, 157 | appexes, and more. 158 | .El 159 | .Sh EXAMPLES 160 | To fakesign 161 | .Ar file 162 | with no entitlements 163 | .Pp 164 | .Dl "ldid -S file" 165 | .Pp 166 | To sign 167 | .Ar file 168 | using the key in 169 | .Ar /path/to/key.p12 170 | with entitlements found in 171 | .Ar ent.xml , 172 | marking it as an adhoc signature 173 | .Pp 174 | .Dl "ldid -Cadhoc -K/path/to/key.p12 -Sent.xml file" 175 | .Pp 176 | To add entitlements from 177 | .Ar ent.xml 178 | to the entitlements already in 179 | .Ar file 180 | .Pp 181 | .Dl "ldid -S -Cadhoc,linker-signed file" 182 | .Pp 183 | will fakesign 184 | .Ar file 185 | with no entitlements, and mark it as adhoc and linker-signed signature. 186 | .Pp 187 | The command: 188 | .Pp 189 | .Dl "ldid -Sent.xml -M file" 190 | .Pp 191 | To save the entitlements found in each slice of 192 | .Ar file 193 | to 194 | .Ar ent.xml 195 | .Pp 196 | .Dl "ldid -e file > ent.xml" 197 | .Sh SEE ALSO 198 | .Xr codesign 1 199 | .Sh HISTORY 200 | The 201 | .Nm 202 | utility was written by 203 | .An Jay (\*qSaurik\*q) Freeman . 204 | iPhoneOS 1.2.0 and 2.0 support was added on April 6, 2008. 205 | .Fl S 206 | was added on June 13, 2008. 207 | SHA256 support was added on August 25, 2016, fixing iOS 11 support. 208 | iOS 14 support was added on July 31, 2020 by 209 | .An Kabir Oberai . 210 | iOS 15 support was added on June 11, 2021. 211 | -------------------------------------------------------------------------------- /docs/ldid.zh_CN.1: -------------------------------------------------------------------------------- 1 | .\"- 2 | .\" Copyright (c) 2021-2022 Procursus Team 3 | .\" SPDX-License-Identifier: AGPL-3.0-or-later 4 | .\" 5 | .Dd January 20, 2022 6 | .Dt LDID 1 7 | .Os 8 | .Sh 名称 9 | .Nm ldid 10 | .Nd 链接身份编辑器 11 | .Sh 语法 12 | .Nm 13 | .Op Fl A Ns Ar 处理器类型 : Ns Ar 亚类型 14 | .Op Fl a 15 | .Op Fl C Ns Op Ar adhoc | Ar enforcement | Ar expires | Ar hard | Ar host | Ar kill | Ar library-validation | Ar restrict | Ar runtime | Ar linker-signed 16 | .Op Fl D 17 | .Op Fl d 18 | .Op Fl E Ns Ar 数字 : Ns Ar 档案 19 | .Op Fl e 20 | .Op Fl H Ns Op Ar sha1 | Ar sha256 21 | .Op Fl h 22 | .Op Fl I Ns Ar 名称 23 | .Op Fl K Ns Ar 密钥.p12 Op Fl U Ns Ar 密码 24 | .Op Fl M 25 | .Op Fl P Ns Op Ar 数字 26 | .Op Fl Q Ns Ar 需求 27 | .Op Fl q 28 | .Op Fl r | Fl S Ns Ar 档案.xml | Fl s 29 | .Op Fl u 30 | .Op Fl arch Ar 架构类型 31 | .Ar 档案...... 32 | .Sh 描述 33 | .Nm 34 | 把SHA1和SHA256杂凑值加入到Mach-O档案中, 35 | 让它们能在有验证但没有签署验证的系统上运行。 36 | .Bl -tag -width -indent 37 | .It Fl A Ns Ar 处理器类型 : Ns Ar 亚类型 38 | 当和 39 | .Fl a 40 | 、 41 | .Fl d 42 | 、 43 | .Fl e 44 | 、 45 | .Fl h 46 | 、 47 | .Fl q 48 | 或 49 | .Fl u 50 | 一起被使用时,只作用在被 51 | .Ar 处理器类型 52 | 和 53 | .Ar 亚类型 54 | 指定的部分。 55 | .Ar 处理器类型 56 | 和 57 | .Ar 亚类型 58 | 都应该是整数。 59 | .It Fl a 60 | 以十六进制印出处理器类型和亚类型。 61 | .It Fl arch Ar 架构类型 62 | 和 63 | .Fl A 64 | 一样,不过使用架构的名称。 65 | 已知的 66 | .Ar 架构类型 Ns 67 | 可以在 68 | .Xr arch 3 69 | 中找到。 70 | 这是一个Procursus扩展。 71 | .It Fl C Ns Op Ar adhoc | Ar enforcement | Ar expires | Ar hard | Ar host | Ar kill | Ar library-validation | Ar restrict | Ar runtime 72 | 设定要在档案中包含的程式码签署选项。 73 | 请看 74 | .Xr codesign 1 75 | 来获得关于这些选项的更多资讯。 76 | .It Fl D 77 | 重设加密码 (cryptid)。 78 | .It Fl d 79 | 输出在二进位档案中的加密码。 80 | .It Fl E Ns Ar 数字 : Ns Ar 档案 81 | 将 82 | .Ar 档案 83 | 的杂凑值嵌入到位于 84 | .Ar 数字 85 | 的特殊代码签署位置中。 86 | .It Fl e 87 | 把每一部分的权限印出,或印出 88 | .Fl A 89 | 或 90 | .Fl arch 91 | 所指定的部分的权限到 92 | .Ar 标准输出 93 | 。 94 | .It Fl H Ns Op Ar sha1 | Ar sha256 95 | 禁用没有指明的杂凑吗。 96 | 这个选项可以用来重现 97 | .Xr codesign 1 98 | 只提供sha256签署的预设行为。 99 | .It Fl h 100 | 印出关于签署的资讯,包括杂凑值的 101 | 类型,选项,CDHash, 和 CodeDirectory 版本到 102 | .Ar 标准输出 103 | 。 104 | .It Fl I Ns Ar 名称 105 | 把二进制档案签署中的识别码设定为 106 | .Ar 名称 107 | 。 108 | 如没有指明,就会使用二进位档案的档案名称。 109 | .It Fl K Ns Ar 密钥.p12 110 | 使用位于 111 | .Ar 密钥.p12 112 | 的身份签署。会给二进位档案有一个有效的签署,令它能够在有签署验证的系统上运行。 113 | 如果 114 | .Ar 密钥.p12 115 | 有密码的话,你会被询问。也可以用 116 | .Fl U 117 | 选项来提供密码。 118 | .It Fl M 119 | 当和 120 | .Fl S 121 | 一起使用时,和现有的权限合并而不是取代它。在加入权限时有用。 122 | .It Fl P Ns Op Ar 数字 123 | 将这个Mach-O二进位档案标示为平台二进位档案。 124 | 如果提供了 125 | .Ar 数字 126 | ,那么在CodeDirectory中的平台区域定会被设定为该数字。 127 | 根据苹果的二进位档案,预设为13。 128 | 使用 129 | .Fl P 130 | 来设定平台是一个Procursus扩展。 131 | .It Fl Q Ns Ar 需求 132 | 把需求嵌入到 133 | .Ar 需求 134 | 中。 135 | .It Fl q 136 | 印出被嵌入在二进位档案中的需求。 137 | .It Fl r 138 | 从Mach-O档案中删除签署。 139 | .It Fl S Ns Op Ar 档案.xml 140 | 伪签署Mach-O档案。 141 | 如果提供了 142 | .Ar 档案.xml 143 | 那么在 144 | .Ar 档案.xml 145 | 中的权限会被嵌入到Mach-O中。 146 | .It Fl s 147 | 重新签署Mach-O档案但保留现有权限。 148 | .It Fl U Ns Ar 密码 149 | 使用 150 | .Ar 密码 151 | 作为p12证书的密码,而不是询问。 152 | 这是一个Procursus扩展。 153 | .It Fl u 154 | 如果Mach-O档案有和UIKit链结,印出被链结的UIKit版本。 155 | .El 156 | .Sh 例子 157 | 指令: 158 | .Pp 159 | .Dl "ldid -S 档案" 160 | .Pp 161 | 会伪签署 162 | .Ar 档案 163 | 而且不嵌入任何权限。 164 | .Pp 165 | 指令: 166 | .Pp 167 | .Dl "ldid -Cadhoc -K/path/to/密钥.p12 -S权限.xml 档案" 168 | .Pp 169 | 会使用 170 | .Ar /path/to/密钥.p12 171 | 中的私錀来签署 172 | .Ar 档案 173 | 也会使用在 174 | .Ar 权限.xml 175 | 中的权限并把签署标示为特别用途 (adhoc) 签署。 176 | .Pp 177 | 指令: 178 | .Pp 179 | .Dl "ldid -S -Cadhoc,linker-signed 档案" 180 | .Pp 181 | 会伪签署 182 | .Ar 档案 183 | 而且不嵌入任何权限, 同时会把签署标示为特别用途 (adhoc,linker-signed) 签署。 184 | .Pp 185 | 指令: 186 | .Pp 187 | .Dl "ldid -S权限.xml -M 档案" 188 | .Pp 189 | 会把 190 | .Ar 权限.xml 191 | 中的权限加入到已经在 192 | .Ar 档案 193 | 中的权限。 194 | .Pp 195 | 指令: 196 | .Pp 197 | .Dl "ldid -e 档案 > 权限.xml" 198 | .Pp 199 | 会把在 200 | .Ar 档案 201 | 中每一部分的权限储存到 202 | .Ar 权限.xml 203 | 。 204 | .Sh 另见 205 | .Xr codesign 1 206 | .Sh 历史 207 | 这个 208 | .Nm 209 | 工具程式是由 210 | .An Jay \*qSaurik\*q Freeman 所编写的。 211 | 对iPhoneOS 1.2.0 和 2.0 的支援在2008年4月6号被加入。 212 | .Fl S 213 | 在2008年6月13日被加入。 214 | SHA256 支援在2016年8月25日被加入,修正iOS 11支援。 215 | iOS 14支援在2020年7月31日由 216 | .An Kabir Oberai 217 | 加入。 218 | iOS 15支援在2021年6月11日被加入。 219 | -------------------------------------------------------------------------------- /docs/ldid.zh_TW.1: -------------------------------------------------------------------------------- 1 | .\"- 2 | .\" Copyright (c) 2021-2022 Procursus Team 3 | .\" SPDX-License-Identifier: AGPL-3.0-or-later 4 | .\" 5 | .Dd January 20, 2022 6 | .Dt LDID 1 7 | .Os 8 | .Sh 名稱 9 | .Nm ldid 10 | .Nd 鏈接身份編輯器 11 | .Sh 語法 12 | .Nm 13 | .Op Fl A Ns Ar 處理器類型 : Ns Ar 亞類型 14 | .Op Fl a 15 | .Op Fl C Ns Op Ar adhoc | Ar enforcement | Ar expires | Ar hard | Ar host | Ar kill | Ar library-validation | Ar restrict | Ar runtime 16 | .Op Fl D 17 | .Op Fl d 18 | .Op Fl E Ns Ar 數字 : Ns Ar 檔案 19 | .Op Fl e 20 | .Op Fl H Ns Op Ar sha1 | Ar sha256 21 | .Op Fl h 22 | .Op Fl I Ns Ar 名稱 23 | .Op Fl K Ns Ar 密錀.p12 Op Fl U Ns Ar 密碼 24 | .Op Fl M 25 | .Op Fl P Ns Op Ar 數字 26 | .Op Fl Q Ns Ar 需求 27 | .Op Fl q 28 | .Op Fl r | Fl S Ns Ar 檔案.xml | Fl s 29 | .Op Fl u 30 | .Op Fl arch Ar 架構類型 31 | .Ar 檔案...... 32 | .Sh 描述 33 | .Nm 34 | 把SHA1和SHA256雜湊值加入到Mach-O檔案中, 35 | 讓它們能在有驗證但沒有簽署驗證的系統上運行。 36 | .Bl -tag -width -indent 37 | .It Fl A Ns Ar 處理器類型 : Ns Ar 亞類型 38 | 當和 39 | .Fl a 40 | 、 41 | .Fl d 42 | 、 43 | .Fl e 44 | 、 45 | .Fl h 46 | 、 47 | .Fl q 48 | 或 49 | .Fl u 50 | 一起被使用時,只作用在被 51 | .Ar 處理器類型 52 | 和 53 | .Ar 亞類型 54 | 指定的部分。 55 | .Ar 處理器類型 56 | 和 57 | .Ar 亞類型 58 | 都應該是整數。 59 | .It Fl a 60 | 以十六進制印出處理器類型和亞類型。 61 | .It Fl arch Ar 架構類型 62 | 和 63 | .Fl A 64 | 一樣,不過使用架構的名稱。 65 | 已知的 66 | .Ar 架構類型 Ns 67 | 可以在 68 | .Xr arch 3 69 | 中找到。 70 | 這是一個Procursus擴展。 71 | .It Fl C Ns Op Ar adhoc | Ar enforcement | Ar expires | Ar hard | Ar host | Ar kill | Ar library-validation | Ar restrict | Ar runtime | Ar linker-signed 72 | 設定要在檔案中包含的程式碼簽署選項。 73 | 請看 74 | .Xr codesign 1 75 | 來獲得關於這些選項的更多資訊。 76 | .It Fl D 77 | 重設加密碼 (cryptid)。 78 | .It Fl d 79 | 輸出在二進位檔案中的加密碼。 80 | .It Fl E Ns Ar 數字 : Ns Ar 檔案 81 | 將 82 | .Ar 檔案 83 | 的雜湊值嵌入到位於 84 | .Ar 數字 85 | 的特殊代碼簽署位置中。 86 | .It Fl e 87 | 把每一部分的權限印出,或印出 88 | .Fl A 89 | 或 90 | .Fl arch 91 | 所指定的部分的權限到 92 | .Ar 標準輸出 93 | 。 94 | .It Fl H Ns Op Ar sha1 | Ar sha256 95 | 禁用沒有指明的雜湊嗎。 96 | 這個選項可以用來重現 97 | .Xr codesign 1 98 | 只提供sha256簽署的預設行為。 99 | .It Fl h 100 | 印出關於簽署的資訊,包括雜湊值的 101 | 類型,選項,CDHash, 和 CodeDirectory 版本到 102 | .Ar 標準輸出 103 | 。 104 | .It Fl I Ns Ar 名稱 105 | 把二進制檔案簽署中的識別碼設定為 106 | .Ar 名稱 107 | 。 108 | 如沒有指明,就會使用二進位檔案的檔案名稱。 109 | .It Fl K Ns Ar 密錀.p12 110 | 使用位於 111 | .Ar 密錀.p12 112 | 的身份簽署。會給二進位檔案有一個有效的簽署,令它能夠在有簽署驗證的系統上運行。 113 | 如果 114 | .Ar 密錀.p12 115 | 有密碼的話,你會被詢問。也可以用 116 | .Fl U 117 | 選項來提供密碼。 118 | .It Fl M 119 | 當和 120 | .Fl S 121 | 一起使用時,和現有的權限合併而不是取代它。在加入權限時有用。 122 | .It Fl P Ns Op Ar 數字 123 | 將這個Mach-O二進位檔案標示為平台二進位檔案。 124 | 如果提供了 125 | .Ar 數字 126 | ,那麼在CodeDirectory中的平台區域定會被設定為該數字。 127 | 根據蘋果的二進位檔案,預設為13。 128 | 使用 129 | .Fl P 130 | 來設定平台是一個Procursus擴展。 131 | .It Fl Q Ns Ar 需求 132 | 把需求嵌入到 133 | .Ar 需求 134 | 中。 135 | .It Fl q 136 | 印出被嵌入在二進位檔案中的需求。 137 | .It Fl r 138 | 從Mach-O檔案中刪除簽署。 139 | .It Fl S Ns Op Ar 檔案.xml 140 | 偽簽署Mach-O檔案。 141 | 如果提供了 142 | .Ar 檔案.xml 143 | 那麼在 144 | .Ar 檔案.xml 145 | 中的權限會被嵌入到Mach-O中。 146 | .It Fl s 147 | 重新簽署Mach-O檔案但保留現有權限。 148 | .It Fl U Ns Ar 密碼 149 | 使用 150 | .Ar 密碼 151 | 作為p12證書的密碼,而不是詢問。 152 | 這是一個Procursus擴展。 153 | .It Fl u 154 | 如果Mach-O檔案有和UIKit鏈結,印出被鏈結的UIKit版本。 155 | .El 156 | .Sh 例子 157 | 指令: 158 | .Pp 159 | .Dl "ldid -S 檔案" 160 | .Pp 161 | 會偽簽署 162 | .Ar 檔案 163 | 而且不嵌入任何權限。 164 | .Pp 165 | 指令: 166 | .Pp 167 | .Dl "ldid -Cadhoc -K/path/to/密錀.p12 -S權限.xml 檔案" 168 | .Pp 169 | 會使用 170 | .Ar /path/to/密錀.p12 171 | 中的私錀來簽署 172 | .Ar 檔案 173 | 也會使用在 174 | .Ar 權限.xml 175 | 中的權限並把簽署標示為特別用途 (adhoc) 簽署。 176 | .Pp 177 | 指令: 178 | .Pp 179 | .Dl "ldid -S -Cadhoc,linker-signed 檔案" 180 | .Pp 181 | 會偽簽署 182 | .Ar 檔案 183 | 而且不嵌入任何權限, 同时会把簽署標示為特別用途 (adhoc,linker-signed) 簽署。 184 | .Pp 185 | 指令: 186 | .Pp 187 | .Dl "ldid -S權限.xml -M 檔案" 188 | .Pp 189 | 會把 190 | .Ar 權限.xml 191 | 中的權限加入到已經在 192 | .Ar 檔案 193 | 中的權限。 194 | .Pp 195 | 指令: 196 | .Pp 197 | .Dl "ldid -e 檔案 > 權限.xml" 198 | .Pp 199 | 會把在 200 | .Ar 檔案 201 | 中每一部分的權限儲存到 202 | .Ar 權限.xml 203 | 。 204 | .Sh 另見 205 | .Xr codesign 1 206 | .Sh 歷史 207 | 這個 208 | .Nm 209 | 工具程式是由 210 | .An Jay \*qSaurik\*q Freeman 所編寫的。 211 | 對iPhoneOS 1.2.0 和 2.0 的支援在2008年4月6號被加入。 212 | .Fl S 213 | 在2008年6月13日被加入。 214 | SHA256 支援在2016年8月25日被加入,修正iOS 11支援。 215 | iOS 14支援在2020年7月31日由 216 | .An Kabir Oberai 217 | 加入。 218 | iOS 15支援在2021年6月11日被加入。 219 | -------------------------------------------------------------------------------- /ldid.hpp: -------------------------------------------------------------------------------- 1 | #ifndef LDID_HPP 2 | #define LDID_HPP 3 | 4 | /* SPDX-License-Identifier: AGPL-3.0-only */ 5 | 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | 14 | namespace ldid { 15 | 16 | // I wish Apple cared about providing quality toolchains :/ 17 | 18 | template 19 | class Functor; 20 | 21 | template 22 | class Functor { 23 | public: 24 | virtual Type_ operator ()(Args_... args) const = 0; 25 | }; 26 | 27 | template 28 | class FunctorImpl; 29 | 30 | template 31 | class FunctorImpl : 32 | public Functor 33 | { 34 | private: 35 | const Value_ *value_; 36 | 37 | public: 38 | FunctorImpl(const Value_ &value) : 39 | value_(&value) 40 | { 41 | } 42 | 43 | virtual Type_ operator ()(Args_... args) const { 44 | return (*value_)(args...); 45 | } 46 | }; 47 | 48 | template 49 | FunctorImpl fun(const Function_ &value) { 50 | return value; 51 | } 52 | 53 | struct Progress { 54 | virtual void operator()(const std::string &value) const = 0; 55 | virtual void operator()(double value) const = 0; 56 | }; 57 | 58 | class Folder { 59 | public: 60 | virtual void Save(const std::string &path, bool edit, const void *flag, const Functor &code) = 0; 61 | virtual bool Look(const std::string &path) const = 0; 62 | virtual void Open(const std::string &path, const Functor &code) const = 0; 63 | virtual void Find(const std::string &path, const Functor &code, const Functor &)> &link) const = 0; 64 | }; 65 | 66 | class DiskFolder : 67 | public Folder 68 | { 69 | private: 70 | const std::string path_; 71 | std::map commit_; 72 | 73 | protected: 74 | std::string Path(const std::string &path) const; 75 | 76 | private: 77 | void Find(const std::string &root, const std::string &base, const Functor &code, const Functor &)> &link) const; 78 | 79 | public: 80 | DiskFolder(const std::string &path); 81 | ~DiskFolder(); 82 | 83 | virtual void Save(const std::string &path, bool edit, const void *flag, const Functor &code); 84 | virtual bool Look(const std::string &path) const; 85 | virtual void Open(const std::string &path, const Functor &code) const; 86 | virtual void Find(const std::string &path, const Functor &code, const Functor &)> &link) const; 87 | }; 88 | 89 | class SubFolder : 90 | public Folder 91 | { 92 | private: 93 | Folder &parent_; 94 | std::string path_; 95 | 96 | public: 97 | SubFolder(Folder &parent, const std::string &path); 98 | 99 | std::string Path(const std::string &path) const; 100 | 101 | virtual void Save(const std::string &path, bool edit, const void *flag, const Functor &code); 102 | virtual bool Look(const std::string &path) const; 103 | virtual void Open(const std::string &path, const Functor &code) const; 104 | virtual void Find(const std::string &path, const Functor &code, const Functor &)> &link) const; 105 | }; 106 | 107 | class UnionFolder : 108 | public Folder 109 | { 110 | private: 111 | struct Reset { 112 | const void *flag_; 113 | std::streambuf *data_; 114 | }; 115 | 116 | Folder &parent_; 117 | std::set deletes_; 118 | 119 | std::map remaps_; 120 | mutable std::map resets_; 121 | 122 | std::string Map(const std::string &path) const; 123 | void Map(const std::string &path, const Functor &code, const std::string &file, const Functor &)> &save) const; 124 | 125 | public: 126 | UnionFolder(Folder &parent); 127 | 128 | virtual void Save(const std::string &path, bool edit, const void *flag, const Functor &code); 129 | virtual bool Look(const std::string &path) const; 130 | virtual void Open(const std::string &path, const Functor &code) const; 131 | virtual void Find(const std::string &path, const Functor &code, const Functor &)> &link) const; 132 | 133 | void operator ()(const std::string &from) { 134 | deletes_.insert(from); 135 | } 136 | 137 | void operator ()(const std::string &from, const std::string &to) { 138 | operator ()(from); 139 | remaps_[to] = from; 140 | } 141 | 142 | void operator ()(const std::string &from, const void *flag, std::streambuf &data) { 143 | operator ()(from); 144 | auto &reset(resets_[from]); 145 | reset.flag_ = flag; 146 | reset.data_ = &data; 147 | } 148 | }; 149 | 150 | struct Hash { 151 | uint8_t sha1_[0x14]; 152 | uint8_t sha256_[0x20]; 153 | }; 154 | 155 | struct Bundle { 156 | std::string path; 157 | Hash hash; 158 | }; 159 | 160 | Bundle Sign(const std::string &root, Folder &folder, const std::string &key, const std::string &requirements, const Functor &alter, bool merge, uint8_t platform, const Progress &progress); 161 | 162 | typedef std::map Slots; 163 | 164 | Hash Sign(const void *idata, size_t isize, std::streambuf &output, const std::string &identifier, const std::string &entitlements, bool merge, const std::string &requirements, const std::string &key, const Slots &slots, uint32_t flags, uint8_t platform, const Progress &progress); 165 | 166 | } 167 | 168 | #endif//LDID_HPP 169 | -------------------------------------------------------------------------------- /machine.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1999 Apple Computer, Inc. All rights reserved. 3 | * 4 | * @APPLE_LICENSE_HEADER_START@ 5 | * 6 | * This file contains Original Code and/or Modifications of Original Code 7 | * as defined in and that are subject to the Apple Public Source License 8 | * Version 2.0 (the 'License'). You may not use this file except in 9 | * compliance with the License. Please obtain a copy of the License at 10 | * http://www.opensource.apple.com/apsl/ and read it before using this 11 | * file. 12 | * 13 | * The Original Code and all software distributed under the License are 14 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 15 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 16 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 17 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 18 | * Please see the License for the specific language governing rights and 19 | * limitations under the License. 20 | * 21 | * @APPLE_LICENSE_HEADER_END@ 22 | */ 23 | /* 24 | * Mach Operating System 25 | * Copyright (c) 1989 Carnegie-Mellon University 26 | * Copyright (c) 1988 Carnegie-Mellon University 27 | * Copyright (c) 1987 Carnegie-Mellon University 28 | * All rights reserved. The CMU software License Agreement specifies 29 | * the terms and conditions for use and redistribution. 30 | */ 31 | /* 32 | * HISTORY 33 | * Revision 1.1.1.1 1997/09/03 20:53:37 roland 34 | * Initial checkin of SGS release 244 35 | * 36 | * 2 July 1992 Mac Gillon at NeXT 37 | * Changed HPPA subtypes to follow our practice. 38 | * 39 | * 11 September 1992 David E. Bohman at NeXT 40 | * Added CPU_SUBTYPE_486SX to the i386 family. 41 | * 42 | * 16 July 1992 David E. Bohman at NeXT 43 | * Added CPU_SUBTYPE_586 to the i386 family. 44 | * 45 | * 17-Dec-91 Peter King (king) at NeXT 46 | * Added support for the XXX_ALL subtypes. These are used to 47 | * tag object files that can run on any implementation of a 48 | * particular family. 49 | * 50 | * 1-Mar-90 John Seamons (jks) at NeXT 51 | * Redefined cpu_type and cpu_subtype definitions to indicate processor 52 | * architecture instead of product types for the MC680x0. 53 | * 54 | * Revision 2.15 89/10/11 14:39:56 dlb 55 | * Removed should_exit - replaced by action thread. 56 | * [89/01/25 dlb] 57 | * 58 | * Revision 2.14 89/07/14 17:21:39 rvb 59 | * Added CPU types and subtypes for MC68030, MC68040, MC88000, 60 | * HPPA, ARM and Sun4-SPARC. 61 | * [89/07/13 mrt] 62 | * 63 | * Revision 2.12 89/05/30 10:38:58 rvb 64 | * Add R2000 machine types. 65 | * [89/05/30 08:28:53 rvb] 66 | * 67 | * Revision 2.11 89/04/18 16:43:32 mwyoung 68 | * Use rather than to get 69 | * VM types. Remove old history... none of it was insightful. 70 | * 71 | * The variable declarations should be moved elsewhere. 72 | * [89/01/24 mwyoung] 73 | * 74 | */ 75 | /* 76 | * Machine independent machine abstraction. 77 | * Copyright (C) 1986, Avadis Tevanian, Jr. 78 | */ 79 | 80 | #ifndef _MACH_MACHINE_H_ 81 | #define _MACH_MACHINE_H_ 82 | 83 | #include 84 | 85 | /* 86 | * For each host, there is a maximum possible number of 87 | * cpus that may be available in the system. This is the 88 | * compile-time constant NCPUS, which is defined in cpus.h. 89 | * 90 | * In addition, there is a machine_slot specifier for each 91 | * possible cpu in the system. 92 | */ 93 | 94 | typedef uint32_t cpu_type_t; 95 | typedef uint32_t cpu_subtype_t; 96 | typedef uint32_t cpu_threadtype_t; 97 | 98 | /* 99 | * Machine types known by all. 100 | */ 101 | 102 | #define CPU_TYPE_ANY ((cpu_type_t) -1) 103 | 104 | #define CPU_TYPE_VAX ((cpu_type_t) 1) 105 | #define CPU_TYPE_ROMP ((cpu_type_t) 2) 106 | #define CPU_TYPE_NS32032 ((cpu_type_t) 4) 107 | #define CPU_TYPE_NS32332 ((cpu_type_t) 5) 108 | #define CPU_TYPE_MC680x0 ((cpu_type_t) 6) 109 | #define CPU_TYPE_I386 ((cpu_type_t) 7) 110 | #define CPU_TYPE_X86 ((cpu_type_t) 7) 111 | #define CPU_TYPE_X86_64 ((cpu_type_t) (CPU_TYPE_I386 | CPU_ARCH_ABI64)) 112 | #define CPU_TYPE_MIPS ((cpu_type_t) 8) 113 | #define CPU_TYPE_NS32532 ((cpu_type_t) 9) 114 | #define CPU_TYPE_HPPA ((cpu_type_t) 11) 115 | #define CPU_TYPE_ARM ((cpu_type_t) 12) 116 | #define CPU_TYPE_MC88000 ((cpu_type_t) 13) 117 | #define CPU_TYPE_SPARC ((cpu_type_t) 14) 118 | #define CPU_TYPE_I860 ((cpu_type_t) 15) // big-endian 119 | #define CPU_TYPE_I860_LITTLE ((cpu_type_t) 16) // little-endian 120 | #define CPU_TYPE_RS6000 ((cpu_type_t) 17) 121 | #define CPU_TYPE_MC98000 ((cpu_type_t) 18) 122 | #define CPU_TYPE_POWERPC ((cpu_type_t) 18) 123 | #define CPU_ARCH_ABI64 0x1000000 124 | #define CPU_ARCH_ABI64_32 0x2000000 125 | #define CPU_ARCH_MASK 0xff000000 /* cctools-port */ 126 | #define CPU_TYPE_POWERPC64 ((cpu_type_t)(CPU_TYPE_POWERPC | CPU_ARCH_ABI64)) 127 | #define CPU_TYPE_VEO ((cpu_type_t) 255) 128 | #define CPU_TYPE_ARM64 ((cpu_type_t)(CPU_TYPE_ARM | CPU_ARCH_ABI64)) 129 | #define CPU_TYPE_ARM64_32 ((cpu_type_t)(CPU_TYPE_ARM | CPU_ARCH_ABI64_32)) 130 | 131 | 132 | /* 133 | * Machine subtypes (these are defined here, instead of in a machine 134 | * dependent directory, so that any program can get all definitions 135 | * regardless of where is it compiled). 136 | */ 137 | 138 | /* 139 | * Capability bits used in the definition of cpu_subtype. 140 | */ 141 | #define CPU_SUBTYPE_MASK 0xff000000 /* mask for feature flags */ 142 | #define CPU_SUBTYPE_LIB64 0x80000000 /* 64 bit libraries */ 143 | 144 | /* CPU subtype capability flags for ptrauth on arm64e platforms */ 145 | #define CPU_SUBTYPE_ARM64_PTR_AUTH_MASK 0x0f000000 146 | 147 | /* CPU subtype capability flags for ptrauth on arm64e platforms, take 2 */ 148 | #define CPU_SUBTYPE_ARM64E_VERSIONED_ABI_MASK 0x80000000 149 | #define CPU_SUBTYPE_ARM64E_KERNEL_ABI_MASK 0x40000000 150 | #define CPU_SUBTYPE_ARM64E_PTR_AUTH_MASK 0x3f000000 151 | 152 | /* 153 | * Object files that are hand-crafted to run on any 154 | * implementation of an architecture are tagged with 155 | * CPU_SUBTYPE_MULTIPLE. This functions essentially the same as 156 | * the "ALL" subtype of an architecture except that it allows us 157 | * to easily find object files that may need to be modified 158 | * whenever a new implementation of an architecture comes out. 159 | * 160 | * It is the responsibility of the implementor to make sure the 161 | * software handles unsupported implementations elegantly. 162 | */ 163 | #define CPU_SUBTYPE_MULTIPLE ((cpu_subtype_t) -1) 164 | 165 | 166 | /* 167 | * VAX subtypes (these do *not* necessary conform to the actual cpu 168 | * ID assigned by DEC available via the SID register). 169 | */ 170 | 171 | #define CPU_SUBTYPE_VAX_ALL ((cpu_subtype_t) 0) 172 | #define CPU_SUBTYPE_VAX780 ((cpu_subtype_t) 1) 173 | #define CPU_SUBTYPE_VAX785 ((cpu_subtype_t) 2) 174 | #define CPU_SUBTYPE_VAX750 ((cpu_subtype_t) 3) 175 | #define CPU_SUBTYPE_VAX730 ((cpu_subtype_t) 4) 176 | #define CPU_SUBTYPE_UVAXI ((cpu_subtype_t) 5) 177 | #define CPU_SUBTYPE_UVAXII ((cpu_subtype_t) 6) 178 | #define CPU_SUBTYPE_VAX8200 ((cpu_subtype_t) 7) 179 | #define CPU_SUBTYPE_VAX8500 ((cpu_subtype_t) 8) 180 | #define CPU_SUBTYPE_VAX8600 ((cpu_subtype_t) 9) 181 | #define CPU_SUBTYPE_VAX8650 ((cpu_subtype_t) 10) 182 | #define CPU_SUBTYPE_VAX8800 ((cpu_subtype_t) 11) 183 | #define CPU_SUBTYPE_UVAXIII ((cpu_subtype_t) 12) 184 | 185 | /* 186 | * ROMP subtypes. 187 | */ 188 | 189 | #define CPU_SUBTYPE_RT_ALL ((cpu_subtype_t) 0) 190 | #define CPU_SUBTYPE_RT_PC ((cpu_subtype_t) 1) 191 | #define CPU_SUBTYPE_RT_APC ((cpu_subtype_t) 2) 192 | #define CPU_SUBTYPE_RT_135 ((cpu_subtype_t) 3) 193 | 194 | /* 195 | * 32032/32332/32532 subtypes. 196 | */ 197 | 198 | #define CPU_SUBTYPE_MMAX_ALL ((cpu_subtype_t) 0) 199 | #define CPU_SUBTYPE_MMAX_DPC ((cpu_subtype_t) 1) /* 032 CPU */ 200 | #define CPU_SUBTYPE_SQT ((cpu_subtype_t) 2) 201 | #define CPU_SUBTYPE_MMAX_APC_FPU ((cpu_subtype_t) 3) /* 32081 FPU */ 202 | #define CPU_SUBTYPE_MMAX_APC_FPA ((cpu_subtype_t) 4) /* Weitek FPA */ 203 | #define CPU_SUBTYPE_MMAX_XPC ((cpu_subtype_t) 5) /* 532 CPU */ 204 | 205 | /* 206 | * I386 subtypes. 207 | */ 208 | 209 | #define CPU_SUBTYPE_I386_ALL ((cpu_subtype_t) 3) 210 | #define CPU_SUBTYPE_X86_64_ALL CPU_SUBTYPE_I386_ALL 211 | #define CPU_SUBTYPE_386 ((cpu_subtype_t) 3) 212 | #define CPU_SUBTYPE_486 ((cpu_subtype_t) 4) 213 | #define CPU_SUBTYPE_486SX ((cpu_subtype_t) 4 + 128) 214 | #define CPU_SUBTYPE_586 ((cpu_subtype_t) 5) 215 | #define CPU_SUBTYPE_INTEL(f, m) ((cpu_subtype_t) (f) + ((m) << 4)) 216 | #define CPU_SUBTYPE_PENT CPU_SUBTYPE_INTEL(5, 0) 217 | #define CPU_SUBTYPE_PENTPRO CPU_SUBTYPE_INTEL(6, 1) 218 | #define CPU_SUBTYPE_PENTII_M3 CPU_SUBTYPE_INTEL(6, 3) 219 | #define CPU_SUBTYPE_PENTII_M5 CPU_SUBTYPE_INTEL(6, 5) 220 | #define CPU_SUBTYPE_PENTIUM_4 CPU_SUBTYPE_INTEL(10, 0) 221 | 222 | #define CPU_SUBTYPE_INTEL_FAMILY(x) ((x) & 15) 223 | #define CPU_SUBTYPE_INTEL_FAMILY_MAX 15 224 | 225 | #define CPU_SUBTYPE_INTEL_MODEL(x) ((x) >> 4) 226 | #define CPU_SUBTYPE_INTEL_MODEL_ALL 0 227 | 228 | #define CPU_SUBTYPE_X86_64_H ((cpu_subtype_t)8) /* Haswell and compatible */ 229 | 230 | /* 231 | * Mips subtypes. 232 | */ 233 | 234 | #define CPU_SUBTYPE_MIPS_ALL ((cpu_subtype_t) 0) 235 | #define CPU_SUBTYPE_MIPS_R2300 ((cpu_subtype_t) 1) 236 | #define CPU_SUBTYPE_MIPS_R2600 ((cpu_subtype_t) 2) 237 | #define CPU_SUBTYPE_MIPS_R2800 ((cpu_subtype_t) 3) 238 | #define CPU_SUBTYPE_MIPS_R2000a ((cpu_subtype_t) 4) 239 | 240 | /* 241 | * 680x0 subtypes 242 | * 243 | * The subtype definitions here are unusual for historical reasons. 244 | * NeXT used to consider 68030 code as generic 68000 code. For 245 | * backwards compatability: 246 | * 247 | * CPU_SUBTYPE_MC68030 symbol has been preserved for source code 248 | * compatability. 249 | * 250 | * CPU_SUBTYPE_MC680x0_ALL has been defined to be the same 251 | * subtype as CPU_SUBTYPE_MC68030 for binary comatability. 252 | * 253 | * CPU_SUBTYPE_MC68030_ONLY has been added to allow new object 254 | * files to be tagged as containing 68030-specific instructions. 255 | */ 256 | 257 | #define CPU_SUBTYPE_MC680x0_ALL ((cpu_subtype_t) 1) 258 | #define CPU_SUBTYPE_MC68030 ((cpu_subtype_t) 1) /* compat */ 259 | #define CPU_SUBTYPE_MC68040 ((cpu_subtype_t) 2) 260 | #define CPU_SUBTYPE_MC68030_ONLY ((cpu_subtype_t) 3) 261 | 262 | /* 263 | * HPPA subtypes for Hewlett-Packard HP-PA family of 264 | * risc processors. Port by NeXT to 700 series. 265 | */ 266 | 267 | #define CPU_SUBTYPE_HPPA_ALL ((cpu_subtype_t) 0) 268 | #define CPU_SUBTYPE_HPPA_7100 ((cpu_subtype_t) 0) /* compat */ 269 | #define CPU_SUBTYPE_HPPA_7100LC ((cpu_subtype_t) 1) 270 | 271 | /* 272 | * Acorn subtypes - Acorn Risc Machine port done by 273 | * Olivetti System Software Laboratory 274 | */ 275 | 276 | #define CPU_SUBTYPE_ARM_ALL ((cpu_subtype_t) 0) 277 | #define CPU_SUBTYPE_ARM_A500_ARCH ((cpu_subtype_t) 1) 278 | #define CPU_SUBTYPE_ARM_A500 ((cpu_subtype_t) 2) 279 | #define CPU_SUBTYPE_ARM_A440 ((cpu_subtype_t) 3) 280 | #define CPU_SUBTYPE_ARM_M4 ((cpu_subtype_t) 4) 281 | #define CPU_SUBTYPE_ARM_V4T ((cpu_subtype_t) 5) 282 | #define CPU_SUBTYPE_ARM_V6 ((cpu_subtype_t) 6) 283 | #define CPU_SUBTYPE_ARM_V5TEJ ((cpu_subtype_t) 7) 284 | #define CPU_SUBTYPE_ARM_XSCALE ((cpu_subtype_t) 8) 285 | #define CPU_SUBTYPE_ARM_V7 ((cpu_subtype_t) 9) 286 | #define CPU_SUBTYPE_ARM_V7F ((cpu_subtype_t) 10) /* Cortex A9 */ 287 | #define CPU_SUBTYPE_ARM_V7S ((cpu_subtype_t) 11) /* Swift */ 288 | #define CPU_SUBTYPE_ARM_V7K ((cpu_subtype_t) 12) /* Kirkwood40 */ 289 | #define CPU_SUBTYPE_ARM_V6M ((cpu_subtype_t) 14) /* Not meant to be run under xnu */ 290 | #define CPU_SUBTYPE_ARM_V7M ((cpu_subtype_t) 15) /* Not meant to be run under xnu */ 291 | #define CPU_SUBTYPE_ARM_V7EM ((cpu_subtype_t) 16) /* Not meant to be run under xnu */ 292 | #define CPU_SUBTYPE_ARM_V8 ((cpu_subtype_t) 13) 293 | 294 | #define CPU_SUBTYPE_ARM64_ALL ((cpu_subtype_t) 0) 295 | #define CPU_SUBTYPE_ARM64_V8 ((cpu_subtype_t) 1) 296 | #define CPU_SUBTYPE_ARM64E ((cpu_subtype_t) 2) 297 | #define CPU_SUBTYPE_ARM64_E CPU_SUBTYPE_ARM64E /* cctools-port */ 298 | 299 | #define CPU_SUBTYPE_ARM64_32_V8 ((cpu_subtype_t) 1) 300 | 301 | 302 | /* 303 | * MC88000 subtypes 304 | */ 305 | #define CPU_SUBTYPE_MC88000_ALL ((cpu_subtype_t) 0) 306 | #define CPU_SUBTYPE_MMAX_JPC ((cpu_subtype_t) 1) 307 | #define CPU_SUBTYPE_MC88100 ((cpu_subtype_t) 1) 308 | #define CPU_SUBTYPE_MC88110 ((cpu_subtype_t) 2) 309 | 310 | /* 311 | * MC98000 (PowerPC) subtypes 312 | */ 313 | #define CPU_SUBTYPE_MC98000_ALL ((cpu_subtype_t) 0) 314 | #define CPU_SUBTYPE_MC98601 ((cpu_subtype_t) 1) 315 | 316 | /* 317 | * I860 subtypes 318 | */ 319 | #define CPU_SUBTYPE_I860_ALL ((cpu_subtype_t) 0) 320 | #define CPU_SUBTYPE_I860_860 ((cpu_subtype_t) 1) 321 | 322 | /* 323 | * I860 subtypes for NeXT-internal backwards compatability. 324 | * These constants will be going away. DO NOT USE THEM!!! 325 | */ 326 | #define CPU_SUBTYPE_LITTLE_ENDIAN ((cpu_subtype_t) 0) 327 | #define CPU_SUBTYPE_BIG_ENDIAN ((cpu_subtype_t) 1) 328 | 329 | /* 330 | * I860_LITTLE subtypes 331 | */ 332 | #define CPU_SUBTYPE_I860_LITTLE_ALL ((cpu_subtype_t) 0) 333 | #define CPU_SUBTYPE_I860_LITTLE ((cpu_subtype_t) 1) 334 | 335 | /* 336 | * RS6000 subtypes 337 | */ 338 | #define CPU_SUBTYPE_RS6000_ALL ((cpu_subtype_t) 0) 339 | #define CPU_SUBTYPE_RS6000 ((cpu_subtype_t) 1) 340 | 341 | /* 342 | * Sun4 subtypes - port done at CMU 343 | */ 344 | #define CPU_SUBTYPE_SUN4_ALL ((cpu_subtype_t) 0) 345 | #define CPU_SUBTYPE_SUN4_260 ((cpu_subtype_t) 1) 346 | #define CPU_SUBTYPE_SUN4_110 ((cpu_subtype_t) 2) 347 | 348 | #define CPU_SUBTYPE_SPARC_ALL ((cpu_subtype_t) 0) 349 | 350 | /* 351 | * PowerPC subtypes 352 | */ 353 | #define CPU_SUBTYPE_POWERPC_ALL ((cpu_subtype_t) 0) 354 | #define CPU_SUBTYPE_POWERPC_601 ((cpu_subtype_t) 1) 355 | #define CPU_SUBTYPE_POWERPC_602 ((cpu_subtype_t) 2) 356 | #define CPU_SUBTYPE_POWERPC_603 ((cpu_subtype_t) 3) 357 | #define CPU_SUBTYPE_POWERPC_603e ((cpu_subtype_t) 4) 358 | #define CPU_SUBTYPE_POWERPC_603ev ((cpu_subtype_t) 5) 359 | #define CPU_SUBTYPE_POWERPC_604 ((cpu_subtype_t) 6) 360 | #define CPU_SUBTYPE_POWERPC_604e ((cpu_subtype_t) 7) 361 | #define CPU_SUBTYPE_POWERPC_620 ((cpu_subtype_t) 8) 362 | #define CPU_SUBTYPE_POWERPC_750 ((cpu_subtype_t) 9) 363 | #define CPU_SUBTYPE_POWERPC_7400 ((cpu_subtype_t) 10) 364 | #define CPU_SUBTYPE_POWERPC_7450 ((cpu_subtype_t) 11) 365 | #define CPU_SUBTYPE_POWERPC_970 ((cpu_subtype_t) 100) 366 | 367 | /* 368 | * VEO subtypes 369 | * Note: the CPU_SUBTYPE_VEO_ALL will likely change over time to be defined as 370 | * one of the specific subtypes. 371 | */ 372 | #define CPU_SUBTYPE_VEO_1 ((cpu_subtype_t) 1) 373 | #define CPU_SUBTYPE_VEO_2 ((cpu_subtype_t) 2) 374 | #define CPU_SUBTYPE_VEO_3 ((cpu_subtype_t) 3) 375 | #define CPU_SUBTYPE_VEO_4 ((cpu_subtype_t) 4) 376 | #define CPU_SUBTYPE_VEO_ALL CPU_SUBTYPE_VEO_2 377 | 378 | #endif /* _MACH_MACHINE_H_ */ 379 | 380 | struct archs { 381 | const char *name; 382 | cpu_type_t cputype; 383 | cpu_subtype_t cpusubtype; 384 | }; 385 | 386 | static const struct archs archs[] = { 387 | { "any", CPU_TYPE_ANY, CPU_SUBTYPE_MULTIPLE }, 388 | { "little", CPU_TYPE_ANY, CPU_SUBTYPE_LITTLE_ENDIAN }, 389 | { "big", CPU_TYPE_ANY, CPU_SUBTYPE_BIG_ENDIAN }, 390 | 391 | /* 64-bit Mach-O architectures */ 392 | 393 | /* architecture families */ 394 | { "ppc64", CPU_TYPE_POWERPC64, CPU_SUBTYPE_POWERPC_ALL }, 395 | { "x86_64", CPU_TYPE_X86_64, CPU_SUBTYPE_X86_64_ALL }, 396 | { "x86_64h", CPU_TYPE_X86_64, CPU_SUBTYPE_X86_64_H }, 397 | { "arm64", CPU_TYPE_ARM64, CPU_SUBTYPE_ARM64_ALL }, 398 | /* specific architecture implementations */ 399 | { "ppc970-64", CPU_TYPE_POWERPC64, CPU_SUBTYPE_POWERPC_970 }, 400 | { "arm64_32", CPU_TYPE_ARM64_32, CPU_SUBTYPE_ARM64_32_V8 }, 401 | { "arm64e", CPU_TYPE_ARM64, CPU_SUBTYPE_ARM64E }, 402 | 403 | /* 32-bit Mach-O architectures */ 404 | 405 | /* architecture families */ 406 | { "ppc", CPU_TYPE_POWERPC, CPU_SUBTYPE_POWERPC_ALL }, 407 | { "i386", CPU_TYPE_I386, CPU_SUBTYPE_I386_ALL }, 408 | { "m68k", CPU_TYPE_MC680x0, CPU_SUBTYPE_MC680x0_ALL }, 409 | { "hppa", CPU_TYPE_HPPA, CPU_SUBTYPE_HPPA_ALL }, 410 | { "sparc", CPU_TYPE_SPARC, CPU_SUBTYPE_SPARC_ALL }, 411 | { "m88k", CPU_TYPE_MC88000, CPU_SUBTYPE_MC88000_ALL }, 412 | { "i860", CPU_TYPE_I860, CPU_SUBTYPE_I860_ALL }, 413 | { "arm", CPU_TYPE_ARM, CPU_SUBTYPE_ARM_ALL }, 414 | /* specific architecture implementations */ 415 | { "ppc601", CPU_TYPE_POWERPC, CPU_SUBTYPE_POWERPC_601 }, 416 | { "ppc603", CPU_TYPE_POWERPC, CPU_SUBTYPE_POWERPC_603 }, 417 | { "ppc603e",CPU_TYPE_POWERPC, CPU_SUBTYPE_POWERPC_603e }, 418 | { "ppc603ev",CPU_TYPE_POWERPC,CPU_SUBTYPE_POWERPC_603ev }, 419 | { "ppc604", CPU_TYPE_POWERPC, CPU_SUBTYPE_POWERPC_604 }, 420 | { "ppc604e",CPU_TYPE_POWERPC, CPU_SUBTYPE_POWERPC_604e }, 421 | { "ppc750", CPU_TYPE_POWERPC, CPU_SUBTYPE_POWERPC_750 }, 422 | { "ppc7400",CPU_TYPE_POWERPC, CPU_SUBTYPE_POWERPC_7400 }, 423 | { "ppc7450",CPU_TYPE_POWERPC, CPU_SUBTYPE_POWERPC_7450 }, 424 | { "ppc970", CPU_TYPE_POWERPC, CPU_SUBTYPE_POWERPC_970 }, 425 | { "i486", CPU_TYPE_I386, CPU_SUBTYPE_486 }, 426 | { "i486SX", CPU_TYPE_I386, CPU_SUBTYPE_486SX }, 427 | { "pentium",CPU_TYPE_I386, CPU_SUBTYPE_PENT }, /* same as i586 */ 428 | { "i586", CPU_TYPE_I386, CPU_SUBTYPE_586 }, 429 | { "pentpro", CPU_TYPE_I386, CPU_SUBTYPE_PENTPRO }, /* same as i686 */ 430 | { "i686", CPU_TYPE_I386, CPU_SUBTYPE_PENTPRO }, 431 | { "pentIIm3",CPU_TYPE_I386, CPU_SUBTYPE_PENTII_M3 }, 432 | { "pentIIm5",CPU_TYPE_I386, CPU_SUBTYPE_PENTII_M5 }, 433 | { "pentium4",CPU_TYPE_I386, CPU_SUBTYPE_PENTIUM_4 }, 434 | { "m68030", CPU_TYPE_MC680x0, CPU_SUBTYPE_MC68030_ONLY }, 435 | { "m68040", CPU_TYPE_MC680x0, CPU_SUBTYPE_MC68040 }, 436 | { "hppa7100LC", CPU_TYPE_HPPA, CPU_SUBTYPE_HPPA_7100LC }, 437 | { "armv4t", CPU_TYPE_ARM, CPU_SUBTYPE_ARM_V4T}, 438 | { "armv5", CPU_TYPE_ARM, CPU_SUBTYPE_ARM_V5TEJ}, 439 | { "xscale", CPU_TYPE_ARM, CPU_SUBTYPE_ARM_XSCALE}, 440 | { "armv6", CPU_TYPE_ARM, CPU_SUBTYPE_ARM_V6 }, 441 | { "armv6m", CPU_TYPE_ARM, CPU_SUBTYPE_ARM_V6M }, 442 | { "armv7", CPU_TYPE_ARM, CPU_SUBTYPE_ARM_V7 }, 443 | { "armv7f", CPU_TYPE_ARM, CPU_SUBTYPE_ARM_V7F }, 444 | { "armv7s", CPU_TYPE_ARM, CPU_SUBTYPE_ARM_V7S }, 445 | { "armv7k", CPU_TYPE_ARM, CPU_SUBTYPE_ARM_V7K }, 446 | { "armv7m", CPU_TYPE_ARM, CPU_SUBTYPE_ARM_V7M }, 447 | { "armv7em", CPU_TYPE_ARM, CPU_SUBTYPE_ARM_V7EM }, 448 | { "arm64v8",CPU_TYPE_ARM64, CPU_SUBTYPE_ARM64_V8 }, 449 | { NULL, 0, 0 } 450 | }; 451 | --------------------------------------------------------------------------------