aboutsummaryrefslogtreecommitdiffstats
path: root/capture
AgeCommit message (Collapse)AuthorFilesLines
2023-02-06Remove wspcap.h and use config.h insteadJoão Valverde2-2/+2
Forcing the use of a dedicated header to replace pcap.h is unnecessary code and mental overhead in this case. We can use config.h instead for the same purpose of defining a macro symbol before including pcap.h.
2023-02-06CMake: Fix libnl unused link dependenciesJoão Valverde1-8/+15
2023-02-06Remove wsutil/netlink.h workaroundJoão Valverde1-6/+0
2023-02-06CMake: Cleanup unnecessary linking with shared librariesJoão Valverde1-1/+4
2023-01-30Revert "Enable rpathification and working relocation on Linux"Gerald Combs1-1/+1
This reverts commit 7a346c398a911a9883cc67f12542f04f87a21ee8.
2023-01-29Enable rpathification and working relocation on LinuxJoão Valverde1-1/+1
Dumpcap depends on wsutil.so. The path to the shared library is encoded in the RPATH (or RUNPATH) property of ELF binaries. This is currently an absolute path on most Unixy systems. Dumpcap could not be made to work with a relative RPATH because it uses elevated privileges and some loaders will ignore relative RPATHs and non-standard paths under those circumstances, because of (justified) security concerns. To enable relocation of the program we link dumpcap statically with wsutil instead. This provides a fully working relocatable installation on Linux and other platforms that support relative RPATHs.
2023-01-13MinGW: Fix -Wstrict-aliasingJoão Valverde1-2/+1
capture-pcap-util.c:561:23: error: dereferencing type-punned pointer will break strict-aliasing rules [-Werror=strict-aliasing] 561 | *((guint32 *)&(ai->sin_addr.s_addr)); | ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2023-01-13MinGW: Fix -WparenthesesJoão Valverde1-2/+2
2023-01-13MinGW: Fix -Wunused-functionJoão Valverde1-1/+1
2023-01-13MinGW: Fix -Wstrict-prototypesJoão Valverde1-2/+2
2023-01-13MinGW: Fix -WformatJoão Valverde1-3/+3
2023-01-01Lemon: Update code and remove cruftJoão Valverde1-4/+1
Remove some unused historical files. Aggressively disable warnings to keep the lemon source pristine and avoid the maintenance burden for lemon itself. Lemon has its own lax policy for warnings that doesn't match our own and they won't accept external patches to remove the warnings, so just ignore them. Lemon is just executed to generate code for the Wireshark build and the minor code issues it has have no influence at runtime. For lemon generated code we selectively disable some linting warnings. Remove patches for lemon and lempar, they are no longer required with these changes to silence warnings.
2022-12-23Add a routine to get the path of an executable given the program name.Guy Harris1-12/+5
That reduces the number of get_progfile_dir() calls, leaving only the calls that are done either to 1) get the pathname in order to display it or 2) get the pathname in order to reset the library path. That makes it easier to figure out which get_progfile_dir() calls are made to find the directory in which (non-extcap) binaries from Wireshark are installed and which - if any - are made to figure out the directory in which *the currently-running executable* are stored. (Currently, get_progfile_dir() attemps to get the former, not the latter, so extcaps in an extcap subdirectory, for example, will get the parent directory of that subdirectory, *not* the directory in which they weere installed.)
2022-11-07capture: Remove an unused variable.Gerald Combs1-3/+0
Fix ``` capture/ws80211_utils.c:328:6: error: variable 'bandidx' set but not used [-Werror,-Wunused-but-set-variable] int bandidx = 1; ^ ```
2022-10-23capture: Convert sync pipe to GIOChannelTomasz Moń2-120/+82
Reduce the amount of platform specific Wireshark code by using GIOChannel watch, i.e. do not use UNIX specific GLib functionality and do not peek into pipe every 100 ms on Windows.
2022-09-08Qt+extcap: Make our capture error dialog less noisy.Gerald Combs1-1/+1
Strip the timestamps and function names from extcap errors before displaying them in a dialog. This keeps us from spewing ``` Error by extcap pipe: ** (falcodump:24913) 15:08:20.263535 [falcodump WARNING] extcap/falcodump.cpp:593 -- main(): cloudtrail plugin error: failed to list objects: ExpiredToken: The provided token has expired. status code: 400, request id: M2PYJOT4JGVAA6B9, host id: +4V8Q+DGV+80Jd3fdc7tODyVdTRvepNgCD9zuvXeL7kzvp2oikaoi9CLMW+UKt/ aR1G2UXIqyQ8= ``` at the user. Check for warning messages and set our dialog type accordingly.
2022-08-16win32-utils: Explicitly list inherited handlesTomasz Moń1-5/+30
Windows processes inherit all inheritable handles when a new process is created using CreateProcess() with bInheritHandles set to TRUE. This can lead to undesired object lifetime extension. That is, the child process will keep ineritable handles alive even if it does not use them. Up to Windows Vista it was not possible explicitly list handles that should be inherited. Wireshark no longer works on Windows releases earlier than Vista, so use the new API without checking Windows version. Require all callers to win32_create_process() to pass in the list of handles to inherit. Set the listed handles as inheritable shortly before calling CreateProcess() and set them as not inheritable shortly after the process is created. This minimizes possibility for other callers (especially in 3rd party libraries) to inherit handles by accident. Do not terminate mmdbresolve process on exit. Instead rely on process exit when EOF is received on standard input. Previously the EOF was never received because mmdbresolve inherited both ends of standard input pipe, i.e. the fact that Wireshark closed the write end was not observed by mmdbresolve because mmdbresolve kept write handle the standard input pipe open.
2022-08-13capture: Stop extcaps before dumpcapTomasz Moń1-7/+15
Send SIGTERM on UNIX systems to all extcap processes when user requests capture stop. Wait up to 30 seconds for extcaps to finish. If extcaps do not finish in time, send SIGKILL to remaining extcaps. Do not call TerminateProcess() on Windows in the same place where UNIX SIGTERM is sent. Instead schedule extcap termination timeout to happen as soon as control returns back to the event loop. There is no universally agreed replacement for SIGTERM on Windows, so just keep things simple (forcefully terminate like always) until we have agreed on something.
2022-08-12extcap: Do not drain stderr on process exitTomasz Moń1-13/+3
Extcap child watch callback assumed that the stderr pipe is broken. However the stdout and stderr pipes are not necessarily broken if the child process spawned new processes that inherited standard handles. Do not drain stderr in busy loop to prevent UI freeze. Stop capture session only when all extcap watches are removed. Remove stdout and stderr watches on capture stop timer (30 seconds) expiration, even if the pipes are not broken. Do not rely only on 0 bytes read to cease reading stdout and stderr. Stop reading if the status is anything else than G_IO_STATUS_NORMAL (especially it can be G_IO_STATUS_EOF).
2022-08-10extcap: Read stdout and stderr during captureTomasz Moń1-2/+3
Read extcap stdout/stderr data when available to prevent extcap hang on stdout/stderr write. Discard stdout data as it was not used earlier. Store up to 1024 bytes of stderr and display it to user after capture stops. Fixes #17827
2022-08-10extcap: Close capture session after extcap finishesTomasz Moń2-5/+57
Wait up to 30 seconds for extcap process to finish after closing pipes. The wait is achieved in non-blocking fashion, i.e. the UI is completely responsive during the wait. Only actions related to capture process like capture control, file open, save, export are inactive during the wait. On Windows extcap child watch callback gets called immediately as the process is forcefully terminated. Prior to this change the extcap was forcefully terminated on Windows anyway. The wait is possible on UNIX systems if extcap does handle SIGPIPE and SIGTERM signals. The defaults handlers for SIGPIPE and SIGTERM simply terminate the process so for large number of extcaps there is no change. If extcap does not finish within 30 seconds, it is forcefully terminated using SIGKILL signal.
2022-07-30capture: Move capture pipe polling out of UITomasz Moń2-3/+81
Both CLI and Qt interfaces spin GLib mainloop. Move the capture pipe polling into common code to reduce code duplication.
2022-07-28tshark: Run GLib mainloop during captureTomasz Moń1-15/+4
Use the timer polling approach on Windows. GLib timer callbacks execute in main thread. Remove useless mutex as there is no point in protecting resources if only can thread can access the resources. Simply wait on capture child handle instead of periodically checking process state. On Unix systems, register the pipe fd for polling inside GLib mainloop.
2022-07-16Win32: Fix child process pipe handle leaksTomasz Moń1-1/+1
Close pipe handles when spawning asynchronous processes, so only the child process holds handle to the other end of the pipe. Closing the handles makes it possible to use pipes the same way as on other OS, that is to rely on blocking read() to end when child process finishes. Do not call CloseHandle() on signal pipe in capture sync after the handle ownership was transferred to file descriptor. Close the file descriptor instead.
2022-06-20Revert "A small for for the Doxygen warning:"Gisle Vanem1-3/+3
This reverts commit 2faa7bc3132a4a0b5679231f2f9ac5a988d45084
2022-06-20A small for for the Doxygen warning: Gisle Vanem1-3/+3
capture/airpcap.h:906: warning: end of file while inside a group Since the syntax should be `/**@}*/` (or `/*!@}*/` works too.
2022-02-24dumpcap: Fix a TODO for Npcap testJoão Valverde3-53/+14
2022-02-24Windows: Fix buildJoão Valverde2-8/+8
For some reason this was not caught by the CI.
2022-02-24wsutil: New API to gather compile/runtime infoDavid Perry3-24/+69
2022-02-11Differentiate `-c` from `-a packets:`David Perry1-0/+7
2022-02-09Specify directory for temporary capturesDavid Perry1-0/+5
2022-01-06Update our Npcap URLs.Gerald Combs1-9/+2
The official Npcap web site is now https://npcap.com/. Update our URLs to match. Fixes #17838.
2021-12-22Corrects repeated words throughout the code.Moshe Kaplan4-5/+5
Repeated words were found with: egrep "(\b[a-zA-Z]+) +\1\b" . -Ir and then manually reviewed. Non-displayed strings (e.g., in comments) were also corrected, to ease future review.
2021-12-19Replace g_strdup_printf() with ws_strdup_printf()João Valverde7-49/+49
Use macros from inttypes.h.
2021-12-19Replace g_snprintf() with snprintf()João Valverde4-29/+29
Use macros from inttypes.h with format strings.
2021-11-30capture: Add header files to DoxygenMoshe Kaplan10-10/+19
Add @file markers for capture headers so that Doxygen will generate documentation for them. Additionally, update the doxygen config file per 7fee50274f36a5feba113aa9ad3e72ca37bf1466 merging the caputils and capchild directories.
2021-11-16capture: Lower log level for debug outputJoão Valverde1-3/+3
2021-10-22Add new global header wireshark.h with guidelineJoão Valverde4-8/+7
Remove ws_diag_control.h from config.h because that was a workaround for the lack of a public global header. Fix the resultant build errors.
2021-09-23Windows: Fix build without libpcapJoão Valverde1-0/+2
wireshark\capture\capture-wpcap.c:901:42: error: expected ';', ',' or ')' before '_U_' get_runtime_caplibs_version(GString *str _U_) ^~~
2021-09-14Add tshark ringbuffer option '-b nametimenum:value'Juha Takala1-0/+7
This is used to select ringbuffer savefile name template. Choose one of two savefile name templates: If value is 1, make running file number part before start time part; this is the original and default behaviour (e.g. log_00001_20210828164426.pcap). If value is greater than 1, make start time part before running number part (e.g. log_20210828164426_00001.pcap). The latter makes alphabetical sortig order equal to creation time order, and keeps related multiple file sets in same directory close to each other (e.g. while browsing in wireshark "Open file" dialog). Signed-off-by: Juha Takala <juha.takala+rauta@iki.fi>
2021-07-15Clean up handling of --capture-comment.Guy Harris2-5/+11
Don't store the comments in a capture_options structure, because that's available only if we're being built with capture support, and --capture-comment can be used in TShark when reading a capture file and writing another capture file, with no live capture taking place. This means we don't handle that option in capture_opts_add_opt(); handle it in the programs that support it. Support writing multiple comments in dumpcap when capturing. These changes also fix builds without pcap, and makes --capture-comment work in Wireshark when a capture is started from the command line with -k. Update the help messages to indicate that --capture-comment adds a capture comment, it doesn't change any comment (much less "the" comment, as there isn't necessarily a single comment). Update the man pages: - not to presume that only pcapng files support file comments (even if that's true now, it might not be true in the future); - to note that multiple instances of --capture-comment are supported, and that multiple comments will be written, whether capturing or reading one file and writing another; - clarify that Wireshark doesn't *discard* SHB comments other than the first one, even though it only displays the first one;
2021-07-14tshark: allow --capture-comment when reading a fileDavid Perry1-2/+4
Allows adding one or more capture comments to a new pcapng file when tshark is reading from a file. Currently, tshark only allows setting one capture comment, and that only when doing a live capture. The use case for this feature is given in bug #15005. I decided to allow multiple capture comments to match the same ability in `editcap`. To allow this change, I changed the function signature of `process_cap_file()` so it takes a `capture_options` struct instead of individual parameters that affect the capture.
2021-07-14CMake: Adjust wsutil includes and linking.Gerald Combs1-4/+1
Mark wsutil's includes SYSTEM PRIVATE. This exposed a lot of targets that were indirectly picking up include paths via the wsutil target, so add direct includes where needed. The G.722 and G.726 codecs were implicilty including tiffio.h; find it explicitly instead. Mark some of wsutil's libraries PRIVATE, but leave commonly-used ones PUBLIC. Ping #17477.
2021-06-23If opening a capture device provides a warning, show it.Guy Harris5-96/+154
We start the capture anyway, but print a warning message or pop up a warning dialog first.
2021-06-21wslog: Shorten ws_log_message_is_active() nameJoão Valverde1-1/+1
2021-06-19Replace g_assert() with ws_assert()João Valverde2-43/+45
2021-06-18wslog: Add support for inverted debug matchesJoão Valverde1-1/+1
The --log-debug and --log-noisy now accepts a '!' to invert the match and disable the debug (noisy respectively) log level for the listed domains. Note this is different from --log-domains, that option enables/disables the entire log domain itself, regardless of log level.
2021-06-14capture: Lower priority for some status messagesJoão Valverde1-6/+6
2021-06-11Refactor our logging and extend the wslog APIJoão Valverde4-92/+61
Experience has shown that: 1. The current logging methods are not very reliable or practical. A logging bitmask makes little sense as the user-facing interface (who would want debug but not crtical messages for example?); it's computer-friendly and user-unfriendly. More importantly the console log level preference is initialized too late in the startup process to be used for the logging subsystem and that fact raises a number of annoying and hard-to-fix usability issues. 2. Coding around G_MESSAGES_DEBUG to comply with our log level mask and not clobber the user's settings or not create unexpected log misses is unworkable and generally follows the principle of most surprise. The fact that G_MESSAGES_DEBUG="all" can leak to other programs using GLib is also annoying. 3. The non-structured GLib logging API is very opinionated and lacks configurability beyond replacing the log handler. 4. Windows GUI has some special code to attach to a console, but it would be nice to abstract away the rest under a single interface. 5. Using this logger seems to be noticeably faster. Deprecate the console log level preference and extend our API to implement a log handler in wsutil/wslog.h to provide easy-to-use, flexible and dependable logging during all execution phases. Log levels have a hierarchy, from most verbose to least verbose (debug to error). When a given level is set everything above that is also enabled. The log level can be set with an environment variable or a command line option (parsed as soon as possible but still later than the environment). The default log level is "message". Dissector logging is not included because it is not clear what log domain they should use. An explosion to thousands of domains is not desirable and putting everything in a single domain is probably too coarse and noisy. For now I think it makes sense to let them do their own thing using g_log_default_handler() and continue using the G_MESSAGES_DEBUG mechanism with specific domains for each individual dissector. In the future a mechanism may be added to selectively enable these domains at runtime while trying to avoid the problems introduced by G_MESSAGES_DEBUG.
2021-05-27Minor style change to libpcap version stringJoão Valverde1-2/+11