forked from mobile-insight/mobileinsight-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wireshark.rb
146 lines (125 loc) · 4.79 KB
/
wireshark.rb
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
#!/bin/ruby
# Special Homebrew formulae for Wireshark 2.0.x stable version
# Adapted from the following URL
# https://github.com/Homebrew/homebrew-core/blob/master/Formula/wireshark.rb
# Contributor : Zengwen Yuan
# Date : 2017-06-24
# Version : 1.0.13
class Wireshark < Formula
desc "Graphical network analyzer and capture tool"
homepage "https://www.wireshark.org"
url "https://www.wireshark.org/download/src/all-versions/wireshark-2.0.13.tar.bz2"
mirror "https://1.eu.dl.wireshark.org/src/wireshark-2.0.13.tar.bz2"
sha256 "6bb8398edb7b59e7265b763aba54610c3f362af8a0ecfe6d4c9e51069687e243"
head "https://code.wireshark.org/review/wireshark", :using => :git
option "with-gtk+3", "Build the wireshark command with gtk+3"
option "with-gtk+", "Build the wireshark command with gtk+"
option "with-qt5", "Build the wireshark command with Qt5 (can be used with or without either GTK option)"
option "with-headers", "Install Wireshark library headers for plug-in development"
deprecated_option "with-qt" => "with-qt5"
depends_on "pkg-config" => :build
depends_on "cmake" => :build
depends_on "glib"
depends_on "gnutls"
depends_on "libgcrypt"
depends_on "dbus"
depends_on "geoip" => :recommended
depends_on "c-ares" => :recommended
depends_on "libsmi" => :optional
depends_on "lua" => :optional
depends_on "portaudio" => :optional
depends_on "qt5" => :optional
depends_on "gtk+3" => :optional
depends_on "gtk+" => :optional
depends_on "gnome-icon-theme" if build.with? "gtk+3"
resource "libpcap" do
url "http://www.tcpdump.org/release/libpcap-1.8.0.tar.gz"
sha256 "f47b51533f9f060afb304010ea5cbf51d032707333bca70c36351d255754659c"
end
def install
if MacOS.version <= :mavericks
resource("libpcap").stage do
system "./configure", "--prefix=#{libexec}/vendor",
"--enable-ipv6",
"--disable-universal"
system "make", "install"
end
ENV.prepend_path "PATH", libexec/"vendor/bin"
ENV.prepend "CFLAGS", "-I#{libexec}/vendor/include"
ENV.prepend "LDFLAGS", "-L#{libexec}/vendor/lib"
end
args = std_cmake_args
args << "-DENABLE_GNUTLS=ON" << "-DENABLE_GCRYPT=ON"
if build.with? "qt5"
args << "-DBUILD_wireshark=ON"
args << "-DENABLE_APPLICATION_BUNDLE=ON"
args << "-DENABLE_QT5=ON"
else
args << "-DBUILD_wireshark=OFF"
args << "-DENABLE_APPLICATION_BUNDLE=OFF"
end
if build.with?("gtk+3") || build.with?("gtk+")
args << "-DBUILD_wireshark_gtk=ON"
args << "-DENABLE_GTK3=" + (build.with?("gtk+3") ? "ON" : "OFF")
args << "-DENABLE_PORTAUDIO=ON" if build.with? "portaudio"
else
args << "-DBUILD_wireshark_gtk=OFF"
args << "-DENABLE_PORTAUDIO=OFF"
end
if build.with? "geoip"
args << "-DENABLE_GEOIP=ON"
else
args << "-DENABLE_GEOIP=OFF"
end
if build.with? "c-ares"
args << "-DENABLE_CARES=ON"
else
args << "-DENABLE_CARES=OFF"
end
if build.with? "libsmi"
args << "-DENABLE_SMI=ON"
else
args << "-DENABLE_SMI=OFF"
end
if build.with? "lua"
args << "-DENABLE_LUA=ON"
else
args << "-DENABLE_LUA=OFF"
end
system "cmake", *args
system "make"
ENV.deparallelize # parallel install fails
system "make", "install"
if build.with? "qt5"
prefix.install bin/"Wireshark.app"
bin.install_symlink prefix/"Wireshark.app/Contents/MacOS/Wireshark"
end
if build.with? "headers"
(include/"wireshark").install Dir["*.h"]
(include/"wireshark/epan").install Dir["epan/*.h"]
(include/"wireshark/epan/crypt").install Dir["epan/crypt/*.h"]
(include/"wireshark/epan/dfilter").install Dir["epan/dfilter/*.h"]
(include/"wireshark/epan/dissectors").install Dir["epan/dissectors/*.h"]
(include/"wireshark/epan/ftypes").install Dir["epan/ftypes/*.h"]
(include/"wireshark/epan/wmem").install Dir["epan/wmem/*.h"]
(include/"wireshark/wiretap").install Dir["wiretap/*.h"]
(include/"wireshark/wsutil").install Dir["wsutil/*.h"]
end
end
def caveats; <<-EOS.undent
If your list of available capture interfaces is empty
(default macOS behavior), try installing ChmodBPF from homebrew cask:
brew cask install wireshark-chmodbpf
This creates an 'access_bpf' group and adds a launch daemon that changes the
permissions of your BPF devices so that all users in that group have both
read and write access to those devices.
See bug report:
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3760
EOS
end
test do
system bin/"randpkt", "-b", "100", "-c", "2", "capture.pcap"
output = shell_output("#{bin}/capinfos -Tmc capture.pcap")
assert_equal "File name,Number of packets\ncapture.pcap,2\n", output
end
end