
`Data` now references the first byte of the fixup offset within the current fragment. MCAssembler::layout asserts that the fixup offset is within either the fixed-size content or the optional variable-size tail, as this is the most the generic code can validate without knowing the target-specific fixup size. Many backends applyFixup assert ``` assert(Offset + Size <= F.getSize() && "Invalid fixup offset!"); ``` This refactoring allows a subsequent change to move the fixed-size content outside of MCSection::ContentStorage, fixing the -fsanitize=pointer-overflow issue of #150846 Pull Request: https://github.com/llvm/llvm-project/pull/151724
124 lines
4.4 KiB
C++
124 lines
4.4 KiB
C++
//===-- BPFAsmBackend.cpp - BPF Assembler Backend -------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "MCTargetDesc/BPFMCFixups.h"
|
|
#include "MCTargetDesc/BPFMCTargetDesc.h"
|
|
#include "llvm/MC/MCAsmBackend.h"
|
|
#include "llvm/MC/MCAssembler.h"
|
|
#include "llvm/MC/MCContext.h"
|
|
#include "llvm/MC/MCFixup.h"
|
|
#include "llvm/MC/MCObjectWriter.h"
|
|
#include "llvm/Support/EndianStream.h"
|
|
#include <cassert>
|
|
#include <cstdint>
|
|
|
|
using namespace llvm;
|
|
|
|
namespace {
|
|
|
|
class BPFAsmBackend : public MCAsmBackend {
|
|
public:
|
|
BPFAsmBackend(llvm::endianness Endian) : MCAsmBackend(Endian) {}
|
|
~BPFAsmBackend() override = default;
|
|
|
|
void applyFixup(const MCFragment &, const MCFixup &, const MCValue &Target,
|
|
uint8_t *Data, uint64_t Value, bool IsResolved) override;
|
|
|
|
std::unique_ptr<MCObjectTargetWriter>
|
|
createObjectTargetWriter() const override;
|
|
|
|
MCFixupKindInfo getFixupKindInfo(MCFixupKind Kind) const override;
|
|
|
|
bool writeNopData(raw_ostream &OS, uint64_t Count,
|
|
const MCSubtargetInfo *STI) const override;
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
MCFixupKindInfo BPFAsmBackend::getFixupKindInfo(MCFixupKind Kind) const {
|
|
const static MCFixupKindInfo Infos[BPF::NumTargetFixupKinds] = {
|
|
{"FK_BPF_PCRel_4", 0, 32, 0},
|
|
};
|
|
|
|
if (Kind < FirstTargetFixupKind)
|
|
return MCAsmBackend::getFixupKindInfo(Kind);
|
|
|
|
assert(unsigned(Kind - FirstTargetFixupKind) < BPF::NumTargetFixupKinds &&
|
|
"Invalid kind!");
|
|
return Infos[Kind - FirstTargetFixupKind];
|
|
}
|
|
|
|
bool BPFAsmBackend::writeNopData(raw_ostream &OS, uint64_t Count,
|
|
const MCSubtargetInfo *STI) const {
|
|
if ((Count % 8) != 0)
|
|
return false;
|
|
|
|
for (uint64_t i = 0; i < Count; i += 8)
|
|
support::endian::write<uint64_t>(OS, 0x15000000, Endian);
|
|
|
|
return true;
|
|
}
|
|
|
|
void BPFAsmBackend::applyFixup(const MCFragment &F, const MCFixup &Fixup,
|
|
const MCValue &Target, uint8_t *Data,
|
|
uint64_t Value, bool IsResolved) {
|
|
maybeAddReloc(F, Fixup, Target, Value, IsResolved);
|
|
if (Fixup.getKind() == FK_SecRel_8) {
|
|
// The Value is 0 for global variables, and the in-section offset
|
|
// for static variables. Write to the immediate field of the inst.
|
|
assert(Value <= UINT32_MAX);
|
|
support::endian::write<uint32_t>(Data + 4, static_cast<uint32_t>(Value),
|
|
Endian);
|
|
} else if (Fixup.getKind() == FK_Data_4 && !Fixup.isPCRel()) {
|
|
support::endian::write<uint32_t>(Data, Value, Endian);
|
|
} else if (Fixup.getKind() == FK_Data_8) {
|
|
support::endian::write<uint64_t>(Data, Value, Endian);
|
|
} else if (Fixup.getKind() == FK_Data_4 && Fixup.isPCRel()) {
|
|
Value = (uint32_t)((Value - 8) / 8);
|
|
if (Endian == llvm::endianness::little) {
|
|
Data[1] = 0x10;
|
|
support::endian::write32le(Data + 4, Value);
|
|
} else {
|
|
Data[1] = 0x1;
|
|
support::endian::write32be(Data + 4, Value);
|
|
}
|
|
} else if (Fixup.getKind() == BPF::FK_BPF_PCRel_4) {
|
|
// The input Value represents the number of bytes.
|
|
Value = (uint32_t)((Value - 8) / 8);
|
|
support::endian::write<uint32_t>(Data + 4, Value, Endian);
|
|
} else {
|
|
assert(Fixup.getKind() == FK_Data_2 && Fixup.isPCRel());
|
|
|
|
int64_t ByteOff = (int64_t)Value - 8;
|
|
if (ByteOff > INT16_MAX * 8 || ByteOff < INT16_MIN * 8)
|
|
report_fatal_error("Branch target out of insn range");
|
|
|
|
Value = (uint16_t)((Value - 8) / 8);
|
|
support::endian::write<uint16_t>(Data + 2, Value, Endian);
|
|
}
|
|
}
|
|
|
|
std::unique_ptr<MCObjectTargetWriter>
|
|
BPFAsmBackend::createObjectTargetWriter() const {
|
|
return createBPFELFObjectWriter(0);
|
|
}
|
|
|
|
MCAsmBackend *llvm::createBPFAsmBackend(const Target &T,
|
|
const MCSubtargetInfo &STI,
|
|
const MCRegisterInfo &MRI,
|
|
const MCTargetOptions &) {
|
|
return new BPFAsmBackend(llvm::endianness::little);
|
|
}
|
|
|
|
MCAsmBackend *llvm::createBPFbeAsmBackend(const Target &T,
|
|
const MCSubtargetInfo &STI,
|
|
const MCRegisterInfo &MRI,
|
|
const MCTargetOptions &) {
|
|
return new BPFAsmBackend(llvm::endianness::big);
|
|
}
|