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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
|
// 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 main
import (
"context"
"fmt"
"strings"
"testing"
"time"
"github.com/google/syzkaller/dashboard/dashapi"
"github.com/google/syzkaller/pkg/email"
"github.com/google/syzkaller/sys/targets"
"github.com/stretchr/testify/assert"
)
// nolint: funlen
func TestEmailReport(t *testing.T) {
c := NewCtx(t)
defer c.Close()
build := testBuild(1)
c.client2.UploadBuild(build)
crash := testCrash(build, 1)
crash.Maintainers = []string{`"Foo Bar" <foo@bar.com>`, `bar@foo.com`, `idont@want.EMAILS`}
c.client2.ReportCrash(crash)
// Report the crash over email and check all fields.
var sender0, extBugID0, body0 string
var dbBug0 *Bug
{
msg := c.pollEmailBug()
sender0 = msg.Sender
body0 = msg.Body
sender, extBugID, err := email.RemoveAddrContext(msg.Sender)
c.expectOK(err)
extBugID0 = extBugID
dbBug, dbCrash, dbBuild := c.loadBug(extBugID0)
dbBug0 = dbBug
crashLogLink := externalLink(c.ctx, textCrashLog, dbCrash.Log)
kernelConfigLink := externalLink(c.ctx, textKernelConfig, dbBuild.KernelConfig)
c.expectEQ(sender, fromAddr(c.ctx))
to := c.config().Namespaces["test2"].Reporting[0].Config.(*EmailConfig).Email
c.expectEQ(msg.To, []string{to})
c.expectEQ(msg.Subject, crash.Title)
c.expectEQ(len(msg.Attachments), 0)
c.expectEQ(msg.Body, fmt.Sprintf(`Hello,
syzbot found the following issue on:
HEAD commit: 111111111111 kernel_commit_title1
git tree: repo1 branch1
console output: %[2]v
kernel config: %[3]v
dashboard link: https://testapp.appspot.com/bug?extid=%[1]v
compiler: compiler1
CC: [bar@foo.com foo@bar.com idont@want.EMAILS]
Unfortunately, I don't have any reproducer for this issue yet.
IMPORTANT: if you fix the issue, please add the following tag to the commit:
Reported-by: syzbot+%[1]v@testapp.appspotmail.com
report1
---
This report is generated by a bot. It may contain errors.
See https://goo.gl/tpsmEJ for more information about syzbot.
syzbot engineers can be reached at syzkaller@googlegroups.com.
syzbot will keep track of this issue. See:
https://goo.gl/tpsmEJ#status for how to communicate with syzbot.
If the report is already addressed, let syzbot know by replying with:
#syz fix: exact-commit-title
If you want to overwrite report's subsystems, reply with:
#syz set subsystems: new-subsystem
(See the list of subsystem names on the web dashboard)
If the report is a duplicate of another one, reply with:
#syz dup: exact-subject-of-another-report
If you want to undo deduplication, reply with:
#syz undup`,
extBugID0, crashLogLink, kernelConfigLink))
c.checkURLContents(crashLogLink, crash.Log)
c.checkURLContents(kernelConfigLink, build.KernelConfig)
}
// Emulate receive of the report from a mailing list.
// This should update the bug with the link/Message-ID.
// nolint: lll
incoming1 := fmt.Sprintf(`Sender: syzkaller@googlegroups.com
Date: Tue, 15 Aug 2017 14:59:00 -0700
Message-ID: <1234>
Subject: crash1
From: %v
To: foo@bar.com
Content-Type: text/plain
Hello
syzbot will keep track of this issue.
If you forgot to add the Reported-by tag, once the fix for this bug is merged
into any tree, please reply to this email with:
#syz fix: exact-commit-title
To mark this as a duplicate of another syzbot report, please reply with:
#syz dup: exact-subject-of-another-report
If it's a one-off invalid bug report, please reply with:
#syz invalid
--
You received this message because you are subscribed to the Google Groups "syzkaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email to syzkaller+unsubscribe@googlegroups.com.
To post to this group, send email to syzkaller@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/syzkaller/1234@google.com.
For more options, visit https://groups.google.com/d/optout.
`, sender0)
_, err := c.POST("/_ah/mail/", incoming1)
c.expectOK(err)
// Emulate that somebody sends us our own email back without quoting.
// We used to extract "#syz fix: exact-commit-title" from it.
c.incomingEmail(sender0, body0)
c.incomingEmail(sender0, "I don't want emails", EmailOptFrom(`"idont" <idont@WANT.emails>`))
c.expectNoEmail()
// This person sends an email and is listed as a maintainer, but opt-out of emails.
// We should not send anything else to them for this bug. Also don't warn about no mailing list in CC.
c.incomingEmail(sender0, "#syz uncc", EmailOptFrom(`"IDONT" <Idont@want.emails>`), EmailOptCC(nil))
c.expectNoEmail()
// Now report syz reproducer and check updated email.
build2 := testBuild(10)
build2.Arch = targets.I386
build2.KernelRepo, build2.KernelBranch = testConfig.Namespaces["test2"].mainRepoBranch()
build2.KernelCommitTitle = "a really long title, longer than 80 chars, really long-long-long-long-long-long title"
c.client2.UploadBuild(build2)
crash.BuildID = build2.ID
crash.ReproOpts = []byte("repro opts")
crash.ReproSyz = []byte("getpid()")
syzRepro := []byte(fmt.Sprintf("# https://testapp.appspot.com/bug?id=%v\n%s#%s\n%s",
dbBug0.keyHash(c.ctx), syzReproPrefix, crash.ReproOpts, crash.ReproSyz))
c.client2.ReportCrash(crash)
{
msg := c.pollEmailBug()
c.expectEQ(msg.Sender, sender0)
sender, _, err := email.RemoveAddrContext(msg.Sender)
c.expectOK(err)
_, dbCrash, dbBuild := c.loadBug(extBugID0)
reproSyzLink := externalLink(c.ctx, textReproSyz, dbCrash.ReproSyz)
crashLogLink := externalLink(c.ctx, textCrashLog, dbCrash.Log)
kernelConfigLink := externalLink(c.ctx, textKernelConfig, dbBuild.KernelConfig)
c.expectEQ(sender, fromAddr(c.ctx))
to := []string{
"always@cc.me",
"bugs2@syzkaller.com",
"bugs@syzkaller.com", // This is from incomingEmail.
"default@sender.com", // This is from incomingEmail.
"foo@bar.com",
c.config().Namespaces["test2"].Reporting[0].Config.(*EmailConfig).Email,
}
c.expectEQ(msg.To, to)
c.expectEQ(msg.Subject, "Re: "+crash.Title)
c.expectEQ(len(msg.Attachments), 0)
c.expectEQ(msg.Headers["In-Reply-To"], []string{"<1234>"})
c.expectEQ(msg.Body, fmt.Sprintf(`syzbot has found a reproducer for the following issue on:
HEAD commit: 101010101010 a really long title, longer than 80 chars, re..
git tree: repo10alias
console output: %[3]v
kernel config: %[4]v
dashboard link: https://testapp.appspot.com/bug?extid=%[1]v
compiler: compiler10
userspace arch: i386
syz repro: %[2]v
CC: [bar@foo.com foo@bar.com maintainers@repo10.org bugs@repo10.org]
IMPORTANT: if you fix the issue, please add the following tag to the commit:
Reported-by: syzbot+%[1]v@testapp.appspotmail.com
report1
---
If you want syzbot to run the reproducer, reply with:
#syz test: git://repo/address.git branch-or-commit-hash
If you attach or paste a git patch, syzbot will apply it before testing.
`, extBugID0, reproSyzLink, crashLogLink, kernelConfigLink))
c.checkURLContents(reproSyzLink, syzRepro)
c.checkURLContents(crashLogLink, crash.Log)
c.checkURLContents(kernelConfigLink, build2.KernelConfig)
}
// Now upstream the bug and check that it reaches the next reporting.
c.incomingEmail(sender0, "#syz upstream")
sender1, extBugID1 := "", ""
{
msg := c.pollEmailBug()
sender1 = msg.Sender
c.expectNE(sender1, sender0)
sender, extBugID, err := email.RemoveAddrContext(msg.Sender)
c.expectOK(err)
extBugID1 = extBugID
_, dbCrash, dbBuild := c.loadBug(extBugID1)
reproSyzLink := externalLink(c.ctx, textReproSyz, dbCrash.ReproSyz)
crashLogLink := externalLink(c.ctx, textCrashLog, dbCrash.Log)
kernelConfigLink := externalLink(c.ctx, textKernelConfig, dbBuild.KernelConfig)
c.expectEQ(sender, fromAddr(c.ctx))
c.expectEQ(msg.To, []string{
"always@cc.me",
"bar@foo.com",
"bugs@repo10.org",
"bugs@syzkaller.com",
"default@maintainers.com",
"foo@bar.com",
"maintainers@repo10.org",
})
c.expectEQ(msg.Subject, "[syzbot] "+crash.Title)
c.expectEQ(len(msg.Attachments), 0)
c.expectEQ(msg.Body, fmt.Sprintf(`Hello,
syzbot found the following issue on:
HEAD commit: 101010101010 a really long title, longer than 80 chars, re..
git tree: repo10alias
console output: %[3]v
kernel config: %[4]v
dashboard link: https://testapp.appspot.com/bug?extid=%[1]v
compiler: compiler10
userspace arch: i386
syz repro: %[2]v
CC: [bar@foo.com foo@bar.com maintainers@repo10.org bugs@repo10.org]
IMPORTANT: if you fix the issue, please add the following tag to the commit:
Reported-by: syzbot+%[1]v@testapp.appspotmail.com
report1
---
This report is generated by a bot. It may contain errors.
See https://goo.gl/tpsmEJ for more information about syzbot.
syzbot engineers can be reached at syzkaller@googlegroups.com.
syzbot will keep track of this issue. See:
https://goo.gl/tpsmEJ#status for how to communicate with syzbot.
If the report is already addressed, let syzbot know by replying with:
#syz fix: exact-commit-title
If you want syzbot to run the reproducer, reply with:
#syz test: git://repo/address.git branch-or-commit-hash
If you attach or paste a git patch, syzbot will apply it before testing.
If you want to overwrite report's subsystems, reply with:
#syz set subsystems: new-subsystem
(See the list of subsystem names on the web dashboard)
If the report is a duplicate of another one, reply with:
#syz dup: exact-subject-of-another-report
If you want to undo deduplication, reply with:
#syz undup`,
extBugID1, reproSyzLink, crashLogLink, kernelConfigLink))
c.checkURLContents(reproSyzLink, syzRepro)
c.checkURLContents(crashLogLink, crash.Log)
c.checkURLContents(kernelConfigLink, build2.KernelConfig)
}
// Model that somebody adds more emails to CC list.
incoming3 := fmt.Sprintf(`Sender: syzkaller@googlegroups.com
Date: Tue, 15 Aug 2017 14:59:00 -0700
Message-ID: <1234>
Subject: crash1
From: foo@bar.com
To: %v
CC: new@new.com, "another" <another@another.com>, bar@foo.com, bugs@syzkaller.com, foo@bar.com
Content-Type: text/plain
+more people
`, sender1)
_, err = c.POST("/_ah/mail/", incoming3)
c.expectOK(err)
// Now upload a C reproducer.
crash.ReproC = []byte("int main() {}")
crash.Maintainers = []string{"\"qux\" <qux@qux.com>"}
c.client2.ReportCrash(crash)
cRepro := []byte(fmt.Sprintf("// https://testapp.appspot.com/bug?id=%v\n%s",
dbBug0.keyHash(c.ctx), crash.ReproC))
{
msg := c.pollEmailBug()
c.expectEQ(msg.Sender, sender1)
sender, _, err := email.RemoveAddrContext(msg.Sender)
c.expectOK(err)
_, dbCrash, dbBuild := c.loadBug(extBugID1)
reproCLink := externalLink(c.ctx, textReproC, dbCrash.ReproC)
reproSyzLink := externalLink(c.ctx, textReproSyz, dbCrash.ReproSyz)
crashLogLink := externalLink(c.ctx, textCrashLog, dbCrash.Log)
kernelConfigLink := externalLink(c.ctx, textKernelConfig, dbBuild.KernelConfig)
c.expectEQ(sender, fromAddr(c.ctx))
c.expectEQ(msg.To, []string{
"always@cc.me",
"another@another.com", "bar@foo.com", "bugs@repo10.org",
"bugs@syzkaller.com", "default@maintainers.com", "foo@bar.com",
"maintainers@repo10.org", "new@new.com", "qux@qux.com"})
c.expectEQ(msg.Subject, "Re: [syzbot] "+crash.Title)
c.expectEQ(len(msg.Attachments), 0)
c.expectEQ(msg.Body, fmt.Sprintf(`syzbot has found a reproducer for the following issue on:
HEAD commit: 101010101010 a really long title, longer than 80 chars, re..
git tree: repo10alias
console output: %[4]v
kernel config: %[5]v
dashboard link: https://testapp.appspot.com/bug?extid=%[1]v
compiler: compiler10
userspace arch: i386
syz repro: %[3]v
C reproducer: %[2]v
CC: [qux@qux.com maintainers@repo10.org bugs@repo10.org]
IMPORTANT: if you fix the issue, please add the following tag to the commit:
Reported-by: syzbot+%[1]v@testapp.appspotmail.com
report1
---
If you want syzbot to run the reproducer, reply with:
#syz test: git://repo/address.git branch-or-commit-hash
If you attach or paste a git patch, syzbot will apply it before testing.
`, extBugID1, reproCLink, reproSyzLink, crashLogLink, kernelConfigLink))
c.checkURLContents(reproCLink, cRepro)
c.checkURLContents(reproSyzLink, syzRepro)
c.checkURLContents(crashLogLink, crash.Log)
c.checkURLContents(kernelConfigLink, build2.KernelConfig)
}
// Send an invalid command.
incoming4 := fmt.Sprintf(`Sender: syzkaller@googlegroups.com
Date: Tue, 15 Aug 2017 14:59:00 -0700
Message-ID: <abcdef>
Subject: title1
From: foo@bar.com
To: %v
Content-Type: text/plain
#syz bad-command
`, sender1)
_, err = c.POST("/_ah/mail/", incoming4)
c.expectOK(err)
{
msg := c.pollEmailBug()
c.expectEQ(msg.To, []string{"foo@bar.com"})
c.expectEQ(msg.Subject, "Re: title1")
c.expectEQ(msg.Headers["In-Reply-To"], []string{"<abcdef>"})
if !strings.Contains(msg.Body, `> #syz bad-command
unknown command "bad-command"
`) {
t.Fatal("no unknown command reply for bad command")
}
}
// Now mark the bug as fixed.
c.incomingEmail(sender1, "#syz fix: some: commit title",
EmailOptCC([]string{"bugs@syzkaller.com", "default@maintainers.com"}),
EmailOptSubject("fix bug title"))
// Check that the commit is now passed to builders.
builderPollResp, _ := c.client2.BuilderPoll(build.Manager)
c.expectEQ(len(builderPollResp.PendingCommits), 1)
c.expectEQ(builderPollResp.PendingCommits[0], "some: commit title")
build3 := testBuild(3)
build3.Manager = build.Manager
build3.Commits = []string{"some: commit title"}
c.client2.UploadBuild(build3)
build4 := testBuild(4)
build4.Manager = build2.Manager
build4.Commits = []string{"some: commit title"}
c.client2.UploadBuild(build4)
// New crash must produce new bug in the first reporting.
c.client2.ReportCrash(crash)
{
msg := c.pollEmailBug()
c.expectEQ(msg.Subject, crash.Title+" (2)")
c.expectNE(msg.Sender, sender0)
}
}
// Bug must not be mailed to maintainers if maintainers list is empty.
func TestEmailNoMaintainers(t *testing.T) {
c := NewCtx(t)
defer c.Close()
build := testBuild(1)
c.client2.UploadBuild(build)
crash := testCrash(build, 1)
c.client2.ReportCrash(crash)
sender := c.pollEmailBug().Sender
incoming1 := fmt.Sprintf(`Sender: syzkaller@googlegroups.com
Date: Tue, 15 Aug 2017 14:59:00 -0700
Message-ID: <1234>
Subject: crash1
From: %v
To: foo@bar.com
Content-Type: text/plain
#syz upstream
`, sender)
_, err := c.POST("/_ah/mail/", incoming1)
c.expectOK(err)
}
// Basic dup scenario: mark one bug as dup of another.
func TestEmailDup(t *testing.T) {
c := NewCtx(t)
defer c.Close()
build := testBuild(1)
c.client2.UploadBuild(build)
crash1 := testCrash(build, 1)
crash1.Title = "BUG: slightly more elaborate title"
c.client2.ReportCrash(crash1)
crash2 := testCrash(build, 2)
crash2.Title = "KASAN: another title"
c.client2.ReportCrash(crash2)
msg1 := c.pollEmailBug()
msg2 := c.pollEmailBug()
// Dup crash2 to crash1.
c.incomingEmail(msg2.Sender, "#syz dup: BUG: slightly more elaborate title")
c.expectNoEmail()
// Second crash happens again.
crash2.ReproC = []byte("int main() {}")
c.client2.ReportCrash(crash2)
c.expectNoEmail()
// Now close the original bug, and check that new bugs for dup are now created.
c.incomingEmail(msg1.Sender, "#syz invalid")
// "uncc" command must not trugger error reply even for closed bug.
c.incomingEmail(msg1.Sender, "#syz uncc", EmailOptCC(nil))
c.expectNoEmail()
// New crash must produce new bug in the first reporting.
c.client2.ReportCrash(crash2)
{
msg := c.pollEmailBug()
c.expectEQ(msg.Subject, crash2.Title+" (2)")
}
}
func TestEmailDup2(t *testing.T) {
for i := 0; i < 4; i++ {
t.Run(fmt.Sprint(i), func(t *testing.T) {
c := NewCtx(t)
defer c.Close()
build := testBuild(1)
c.client2.UploadBuild(build)
crash1 := testCrash(build, 1)
crash1.Title = "BUG: something bad"
c.client2.ReportCrash(crash1)
msg1 := c.pollEmailBug()
c.incomingEmail(msg1.Sender, "#syz upstream")
msg1 = c.pollEmailBug()
c.expectEQ(msg1.Subject, "[syzbot] BUG: something bad")
crash2 := testCrash(build, 2)
crash2.Title = "KASAN: another bad thing"
c.client2.ReportCrash(crash2)
msg2 := c.pollEmailBug()
c.incomingEmail(msg2.Sender, "#syz upstream")
msg2 = c.pollEmailBug()
c.expectEQ(msg2.Subject, "[syzbot] KASAN: another bad thing")
cc := EmailOptCC([]string{"bugs@syzkaller.com", "default@maintainers.com"})
switch i {
case 0:
c.incomingEmail(msg2.Sender, "#syz dup: BUG: something bad", cc)
case 1:
c.incomingEmail(msg2.Sender, "#syz dup: [syzbot] BUG: something bad", cc)
case 2:
c.incomingEmail(msg2.Sender, "#syz dup: [syzbot] [subsystemA?] BUG: something bad", cc)
default:
c.incomingEmail(msg2.Sender, "#syz dup: syzbot: BUG: something bad", cc)
reply := c.pollEmailBug()
c.expectTrue(strings.Contains(reply.Body, "can't find the dup bug"))
}
})
}
}
func TestEmailUndup(t *testing.T) {
c := NewCtx(t)
defer c.Close()
build := testBuild(1)
c.client2.UploadBuild(build)
crash1 := testCrash(build, 1)
crash1.Title = "BUG: slightly more elaborate title"
c.client2.ReportCrash(crash1)
crash2 := testCrash(build, 2)
crash1.Title = "KASAN: another title"
c.client2.ReportCrash(crash2)
msg1 := c.pollEmailBug()
msg2 := c.pollEmailBug()
// Dup crash2 to crash1.
c.incomingEmail(msg2.Sender, "#syz dup BUG: slightly more elaborate title")
c.expectNoEmail()
// Undup crash2.
c.incomingEmail(msg2.Sender, "#syz undup")
c.expectNoEmail()
// Now close the original bug, and check that new crashes for the dup does not create bugs.
c.incomingEmail(msg1.Sender, "#syz invalid")
c.client2.ReportCrash(crash2)
c.expectNoEmail()
}
func TestEmailCrossReportingDup(t *testing.T) {
c := NewCtx(t)
defer c.Close()
build := testBuild(1)
c.client2.UploadBuild(build)
tests := []struct {
bug int
dup int
result bool
}{
{0, 0, true},
{0, 1, false},
{0, 2, false},
{1, 0, false},
{1, 1, true},
{1, 2, true},
{2, 0, false},
{2, 1, false},
{2, 2, true},
}
for i, test := range tests {
t.Logf("duping %v->%v, expect %v", test.bug, test.dup, test.result)
c.advanceTime(24 * time.Hour) // to not hit email limit per day
crash1 := testCrash(build, 1)
crash1.Title = fmt.Sprintf("bug_%v", i)
c.client2.ReportCrash(crash1)
bugSender := c.pollEmailBug().Sender
cc := EmailOptCC([]string{"default@maintainers.com", "test@syzkaller.com",
"bugs@syzkaller.com", "default2@maintainers.com", "bugs2@syzkaller.com"})
for j := 0; j < test.bug; j++ {
c.incomingEmail(bugSender, "#syz upstream", cc)
bugSender = c.pollEmailBug().Sender
}
crash2 := testCrash(build, 2)
crash2.Title = fmt.Sprintf("dup_%v", i)
c.client2.ReportCrash(crash2)
dupSender := c.pollEmailBug().Sender
for j := 0; j < test.dup; j++ {
c.incomingEmail(dupSender, "#syz upstream", cc)
dupSender = c.pollEmailBug().Sender
}
c.incomingEmail(bugSender, "#syz dup: "+crash2.Title, cc)
if test.result {
c.expectNoEmail()
} else {
msg := c.pollEmailBug()
if !strings.Contains(msg.Body, "> #syz dup:") ||
!strings.Contains(msg.Body, "Can't dup bug to a bug in different reporting") {
c.t.Fatalf("bad reply body:\n%v", msg.Body)
}
}
}
}
func TestEmailErrors(t *testing.T) {
c := NewCtx(t)
defer c.Close()
// No reply for email without bug hash and no commands.
c.incomingEmail("syzbot@testapp.appspotmail.com", "Investment Proposal")
c.expectNoEmail()
// If email contains a command we need to reply.
c.incomingEmail("syzbot@testapp.appspotmail.com", "#syz invalid")
reply := c.pollEmailBug()
c.expectEQ(reply.To, []string{"default@sender.com"})
c.expectEQ(reply.Body, `> #syz invalid
I see the command but can't find the corresponding bug.
Please resend the email to syzbot+HASH@testapp.appspotmail.com address
that is the sender of the bug report (also present in the Reported-by tag).
`)
c.incomingEmail("syzbot+123@testapp.appspotmail.com", "#syz invalid")
reply = c.pollEmailBug()
c.expectEQ(reply.Body, `> #syz invalid
I see the command but can't find the corresponding bug.
The email is sent to syzbot+HASH@testapp.appspotmail.com address
but the HASH does not correspond to any known bug.
Please double check the address.
`)
}
func TestEmailFailedBuild(t *testing.T) {
c := NewCtx(t)
defer c.Close()
build := testBuild(1)
c.client2.UploadBuild(build)
failedBuild := testBuild(10)
failedBuild.KernelRepo, failedBuild.KernelBranch = testConfig.Namespaces["test2"].mainRepoBranch()
failedBuild.KernelCommit = "kern2"
failedBuild.KernelCommitTitle = "failed build 1"
failedBuild.SyzkallerCommit = "syz2"
buildErrorReq := &dashapi.BuildErrorReq{
Build: *failedBuild,
Crash: dashapi.Crash{
Title: "failed build 1",
Report: []byte("report line 1\nreport line 2\n"),
Log: []byte("log line 1\nlog line 2\n"),
Maintainers: []string{"maintainer@crash"},
},
}
c.expectOK(c.client2.ReportBuildError(buildErrorReq))
msg := c.pollEmailBug()
sender, extBugID, err := email.RemoveAddrContext(msg.Sender)
c.expectOK(err)
_, dbCrash, dbBuild := c.loadBug(extBugID)
crashLogLink := externalLink(c.ctx, textCrashLog, dbCrash.Log)
kernelConfigLink := externalLink(c.ctx, textKernelConfig, dbBuild.KernelConfig)
c.expectEQ(sender, fromAddr(c.ctx))
c.expectEQ(msg.To, []string{
"always@cc.me",
"test@syzkaller.com",
})
c.expectEQ(msg.Subject, buildErrorReq.Crash.Title)
c.expectEQ(len(msg.Attachments), 0)
c.expectEQ(msg.Body, fmt.Sprintf(`Hello,
syzbot found the following issue on:
HEAD commit: kern2 failed build 1
git tree: repo10alias
console output: %[2]v
kernel config: %[3]v
dashboard link: https://testapp.appspot.com/bug?extid=%[1]v
compiler: compiler10
CC: [maintainer@crash maintainers@repo10.org bugs@repo10.org build-maintainers@repo10.org]
IMPORTANT: if you fix the issue, please add the following tag to the commit:
Reported-by: syzbot+%[1]v@testapp.appspotmail.com
report line 1
report line 2
---
This report is generated by a bot. It may contain errors.
See https://goo.gl/tpsmEJ for more information about syzbot.
syzbot engineers can be reached at syzkaller@googlegroups.com.
syzbot will keep track of this issue. See:
https://goo.gl/tpsmEJ#status for how to communicate with syzbot.
If the report is already addressed, let syzbot know by replying with:
#syz fix: exact-commit-title
If you want to overwrite report's subsystems, reply with:
#syz set subsystems: new-subsystem
(See the list of subsystem names on the web dashboard)
If the report is a duplicate of another one, reply with:
#syz dup: exact-subject-of-another-report
If you want to undo deduplication, reply with:
#syz undup`,
extBugID, crashLogLink, kernelConfigLink))
}
// Test for unfix command which should unmark a bug as fixed by any commits.
func TestEmailUnfix(t *testing.T) {
c := NewCtx(t)
defer c.Close()
build := testBuild(1)
c.client2.UploadBuild(build)
crash := testCrash(build, 1)
c.client2.ReportCrash(crash)
msg := c.pollEmailBug()
c.incomingEmail(msg.Sender, "#syz fix: some commit")
c.expectNoEmail()
c.incomingEmail(msg.Sender, "#syz unfix")
c.expectNoEmail()
build2 := testBuild(2)
build2.Manager = build.Manager
build2.Commits = []string{"some commit"}
c.client2.UploadBuild(build2)
// The bug should be still unfixed, since we unmarked it.
c.client2.ReportCrash(crash)
c.expectNoEmail()
}
func TestEmailManagerCC(t *testing.T) {
c := NewCtx(t)
defer c.Close()
// Test that we add manager CC.
build1 := testBuild(1)
build1.Manager = specialCCManager
c.client2.UploadBuild(build1)
crash := testCrash(build1, 1)
c.client2.ReportCrash(crash)
msg := c.pollEmailBug()
c.expectEQ(msg.To, []string{
"always@manager.org",
"test@syzkaller.com",
})
// Test that we add manager maintainers.
c.incomingEmail(msg.Sender, "#syz upstream")
msg = c.pollEmailBug()
c.expectEQ(msg.To, []string{
"always@manager.org",
"bugs@syzkaller.com",
"default@maintainers.com",
"maintainers@manager.org",
})
// Test that we add manager build maintainers.
build2 := testBuild(2)
build2.Manager = specialCCManager
buildErrorReq := &dashapi.BuildErrorReq{
Build: *build2,
Crash: dashapi.Crash{
Title: "failed build 1",
Report: []byte("report\n"),
Log: []byte("log\n"),
},
}
c.expectOK(c.client2.ReportBuildError(buildErrorReq))
msg = c.pollEmailBug()
c.expectEQ(msg.To, []string{
"always@manager.org",
"test@syzkaller.com",
})
c.incomingEmail(msg.Sender, "#syz upstream")
msg = c.pollEmailBug()
c.expectEQ(msg.To, []string{
"always@manager.org",
"bugs@syzkaller.com",
"build-maintainers@manager.org",
"default@maintainers.com",
"maintainers@manager.org",
})
// Test that we don't add manager CC when the crash happened on 1+ managers.
build3 := testBuild(3)
build1.Manager = specialCCManager
c.client2.UploadBuild(build3)
crash = testCrash(build3, 2)
c.client2.ReportCrash(crash)
build4 := testBuild(4)
c.client2.UploadBuild(build4)
crash = testCrash(build4, 2)
c.client2.ReportCrash(crash)
msg = c.pollEmailBug()
c.expectEQ(msg.To, []string{
"test@syzkaller.com",
})
c.incomingEmail(msg.Sender, "#syz upstream")
msg = c.pollEmailBug()
c.expectEQ(msg.To, []string{
"bugs@syzkaller.com",
"default@maintainers.com",
})
}
func TestStraceReport(t *testing.T) {
c := NewCtx(t)
defer c.Close()
build := testBuild(1)
c.client2.UploadBuild(build)
crash := testCrash(build, 1)
crash.Flags = dashapi.CrashUnderStrace
crash.Maintainers = []string{`"Foo Bar" <foo@bar.com>`, `bar@foo.com`, `idont@want.EMAILS`}
c.client2.ReportCrash(crash)
// Report the crash over email and check all fields.
msg := c.pollEmailBug()
_, extBugID, err := email.RemoveAddrContext(msg.Sender)
c.expectOK(err)
_, dbCrash, dbBuild := c.loadBug(extBugID)
crashLogLink := externalLink(c.ctx, textCrashLog, dbCrash.Log)
kernelConfigLink := externalLink(c.ctx, textKernelConfig, dbBuild.KernelConfig)
c.expectEQ(msg.Body, fmt.Sprintf(`Hello,
syzbot found the following issue on:
HEAD commit: 111111111111 kernel_commit_title1
git tree: repo1 branch1
console+strace: %[2]v
kernel config: %[3]v
dashboard link: https://testapp.appspot.com/bug?extid=%[1]v
compiler: compiler1
CC: [bar@foo.com foo@bar.com idont@want.EMAILS]
Unfortunately, I don't have any reproducer for this issue yet.
IMPORTANT: if you fix the issue, please add the following tag to the commit:
Reported-by: syzbot+%[1]v@testapp.appspotmail.com
report1
---
This report is generated by a bot. It may contain errors.
See https://goo.gl/tpsmEJ for more information about syzbot.
syzbot engineers can be reached at syzkaller@googlegroups.com.
syzbot will keep track of this issue. See:
https://goo.gl/tpsmEJ#status for how to communicate with syzbot.
If the report is already addressed, let syzbot know by replying with:
#syz fix: exact-commit-title
If you want to overwrite report's subsystems, reply with:
#syz set subsystems: new-subsystem
(See the list of subsystem names on the web dashboard)
If the report is a duplicate of another one, reply with:
#syz dup: exact-subject-of-another-report
If you want to undo deduplication, reply with:
#syz undup`,
extBugID, crashLogLink, kernelConfigLink))
c.checkURLContents(crashLogLink, crash.Log)
}
func TestSubjectTitleParser(t *testing.T) {
tests := []struct {
inSubject string
outTitle string
outSeq int64
}{
{
inSubject: "Re: kernel BUG in blk_mq_dispatch_rq_list (4)",
outTitle: "kernel BUG in blk_mq_dispatch_rq_list",
outSeq: 3,
},
{
inSubject: "Re: [syzbot] kernel BUG in blk_mq_dispatch_rq_list (4)",
outTitle: "kernel BUG in blk_mq_dispatch_rq_list",
outSeq: 3,
},
{
// Make sure we always take the (number) at the end.
inSubject: "Re: kernel BUG in blk_mq_dispatch_rq_list(6) (4)",
outTitle: "kernel BUG in blk_mq_dispatch_rq_list(6)",
outSeq: 3,
},
{
inSubject: "RE: kernel BUG in blk_mq_dispatch_rq_list",
outTitle: "kernel BUG in blk_mq_dispatch_rq_list",
outSeq: 0,
},
{
// Make sure we trim the title.
inSubject: "RE: kernel BUG in blk_mq_dispatch_rq_list ",
outTitle: "kernel BUG in blk_mq_dispatch_rq_list",
outSeq: 0,
},
{
inSubject: "Re: ",
outTitle: "",
outSeq: 0,
},
{
inSubject: "Re: [syzbot]",
outTitle: "",
outSeq: 0,
},
{
inSubject: "Re: [syzbot] [subsystemA?]",
outTitle: "",
outSeq: 0,
},
{
// Make sure we delete filesystem tags.
inSubject: "Re: [syzbot] [ntfs3?] [ext4?] kernel BUG in blk_mq_dispatch_rq_list (4)",
outTitle: "kernel BUG in blk_mq_dispatch_rq_list",
outSeq: 3,
},
}
p := makeSubjectTitleParser(context.Background())
for _, test := range tests {
title, seq, err := p.parseTitle(test.inSubject)
if test.outTitle == "" {
if err == nil {
t.Fatalf("subj: %q, expected error, got none (%q)", test.inSubject, title)
}
} else if title != test.outTitle {
t.Fatalf("subj: %q, expected title=%q, got %q", test.inSubject, test.outTitle, title)
} else if seq != test.outSeq {
t.Fatalf("subj: %q, expected seq=%q, got %q", test.inSubject, test.outSeq, seq)
}
}
}
func TestBugFromSubjectInference(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.makeClient(clientPublicEmail, keyPublicEmail, true)
client2 := c.makeClient(clientPublicEmail2, keyPublicEmail2, true)
build := testBuild(1)
client.UploadBuild(build)
build2 := testBuild(2)
client2.UploadBuild(build2)
const crashTitle = "WARNING in corrupted"
upstreamCrash := func(client *apiClient, build *dashapi.Build, title string) string {
// Upload some garbage crashes.
crash := testCrash(build, 1)
crash.Title = title
crash.Log = []byte(fmt.Sprintf("log%v", title))
crash.Maintainers = []string{"maintainer@kernel.org"}
client.ReportCrash(crash)
sender := c.pollEmailBug().Sender
c.incomingEmail(sender, "#syz upstream\n")
return c.pollEmailBug().Sender
}
upstreamCrash(client, build, "unrelated crash")
origSender := upstreamCrash(client, build, crashTitle)
upstreamCrash(client, build, "unrelated crash 2")
mailingList := "<" + c.config().Namespaces["access-public-email"].Reporting[0].Config.(*EmailConfig).Email + ">"
// First try to ping some non-existing bug.
subject := "Re: unknown-bug"
c.incomingEmail("bugs@syzkaller.com",
syzTestGitBranchSamplePatch,
EmailOptOrigFrom("test@requester.com"),
EmailOptFrom(mailingList), EmailOptSubject(subject),
)
syzbotReply := c.pollEmailBug()
c.expectNE(syzbotReply.Sender, origSender)
c.expectEQ(strings.Contains(syzbotReply.Body, "can't find the corresponding bug"), true)
// Now try to test the exiting bug, but with the wrong mailing list.
subject = "Re: " + crashTitle
c.incomingEmail("bugs@syzkaller.com",
syzTestGitBranchSamplePatch,
EmailOptOrigFrom("test@requester.com"),
EmailOptFrom("<unknown-list@syzkaller.com>"), EmailOptSubject(subject),
)
body := c.pollEmailBug().Body
c.expectEQ(strings.Contains(body, "can't find the corresponding bug"), true)
// Now try to test the exiting bug with the proper mailing list.
c.incomingEmail("bugs@syzkaller.com",
syzTestGitBranchSamplePatch,
EmailOptFrom(mailingList), EmailOptOrigFrom("test@requester.com"),
EmailOptSubject(subject),
)
syzbotReply = c.pollEmailBug()
c.expectEQ(syzbotReply.Sender, origSender)
c.expectEQ(strings.Contains(syzbotReply.Body, "This crash does not have a reproducer"), true)
// Test that a different type of email headers is also parsed fine.
c.incomingEmail("bugs@syzkaller.com",
syzTestGitBranchSamplePatch,
EmailOptSender(mailingList), EmailOptFrom("test@requester.com"),
EmailOptSubject(subject),
)
body = c.pollEmailBug().Body
c.expectEQ(strings.Contains(body, "This crash does not have a reproducer"), true)
// Upstream a same-titled bug in another namespace.
upstreamCrash(client2, build2, crashTitle)
// Ensure that the inference fails with the proper title.
c.incomingEmail("bugs@syzkaller.com",
syzTestGitBranchSamplePatch,
EmailOptSender(mailingList), EmailOptFrom("test@requester.com"),
EmailOptSubject(subject),
)
body = c.pollEmailBug().Body
c.expectEQ(strings.Contains(body, "Several bugs with the exact same title"), true)
// Close the existing bug.
c.incomingEmail("bugs@syzkaller.com", "#syz invalid",
EmailOptFrom("test@requester.com"), EmailOptSubject(subject),
EmailOptCC([]string{mailingList, origSender}),
)
c.expectNoEmail()
// Create the (2) of the bug.
upstreamCrash(client, build, crashTitle)
// Make sure syzbot can understand the (2) version.
subject = "Re: " + crashTitle + " (2)"
c.incomingEmail("bugs@syzkaller.com",
syzTestGitBranchSamplePatch,
EmailOptFrom(mailingList), EmailOptOrigFrom("<test@requester.com>"),
EmailOptSubject(subject),
)
email := c.pollEmailBug()
c.expectEQ(email.To, []string{"test@requester.com"})
c.expectEQ(strings.Contains(email.Body, "This crash does not have a reproducer"), true)
}
// nolint: funlen
func TestEmailLinks(t *testing.T) {
c := NewCtx(t)
defer c.Close()
build := testBuild(1)
c.client2.UploadBuild(build)
crash := testCrash(build, 1)
crash.Maintainers = []string{`"Foo Bar" <foo@bar.com>`}
c.client2.ReportCrash(crash)
// Report the crash over email.
msg := c.pollEmailBug()
// Emulate receive of the report from a mailing list.
// This should update the bug with the link/Message-ID.
// nolint: lll
incoming1 := fmt.Sprintf(`Sender: syzkaller@googlegroups.com
Date: Tue, 15 Aug 2017 14:59:00 -0700
Message-ID: <1234>
Subject: crash1
From: %v
To: foo@bar.com
Content-Type: text/plain
Hello
syzbot will keep track of this issue.
If you forgot to add the Reported-by tag, once the fix for this bug is merged
into any tree, please reply to this email with:
#syz fix: exact-commit-title
To mark this as a duplicate of another syzbot report, please reply with:
#syz dup: exact-subject-of-another-report
If it's a one-off invalid bug report, please reply with:
#syz invalid
--
You received this message because you are subscribed to the Google Groups "syzkaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email to syzkaller+unsubscribe@googlegroups.com.
To post to this group, send email to syzkaller@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/syzkaller/1234@google.com.
For more options, visit https://groups.google.com/d/optout.
`, msg.Sender)
_, err := c.POST("/_ah/mail/", incoming1)
c.expectOK(err)
_, extBugID, err := email.RemoveAddrContext(msg.Sender)
c.expectOK(err)
// Make sure Link is set for the last Reporting.
dbBug, _, _ := c.loadBug(extBugID)
reporting := lastReportedReporting(dbBug)
c.expectNE(reporting.Link, "")
}
func TestEmailPatchTestingAccess(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.client2
build := testBuild(1)
client.UploadBuild(build)
crash := testCrash(build, 1)
client.ReportCrash(crash)
sender := c.pollEmailBug().Sender
c.incomingEmail(sender,
syzTestGitBranchSamplePatch,
EmailOptFrom("user@kernel.org"), EmailOptSubject("Re: "+crash.Title),
)
// We expect syzbot to just ignore this patch testing request.
c.expectNoEmail()
// The patch test job should also not be created.
pollResp := client.pollJobs(build.Manager)
c.expectEQ(pollResp.ID, "")
}
func TestEmailSetInvalidSubsystems(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.makeClient(clientPublicEmail, keyPublicEmail, true)
mailingList := c.config().Namespaces["access-public-email"].Reporting[0].Config.(*EmailConfig).Email
build := testBuild(1)
client.UploadBuild(build)
crash := testCrash(build, 1)
client.ReportCrash(crash)
c.incomingEmail(c.pollEmailBug().Sender, "#syz upstream\n")
sender := c.pollEmailBug().Sender
// Invalid subsystem name.
c.incomingEmail(sender, "#syz set subsystems: non-existent",
EmailOptFrom("test@requester.com"), EmailOptCC([]string{mailingList}))
c.expectEQ(c.pollEmailBug().Body, `> #syz set subsystems: non-existent
The specified label value is incorrect.
"non-existent" is not among the allowed values.
Please use one of the supported label values.
The following labels are suported:
missing-backport, no-reminders, prio: {low, normal, high}, subsystems: {.. see below ..}
The list of subsystems: https://testapp.appspot.com/access-public-email/subsystems?all=true
`)
}
func TestEmailSetSubsystems(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.makeClient(clientPublicEmail, keyPublicEmail, true)
mailingList := c.config().Namespaces["access-public-email"].Reporting[0].Config.(*EmailConfig).Email
build := testBuild(1)
client.UploadBuild(build)
crash := testCrash(build, 1)
client.ReportCrash(crash)
c.incomingEmail(c.pollEmailBug().Sender, "#syz upstream\n")
sender := c.pollEmailBug().Sender
_, extBugID, err := email.RemoveAddrContext(sender)
c.expectOK(err)
// At the beginning, there are no subsystems.
expectLabels(t, client, extBugID)
// Set one subsystem.
c.incomingEmail(sender, "#syz set subsystems: subsystemA\n",
EmailOptFrom("test@requester.com"), EmailOptCC([]string{mailingList}))
expectLabels(t, client, extBugID, "subsystems:subsystemA")
// Set two subsystems.
c.incomingEmail(sender, "#syz set subsystems: subsystemA, subsystemB\n",
EmailOptFrom("test@requester.com"), EmailOptCC([]string{mailingList}))
expectLabels(t, client, extBugID, "subsystems:subsystemA", "subsystems:subsystemB")
}
func TestEmailBugLabels(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.makeClient(clientPublicEmail, keyPublicEmail, true)
mailingList := c.config().Namespaces["access-public-email"].Reporting[0].Config.(*EmailConfig).Email
build := testBuild(1)
client.UploadBuild(build)
crash := testCrash(build, 1)
client.ReportCrash(crash)
sender := c.pollEmailBug().Sender
_, extBugID, err := email.RemoveAddrContext(sender)
c.expectOK(err)
// At the beginning, there are no tags.
expectLabels(t, client, extBugID)
// Set a tag.
c.incomingEmail(sender, "#syz set prio: low\n",
EmailOptFrom("test@requester.com"), EmailOptCC([]string{mailingList}))
expectLabels(t, client, extBugID, "prio:low")
// Notice that medium prio supercedes low prio since they are of the oneOf type.
c.incomingEmail(sender, "#syz set prio: high\n",
EmailOptFrom("test@requester.com"), EmailOptCC([]string{mailingList}))
expectLabels(t, client, extBugID, "prio:high")
// Also set a flag label.
c.incomingEmail(sender, "#syz set no-reminders\n",
EmailOptFrom("test@requester.com"), EmailOptCC([]string{mailingList}))
expectLabels(t, client, extBugID, "prio:high", "no-reminders")
// Remove a tag.
c.incomingEmail(sender, "#syz unset prio\n",
EmailOptFrom("test@requester.com"), EmailOptCC([]string{mailingList}))
expectLabels(t, client, extBugID, "no-reminders")
// Remove another tag.
c.incomingEmail(sender, "#syz unset no-reminders\n",
EmailOptFrom("test@requester.com"), EmailOptCC([]string{mailingList}))
expectLabels(t, client, extBugID)
}
func TestInvalidEmailBugLabels(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.makeClient(clientPublicEmail, keyPublicEmail, true)
mailingList := c.config().Namespaces["access-public-email"].Reporting[0].Config.(*EmailConfig).Email
build := testBuild(1)
client.UploadBuild(build)
crash := testCrash(build, 1)
client.ReportCrash(crash)
c.incomingEmail(c.pollEmailBug().Sender, "#syz upstream\n")
sender := c.pollEmailBug().Sender
// Non-existing label.
c.incomingEmail(sender, "#syz set label: tag",
EmailOptFrom("test@requester.com"), EmailOptCC([]string{mailingList}))
body := c.pollEmailBug().Body
c.expectEQ(body, `> #syz set label: tag
The specified label "label" is unknown.
Please use one of the supported labels.
The following labels are suported:
missing-backport, no-reminders, prio: {low, normal, high}, subsystems: {.. see below ..}
The list of subsystems: https://testapp.appspot.com/access-public-email/subsystems?all=true
`)
// Existing label, wrong value.
c.incomingEmail(sender, "#syz set prio: unknown\n",
EmailOptFrom("test@requester.com"), EmailOptCC([]string{mailingList}))
c.expectEQ(strings.Contains(c.pollEmailBug().Body,
`The specified label value is incorrect.
"unknown" is not among the allowed values`), true)
// Existing label, too many values.
c.incomingEmail(sender, "#syz set prio: low, high\n",
EmailOptFrom("test@requester.com"), EmailOptCC([]string{mailingList}))
c.expectEQ(strings.Contains(c.pollEmailBug().Body,
`The specified label value is incorrect.
You must specify only one of the allowed values.`), true)
// Removing a non-existing label.
c.incomingEmail(sender, "#syz unset tag2\n",
EmailOptFrom("test@requester.com"), EmailOptCC([]string{mailingList}))
syzbotReply := c.pollEmailBug()
c.expectEQ(strings.Contains(syzbotReply.Body, "The following labels did not exist: tag2"), true)
}
func expectLabels(t *testing.T, client *apiClient, extID string, labels ...string) {
t.Helper()
bug, _, _ := client.Ctx.loadBug(extID)
names := []string{}
for _, item := range bug.Labels {
names = append(names, item.String())
}
assert.ElementsMatch(t, names, labels)
}
var forwardEmailConfig = EmailConfig{
Email: "test@syzkaller.com",
HandleListEmails: true,
SubjectPrefix: "[syzbot]",
MailMaintainers: true,
DefaultMaintainers: []string{"some@list.com"},
}
func TestSingleListForward(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.makeClient(clientPublicEmail, keyPublicEmail, true)
c.updateReporting("access-public-email", "access-public-email-reporting1",
func(r Reporting) Reporting {
r.Config = &forwardEmailConfig
return r
})
build := testBuild(1)
client.UploadBuild(build)
crash := testCrash(build, 1)
client.ReportCrash(crash)
sender := c.pollEmailBug().Sender
c.incomingEmail(sender, "#syz fix: some: commit title",
EmailOptCC([]string{"some@list.com"}), EmailOptSubject("fix bug title"))
forwarded := c.pollEmailBug()
c.expectEQ(forwarded.Subject, "[syzbot] fix bug title")
c.expectEQ(forwarded.Sender, sender)
c.expectEQ(forwarded.To, []string{"test@syzkaller.com"})
c.expectEQ(len(forwarded.Cc), 0)
c.expectEQ(forwarded.Body, `For archival purposes, forwarding an incoming command email to
test@syzkaller.com.
***
Subject: fix bug title
Author: default@sender.com
#syz fix: some: commit title
`)
}
func TestTwoListsForward(t *testing.T) {
c := NewCtx(t)
defer c.Close()
client := c.makeClient(clientPublicEmail, keyPublicEmail, true)
c.updateReporting("access-public-email", "access-public-email-reporting1",
func(r Reporting) Reporting {
r.Config = &forwardEmailConfig
return r
})
build := testBuild(1)
client.UploadBuild(build)
crash := testCrash(build, 1)
client.ReportCrash(crash)
sender := c.pollEmailBug().Sender
c.incomingEmail(sender, "#syz fix: some: commit title",
EmailOptCC(nil), EmailOptSubject("fix bug title"))
forwarded := c.pollEmailBug()
c.expectEQ(forwarded.Subject, "[syzbot] fix bug title")
c.expectEQ(forwarded.Sender, sender)
c.expectEQ(forwarded.To, []string{"some@list.com", "test@syzkaller.com"})
c.expectEQ(len(forwarded.Cc), 0)
c.expectEQ(forwarded.Body, `For archival purposes, forwarding an incoming command email to
some@list.com, test@syzkaller.com.
***
Subject: fix bug title
Author: default@sender.com
#syz fix: some: commit title
`)
}
|