-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support new gnmi config interface in telemetry container. #7
Merged
Merged
Changes from 4 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
e103b09
Support GNMI native write
ganglyu 2cd6dfa
Fix test issue
ganglyu f019892
Merge branch 'master' into gnmi_native_write
ganglyu 71e5e09
Fix lost src file
ganglyu 3ffe171
Use swig wrapper for swsscommon
ganglyu 5b43489
Fix make dependency
ganglyu 81700b4
Support GNMI native write with origin
ganglyu de25049
Fix LGTM alert.
ganglyu d8792b8
Update close
ganglyu 8f7bc2a
Update close
ganglyu 267f418
Merge branch 'master' into config_support
ganglyu 9261480
Update
ganglyu 1e2a040
Address comments
ganglyu 93e9bf3
Reuse swsscommon.i from libswsscommon-dev
ganglyu 7619240
Merge branch 'master' into config_support
ganglyu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
package common_utils | ||
|
||
const GNMI_WORK_PATH = "/tmp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// +build !gnmi_native_write | ||
|
||
package gnmi | ||
|
||
const ENABLE_NATIVE_WRITE = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// +build gnmi_native_write | ||
|
||
package gnmi | ||
|
||
const ENABLE_NATIVE_WRITE = true |
10 changes: 5 additions & 5 deletions
10
gnmi_server/constants.go → gnmi_server/constants_translib.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// +build !gnmi_translib_write | ||
|
||
package gnmi | ||
|
||
const ENABLE_TRANSLIB_WRITE = false | ||
// +build !gnmi_translib_write | ||
package gnmi | ||
const ENABLE_TRANSLIB_WRITE = false |
10 changes: 5 additions & 5 deletions
10
gnmi_server/constants_readwrite.go → gnmi_server/constants_translib_write.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// +build gnmi_translib_write | ||
|
||
package gnmi | ||
|
||
const ENABLE_TRANSLIB_WRITE = true | ||
// +build gnmi_translib_write | ||
package gnmi | ||
const ENABLE_TRANSLIB_WRITE = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,27 +2,60 @@ package gnmi | |
|
||
import ( | ||
"context" | ||
"errors" | ||
"os" | ||
gnoi_system_pb "github.com/openconfig/gnoi/system" | ||
log "github.com/golang/glog" | ||
"time" | ||
spb "github.com/sonic-net/sonic-gnmi/proto/gnoi" | ||
transutil "github.com/sonic-net/sonic-gnmi/transl_utils" | ||
io "io/ioutil" | ||
ssc "github.com/sonic-net/sonic-gnmi/sonic_service_client" | ||
spb_jwt "github.com/sonic-net/sonic-gnmi/proto/gnoi/jwt" | ||
"github.com/sonic-net/sonic-gnmi/common_utils" | ||
"google.golang.org/grpc/status" | ||
"google.golang.org/grpc/codes" | ||
"os/user" | ||
"encoding/json" | ||
jwt "github.com/dgrijalva/jwt-go" | ||
) | ||
|
||
func RebootSystem(fileName string) error { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use reboot to implement "config reload", and please refer to: https://github.com/openconfig/gnoi/blob/main/system/system.proto#L131 |
||
log.V(2).Infof("Rebooting with %s...", fileName) | ||
sc, err := ssc.NewDbusClient() | ||
if err != nil { | ||
return err | ||
} | ||
err = sc.ConfigReload(fileName) | ||
return err | ||
} | ||
|
||
func (srv *Server) Reboot(ctx context.Context, req *gnoi_system_pb.RebootRequest) (*gnoi_system_pb.RebootResponse, error) { | ||
fileName := common_utils.GNMI_WORK_PATH + "/config_db.json.tmp" | ||
|
||
_, err := authenticate(srv.config.UserAuth, ctx) | ||
if err != nil { | ||
return nil, err | ||
} | ||
log.V(1).Info("gNOI: Reboot") | ||
return nil, status.Errorf(codes.Unimplemented, "") | ||
log.V(1).Info("Request:", req) | ||
log.V(1).Info("Reboot system now, delay is ignored...") | ||
// TODO: Support GNOI reboot delay | ||
// Delay in nanoseconds before issuing reboot. | ||
// https://github.com/openconfig/gnoi/blob/master/system/system.proto#L102-L115 | ||
config_db_json, err := io.ReadFile(fileName) | ||
if errors.Is(err, os.ErrNotExist) { | ||
fileName = "" | ||
} | ||
err = RebootSystem(string(config_db_json)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
var resp gnoi_system_pb.RebootResponse | ||
return &resp, nil | ||
} | ||
|
||
// TODO: Support GNOI RebootStatus | ||
func (srv *Server) RebootStatus(ctx context.Context, req *gnoi_system_pb.RebootStatusRequest) (*gnoi_system_pb.RebootStatusResponse, error) { | ||
_, err := authenticate(srv.config.UserAuth, ctx) | ||
if err != nil { | ||
|
@@ -31,6 +64,8 @@ func (srv *Server) RebootStatus(ctx context.Context, req *gnoi_system_pb.RebootS | |
log.V(1).Info("gNOI: RebootStatus") | ||
return nil, status.Errorf(codes.Unimplemented, "") | ||
} | ||
|
||
// TODO: Support GNOI CancelReboot | ||
func (srv *Server) CancelReboot(ctx context.Context, req *gnoi_system_pb.CancelRebootRequest) (*gnoi_system_pb.CancelRebootResponse, error) { | ||
_, err := authenticate(srv.config.UserAuth, ctx) | ||
if err != nil { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# TODO: Create a new repo for this lib, sonic-restapi and sonic-gnmi can share this lib
Instead of todo, let's do it now? #Closed