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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
|
package sources
import (
"errors"
"fmt"
"net/http"
"os"
"path/filepath"
"regexp"
"sort"
"strings"
"github.com/antchfx/htmlquery"
incus "github.com/lxc/incus/v6/shared/util"
"golang.org/x/sys/unix"
"github.com/lxc/distrobuilder/shared"
)
type oraclelinux struct {
commonRHEL
majorVersion string
architecture string
}
// Run downloads Oracle Linux.
func (s *oraclelinux) Run() error {
s.majorVersion = s.definition.Image.Release
s.architecture = s.definition.Image.ArchitectureMapped
baseURL := fmt.Sprintf("%s/OL%s", s.definition.Source.URL, s.definition.Image.Release)
updates, err := s.getUpdates(baseURL)
if err != nil {
s.logger.WithField("err", err).Warn("Failed to get updates")
}
var latestUpdate string
var fname string
if len(updates) == 0 {
s.logger.Info("Trying to find updates through iteration")
fname = fmt.Sprintf("%s-boot.iso", s.architecture)
// Try finding updates through iteration.
for i := 10; i >= 0; i-- {
latestUpdate = fmt.Sprintf("u%d", i)
if s.definition.Image.Release == "9" {
switch s.architecture {
case "x86_64":
fname = fmt.Sprintf("OracleLinux-R9-U%d-%s-boot.iso", i, s.architecture)
case "aarch64":
fname = fmt.Sprintf("OracleLinux-R9-U%d-%s-dvd.iso", i, s.architecture)
}
}
fullURL := fmt.Sprintf("%s/%s/%s/%s", baseURL, latestUpdate, s.architecture, fname)
var (
resp *http.Response
err error
)
err = shared.Retry(func() error {
resp, err = http.Head(fullURL)
if err != nil {
return errors.New("")
}
return nil
}, 3)
if err != nil {
continue
}
if resp.StatusCode == http.StatusOK {
break
}
}
}
// Only consider updates providing a boot image since we're not interested in the
// DVD ISO.
for i := len(updates) - 1; i > 0; i-- {
URL := fmt.Sprintf("%s/%s/%s", baseURL, updates[i], s.architecture)
fname, err = s.getISO(URL, s.architecture)
if err != nil {
continue
}
fullURL := fmt.Sprintf("%s/%s", URL, fname)
var (
resp *http.Response
err error
)
err = shared.Retry(func() error {
resp, err = http.Head(fullURL)
if err != nil {
return errors.New("")
}
return nil
}, 3)
if err != nil {
continue
}
if resp.StatusCode == http.StatusOK {
latestUpdate = updates[i]
break
}
}
source := fmt.Sprintf("%s/%s/%s/%s", baseURL, latestUpdate, s.architecture, fname)
fpath, err := s.DownloadHash(s.definition.Image, source, "", nil)
if err != nil {
return fmt.Errorf("Failed to download %q: %w", source, err)
}
s.logger.WithField("file", filepath.Join(fpath, fname)).Info("Unpacking ISO")
err = s.unpackISO(latestUpdate[1:], filepath.Join(fpath, fname), s.rootfsDir)
if err != nil {
return fmt.Errorf("Failed to unpack ISO: %w", err)
}
return nil
}
func (s *oraclelinux) unpackISO(latestUpdate, filePath, rootfsDir string) error {
isoDir := filepath.Join(s.cacheDir, "iso")
squashfsDir := filepath.Join(s.cacheDir, "squashfs")
roRootDir := filepath.Join(s.cacheDir, "rootfs.ro")
tempRootDir := filepath.Join(s.cacheDir, "rootfs")
for _, dir := range []string{isoDir, squashfsDir, roRootDir} {
err := os.MkdirAll(dir, 0o755)
if err != nil {
return fmt.Errorf("Failed to create %q: %w", dir, err)
}
}
// this is easier than doing the whole loop thing ourselves
err := shared.RunCommand(s.ctx, nil, nil, "mount", "-t", "iso9660", "-o", "ro", filePath, isoDir)
if err != nil {
return fmt.Errorf("Failed to mount %q: %w", filePath, err)
}
defer func() {
_ = unix.Unmount(isoDir, 0)
}()
var rootfsImage string
squashfsImage := filepath.Join(isoDir, "LiveOS", "squashfs.img")
if incus.PathExists(squashfsImage) {
// The squashfs.img contains an image containing the rootfs, so first
// mount squashfs.img
err = shared.RunCommand(s.ctx, nil, nil, "mount", "-t", "squashfs", "-o", "ro", squashfsImage, squashfsDir)
if err != nil {
return fmt.Errorf("Failed to mount %q: %w", squashfsImage, err)
}
defer func() {
_ = unix.Unmount(squashfsDir, 0)
}()
rootfsImage = filepath.Join(squashfsDir, "LiveOS", "rootfs.img")
} else {
rootfsImage = filepath.Join(isoDir, "images", "install.img")
}
// Remove rootfsDir otherwise rsync will copy the content into the directory
// itself
err = os.RemoveAll(rootfsDir)
if err != nil {
return fmt.Errorf("Failed to remove %q: %w", rootfsDir, err)
}
s.logger.WithField("file", rootfsImage).Info("Unpacking root image")
err = s.unpackRootfsImage(rootfsImage, tempRootDir)
if err != nil {
return fmt.Errorf("Failed to unpack %q: %w", rootfsImage, err)
}
// Determine rpm and yum packages
var baseURL string
if s.majorVersion == "7" {
baseURL = fmt.Sprintf("https://yum.oracle.com/repo/OracleLinux/OL%s/%s/base/%s", s.majorVersion, latestUpdate, s.architecture)
} else {
baseURL = fmt.Sprintf("https://yum.oracle.com/repo/OracleLinux/OL%s/%s/baseos/base/%s", s.majorVersion, latestUpdate, s.architecture)
}
doc, err := htmlquery.LoadURL(fmt.Sprintf("%s/index.html", baseURL))
if err != nil {
return fmt.Errorf("Failed to load URL %q: %w", fmt.Sprintf("%s/index.html", baseURL), err)
}
regexRpm := regexp.MustCompile(`^getPackage/rpm-\d+.+\.rpm$`)
regexYum := regexp.MustCompile(`^getPackage/yum-\d+.+\.rpm$`)
var yumPkgs []string
var rpmPkgs []string
for _, a := range htmlquery.Find(doc, `//a/@href`) {
if regexRpm.MatchString(a.FirstChild.Data) {
rpmPkgs = append(rpmPkgs, a.FirstChild.Data)
continue
}
if regexYum.MatchString(a.FirstChild.Data) {
yumPkgs = append(yumPkgs, a.FirstChild.Data)
continue
}
}
sort.Strings(yumPkgs)
sort.Strings(rpmPkgs)
if len(rpmPkgs) > 0 && len(yumPkgs) > 0 {
yumPkg := yumPkgs[len(yumPkgs)-1]
rpmPkg := rpmPkgs[len(rpmPkgs)-1]
array := [][]string{
{filepath.Join(tempRootDir, filepath.Base(rpmPkg)), fmt.Sprintf("%s/%s", baseURL, rpmPkg)},
{filepath.Join(tempRootDir, filepath.Base(yumPkg)), fmt.Sprintf("%s/%s", baseURL, yumPkg)},
{filepath.Join(tempRootDir, "RPM-GPG-KEY-oracle"), "https://oss.oracle.com/ol6/RPM-GPG-KEY-oracle"},
}
for _, elem := range array {
f, err := os.Create(elem[0])
if err != nil {
return fmt.Errorf("Failed to create file %q: %w", elem[0], err)
}
defer f.Close()
_, err = incus.DownloadFileHash(s.ctx, http.DefaultClient, "", nil, nil, elem[0], elem[1], "", nil, f)
if err != nil {
return fmt.Errorf("Failed to download %q: %w", elem[1], err)
}
f.Close()
}
}
// Setup the mounts and chroot into the rootfs
exitChroot, err := shared.SetupChroot(tempRootDir, shared.Definition{}, nil)
if err != nil {
return fmt.Errorf("Failed to setup chroot: %w", err)
}
if !incus.PathExists("/bin") && incus.PathExists("/usr/bin") {
err = os.Symlink("/usr/bin", "/bin")
if err != nil {
return fmt.Errorf("Failed to create /bin symlink: %w", err)
}
}
err = shared.RunScript(s.ctx, fmt.Sprintf(`#!/bin/sh
set -eux
version="%s"
latest_update="%s"
arch="%s"
# Create required files
touch /etc/mtab /etc/fstab
mkdir -p /etc/yum.repos.d /rootfs
if [ "${version}" = "7" ]; then
baseurl=https://yum.oracle.com/repo/OracleLinux/OL${version}/${latest_update}/base/${arch}/
baseurl_latest=https://yum.oracle.com/repo/OracleLinux/OL${version}/latest/${arch}/
else
baseurl=https://yum.oracle.com/repo/OracleLinux/OL${version}/${latest_update}/baseos/base/${arch}/
baseurl_latest=https://yum.oracle.com/repo/OracleLinux/OL${version}/baseos/latest/${arch}/
fi
if which dnf; then
alias yum=dnf
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
else
gpgkey=file:///RPM-GPG-KEY-oracle
# Fetch and install rpm and yum from the Oracle repo
_rpm=$(curl -s ${baseurl}/index.html | grep -Eo '>rpm-[[:digit:]][^ ]+\.rpm<' | tail -1 | sed 's|[<>]||g')
_yum=$(curl -s ${baseurl}/index.html | grep -Eo '>yum-[[:digit:]][^ ]+\.rpm<' | tail -1 | sed 's|[<>]||g')
rpm -ivh --nodeps "${_rpm}" "${_yum}"
rpm --import RPM-GPG-KEY-oracle
fi
# Add repo
cat <<- EOF > /etc/yum.repos.d/base.repo
[base]
name=Oracle Linux
baseurl=${baseurl}
enabled=1
gpgcheck=1
gpgkey=${gpgkey}
EOF
cat <<- EOF > /etc/yum.repos.d/base_latest.repo
[latest]
name=Oracle Linux
baseurl=${baseurl_latest}
enabled=1
gpgcheck=1
gpgkey=${gpgkey}
EOF
rm -rf /var/rootfs/*
yum install --disablerepo=latest --releasever=${version} --installroot=/rootfs -y basesystem oraclelinux-release
mkdir -p /rootfs/etc/yum.repos.d
cp /etc/yum.repos.d/*.repo /rootfs/etc/yum.repos.d/
if [ "${version}" = "7" ] && [ "${arch}" = "aarch64" ]; then
yum install --releasever=${version} --installroot=/rootfs -y libcom_err
fi
yum install --disablerepo=latest --releasever=${version} --installroot=/rootfs -y yum
rm -rf /rootfs/var/cache/yum
if [ -f RPM-GPG-KEY-oracle ] && ! [ -f /rootfs/etc/pki/rpm-gpg/RPM-GPG-KEY-oracle ]; then
mkdir -p /rootfs/etc/pki/rpm-gpg/
cp RPM-GPG-KEY-oracle /rootfs/etc/pki/rpm-gpg/
fi
cat <<- EOF > /rootfs/etc/yum.repos.d/base.repo
[base]
name=Oracle Linux
baseurl=${baseurl}
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
EOF
`, s.majorVersion, latestUpdate, s.architecture))
if err != nil {
{
err := exitChroot()
if err != nil {
s.logger.WithField("err", err).Warn("Failed exiting chroot")
}
}
return fmt.Errorf("Failed to run script: %w", err)
}
err = exitChroot()
if err != nil {
return fmt.Errorf("Failed exiting chroot: %w", err)
}
err = shared.RsyncLocal(s.ctx, tempRootDir+"/rootfs/", rootfsDir)
if err != nil {
return fmt.Errorf(`Failed to run "rsync": %w`, err)
}
return nil
}
func (s *oraclelinux) getISO(URL string, architecture string) (string, error) {
var re *regexp.Regexp
switch architecture {
case "x86_64":
re = regexp.MustCompile(fmt.Sprintf("%s-boot(-\\d{8})?.iso", architecture))
case "aarch64":
re = regexp.MustCompile(fmt.Sprintf("%s-boot-uek(-\\d{8})?.iso", architecture))
default:
return "", fmt.Errorf("Unsupported architecture %q", architecture)
}
doc, err := htmlquery.LoadURL(URL)
if err != nil {
return "", fmt.Errorf("Failed to load URL %q: %w", URL, err)
}
var isos []string
for _, a := range htmlquery.Find(doc, "//a/@href") {
if re.MatchString(a.FirstChild.Data) {
isos = append(isos, a.FirstChild.Data)
}
}
if len(isos) == 0 {
return "", errors.New("No isos found")
}
return isos[len(isos)-1], nil
}
func (s *oraclelinux) getUpdates(URL string) ([]string, error) {
re := regexp.MustCompile(`^[uU]\d+/$`)
doc, err := htmlquery.LoadURL(URL)
if err != nil {
return nil, fmt.Errorf("Failed to load URL %q: %w", URL, err)
}
var updates []string
for _, a := range htmlquery.Find(doc, "//a/@href") {
if re.MatchString(a.FirstChild.Data) {
updates = append(updates, strings.TrimSuffix(a.FirstChild.Data, "/"))
}
}
if len(updates) == 0 {
return nil, errors.New("No updates found")
}
return updates, nil
}
|