3c28152c25fa0a16e7263d3b69b2fa49f8264306
[controller.git] / opendaylight / web / root / src / main / java / org / opendaylight / controller / web / DaylightWebAdmin.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.web;
10
11 import java.net.InetAddress;
12 import java.net.UnknownHostException;
13 import java.util.ArrayList;
14 import java.util.List;
15 import java.util.Set;
16
17 import javax.servlet.http.HttpServletRequest;
18 import javax.servlet.http.HttpSession;
19
20 import org.opendaylight.controller.clustering.services.IClusterGlobalServices;
21 import org.opendaylight.controller.connectionmanager.IConnectionManager;
22 import org.opendaylight.controller.sal.authorization.UserLevel;
23 import org.opendaylight.controller.sal.core.Description;
24 import org.opendaylight.controller.sal.core.Node;
25 import org.opendaylight.controller.sal.utils.GlobalConstants;
26 import org.opendaylight.controller.sal.utils.ServiceHelper;
27 import org.opendaylight.controller.sal.utils.Status;
28 import org.opendaylight.controller.sal.utils.StatusCode;
29 import org.opendaylight.controller.switchmanager.ISwitchManager;
30 import org.opendaylight.controller.usermanager.IUserManager;
31 import org.opendaylight.controller.usermanager.UserConfig;
32 import org.springframework.stereotype.Controller;
33 import org.springframework.web.bind.annotation.PathVariable;
34 import org.springframework.web.bind.annotation.RequestMapping;
35 import org.springframework.web.bind.annotation.RequestMethod;
36 import org.springframework.web.bind.annotation.RequestParam;
37 import org.springframework.web.bind.annotation.ResponseBody;
38
39 import com.google.gson.Gson;
40
41 @Controller
42 @RequestMapping("/admin")
43 public class DaylightWebAdmin {
44     Gson gson = new Gson();
45
46     /**
47      * Returns list of clustered controllers. Highlights "this" controller and
48      * if controller is coordinator
49      *
50      * @return List<ClusterBean>
51      */
52     @RequestMapping("/cluster")
53     @ResponseBody
54     public String getClusteredControllers() {
55         IClusterGlobalServices clusterServices = (IClusterGlobalServices) ServiceHelper.getGlobalInstance(
56                 IClusterGlobalServices.class, this);
57         if (clusterServices == null) {
58             return null;
59         }
60         IConnectionManager connectionManager = (IConnectionManager) ServiceHelper.getGlobalInstance(
61                 IConnectionManager.class, this);
62         if (connectionManager == null) {
63             return null;
64         }
65
66         List<ClusterNodeBean> clusterNodes = new ArrayList<ClusterNodeBean>();
67
68         List<InetAddress> controllers = clusterServices.getClusteredControllers();
69         for (InetAddress controller : controllers) {
70             ClusterNodeBean.Builder clusterBeanBuilder = new ClusterNodeBean.Builder(controller);
71
72             // get number of connected nodes
73             Set<Node> connectedNodes = connectionManager.getNodes(controller);
74             int numNodes = connectedNodes == null ? 0 : connectedNodes.size();
75             clusterBeanBuilder.nodesConnected(numNodes);
76
77             // determine if this is the executing controller
78             if (controller.equals(clusterServices.getMyAddress())) {
79                 clusterBeanBuilder.highlightMe();
80             }
81
82             // determine whether this is coordinator
83             if (clusterServices.getCoordinatorAddress().equals(controller)) {
84                 clusterBeanBuilder.iAmCoordinator();
85             }
86             clusterNodes.add(clusterBeanBuilder.build());
87         }
88
89         return gson.toJson(clusterNodes);
90     }
91
92     /**
93      * Return nodes connected to controller {controller}
94      *
95      * @param controller
96      *            - byte[] of the address of the controller
97      * @return List<NodeBean>
98      */
99     @RequestMapping("/cluster/controller/{controller}")
100     @ResponseBody
101     public String getNodesConnectedToController(@PathVariable("controller") String controller) {
102         IClusterGlobalServices clusterServices = (IClusterGlobalServices) ServiceHelper.getGlobalInstance(
103                 IClusterGlobalServices.class, this);
104         if (clusterServices == null) {
105             return null;
106         }
107         IConnectionManager connectionManager = (IConnectionManager) ServiceHelper.getGlobalInstance(
108                 IConnectionManager.class, this);
109         if (connectionManager == null) {
110             return null;
111         }
112         ISwitchManager switchManager = (ISwitchManager) ServiceHelper.getInstance(ISwitchManager.class,
113                 GlobalConstants.DEFAULT.toString(), this);
114         if (switchManager == null) {
115             return null;
116         }
117
118         byte[] address = gson.fromJson(controller, byte[].class);
119         InetAddress controllerAddress = null;
120         try {
121             controllerAddress = InetAddress.getByAddress(address);
122         } catch (UnknownHostException e) {
123             return null;
124         }
125
126         List<NodeBean> result = new ArrayList<NodeBean>();
127
128         Set<Node> nodes = connectionManager.getNodes(controllerAddress);
129         if (nodes == null) {
130             return gson.toJson(result);
131         }
132         for (Node node : nodes) {
133             Description description = (Description) switchManager.getNodeProp(node, Description.propertyName);
134             NodeBean nodeBean;
135             if (description == null || description.getValue().equals("None")) {
136                 nodeBean = new NodeBean(node);
137             } else {
138                 nodeBean = new NodeBean(node, description.getValue());
139             }
140             result.add(nodeBean);
141         }
142
143         return gson.toJson(result);
144     }
145
146     @RequestMapping("/users")
147     @ResponseBody
148     public List<UserConfig> getUsers() {
149         IUserManager userManager = (IUserManager) ServiceHelper.getGlobalInstance(IUserManager.class, this);
150         if (userManager == null) {
151             return null;
152         }
153
154         List<UserConfig> userConfList = userManager.getLocalUserList();
155
156         return userConfList;
157     }
158
159     /*
160      * Password in clear text, moving to HTTP/SSL soon
161      */
162     @RequestMapping(value = "/users", method = RequestMethod.POST)
163     @ResponseBody
164     public Status saveLocalUserConfig(@RequestParam(required = true) String json,
165             @RequestParam(required = true) String action, HttpServletRequest request) {
166
167         IUserManager userManager = (IUserManager) ServiceHelper.getGlobalInstance(IUserManager.class, this);
168         if (userManager == null) {
169             return new Status(StatusCode.NOSERVICE, "User Manager unavailable");
170         }
171
172         if (!authorize(userManager, UserLevel.NETWORKADMIN, request)) {
173             return new Status(StatusCode.UNAUTHORIZED, "Operation not permitted");
174         }
175
176         Gson gson = new Gson();
177         UserConfig plainConfig = gson.fromJson(json, UserConfig.class);
178         // Recreate using the proper constructor which will hash the password
179         UserConfig config = new UserConfig(plainConfig.getUser(), plainConfig.getPassword(), plainConfig.getRoles());
180
181         Status result = (action.equals("add")) ? userManager.addLocalUser(config) : userManager.removeLocalUser(config);
182         if (result.isSuccess()) {
183             if (action.equals("add")) {
184                 DaylightWebUtil.auditlog("User", request.getUserPrincipal().getName(), "added", config.getUser()
185                         + " as " + config.getRoles().toString());
186             } else {
187                 DaylightWebUtil.auditlog("User", request.getUserPrincipal().getName(), "removed", config.getUser());
188             }
189         }
190         return result;
191     }
192
193     @RequestMapping(value = "/user/modify", method = RequestMethod.POST)
194     @ResponseBody
195     public Status modifyUser(@RequestParam(required = true) String json,
196             @RequestParam(required = true) String action, HttpServletRequest request) {
197
198         IUserManager userManager = (IUserManager) ServiceHelper.getGlobalInstance(IUserManager.class, this);
199         if (userManager == null) {
200             return new Status(StatusCode.NOSERVICE, "User Manager unavailable");
201         }
202
203         if (!authorize(userManager, UserLevel.NETWORKADMIN, request)) {
204             return new Status(StatusCode.UNAUTHORIZED, "Operation not permitted");
205         }
206
207         UserConfig newConfig = gson.fromJson(json, UserConfig.class);
208         List<UserConfig> currentUserConfig = userManager.getLocalUserList();
209         String password = null;
210         String user = newConfig.getUser();
211         for (UserConfig userConfig : currentUserConfig) {
212             if(userConfig.getUser().equals(user)){
213                 password = userConfig.getPassword();
214                 break;
215             }
216         }
217         if (password == null) {
218             String msg = String.format("User %s not found in configuration database", user);
219             return new Status(StatusCode.NOTFOUND, msg);
220         }
221
222         //While modifying a user role, the password is not provided from GUI for any user.
223         //The password is stored in hash mode, hence it cannot be retrieved and added to UserConfig object
224         //The hashed password is injected below to the json string containing username and new roles before
225         //converting to UserConfig object.
226         json = json.replace("\"roles\"", "\"password\":\""+ password + "\",\"roles\"");
227         Gson gson = new Gson();
228         newConfig = gson.fromJson(json, UserConfig.class);
229
230         Status result = userManager.modifyLocalUser(newConfig);
231         if (result.isSuccess()) {
232             DaylightWebUtil.auditlog("Roles of", request.getUserPrincipal().getName(), "updated", newConfig.getUser()
233                     + " to " + newConfig.getRoles().toString());
234         }
235         return result;
236     }
237
238
239     @RequestMapping(value = "/users/{username}", method = RequestMethod.POST)
240     @ResponseBody
241     public Status removeLocalUser(@PathVariable("username") String userName, HttpServletRequest request) {
242
243         String loggedInUser = request.getUserPrincipal().getName();
244         if (loggedInUser.equals(userName)) {
245             String msg = "Invalid Request: User cannot delete itself";
246             return new Status(StatusCode.NOTALLOWED, msg);
247         }
248
249         IUserManager userManager = (IUserManager) ServiceHelper.getGlobalInstance(IUserManager.class, this);
250         if (userManager == null) {
251             return new Status(StatusCode.NOSERVICE, "User Manager unavailable");
252         }
253
254         if (!authorize(userManager, UserLevel.NETWORKADMIN, request)) {
255             return new Status(StatusCode.UNAUTHORIZED, "Operation not permitted");
256         }
257
258         Status status = userManager.removeLocalUser(userName);
259         if (status.isSuccess()) {
260             DaylightWebUtil.auditlog("User", request.getUserPrincipal().getName(), "removed", userName);
261             return status;
262         }
263         return status;
264     }
265
266     @RequestMapping(value = "/users/password/{username}", method = RequestMethod.POST)
267     @ResponseBody
268     public Status changePassword(
269             @PathVariable("username") String username, HttpServletRequest request,
270             @RequestParam(value = "currentPassword", required=false) String currentPassword,
271             @RequestParam("newPassword") String newPassword) {
272         IUserManager userManager = (IUserManager) ServiceHelper.getGlobalInstance(IUserManager.class, this);
273         if (userManager == null) {
274             return new Status(StatusCode.NOSERVICE, "User Manager unavailable");
275         }
276
277         Status status;
278         String requestingUser = request.getUserPrincipal().getName();
279
280         //changing own password
281         if (requestingUser.equals(username) ) {
282             status = userManager.changeLocalUserPassword(username, currentPassword, newPassword);
283             //enforce the user to re-login with new password
284             if (status.isSuccess() && !newPassword.equals(currentPassword)) {
285                 userManager.userLogout(username);
286                 HttpSession session = request.getSession(false);
287                 if ( session != null) {
288                     session.invalidate();
289                 }
290             }
291
292         //admin level user resetting other's password
293         } else if (authorize(userManager, UserLevel.NETWORKADMIN, request)) {
294
295             //Since User Manager doesn't have an unprotected password change API,
296             //we re-create the user with the new password (and current roles).
297             List<String> roles = userManager.getUserRoles(username);
298             UserConfig newConfig = new UserConfig(username, newPassword, roles);
299
300             //validate before removing existing config, so we don't remove but fail to add
301             status = newConfig.validate();
302             if (!status.isSuccess()) {
303                 return status;
304             }
305
306             userManager.userLogout(username);
307             status = userManager.removeLocalUser(username);
308             if (!status.isSuccess()) {
309                 return status;
310             }
311             if (userManager.addLocalUser(newConfig).isSuccess()) {
312                 status = new Status(StatusCode.SUCCESS, "Password for user " + username + " reset successfully.");
313             } else {
314                 //unexpected
315                 status = new Status(StatusCode.INTERNALERROR, "Failed resetting password for user " + username + ". User is now removed.");
316             }
317
318         //unauthorized
319         } else {
320             status = new Status(StatusCode.UNAUTHORIZED, "Operation not permitted");
321         }
322
323         if (status.isSuccess()) {
324             DaylightWebUtil.auditlog("User", request.getUserPrincipal().getName(), "changed password for",
325                     username);
326         }
327         return status;
328     }
329
330     /**
331      * Is the operation permitted for the given level
332      *
333      * @param level
334      */
335     private boolean authorize(IUserManager userManager, UserLevel level, HttpServletRequest request) {
336         String username = request.getUserPrincipal().getName();
337         UserLevel userLevel = userManager.getUserLevel(username);
338         return userLevel.toNumber() <= level.toNumber();
339     }
340 }