1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
|
// WSDG Chapter Libraries
[#ChapterLibraries]
== Library Reference
[#ChLibIntro]
=== Introduction
Like most applications, Wireshark depends on libraries provided by your operating system and by third parties, including the C runtime library, GLib, libpcap, and Qt.
While running Wireshark only requires the libraries themselves, building it requires header files, import libraries, and related resources.
Binary libraries are available in different formats and are specific to the target operating system, platform, and compiler.
They can be compiled by hand, but are most often installed as pre-built packages.
On most Linux systems, the required binary and development libraries can be installed using your package manager.
We provide setup scripts that will install the required packages for most distributions.
See <<ChSetupUNIXBuildEnvironmentSetup>> for details.
On macOS, CMake, Ninja, and other tools required to build Wireshark can be installed using a third party package manager such as Homebrew or MacPorts.
As with Linux, we provide `tools/macos-setup-brew.sh`, which will install the required Homebrew packages.
We provide several ways to install third party libraries:
* CMake will automatically install library dependencies if you set the WIRESHARK_BASE_DIR CMake variable to a directory that is writable by you, such as _wireshark-third-party_ at the same level as your Wireshark source code directory.
* `tools/macos-setup-brew.sh` can install dependencies using Homebrew if you use the `--install-required` and `--install-optional` flags
* `tools/macos-setup.sh` will will download, build, and install dependencies. It installs into _/usr/local_ by default; you can change this with the `-p` flag.
Windows doesn't have a good library package manager at the present time, so we provide our own pre-built libraries which are automatically installed when you run CMake.
With the exception of Qt, all libraries required to build Wireshark on Windows are available for download at
https://dev-libs.wireshark.org/windows/[].
See <<ChLibsSetup>> for details.
[#ChLibsSetup]
=== Windows Automated Library Download
The required libraries (apart from Qt) are automatically downloaded as part of
the CMake generation step, and subsequently as required when libraries are updated.
The libraries are downloaded into the directory indicated by the environment
variable WIRESHARK_BASE_DIR, this must be set appropriately for your environment.
The libraries are downloaded and extracted into WIRESHARK_BASE_DIR\wireshark-x64-libs or WIRESHARK_BASE_DIR\wireshark-arm64-libs depending on your target platform.
You may also set the library directory to a custom value with the environment variable WIRESHARK_LIB_DIR, but you may run into problems if you switch between major versions or target platforms.
[#ChLibsQt]
=== Qt
The Qt library is used to build the UI for Wireshark and is used to provide a platform independent UI.
Wireshark can be built with Qt 5.15 or later, but Qt 6 is the default and recommended version.
To enable builds with Qt 5, the command-line option `-DUSE_qt6=OFF` has to be set for CMake.
For more information on the Qt libraries, see <<ChUIQt>>.
[#ChLibsUnixQt]
[discrete]
==== Unix
Most Linux distributions provide Qt and its development libraries as standard packages.
The required libraries and tools will likely be split across several packages. For example,
building on Ubuntu requires _qt6-tools-dev_, _qt6-tools-dev-tools_, _libqt6svg6-dev_,
_qt6-multimedia-dev_, and possibly others.
The Qt Project provides an installation tool for macOS, similar to Windows.
It is available at https://www.qt.io/download-open-source/#section-2[].
[#ChLibsWindowsQt]
[discrete]
==== Windows
Qt 6 must be installed manually from the Qt installers page https://www.qt.io/download-open-source/#section-2[] using the version of Qt appropriate for your compiler.
The CMake variable CMAKE_PREFIX_PATH (see `https://doc.qt.io/qt-6/cmake-get-started.html`) should be set to your Qt installation directory, e.g. _C:\Qt{backslash}{windows-qt6-lts-version}\msvc2022_64_.
Alternatively you can also use the environment variable WIRESHARK_QT6_PREFIX_PATH.
[#ChLibsGLib]
=== GLib And Supporting Libraries
The GLib library is used as a basic platform abstraction library and can
be used in both CLI and GUI applications. For a detailed description
about GLib see <<ChCodeGLib>>.
GLib depends on GNU libiconv, GNU gettext, and other libraries. You will
typically not come into contact with these while doing Wireshark
development. Wireshark's build system check for and require both GLib
and its dependencies.
[#ChLibsUnixGLib]
[discrete]
==== Unix
The GLib library is available for most Linux distributions and UNIX
flavors. If it isn't already installed and isn't available as a package
for your platform, you can get it at https://wiki.gnome.org/Projects/GLib[].
[#ChLibsWindowsGLib]
[discrete]
==== Windows
GLib is part of our vcpkg-export bundles and is available at
https://dev-libs.wireshark.org/windows/packages/[].
[#ChLibsCares]
=== c-ares
C-Ares is used for asynchronous DNS resolution and lets us resolve names with a minimal performance impact.
[#ChLibsUnixCares]
[discrete]
==== Unix
If this library isn't already installed or available as a package for your
platform, you can get it at https://c-ares.org/[].
[#ChLibsWindowsCares]
[discrete]
==== Windows
C-Ares is built using {vcpkg-main-url}[vcpkg] and is available at
https://dev-libs.wireshark.org/windows/packages/[].
[#ChLibsSMI]
=== SMI (Optional)
LibSMI is used for MIB and PIB parsing and for OID resolution.
[#ChLibsUnixSMI]
[discrete]
==== Unix
If this library isn't already installed or available as a
package for your platform, you can get it at
https://www.ibr.cs.tu-bs.de/projects/libsmi/[].
[#ChLibsWindowsSMI]
[discrete]
==== Windows
Wireshark uses the source libSMI distribution at
https://www.ibr.cs.tu-bs.de/projects/libsmi/[].
LibSMI is cross-compiled using MinGW32.
It’s stored in the libsmi zip archives at
https://dev-libs.wireshark.org/windows/packages/[].
[#ChLibsZlib]
=== zlib (Optional)
[quote, The zlib web site, https://www.zlib.net/]
____
zlib is designed to be a
https://www.zlib.net/zlib_license.html[free],
general-purpose, legally unencumbered -- that is, not covered by any
patents -- lossless data-compression library for use on virtually any computer
hardware and operating system.
____
[#ChLibsUnixZlib]
[discrete]
==== Unix
This library is almost certain to be installed on your system. If it isn't or
you don't want to use the default library you can download it from
https://www.zlib.net/[].
[#ChLibsWindowsZlib]
[discrete]
==== Windows
zlib is part of our vcpkg-export bundles and is available at
https://dev-libs.wireshark.org/windows/packages/[].
[#ChLibsPcap]
=== libpcap or Npcap (Optional, But Strongly Recommended)
Libpcap and Npcap provide the packet capture capabilities that are central
to Wireshark’s core functionality.
[#ChLibsLibpcap]
[discrete]
==== Unix: libpcap
If this library isn't already installed or available as a package for your
platform, you can get it at {tcpdump-main-url}.
[#ChLibsWinpPcap]
[discrete]
==== Windows: Npcap
The Windows build environment compiles and links against a libpcap SDK built using {vcpkg-main-url}[vcpkg] and includes the {npcap-main-url}[Npcap packet capture driver] with the .exe installer.
Both are <<ChLibsSetup,automatically downloaded by CMake>>.
You can download the Npcap Windows packet capture library manually from
{npcap-main-url}.
[WARNING]
.Npcap has its own license with its own restrictions
====
Insecure.Com LLC, aka “The Nmap Project” has granted the Wireshark
Foundation the right to include Npcap with the installers that we
distribute from wireshark.org. If you wish to distribute your own
Wireshark installer or any other package that includes Npcap you must
comply with the {npcap-license-url}[Npcap license] and may be required
to purchase a redistribution license. Please see {npcap-main-url} for
more details.
====
[#ChLibsGNUTLS]
=== GnuTLS (Optional)
The GNU Transport Layer Security Library is used to enable TLS decryption
using an RSA private key.
[#ChLibsUnixGNUTLS]
[discrete]
==== Unix
If this library isn't already installed or available as a
package for your platform, you can get it at
https://gnutls.org/[].
[#ChLibsWindowsGNUTLS]
[discrete]
==== Windows
We provide packages cross-compiled using MinGW32 at
https://dev-libs.wireshark.org/windows/packages/[].
[#ChLibsGcrypt]
=== Libgcrypt
Libgcrypt is a low-level cryptographic library that provides
support for many ciphers and message authentication codes, such as DES, 3DES,
AES, Blowfish, SHA-1, SHA-256, and others.
[#ChLibsUnixGcrypt]
[discrete]
==== Unix
If this library isn't already installed or available as a
package for your platform, you can get it at
https://gnupg.org/software/libgcrypt/[].
[#ChLibsWindowsGcrypt]
[discrete]
==== Windows
We provide packages for Windows at
https://dev-libs.wireshark.org/windows/packages/[].
[#ChLibsKerberos]
=== Kerberos (Optional)
The Kerberos library is used to dissect Kerberos, sealed DCERPC and
secure LDAP protocols.
[#ChLibsUnixKerberos]
[discrete]
==== Unix
If this library isn't already installed or available as a
package for your platform, you can get it at
https://web.mit.edu/Kerberos/dist/[].
[#ChLibsWindowsKerberos]
[discrete]
==== Windows
We provide packages for Windows at
https://dev-libs.wireshark.org/windows/packages/[].
[#ChLibsLua]
=== Lua (Optional)
The Lua library is used to add scripting support to Wireshark.
Wireshark 4.2.x and earlier support Lua versions 5.1 and 5.2.
Recent versions of Wireshark have added support for Lua 5.3 and 5.4
as well.
[#ChLibsUnixLua]
[discrete]
==== Unix
If this library isn't already installed or available as a
package for your platform, you can get it at
https://www.lua.org/download.html[].
[#ChLibsWindowsLua]
[discrete]
==== Windows
We provide packages for Windows, patched for UTF-8 support, at
https://dev-libs.wireshark.org/windows/packages/[].
[#ChLibsMaxMindDB]
=== MaxMindDB (Optional)
MaxMind Inc. publishes a set of IP geolocation databases and related
open source libraries. They can be used to map IP addresses to
geographical locations and other information.
If libmaxminddb library isn't already installed or available as a
package for your platform, you can get it at
https://github.com/maxmind/libmaxminddb[].
We provide packages for Windows at
https://dev-libs.wireshark.org/windows/packages/[].
[#ChLibsSparkle]
=== WinSparkle (Optional)
WinSparkle is an easy-to-use software update library for Windows developers.
[#ChLibsWinSparkle]
[discrete]
==== Windows
We provide copies of the WinSparkle package at
https://dev-libs.wireshark.org/windows/packages/[].
// End of WSDG Chapter Libraries
|