[209] | 1 | #!/usr/bin/python |
---|
| 2 | |
---|
[411] | 3 | import cache_acls |
---|
[209] | 4 | import getafsgroups |
---|
| 5 | import re |
---|
| 6 | import string |
---|
[437] | 7 | from sipb_xen_database import Machine, NIC, Type |
---|
[209] | 8 | from webcommon import InvalidInput, g |
---|
| 9 | |
---|
| 10 | MAX_MEMORY_TOTAL = 512 |
---|
| 11 | MAX_MEMORY_SINGLE = 256 |
---|
| 12 | MIN_MEMORY_SINGLE = 16 |
---|
| 13 | MAX_DISK_TOTAL = 50 |
---|
| 14 | MAX_DISK_SINGLE = 50 |
---|
| 15 | MIN_DISK_SINGLE = 0.1 |
---|
| 16 | MAX_VMS_TOTAL = 10 |
---|
| 17 | MAX_VMS_ACTIVE = 4 |
---|
| 18 | |
---|
| 19 | def getMachinesByOwner(user, machine=None): |
---|
| 20 | """Return the machines owned by the same as a machine. |
---|
[440] | 21 | |
---|
[209] | 22 | If the machine is None, return the machines owned by the same |
---|
| 23 | user. |
---|
| 24 | """ |
---|
| 25 | if machine: |
---|
| 26 | owner = machine.owner |
---|
| 27 | else: |
---|
[228] | 28 | owner = user |
---|
[209] | 29 | return Machine.select_by(owner=owner) |
---|
| 30 | |
---|
| 31 | def maxMemory(user, machine=None, on=True): |
---|
| 32 | """Return the maximum memory for a machine or a user. |
---|
| 33 | |
---|
[440] | 34 | If machine is None, return the memory available for a new |
---|
[209] | 35 | machine. Else, return the maximum that machine can have. |
---|
| 36 | |
---|
| 37 | on is whether the machine should be turned on. If false, the max |
---|
| 38 | memory for the machine to change to, if it is left off, is |
---|
| 39 | returned. |
---|
| 40 | """ |
---|
[251] | 41 | if machine is not None and machine.memory > MAX_MEMORY_SINGLE: |
---|
[250] | 42 | # If they've been blessed, let them have it |
---|
| 43 | return machine.memory |
---|
[253] | 44 | if not on: |
---|
| 45 | return MAX_MEMORY_SINGLE |
---|
[209] | 46 | machines = getMachinesByOwner(user, machine) |
---|
[277] | 47 | active_machines = [x for x in machines if g.uptimes.get(x)] |
---|
[209] | 48 | mem_usage = sum([x.memory for x in active_machines if x != machine]) |
---|
| 49 | return min(MAX_MEMORY_SINGLE, MAX_MEMORY_TOTAL-mem_usage) |
---|
| 50 | |
---|
| 51 | def maxDisk(user, machine=None): |
---|
[440] | 52 | """Return the maximum disk that a machine can reach. |
---|
| 53 | |
---|
| 54 | If machine is None, the maximum disk for a new machine. Otherwise, |
---|
| 55 | return the maximum that a given machine can be changed to. |
---|
| 56 | """ |
---|
[209] | 57 | machines = getMachinesByOwner(user, machine) |
---|
| 58 | disk_usage = sum([sum([y.size for y in x.disks]) |
---|
| 59 | for x in machines if x != machine]) |
---|
| 60 | return min(MAX_DISK_SINGLE, MAX_DISK_TOTAL-disk_usage/1024.) |
---|
| 61 | |
---|
| 62 | def cantAddVm(user): |
---|
| 63 | machines = getMachinesByOwner(user) |
---|
[277] | 64 | active_machines = [x for x in machines if g.uptimes.get(x)] |
---|
[209] | 65 | if len(machines) >= MAX_VMS_TOTAL: |
---|
| 66 | return 'You have too many VMs to create a new one.' |
---|
| 67 | if len(active_machines) >= MAX_VMS_ACTIVE: |
---|
| 68 | return ('You already have the maximum number of VMs turned on. ' |
---|
| 69 | 'To create more, turn one off.') |
---|
| 70 | return False |
---|
| 71 | |
---|
| 72 | def validAddVm(user): |
---|
| 73 | reason = cantAddVm(user) |
---|
| 74 | if reason: |
---|
| 75 | raise InvalidInput('create', True, reason) |
---|
| 76 | return True |
---|
| 77 | |
---|
| 78 | def haveAccess(user, machine): |
---|
[235] | 79 | """Return whether a user has administrative access to a machine""" |
---|
[411] | 80 | return user in cache_acls.accessList(machine) |
---|
[209] | 81 | |
---|
| 82 | def owns(user, machine): |
---|
| 83 | """Return whether a user owns a machine""" |
---|
[411] | 84 | return user in expandLocker(machine.owner) |
---|
[209] | 85 | |
---|
| 86 | def validMachineName(name): |
---|
| 87 | """Check that name is valid for a machine name""" |
---|
| 88 | if not name: |
---|
| 89 | return False |
---|
| 90 | charset = string.ascii_letters + string.digits + '-_' |
---|
| 91 | if name[0] in '-_' or len(name) > 22: |
---|
| 92 | return False |
---|
| 93 | for x in name: |
---|
| 94 | if x not in charset: |
---|
| 95 | return False |
---|
| 96 | return True |
---|
| 97 | |
---|
| 98 | def validMemory(user, memory, machine=None, on=True): |
---|
| 99 | """Parse and validate limits for memory for a given user and machine. |
---|
| 100 | |
---|
| 101 | on is whether the memory must be valid after the machine is |
---|
| 102 | switched on. |
---|
| 103 | """ |
---|
| 104 | try: |
---|
| 105 | memory = int(memory) |
---|
| 106 | if memory < MIN_MEMORY_SINGLE: |
---|
| 107 | raise ValueError |
---|
| 108 | except ValueError: |
---|
[440] | 109 | raise InvalidInput('memory', memory, |
---|
[211] | 110 | "Minimum %s MiB" % MIN_MEMORY_SINGLE) |
---|
[209] | 111 | if memory > maxMemory(user, machine, on): |
---|
| 112 | raise InvalidInput('memory', memory, |
---|
[229] | 113 | 'Maximum %s MiB for %s' % (maxMemory(user, machine), |
---|
| 114 | user)) |
---|
[209] | 115 | return memory |
---|
| 116 | |
---|
| 117 | def validDisk(user, disk, machine=None): |
---|
| 118 | """Parse and validate limits for disk for a given user and machine.""" |
---|
| 119 | try: |
---|
| 120 | disk = float(disk) |
---|
| 121 | if disk > maxDisk(user, machine): |
---|
| 122 | raise InvalidInput('disk', disk, |
---|
| 123 | "Maximum %s G" % maxDisk(user, machine)) |
---|
| 124 | disk = int(disk * 1024) |
---|
| 125 | if disk < MIN_DISK_SINGLE * 1024: |
---|
| 126 | raise ValueError |
---|
| 127 | except ValueError: |
---|
| 128 | raise InvalidInput('disk', disk, |
---|
[211] | 129 | "Minimum %s GiB" % MIN_DISK_SINGLE) |
---|
[209] | 130 | return disk |
---|
[437] | 131 | |
---|
| 132 | def validVmType(vm_type): |
---|
[440] | 133 | if vm_type is None: |
---|
| 134 | return None |
---|
| 135 | t = Type.get(vm_type) |
---|
| 136 | if t is None: |
---|
[437] | 137 | raise CodeError("Invalid vm type '%s'" % vm_type) |
---|
[440] | 138 | return t |
---|
[437] | 139 | |
---|
[209] | 140 | def testMachineId(user, machine_id, exists=True): |
---|
| 141 | """Parse, validate and check authorization for a given user and machine. |
---|
| 142 | |
---|
| 143 | If exists is False, don't check that it exists. |
---|
| 144 | """ |
---|
| 145 | if machine_id is None: |
---|
[440] | 146 | raise InvalidInput('machine_id', machine_id, |
---|
[209] | 147 | "Must specify a machine ID.") |
---|
| 148 | try: |
---|
| 149 | machine_id = int(machine_id) |
---|
| 150 | except ValueError: |
---|
| 151 | raise InvalidInput('machine_id', machine_id, "Must be an integer.") |
---|
| 152 | machine = Machine.get(machine_id) |
---|
| 153 | if exists and machine is None: |
---|
| 154 | raise InvalidInput('machine_id', machine_id, "Does not exist.") |
---|
| 155 | if machine is not None and not haveAccess(user, machine): |
---|
| 156 | raise InvalidInput('machine_id', machine_id, |
---|
| 157 | "You do not have access to this machine.") |
---|
| 158 | return machine |
---|
| 159 | |
---|
| 160 | def testAdmin(user, admin, machine): |
---|
[411] | 161 | """Determine whether a user can set the admin of a machine to this value. |
---|
| 162 | |
---|
| 163 | Return the value to set the admin field to (possibly 'system:' + |
---|
| 164 | admin). XXX is modifying this a good idea? |
---|
| 165 | """ |
---|
[209] | 166 | if admin in (None, machine.administrator): |
---|
| 167 | return None |
---|
[228] | 168 | if admin == user: |
---|
[209] | 169 | return admin |
---|
[411] | 170 | if ':' not in admin: |
---|
| 171 | if cache_acls.isUser(admin): |
---|
| 172 | return admin |
---|
| 173 | admin = 'system:' + admin |
---|
[413] | 174 | try: |
---|
| 175 | if user in getafsgroups.getAfsGroupMembers(admin, 'athena.mit.edu'): |
---|
| 176 | return admin |
---|
| 177 | except getafsgroups.AfsProcessError, e: |
---|
[431] | 178 | errmsg = str(e) |
---|
| 179 | if errmsg.startswith("pts: User or group doesn't exist"): |
---|
| 180 | errmsg = 'The group "%s" does not exist.' % admin |
---|
| 181 | raise InvalidInput('administrator', admin, errmsg) |
---|
[413] | 182 | #XXX Should we require that user is in the admin group? |
---|
[209] | 183 | return admin |
---|
[440] | 184 | |
---|
[228] | 185 | def testOwner(user, owner, machine=None): |
---|
[411] | 186 | """Determine whether a user can set the owner of a machine to this value. |
---|
| 187 | |
---|
| 188 | If machine is None, this is the owner of a new machine. |
---|
| 189 | """ |
---|
[228] | 190 | if owner == user or machine is not None and owner == machine.owner: |
---|
| 191 | return owner |
---|
| 192 | if owner is None: |
---|
| 193 | raise InvalidInput('owner', owner, "Owner must be specified") |
---|
[411] | 194 | try: |
---|
| 195 | if user not in cache_acls.expandLocker(owner): |
---|
| 196 | raise InvalidInput('owner', owner, 'You do not have access to the ' |
---|
| 197 | + owner + ' locker') |
---|
| 198 | except getafsgroups.AfsProcessError, e: |
---|
| 199 | raise InvalidInput('owner', owner, str(e)) |
---|
| 200 | return owner |
---|
[209] | 201 | |
---|
| 202 | def testContact(user, contact, machine=None): |
---|
| 203 | if contact in (None, machine.contact): |
---|
| 204 | return None |
---|
| 205 | if not re.match("^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$", contact, re.I): |
---|
| 206 | raise InvalidInput('contact', contact, "Not a valid email.") |
---|
| 207 | return contact |
---|
| 208 | |
---|
| 209 | def testDisk(user, disksize, machine=None): |
---|
| 210 | return disksize |
---|
| 211 | |
---|
| 212 | def testName(user, name, machine=None): |
---|
| 213 | if name in (None, machine.name): |
---|
| 214 | return None |
---|
| 215 | if not Machine.select_by(name=name): |
---|
| 216 | return name |
---|
| 217 | raise InvalidInput('name', name, "Name is already taken.") |
---|
| 218 | |
---|
| 219 | def testHostname(user, hostname, machine): |
---|
| 220 | for nic in machine.nics: |
---|
| 221 | if hostname == nic.hostname: |
---|
| 222 | return hostname |
---|
| 223 | # check if doesn't already exist |
---|
| 224 | if NIC.select_by(hostname=hostname): |
---|
| 225 | raise InvalidInput('hostname', hostname, |
---|
| 226 | "Already exists") |
---|
| 227 | if not re.match("^[A-Z0-9-]{1,22}$", hostname, re.I): |
---|
| 228 | raise InvalidInput('hostname', hostname, "Not a valid hostname; " |
---|
| 229 | "must only use number, letters, and dashes.") |
---|
| 230 | return hostname |
---|