peridot/secparse/cron/autocreate_advisory.go
2022-07-07 22:13:21 +02:00

198 lines
6.3 KiB
Go

// Copyright (c) All respective contributors to the Peridot Project. All rights reserved.
// Copyright (c) 2021-2022 Rocky Enterprise Software Foundation, Inc. All rights reserved.
// Copyright (c) 2021-2022 Ctrl IQ, Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors
// may be used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
package cron
import (
"database/sql"
"github.com/sirupsen/logrus"
secparseadminpb "peridot.resf.org/secparse/admin/proto/v1"
"peridot.resf.org/secparse/db"
"strconv"
"strings"
)
func (i *Instance) CreateAdvisoryForFixedCVEs() {
cves, err := i.db.GetAllCVEsFixedDownstream()
if err != nil {
logrus.Errorf("Could not get cves fixed downstream: %v", err)
return
}
for _, cve := range cves {
beginTx, err := i.db.Begin()
if err != nil {
logrus.Errorf("could not begin tx: %v", err)
continue
}
tx := i.db.UseTransaction(beginTx)
affectedProducts, err := tx.GetAllAffectedProductsByCVE(cve.ID)
if err != nil {
logrus.Errorf("Could not get affected products for %s: %v", cve.ID, err)
_ = beginTx.Rollback()
continue
}
var existingAdvisory *db.Advisory
didSkip := false
for _, affectedProduct := range affectedProducts {
if !affectedProduct.Advisory.Valid {
continue
}
advisorySplit := strings.Split(affectedProduct.Advisory.String, "-")
numYearSplit := strings.Split(advisorySplit[1], ":")
year, err := strconv.Atoi(numYearSplit[0])
if err != nil {
logrus.Errorf("invalid year %s", numYearSplit[0])
continue
}
num, err := strconv.Atoi(numYearSplit[1])
if err != nil {
logrus.Errorf("invalid num %s", numYearSplit[1])
continue
}
existingAdvisory, err = tx.GetAdvisoryByCodeAndYearAndNum(cve.ShortCode, year, num)
if err != nil {
if err == sql.ErrNoRows {
errata, err := i.errata.GetErrata(affectedProduct.Advisory.String)
if err != nil {
logrus.Errorf("could not get errata from Red Hat: %v", err)
didSkip = true
break
}
for i, _ := range errata.Topic {
errata.Topic[i] = strings.Replace(errata.Topic[i], "Red Hat Enterprise Linux", "Rocky Linux", -1)
errata.Topic[i] = strings.Replace(errata.Topic[i], "Red Hat", "Rocky Linux", -1)
}
for i, _ := range errata.Description {
errata.Description[i] = strings.Replace(errata.Description[i], "Red Hat Enterprise Linux", "Rocky Linux", -1)
errata.Description[i] = strings.Replace(errata.Description[i], "Red Hat", "Rocky Linux", -1)
}
newAdvisory := &db.Advisory{
Year: year,
Num: num,
Synopsis: errata.Synopsis,
Topic: strings.Join(errata.Topic, "\n"),
Severity: int(errata.Severity),
Type: int(errata.Type),
Description: strings.Join(errata.Description, "\n"),
RedHatIssuedAt: sql.NullTime{Valid: true, Time: errata.IssuedAt},
ShortCodeCode: cve.ShortCode,
PublishedAt: sql.NullTime{},
}
newAdvisory, err = tx.CreateAdvisory(newAdvisory)
if err != nil {
logrus.Errorf("Could not create new advisory: %v", err)
didSkip = true
break
}
existingAdvisory = newAdvisory
for _, fix := range errata.Fixes {
id, err := tx.CreateFix(fix.BugzillaID, fix.Description)
if err != nil {
logrus.Errorf("Could not create fix for BZ#%s", fix.BugzillaID)
didSkip = true
break
}
err = tx.AddAdvisoryFix(existingAdvisory.ID, id)
if err != nil {
logrus.Errorf("Could not add fix BZ#%s to advisory %d", fix.BugzillaID, existingAdvisory.ID)
didSkip = true
break
}
}
if didSkip {
break
}
for _, reference := range errata.References {
// Skip redhat.com references
if strings.Contains(reference, "redhat.com") {
continue
}
err := tx.CreateAdvisoryReference(existingAdvisory.ID, reference)
if err != nil {
logrus.Errorf("Could not reference %s", reference)
didSkip = true
break
}
}
if didSkip {
break
}
} else {
logrus.Errorf("Could not reach database to retrieve advisory: %v", err)
didSkip = true
break
}
}
if didSkip {
break
}
err = tx.AddAdvisoryCVE(existingAdvisory.ID, cve.ID)
if err != nil {
logrus.Errorf("Could not add %s to advisory %d", cve.ID, existingAdvisory.ID)
didSkip = true
break
}
err = tx.UpdateCVEState(cve.ID, secparseadminpb.CVEState_IncludedInAdvisory)
if err != nil {
logrus.Errorf("Could not update CVE state: %v", err)
didSkip = true
break
}
}
if didSkip {
_ = beginTx.Rollback()
continue
}
err = beginTx.Commit()
if err != nil {
logrus.Errorf("Could not commit database transaction: %v", err)
continue
}
logrus.Infof("Created/updated advisory %s-%d:%d for %s", existingAdvisory.ShortCodeCode, existingAdvisory.Year, existingAdvisory.Num, cve.ID)
}
}