2015-01-25 06:32:33 +03:00
|
|
|
// Copyright 2015 CoreOS, Inc.
|
|
|
|
//
|
|
|
|
// 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.
|
2014-10-18 02:36:22 +04:00
|
|
|
|
2014-05-23 00:42:09 +04:00
|
|
|
package network
|
|
|
|
|
|
|
|
import (
|
2014-08-16 05:14:34 +04:00
|
|
|
"log"
|
2014-05-23 00:42:09 +04:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2015-01-27 02:42:06 +03:00
|
|
|
func ProcessDebianNetconf(config []byte) ([]InterfaceGenerator, error) {
|
2014-08-16 05:14:34 +04:00
|
|
|
log.Println("Processing Debian network config")
|
2015-01-27 02:42:06 +03:00
|
|
|
lines := formatConfig(string(config))
|
2014-05-23 00:42:09 +04:00
|
|
|
stanzas, err := parseStanzas(lines)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
interfaces := make([]*stanzaInterface, 0, len(stanzas))
|
|
|
|
for _, stanza := range stanzas {
|
|
|
|
switch s := stanza.(type) {
|
|
|
|
case *stanzaInterface:
|
|
|
|
interfaces = append(interfaces, s)
|
|
|
|
}
|
|
|
|
}
|
2014-08-16 05:14:34 +04:00
|
|
|
log.Printf("Parsed %d network interfaces\n", len(interfaces))
|
2014-05-23 00:42:09 +04:00
|
|
|
|
2014-08-16 05:14:34 +04:00
|
|
|
log.Println("Processed Debian network config")
|
2014-05-23 00:42:09 +04:00
|
|
|
return buildInterfaces(interfaces), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func formatConfig(config string) []string {
|
|
|
|
lines := []string{}
|
|
|
|
config = strings.Replace(config, "\\\n", "", -1)
|
|
|
|
for config != "" {
|
|
|
|
split := strings.SplitN(config, "\n", 2)
|
|
|
|
line := strings.TrimSpace(split[0])
|
|
|
|
|
|
|
|
if len(split) == 2 {
|
|
|
|
config = split[1]
|
|
|
|
} else {
|
|
|
|
config = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(line, "#") || line == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
lines = append(lines, line)
|
|
|
|
}
|
|
|
|
return lines
|
|
|
|
}
|