4 # Copyright © 2015-2017 Apple Inc.
8 # Collect network information.
11 PATH
=/bin
:/usr
/bin
:/sbin
:/usr
/sbin
13 # __SETUP_ROUTINES_BEGIN__
21 COLLECT_CONFIGURATION_FILES
="Y"
33 COLLECT_SENSITIVE_INFO
="Y"
40 REQUESTED_OUTDIR
="${i}"
51 if [ ${EUID} -ne 0 ]; then
64 cd "${REQUESTED_OUTDIR}"
68 # __SETUP_ROUTINES_END__
71 # __COMMAND_ROUTINES_BEGIN__
73 # note: the daemons dump to syslog so you need to wait a bit before
75 collect_state_dump_sensitive
() {
77 ${PRIV} /usr
/bin
/killall
-INFO mDNSResponder
2>/dev
/null
84 # network interface configuration
88 if [ ! -x /sbin
/ifconfig
]; then
92 /sbin
/ifconfig
-a -L -b -m -r -v -v > ifconfig.txt
2>&1
94 /sbin
/ifconfig
-a > ifconfig.txt
2>&1
100 # network route configuration and statistics
104 if [ ! -x /usr
/sbin
/netstat
]; then
108 echo "#" > netstat.txt
109 echo "# netstat -n -r -a -l" >> netstat.txt
110 echo "#" >> netstat.txt
111 /usr
/sbin
/netstat
-n -r -a -l >> netstat.txt
2>&1
113 echo "#" >> netstat.txt
114 echo "# netstat -A -a -l -n -v" >> netstat.txt
115 echo "#" >> netstat.txt
116 /usr
/sbin
/netstat
-A -a -l -n -v >> netstat.txt
2>&1
118 echo "#" >> netstat.txt
119 echo "# netstat -s" >> netstat.txt
120 echo "#" >> netstat.txt
121 /usr
/sbin
/netstat
-s >> netstat.txt
2>&1
123 echo "#" >> netstat.txt
124 echo "# netstat -rs" >> netstat.txt
125 echo "#" >> netstat.txt
126 /usr
/sbin
/netstat
-rs >> netstat.txt
2>&1
128 echo "#" >> netstat.txt
129 echo "# netstat -mmm" >> netstat.txt
130 echo "#" >> netstat.txt
131 /usr
/sbin
/netstat
-mmm >> netstat.txt
2>&1
133 echo "#" >> netstat.txt
134 echo "# netstat -i -n -d" >> netstat.txt
135 echo "#" >> netstat.txt
136 /usr
/sbin
/netstat
-i -n -d >> netstat.txt
2>&1
138 echo "#" >> netstat.txt
139 echo "# netstat -i -x R" >> netstat.txt
140 echo "#" >> netstat.txt
141 /usr
/sbin
/netstat
-i -x R
>> netstat.txt
2>&1
143 echo "#" >> netstat.txt
144 echo "# netstat -a -n -p mptcp" >> netstat.txt
145 echo "#" >> netstat.txt
146 /usr
/sbin
/netstat
-anp mptcp
>> netstat.txt
2>&1
148 echo "#" >> netstat.txt
149 echo "# netstat -s -p mptcp" >> netstat.txt
150 echo "#" >> netstat.txt
151 /usr
/sbin
/netstat
-s -p mptcp
>> netstat.txt
2>&1
153 echo "#" >> netstat.txt
154 echo "# netstat -g -n -s" >> netstat.txt
155 echo "#" >> netstat.txt
156 /usr
/sbin
/netstat
-g -n -s >> netstat.txt
2>&1
158 if [ -x /sbin
/ifconfig
]; then
161 IF_INFO
=`/sbin/ifconfig -v ${if}`
162 `echo $IF_INFO | grep -q TXSTART`
163 if [ $?
-eq 0 ]; then
164 echo "#" >> netstat.txt
165 echo "# netstat -qq -I ${if}" >> netstat.txt
166 echo "#" >> netstat.txt
167 /usr
/sbin
/netstat
-qq -I ${if} >> netstat.txt
2>&1
169 `echo $IF_INFO | grep -q RXPOLL`
170 if [ $?
-eq 0 ]; then
171 echo "#" >> netstat.txt
172 echo "# netstat -Q -I ${if}" >> netstat.txt
173 echo "#" >> netstat.txt
174 /usr
/sbin
/netstat
-Q -I ${if} >> netstat.txt
2>&1
186 if [ ! -x /usr
/sbin
/ndp
]; then
190 echo "#" > ndp
-info.txt
191 echo "# ndp -n -a" >> ndp
-info.txt
192 echo "#" >> ndp
-info.txt
193 /usr
/sbin
/ndp
-n -a >> ndp
-info.txt
2>&1
195 echo "#" >> ndp
-info.txt
196 echo "# ndp -n -p" >> ndp
-info.txt
197 echo "#" >> ndp
-info.txt
198 /usr
/sbin
/ndp
-n -p >> ndp
-info.txt
2>&1
200 echo "#" >> ndp
-info.txt
201 echo "# ndp -n -r" >> ndp
-info.txt
202 echo "#" >> ndp
-info.txt
203 /usr
/sbin
/ndp
-n -r >> ndp
-info.txt
2>&1
205 if [ -x /sbin
/ifconfig
]; then
208 echo "#" >> ndp
-info.txt
209 echo "# ndp -i ${if}" >> ndp
-info.txt
210 echo "#" >> ndp
-info.txt
211 /usr
/sbin
/ndp
-i ${if} >> ndp
-info.txt
2>&1
222 if [ ! -x /usr
/sbin
/arp
]; then
226 echo "#" > arp
-info.txt
227 echo "# arp -n -a" >> arp
-info.txt
228 echo "#" >> arp
-info.txt
229 /usr
/sbin
/arp
-n -a >> arp
-info.txt
2>&1
238 if [ ! -x /usr
/sbin
/ipconfig
]; then
248 echo "#" >> ipconfig
-info.txt
249 echo "# INTERFACE ${if}" >> ipconfig
-info.txt
250 echo "#" >> ipconfig
-info.txt
252 echo "DHCPv4 information:" >> ipconfig
-info.txt
254 IPCONFIG_INFO
=`/usr/sbin/ipconfig getpacket ${if}`
255 if [ "${IPCONFIG_INFO}" != "" ]; then
256 echo "${IPCONFIG_INFO}" >> ipconfig
-info.txt
258 echo "not available" >> ipconfig
-info.txt
261 echo"" >> ipconfig
-info.txt
263 echo "DHCPv6 information:" >> ipconfig
-info.txt
265 IPCONFIG_INFO
=`/usr/sbin/ipconfig getv6packet ${if}`
266 if [ "${IPCONFIG_INFO}" != "" ]; then
267 echo "${IPCONFIG_INFO}" >> ipconfig
-info.txt
269 echo "not available" >> ipconfig
-info.txt
272 echo"" >> ipconfig
-info.txt
280 # IPsec configuration
284 if [ ! -x /usr
/sbin
/setkey
-o ! -x /usr
/bin
/perl
]; then
289 echo "# setkey -D" >> ipsec.txt
290 echo "#" >> ipsec.txt
291 ${PRIV} /usr
/sbin
/setkey
-D \
292 | /usr
/bin
/perl
-l -n -e '
293 if (/^(\s+[AE]:\s+\S+\s+)"?(.*)"?\s*$/) {
294 printf "%s[redacted]%s\n", $1, $3;
301 echo "#" >> ipsec.txt
302 echo "# setkey -Pp -D" >> ipsec.txt
303 echo "#" >> ipsec.txt
304 ${PRIV} /usr
/sbin
/setkey
-Pp -D >> ipsec.txt
306 for CF
in /var
/run
/racoon
/*.conf
308 if [ ! -r "${CF}" ]; then
313 echo "#" >> ipsec.txt
314 echo "# ${CF}" >> ipsec.txt
315 echo "#" >> ipsec.txt
317 | /usr
/bin
/perl
-l -n -e '
318 if (/^(\s+shared_secret\s+use\s+)"?([^\s;"]+)"?(.*)/) {
319 printf "%s[redacted]%s\n", $1, $3;
329 # skywalk configuration and statistics
333 if [ ! -x /usr
/sbin
/skywalkctl
]; then
337 echo "#" > skywalk.txt
338 echo "# skywalkctl list-providers -D" >> skywalk.txt
339 echo "#" >> skywalk.txt
340 /usr
/sbin
/skywalkctl list
-providers -D >> skywalk.txt
2>&1
342 echo "#" >> skywalk.txt
343 echo "# skywalkctl channel-stats" >> skywalk.txt
344 echo "#" >> skywalk.txt
345 /usr
/sbin
/skywalkctl channel
-stats >> skywalk.txt
2>&1
347 echo "#" >> skywalk.txt
348 echo "# skywalkctl netstat -a -n" >> skywalk.txt
349 echo "#" >> skywalk.txt
350 /usr
/sbin
/skywalkctl netstat
-a -n >> skywalk.txt
2>&1
352 echo "#" >> skywalk.txt
353 echo "# skywalkctl netstat -s" >> skywalk.txt
354 echo "#" >> skywalk.txt
355 /usr
/sbin
/skywalkctl netstat
-s >> skywalk.txt
2>&1
357 echo "#" >> skywalk.txt
358 echo "# skywalkctl netstat -s --global" >> skywalk.txt
359 echo "#" >> skywalk.txt
360 /usr
/sbin
/skywalkctl netstat
-s --global >> skywalk.txt
2>&1
362 echo "#" >> skywalk.txt
363 echo "# skywalkctl netstat --netif" >> skywalk.txt
364 echo "#" >> skywalk.txt
365 /usr
/sbin
/skywalkctl netstat
--netif >> skywalk.txt
2>&1
367 echo "#" >> skywalk.txt
368 echo "# skywalkctl netstat --flowswitch" >> skywalk.txt
369 echo "#" >> skywalk.txt
370 /usr
/sbin
/skywalkctl netstat
--flowswitch >> skywalk.txt
2>&1
372 echo "#" >> skywalk.txt
373 echo "# skywalkctl netstat --flow-adv" >> skywalk.txt
374 echo "#" >> skywalk.txt
375 /usr
/sbin
/skywalkctl netstat
--flow-adv >> skywalk.txt
2>&1
377 echo "#" >> skywalk.txt
378 echo "# skywalkctl netstat --flow-owner" >> skywalk.txt
379 echo "#" >> skywalk.txt
380 /usr
/sbin
/skywalkctl netstat
--flow-owner >> skywalk.txt
2>&1
382 echo "#" >> skywalk.txt
383 echo "# skywalkctl netns -a" >> skywalk.txt
384 echo "#" >> skywalk.txt
385 /usr
/sbin
/skywalkctl netns
-a >> skywalk.txt
2>&1
387 echo "#" >> skywalk.txt
388 echo "# skywalkctl memory" >> skywalk.txt
389 echo "#" >> skywalk.txt
390 /usr
/sbin
/skywalkctl memory
>> skywalk.txt
2>&1
395 # skywalk configuration and statistics
399 if [ ! -x /usr
/bin
/nettop
]; then
403 echo "#" > nettop.txt
404 echo "# nettop -U -l 1" >> nettop.txt
405 echo "#" >> nettop.txt
406 /usr
/bin
/nettop
-U -l 1 >> nettop.txt
2>&1
411 # Network preferences
413 collect_configuration_files
() {
416 /Library
/Preferences
/com.apple.networkextension.plist \
417 /Library
/Preferences
/com.apple.networkextension.control.plist \
418 /Library
/Preferences
/com.apple.networkextension.necp.plist \
419 /Library
/Preferences
/com.apple.networkextension.cache.plist \
420 /Library
/Preferences
/SystemConfiguration
/com.apple.nat.plist \
421 /Library
/Preferences
/SystemConfiguration
/com.apple.RemoteAccessServers.plist \
422 /Library
/Preferences
/SystemConfiguration
/com.apple.smb.server.plist \
423 /Library
/Preferences
/com.apple.mDNSResponder.plist \
424 /Library
/Preferences
/SystemConfiguration
/NetworkInterfaces.plist \
425 /Library
/Preferences
/SystemConfiguration
/preferences.plist \
428 if [ -e "${f}" ]; then
430 cat "${f}" > "${b}" 2>&1
434 if [ -e /etc
/resolv.conf
]; then
435 cat /etc
/resolv.conf
> etc
-resolv-conf.txt
2>&1
437 if [ -e /var
/run
/resolv.conf
]; then
438 cat /var
/run
/resolv.conf
> var
-run-resolv-conf.txt
2>&1
440 if [ -e /etc
/resolver
]; then
441 tar -c -H /etc
/resolver
> etc
-resolver.
tar 2>/dev
/null
448 collect_vpn_logs
() {
452 /var
/log
/racoon.log \
455 if [ -e "${f}" ]; then
457 ${PRIV} cat "${f}" > "${b}".txt
2>&1
467 if [ ! -x /usr
/local
/bin
/neutil
]; then
473 echo "# neutil policy dump" >> necp.txt
475 /usr
/local
/bin
/neutil policy dump
>> necp.txt
2>&1
477 echo "#" > network
-agents.txt
478 echo "# neutil agent dump" >> network
-agents.txt
479 echo "#" >> network
-agents.txt
480 /usr
/local
/bin
/neutil agent dump
>> network
-agents.txt
2>&1
487 run_network_test
() {
489 if [ ! -x /usr
/local
/bin
/network_test
]; then
493 /usr
/local
/bin
/network_test path_watcher
> nw_path.txt
2>&1
498 # Network, DNS, Proxy, Reachability, Cache information
502 if [ ! -x /usr
/sbin
/scutil
]; then
506 echo "#" > network
-information.txt
507 echo "# scutil -d -v --nwi" >> network
-information.txt
508 echo "#" >> network
-information.txt
509 /usr
/sbin
/scutil
-d -v --nwi >> network
-information.txt
2>&1
512 echo "" >> network
-information.txt
513 echo "#" >> network
-information.txt
514 echo "# scutil --nwi ${if}" >> network
-information.txt
515 echo "#" >> network
-information.txt
516 scutil
--nwi ${if} >> network
-information.txt
2>&1
519 echo "#" > dns
-configuration.txt
520 echo "# scutil -d -v --dns" >> dns
-configuration.txt
521 echo "#" >> dns
-configuration.txt
522 /usr
/sbin
/scutil
-d -v --dns >> dns
-configuration.txt
2>&1
524 echo "#" > proxy
-configuration.txt
525 echo "# scutil -d -v --proxy" >> proxy
-configuration.txt
526 echo "#" >> proxy
-configuration.txt
527 /usr
/sbin
/scutil
-d -v --proxy >> proxy
-configuration.txt
2>&1
529 echo "#" > reachability
-info.txt
530 echo '# scutil -d -v -r www.apple.com' >> reachability
-info.txt
531 echo "#" >> reachability
-info.txt
532 /usr
/sbin
/scutil
-d -v -r www.apple.com
>> reachability
-info.txt
2>&1
534 echo "#" >> reachability
-info.txt
535 echo '# scutil -d -v -r 0.0.0.0' >> reachability
-info.txt
536 echo "#" >> reachability
-info.txt
537 /usr
/sbin
/scutil
-d -v -r 0.0.0.0 >> reachability
-info.txt
2>&1
539 echo "#" >> reachability
-info.txt
540 echo '# scutil -d -v -r 169.254.0.0' >> reachability
-info.txt
541 echo "#" >> reachability
-info.txt
542 /usr
/sbin
/scutil
-d -v -r 169.254.0.0 >> reachability
-info.txt
2>&1
544 echo "#" > nc
-info.txt
545 echo '# scutil --nc list' >> nc
-info.txt
546 echo "#" >> nc
-info.txt
547 /usr
/sbin
/scutil
--nc list
>> nc
-info.txt
2>&1
549 /usr
/sbin
/scutil
-p --snapshot SCDynamicStore.plist
2>&1
558 if [ ! -x /sbin
/route
]; then
562 echo "#" > route
-info.txt
563 echo '# route -n -v get www.apple.com' >> route
-info.txt
564 echo "#" >> route
-info.txt
565 /sbin
/route
-n -v get www.apple.com
>> route
-info.txt
2>&1
567 echo "#" >> route
-info.txt
568 echo '# route -n -v get 0.0.0.0' >> route
-info.txt
569 echo "#" >> route
-info.txt
570 /sbin
/route
-n -v get
0.0.0.0 >> route
-info.txt
2>&1
579 if [ ! -x /usr
/bin
/dig -o ! -f /etc
/resolv.conf
]; then
583 echo "#" > dig-info.txt
584 echo '# dig -t any -c any www.apple.com' >> dig-info.txt
585 echo "#" >> dig-info.txt
586 /usr
/bin
/dig +time=2 -t any
-c any www.apple.com
>> dig-info.txt
2>/dev
/null
595 if [ ! -x /bin
/hostname
]; then
599 /bin
/hostname
> hostname.txt
2>&1
608 if [ ! -x /usr
/sbin
/lsof
]; then
612 ${PRIV} /usr
/sbin
/lsof
-i -n -O -P -T q
> lsof.txt
2>&1 &
614 # start a watchdog for lsof
617 while [ $WAIT_TIME -gt 0 ]
619 ${PRIV} kill -0 ${LSOF_PID} 2>/dev
/null
620 if [ $?
-eq 0 ]; then
621 # lsof is [still] gathering data...
623 WAIT_TIME
=$((WAIT_TIME - 1))
627 # lsof completed gathering data
631 if [ $WAIT_TIME -eq 0 ]; then
633 ${PRIV} kill ${LSOF_PID} 2>/dev
/null
641 # collect a packet capture if netdiagnose is available
643 if [ -x /usr
/local
/bin
/netdiagnose
]; then
644 trap stop_pcap SIGINT
645 /usr
/local
/bin
/netdiagnose
-p "${REQUESTED_OUTDIR}" start sysdiagpcap
2>&1 1>/dev
/null
651 if [ ${PCAP_STARTED} -ne 0 ]; then
653 /usr
/local
/bin
/netdiagnose stop sysdiagpcap
2>&1 1>/dev
/null
657 collect_ndf_info
() {
661 collect_sensitive_info
() {
663 if [ "${COLLECT_PCAP}" == "Y" ]; then
667 collect_state_dump_sensitive
677 if [ "${COLLECT_NDF_INFO}" == "Y" ]; then
681 if [ "${COLLECT_SENSITIVE_INFO}" == "Y" ]; then
682 collect_sensitive_info
696 if [ "${COLLECT_CONFIGURATION_FILES}" == "Y" ]; then
697 collect_configuration_files
703 # __COMMAND_ROUTINES_END__
705 # __HELPER_ROUTINES_BEGIN__
709 echo "Usage: get-network-info [-c] [-n] [-s] <info-directory>"
710 echo " -c collects system configuration files"
711 echo " -n collects NDF information (lsof)"
712 echo " -P do not collect a packet capture"
713 echo " -s collects sensitive information (ARP/NDP/mDNS cache)"
714 echo " <info-directory> path to directory where all the information will be collected"
720 if [ "${REQUESTED_OUTDIR}" = "" ]; then
725 if [ ! -d ${REQUESTED_OUTDIR} ]; then
726 echo "${REQUESTED_OUTDIR} does not exist"
730 if [ ! -w ${REQUESTED_OUTDIR} ]; then
731 echo "${REQUESTED_OUTDIR} is write-protected"
737 # Collect most used command output to be used later
741 if [ ! -x /sbin
/ifconfig
]; then
745 IF_LIST
=`/sbin/ifconfig -l`
751 COLLECT_SENSITIVE_INFO
=""
752 COLLECT_CONFIGURATION_FILES
=""
758 # __HELPER_ROUTINES_END__
763 ARGS
=`getopt cnPs $*`