[Openstack] make swift.common.utils.streq_const_time more efficient

2012-09-13 Thread Mike Green
def streq_const_time(s1, s2): if len(s1) != len(s2): return False result = 0 for (a, b) in zip(s1, s2): result |= ord(a) ^ ord(b) return result == 0 + If s1 and s2 are of the same length, then the function will compare

[Openstack] [swift] make swift.common.utils.streq_const_time more efficient

2012-09-13 Thread Mike Green
def streq_const_time(s1, s2): if len(s1) != len(s2): return False result = 0 for (a, b) in zip(s1, s2): result |= ord(a) ^ ord(b) return result == 0 + If s1 and s2 are of the same length, then the function will compare

[Openstack] [openstack][swift]make swift.common.utils.streq_const_time more efficient

2012-09-13 Thread Mike Green
def streq_const_time(s1, s2): if len(s1) != len(s2): return False result = 0 for (a, b) in zip(s1, s2): result |= ord(a) ^ ord(b) return result == 0 + If s1 and s2 are of the same length, then the function will compare

Re: [Openstack] Future of Launchpad OpenStack mailing list (this list)

2012-09-13 Thread Thierry Carrez
Russell Bryant wrote: On 09/12/2012 08:56 PM, Syd (Sydney) Logan wrote: Guess the only advantage would be to minimize the chance of someone missing the security related messages in the noise of a heavy traffic mailing list. Even if there were a specialized list, I’d think you’d want to cross

Re: [Openstack] make swift.common.utils.streq_const_time more efficient

2012-09-13 Thread Michael Barton
That function's purpose is to compare strings without short-circuiting, to foil timing attacks against token comparisons or similar. On Thu, Sep 13, 2012 at 1:28 AM, Mike Green iasy...@gmail.com wrote: def streq_const_time(s1, s2): if len(s1) != len(s2): return False result

[Openstack] OpenStack Object Storage (Swift) 1.7.0 released

2012-09-13 Thread Thierry Carrez
Hi everyone, The latest release of OpenStack Object Storage, also known as Swift, is now available at: https://launchpad.net/swift/folsom/1.7.0 Unless some critical issue is uncovered, this should be the last release of Swift in the Folsom series, and that version shall be included in the

Re: [Openstack] Future of Launchpad OpenStack mailing list (this list)

2012-09-13 Thread Kiall Mac Innes
It may be worth trying to write a short sentence describing the purpose of each list. The kind of sentence new users will see when deciding which lists to subscribe to. Personally - I think it's going to be difficult to come up with a clear distinction between the general and operators lists, and

Re: [Openstack] Last day to join the Foundation to participate in TC vote !

2012-09-13 Thread Thierry Carrez
Final reminder: Today is the last day for technical contributors to join the OpenStack Foundation as Individual Members and be able to vote (or be elected) in the upcoming Technical Committee election: Thierry Carrez wrote: Being a representation of the technical contributors in the project,

Re: [Openstack] Future of Launchpad OpenStack mailing list (this list)

2012-09-13 Thread Daniel He
I like option B because this is more clear view of the project as we did in many opensource projects before. Obviously the cross-posting is inevitable. the goal should limit the number of cross-postings. Cheers, Dan Option B: openstack-u...@lists.openstack.org

[Openstack] Writing Methods for Nova API

2012-09-13 Thread Trinath Somanchi
Hi- I'm trying to understand the NOVA api request process flow. Using my custom script, testing.py, I have created a server with some metadata. It was successful. But I have modified to script this way. I have written a definition, metadetailserver(self,detailed=True,search_opts=sMetadata) in

Re: [Openstack] nova-translation-* jobs in Jenkins

2012-09-13 Thread Thierry Carrez
Ying Chun Guo wrote: I'd like to understand if there are any jobs in Jenkins running to upload and download translations from Transifex. I see some nova-translation-* jobs active, but I cannot figure out which website they are connecting with, Lauchpad or Transifex. Can somebody tell me? As

[Openstack] Understanding NOVA api

2012-09-13 Thread Trinath Somanchi
Hi- With respect to Essex Release, I'm trying you understand the nova api. How to the client sent URIs are mapped to controller methods? Like, I prepared the URI as /server/details/id is mapped to get_details in the server class of Nova API. How is this logical mapping done? Please help me

Re: [Openstack] paas in openstack and forked cloudfoindry

2012-09-13 Thread Diane Mueller ActiveState
frans, The cloud foundry community has a number of vendors that have leveraged the CloudFoundry core in commercial offerings including ActiveState's Stackato and Vmware' cloudfoundry.com The CloudFoundry PaaS project is a great example of an OpenPaaS - and, in all it's variations,

Re: [Openstack] [OSSA 2012-012] Horizon, Open redirect through 'next' parameter (CVE-2012-3540)

2012-09-13 Thread andi abes
Has a fix for this been backported to essex/stable branch? On Thu, Aug 30, 2012 at 11:35 AM, Russell Bryant rbry...@redhat.com wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This advisory included the wrong CVE. It was CVE-2012-3540. Sorry about that. On 08/30/2012 11:10 AM,

Re: [Openstack] paas in openstack and forked cloudfoindry

2012-09-13 Thread Frans Thamura
yes, that why i found OpenPaaS (openpaas.or.id), in conjuction with openstack-id inside openpaas we create cloudfoundry-id. and now try to learn and research the effect of cloudfoundry, and value proposition on openstack yes, we tested OpenStack + Stackato here, and tomorrow the cloud roadshow

Re: [Openstack] [ceilometer] Bare metal and Metering

2012-09-13 Thread Nick Barcet
On 09/13/2012 04:33 PM, Tim Bell wrote: Reading through the post from Mirantis on bare metal support on OpenStack (http://www.mirantis.com/blog/bare-metal-provisioning-with-openstack-cloud/), I was wondering how this would interact with the metering work in ceilometer. So far, only

Re: [Openstack] [OSSA 2012-012] Horizon, Open redirect through 'next' parameter (CVE-2012-3540)

2012-09-13 Thread Kiall Mac Innes
According to Russell's message - this bug only affects the essex/stable branch.. No backport is necessary I guess.. Also - https://github.com/openstack/horizon/tree/stable/essex shows the most recent commit is the commit/fix he linked to.. Thanks, Kiall On Thu, Sep 13, 2012 at 4:17 PM, andi

Re: [Openstack] [swift] make swift.common.utils.streq_const_time more efficient

2012-09-13 Thread John Dickinson
The intended purpose of this string comparison is to explicitly compare every character. Doing it this way guards against timing attacks (http://en.wikipedia.org/wiki/Timing_attack). --John On Sep 13, 2012, at 12:06 AM, Mike Green iasy...@gmail.com wrote: def streq_const_time(s1, s2):

[Openstack] strange problem when reboot nova-compute node: domain not found: no domain with matching name

2012-09-13 Thread romi zhang
Hi, I've installed essex and when I reboot one of the nova-compute node and next when I start nova-compute service again,the system promote: Libvirt: QEMU error: Domain not found: no domain with matching name 'instance-000a' Then I found: #ls /var/lib/nova/instances _base

[Openstack] [Q] What is MaaS?

2012-09-13 Thread Frans Thamura
hi all can help me to understand MaaS, the bare metal cloud how OpenStack can run in a MaaS, and what is MaaS thx in advanced F ___ Mailing list: https://launchpad.net/~openstack Post to : openstack@lists.launchpad.net Unsubscribe :

Re: [Openstack] paas in openstack and forked cloudfoindry

2012-09-13 Thread Frans Thamura
and this is appfog. http://blog.cloudfoundry.org/2012/09/13/how-we-built-appfog-using-cloud-foundry/ -- Frans Thamura (曽志胜) Shadow Master and Lead Investor Meruvian. Integrated Hypermedia Java Solution Provider. Mobile: +628557888699 Blog: http://blogs.mervpolis.com/roller/flatburger (id) FB:

Re: [Openstack] paas in openstack and forked cloudfoindry

2012-09-13 Thread Frans Thamura
and this is appfog. http://blog.cloudfoundry.org/2012/09/13/how-we-built-appfog-using-cloud-foundry/ -- Frans Thamura (曽志胜) Shadow Master and Lead Investor Meruvian. Integrated Hypermedia Java Solution Provider. Mobile: +628557888699 Blog: http://blogs.mervpolis.com/roller/flatburger (id) FB:

[Openstack] Open Stack and (HSM) Hardware security modules

2012-09-13 Thread Yakabuski, Mark
My name is Mark Yakabuski, from SFNT, we are an HSM vendor (I want to be transparent on that). We are looking at integrating our HSM API's into Open Stack. This email is not intended to market HSMs - it is intended to identify what the Open Stack community might find valuable in an HSM

Re: [Openstack] [Q] What is MaaS?

2012-09-13 Thread Kevin Jackson
Hi Frans, There's a wealth of info over at the MAAS website https://wiki.ubuntu.com/ServerTeam/MAAS/. It is Canonical's method for PXE booting and installing an OS so that a further service, called Juju, can be used to assign the functions/roles to a server that previously had nothing installed

Re: [Openstack] strange problem when reboot nova-compute node: domain not found: no domain with matching name

2012-09-13 Thread Ritesh Nanda
Hello romi, Image got into a stuck state , only solution is to hack your database for this particular instance and mark it as deleted, den restart nova-* service, it would start working. On Thu, Sep 13, 2012 at 9:45 PM, romi zhang romizhang1...@163.com wrote: Hi, ** ** I’ve

Re: [Openstack] [Q] What is MaaS?

2012-09-13 Thread Mikyung Kang
Hi Frans, If you're interested in bare-metal cloud, not MaaS specifically, we(USC/ISI and NTT docomo) want to introduce our bare-metal stuff also. :) http://wiki.openstack.org/GeneralBareMetalProvisioningFramework

Re: [Openstack] strange problem when reboot nova-compute node: domain not found: no domain with matching name

2012-09-13 Thread Razique Mahroua
Hi Romi,what $ virsh list --all gives you ? Nuage Co - Razique Mahrouarazique.mahr...@gmail.com Le 13 sept. 2012 à 21:11, Ritesh Nanda riteshnand...@gmail.com a écrit :Hello romi, Image got into a stuck state , only solution is to hack your database for this particular instance and mark it as

Re: [Openstack] [Q] What is MaaS?

2012-09-13 Thread Frans Thamura
hi kevin and mikyung i must learn all :) to educate the member which i try to develop it (openstack-id). and now try to link openstack to education, start with our PaaS initiative under JENI (JAva Education). the basic idea of baremetal is to boot using PXE, any idea recommended hardware to

Re: [Openstack] Future of Launchpad OpenStack mailing list (this list)

2012-09-13 Thread Stefano Maffulli
On 09/13/2012 01:45 AM, Thierry Carrez wrote: That would be option B2 (single user/general list, named openstack): openst...@lists.openstack.org openstack-annou...@lists.openstack.org openstack-...@lists.openstack.org I think it's the clearest to avoid cross-posting... Reminder: here

Re: [Openstack] Future of Launchpad OpenStack mailing list (this list)

2012-09-13 Thread Duncan McGreggor
On Thu, Sep 13, 2012 at 5:40 PM, Stefano Maffulli stef...@openstack.orgwrote: On 09/13/2012 01:45 AM, Thierry Carrez wrote: That would be option B2 (single user/general list, named openstack): openst...@lists.openstack.org openstack-annou...@lists.openstack.org

Re: [Openstack] Future of Launchpad OpenStack mailing list (this list)

2012-09-13 Thread Russell Bryant
On 09/13/2012 09:04 PM, Duncan McGreggor wrote: On Thu, Sep 13, 2012 at 5:40 PM, Stefano Maffulli stef...@openstack.org Option C (dev, announce and operators as user/general list --no renames, no moving stuff around, just a new description) openstack-operat...@lists.openstack.org

Re: [Openstack] Cells Status

2012-09-13 Thread balaji patnala
Hi Stackers, We didnt find any information related to CELLS [which is planned to replace ZONES] in the latest Folsom pre-release. Can any body give us information on this. -Balaji On Thu, Aug 2, 2012 at 1:19 PM, Chris Behrens cbehr...@codestud.com wrote: I found time to update the branch

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_nova_trunk #571

2012-09-13 Thread openstack-testing-bot
Title: precise_folsom_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/571/Project:precise_folsom_nova_trunkDate of build:Thu, 13 Sep 2012 02:00:33 -0400Build duration:4 min 42 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Failure: quantal_folsom_nova_trunk #569

2012-09-13 Thread openstack-testing-bot
Title: quantal_folsom_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_nova_trunk/569/Project:quantal_folsom_nova_trunkDate of build:Thu, 13 Sep 2012 03:30:34 -0400Build duration:6 min 25 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: quantal_folsom_nova_trunk #570

2012-09-13 Thread openstack-testing-bot
Title: quantal_folsom_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_nova_trunk/570/Project:quantal_folsom_nova_trunkDate of build:Thu, 13 Sep 2012 06:00:34 -0400Build duration:7 min 3 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_nova_trunk #574

2012-09-13 Thread openstack-testing-bot
Title: precise_folsom_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/574/Project:precise_folsom_nova_trunkDate of build:Thu, 13 Sep 2012 06:30:35 -0400Build duration:6 min 7 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_swift_trunk #73

2012-09-13 Thread openstack-testing-bot
Title: precise_folsom_swift_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_swift_trunk/73/Project:precise_folsom_swift_trunkDate of build:Thu, 13 Sep 2012 11:23:10 -0400Build duration:4 min 9 secBuild cause:Started by user zulBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_nova_trunk #576

2012-09-13 Thread openstack-testing-bot
Title: precise_folsom_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/576/Project:precise_folsom_nova_trunkDate of build:Thu, 13 Sep 2012 14:00:35 -0400Build duration:13 minBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Failure: precise_folsom_melange_trunk #1

2012-09-13 Thread openstack-testing-bot
Title: precise_folsom_melange_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_melange_trunk/1/Project:precise_folsom_melange_trunkDate of build:Thu, 13 Sep 2012 15:00:31 -0400Build duration:3 min 10 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Fixed: precise_folsom_deploy #293

2012-09-13 Thread openstack-testing-bot
Title: precise_folsom_deploy General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_deploy/293/Project:precise_folsom_deployDate of build:Thu, 13 Sep 2012 15:26:32 -0400Build duration:16 minBuild cause:Started by user adamBuilt on:masterHealth

[Openstack-ubuntu-testing-notifications] Build Fixed: precise_folsom_nova_trunk #578

2012-09-13 Thread openstack-testing-bot
Title: precise_folsom_nova_trunk General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/578/Project:precise_folsom_nova_trunkDate of build:Thu, 13 Sep 2012 18:32:55 -0400Build duration:17 minBuild cause:Started by user adamBuilt on:pkg-builderHealth