1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
|
// Copyright 2017 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package email
import (
"bytes"
"encoding/base64"
"fmt"
"io"
"io/ioutil"
"mime"
"mime/multipart"
"net/mail"
"regexp"
"sort"
"strings"
)
type Email struct {
BugID string
MessageID string
Link string
Subject string
From string
Cc []string
Body string // text/plain part
Patch string // attached patch, if any
Command string // command to bot (#syz is stripped)
CommandArgs string // arguments for the command
}
const commandPrefix = "#syz "
var groupsLinkRe = regexp.MustCompile("\nTo view this discussion on the web visit (https://groups\\.google\\.com/.*?)\\.(?:\r)?\n")
func Parse(r io.Reader, ownEmail string) (*Email, error) {
msg, err := mail.ReadMessage(r)
if err != nil {
return nil, fmt.Errorf("failed to read email: %v", err)
}
from, err := msg.Header.AddressList("From")
if err != nil {
return nil, fmt.Errorf("failed to parse email header 'From': %v", err)
}
if len(from) == 0 {
return nil, fmt.Errorf("failed to parse email header 'To': no senders")
}
// Ignore errors since To: header may not be present (we've seen such case).
to, _ := msg.Header.AddressList("To")
// AddressList fails if the header is not present.
cc, _ := msg.Header.AddressList("Cc")
bugID := ""
var ccList []string
if addr, err := mail.ParseAddress(ownEmail); err == nil {
ownEmail = addr.Address
}
fromMe := false
for _, addr := range from {
cleaned, _, _ := RemoveAddrContext(addr.Address)
if addr, err := mail.ParseAddress(cleaned); err == nil && addr.Address == ownEmail {
fromMe = true
}
}
for _, addr := range append(append(cc, to...), from...) {
cleaned, context, _ := RemoveAddrContext(addr.Address)
if addr, err := mail.ParseAddress(cleaned); err == nil {
cleaned = addr.Address
}
if cleaned == ownEmail {
if bugID == "" {
bugID = context
}
} else {
ccList = append(ccList, cleaned)
}
}
ccList = MergeEmailLists(ccList)
body, attachments, err := parseBody(msg.Body, msg.Header)
if err != nil {
return nil, err
}
bodyStr := string(body)
patch, cmd, cmdArgs := "", "", ""
if !fromMe {
for _, a := range attachments {
_, patch, _ = ParsePatch(string(a))
if patch != "" {
break
}
}
if patch == "" {
_, patch, _ = ParsePatch(bodyStr)
}
cmd, cmdArgs = extractCommand(body)
}
link := ""
if match := groupsLinkRe.FindStringSubmatchIndex(bodyStr); match != nil {
link = bodyStr[match[2]:match[3]]
}
email := &Email{
BugID: bugID,
MessageID: msg.Header.Get("Message-ID"),
Link: link,
Subject: msg.Header.Get("Subject"),
From: from[0].String(),
Cc: ccList,
Body: string(body),
Patch: patch,
Command: cmd,
CommandArgs: cmdArgs,
}
return email, nil
}
// AddAddrContext embeds context into local part of the provided email address using '+'.
// Returns the resulting email address.
func AddAddrContext(email, context string) (string, error) {
addr, err := mail.ParseAddress(email)
if err != nil {
return "", fmt.Errorf("failed to parse %q as email: %v", email, err)
}
at := strings.IndexByte(addr.Address, '@')
if at == -1 {
return "", fmt.Errorf("failed to parse %q as email: no @", email)
}
addr.Address = addr.Address[:at] + "+" + context + addr.Address[at:]
return addr.String(), nil
}
// RemoveAddrContext extracts context after '+' from the local part of the provided email address.
// Returns address without the context and the context.
func RemoveAddrContext(email string) (string, string, error) {
addr, err := mail.ParseAddress(email)
if err != nil {
return "", "", fmt.Errorf("failed to parse %q as email: %v", email, err)
}
at := strings.IndexByte(addr.Address, '@')
if at == -1 {
return "", "", fmt.Errorf("failed to parse %q as email: no @", email)
}
plus := strings.LastIndexByte(addr.Address[:at], '+')
if plus == -1 {
return email, "", nil
}
context := addr.Address[plus+1 : at]
addr.Address = addr.Address[:plus] + addr.Address[at:]
return addr.String(), context, nil
}
func CanonicalEmail(email string) string {
addr, err := mail.ParseAddress(email)
if err != nil {
return email
}
at := strings.IndexByte(addr.Address, '@')
if at == -1 {
return email
}
if plus := strings.IndexByte(addr.Address[:at], '+'); plus != -1 {
addr.Address = addr.Address[:plus] + addr.Address[at:]
}
return strings.ToLower(addr.Address)
}
// extractCommand extracts command to syzbot from email body.
// Commands are of the following form:
// ^#syz cmd args...
func extractCommand(body []byte) (cmd, args string) {
cmdPos := bytes.Index(append([]byte{'\n'}, body...), []byte("\n"+commandPrefix))
if cmdPos == -1 {
return
}
cmdPos += len(commandPrefix)
cmdEnd := bytes.IndexByte(body[cmdPos:], '\n')
if cmdEnd == -1 {
cmdEnd = len(body) - cmdPos
}
cmdLine := strings.TrimSpace(string(body[cmdPos : cmdPos+cmdEnd]))
if cmdLine == "" {
return
}
split := strings.Split(cmdLine, " ")
cmd = split[0]
var aargs []string
if len(split) > 1 {
aargs = split[1:]
}
// Text emails are split at 80 columns are the transformation is irrevesible.
// Try to restore args for some commands that don't have spaces in args.
want := 0
switch cmd {
case "test:":
want = 2
case "test_5_arg_cmd":
want = 5
}
for pos := cmdPos + cmdEnd + 1; len(aargs) < want && pos < len(body); {
lineEnd := bytes.IndexByte(body[pos:], '\n')
if lineEnd == -1 {
lineEnd = len(body) - pos
}
line := strings.TrimSpace(string(body[pos : pos+lineEnd]))
if line != "" {
aargs = append(aargs, strings.Split(line, " ")...)
}
pos += lineEnd + 1
}
args = strings.TrimSpace(strings.Join(aargs, " "))
return
}
func parseBody(r io.Reader, headers mail.Header) (body []byte, attachments [][]byte, err error) {
mediaType, params, err := mime.ParseMediaType(headers.Get("Content-Type"))
if err != nil {
return nil, nil, fmt.Errorf("failed to parse email header 'Content-Type': %v", err)
}
// Note: mime package handles quoted-printable internally.
if strings.ToLower(headers.Get("Content-Transfer-Encoding")) == "base64" {
r = base64.NewDecoder(base64.StdEncoding, r)
}
disp, _, _ := mime.ParseMediaType(headers.Get("Content-Disposition"))
if disp == "attachment" {
attachment, err := ioutil.ReadAll(r)
if err != nil {
return nil, nil, fmt.Errorf("failed to read email body: %v", err)
}
return nil, [][]byte{attachment}, nil
}
if mediaType == "text/plain" {
body, err := ioutil.ReadAll(r)
if err != nil {
return nil, nil, fmt.Errorf("failed to read email body: %v", err)
}
return body, nil, nil
}
if !strings.HasPrefix(mediaType, "multipart/") {
return nil, nil, nil
}
mr := multipart.NewReader(r, params["boundary"])
for {
p, err := mr.NextPart()
if err == io.EOF {
return body, attachments, nil
}
if err != nil {
return nil, nil, fmt.Errorf("failed to parse MIME parts: %v", err)
}
body1, attachments1, err1 := parseBody(p, mail.Header(p.Header))
if err1 != nil {
return nil, nil, err1
}
if body == nil {
body = body1
}
attachments = append(attachments, attachments1...)
}
}
// MergeEmailLists merges several email lists removing duplicates and invalid entries.
func MergeEmailLists(lists ...[]string) []string {
const (
maxEmailLen = 1000
maxEmails = 50
)
merged := make(map[string]bool)
for _, list := range lists {
for _, email := range list {
addr, err := mail.ParseAddress(email)
if err != nil || len(addr.Address) > maxEmailLen {
continue
}
merged[addr.Address] = true
}
}
var result []string
for e := range merged {
result = append(result, e)
}
sort.Strings(result)
if len(result) > maxEmails {
result = result[:maxEmails]
}
return result
}
|