2023-02-03 20:05:04 +01:00
// Copyright (C) 2023 Opsmate, Inc.
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License, v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// This software is distributed WITHOUT A WARRANTY OF ANY KIND.
// See the Mozilla Public License for details.
package monitor
import (
"fmt"
"strings"
)
type malformedLogEntry struct {
2023-02-19 03:09:04 +01:00
Entry * logEntry
Error string
EntryPath string
TextPath string
}
func ( malformed * malformedLogEntry ) entryJSON ( ) any {
return struct {
LeafInput [ ] byte ` json:"leaf_input" `
ExtraData [ ] byte ` json:"extra_data" `
} {
LeafInput : malformed . Entry . LeafInput ,
ExtraData : malformed . Entry . ExtraData ,
}
}
func ( malformed * malformedLogEntry ) save ( ) error {
if err := writeJSONFile ( malformed . EntryPath , malformed . entryJSON ( ) , 0666 ) ; err != nil {
return err
}
if err := writeTextFile ( malformed . TextPath , malformed . Text ( ) , 0666 ) ; err != nil {
return err
}
return nil
2023-02-03 20:05:04 +01:00
}
func ( malformed * malformedLogEntry ) Environ ( ) [ ] string {
return [ ] string {
2023-02-05 13:56:42 +01:00
"EVENT=malformed_cert" ,
2023-02-19 14:48:30 +01:00
"SUMMARY=" + malformed . Summary ( ) ,
2023-02-03 20:05:04 +01:00
"LOG_URI=" + malformed . Entry . Log . URL ,
"ENTRY_INDEX=" + fmt . Sprint ( malformed . Entry . Index ) ,
"LEAF_HASH=" + malformed . Entry . LeafHash . Base64String ( ) ,
"PARSE_ERROR=" + malformed . Error ,
2023-02-19 03:09:04 +01:00
"ENTRY_FILENAME=" + malformed . EntryPath ,
"TEXT_FILENAME=" + malformed . TextPath ,
2023-02-03 20:29:24 +01:00
"CERT_PARSEABLE=no" , // backwards compat with pre-0.15.0; not documented
2023-02-03 20:05:04 +01:00
}
}
func ( malformed * malformedLogEntry ) Text ( ) string {
text := new ( strings . Builder )
writeField := func ( name string , value any ) { fmt . Fprintf ( text , "\t%13s = %s\n" , name , value ) }
fmt . Fprintf ( text , "Unable to determine if log entry matches your watchlist. Please file a bug report at https://github.com/SSLMate/certspotter/issues/new with the following details:\n" )
writeField ( "Log Entry" , fmt . Sprintf ( "%d @ %s" , malformed . Entry . Index , malformed . Entry . Log . URL ) )
writeField ( "Leaf Hash" , malformed . Entry . LeafHash . Base64String ( ) )
writeField ( "Error" , malformed . Error )
return text . String ( )
}
2023-02-19 14:48:30 +01:00
func ( malformed * malformedLogEntry ) Summary ( ) string {
return fmt . Sprintf ( "Unable to Parse Entry %d in %s" , malformed . Entry . Index , malformed . Entry . Log . URL )
2023-02-03 20:05:04 +01:00
}