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
|
#!/bin/bash
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
# Copyright 2019 Joyent, Inc.
#
#
# Despite its "smartdc/config" name, this service is used both for SmartOS and
# Triton. It has two jobs:
#
# During an initial setup, this runs through the initial (possibly interactive)
# configuration.
#
# During normal operation, it does some miscellaneous configuration based on
# /usbkey/config (which, under Triton, will have already been updated from the
# USB key by svc:/system/filesystem/smartdc:default).
#
set -o errexit
set -o xtrace
. /lib/svc/share/smf_include.sh
. /lib/sdc/config.sh
export PATH="/usr/sbin:/sbin:/usr/bin"
set_root_password() {
enc_password=$1
sed -e "s|^root:[^\:]*:|root:${enc_password}:|" /etc/shadow > /etc/shadow.new \
&& chmod 400 /etc/shadow.new \
&& mv /etc/shadow.new /etc/shadow
}
case "$1" in
'start')
# If we're a headnode, see if we have to do interactive configuration.
if /bin/bootparams | grep "^headnode=true" > /dev/null 2>&1; then
USB_PATH=/mnt/`svcprop -p "joyentfs/usb_mountpoint" svc:/system/filesystem/smartdc:default`
# Check for config and run interactive if it doesn't exist.
if [[ ! -f ${USB_PATH}/config ]]; then
if /bin/bootparams | grep "^noimport=true" >/dev/null 2>&1; then
# Skipping interactive config, bypass rest of script.
exit $SMF_EXIT_OK
fi
/smartdc/lib/sdc-on-tty -d /dev/console \
${USB_PATH}/scripts/prompt-config.sh "${USB_PATH}"
# If user quit from interactive configuration then we're done.
[[ ! -f ${USB_PATH}/config ]] && exit $SMF_EXIT_OK
fi
elif /bin/bootparams | grep "^smartos=true" > /dev/null 2>&1; then
USB_PATH=/`svcprop -p "joyentfs/usb_copy_path" svc:/system/filesystem/smartdc:default`
# Check for config and run interactive if it doesn't exist.
if [[ ! -f ${USB_PATH}/config ]]; then
if /bin/bootparams | grep "^noimport=true" >/dev/null 2>&1; then
# Skipping interactive config, bypass rest of script.
exit $SMF_EXIT_OK
fi
/smartdc/lib/sdc-on-tty -d /dev/console \
/smartdc/lib/smartos_prompt_config.sh "${USB_PATH}"
# If user quit from interactive configuration then we're done.
[[ ! -f ${USB_PATH}/config ]] && exit $SMF_EXIT_OK
fi
fi
# This puts config vars in CONFIG_
load_sdc_config
load_sdc_sysinfo
# Write the info about this datacenter to /.dcinfo so we can use in the GZ
echo "SDC_DATACENTER_NAME='${CONFIG_datacenter_name}'" > /.dcinfo
if [[ -n "${SYSINFO_Bootparam_smartos}" && -f /usbkey/shadow ]]; then
echo "setting root password from /usbkey/shadow"
# Boot parameter takes precidence over config
elif [[ -n "${SYSINFO_Bootparam_root_shadow}" ]]; then
set_root_password "${SYSINFO_Bootparam_root_shadow}"
echo "Set root password boot parameters."
elif [[ -n "${CONFIG_root_shadow}" ]]; then
set_root_password "${CONFIG_root_shadow}"
echo "Set root password from config."
else
echo "No root shadow entry in the config, cannot set."
fi
# Set authorized_keys for root
if [[ -n "${CONFIG_root_authorized_keys_file}" ]] \
&& [[ -n "${CONFIG_config_inc_dir}" ]] \
&& [[ -d "${CONFIG_config_inc_dir}" ]] \
&& [[ -f "${CONFIG_config_inc_dir}/${CONFIG_root_authorized_keys_file}" ]]; then
mkdir -p /root/.ssh
cp "${CONFIG_config_inc_dir}/${CONFIG_root_authorized_keys_file}" /root/.ssh/authorized_keys
chmod 0600 /root/.ssh/authorized_keys
chmod 0700 /root/.ssh
fi
if [[ -n "${CONFIG_ntp_conf_file}" ]] \
&& [[ -n "${CONFIG_config_inc_dir}" ]] \
&& [[ -d "${CONFIG_config_inc_dir}" ]] \
&& [[ -f "${CONFIG_config_inc_dir}/${CONFIG_ntp_conf_file}" ]]; then
#
# We were given a valid NTP configuration file, so use it without
# modification:
#
cp "${CONFIG_config_inc_dir}/${CONFIG_ntp_conf_file}" \
/etc/inet/ntp.conf
echo "Copied NTP configuration."
else
#
# If we have an admin network defined, allow time service from this
# network:
#
ntp_aflag=
if [[ -n ${CONFIG_admin_network} && -n ${CONFIG_admin_netmask} ]]; then
if [[ "${CONFIG_admin_network}" != "..." ]]; then
ntp_aflag="-a ${CONFIG_admin_network}/${CONFIG_admin_netmask}"
fi
fi
#
# If we were given a list of servers, use it:
#
ntp_hosts="${CONFIG_ntp_hosts}"
if [[ -z "${ntp_hosts}" ]]; then
#
# Otherwise, use the default SmartOS vendor pool from the NTP
# Pool Project:
#
ntp_hosts='0.smartos.pool.ntp.org'
fi
#
# Generate NTP configuration:
#
if ! /smartdc/lib/ntp_config -f /etc/inet/ntp.conf \
-s "${ntp_hosts}" ${ntp_aflag}; then
echo "FATAL: could not configure NTP" >&2
exit ${SMF_EXIT_ERR_CONFIG}
fi
echo "Generated NTP configuration."
fi
# set the keymap. For dvorak for instance
if [[ -n ${CONFIG_default_keymap} ]]; then
/usr/bin/loadkeys ${CONFIG_default_keymap}
fi
#
# In SmartOS, disabling SMT via the boot option is a pain, so we support a
# config option in /usbkey/config, the official mechanism for permanent
# configuration. We'd like to do this earlier but we have to wait for
# /usbkey to be mounted first. This does imply we've potentially handed out
# "too many" interrupts for the set of CPUs remaining online.
#
if [[ -n $(/bin/bootparams | grep '^smartos=true') ]]; then
if [[ "$CONFIG_smt_enabled" = "false" ]]; then
psradm -aS || exit $SMF_EXIT_ERR_FATAL
fi
fi
# Enable virtual terminals to support interactive installation
vtdaemon="svc:/system/vtdaemon"
svccfg -s ${vtdaemon} setprop options/hotkeys=true
svcadm refresh ${vtdaemon}
svcadm enable ${vtdaemon}
svcadm enable svc:/system/console-login:vt2
svcadm enable svc:/system/console-login:vt3
svcadm enable svc:/system/console-login:vt4
svcadm enable svc:/system/console-login:vt5
svcadm enable svc:/system/console-login:vt6
# force update of sysinfo (and dump to stdout so we have in the log)
sysinfo -f
;;
'stop')
;;
*)
echo "Usage: $0 { start | stop }"
exit $SMF_EXIT_ERR_FATAL
;;
esac
exit $SMF_EXIT_OK
|