1 /* -*- Mode: C++; tab-width: 50; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
19 * Portions created by the Initial Developer are Copyright (C) 2005
20 * the Initial Developer. All Rights Reserved.
23 * Vladimir Vukicevic <vladimir@pobox.com> (original author)
25 * Alternatively, the contents of this file may be used under the terms of
26 * either of the GNU General Public License Version 2 or later (the "GPL"),
27 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
42 #elif defined(XP_MACOSX)
43 #include <CoreFoundation/CoreFoundation.h>
51 #include "nsAutoLock.h"
53 #include "nsUUIDGenerator.h"
55 NS_IMPL_THREADSAFE_ISUPPORTS1(nsUUIDGenerator
, nsIUUIDGenerator
)
57 nsUUIDGenerator::nsUUIDGenerator()
62 nsUUIDGenerator::~nsUUIDGenerator()
65 PR_DestroyLock(mLock
);
70 nsUUIDGenerator::Init()
74 NS_ENSURE_TRUE(mLock
, NS_ERROR_OUT_OF_MEMORY
);
76 // We're a service, so we're guaranteed that Init() is not going
77 // to be reentered while we're inside Init().
79 #if !defined(XP_WIN) && !defined(XP_MACOSX)
80 /* initialize random number generator using NSPR random noise */
84 while (bytes
< sizeof(seed
)) {
85 PRSize nbytes
= PR_GetRandomNoise(((unsigned char *)&seed
)+bytes
,
88 return NS_ERROR_FAILURE
;
93 /* Initialize a new RNG state, and immediately switch
94 * back to the previous one -- we want to use mState
95 * only for our own calls to random().
97 mSavedState
= initstate(seed
, mState
, sizeof(mState
));
98 setstate(mSavedState
);
102 if ((unsigned long) RAND_MAX
< (unsigned long)0xffffffff)
104 if ((unsigned long) RAND_MAX
< (unsigned long)0x00ffffff)
106 if ((unsigned long) RAND_MAX
< (unsigned long)0x0000ffff)
108 if ((unsigned long) RAND_MAX
< (unsigned long)0x000000ff)
109 return NS_ERROR_FAILURE
;
112 #endif /* non XP_WIN and non XP_MACOSX */
118 nsUUIDGenerator::GenerateUUID(nsID
** ret
)
120 nsID
*id
= static_cast<nsID
*>(NS_Alloc(sizeof(nsID
)));
122 return NS_ERROR_OUT_OF_MEMORY
;
124 nsresult rv
= GenerateUUIDInPlace(id
);
135 nsUUIDGenerator::GenerateUUIDInPlace(nsID
* id
)
137 // The various code in this method is probably not threadsafe, so lock
138 // across the whole method.
139 nsAutoLock
lock(mLock
);
142 HRESULT hr
= CoCreateGuid((GUID
*)id
);
144 return NS_ERROR_FAILURE
;
145 #elif defined(XP_MACOSX)
146 CFUUIDRef uuid
= CFUUIDCreate(kCFAllocatorDefault
);
148 return NS_ERROR_FAILURE
;
150 CFUUIDBytes bytes
= CFUUIDGetUUIDBytes(uuid
);
151 memcpy(id
, &bytes
, sizeof(nsID
));
154 #else /* not windows or OS X; generate randomness using random(). */
155 /* XXX we should be saving the return of setstate here and switching
156 * back to it; instead, we use the value returned when we called
157 * initstate, since older glibc's have broken setstate() return values
161 PRSize bytesLeft
= sizeof(nsID
);
162 while (bytesLeft
> 0) {
163 long rval
= random();
165 PRUint8
*src
= (PRUint8
*)&rval
;
166 // We want to grab the mRBytes least significant bytes of rval, since
167 // mRBytes less than sizeof(rval) means the high bytes are 0.
169 src
+= sizeof(rval
) - mRBytes
;
171 PRUint8
*dst
= ((PRUint8
*) id
) + (sizeof(nsID
) - bytesLeft
);
172 PRSize toWrite
= (bytesLeft
< mRBytes
? bytesLeft
: mRBytes
);
173 for (PRSize i
= 0; i
< toWrite
; i
++)
176 bytesLeft
-= toWrite
;
179 /* Put in the version */
183 /* Put in the variant */
187 /* Restore the previous RNG state */
188 setstate(mSavedState
);