Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018-present Open Networking Foundation |
| 3 | |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 16 | |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 17 | package model |
| 18 | |
| 19 | import ( |
| 20 | "github.com/opencord/voltha-go/common/log" |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 21 | "sync" |
| 22 | "time" |
| 23 | ) |
| 24 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 25 | type singletonProxyAccessControl struct { |
| 26 | sync.RWMutex |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 27 | cache sync.Map |
Stephane Barbarie | 933b09b | 2019-01-09 11:12:09 -0500 | [diff] [blame] | 28 | reservedCount int |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 29 | } |
| 30 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 31 | var instanceProxyAccessControl *singletonProxyAccessControl |
| 32 | var onceProxyAccessControl sync.Once |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 33 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 34 | // PAC provides access to the proxy access control singleton instance |
| 35 | func PAC() *singletonProxyAccessControl { |
| 36 | onceProxyAccessControl.Do(func() { |
Stephane Barbarie | 933b09b | 2019-01-09 11:12:09 -0500 | [diff] [blame] | 37 | instanceProxyAccessControl = &singletonProxyAccessControl{} |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 38 | }) |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 39 | return instanceProxyAccessControl |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 40 | } |
| 41 | |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 42 | // IsReserved will verify if access control is active for a specific path within the model |
| 43 | func (singleton *singletonProxyAccessControl) IsReserved(pathLock string) bool { |
| 44 | singleton.Lock() |
| 45 | defer singleton.Unlock() |
| 46 | |
| 47 | _, exists := singleton.cache.Load(pathLock) |
| 48 | log.Debugw("is-reserved", log.Fields{"pathLock": pathLock, "exists": exists}) |
| 49 | |
| 50 | return exists |
| 51 | } |
| 52 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 53 | // ReservePath will apply access control for a specific path within the model |
Stephane Barbarie | 933b09b | 2019-01-09 11:12:09 -0500 | [diff] [blame] | 54 | func (singleton *singletonProxyAccessControl) ReservePath(path string, proxy *Proxy, pathLock string) *proxyAccessControl { |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 55 | singleton.Lock() |
| 56 | defer singleton.Unlock() |
Stephane Barbarie | 933b09b | 2019-01-09 11:12:09 -0500 | [diff] [blame] | 57 | singleton.reservedCount++ |
| 58 | if pac, exists := singleton.cache.Load(pathLock); !exists { |
| 59 | log.Debugf("Creating new PAC entry for path:%s pathLock:%s", path, pathLock) |
| 60 | newPac := NewProxyAccessControl(proxy, pathLock) |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 61 | singleton.cache.Store(pathLock, newPac) |
Stephane Barbarie | 933b09b | 2019-01-09 11:12:09 -0500 | [diff] [blame] | 62 | return newPac |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 63 | } else { |
Stephane Barbarie | 933b09b | 2019-01-09 11:12:09 -0500 | [diff] [blame] | 64 | log.Debugf("Re-using existing PAC entry for path:%s pathLock:%s", path, pathLock) |
| 65 | return pac.(*proxyAccessControl) |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 66 | } |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | // ReleasePath will remove access control for a specific path within the model |
| 70 | func (singleton *singletonProxyAccessControl) ReleasePath(pathLock string) { |
| 71 | singleton.Lock() |
| 72 | defer singleton.Unlock() |
Stephane Barbarie | 933b09b | 2019-01-09 11:12:09 -0500 | [diff] [blame] | 73 | |
| 74 | singleton.reservedCount-- |
| 75 | |
| 76 | if singleton.reservedCount == 0 { |
| 77 | singleton.cache.Delete(pathLock) |
| 78 | } |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | // ProxyAccessControl is the abstraction interface to the base proxyAccessControl structure |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 82 | type ProxyAccessControl interface { |
| 83 | Get(path string, depth int, deep bool, txid string, control bool) interface{} |
| 84 | Update(path string, data interface{}, strict bool, txid string, control bool) interface{} |
| 85 | Add(path string, data interface{}, txid string, control bool) interface{} |
| 86 | Remove(path string, txid string, control bool) interface{} |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 87 | SetProxy(proxy *Proxy) |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 88 | } |
| 89 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 90 | // proxyAccessControl holds details of the path and proxy that requires access control |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 91 | type proxyAccessControl struct { |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 92 | sync.RWMutex |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 93 | Proxy *Proxy |
| 94 | PathLock chan struct{} |
| 95 | Path string |
| 96 | |
| 97 | start time.Time |
| 98 | stop time.Time |
| 99 | } |
| 100 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 101 | // NewProxyAccessControl creates a new instance of an access control structure |
Stephane Barbarie | 933b09b | 2019-01-09 11:12:09 -0500 | [diff] [blame] | 102 | func NewProxyAccessControl(proxy *Proxy, path string) *proxyAccessControl { |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 103 | return &proxyAccessControl{ |
| 104 | Proxy: proxy, |
| 105 | Path: path, |
| 106 | PathLock: make(chan struct{}, 1), |
| 107 | } |
| 108 | } |
| 109 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 110 | // lock will prevent access to a model path |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 111 | func (pac *proxyAccessControl) lock() { |
Stephane Barbarie | 40fd3b2 | 2019-04-23 21:50:47 -0400 | [diff] [blame] | 112 | log.Debugw("locking", log.Fields{"path": pac.Path}) |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 113 | pac.PathLock <- struct{}{} |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 114 | pac.setStart(time.Now()) |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 115 | } |
| 116 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 117 | // unlock will release control of a model path |
| 118 | func (pac *proxyAccessControl) unlock() { |
| 119 | <-pac.PathLock |
Stephane Barbarie | 40fd3b2 | 2019-04-23 21:50:47 -0400 | [diff] [blame] | 120 | log.Debugw("unlocking", log.Fields{"path": pac.Path}) |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 121 | pac.setStop(time.Now()) |
| 122 | GetProfiling().AddToInMemoryLockTime(pac.getStop().Sub(pac.getStart()).Seconds()) |
| 123 | } |
| 124 | |
| 125 | // getStart is used for profiling purposes and returns the time at which access control was applied |
| 126 | func (pac *proxyAccessControl) getStart() time.Time { |
| 127 | pac.Lock() |
| 128 | defer pac.Unlock() |
| 129 | return pac.start |
| 130 | } |
| 131 | |
| 132 | // getStart is used for profiling purposes and returns the time at which access control was removed |
| 133 | func (pac *proxyAccessControl) getStop() time.Time { |
| 134 | pac.Lock() |
| 135 | defer pac.Unlock() |
| 136 | return pac.stop |
| 137 | } |
| 138 | |
| 139 | // getPath returns the access controlled path |
| 140 | func (pac *proxyAccessControl) getPath() string { |
| 141 | pac.Lock() |
| 142 | defer pac.Unlock() |
| 143 | return pac.Path |
| 144 | } |
| 145 | |
| 146 | // getProxy returns the proxy used to reach a specific location in the data model |
| 147 | func (pac *proxyAccessControl) getProxy() *Proxy { |
| 148 | pac.Lock() |
| 149 | defer pac.Unlock() |
| 150 | return pac.Proxy |
| 151 | } |
| 152 | |
| 153 | // setStart is for profiling purposes and applies a start time value at which access control was started |
| 154 | func (pac *proxyAccessControl) setStart(time time.Time) { |
| 155 | pac.Lock() |
| 156 | defer pac.Unlock() |
| 157 | pac.start = time |
| 158 | } |
| 159 | |
| 160 | // setStop is for profiling purposes and applies a stop time value at which access control was stopped |
| 161 | func (pac *proxyAccessControl) setStop(time time.Time) { |
| 162 | pac.Lock() |
| 163 | defer pac.Unlock() |
| 164 | pac.stop = time |
| 165 | } |
| 166 | |
| 167 | // SetProxy is used to changed the proxy object of an access controlled path |
| 168 | func (pac *proxyAccessControl) SetProxy(proxy *Proxy) { |
| 169 | pac.Lock() |
| 170 | defer pac.Unlock() |
| 171 | pac.Proxy = proxy |
| 172 | } |
| 173 | |
Stephane Barbarie | aa46794 | 2019-02-06 14:09:44 -0500 | [diff] [blame] | 174 | // List retrieves data linked to a data model path |
| 175 | func (pac *proxyAccessControl) List(path string, depth int, deep bool, txid string, control bool) interface{} { |
| 176 | if control { |
| 177 | pac.lock() |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 178 | log.Debugw("locked-access--list", log.Fields{"path": path, "fullPath": pac.Proxy.getFullPath()}) |
Stephane Barbarie | aa46794 | 2019-02-06 14:09:44 -0500 | [diff] [blame] | 179 | defer pac.unlock() |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 180 | defer log.Debugw("unlocked-access--list", log.Fields{"path": path, "fullPath": pac.Proxy.getFullPath()}) |
Stephane Barbarie | aa46794 | 2019-02-06 14:09:44 -0500 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | // FIXME: Forcing depth to 0 for now due to problems deep copying the data structure |
| 184 | // The data traversal through reflection currently corrupts the content |
| 185 | |
| 186 | return pac.getProxy().GetRoot().List(path, "", depth, deep, txid) |
| 187 | } |
| 188 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 189 | // Get retrieves data linked to a data model path |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 190 | func (pac *proxyAccessControl) Get(path string, depth int, deep bool, txid string, control bool) interface{} { |
| 191 | if control { |
| 192 | pac.lock() |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 193 | log.Debugw("locked-access--get", log.Fields{"path": path, "fullPath": pac.Proxy.getFullPath()}) |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 194 | defer pac.unlock() |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 195 | defer log.Debugw("unlocked-access--get", log.Fields{"path": path, "fullPath": pac.Proxy.getFullPath()}) |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 196 | } |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 197 | |
| 198 | // FIXME: Forcing depth to 0 for now due to problems deep copying the data structure |
| 199 | // The data traversal through reflection currently corrupts the content |
Stephane Barbarie | 11b88e7 | 2019-02-07 12:28:29 -0500 | [diff] [blame] | 200 | return pac.getProxy().GetRoot().Get(path, "", 0, deep, txid) |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 201 | } |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 202 | |
| 203 | // Update changes the content of the data model at the specified location with the provided data |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 204 | func (pac *proxyAccessControl) Update(path string, data interface{}, strict bool, txid string, control bool) interface{} { |
| 205 | if control { |
| 206 | pac.lock() |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 207 | log.Debugw("locked-access--update", log.Fields{"path": path, "fullPath": pac.Proxy.getFullPath()}) |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 208 | defer pac.unlock() |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 209 | defer log.Debugw("unlocked-access--update", log.Fields{"path": path, "fullPath": pac.Proxy.getFullPath()}) |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 210 | } |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 211 | |
Stephane Barbarie | 1ab4327 | 2018-12-08 21:42:13 -0500 | [diff] [blame] | 212 | result := pac.getProxy().GetRoot().Update(path, data, strict, txid, nil) |
| 213 | |
| 214 | if result != nil { |
| 215 | return result.GetData() |
| 216 | } |
| 217 | return nil |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 218 | } |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 219 | |
| 220 | // Add creates a new data model entry at the specified location with the provided data |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 221 | func (pac *proxyAccessControl) Add(path string, data interface{}, txid string, control bool) interface{} { |
| 222 | if control { |
| 223 | pac.lock() |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 224 | log.Debugw("locked-access--add", log.Fields{"path": path, "fullPath": pac.Path}) |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 225 | defer pac.unlock() |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 226 | defer log.Debugw("unlocked-access--add", log.Fields{"path": path, "fullPath": pac.Proxy.getFullPath()}) |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 227 | } |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 228 | |
Stephane Barbarie | 1ab4327 | 2018-12-08 21:42:13 -0500 | [diff] [blame] | 229 | result := pac.getProxy().GetRoot().Add(path, data, txid, nil) |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 230 | |
Stephane Barbarie | 1ab4327 | 2018-12-08 21:42:13 -0500 | [diff] [blame] | 231 | if result != nil { |
| 232 | return result.GetData() |
| 233 | } |
| 234 | return nil |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 235 | } |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 236 | |
| 237 | // Remove discards information linked to the data model path |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 238 | func (pac *proxyAccessControl) Remove(path string, txid string, control bool) interface{} { |
| 239 | if control { |
| 240 | pac.lock() |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 241 | log.Debugw("locked-access--remove", log.Fields{"path": path, "fullPath": pac.Proxy.getFullPath()}) |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 242 | defer pac.unlock() |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 243 | defer log.Debugw("unlocked-access--remove", log.Fields{"path": path, "fullPath": pac.Proxy.getFullPath()}) |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 244 | } |
Stephane Barbarie | c53a275 | 2019-03-08 17:50:10 -0500 | [diff] [blame] | 245 | |
Stephane Barbarie | dc5022d | 2018-11-19 15:21:44 -0500 | [diff] [blame] | 246 | return pac.getProxy().GetRoot().Remove(path, txid, nil) |
Stephane Barbarie | a188d94 | 2018-10-16 16:43:04 -0400 | [diff] [blame] | 247 | } |
Stephane Barbarie | 40fd3b2 | 2019-04-23 21:50:47 -0400 | [diff] [blame] | 248 | |
| 249 | // CreateProxy allows interaction for a specific path |
| 250 | func (pac *proxyAccessControl) CreateProxy(path string, exclusive bool, control bool) *Proxy { |
| 251 | if control { |
| 252 | pac.lock() |
| 253 | log.Debugw("locked-access--create-proxy", log.Fields{"path": path, "fullPath": pac.Path}) |
| 254 | defer pac.unlock() |
| 255 | defer log.Debugw("unlocked-access--create-proxy", log.Fields{"path": path, "fullPath": pac.Proxy.getFullPath()}) |
| 256 | } |
| 257 | |
| 258 | result := pac.getProxy().GetRoot().CreateProxy(path, exclusive) |
| 259 | |
| 260 | if result != nil { |
| 261 | return result |
| 262 | } |
| 263 | return nil |
| 264 | } |