| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- // Copyright 2019 Yunion
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package hostbridge
- import (
- "bytes"
- "fmt"
- "regexp"
- "strings"
- "yunion.io/x/log"
- "yunion.io/x/pkg/errors"
- "yunion.io/x/pkg/utils"
- "yunion.io/x/onecloud/pkg/apis/compute"
- "yunion.io/x/onecloud/pkg/hostman/guestman/desc"
- "yunion.io/x/onecloud/pkg/hostman/options"
- "yunion.io/x/onecloud/pkg/util/iproute2"
- "yunion.io/x/onecloud/pkg/util/procutils"
- )
- func NewLinuxBridgeDeriver(bridge, inter, ip string, maskLen int, ip6 string, mask6Len int) (*SLinuxBridgeDriver, error) {
- base, err := NewBaseBridgeDriver(bridge, inter, ip, maskLen, ip6, mask6Len)
- if err != nil {
- return nil, err
- }
- linuxBridgeDrv := &SLinuxBridgeDriver{*base}
- linuxBridgeDrv.drv = linuxBridgeDrv
- return linuxBridgeDrv, nil
- }
- func LinuxBridgePrepare() error {
- return nil
- }
- func cleanLinuxBridge() {
- // pass
- }
- type SLinuxBridgeDriver struct {
- SBaseBridgeDriver
- }
- func (l *SLinuxBridgeDriver) Exists() (bool, error) {
- data, err := procutils.NewCommand("brctl", "show").Output()
- if err != nil {
- return false, err
- }
- re := regexp.MustCompile(`\s+`)
- for _, line := range bytes.Split(data, []byte{'\n'}) {
- info := re.Split(string(line), -1)
- if info[0] == l.bridge.String() {
- return true, nil
- }
- }
- return false, nil
- }
- func (l *SLinuxBridgeDriver) Interfaces() ([]string, error) {
- data, err := procutils.NewCommand("brctl", "show", l.bridge.String()).Output()
- if err != nil {
- return nil, err
- }
- infs := make([]string, 0)
- re := regexp.MustCompile(`\s+`)
- for _, line := range bytes.Split(data, []byte{'\n'}) {
- info := re.Split(string(line), -1)
- infs = append(infs, info[len(info)-1])
- }
- return infs, nil
- }
- func (l *SLinuxBridgeDriver) GenerateIfdownScripts(scriptPath string, nic *desc.SGuestNetwork, isVolatileHost bool) error {
- return l.generateIfdownScripts(l, scriptPath, nic, isVolatileHost)
- }
- func (l *SLinuxBridgeDriver) GenerateIfupScripts(scriptPath string, nic *desc.SGuestNetwork, isVolatileHost bool) error {
- return l.generateIfupScripts(l, scriptPath, nic, isVolatileHost)
- }
- func (l *SLinuxBridgeDriver) OnVolatileGuestResume(nic *desc.SGuestNetwork) error {
- return nil
- }
- func (l *SLinuxBridgeDriver) getUpScripts(nic *desc.SGuestNetwork, isVolatileHost bool) (string, error) {
- s := "#!/bin/bash\n\n"
- s += fmt.Sprintf("switch='%s'\n", l.bridge)
- if options.HostOptions.TunnelPaddingBytes > 0 {
- s += fmt.Sprintf("ip link set dev $1 mtu %d\n", 1500+options.HostOptions.TunnelPaddingBytes)
- }
- s += "ip address flush dev $1\n"
- s += "ip link set dev $1 up\n"
- s += "brctl addif ${switch} $1\n"
- if nic.Driver != compute.NETWORK_DRIVER_VFIO {
- if len(options.HostOptions.SRIOVNics) > 0 {
- s += fmt.Sprintf("bridge fdb add %s dev %s\n", nic.Mac, l.inter.String())
- }
- }
- return s, nil
- }
- func (l *SLinuxBridgeDriver) getDownScripts(nic *desc.SGuestNetwork, isVolatileHost bool) (string, error) {
- s := "#!/bin/sh\n\n"
- s += fmt.Sprintf("switch='%s'\n", l.bridge)
- s += "brctl show ${switch} | grep $1\n"
- s += "if [ $? -ne '0' ]; then\n"
- s += " exit 0\n"
- s += "fi\n"
- s += "ip addr flush dev $1\n"
- s += "ip link set dev $1 down\n"
- s += "brctl delif ${switch} $1\n"
- if nic.Driver != compute.NETWORK_DRIVER_VFIO {
- if len(options.HostOptions.SRIOVNics) > 0 {
- s += fmt.Sprintf("bridge fdb del %s dev %s\n", nic.Mac, l.inter.String())
- }
- }
- return s, nil
- }
- func (l *SLinuxBridgeDriver) SetupBridgeDev() error {
- exist, err := l.Exists()
- if err != nil {
- return err
- }
- if !exist {
- output, err := procutils.NewCommand("brctl", "addbr", l.bridge.String()).Output()
- if err != nil {
- return errors.Wrapf(err, "Failed to create bridge %s", output)
- }
- }
- return nil
- }
- func (d *SLinuxBridgeDriver) PersistentConfig() error {
- l := iproute2.NewLink(d.bridge.String()).Address(d.inter.GetMac()).MTU(d.inter.Mtu)
- if err := l.Err(); err != nil {
- return fmt.Errorf("Linux bridge set mac address failed: %v", err)
- }
- return nil
- }
- func (l *SLinuxBridgeDriver) RegisterHostlocalServer(mac, ip string) error {
- metadataPort := l.GetMetadataServerPort()
- metadataServerLoc := fmt.Sprintf("%s:%d", ip, metadataPort)
- hostDnsServerLoc := fmt.Sprintf("%s:%d", ip, 53)
- // cmd := "iptables -t nat -F"
- // cmd1 := strings.Split(cmd, " ")
- // output, err := procutils.NewCommand(cmd1[0], cmd1[1:]...).Output()
- // if err != nil {
- // log.Errorf("Clean iptables failed: %s", output)
- // return err
- // }
- cmd := "iptables -t nat -A PREROUTING -s 0.0.0.0/0"
- cmd += " -d 169.254.169.254/32 -p tcp -m tcp --dport 80"
- cmd += fmt.Sprintf(" -j DNAT --to-destination %s", metadataServerLoc)
- cmd1 := strings.Split(cmd, " ")
- output, err := procutils.NewCommand(cmd1[0], cmd1[1:]...).Output()
- if err != nil {
- log.Errorf("Inject DNAT rule failed: %s", output)
- return err
- }
- cmd = "sysctl -w net.ipv4.ip_forward=1"
- cmd1 = strings.Split(cmd, " ")
- output, err = procutils.NewCommand(cmd1[0], cmd1[1:]...).Output()
- if err != nil {
- log.Errorf("Enable ip forwarding failed: %s", output)
- return err
- }
- log.Infof("Bridge: metadata server=%s", metadataServerLoc)
- log.Infof("Bridge: host dns server=%s", hostDnsServerLoc)
- return nil
- }
- func (l *SLinuxBridgeDriver) SetupInterface() error {
- infs, err := l.Interfaces()
- if err != nil {
- return err
- }
- if l.inter != nil && !utils.IsInStringArray(l.inter.String(), infs) {
- err := procutils.NewCommand("brctl", "addif", l.bridge.String(), l.inter.String()).Run()
- if err != nil {
- return fmt.Errorf("Failed to add interface %s", l.inter)
- }
- }
- return nil
- }
|