forked from daos-stack/daos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mgmt_rpc.go
99 lines (84 loc) · 2.85 KB
/
mgmt_rpc.go
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
//
// (C) Copyright 2019 Intel Corporation.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// GOVERNMENT LICENSE RIGHTS-OPEN SOURCE SOFTWARE
// The Government's rights to use, modify, reproduce, release, perform, display,
// or disclose this software are subject to the terms of the Apache License as
// provided in Contract No. 8F-30005.
// Any reproduction of computer software, computer software documentation, or
// portions thereof marked with this legend must also reproduce the markings.
//
package main
import (
"github.com/golang/protobuf/proto"
"github.com/pkg/errors"
"golang.org/x/net/context"
"google.golang.org/grpc"
mgmtpb "github.com/daos-stack/daos/src/control/common/proto/mgmt"
"github.com/daos-stack/daos/src/control/drpc"
"github.com/daos-stack/daos/src/control/logging"
"github.com/daos-stack/daos/src/control/security"
)
// mgmtModule represents the daos_agent dRPC module. It acts mostly as a
// Management Service proxy, handling dRPCs sent by libdaos by forwarding them
// to MS.
type mgmtModule struct {
log logging.Logger
sys string
// The access point
ap string
tcfg *security.TransportConfig
}
func (mod *mgmtModule) HandleCall(session *drpc.Session, method int32, req []byte) ([]byte, error) {
switch method {
case drpc.MethodGetAttachInfo:
return mod.handleGetAttachInfo(req)
default:
return nil, drpc.UnknownMethodFailure()
}
}
func (mod *mgmtModule) ID() int32 {
return drpc.ModuleMgmt
}
func (mod *mgmtModule) handleGetAttachInfo(reqb []byte) ([]byte, error) {
req := &mgmtpb.GetAttachInfoReq{}
if err := proto.Unmarshal(reqb, req); err != nil {
return nil, drpc.UnmarshalingPayloadFailure()
}
mod.log.Debugf("GetAttachInfo %s %v", mod.ap, *req)
if req.Sys != mod.sys {
return nil, errors.Errorf("unknown system name %s", req.Sys)
}
dialOpt, err := security.DialOptionForTransportConfig(mod.tcfg)
if err != nil {
return nil, err
}
opts := []grpc.DialOption{dialOpt}
conn, err := grpc.Dial(mod.ap, opts...)
if err != nil {
return nil, errors.Wrapf(err, "dial %s", mod.ap)
}
defer conn.Close()
client := mgmtpb.NewMgmtSvcClient(conn)
resp, err := client.GetAttachInfo(context.Background(), req)
if err != nil {
return nil, errors.Wrapf(err, "GetAttachInfo %s %v", mod.ap, *req)
}
resmgmtpb, err := proto.Marshal(resp)
if err != nil {
return nil, drpc.MarshalingFailure()
}
return resmgmtpb, nil
}