devices revision 244674
1234353Sdim#!/bin/sh
2224133Sdim#-
3224133Sdim# Copyright (c) 2006-2012 Devin Teske
4224133Sdim# All Rights Reserved.
5224133Sdim#
6224133Sdim# Redistribution and use in source and binary forms, with or without
7224133Sdim# modification, are permitted provided that the following conditions
8224133Sdim# are met:
9224133Sdim# 1. Redistributions of source code must retain the above copyright
10224133Sdim#    notice, this list of conditions and the following disclaimer.
11224133Sdim# 2. Redistributions in binary form must reproduce the above copyright
12224133Sdim#    notice, this list of conditions and the following disclaimer in the
13224133Sdim#    documentation and/or other materials provided with the distribution.
14224133Sdim#
15224133Sdim# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16224133Sdim# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING BUT NOT LIMITED TO, THE
17224133Sdim# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18224133Sdim# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19224133Sdim# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20234353Sdim# DAMAGES (INLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21224133Sdim# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22224133Sdim# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23234353Sdim# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24234353Sdim# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25234353Sdim# SUCH DAMAGE.
26224133Sdim#
27224133Sdim# $FreeBSD: head/usr.sbin/bsdconfig/networking/devices 244674 2012-12-25 09:30:25Z dteske $
28224133Sdim#
29224133Sdim############################################################ INCLUDES
30224133Sdim
31224133SdimBSDCFG_SHARE="/usr/share/bsdconfig"
32. $BSDCFG_SHARE/common.subr || exit 1
33f_include $BSDCFG_SHARE/dialog.subr
34f_include $BSDCFG_SHARE/mustberoot.subr
35f_include $BSDCFG_SHARE/sysrc.subr
36f_include $BSDCFG_SHARE/networking/device.subr
37f_include $BSDCFG_SHARE/networking/ipaddr.subr
38f_include $BSDCFG_SHARE/networking/media.subr
39f_include $BSDCFG_SHARE/networking/netmask.subr
40
41BSDCFG_LIBE="/usr/libexec/bsdconfig" APP_DIR="120.networking"
42f_include_lang $BSDCFG_LIBE/$APP_DIR/include/messages.subr
43
44ipgm=$( f_index_menusel_keyword $BSDCFG_LIBE/$APP_DIR/INDEX "$pgm" )
45[ $? -eq $SUCCESS -a "$ipgm" ] && pgm="$ipgm"
46
47############################################################ MAIN
48
49# Incorporate rc-file if it exists
50[ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc"
51
52#
53# Process command-line options
54#
55while getopts hSX flag; do
56	case "$flag" in
57	h|\?) f_usage $BSDCFG_LIBE/$APP_DIR/USAGE "PROGRAM_NAME" "$pgm";;
58	esac
59done
60shift $(( $OPTIND - 1 ))
61
62#
63# Initialize
64#
65f_dialog_title "$msg_networking_devices"
66f_dialog_backtitle "${ipgm:+bsdconfig }$pgm"
67f_mustberoot_init
68
69#
70# Launch application main menu
71#
72while :; do
73	f_dialog_menu_netdev
74	retval=$?
75	interface=$( f_dialog_menutag )
76
77	[ $retval -eq 0 ] || break
78
79	#
80	# dialog_menu_netdev adds an asterisk (*) to the right of the
81	# device name if the interface is active. Remove the asterisk
82	# from the device name if present.
83	#
84	case "$interface" in
85	*\*) interface="${interface%?}";;
86	esac
87
88	#
89	# Obtain initial interface settings to be configured. These will be
90	# passed to the f_dialog_menu_netdev_edit function-call below which
91	# will block until the user has either cancelled or finished editing
92	# the values.
93	#
94	# First, attempt to read stored configuration from rc.conf(5) and
95	# fallback to reading the active configuration if not configured in
96	# the rc.conf(5) file(s).
97	#
98	_ipaddr=
99	_netmask=
100	_ifconfig=$( f_sysrc_get ifconfig_$interface )
101	if [ "$_ifconfig" ]; then
102		# If DHCP get IP address/netmask later from ifconfig(8)
103		glob="[Dd][Hh][Cc][Pp]"
104		case "$_ifconfig" in
105		$glob) dhcp=1;;
106		[Ss][Yy][Nn][Cc]$glob) dhcp=1;;
107		[Nn][Oo][Ss][Yy][Nn][Cc]$glob) dhcp=1;;
108		*)
109			#
110			# Get IP address/netmask from rc.conf(5)
111			# configuration
112			#
113			dhcp=
114			eval "$( exec 2> /dev/null
115			         set -- $_ifconfig
116			         while [ $# -gt 0 ]; do
117			         	case "$1" in
118			         	inet)
119			         		shift 1
120			         		echo "_ipaddr='$1'"
121			         		;;
122			         	netmask)
123			         		shift 1
124			         		echo "_netmask='$1'"
125			         		;;
126			         	esac
127			         	shift 1
128			         done
129			       )"
130			;;
131		esac
132	fi
133
134	#
135	# Fill in IP address/netmask from active settings if no
136	# configuration could be extrapolated from rc.conf(5)
137	#
138	[ "$_ipaddr"  ] || _ipaddr=$( f_ifconfig_inet $interface )
139	[ "$_netmask" ] || _netmask=$( f_ifconfig_netmask $interface )
140
141	# Get the extra options (this always comes from rc.conf(5))
142	_options=$( f_ifconfig_options $interface )
143
144	# Block on user-configuration of the probed settings
145	f_dialog_menu_netdev_edit \
146		$interface $_ipaddr $_netmask "$_options" $dhcp
147
148	# Return to root menu if above returns success
149	[ $? -eq $SUCCESS ] && break
150
151done
152
153exit $SUCCESS
154
155################################################################################
156# END
157################################################################################
158