Skip to content

Commit

Permalink
fix: centralized error handling to be more central (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-primrose authored Sep 17, 2024
1 parent 1851d9d commit 632e02f
Show file tree
Hide file tree
Showing 8 changed files with 141 additions and 175 deletions.
87 changes: 87 additions & 0 deletions pkg/amterror/error.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
package amterror

import (
"encoding/xml"
"fmt"
)

func (e *AMTError) Error() string {
return fmt.Sprintf("Error [SubCode: %s] Message: %s, Detail: %s", e.SubCode, e.Message, e.Detail)
}

func NewAMTError(subCode, message, detail string) *AMTError {
return &AMTError{
SubCode: subCode,
Message: message,
Detail: detail,
}
}

func DecodeAMTErrorString(s string) error {
checkForErrorResponse := ErrorResponse{}

err := xml.Unmarshal([]byte(s), &checkForErrorResponse)
if err != nil {
return err
}

return NewAMTError(checkForErrorResponse.Body.Fault.Code.SubCode.Value, checkForErrorResponse.Body.Fault.Reason.Text, checkForErrorResponse.Body.Fault.Detail)
}

// AMT WSMAN Error Response Types.
type (
AMTError struct {
SubCode string
Message string
Detail string
}

Header struct {
XMLName xml.Name `xml:"Header"`
To string `xml:"To"`
RelatesTo int `xml:"RelatesTo"`
Action Action `xml:"Action"`
MessageID string `xml:"MessageID"`
ResourceURI string `xml:"ResourceURI"`
}

Action struct {
XMLName xml.Name `xml:"Action"`
MustUnderstand string `xml:"mustUnderstand,attr"`
Value string `xml:",chardata"`
}

ErrorResponse struct {
XMLName xml.Name `xml:"Envelope"`
Header Header `xml:"Header"`
Body ErrorBody `xml:"Body"`
}

ErrorBody struct {
XMLName xml.Name `xml:"Body"`
Fault Fault `xml:"Fault"`
}

Fault struct {
XMLName xml.Name `xml:"Fault"`
Code Code `xml:"Code"`
Reason Reason `xml:"Reason"`
Detail string `xml:"Detail"`
}

Code struct {
XMLName xml.Name `xml:"Code"`
Value string `xml:"Value"`
SubCode SubCode `xml:"Subcode"`
}

SubCode struct {
XMLName xml.Name `xml:"Subcode"`
Value string `xml:"Value"`
}

Reason struct {
XMLName xml.Name `xml:"Reason"`
Text string `xml:"Text"`
}
)
40 changes: 40 additions & 0 deletions pkg/amterror/error_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*********************************************************************
* Copyright (c) Intel Corporation 2024
* SPDX-License-Identifier: Apache-2.0
**********************************************************************/

package amterror

import (
"encoding/xml"
"testing"
)

func TestDecodeWSMANError(t *testing.T) {
tests := []struct {
input string
expected error
}{
{
"<?xml version=\"1.0\" encoding=\"UTF-8\"?><a:Envelope xmlns:g=\"http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd\" xmlns:f=\"http://schemas.xmlsoap.org/ws/2004/08/eventing\" xmlns:e=\"http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd\" xmlns:d=\"http://schemas.xmlsoap.org/ws/2004/09/transfer\" xmlns:c=\"http://schemas.xmlsoap.org/ws/2004/09/enumeration\" xmlns:b=\"http://schemas.xmlsoap.org/ws/2004/08/addressing\" xmlns:a=\"http://www.w3.org/2003/05/soap-envelope\" xmlns:h=\"http://schemas.xmlsoap.org/ws/2005/02/trust\" xmlns:i=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"><a:Header><b:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</b:To><b:RelatesTo>0</b:RelatesTo><b:Action a:mustUnderstand=\"true\">http://schemas.xmlsoap.org/ws/2004/08/addressing/fault</b:Action><b:MessageID>uuid:00000000-8086-8086-8086-000000000061</b:MessageID></a:Header><a:Body><a:Fault><a:Code><a:Value>a:Sender</a:Value><a:Subcode><a:Value>b:DestinationUnreachable</a:Value></a:Subcode></a:Code><a:Reason><a:Text xml:lang=\"en-US\">No route can be determined to reach the destination role defined by the WSAddressing To.</a:Text></a:Reason><a:Detail></a:Detail></a:Fault></a:Body></a:Envelope>",
NewAMTError("b:DestinationUnreachable", "No route can be determined to reach the destination role defined by the WSAddressing To.", ""),
},
{
"bad xml",
xml.Unmarshal([]byte("bad xml"), &ErrorResponse{}),
},
}

for _, test := range tests {
result := DecodeAMTErrorString(test.input)
if result == nil {
if test.expected != nil {
t.Errorf("Expected %s, but got nil", test.expected)
}
} else {
if result.Error() != test.expected.Error() {
t.Errorf("Expected %s, but got %s", test.expected, result)
}
}
}
}
10 changes: 0 additions & 10 deletions pkg/wsman/amt/boot/settingdata.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import (

"github.com/open-amt-cloud-toolkit/go-wsman-messages/v2/internal/message"
"github.com/open-amt-cloud-toolkit/go-wsman-messages/v2/pkg/wsman/client"
"github.com/open-amt-cloud-toolkit/go-wsman-messages/v2/pkg/wsman/common"
)

// Instantiates a new Boot Setting Data service.
Expand Down Expand Up @@ -148,14 +147,5 @@ func (settingData SettingData) Put(bootSettingData BootSettingDataRequest) (resp
return response, err
}

checkForErrorResponse := common.ErrorResponse{}

err = xml.Unmarshal([]byte(response.XMLOutput), &checkForErrorResponse)
if err != nil {
return response, err
}

err = common.DecodeAMTError(checkForErrorResponse)

return response, err
}
10 changes: 0 additions & 10 deletions pkg/wsman/cim/kvm/redirectionsap.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (
"github.com/open-amt-cloud-toolkit/go-wsman-messages/v2/internal/message"
"github.com/open-amt-cloud-toolkit/go-wsman-messages/v2/pkg/wsman/cim/methods"
"github.com/open-amt-cloud-toolkit/go-wsman-messages/v2/pkg/wsman/client"
"github.com/open-amt-cloud-toolkit/go-wsman-messages/v2/pkg/wsman/common"
)

// NewKVMRedirectionSAP returns a new instance of the KVMRedirectionSAP struct.
Expand Down Expand Up @@ -103,14 +102,5 @@ func (redirectionSAP RedirectionSAP) Pull(enumerationContext string) (response R
return
}

checkForErrorResponse := common.ErrorResponse{}

err = xml.Unmarshal([]byte(response.XMLOutput), &checkForErrorResponse)
if err != nil {
return
}

err = common.DecodeAMTError(checkForErrorResponse)

return
}
29 changes: 14 additions & 15 deletions pkg/wsman/client/wsman.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ import (
"time"

"github.com/sirupsen/logrus"

"github.com/open-amt-cloud-toolkit/go-wsman-messages/v2/pkg/amterror"
)

const (
Expand Down Expand Up @@ -256,21 +258,6 @@ func (t *Target) Post(msg string) (response []byte, err error) {

defer res.Body.Close()

if res.StatusCode >= 400 {
b, err := io.ReadAll(res.Body)
if err != nil {
return nil, err
}

if t.logAMTMessages {
logrus.Trace(string(b))
}

errPostResponse := errors.New("wsman.Client post received")

return nil, fmt.Errorf("%w: %v\n%v", errPostResponse, res.Status, string(b))
}

response, err = io.ReadAll(res.Body)

if t.logAMTMessages {
Expand All @@ -281,6 +268,18 @@ func (t *Target) Post(msg string) (response []byte, err error) {
return nil, err
}

if res.StatusCode == 400 {
amterr := amterror.DecodeAMTErrorString(string(response))

return nil, amterr
}

if res.StatusCode >= 401 {
errPostResponse := errors.New("wsman.Client post received")

return nil, fmt.Errorf("%w: %v\n%v", errPostResponse, res.Status, string(response))
}

return response, nil
}

Expand Down
24 changes: 0 additions & 24 deletions pkg/wsman/common/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@

package common

import (
"fmt"
)

// TODO: Review if this file is still necessary.

const ValueNotFound string = "Value not found in map"
Expand Down Expand Up @@ -235,23 +231,3 @@ func ConvertPackageTypeToString(value int) string {

return ValueNotFound
}

func (e *AMTError) Error() string {
return fmt.Sprintf("Error [SubCode: %s] Message: %s, Detail: %s", e.SubCode, e.Message, e.Detail)
}

func NewAMTError(subCode, message, detail string) *AMTError {
return &AMTError{
SubCode: subCode,
Message: message,
Detail: detail,
}
}

func DecodeAMTError(er ErrorResponse) error {
if er.Body.Fault.Code.SubCode.Value != "" {
return NewAMTError(er.Body.Fault.Code.SubCode.Value, er.Body.Fault.Reason.Text, er.Body.Fault.Detail)
}

return nil
}
73 changes: 0 additions & 73 deletions pkg/wsman/common/constants_test.go

This file was deleted.

43 changes: 0 additions & 43 deletions pkg/wsman/common/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,46 +30,3 @@ type ReturnValue struct {
ReturnValue int `xml:"ReturnValue,omitempty"`
ReturnValueStr string `xml:"ReturnValueStr,omitempty"`
}

// AMT WSMAN Error Response Types.
type (
AMTError struct {
SubCode string
Message string
Detail string
}

ErrorResponse struct {
XMLName xml.Name `xml:"Envelope"`
Header message.Header `xml:"Header"`
Body ErrorBody `xml:"Body"`
}

ErrorBody struct {
XMLName xml.Name `xml:"Body"`
Fault Fault `xml:"Fault"`
}

Fault struct {
XMLName xml.Name `xml:"Fault"`
Code Code `xml:"Code"`
Reason Reason `xml:"Reason"`
Detail string `xml:"Detail"`
}

Code struct {
XMLName xml.Name `xml:"Code"`
Value string `xml:"Value"`
SubCode SubCode `xml:"Subcode"`
}

SubCode struct {
XMLName xml.Name `xml:"Subcode"`
Value string `xml:"Value"`
}

Reason struct {
XMLName xml.Name `xml:"Reason"`
Text string `xml:"Text"`
}
)

0 comments on commit 632e02f

Please sign in to comment.