blob: 7375b98e9a85df2166a22df6e34128a64bf21144 [file] [log] [blame]
sangho1e575652015-05-14 00:39:53 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
sangho1e575652015-05-14 00:39:53 -07003 *
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 */
16package org.onosproject.segmentrouting;
17
Charles Chanc81c45b2016-10-20 17:02:44 -070018import org.onlab.packet.Ip4Prefix;
19import org.onosproject.net.DeviceId;
20
sangho1e575652015-05-14 00:39:53 -070021import java.util.List;
Charles Chanc81c45b2016-10-20 17:02:44 -070022import java.util.Map;
23import java.util.Set;
sangho1e575652015-05-14 00:39:53 -070024
25/**
26 * Segment Routing Service for REST API.
27 */
28public interface SegmentRoutingService {
Charles Chan5270ed02016-01-30 23:22:37 -080029 /**
Charles Chan5270ed02016-01-30 23:22:37 -080030 * 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 Chanb54e8ba2016-02-18 10:43:46 -080042 * Should < 0 such that priority of /0 will not conflict with lowest
Charles Chan5270ed02016-01-30 23:22:37 -080043 * priority default entries.
44 */
45 int MIN_IP_PRIORITY = 10;
46
47 /**
48 * Subnet flooding flow priority.
49 */
50 int FLOOD_PRIORITY = 5;
51
sangho1e575652015-05-14 00:39:53 -070052 /**
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
sangho71abe1b2015-06-29 14:58:47 -070063 * @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
sangho1e575652015-05-14 00:39:53 -070067 */
sangho71abe1b2015-06-29 14:58:47 -070068 TunnelHandler.Result createTunnel(Tunnel tunnel);
sangho1e575652015-05-14 00:39:53 -070069
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
sangho71abe1b2015-06-29 14:58:47 -070081 * @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.
sangho1e575652015-05-14 00:39:53 -070085 */
sangho71abe1b2015-06-29 14:58:47 -070086 PolicyHandler.Result createPolicy(Policy policy);
sangho1e575652015-05-14 00:39:53 -070087
88 /**
89 * Removes a tunnel.
90 *
91 * @param tunnel tunnel reference to remove
sangho71abe1b2015-06-29 14:58:47 -070092 * @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.
sangho1e575652015-05-14 00:39:53 -070095 */
sangho71abe1b2015-06-29 14:58:47 -070096 TunnelHandler.Result removeTunnel(Tunnel tunnel);
sangho1e575652015-05-14 00:39:53 -070097
98 /**
99 * Removes a policy.
100 *
101 * @param policy policy reference to remove
sangho71abe1b2015-06-29 14:58:47 -0700102 * @return POLICY_NOT_FOUND if the policy to remove does not exists,
103 * SUCCESS if it is removed successfully
sangho1e575652015-05-14 00:39:53 -0700104 */
sangho71abe1b2015-06-29 14:58:47 -0700105 PolicyHandler.Result removePolicy(Policy policy);
Saurav Das59232cf2016-04-27 18:35:50 -0700106
107 /**
108 * Use current state of the network to repopulate forwarding rules.
109 *
110 */
111 void rerouteNetwork();
Charles Chanc81c45b2016-10-20 17:02:44 -0700112
113 /**
114 * Returns device-subnet mapping.
115 *
116 * @return device-subnet mapping
117 */
118 Map<DeviceId, Set<Ip4Prefix>> getDeviceSubnetMap();
sangho1e575652015-05-14 00:39:53 -0700119}