changeset: 96151:6969bac411fa branch: 2.7 parent: 96142:cebd51686565 user: Serhiy Storchaka date: Tue May 19 10:09:27 2015 +0300 files: Lib/email/test/test_email.py Lib/email/utils.py Misc/NEWS description: Issue #6598: Increased time precision and random number range in email.utils.make_msgid() to strengthen the uniqueness of the message ID. diff -r cebd51686565 -r 6969bac411fa Lib/email/test/test_email.py --- a/Lib/email/test/test_email.py Mon May 18 15:37:37 2015 -0400 +++ b/Lib/email/test/test_email.py Tue May 19 10:09:27 2015 +0300 @@ -12,6 +12,10 @@ import textwrap from cStringIO import StringIO from random import choice +try: + from threading import Thread +except ImportError: + from dummy_threading import Thread import email @@ -33,7 +37,7 @@ from email import base64MIME from email import quopriMIME -from test.test_support import findfile, run_unittest +from test.test_support import findfile, run_unittest, start_threads from email.test import __file__ as landmark @@ -2412,6 +2416,25 @@ addrs = Utils.getaddresses(['User ((nested comment)) ']) eq(addrs[0][1], 'foo@bar.com') + def test_make_msgid_collisions(self): + # Test make_msgid uniqueness, even with multiple threads + class MsgidsThread(Thread): + def run(self): + # generate msgids for 3 seconds + self.msgids = [] + append = self.msgids.append + make_msgid = Utils.make_msgid + clock = time.clock + tfin = clock() + 3.0 + while clock() < tfin: + append(make_msgid()) + + threads = [MsgidsThread() for i in range(5)] + with start_threads(threads): + pass + all_ids = sum([t.msgids for t in threads], []) + self.assertEqual(len(set(all_ids)), len(all_ids)) + def test_utils_quote_unquote(self): eq = self.assertEqual msg = Message() diff -r cebd51686565 -r 6969bac411fa Lib/email/utils.py --- a/Lib/email/utils.py Mon May 18 15:37:37 2015 -0400 +++ b/Lib/email/utils.py Tue May 19 10:09:27 2015 +0300 @@ -177,21 +177,20 @@ def make_msgid(idstring=None): """Returns a string suitable for RFC 2822 compliant Message-ID, e.g: - <20020201195627.33539.96671@nightshade.la.mastaler.com> + <142480216486.20800.16526388040877946887@nightshade.la.mastaler.com> Optional idstring if given is a string used to strengthen the uniqueness of the message id. """ - timeval = time.time() - utcdate = time.strftime('%Y%m%d%H%M%S', time.gmtime(timeval)) + timeval = int(time.time()*100) pid = os.getpid() - randint = random.randrange(100000) + randint = random.getrandbits(64) if idstring is None: idstring = '' else: idstring = '.' + idstring idhost = socket.getfqdn() - msgid = '<%s.%s.%s%s@%s>' % (utcdate, pid, randint, idstring, idhost) + msgid = '<%d.%d.%d%s@%s>' % (timeval, pid, randint, idstring, idhost) return msgid diff -r cebd51686565 -r 6969bac411fa Misc/NEWS --- a/Misc/NEWS Mon May 18 15:37:37 2015 -0400 +++ b/Misc/NEWS Tue May 19 10:09:27 2015 +0300 @@ -15,6 +15,9 @@ Library ------- +- Issue #6598: Increased time precision and random number range in + email.utils.make_msgid() to strengthen the uniqueness of the message ID. + - Issue #24091: Fixed various crashes in corner cases in cElementTree. - Issue #15267: HTTPConnection.request() now is compatibile with old-style