Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / api / floating_ips.py @ a3d99af0

History | View | Annotate | Download (7.9 kB)

1
# Copyright 2013 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
from django.conf.urls.defaults import patterns
35
from django.db import transaction
36
from django.http import HttpResponse
37
from django.utils import simplejson as json
38

    
39
from snf_django.lib import api
40
from snf_django.lib.api import faults, utils
41
from synnefo.api import util
42
from synnefo import quotas
43
from synnefo.db.models import Network, FloatingIP, NetworkInterface
44

    
45

    
46
from logging import getLogger
47
log = getLogger(__name__)
48

    
49
ips_urlpatterns = patterns(
50
    'synnefo.api.floating_ips',
51
    (r'^(?:/|.json|.xml)?$', 'demux'),
52
    (r'^/(\w+)(?:.json|.xml)?$', 'floating_ip_demux'),
53
)
54

    
55
pools_urlpatterns = patterns(
56
    "synnefo.api.floating_ips",
57
    (r'^(?:/|.json|.xml)?$', 'list_floating_ip_pools'),
58
)
59

    
60

    
61
def demux(request):
62
    if request.method == 'GET':
63
        return list_floating_ips(request)
64
    elif request.method == 'POST':
65
        return allocate_floating_ip(request)
66
    else:
67
        return api.method_not_allowed(request)
68

    
69

    
70
def floating_ip_demux(request, floating_ip_id):
71
    if request.method == 'GET':
72
        return get_floating_ip(request, floating_ip_id)
73
    elif request.method == 'DELETE':
74
        return release_floating_ip(request, floating_ip_id)
75
    else:
76
        return api.method_not_allowed(request)
77

    
78

    
79
def ip_to_dict(floating_ip):
80
    machine_id = floating_ip.machine_id
81
    return {"fixed_ip": None,
82
            "id": str(floating_ip.id),
83
            "instance_id": str(machine_id) if machine_id else None,
84
            "ip": floating_ip.ipv4,
85
            "pool": str(floating_ip.network_id)}
86

    
87

    
88
@api.api_method(http_method="GET", user_required=True, logger=log)
89
def list_floating_ips(request):
90
    """Return user reserved floating IPs"""
91
    log.debug("list_floating_ips")
92

    
93
    userid = request.user_uniq
94
    floating_ips = FloatingIP.objects.filter(userid=userid, deleted=False)\
95
                                     .order_by("id")
96

    
97
    floating_ips = map(ip_to_dict, floating_ips)
98

    
99
    request.serialization = "json"
100
    data = json.dumps({"floating_ips": floating_ips})
101

    
102
    return HttpResponse(data, status=200)
103

    
104

    
105
@api.api_method(http_method="GET", user_required=True, logger=log)
106
def get_floating_ip(request, floating_ip_id):
107
    """Return information for a floating IP."""
108
    userid = request.user_uniq
109
    try:
110
        floating_ip = FloatingIP.objects.get(id=floating_ip_id,
111
                                             deleted=False,
112
                                             userid=userid)
113
    except FloatingIP.DoesNotExist:
114
        raise faults.ItemNotFound("Floating IP '%s' does not exist" %
115
                                  floating_ip_id)
116
    request.serialization = "json"
117
    data = json.dumps({"floating_ip": ip_to_dict(floating_ip)})
118
    return HttpResponse(data, status=200)
119

    
120

    
121
@api.api_method(http_method='POST', user_required=True, logger=log)
122
@transaction.commit_manually
123
def allocate_floating_ip(request):
124
    """Allocate a floating IP."""
125
    req = utils.get_request_dict(request)
126
    log.info('allocate_floating_ip %s', req)
127

    
128
    userid = request.user_uniq
129
    try:
130
        pool = req['pool']
131
    except KeyError:
132
        raise faults.BadRequest("Malformed request. Missing"
133
                                " 'pool' attribute")
134

    
135
    try:
136
        network = Network.objects.get(public=True, deleted=False, id=pool)
137
    except Network.DoesNotExist:
138
        raise faults.ItemNotFound("Pool '%s' does not exist." % pool)
139

    
140
    address = req.get("address", None)
141
    machine = None
142
    try:
143
        if address is None:
144
            address = util.get_network_free_address(network)  # Get X-Lock
145
        else:
146
            if FloatingIP.objects.filter(network=network,
147
                                         ipv4=address).exists():
148
                msg = "Floating IP '%s' is reserved" % address
149
                raise faults.Conflict(msg)
150
            pool = network.get_pool()  # Gets X-Lock
151
            if not pool.contains(address):
152
                raise faults.BadRequest("Invalid address")
153
            if not pool.is_available(address):
154
                try:
155
                    network.nics.get(ipv4=address,
156
                                     machine__userid=userid)
157
                except NetworkInterface.DoesNotExist:
158
                    msg = "Address '%s' is already in use" % address
159
                    raise faults.Conflict(msg)
160
            pool.reserve(address)
161
            pool.save()
162
        floating_ip = FloatingIP.objects.create(ipv4=address, network=network,
163
                                                userid=userid, machine=machine)
164
        quotas.issue_and_accept_commission(floating_ip)
165
    except:
166
        transaction.rollback()
167
        raise
168
    else:
169
        transaction.commit()
170

    
171
    log.info("User '%s' allocated floating IP '%s", userid, floating_ip)
172

    
173
    request.serialization = "json"
174
    data = json.dumps({"floating_ip": ip_to_dict(floating_ip)})
175
    return HttpResponse(data, status=200)
176

    
177

    
178
@api.api_method(http_method='DELETE', user_required=True, logger=log)
179
@transaction.commit_on_success
180
def release_floating_ip(request, floating_ip_id):
181
    """Release a floating IP."""
182
    userid = request.user_uniq
183
    log.info("release_floating_ip '%s'. User '%s'.", floating_ip_id, userid)
184
    try:
185
        floating_ip = FloatingIP.objects.select_for_update()\
186
                                        .get(id=floating_ip_id,
187
                                             deleted=False,
188
                                             userid=userid)
189
    except FloatingIP.DoesNotExist:
190
        raise faults.ItemNotFound("Floating IP '%s' does not exist" %
191
                                  floating_ip_id)
192

    
193
    if floating_ip.in_use():
194
        msg = "Floating IP '%s' is used" % floating_ip.id
195
        raise faults.Conflict(message=msg)
196

    
197
    try:
198
        floating_ip.network.release_address(floating_ip.ipv4)
199
        floating_ip.deleted = True
200
        quotas.issue_and_accept_commission(floating_ip, delete=True)
201
    except:
202
        transaction.rollback()
203
        raise
204
    else:
205
        floating_ip.delete()
206
        transaction.commit()
207

    
208
    log.info("User '%s' released IP '%s", userid, floating_ip)
209

    
210
    return HttpResponse(status=204)
211

    
212

    
213
@api.api_method(http_method='GET', user_required=True, logger=log)
214
def list_floating_ip_pools(request):
215
    networks = Network.objects.filter(public=True, deleted=False)
216
    pools = [{"name": str(net.id)} for net in networks]
217
    request.serialization = "json"
218
    data = json.dumps({"floating_ip_pools": pools})
219
    request.serialization = "json"
220
    return HttpResponse(data, status=200)