vendor dependencies with 'dep'
This commit is contained in:
parent
f2620bb98c
commit
6c8586f48e
9 changed files with 715 additions and 0 deletions
178
vendor/github.com/dutchcoders/go-clamd/conn.go
generated
vendored
Normal file
178
vendor/github.com/dutchcoders/go-clamd/conn.go
generated
vendored
Normal file
|
@ -0,0 +1,178 @@
|
|||
/*
|
||||
Open Source Initiative OSI - The MIT License (MIT):Licensing
|
||||
|
||||
The MIT License (MIT)
|
||||
Copyright (c) 2013 DutchCoders <http://github.com/dutchcoders/>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||
of the Software, and to permit persons to whom the Software is furnished to do
|
||||
so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
*/
|
||||
|
||||
package clamd
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
"fmt"
|
||||
"io"
|
||||
"net"
|
||||
"regexp"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
)
|
||||
|
||||
const CHUNK_SIZE = 1024
|
||||
const TCP_TIMEOUT = time.Second * 2
|
||||
|
||||
var resultRegex = regexp.MustCompile(
|
||||
`^(?P<path>[^:]+): ((?P<desc>[^:]+)(\((?P<virhash>([^:]+)):(?P<virsize>\d+)\))? )?(?P<status>FOUND|ERROR|OK)$`,
|
||||
)
|
||||
|
||||
type CLAMDConn struct {
|
||||
net.Conn
|
||||
}
|
||||
|
||||
func (conn *CLAMDConn) sendCommand(command string) error {
|
||||
commandBytes := []byte(fmt.Sprintf("n%s\n", command))
|
||||
|
||||
_, err := conn.Write(commandBytes)
|
||||
return err
|
||||
}
|
||||
|
||||
func (conn *CLAMDConn) sendEOF() error {
|
||||
_, err := conn.Write([]byte{0, 0, 0, 0})
|
||||
return err
|
||||
}
|
||||
|
||||
func (conn *CLAMDConn) sendChunk(data []byte) error {
|
||||
var buf [4]byte
|
||||
lenData := len(data)
|
||||
buf[0] = byte(lenData >> 24)
|
||||
buf[1] = byte(lenData >> 16)
|
||||
buf[2] = byte(lenData >> 8)
|
||||
buf[3] = byte(lenData >> 0)
|
||||
|
||||
a := buf
|
||||
|
||||
b := make([]byte, len(a))
|
||||
for i := range a {
|
||||
b[i] = a[i]
|
||||
}
|
||||
|
||||
conn.Write(b)
|
||||
|
||||
_, err := conn.Write(data)
|
||||
return err
|
||||
}
|
||||
|
||||
func (c *CLAMDConn) readResponse() (chan *ScanResult, *sync.WaitGroup, error) {
|
||||
var wg sync.WaitGroup
|
||||
|
||||
wg.Add(1)
|
||||
reader := bufio.NewReader(c)
|
||||
ch := make(chan *ScanResult)
|
||||
|
||||
go func() {
|
||||
defer func() {
|
||||
close(ch)
|
||||
wg.Done()
|
||||
}()
|
||||
|
||||
for {
|
||||
line, err := reader.ReadString('\n')
|
||||
if err == io.EOF {
|
||||
return
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
line = strings.TrimRight(line, " \t\r\n")
|
||||
ch <- parseResult(line)
|
||||
}
|
||||
}()
|
||||
|
||||
return ch, &wg, nil
|
||||
}
|
||||
|
||||
func parseResult(line string) *ScanResult {
|
||||
res := &ScanResult{}
|
||||
res.Raw = line
|
||||
|
||||
matches := resultRegex.FindStringSubmatch(line)
|
||||
if len(matches) == 0 {
|
||||
res.Description = "Regex had no matches"
|
||||
res.Status = RES_PARSE_ERROR
|
||||
return res
|
||||
}
|
||||
|
||||
for i, name := range resultRegex.SubexpNames() {
|
||||
switch name {
|
||||
case "path":
|
||||
res.Path = matches[i]
|
||||
case "desc":
|
||||
res.Description = matches[i]
|
||||
case "virhash":
|
||||
res.Hash = matches[i]
|
||||
case "virsize":
|
||||
i, err := strconv.Atoi(matches[i])
|
||||
if err == nil {
|
||||
res.Size = i
|
||||
}
|
||||
case "status":
|
||||
switch matches[i] {
|
||||
case RES_OK:
|
||||
case RES_FOUND:
|
||||
case RES_ERROR:
|
||||
break
|
||||
default:
|
||||
res.Description = "Invalid status field: " + matches[i]
|
||||
res.Status = RES_PARSE_ERROR
|
||||
return res
|
||||
}
|
||||
res.Status = matches[i]
|
||||
}
|
||||
}
|
||||
|
||||
return res
|
||||
}
|
||||
|
||||
func newCLAMDTcpConn(address string) (*CLAMDConn, error) {
|
||||
conn, err := net.DialTimeout("tcp", address, TCP_TIMEOUT)
|
||||
|
||||
if err != nil {
|
||||
if nerr, isOk := err.(net.Error); isOk && nerr.Timeout() {
|
||||
return nil, nerr
|
||||
}
|
||||
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &CLAMDConn{Conn: conn}, err
|
||||
}
|
||||
|
||||
func newCLAMDUnixConn(address string) (*CLAMDConn, error) {
|
||||
conn, err := net.Dial("unix", address)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &CLAMDConn{Conn: conn}, err
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue