Skip to content

Commit

Permalink
Fix: Transit encrypt batch does not honor key_version (#11628) (#11716)
Browse files Browse the repository at this point in the history
* fix(secret/transit): #10232 Transit encrypt batch does not honor key_version

* add changelog for 11628

Co-authored-by: rerorero <nato9598@hotmail.co.jp>
  • Loading branch information
sgmiller and rerorero committed Jun 1, 2021
1 parent d730ae3 commit 7031bcd
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions builtin/logical/transit/path_encrypt.go
Expand Up @@ -3,6 +3,7 @@ package transit
import (
"context"
"encoding/base64"
"encoding/json"
"fmt"
"reflect"

Expand Down Expand Up @@ -194,6 +195,14 @@ func decodeBatchRequestItems(src interface{}, dst *[]BatchRequestItem) error {
if !reflect.ValueOf(v).IsValid() {
} else if casted, ok := v.(int); ok {
(*dst)[i].KeyVersion = casted
} else if js, ok := v.(json.Number); ok {
// https://github.com/hashicorp/vault/issues/10232
// Because API server parses json request with UseNumber=true, logical.Request.Data can include json.Number for a number field.
if casted, err := js.Int64(); err == nil {
(*dst)[i].KeyVersion = int(casted)
} else {
errs.Errors = append(errs.Errors, fmt.Sprintf(`error decoding %T into [%d].key_version: strconv.ParseInt: parsing "%s": invalid syntax`, v, i, v))
}
} else {
errs.Errors = append(errs.Errors, fmt.Sprintf("'[%d].key_version' expected type 'int', got unconvertible type '%T'", i, item["key_version"]))
}
Expand Down
6 changes: 6 additions & 0 deletions builtin/logical/transit/path_encrypt_test.go
Expand Up @@ -2,6 +2,7 @@ package transit

import (
"context"
"encoding/json"
"reflect"
"testing"

Expand Down Expand Up @@ -634,6 +635,11 @@ func TestTransit_decodeBatchRequestItems(t *testing.T) {
src: []interface{}{map[string]interface{}{"key_version": "666"}},
dest: []BatchRequestItem{},
},
{
name: "src_key_version_invalid-number-dest",
src: []interface{}{map[string]interface{}{"plaintext": "dGhlIHF1aWNrIGJyb3duIGZveA==", "key_version": json.Number("1.1")}},
dest: []BatchRequestItem{},
},
{
name: "src_nonce-dest",
src: []interface{}{map[string]interface{}{"nonce": "dGVzdGNvbnRleHQ="}},
Expand Down
3 changes: 3 additions & 0 deletions changelog/11628.txt
@@ -0,0 +1,3 @@
```release-note:bug
secret: fix the bug where transit encrypt batch doesn't work with key_version
```

0 comments on commit 7031bcd

Please sign in to comment.