~ubuntu-branches/debian/sid/keystone/sid

« back to all changes in this revision

Viewing changes to keystone/common/sql/migrate_repo/versions/004_undo_token_id_hash.py

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2013-05-10 10:22:18 UTC
  • mfrom: (1.2.1) (26.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20130510102218-7hph1420gz5jsyr7
Tags: 2013.1.1-2
* Uploading to unstable.
* New upstream release:
  - Fixes CVE-2013-2059: Keystone tokens not immediately invalidated when
  user is deleted [OSSA 2013-011] (Closes: #707598).
* Also installs httpd/keystone.py.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim: tabstop=4 shiftwidth=4 softtabstop=4
 
2
 
 
3
# Copyright (c) 2012 Red Hat, Inc.
 
4
#
 
5
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 
6
#    not use this file except in compliance with the License. You may obtain
 
7
#    a copy of the License at
 
8
#
 
9
#         http://www.apache.org/licenses/LICENSE-2.0
 
10
#
 
11
#    Unless required by applicable law or agreed to in writing, software
 
12
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
13
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
14
#    License for the specific language governing permissions and limitations
 
15
#    under the License.
 
16
 
 
17
from sqlalchemy import Column, MetaData, String, Table
 
18
 
 
19
 
 
20
def downgrade(migrate_engine):
 
21
    meta = MetaData()
 
22
    meta.bind = migrate_engine
 
23
    token = Table('token', meta, autoload=True)
 
24
    old_id_col = token.c.id
 
25
    old_id_col.alter(name='id_hash')
 
26
    # Note: We obtain a new metadata reference to avoid
 
27
    # sqlalchemy.exc.ArgumentError:
 
28
    # Trying to redefine primary-key column 'id' as a non-primary-key...
 
29
    meta = MetaData()
 
30
    meta.bind = migrate_engine
 
31
    token = Table('token', meta, autoload=True)
 
32
    new_id = Column("id", String(2048))
 
33
    token.create_column(new_id)
 
34
 
 
35
 
 
36
def upgrade(migrate_engine):
 
37
    meta = MetaData()
 
38
    meta.bind = migrate_engine
 
39
    token = Table('token', meta, autoload=True)
 
40
    token.drop_column('id')
 
41
    token = Table('token', meta, autoload=True)
 
42
    id_col = token.c.id_hash
 
43
    id_col.alter(name='id')