sangho | 27462c6 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 1 | /* |
Brian O'Connor | 43b5354 | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 2 | * Copyright 2015-present Open Networking Laboratory |
sangho | 27462c6 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 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 | */ |
| 16 | package org.onosproject.segmentrouting; |
| 17 | |
Pier Ventre | b6a7f34 | 2016-11-26 21:05:22 -0800 | [diff] [blame] | 18 | import org.onlab.packet.IpPrefix; |
Charles Chan | d7844e5 | 2016-10-20 17:02:44 -0700 | [diff] [blame] | 19 | import org.onosproject.net.DeviceId; |
| 20 | |
sangho | 27462c6 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 21 | import java.util.List; |
Charles Chan | d7844e5 | 2016-10-20 17:02:44 -0700 | [diff] [blame] | 22 | import java.util.Map; |
| 23 | import java.util.Set; |
sangho | 27462c6 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 24 | |
| 25 | /** |
| 26 | * Segment Routing Service for REST API. |
| 27 | */ |
| 28 | public interface SegmentRoutingService { |
Charles Chan | 82ab193 | 2016-01-30 23:22:37 -0800 | [diff] [blame] | 29 | /** |
Charles Chan | 82ab193 | 2016-01-30 23:22:37 -0800 | [diff] [blame] | 30 | * VLAN cross-connect priority. |
| 31 | */ |
| 32 | int XCONNECT_PRIORITY = 1000; |
| 33 | |
| 34 | /** |
| 35 | * Default flow priority. |
| 36 | */ |
| 37 | int DEFAULT_PRIORITY = 100; |
| 38 | |
| 39 | /** |
| 40 | * Minimum IP priority. |
| 41 | * |
Charles Chan | d86904c | 2016-02-18 10:43:46 -0800 | [diff] [blame] | 42 | * Should < 0 such that priority of /0 will not conflict with lowest |
Charles Chan | 82ab193 | 2016-01-30 23:22:37 -0800 | [diff] [blame] | 43 | * priority default entries. |
| 44 | */ |
| 45 | int MIN_IP_PRIORITY = 10; |
| 46 | |
| 47 | /** |
| 48 | * Subnet flooding flow priority. |
| 49 | */ |
| 50 | int FLOOD_PRIORITY = 5; |
| 51 | |
sangho | 27462c6 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 52 | /** |
| 53 | * Returns all tunnels. |
| 54 | * |
| 55 | * @return list of tunnels |
| 56 | */ |
| 57 | List<Tunnel> getTunnels(); |
| 58 | |
| 59 | /** |
| 60 | * Creates a tunnel. |
| 61 | * |
| 62 | * @param tunnel tunnel reference to create |
sangho | bd812f8 | 2015-06-29 14:58:47 -0700 | [diff] [blame] | 63 | * @return WRONG_PATH if the tunnel path is wrong, ID_EXISTS if the tunnel ID |
| 64 | * exists already, TUNNEL_EXISTS if the same tunnel exists, INTERNAL_ERROR |
| 65 | * if the tunnel creation failed internally, SUCCESS if the tunnel is created |
| 66 | * successfully |
sangho | 27462c6 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 67 | */ |
sangho | bd812f8 | 2015-06-29 14:58:47 -0700 | [diff] [blame] | 68 | TunnelHandler.Result createTunnel(Tunnel tunnel); |
sangho | 27462c6 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 69 | |
| 70 | /** |
| 71 | * Returns all policies. |
| 72 | * |
| 73 | * @return list of policy |
| 74 | */ |
| 75 | List<Policy> getPolicies(); |
| 76 | |
| 77 | /** |
| 78 | * Creates a policy. |
| 79 | * |
| 80 | * @param policy policy reference to create |
sangho | bd812f8 | 2015-06-29 14:58:47 -0700 | [diff] [blame] | 81 | * @return ID_EXISTS if the same policy ID exists, |
| 82 | * POLICY_EXISTS if the same policy exists, TUNNEL_NOT_FOUND if the tunnel |
| 83 | * does not exists, UNSUPPORTED_TYPE if the policy type is not supported, |
| 84 | * SUCCESS if the policy is created successfully. |
sangho | 27462c6 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 85 | */ |
sangho | bd812f8 | 2015-06-29 14:58:47 -0700 | [diff] [blame] | 86 | PolicyHandler.Result createPolicy(Policy policy); |
sangho | 27462c6 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 87 | |
| 88 | /** |
| 89 | * Removes a tunnel. |
| 90 | * |
| 91 | * @param tunnel tunnel reference to remove |
sangho | bd812f8 | 2015-06-29 14:58:47 -0700 | [diff] [blame] | 92 | * @return TUNNEL_NOT_FOUND if the tunnel to remove does not exists, |
| 93 | * INTERNAL_ERROR if the tunnel creation failed internally, SUCCESS |
| 94 | * if the tunnel is created successfully. |
sangho | 27462c6 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 95 | */ |
sangho | bd812f8 | 2015-06-29 14:58:47 -0700 | [diff] [blame] | 96 | TunnelHandler.Result removeTunnel(Tunnel tunnel); |
sangho | 27462c6 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 97 | |
| 98 | /** |
| 99 | * Removes a policy. |
| 100 | * |
| 101 | * @param policy policy reference to remove |
sangho | bd812f8 | 2015-06-29 14:58:47 -0700 | [diff] [blame] | 102 | * @return POLICY_NOT_FOUND if the policy to remove does not exists, |
| 103 | * SUCCESS if it is removed successfully |
sangho | 27462c6 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 104 | */ |
sangho | bd812f8 | 2015-06-29 14:58:47 -0700 | [diff] [blame] | 105 | PolicyHandler.Result removePolicy(Policy policy); |
Saurav Das | 07c7460 | 2016-04-27 18:35:50 -0700 | [diff] [blame] | 106 | |
| 107 | /** |
| 108 | * Use current state of the network to repopulate forwarding rules. |
| 109 | * |
| 110 | */ |
| 111 | void rerouteNetwork(); |
Charles Chan | d7844e5 | 2016-10-20 17:02:44 -0700 | [diff] [blame] | 112 | |
| 113 | /** |
| 114 | * Returns device-subnet mapping. |
| 115 | * |
| 116 | * @return device-subnet mapping |
| 117 | */ |
Pier Ventre | b6a7f34 | 2016-11-26 21:05:22 -0800 | [diff] [blame] | 118 | Map<DeviceId, Set<IpPrefix>> getDeviceSubnetMap(); |
sangho | 27462c6 | 2015-05-14 00:39:53 -0700 | [diff] [blame] | 119 | } |