auth.go 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. // Copyright 2016 The etcd Authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package clientv3
  15. import (
  16. "fmt"
  17. "strings"
  18. "github.com/coreos/etcd/auth/authpb"
  19. pb "github.com/coreos/etcd/etcdserver/etcdserverpb"
  20. "golang.org/x/net/context"
  21. "google.golang.org/grpc"
  22. )
  23. type (
  24. AuthEnableResponse pb.AuthEnableResponse
  25. AuthDisableResponse pb.AuthDisableResponse
  26. AuthenticateResponse pb.AuthenticateResponse
  27. AuthUserAddResponse pb.AuthUserAddResponse
  28. AuthUserDeleteResponse pb.AuthUserDeleteResponse
  29. AuthUserChangePasswordResponse pb.AuthUserChangePasswordResponse
  30. AuthUserGrantRoleResponse pb.AuthUserGrantRoleResponse
  31. AuthUserGetResponse pb.AuthUserGetResponse
  32. AuthUserRevokeRoleResponse pb.AuthUserRevokeRoleResponse
  33. AuthRoleAddResponse pb.AuthRoleAddResponse
  34. AuthRoleGrantPermissionResponse pb.AuthRoleGrantPermissionResponse
  35. AuthRoleGetResponse pb.AuthRoleGetResponse
  36. AuthRoleRevokePermissionResponse pb.AuthRoleRevokePermissionResponse
  37. AuthRoleDeleteResponse pb.AuthRoleDeleteResponse
  38. PermissionType authpb.Permission_Type
  39. )
  40. const (
  41. PermRead = authpb.READ
  42. PermWrite = authpb.WRITE
  43. PermReadWrite = authpb.READWRITE
  44. )
  45. type Auth interface {
  46. // AuthEnable enables auth of an etcd cluster.
  47. AuthEnable(ctx context.Context) (*AuthEnableResponse, error)
  48. // AuthDisable disables auth of an etcd cluster.
  49. AuthDisable(ctx context.Context) (*AuthDisableResponse, error)
  50. // UserAdd adds a new user to an etcd cluster.
  51. UserAdd(ctx context.Context, name string, password string) (*AuthUserAddResponse, error)
  52. // UserDelete deletes a user from an etcd cluster.
  53. UserDelete(ctx context.Context, name string) (*AuthUserDeleteResponse, error)
  54. // UserChangePassword changes a password of a user.
  55. UserChangePassword(ctx context.Context, name string, password string) (*AuthUserChangePasswordResponse, error)
  56. // UserGrantRole grants a role to a user.
  57. UserGrantRole(ctx context.Context, user string, role string) (*AuthUserGrantRoleResponse, error)
  58. // UserGet gets a detailed information of a user.
  59. UserGet(ctx context.Context, name string) (*AuthUserGetResponse, error)
  60. // UserRevokeRole revokes a role of a user.
  61. UserRevokeRole(ctx context.Context, name string, role string) (*AuthUserRevokeRoleResponse, error)
  62. // RoleAdd adds a new role to an etcd cluster.
  63. RoleAdd(ctx context.Context, name string) (*AuthRoleAddResponse, error)
  64. // RoleGrantPermission grants a permission to a role.
  65. RoleGrantPermission(ctx context.Context, name string, key string, permType PermissionType) (*AuthRoleGrantPermissionResponse, error)
  66. // RoleGet gets a detailed information of a role.
  67. RoleGet(ctx context.Context, role string) (*AuthRoleGetResponse, error)
  68. // RoleRevokePermission revokes a key from a user.
  69. RoleRevokePermission(ctx context.Context, role string, key string) (*AuthRoleRevokePermissionResponse, error)
  70. // RoleDelete deletes a role.
  71. RoleDelete(ctx context.Context, role string) (*AuthRoleDeleteResponse, error)
  72. }
  73. type auth struct {
  74. c *Client
  75. conn *grpc.ClientConn // conn in-use
  76. remote pb.AuthClient
  77. }
  78. func NewAuth(c *Client) Auth {
  79. conn := c.ActiveConnection()
  80. return &auth{
  81. conn: c.ActiveConnection(),
  82. remote: pb.NewAuthClient(conn),
  83. c: c,
  84. }
  85. }
  86. func (auth *auth) AuthEnable(ctx context.Context) (*AuthEnableResponse, error) {
  87. resp, err := auth.remote.AuthEnable(ctx, &pb.AuthEnableRequest{})
  88. return (*AuthEnableResponse)(resp), toErr(ctx, err)
  89. }
  90. func (auth *auth) AuthDisable(ctx context.Context) (*AuthDisableResponse, error) {
  91. resp, err := auth.remote.AuthDisable(ctx, &pb.AuthDisableRequest{})
  92. return (*AuthDisableResponse)(resp), toErr(ctx, err)
  93. }
  94. func (auth *auth) UserAdd(ctx context.Context, name string, password string) (*AuthUserAddResponse, error) {
  95. resp, err := auth.remote.UserAdd(ctx, &pb.AuthUserAddRequest{Name: name, Password: password})
  96. return (*AuthUserAddResponse)(resp), toErr(ctx, err)
  97. }
  98. func (auth *auth) UserDelete(ctx context.Context, name string) (*AuthUserDeleteResponse, error) {
  99. resp, err := auth.remote.UserDelete(ctx, &pb.AuthUserDeleteRequest{Name: name})
  100. return (*AuthUserDeleteResponse)(resp), toErr(ctx, err)
  101. }
  102. func (auth *auth) UserChangePassword(ctx context.Context, name string, password string) (*AuthUserChangePasswordResponse, error) {
  103. resp, err := auth.remote.UserChangePassword(ctx, &pb.AuthUserChangePasswordRequest{Name: name, Password: password})
  104. return (*AuthUserChangePasswordResponse)(resp), toErr(ctx, err)
  105. }
  106. func (auth *auth) UserGrantRole(ctx context.Context, user string, role string) (*AuthUserGrantRoleResponse, error) {
  107. resp, err := auth.remote.UserGrantRole(ctx, &pb.AuthUserGrantRoleRequest{User: user, Role: role})
  108. return (*AuthUserGrantRoleResponse)(resp), toErr(ctx, err)
  109. }
  110. func (auth *auth) UserGet(ctx context.Context, name string) (*AuthUserGetResponse, error) {
  111. resp, err := auth.remote.UserGet(ctx, &pb.AuthUserGetRequest{Name: name})
  112. return (*AuthUserGetResponse)(resp), toErr(ctx, err)
  113. }
  114. func (auth *auth) UserRevokeRole(ctx context.Context, name string, role string) (*AuthUserRevokeRoleResponse, error) {
  115. resp, err := auth.remote.UserRevokeRole(ctx, &pb.AuthUserRevokeRoleRequest{Name: name, Role: role})
  116. return (*AuthUserRevokeRoleResponse)(resp), toErr(ctx, err)
  117. }
  118. func (auth *auth) RoleAdd(ctx context.Context, name string) (*AuthRoleAddResponse, error) {
  119. resp, err := auth.remote.RoleAdd(ctx, &pb.AuthRoleAddRequest{Name: name})
  120. return (*AuthRoleAddResponse)(resp), toErr(ctx, err)
  121. }
  122. func (auth *auth) RoleGrantPermission(ctx context.Context, name string, key string, permType PermissionType) (*AuthRoleGrantPermissionResponse, error) {
  123. perm := &authpb.Permission{
  124. Key: []byte(key),
  125. PermType: authpb.Permission_Type(permType),
  126. }
  127. resp, err := auth.remote.RoleGrantPermission(ctx, &pb.AuthRoleGrantPermissionRequest{Name: name, Perm: perm})
  128. return (*AuthRoleGrantPermissionResponse)(resp), toErr(ctx, err)
  129. }
  130. func (auth *auth) RoleGet(ctx context.Context, role string) (*AuthRoleGetResponse, error) {
  131. resp, err := auth.remote.RoleGet(ctx, &pb.AuthRoleGetRequest{Role: role})
  132. return (*AuthRoleGetResponse)(resp), toErr(ctx, err)
  133. }
  134. func (auth *auth) RoleRevokePermission(ctx context.Context, role string, key string) (*AuthRoleRevokePermissionResponse, error) {
  135. resp, err := auth.remote.RoleRevokePermission(ctx, &pb.AuthRoleRevokePermissionRequest{Role: role, Key: key})
  136. return (*AuthRoleRevokePermissionResponse)(resp), toErr(ctx, err)
  137. }
  138. func (auth *auth) RoleDelete(ctx context.Context, role string) (*AuthRoleDeleteResponse, error) {
  139. resp, err := auth.remote.RoleDelete(ctx, &pb.AuthRoleDeleteRequest{Role: role})
  140. return (*AuthRoleDeleteResponse)(resp), toErr(ctx, err)
  141. }
  142. func StrToPermissionType(s string) (PermissionType, error) {
  143. val, ok := authpb.Permission_Type_value[strings.ToUpper(s)]
  144. if ok {
  145. return PermissionType(val), nil
  146. }
  147. return PermissionType(-1), fmt.Errorf("invalid permission type: %s", s)
  148. }
  149. type authenticator struct {
  150. conn *grpc.ClientConn // conn in-use
  151. remote pb.AuthClient
  152. }
  153. func (auth *authenticator) authenticate(ctx context.Context, name string, password string) (*AuthenticateResponse, error) {
  154. resp, err := auth.remote.Authenticate(ctx, &pb.AuthenticateRequest{Name: name, Password: password})
  155. return (*AuthenticateResponse)(resp), toErr(ctx, err)
  156. }
  157. func (auth *authenticator) close() {
  158. auth.conn.Close()
  159. }
  160. func newAuthenticator(endpoint string, opts []grpc.DialOption) (*authenticator, error) {
  161. conn, err := grpc.Dial(endpoint, opts...)
  162. if err != nil {
  163. return nil, err
  164. }
  165. return &authenticator{
  166. conn: conn,
  167. remote: pb.NewAuthClient(conn),
  168. }, nil
  169. }