1#!/bin/sh 2 3# Package which should be installed onto all EC2 AMIs: 4# * ebsnvme-id, which is very minimal and provides important EBS-specific 5# functionality, 6export VM_EXTRA_PACKAGES="${VM_EXTRA_PACKAGES} ebsnvme-id" 7 8# Services which should be enabled by default in rc.conf(5). 9export VM_RC_LIST="dev_aws_disk ntpd" 10 11# Build with a 7.9 GB partition; the growfs rc.d script will expand 12# the partition to fill the root disk after the EC2 instance is launched. 13# Note that if this is set to <N>G, we will end up with an <N+1> GB disk 14# image since VMSIZE is the size of the filesystem partition, not the disk 15# which it resides within. 16export VMSIZE=8000m 17 18# No swap space; it doesn't make sense to provision any as part of the disk 19# image when we could be launching onto a system with anywhere between 0.5 20# and 4096 GB of RAM. 21export NOSWAP=YES 22 23ec2_common() { 24 # Delete the pkg package and the repo database; they will likely be 25 # long out of date before the EC2 instance is launched. 26 mount -t devfs devfs ${DESTDIR}/dev 27 chroot ${DESTDIR} ${EMULATOR} env ASSUME_ALWAYS_YES=yes \ 28 /usr/sbin/pkg delete -f -y pkg 29 umount ${DESTDIR}/dev 30 rm ${DESTDIR}/var/db/pkg/repo-*.sqlite 31 32 # Turn off IPv6 Duplicate Address Detection; the EC2 networking 33 # configuration makes it unnecessary. 34 echo 'net.inet6.ip6.dad_count=0' >> ${DESTDIR}/etc/sysctl.conf 35 36 # Booting quickly is more important than giving users a chance to 37 # access the boot loader via the serial port. 38 echo 'autoboot_delay="-1"' >> ${DESTDIR}/boot/loader.conf 39 echo 'beastie_disable="YES"' >> ${DESTDIR}/boot/loader.conf 40 41 # Tell gptboot not to wait 3 seconds for a keypress which will 42 # never arrive. 43 printf -- "-n\n" > ${DESTDIR}/boot.config 44 45 # The emulated keyboard attached to EC2 instances is inaccessible to 46 # users, and there is no mouse attached at all; disable to keyboard 47 # and the keyboard controller (to which the mouse would attach, if 48 # one existed) in order to save time in device probing. 49 echo 'hint.atkbd.0.disabled=1' >> ${DESTDIR}/boot/loader.conf 50 echo 'hint.atkbdc.0.disabled=1' >> ${DESTDIR}/boot/loader.conf 51 52 # EC2 has two consoles: An emulated serial port ("system log"), 53 # which has been present since 2006; and a VGA console ("instance 54 # screenshot") which was introduced in 2016. 55 echo 'boot_multicons="YES"' >> ${DESTDIR}/boot/loader.conf 56 57 # Some older EC2 hardware used a version of Xen with a bug in its 58 # emulated serial port. It is not clear if EC2 still has any such 59 # nodes, but apply the workaround just in case. 60 echo 'hw.broken_txfifo="1"' >> ${DESTDIR}/boot/loader.conf 61 62 # Load the kernel module for the Amazon "Elastic Network Adapter" 63 echo 'if_ena_load="YES"' >> ${DESTDIR}/boot/loader.conf 64 65 # Use the "nda" driver for accessing NVMe disks rather than the 66 # historical "nvd" driver. 67 echo 'hw.nvme.use_nvd="0"' >> ${DESTDIR}/boot/loader.conf 68 69 # Disable KbdInteractiveAuthentication according to EC2 requirements. 70 sed -i '' -e \ 71 's/^#KbdInteractiveAuthentication yes/KbdInteractiveAuthentication no/' \ 72 ${DESTDIR}/etc/ssh/sshd_config 73 74 # RSA host keys are obsolete and also very slow to generate 75 echo 'sshd_rsa_enable="NO"' >> ${DESTDIR}/etc/rc.conf 76 77 # Use FreeBSD Update mirrors hosted in AWS 78 sed -i '' -e 's/update.FreeBSD.org/aws.update.FreeBSD.org/' \ 79 ${DESTDIR}/etc/freebsd-update.conf 80 81 # Use the NTP service provided by Amazon 82 sed -i '' -e 's/^pool/#pool/' \ 83 -e '1,/^#server/s/^#server.*/server 169.254.169.123 iburst/' \ 84 ${DESTDIR}/etc/ntp.conf 85 86 # Provide a map for accessing Elastic File System mounts 87 cat > ${DESTDIR}/etc/autofs/special_efs <<'EOF' 88#!/bin/sh 89 90if [ $# -eq 0 ]; then 91 # No way to know which EFS filesystems exist and are 92 # accessible to this EC2 instance. 93 exit 0 94fi 95 96# Provide instructions on how to mount the requested filesystem. 97FS=$1 98REGION=`fetch -qo- http://169.254.169.254/latest/meta-data/placement/availability-zone | sed -e 's/[a-z]$//'` 99echo "-nfsv4,minorversion=1,oneopenown ${FS}.efs.${REGION}.amazonaws.com:/" 100EOF 101 chmod 755 ${DESTDIR}/etc/autofs/special_efs 102 103 # The first time the AMI boots, run "first boot" scripts. 104 touch ${DESTDIR}/firstboot 105 106 return 0 107} 108 109ec2_base_networking () { 110 # EC2 instances use DHCP to get their network configuration. IPv6 111 # requires accept_rtadv. 112 echo 'ifconfig_DEFAULT="SYNCDHCP accept_rtadv"' >> ${DESTDIR}/etc/rc.conf 113 114 # The EC2 DHCP server can be trusted to know whether an IP address is 115 # assigned to us; we don't need to ARP to check if anyone else is using 116 # the address before we start using it. 117 echo 'dhclient_arpwait="NO"' >> ${DESTDIR}/etc/rc.conf 118 119 # Enable IPv6 on all interfaces, and spawn DHCPv6 via rtsold 120 echo 'ipv6_activate_all_interfaces="YES"' >> ${DESTDIR}/etc/rc.conf 121 echo 'rtsold_enable="YES"' >> ${DESTDIR}/etc/rc.conf 122 echo 'rtsold_flags="-M /usr/local/libexec/rtsold-M -a"' >> ${DESTDIR}/etc/rc.conf 123 124 # Provide a script which rtsold can use to launch DHCPv6 125 mkdir -p ${DESTDIR}/usr/local/libexec 126 cat > ${DESTDIR}/usr/local/libexec/rtsold-M <<'EOF' 127#!/bin/sh 128 129/usr/local/sbin/dhclient -6 -nw -N -cf /dev/null $1 130EOF 131 chmod 755 ${DESTDIR}/usr/local/libexec/rtsold-M 132 133 return 0 134} 135